function install(varargin)
% INSTALL   Install script for GUILayout.
%    INSTALL creates the GUILayout folder and (optionally) 
%    the needed entries in the startup.m file.
% 
%    INSTALL PATH creates the GUILayout folder 
%    in the specified PATH.
%    
%    This installation script was generated by using 
%    the MAKEINSTALL tool. For further information
%    visit http://matlab.pucicu.de

% Copyright (c) 2008-2012
% Norbert Marwan, Potsdam Institute for Climate Impact Research, Germany
% http://www.pik-potsdam.de
%
% Copyright (c) 2001-2008
% Norbert Marwan, Potsdam University, Germany
% http://www.agnld.uni-potsdam.de
%
% THIS IS A GENERATED INSTALL-FILE, DO NOT EDIT!
% Generation date: 17-Oct-2014 17:07:56
% $Date: 2014/09/04 07:33:00 $
% $Revision: 3.33 $

install_file='';install_path='';installfile_info.date='';installfile_info.bytes=[];
time_stamp='';checksum='';checksum_file=''; instpaths = '';
errcode=0;

  
  
try
  warning('off')
  if isoctave
     disp(['  You are trying to install the toolbox in Octave.',10,'  Some compatibility issues might appear.'])
     warning('off','Octave:possible-matlab-short-circuit-operator')
     more off
  end
  if nargin
    install_path = varargin{1};
  end

  if exist('install.log','file') == 2, delete('install.log'), end
  %rehash
  disp('--------------------------')
  disp('  INSTALLATION GUILayout');
  disp('--------------------------')
  install_file=[mfilename,'.m'];
  currentpath=pwd; time_stamp='time_stamp not yet obtained'; checksum='checksum not yet obtained';
  fid = 0;
  
%%%%%%% read the archive
%%%%%%% and look for checksum and date in archive
  errcode=90;
  disp('  Reading the archiv ')
  fid=fopen(install_file,'r'); 
  fseek(fid,0,'eof'); eofbyte=ftell(fid);
  fseek(fid,30999,'bof'); % location where the container starts
  while 1
     temp=fgetl(fid);
     startbyte=ftell(fid);
     if length(temp)>1
       if strcmpi(temp,'%<-- Header begins here -->')
          errcode=90.1;
          checksum=fgetl(fid);
          temp1=fgetl(fid);
          temp2=fgetl(fid);
       end
       if strcmpi(temp,'%<-- Header ends here -->')
          startbyte=ftell(fid);
          break
       end
     end
  end
  checksum(1:2)=[];
  fseek(fid,startbyte,'bof');
  errcode=90.2;
  A=fread(fid,eofbyte);
  errcode=90.3;
  checksum_file=dec2hex(sum((1:length(A))'.*A));
  if ~strcmpi(checksum_file,checksum)
    error(['The installation file is corrupt!',10,'Ensure that the archive container was ',...
           'not modified (check FTP/ ',10,'proxy/ firewall settings, anti-virus scanner for emails etc.)!'])
  else
    disp(['  Checksum test passed (', checksum,')'])
  end
  fclose(fid);

  disp(['  GUILayout version ', temp2(3:end),''])
  time_stamp=temp1(3:end); disp(['  GUILayout time stamp ', time_stamp,'']); 
  
  errcode=91;
  if isunix
    toolboxpath='GUILayout';
  else
    toolboxpath='GUILayout';
  end
  
  
%%%%%%% check for older versions
  
  p=path; i1=0;
  rem_old = '';
  
  while any([findstr([lower(toolboxpath),'demo'],lower(p)) findstr(lower(toolboxpath),lower(p)) findstr('',lower(p))]>i1) && ~strcmpi('N',rem_old)
    errcode=92;
    i1=[findstr([lower(toolboxpath),'demo'],lower(p)) findstr(lower(toolboxpath),lower(p)) findstr('',lower(p))];
    if ~isempty(i1)
      i1=i1(1);
      if isunix, i2=findstr(':',p); else i2=findstr(';',p); end
      i3=i2(i2>i1);                 % last index pathname
      if ~isempty(i3), i3=i3(1)-1; else i3=length(p); end
      i4=i2(i2<i1);                 % first index pathname
      if ~isempty(i4), i4=i4(end)+1; else i4=1; end
      oldtoolboxpath=p(i4:i3);
      if isempty(rem_old)
          disp(['  Old GUILayout found in ', oldtoolboxpath,''])
          rem_old = input('> Delete old toolbox? Y/N [Y]: ','s');
      end
      if isempty(rem_old), rem_old = 'Y'; end
      if strcmpi('Y',rem_old)
%%%%%%% removing old entries in startup-file
        errcode=94;
        rmpath(oldtoolboxpath)
        err = savepath;
        if err, disp('  ** Warning: No write access to pathdef.m file!'), end
        if i4>1, p(i4-1:i3)=''; else p(i4:i3)=''; end
        startup_exist = exist('startup','file');
        if isoctave startup_exist = exist(fullfile('~','.octaverc'),'file'); end
        if startup_exist
             startupfile=which('startup');
             startuppath=startupfile(1:findstr('startup.m',startupfile)-1);
             if isoctave
                startuppath = ['~',filesep];
                startupfile = fullfile('~','.octaverc');
             end
             errcode=94.1;
             if ~isunix
               if isoctave
                   toolboxroot=fullfile(matlabroot);
               else
                   toolboxroot=fullfile(matlabroot,'toolbox');
               end
               curr_pwd = pwd; home_pwd = matlabroot; 
             else
               toolboxroot=startuppath;
               curr_pwd = pwd; cd ('~'); home_pwd = pwd; cd(curr_pwd);
             end
             fid = fopen(startupfile,'r');
             k = 1;
             while 1
                 tmp = fgetl(fid);
                 if ~ischar(tmp), break, end
                 instpaths{k} = tmp;
                 k = k + 1;
             end
             fclose(fid);
             k=1;
             while k <= length(instpaths)
               if findstr(oldtoolboxpath,strrep(instpaths{k},'~',home_pwd))
                 errcode=94.2;
                 instpaths(k)=[];
               else
                 k=k+1;
               end
             end
             fid=fopen(startupfile,'w');
             errcode=94.3;
             if fid < 0
               disp(['  ** Warning: Could not get access to ',startupfile,'.']);
               disp('  ** Could not remove toolbox from the startup.m file.');
               disp('  ** Ensure that you have write access!');
             else
               for i2=1:length(instpaths), 
                 fprintf(fid,'%s\n', char(instpaths{i2})); 
               end
               fclose(fid);
             end
        end
%%%%%%% removing old paths
        errcode=93;
        if exist(oldtoolboxpath,'dir') == 7
           disp(['  Change to ',oldtoolboxpath,''])
           cd(oldtoolboxpath)
           dirnames='';filenames='';
           temp='.:';
           errcode=93.1;
           while ~isempty(temp)
             [temp1 temp]=strtok(temp,':');
             if ~isempty(temp1)
               dirnames=[dirnames; {temp1}];
               x2=dir(temp1);
               for i=1:length(x2)
                 if ~x2(i).isdir, filenames=[filenames; {[temp1,'/', x2(i).name]}]; end
         	   if x2(i).isdir && ~strcmp(x2(i).name,'.') && ~strcmp(x2(i).name,'..'), temp=[temp,temp1,filesep,x2(i).name,':']; end
               end
             end
           end
           errcode=93.2;
           if isoctave, confirm_recursive_rmdir (false, 'local'); end
           dirnames=strrep(dirnames,['.',filesep],'');
           for i=1:length(dirnames),l(i)=length(dirnames{i}); end
           [i i4]=sort(l);
           dirnames=dirnames(fliplr(i4));
           errcode=93.3;
           for i=1:length(dirnames)
              if dirnames{i} == '.', continue, end
              delete([dirnames{i}, filesep,'*']),
              if exist('rmdir') == 5 && exist(dirnames{i}) == 7, rmdir(dirnames{i},'s'); else, delete(dirnames{i}), end
              disp(['  Removing files in ',char(dirnames{i}),''])
           end
           errcode=93.4;
           cd(currentpath)
           if exist('rmdir') == 5 && exist(oldtoolboxpath) == 7, rmdir(oldtoolboxpath,'s'); else, delete(oldtoolboxpath), end
           errcode=93.5;
           disp(['  Removing ',oldtoolboxpath,''])
        end
%%%%%%%
      end
    end
    p = path; i1 = 0;
  end
  clear p i i1 i2 i3 i4 temp* x2
  
%%%%%%% add entry into startpath in startup.m
  i=findstr(toolboxpath,path);
  startupPos = 0;
  startup_exist = exist('startup','file');
  if isoctave startup_exist = exist(fullfile('~','.octaverc'),'file'); end
  if startup_exist
        errcode=95.1;
        startupfile=which('startup');
        startuppath=startupfile(1:findstr('startup.m',startupfile)-1);
        if isoctave
           startuppath = ['~',filesep];
           startupfile = fullfile('~','.octaverc');
        end
  
        if ~isunix
           errcode=95.11;
           %toolboxroot=fullfile(matlabroot,'toolbox');
           if isoctave
               toolboxroot=matlabroot;
           else
               toolboxroot=strtok(userpath,';');
           end
        else
           errcode=95.12;
           toolboxroot=startuppath;
        end
        fid = fopen(startupfile,'r');
        k = 1;
        while 1
            tmp = fgetl(fid);
            if ~ischar(tmp), break, end
            instpaths{k} = tmp;
            k = k + 1;
        end
        fclose(fid);
  end
  if isempty(i)
     errcode=95;
     startupfilestr = 'startup.m';
     if isoctave startupfilestr = fullfile('~','.octaverc'); toolboxroot = pkg('prefix'); end

     %% check whether the default toolbox path exists
     err = 1;
     if ~isunix
           errcode=95.01;
           if isoctave
               toolboxroot=matlabroot;
           else
               if isempty(userpath), userpath('reset'), end
               toolboxroot=strtok(userpath,';');
           end
           if exist(toolboxroot,'file') ~= 7, err=mkdir(toolboxroot); end
           cd(toolboxroot)
           startupfile=fullfile(toolboxroot,'startup.m');
           if isoctave, startupfile=fullfile('~','.octaverc');end
           instpaths={''};
     else
           errcode=95.02;
           cd ~
           startuppath=[pwd,filesep];
           if isoctave
              status = fileattrib(pkg('prefix'));
              result = stat(pkg('prefix'));
              uid = geteuid;
              if status && result.uid ~= uid
                  disp(['  ** No writeable package folder found. Will define it as ~/octave.',10,'     If installation fails, you have to create it manually, set it by',10,'     calling ''pkg prefix ~/octave'' and re-run the installation!'])
                  err=mkdir('~/octave');
                  pkg prefix ~/octave;
                  toolboxroot = pkg('prefix');
              end

              if exist(pkg('prefix'),'file') ~= 7, err=mkdir(pkg('prefix')); end
              cd(pkg('prefix'))
  	          startupfile=fullfile(startuppath,'.octaverc');
           else
              if isempty(userpath), userpath('reset'), end
              up = textscan(userpath,'%s','delimiter',':'); up=up{1};
              startuppath = '';
              for k = 1:length(up)
                  if exist(up{k},'file') == 7
                      startuppath = up{k};
                  end
              end
              if isempty(startuppath)
                  err=mkdir(up{1});
                  startuppath = up{1};
              end
              cd(startuppath)
              startupfile=fullfile(startuppath,'startup.m');
           end
     end
     if ~err, error('Could not create toolbox path. Please check whether you have write access or whether there is another file of such a name blocking the creation of the path.'), end
           
     if exist(startupfilestr,'file')
        errcode=95.1;
     else
        errcode=95.2;
        if ~isunix
           errcode=95.21;
           if isoctave
               toolboxroot=matlabroot;
               startupfile=fullfile('~','.octaverc');
           else
               toolboxroot=strtok(userpath,';');
               startupfile=fullfile(toolboxroot,'startup.m');
           end
           cd(toolboxroot)
           instpaths={''};
        else
           errcode=95.22;
           cd ~
           startuppath=[pwd,filesep];
           if isoctave
              cd(pkg('prefix'))
              startupfile=fullfile(startuppath,'.octaverc');
           else
              up = textscan(userpath,'%s','delimiter',':'); up=up{1};
              startuppath = '';
              for k = 1:length(up)
                  if exist(up{k},'file') == 7
                      startuppath = up{k};
                  end
              end
              if isempty(startuppath)
                  err=mkdir(up{1});
                  startuppath = up{1};
              end
              cd(startuppath)
              startupfile=fullfile(startuppath,'startup.m');
           end
           
  	     toolboxroot=startuppath;
  	     instpaths={''};
        end
     end
    
     errcode=95.23;
     if ~isempty(install_path)
           switch ( exist(install_path,'dir') )
              case 0
                in = input(['> Create ', install_path, '? Y/N [Y]: '],'s');
                if isempty(in), in = 'Y'; end
                if strcmpi('Y',in)
                   err = mkdir(install_path);
                   if ~err
                     disp(['  ** Could not create ', install_path, '! Using ',startuppath,' as installation path.'])
                   else                
                     toolboxroot = install_path;
                   end                
                else 
                   disp(['  ** Do not create ', install_path, '! Using ',startuppath,' as installation path.'])
                end
              case 2
                disp(['  ** ', install_path, ' is not a directory! Using ',startuppath,' as installation path.'])
              case 7
                toolboxroot = install_path;
           end
     end

     errcode=95.3;
     TBfullpath=fullfile(toolboxroot,toolboxpath);
     if ~exist(TBfullpath,'dir'), mkdir(toolboxroot,toolboxpath); end

%%%%%%% resolve relative path (starting with ./ and ../) to absolute path

     isrelpath = findstr('./',TBfullpath);
     isrelpathDos = findstr('.\',TBfullpath);
     if ( ~isempty(isrelpath) && isrelpath == 1 ) || ( ~isempty(isrelpathDos) && isrelpathDos == 1 )
         TBfullpath = fullfile(pwd, TBfullpath(3:end));
     end

     isrelpath = findstr('../',TBfullpath);
     isrelpathDos = findstr('..\',TBfullpath);
     if ( ~isempty(isrelpath) && isrelpath == 1 ) || ( ~isempty(isrelpathDos) && isrelpathDos == 1 )
         TBfullpath = fullfile(pwd, TBfullpath(4:end));
     end
     

%%%%%%% ask where to add entry in startup file

     disp(['> In order to get permanent access, the toolbox should be added',10,'> to the top (default) or end (E) of your startup path.'])
     in = input('> Add toolbox permanently into your startup path (highly recommended)? Y/E/N [Y]: ','s');
     if isempty(in), in = 'Y'; end
     if strcmpi('Y',in)
       startupPos = '-begin';
       disp('  Adding Toolbox at the top of the startup.m file')
     elseif strcmpi('E',in)
       startupPos = '-end';
       disp('  Adding Toolbox at the end of the startup.m file')
     end

     if startupPos
         errcode=95.4;
         loc = ['addpath ''',TBfullpath,''' ', startupPos];
         if ~ismember(loc, instpaths)
             instpaths{end+1} = loc;
         end
     end

  else
     errcode=96;
     startupfile=which('startup');
     startuppath=startupfile(1:findstr('startup.m',startupfile)-1);
     if isoctave
         startuppath = ['~', filesep];
         startupfile = fullfile('~','.octaverc');
     end
     if ~isunix
        if isoctave
            toolboxroot=matlabroot;
        else
            toolboxroot=strtok(userpath,';');
        end
        %toolboxroot=fullfile(matlabroot,'toolbox');
     else
        toolboxroot=startuppath;
     end
    
        errcode=96.21;
        if ~isempty(install_path)
           switch ( exist(install_path,'dir') )
              case 0
                disp(['> Create ', install_path, '?'])
                in = input('> Create ', install_path, '? Y/N [Y]: ','s');
                if isempty(in), in = 'Y'; end
                if strcmpi('Y',in)
                   err = mkdir(install_path);
                   if ~err
                     disp(['  ** Could not create ', install_path, '! Using ',startuppath,' as installation path.'])
                   else                
                     toolboxroot = install_path;
                   end                
                else 
                   disp(['  ** Do not create ', install_path, '! Using ',startuppath,' as installation path.'])
                end
              case 2
                disp(['  ** ', install_path, ' is not a directory! Using ',startuppath,' as installation path.'])
              case 7
                toolboxroot = install_path;
           end
        end
        TBfullpath=fullfile(toolboxroot,toolboxpath);
        if ~exist(TBfullpath,'dir'), mkdir(toolboxroot,toolboxpath); end
  end
  
  
%%%%%%% read the archive
  errcode=97;
  fprintf('  Importing the archiv ')
  cd(currentpath)
  max_sc=30;
  scale=[sprintf('%3.0f',0),'% |',repmat(' ',1,max_sc),'|'];
  fprintf('%s',scale)
  b=''; c.file=''; c.data=''; bfile=''; folder=''; i2=0;
    
    % read ASCII
    errcode=97.1;
    i1=findstr(char(A'),'%<-- ASCII begins here');
    i2=findstr(char(A'),'%<-- ASCII ends here -->');
    
    for k=1:length(i1),
      wb=round(i1(k)*max_sc/eofbyte);
      errcode=97.11;
      scale=[sprintf('%3.0f',100*wb/max_sc),'% |',repmat('*',1,wb),repmat(' ',1,max_sc-wb),'|'];
      fprintf([repmat('\b',1,max_sc+7),'%s'],scale)
      B=A(i1(k):i2(k)-2);
     
      i4=find(B == 10);
      i3=[0;i4(1:end-1)]+1;
      filename=strrep(...
                strrep(char(B(i3(1):i4(1)-1)'),'%<-- ASCII begins here: __',''),...
  	      '__ -->','');
      errcode=['97.1',reshape(dec2hex(double(filename))',1,length(filename)*2)];
      filename = strrep(filename, '/', filesep);
      i6=findstr(filename, filesep);
      if i6>0
         folder=[folder; {filename(1:i6(end)-1)}];
      end
      c(k).file={filename};
      c(k).data=strrep(char(B(i4(1)+3:end)'),[char(10),'%@'],char(10));
    end
  
    % read binary
    errcode=97.2;
    i1=findstr(char(A'),'%<-- Binary begins here');
    i2=findstr(char(A'),'%<-- Binary ends here -->');
    for k=1:length(i1),
      wb=round(i1(k)*max_sc/eofbyte);
      errcode=97.21;
      scale=[sprintf('%3.0f',100*wb/max_sc),'% |',repmat('*',1,wb),repmat(' ',1,max_sc-wb),'|'];
      fprintf([repmat('\b',1,max_sc+7),'%s'],scale)
      B=A(i1(k):i2(k));
  
      i4=find(B == 10);
      i3=[0;i4(1:end-1)]+1;
      i5=findstr(char(B(i3(1):i4(1))'),'__');
      filename=char(B(i5(1)+2:i5(2)-1)');
      errcode=['97.2',reshape(dec2hex(double(filename))',1,length(filename)*2)];
      filename = strrep(filename, '/', filesep);
      i6=findstr(filename, filesep);
      if i6>0
      folder=[folder; {filename(1:i6(end)-1)}];
      end
      bfile=[bfile; {filename}];
      nbytes=str2double(char(B(i5(3)+2:i5(4)-1)'));
      if nbytes>=2
        temp=reshape(B(i4(1)+1:i4(1)+nbytes),2,nbytes/2);
        b=[b;{temp(2,:)}];
      else
        b=[b;{''}];
      end
  
    end
    wb=max_sc;
    scale=[sprintf('%3.0f',100*wb/max_sc),'% |',repmat('*',1,wb),repmat(' ',1,max_sc-wb),'|'];
    fprintf([repmat('\b',1,max_sc+7),'%s'],scale)
  fprintf('\n')
  clear temp* i i1 i2 i3 i4 i5 i6 A B
  
  errcode='97.3';
  if exist(TBfullpath,'dir') ~= 7, error(['Could not enter toolbox path',10,'  ', TBfullpath,10,'. Please check whether you have write access or whether there is another file of such a name blocking the creation of the path.']), end
  cd(TBfullpath)
  disp(['  Toolbox folder is ',TBfullpath,''])
  
%%%%%%% make sub-directories
  errcode='97.4';
  for i=1:length(folder);
     i1=folder{i}; i2='.'; olddir=pwd;
     if exist([TBfullpath, filesep, i1],'file') ~= 7
        while ~isempty(i2) && ~isempty(i1)
          cd(i2)
          [i2 i1]=strtok(i1,filesep);
          if exist([pwd, filesep, i2],'file') ~= 7 && exist([pwd, filesep, i2],'file')
             disp(['  ** Warning: Found ', i2, ' will be overwritten.'])
             errcode=['97.5',reshape(dec2hex(double(i2))',1,length(i2)*2)];
             delete(i2)
          end
          if ~exist([pwd, filesep, i2],'file')
            disp(['  Make directory ',pwd, filesep, i2])
            errcode=['97.6',reshape(dec2hex(double(i2))',1,length(i2)*2)];
            err = mkdir(i2);
            if err==0, disp(['  ** Warning: Could not create ',pwd, filesep, i2,'!',10,'     Installation will probably fail.']), end
            errcode=97.7;
            temppath = strrep(pwd,TBfullpath,'');
            if ~strcmpi(i2,'private') && all(i2 ~= '@') && all(i2 ~= '+') && all(temppath ~= '+')
                 % add entries in startup.m
                 if isempty(startupPos) startupPos = '-end'; end
                 loc = ['addpath ''',pwd, filesep, i2,''' ', startupPos];
                 eval(loc);
                 if ~any(ismember(loc, instpaths)) && all(startupPos~=0)
                     instpaths{end+1} = loc;
                 end
            end
          end
        end
        cd(olddir)
     end
  end
  
%%%%%%% make toolbox accessible in the current matlab session
  if ~startupPos, startupPos = '-end'; end
  addpath(TBfullpath,startupPos);


%%%%%%% write startup file
  if startupPos
    errcode=95.4;
    if ~exist('startupfile','var')
        if isoctave
            startupfile = fullfile('~','.octaverc');
        else
            up = textscan(userpath,'%s','delimiter',':'); up=up{1};
            startuppath = '';
            for k = 1:length(up)
                if exist(up{k},'file') == 7
                    startuppath = up{k};
                end
            end
            if isempty(startuppath)
                err=mkdir(up{1});
                startuppath = up{1};
            end
            startupfile = fullfile(startuppath,'startup.m');
        end
    end

    fid=fopen(startupfile,'w');
    if fid < 0
      disp(['  ** Warning: Could not get access to ',startupfile,'.']);
      disp('  ** Could not add toolbox into the startup.m file.');
      disp('  ** Ensure that you have write access!');
    else
      %for i2=1:length(instpaths), fprintf(fid,'%s\n', char(instpaths{i2})); disp(char(instpaths{i2}));end
      for i2=1:length(instpaths), fprintf(fid,'%s\n', char(instpaths{i2})); end
      fclose(fid);
    end
  end


%%%%%%% write the programme files
  errcode=98;
  num_errors=0;
  for i=1:length(c),
    disp(['  Creating ',char(c(i).file)])
    fid=fopen(char(c(i).file),'w');
    if fid < 0
       disp(['  ** Warning: Could not get access to ',char(c(i).file),'.']);
       disp('  ** Ensure that you have write access in this filesystem!');
       num_errors=num_errors+1;
       if num_errors == 2; 
         disp('Abort!')
         disp('Too much errors due to write access failure in this filesystem.')
         cd(currentpath), return
       end
    else
      if strcmpi(c(i).file,'info.xml')
        v=version;
        release=str2double(v(findstr(v,'(R')+2:findstr(v,')')-1));
        if release>12, area='toolbox'; icon_path='$toolbox/matlab/icons'; else area='matlab'; icon_path='$toolbox/matlab/general'; end
        i3=findstr(c(i).data,'<matlabrelease>'); i4=findstr(c(i).data,'</matlabrelease>');
        if ~isempty(i3) && i4>i3;
          c(i).data=strrep(c(i).data,c(i).data(i3:i4-1),['<matlabrelease>',num2str(release)]);
        end
        i3=findstr(c(i).data,'<area>'); i4=findstr(c(i).data,'</area>');
        if ~isempty(i3) && i4>i3;
          c(i).data=strrep(c(i).data,c(i).data(i3:i4-1),['<area>',area]);
        end
        c(i).data=strrep(c(i).data,'<icon>$toolbox/matlab/general',['<icon>',icon_path]);
        c(i).data=strrep(c(i).data,'<icon>$toolbox/matlab/icons',['<icon>',icon_path]);
      end
      fprintf(fid,'%s',char(c(i).data));
      fclose(fid);
    end
  end

%%%%%%% pcode the programme files
  for i=1:length(c),
    try
      [tPath tFile tExt]=fileparts(char(c(i).file));
      if strcmpi(tExt,'.m') && ~strcmpi(tFile,'Readme') && ~strcmpi(tFile,'Contents')
        if mislocked(char(c(i).file)), munlock(char(c(i).file)); clear(char(c(i).file)); end
        disp(['  Pcode ',char(c(i).file),''])
        if sum(c(i).file == '.') < 2
           pcode(char(c(i).file),'-inplace')
        end  
      end  
    catch
    end
  end

%%%%%%% write the binary files
  num_errors=0;
  for i=1:length(b),
    disp(['  Creating ',char(bfile(i)),''])
    fid=fopen(char(bfile(i)),'w');
    if fid < 0
       disp(['  ** Warning: Could not get access to ',char(bfile(i)),'.']);
       disp('  ** Ensure that you have write access in this filesystem!');
       num_errors=num_errors+1;
       if num_errors == 2; 
         disp('Abort!')
         disp('Too much errors due to write access failure in this filesystem.')
         cd(currentpath), return
       end
    else
      fwrite(fid,b{i}); 
      fclose(fid);
    end
  end
  tx=version; tx=strtok(tx,'.'); 
  if str2double(tx)>=5 && exist('rehash','builtin'), rehash, end
  if str2double(tx)>=6 && exist('rehash','builtin'), eval('rehash toolboxcache'), end
  
%%%%%%% removing installation file
  errcode=99;
  cd(currentpath)
  i = input('> Delete installation file? Y/N [Y]: ','s');
  if isempty(i), i = 'Y'; end
  
  if strcmpi('Y',i)
    disp('  Removing installation file')
    delete(install_file)
  end
  
  disp('  Installation finished!')
  
  if ~exist('rehash','builtin')
    disp('  ** Warning: Could not rehash your Matlab system.')
    disp('  ** Probably a restart of Matlab will be necessary in order')
    disp('  ** to get access to the installed toolbox.')
  end
  
  disp('--------------------------')
  
  disp('For an overview type:')
  disp(['helpwin ',toolboxpath])
  warning('on')
  if isoctave
      more on
  end
  
  
%%%%%%% error handling

catch
  z2=whos;x_lasterr=lasterr;y_lastwarn=lastwarn;
  if ~strcmpi(x_lasterr,'Interrupt')
    if fid>-1, 
      try, z_ferror=ferror(fid); catch, z_ferror=''; end
    else
      z_ferror='File not found.'; 
    end
    installfile_info=dir([currentpath,filesep,install_file]);
    fid=fopen(fullfile(currentpath,'install.log'),'w');
    checksum_test=findstr(x_lasterr,'The installation file is corrupt!');
    if isempty(checksum_test),checksum_test=0; end
    if ~checksum_test
      fprintf(fid,'%s\n','A critical error has occurred. Please inform the distributor');
      fprintf(fid,'%s\n','of the toolbox, where the error occured and send us the entire');
      fprintf(fid,'%s\n','screen output of the installation, the following error');
      fprintf(fid,'%s\n','report, and the informations about the toolbox (distributor,');
      fprintf(fid,'%s\n','name, URL etc.). Provide a brief description of what you were');
      fprintf(fid,'%s\n','doing when this problem occurred.');
      fprintf(fid,'%s\n','E-mail or FAX this information to us at:');
      fprintf(fid,'%s\n','    E-mail:  marwan@pik-potsdam.de');
      fprintf(fid,'%s\n','       Fax:  ++49 +331 288 2640');
      fprintf(fid,'%s\n\n\n','Thank you for your assistance.');
      fprintf(fid,'%s\n',repmat('-',50,1));
      fprintf(fid,'%s\n',datestr(now,0));
      fprintf(fid,'%s\n',['Matlab ',char(version),' on ',computer]);
      fprintf(fid,'%s\n',repmat('-',50,1));
      fprintf(fid,'%s\n','Makeinstall Version ==> 3.33 ');
      fprintf(fid,'%s\n',['Install File ==> ',install_file,'/',installfile_info.date,'/',num2str(installfile_info.bytes)]);
      fprintf(fid,'%s\n',['Container ==> ',time_stamp,'/',checksum]);
      fprintf(fid,'%s\n\n',repmat('-',50,1));
      fprintf(fid,'%s\n',x_lasterr);
      fprintf(fid,'%s\n',y_lastwarn);
      fprintf(fid,'%s\n',z_ferror);
      fprintf(fid,'%s\n',[' errorcode ==> ',num2str(errcode)]);
      fprintf(fid,'%s\n',' workspace dump ==>');
      if ~isempty(z2), 
        fprintf(fid,'%s\n',['Name',char(9),'Size',char(9),'Bytes',char(9),'Class']);
        for j=1:length(z2);
          fprintf(fid,'%s',[z2(j).name,char(9),num2str(z2(j).size),char(9),num2str(z2(j).bytes),char(9),z2(j).class]);
          if ~strcmp(z2(j).class,'cell') && ~strcmp(z2(j).class,'struct')
            content=eval(z2(j).name);
            try, content=mat2str(content(1:min([size(content,1),500]),1:min([size(content,2),500])));end
            fprintf(fid,'\t%s',content(1:min([length(content),500])));
          elseif strcmp(z2(j).class,'cell')
            content=eval(z2(j).name);
            fprintf(fid,'\t');
            for j2=1:min([length(content),500])
              if isnumeric(content{j2})
                fprintf(fid,'{%s} ',content{j2}(1:end));
              elseif iscell(content{j2})
                fprintf(fid,'{%s} ',content{j2}{1:end});
              end
            end
          elseif strcmp(z2(j).class,'struct')
            content=fieldnames(eval(z2(j).name));
            content=char(content); content(:,end+1)=' '; content=content';
            fprintf(fid,'\t%s',content(:)');
          end
          fprintf(fid,'%s\n','');
        end
      end
    else
      fprintf(fid,'%s\n','Installation aborted due to a failed checksum test!');
      fprintf(fid,'%s\n',['Checksum should be:     ', checksum]);
      fprintf(fid,'%s\n\n',['Checksum of archive is: ', checksum_file]);
      fprintf(fid,'%s\n','Ensure that the installation file was not modified by any');
      fprintf(fid,'%s\n','other programme, as an anti-virus scanner for emails, a');
      fprintf(fid,'%s\n','mis-configured HTTP proxy or FTP programme.');
    end
    fclose(fid);
    disp('----------------------------');
    disp('       ERROR OCCURED ');
    disp('    during installation');
    disp('----------------------------');
    disp(x_lasterr);
    if errcode == 95.21
       disp('----------------------------');
       disp('   This error means that the toolbox directory could not');
       disp('   be created. Probably, there is a file of the same name.');
       disp('   or there are in-appropriate permission settings in its');
       disp('   parent folder.');
       disp('   Please check the output of the following command:');
       disp('      userpath(''reset'')');
       disp('   which might help to locate the problem.');
       disp('----------------------------');
    end
    if ~checksum_test
      disp(z_ferror);
      disp(['   errorcode is ',num2str(errcode)]);
      disp('----------------------------');
      disp('   A critical error has occurred. Please inform the distributor');
      disp('   of the toolbox, where the error occured and send us the entire');
      disp('   screen output of the installation, the error report report');
      disp('   and the informations about the toolbox (distributor, name,');
      disp('   URL etc.). For your convenience, this information has been')
      disp('   recorded in: ')
      disp(['   ',fullfile(currentpath,'install.log')]), disp(' ')
      disp('   Provide a brief description of what you were doing when ')
      disp('   this problem occurred.'), disp(' ')
      disp('   E-mail or FAX this information to us at:')
      disp('       E-mail:  marwan@pik-potsdam.de')
      disp('          Fax:  ++49 +331 288 2640'), disp(' ')
      disp('   Thank you for your assistance.')
    end
  end
  warning('on')
  cd(currentpath)
  if isoctave
      more on
  end
end

function flag = isoctave
% ISOCTAVE   Checks whether the code is running in Octave
%   ISOCTAVE is returning the value TRUE if executed within the
%   Octave environment, else it is returning FALSE (e.g. when
%   called within Matlab.

a = ver('Octave');

if ~isempty(a) && strfind(a(1).Name,'Octave')
    flag = true;
else
    flag = false;
end
% -------------------------------------------
% GENERATED ENTRIES - DO NOT MODIFY ANYTHING!
%<-- Header begins here -->
%@1128770F64969
%@17-Oct-2014 17:07:56
%@1.17 
%<-- Header ends here -->
%<-- ASCII begins here: __Contents.m__ -->
%@% GUI Layout Toolbox
%@% Version 1.17 17-Oct-2014
%@%
%@%    layoutclean   -   Removes GUI Layout Toolbox.
%@%    layoutroot    -   returns the folder containing the layout toolbox
%@%    layoutversion -   get the toolbox version and date
%@
%@% Generated at 24-Nov-2013 10:15:15 by MAKEINSTALL
%@% Modified at 17-Oct-2014 17:07:56 by MAKEINSTALL
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __info.xml__ -->
%@<productinfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.mathworks.com/namespace/info/v1/info.xsd">
%@<?xml-stylesheet type="text/xsl" href="http://www.mathworks.com/namespace/info/v1/info.xsd"?>
%@
%@<matlabrelease>NaN</matlabrelease>
%@<name>GUILayout</name>
%@<type>matlab</type>
%@<icon>$toolbox/matlab/general/matlabicon.gif</icon>
%@
%@<list>
%@
%@<listitem>
%@<label>Help</label>
%@<callback>helpwin GUILayout/</callback>
%@<icon>$toolbox/matlab/general/bookicon.gif</icon>
%@</listitem>
%@
%@</list>
%@
%@</productinfo>
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutClean.m__ -->
%@function layoutClean
%@%LAYOUTCLEAN   Removes GUILayout.
%@%    LAYOUTCLEAN removes all files of GUILayout from
%@%    the filesystem and its entry from the Matlab
%@%    startup file.
%@%    
%@%    This installation script was generated by using 
%@%    the MAKEINSTALL tool. For further information
%@%    visit http://matlab.pucicu.de
%@
%@% Copyright (c) 2008-2012
%@% Norbert Marwan, Potsdam Institute for Climate Impact Research, Germany
%@% http://www.pik-potsdam.de
%@%
%@% Copyright (c) 2002-2008
%@% Norbert Marwan, Potsdam University, Germany
%@% http://www.agnld.uni-potsdam.de
%@%
%@% Generation date: 17-Oct-2014 17:07:56
%@% $Date: 2014/09/04 07:33:00 $
%@% $Revision: 3.33 $
%@
%@error(nargchk(0,0,nargin));
%@
%@try
%@  if isoctave
%@      more off
%@  end
%@  fid = 0;
%@  warning('off')
%@  disp('--------------------------')
%@  disp('    REMOVING GUILayout    ')
%@  disp('--------------------------')
%@  currentpath=pwd;
%@  oldtoolboxpath = fileparts(which(mfilename));
%@
%@  disp(['  GUILayout found in ', oldtoolboxpath,''])
%@  i = input('> Delete GUILayout? Y/N [Y]: ','s');
%@  if isempty(i), i = 'Y'; end
%@
%@  if strcmpi('Y',i)
%@%%%%%%% check for entries in startup
%@  
%@        p=path; i1=0; i = ''; number_warnings_pathdef = 0;
%@  
%@        while findstr(upper('GUILayout'),upper(p)) > i1
%@           i1=findstr(upper('GUILayout'),upper(p));
%@           if ~isempty(i1)
%@               i1=i1(end);
%@               if isunix, i2=findstr(':',p); else, i2=findstr(';',p); end
%@               i3=i2(i2>i1);                 % last index pathname
%@               if ~isempty(i3), i3=i3(1)-1; else, i3=length(p); end
%@               i4=i2(i2<i1);                 % first index pathname
%@               if ~isempty(i4), i4=i4(end)+1; else, i4=1; end
%@               rmtoolboxpath=p(i4:i3);
%@%%%%%%% removing entry in startup-file
%@               rmpath(rmtoolboxpath)
%@               err = savepath;
%@               if number_warnings_pathdef == 0 && err, disp('  ** Warning: No write access to pathdef.m file!'), number_warnings_pathdef = number_warnings_pathdef+1; end
%@               if i4>1, p(i4-1:i3)=''; else, p(i4:i3)=''; end
%@               startup_exist = exist('startup','file');
%@               if isoctave startup_exist = exist(fullfile('~','.octaverc'),'file'); end
%@               if startup_exist
%@                    startupfile=which('startup');
%@                    startuppath=startupfile(1:findstr('startup.m',startupfile)-1);
%@                    if isoctave
%@                        startuppath = ['~',filesep];
%@                        startupfile = fullfile('~','.octaverc');
%@                    end
%@                    fid = fopen(startupfile,'r');
%@                    k = 1;
%@                    while 1
%@                       tmp = fgetl(fid);
%@                       if ~ischar(tmp), break, end
%@                       instpaths{k} = tmp;
%@                       k = k + 1;
%@                    end
%@                    k=1;
%@                    while k <= length(instpaths)
%@                        if ~isempty(findstr(rmtoolboxpath,instpaths{k}))
%@                            disp(['  Removing startup entry ', instpaths{k}])
%@                            instpaths(k)=[];
%@                        end
%@                        k=k+1;
%@                    end
%@                    fid=fopen(startupfile,'w');
%@                    for i2=1:length(instpaths), 
%@                        fprintf(fid,'%s\n', char(instpaths{i2})); 
%@                    end
%@                    fclose(fid);
%@               end
%@           end
%@           p = path; i1 = 0;
%@       end
%@%%%%%%% removing old paths
%@        if exist(oldtoolboxpath,'dir') == 7
%@           if isoctave, confirm_recursive_rmdir (false, 'local'); end
%@           disp(['  Removing files in ',oldtoolboxpath,''])
%@           cd(oldtoolboxpath)
%@           dirnames='';filenames='';
%@           temp='.:';
%@           while ~isempty(temp)
%@               [temp1 temp]=strtok(temp,':');
%@               if ~isempty(temp1)
%@                   dirnames=[dirnames; {temp1}];
%@                   x2=dir(temp1);
%@                   for i=1:length(x2)
%@                       if ~x2(i).isdir, filenames=[filenames; {[temp1,'/', x2(i).name]}]; end
%@         	             if x2(i).isdir && ~strcmp(x2(i).name,'.') && ~strcmp(x2(i).name,'..'), temp=[temp,temp1,filesep,x2(i).name,':']; end
%@                   end
%@               end
%@           end
%@           dirnames = strrep(dirnames,['.',filesep],'');
%@           dirnames(strcmpi('.',dirnames)) = [];
%@           l = zeros(length(dirnames),1); for i=1:length(dirnames),l(i)=length(dirnames{i}); end
%@           [i i4]=sort(l); i4 = i4(:);
%@           dirnames=dirnames(flipud(i4));
%@           for i=1:length(dirnames)
%@              delete([dirnames{i}, filesep,'*'])
%@              if exist('rmdir') == 5 && exist(dirnames{i}) == 7, rmdir(dirnames{i},'s'); else, delete(dirnames{i}), end
%@              disp(['  Removing files in ',char(dirnames{i}),''])
%@           end
%@           if exist(currentpath), cd(currentpath), else, cd .., end
%@           if strcmpi(currentpath,oldtoolboxpath), cd .., end
%@           if exist('rmdir') == 5 && exist(oldtoolboxpath) == 7, rmdir(oldtoolboxpath,'s'); else, delete(oldtoolboxpath), end
%@           disp(['  Removing folder ',oldtoolboxpath,''])
%@        end
%@       disp(['  GUILayout now removed.'])
%@  else
%@       disp(['  Nothing happened. Keep smiling.'])
%@  end
%@  tx=version; tx=strtok(tx,'.'); if str2double(tx)>=6 && exist('rehash','builtin'), rehash, end
%@  warning on
%@  if isoctave
%@      more on
%@  end
%@  if exist(currentpath,'dir') ~= 7, cd(fileparts(currentpath)), else, cd(currentpath), end
%@  
%@%%%%%%% error handling
%@
%@catch
%@  x=lasterr;y=lastwarn;
%@  if ~strcmpi(lasterr,'Interrupt')
%@    if fid>-1, 
%@      try, z=ferror(fid); catch, z='No error in the installation I/O process.'; end
%@    else
%@      z='File not found.'; 
%@    end
%@    fid=fopen('deinstall.log','w');
%@    fprintf(fid,'%s\n','A critical error has occurred. Please inform the distributor');
%@    fprintf(fid,'%s\n','of the toolbox, where the error occured and send us the entire');
%@    fprintf(fid,'%s\n','screen output of the installation, the following error');
%@    fprintf(fid,'%s\n','report, and the informations about the toolbox (distributor,');
%@    fprintf(fid,'%s\n','name, URL etc.). Provide a brief description of what you were');
%@    fprintf(fid,'%s\n','doing when this problem occurred.');
%@    fprintf(fid,'%s\n','E-mail or FAX this information to us at:');
%@    fprintf(fid,'%s\n','    E-mail:  marwan@pik-potsdam.de');
%@    fprintf(fid,'%s\n','       Fax:  ++49 +331 288 2640');
%@    fprintf(fid,'%s\n\n\n','Thank you for your assistance.');
%@    fprintf(fid,'%s\n',repmat('-',50,1));
%@    fprintf(fid,'%s\n',datestr(now,0));
%@    fprintf(fid,'%s\n',['Matlab ',char(version),' on ',computer]);
%@    fprintf(fid,'%s\n',repmat('-',50,1));
%@    fprintf(fid,'%s\n','GUILayout');
%@    fprintf(fid,'%s\n',x);
%@    fprintf(fid,'%s\n',y);
%@    fprintf(fid,'%s\n',z);
%@    fclose(fid);
%@    disp('----------------------------');
%@    disp('       ERROR OCCURED ');
%@    disp('   during deinstallation');
%@    disp('----------------------------');
%@    disp(x);
%@    disp(z);
%@    disp('----------------------------');
%@    disp('   A critical error has occurred. Please inform the distributor');
%@    disp('   of the toolbox, where the error occured and send us the entire');
%@    disp('   screen output of the installation, the error report report');
%@    disp('   and the informations about the toolbox (distributor, name,');
%@    disp('   URL etc.). For your convenience, this information has been')
%@    disp('   recorded in: ')
%@    disp(['   ',fullfile(pwd,'deinstall.log')]), disp(' ')
%@    disp('   Provide a brief description of what you were doing when ')
%@    disp('   this problem occurred.'), disp(' ')
%@    disp('   E-mail or FAX this information to us at:')
%@    disp('       E-mail:  marwan@pik-potsdam.de')
%@    disp('          Fax:  ++49 +331 288 2640'), disp(' ')
%@    disp('   Thank you for your assistance.')
%@  end
%@  warning('on')
%@  if exist(currentpath,'dir') == 7, cd(fileparts(currentpath)), else, cd(currentpath), end
%@  if isoctave
%@      more on
%@  end
%@end
%@
%@function flag = isoctave
%@% ISOCTAVE   Checks whether the code is running in Octave
%@%   ISOCTAVE is returning the value TRUE if executed within the
%@%   Octave environment, else it is returning FALSE (e.g. when
%@%   called within Matlab.
%@
%@a = ver('Octave');
%@
%@if ~isempty(a) && strfind(a(1).Name,'Octave')
%@    flag = true;
%@else
%@    flag = false;
%@end
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutRoot.m__ -->
%@function folder = layoutRoot()
%@%layoutRoot  returns the folder containing the layout toolbox
%@%
%@%   folder = layoutRoot() returns the full path to the folder containing
%@%   the layout toolbox.
%@%
%@%   Examples:
%@%   >> folder = layoutRoot()
%@%   folder = 'C:\Temp\LayoutToolbox1.0'
%@%
%@%   See also: layoutVersion
%@
%@%   Copyright 2009-2010 The MathWorks Ltd.
%@%   $Revision: 199 $    
%@%   $Date: 2010-06-18 15:55:16 +0100 (Fri, 18 Jun 2010) $
%@
%@folder = fileparts( mfilename( 'fullpath' ) );
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutVersion.m__ -->
%@function [version, versionDate] = layoutVersion()
%@%layoutVersion  get the toolbox version and date
%@%
%@%   V = layoutVersion() returns just the version string
%@%
%@%   [V,D] = layoutVersion() returns both the version string and the date of
%@%   creation (format is ISO8601, i.e. YYYY-MM-DD)
%@%
%@%   Examples:
%@%   >> [v,d] = layoutVersion()
%@%   v = '1.0'
%@%   d = '2010-05-28'
%@%
%@%   See also: layoutRoot
%@
%@%   Copyright 2009-2013 The MathWorks Ltd.
%@
%@% True version number comes from layout/Contents.m
%@v = ver('GUILayout');
%@if isempty(v)
%@    error('Layouts:NotInstalled', 'GUI Layout Toolbox is not installed.');
%@end
%@version = v.Version;
%@versionDate = datestr(datenum(v.Date), 'yyyy-mm-dd'); % Convert to ISO standard format
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __starthere.html__ -->
%@<html>
%@  <head>
%@    <meta http-equiv="Refresh" content="0;url=layoutHelp/frames.html"/>
%@    <meta author="The MathWorks Ltd."/>
%@    <meta copyright="2009 The MathWorks Ltd."/>
%@  </head>
%@</html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/Box.m__ -->
%@classdef Box < uiextras.Container
%@    %Box  Box base class
%@    %
%@    %   See also: uiextras.HBox
%@    %             uiextras.VBox
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 366 $
%@    %   $Date: 2011-02-10 15:48:11 +0000 (Thu, 10 Feb 2011) $
%@    
%@    properties( SetObservable )
%@        
%@        Sizes = zeros( 1, 0 ) % Vector of sizes, with positive elements for absolute sizes (pixels) and negative elements for relative sizes
%@        Padding = 0           % Padding around contents (pixels)
%@        Spacing = 0           % Spacing between contents (pixels)
%@        
%@    end % public properties
%@    
%@    properties( Dependent )
%@  
%@        MinimumSizes % Minimum size (in pixels) for each element
%@        
%@    end % dependent properties
%@    
%@    properties( Access=private )
%@  
%@        MinimumSizes_ = zeros( 1, 0 )
%@        
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = Box( varargin )
%@            %BOX  Container with contents in a single row or column
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.Container( varargin{:} );
%@            
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'Padding' );
%@            obj.setPropertyFromDefault( 'Spacing' );
%@            
%@        end % constructor
%@        
%@        function set.Sizes( obj, value )
%@            % Check. We only count live children
%@            myChildren = obj.getValidChildren();
%@            if ~isequal( numel( myChildren ), numel( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Size of property ''Sizes'' must match size of property ''Children''.' )
%@            elseif ~isnumeric( value ) || ...
%@                    any( ~isreal( value ) ) || any( isnan( value ) ) || any( ~isfinite( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Sizes'' must consist of real, finite, numeric values.' )
%@            end
%@            
%@            % Set
%@            obj.Sizes = value(:)';
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.Sizes
%@        
%@        function set.MinimumSizes( obj, value )
%@            % Check. We only count live children
%@            if ~isequal( numel( obj.Sizes ), numel( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Size of property ''MinimumSizes'' must match size of property ''Sizes''.' )
%@            elseif ~isnumeric( value ) || ...
%@                    any( ~isreal( value ) ) || any( isnan( value ) ) || any( ~isfinite( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''MinimumSizes'' must consist of real, finite, numeric values.' )
%@            end
%@            
%@            % Set and redraw
%@            obj.MinimumSizes_ = value(:)';
%@            obj.redraw();
%@        end % set.MinimumSizes
%@        
%@        function value = get.MinimumSizes( obj )
%@            value = obj.MinimumSizes_;
%@        end % get.MinimumSizes
%@        
%@        function set.Padding( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Padding'' must be a nonnegative integer.' )
%@            end
%@            
%@            % Set
%@            obj.Padding = value;
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.Padding
%@        
%@        function set.Spacing( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Spacing'' must be a nonnegative integer.' )
%@            end
%@            
%@            % Set
%@            obj.Spacing = value;
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.Spacing
%@        
%@    end % public methods
%@    
%@    methods( Access = protected )
%@                
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            % This callback fires when a child is added to a container.
%@            % Add an element to Sizes.  This automatically triggers a
%@            % redraw.
%@            obj.MinimumSizes_(1,end+1) = 1;
%@            obj.Sizes(1,end+1) = -1;
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSL>
%@            % This callback fires when a child is destroyed or removed.
%@            % Work out which child has gone and delete the corresponding
%@            % element from Sizes.  This automatically triggers a redraw.
%@            obj.MinimumSizes_( eventData.ChildIndex ) = [];
%@            obj.Sizes( eventData.ChildIndex ) = [];
%@        end % onChildRemoved
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/BoxPanel.m__ -->
%@classdef BoxPanel < uiextras.CardPanel & uiextras.DecoratedPanel
%@    %BoxPanel  Show one element inside a box panel
%@    %
%@    %   obj = uiextras.BoxPanel() creates a box-styled panel object with
%@    %   automatic management of the contained widget or layout. The
%@    %   properties available are largely the same as the builtin UIPANEL
%@    %   object. Where more than one child is added, the currently visible
%@    %   child is determined using the SelectedChild property.
%@    %
%@    %   obj = uiextras.BoxPanel(param,value,...) also sets one or more
%@    %   property values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.BoxPanel">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> p = uiextras.BoxPanel( 'Parent', f, 'Title', 'A BoxPanel', 'Padding', 5 );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'r' )
%@    %
%@    %   >> f = figure();
%@    %   >> p = uiextras.BoxPanel( 'Parent', f, 'Title', 'A BoxPanel', 'Padding', 5 );
%@    %   >> b = uiextras.HBox( 'Parent', p, 'Spacing', 5 );
%@    %   >> uicontrol( 'Style', 'listbox', 'Parent', b, 'String', {'Item 1','Item 2'} );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', b, 'Background', 'b' );
%@    %   >> set( b, 'Sizes', [100 -1] );
%@    %   >> p.FontSize = 12;
%@    %   >> p.FontWeight = 'bold';
%@    %   >> p.HelpFcn = @(x,y) disp('Help me!');
%@    %
%@    %   See also: uiextras.Panel
%@    %             uiextras.TabPanel
%@    %             uiextras.HBoxFlex
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 383 $
%@    %   $Date: 2013-04-29 11:44:48 +0100 (Mon, 29 Apr 2013) $
%@    
%@    properties
%@        IsMinimized = false
%@        IsDocked = true
%@    end % public properties
%@    
%@    properties( Dependent = true )
%@        CloseRequestFcn
%@        HelpFcn
%@        MinimizeFcn
%@        DockFcn
%@        BorderType
%@        Title
%@        TitleColor
%@        TooltipString
%@    end % dependent properties
%@    
%@    properties( SetAccess = private, GetAccess = private, Hidden = true )
%@        HGWidgets_ = struct()
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = BoxPanel(varargin)
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj = obj@uiextras.CardPanel( varargin{:} );
%@            obj = obj@uiextras.DecoratedPanel( varargin{:} );
%@            
%@            % For this container we need the border on
%@            set( obj.UIContainer, 'BorderType', 'etchedin' );
%@            
%@            % Text control for title
%@            figh = ancestor( obj.UIContainer, 'figure' );
%@            contextmenu = uicontextmenu( 'Parent', figh );
%@            titleColor = [0.75 0.9 1.0];
%@            obj.HGWidgets_.TitleText = uicontrol('parent', obj.UIContainer, ...
%@                'Visible', obj.Visible, ...
%@                'units', 'pixels', ...
%@                'HitTest', 'off', ...
%@                'style', 'text', ...
%@                'string', '', ...
%@                'horizontalalignment', 'left',...
%@                'BackgroundColor', titleColor, ...
%@                'ForegroundColor', obj.ForegroundColor, ...
%@                'FontSize', obj.FontSize, ...
%@                'FontName', obj.FontName, ...
%@                'FontAngle', obj.FontAngle, ...
%@                'FontWeight', obj.FontWeight, ...
%@                'FontUnits', obj.FontUnits, ...
%@                'UIContextMenu', contextmenu, ...
%@                'HandleVisibility', 'off', ...
%@                'Tag', 'uiextras:BoxPanel:TitleText');
%@            
%@            % Panel for title
%@            obj.HGWidgets_.TitlePanel = uipanel('parent', obj.UIContainer, ...
%@                'Visible', obj.Visible, ...
%@                'units', 'pixels', ...
%@                'HitTest', 'off', ...
%@                'bordertype', 'etchedin', ...
%@                'BackgroundColor', titleColor, ...
%@                'Tag', 'uiextras:BoxPanel:TitlePanel', ...
%@                'HandleVisibility', 'off', ...
%@                'UIContextMenu', contextmenu);
%@            
%@            % Create the buttons
%@            obj.HGWidgets_.HelpButton = uicontrol('parent', obj.UIContainer, ...
%@                'style', 'checkbox', ...
%@                'cdata', uiextras.loadLayoutIcon( 'panelHelp.png' ), ...
%@                'BackgroundColor', titleColor, ...
%@                'Visible', 'off', ...
%@                'Tag', 'uiextras:BoxPanel:HelpButton', ...
%@                'HandleVisibility', 'off', ...
%@                'tooltip', 'Get help on this panel' );
%@            
%@            obj.HGWidgets_.CloseButton = uicontrol('parent', obj.UIContainer, ...
%@                'style', 'checkbox', ...
%@                'cdata', uiextras.loadLayoutIcon( 'panelClose.png' ), ...
%@                'BackgroundColor', titleColor, ...
%@                'Visible', 'off', ...
%@                'Tag', 'uiextras:BoxPanel:CloseButton', ...
%@                'HandleVisibility', 'off', ...
%@                'tooltip', 'Close this panel' );
%@            
%@            obj.HGWidgets_.DockButton = uicontrol('parent', obj.UIContainer, ...
%@                'style', 'checkbox', ...
%@                'cdata', uiextras.loadLayoutIcon( 'panelUndock.png' ), ...
%@                'BackgroundColor', titleColor, ...
%@                'Visible', 'off', ...
%@                'Tag', 'uiextras:BoxPanel:DockButton', ...
%@                'HandleVisibility', 'off', ...
%@                'tooltip', 'Undock this panel' );
%@            
%@            obj.HGWidgets_.MinimizeButton = uicontrol('parent', obj.UIContainer, ...
%@                'style', 'checkbox', ...
%@                'cdata', uiextras.loadLayoutIcon( 'panelMinimize.png' ), ...
%@                'BackgroundColor', titleColor, ...
%@                'Visible', 'off', ...
%@                'Tag', 'uiextras:BoxPanel:MinimizeButton', ...
%@                'HandleVisibility', 'off', ...
%@                'tooltip', 'Minimize this panel' );
%@            
%@            % Get some defaults
%@            obj.setPropertyFromDefault( 'TitleColor' );
%@            obj.setPropertyFromDefault( 'BorderType' );
%@            
%@            % Parse any input arguments
%@            if nargin>0
%@                set( obj, varargin{:} );
%@            end
%@            % Redraw both contents and styling
%@            obj.redraw();
%@        end % constructor
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.BorderType( obj, value )
%@            set( obj.UIContainer, 'BorderType', value );
%@            set( obj.HGWidgets_.TitlePanel, 'BorderType', value );
%@        end % set.BorderType
%@        
%@        function value = get.BorderType( obj )
%@            value = get( obj.UIContainer, 'BorderType' );
%@        end % get.BorderType
%@        
%@        function set.Title( obj, value )
%@            set( obj.HGWidgets_.TitleText, 'String', value );
%@        end % set.Title
%@        
%@        function value = get.Title( obj )
%@            value = get( obj.HGWidgets_.TitleText, 'String' );
%@        end % get.Title
%@        
%@        function set.HelpFcn( obj, value )
%@            if isempty( value )
%@                set( obj.HGWidgets_.HelpButton, 'Visible', 'off', 'Callback', [] );
%@            else
%@                set( obj.HGWidgets_.HelpButton, 'Visible', obj.Visible, 'Callback', value );
%@            end
%@        end % set.HelpFcn
%@        
%@        function set.CloseRequestFcn( obj, value )
%@            if isempty( value )
%@                set( obj.HGWidgets_.CloseButton, 'Visible', 'off', 'Callback', [] );
%@            else
%@                set( obj.HGWidgets_.CloseButton, 'Visible', obj.Visible, 'Callback', value );
%@            end
%@        end % set.CloseRequestFcn
%@        
%@        function set.MinimizeFcn( obj, value )
%@            if isempty( value )
%@                set( obj.HGWidgets_.MinimizeButton, 'Visible', 'off', 'Callback', [] );
%@            else
%@                set( obj.HGWidgets_.MinimizeButton, 'Visible', obj.Visible, 'Callback', value );
%@            end
%@        end % set.MinimizeFcn
%@        
%@        function set.IsMinimized( obj, value )
%@            obj.IsMinimized = (value(1) == true);
%@            if value( obj.IsMinimized )
%@                set( obj.HGWidgets_.MinimizeButton, ...
%@                    'cdata', uiextras.loadLayoutIcon( 'panelMaximize.png' ), ...
%@                    'tooltip', 'Maximize this panel' ); %#ok<MCSUP>
%@            else
%@                set( obj.HGWidgets_.MinimizeButton, ...
%@                    'cdata', uiextras.loadLayoutIcon( 'panelMinimize.png' ), ...
%@                    'tooltip', 'Minimize this panel' ); %#ok<MCSUP>
%@            end
%@        end % set.IsMinimized
%@        
%@        function set.DockFcn( obj, value )
%@            if isempty( value )
%@                set( obj.HGWidgets_.DockButton, 'Visible', 'off', 'Callback', [] );
%@            else
%@                set( obj.HGWidgets_.DockButton, 'Visible', obj.Visible, 'Callback', value );
%@            end
%@        end % set.DockFcn
%@        
%@        function set.IsDocked( obj, value )
%@            obj.IsDocked = (value(1) == true);
%@            if value( obj.IsDocked )
%@                set( obj.HGWidgets_.DockButton, ...
%@                    'cdata', uiextras.loadLayoutIcon( 'panelUndock.png' ), ...
%@                    'tooltip', 'Undock this panel' ); %#ok<MCSUP>
%@            else
%@                set( obj.HGWidgets_.DockButton, ...
%@                    'cdata', uiextras.loadLayoutIcon( 'panelDock.png' ), ...
%@                    'tooltip', 'Dock this panel' ); %#ok<MCSUP>
%@            end
%@        end % set.IsMinimized
%@        
%@        function value = get.CloseRequestFcn( obj )
%@            value = get( obj.HGWidgets_.CloseButton, 'Callback' );
%@        end % get.CloseRequestFcn
%@        
%@        function value = get.HelpFcn( obj )
%@            value = get( obj.HGWidgets_.HelpButton, 'Callback' );
%@        end % get.HelpFcn
%@        
%@        function value = get.MinimizeFcn( obj )
%@            value = get( obj.HGWidgets_.MinimizeButton, 'Callback' );
%@        end % get.MinimizeFcn
%@        
%@        function value = get.DockFcn( obj )
%@            value = get( obj.HGWidgets_.DockButton, 'Callback' );
%@        end % get.DockFcn
%@        
%@        function set.TitleColor( obj, value )
%@            widgets = {
%@                'TitleText'
%@                'TitlePanel'
%@                'HelpButton'
%@                'CloseButton'
%@                'MinimizeButton'
%@                'DockButton'
%@                };
%@            for ww=1:numel(widgets)
%@                if isfield( obj.HGWidgets_, widgets{ww} )
%@                    set( obj.HGWidgets_.(widgets{ww}), 'BackgroundColor', value );
%@                end
%@            end
%@        end % set.TitleColor
%@        
%@        function value = get.TitleColor( obj )
%@            value = get( obj.HGWidgets_.TitleText, 'BackgroundColor' );
%@        end % get.TitleColor
%@        
%@        function set.TooltipString( obj, value )
%@            set( obj.HGWidgets_.TitleText, 'TooltipString', value );
%@        end % set.TooltipString
%@        
%@        function value = get.TooltipString( obj )
%@            value = get( obj.HGWidgets_.TitleText, 'TooltipString' );
%@        end % get.TooltipString
%@        
%@        
%@    end % accessor methods
%@    
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            %redraw  Redraw this widget and its contents
%@            pos = getpixelposition( obj.UIContainer );
%@            decor = obj.HGWidgets_;
%@            
%@            % If size is too small, ignore
%@            if (pos(3)<12) || (pos(4)<18)
%@                return
%@            end
%@            
%@            % If decorations not yet constructed, ignore
%@            if ~isstruct( decor ) ...
%@                    || isempty(fieldnames(decor)) ...
%@                    || ~isfield( decor, 'MinimizeButton' ) % this is the last widget constructed
%@                return
%@            end
%@            
%@            % Work out the title height
%@            if isempty( obj.Title )
%@                titleSize = 14;
%@            else
%@                % Work out how much extra space to leave for the title
%@                oldunits = get( decor.TitleText, 'FontUnits' );
%@                set( decor.TitleText, 'FontUnits', 'Pixels' );
%@                % Get the height of the title (in pixels) and add a bit to
%@                % cope with letters below the baseline (e.g. 'g')
%@                titleSize = ceil( get( decor.TitleText, 'FontSize' )*1.2 );
%@                % Put the old units back
%@                set( decor.TitleText, 'FontUnits', oldunits );
%@            end
%@            
%@            % Set position of close button
%@            buttonXPos = pos(3)-2;
%@            buttonWidth = titleSize;
%@            if ~isempty(decor.CloseButton)
%@                set(decor.CloseButton, 'Position', [buttonXPos-buttonWidth, pos(4)-titleSize, buttonWidth-1, buttonWidth-2]);
%@                if ~isempty( obj.CloseRequestFcn )
%@                    set(decor.CloseButton,'Visible', 'on' );
%@                    buttonXPos = buttonXPos - buttonWidth;
%@                else
%@                    set(decor.CloseButton,'Visible', 'off' );
%@                end
%@            end
%@            
%@            % Set position of dock button
%@            if ~isempty(decor.DockButton)
%@                set(decor.DockButton, 'Position', [buttonXPos-buttonWidth, pos(4)-titleSize, buttonWidth-1, buttonWidth-2]);
%@                if ~isempty( obj.DockFcn )
%@                    set(decor.DockButton,'Visible', 'on' );
%@                    buttonXPos = buttonXPos - buttonWidth;
%@                else
%@                    set(decor.DockButton,'Visible', 'off' );
%@                end
%@            end
%@            
%@            % Set position of minimise button
%@            if ~isempty(decor.MinimizeButton)
%@                set(decor.MinimizeButton, 'Position', [buttonXPos-buttonWidth, pos(4)-titleSize, buttonWidth-1, buttonWidth-2]);
%@                if ~isempty( obj.MinimizeFcn )
%@                    set(decor.MinimizeButton,'Visible', 'on' );
%@                    buttonXPos = buttonXPos - buttonWidth;
%@                else
%@                    set(decor.MinimizeButton,'Visible', 'off' );
%@                end
%@            end
%@            
%@            % Set position of help button
%@            if ~isempty(decor.HelpButton)
%@                set(decor.HelpButton, 'Position', [buttonXPos-buttonWidth, pos(4)-titleSize, buttonWidth-1, buttonWidth-2]);
%@                if ~isempty( obj.HelpFcn)
%@                    set(decor.HelpButton,'Visible', 'on' );
%@                    buttonXPos = buttonXPos - buttonWidth;
%@                else
%@                    set(decor.HelpButton,'Visible', 'off' );
%@                end
%@            end
%@            
%@            % Set position of title
%@            posText = [2, pos(4)-titleSize-1, buttonXPos-3, titleSize];
%@            set(decor.TitleText, 'Position', posText, 'string', obj.Title );
%@            
%@            % Set position of panel for title
%@            posTitle = [-1, pos(4)-titleSize-3, pos(3), titleSize+4];
%@            set(decor.TitlePanel, 'Position', posTitle);
%@            
%@            % Work out where to put the contents
%@            panelborder = 2;
%@            x0 = obj.Padding+1;
%@            y0 = obj.Padding+1;
%@            w = pos(3) - 2*panelborder - 2*obj.Padding;
%@            h = pos(4) - titleSize - 2*panelborder - 2*obj.Padding;
%@            contentPos = [x0 y0 w h];
%@            
%@            % Use the CardLayout function to put the right child onscreen
%@            obj.showSelectedChild( contentPos )
%@            
%@        end % redraw
%@        
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded  A child has been added to a container
%@            % Select the new addition
%@            obj.SelectedChild = numel( obj.Children );
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSL>
%@            %onChildAdded  A container child has been destroyed or reparented
%@            %
%@            % If the missing child is the selected one, select something else
%@            if eventData.ChildIndex == obj.SelectedChild
%@                if isempty( obj.Children )
%@                    obj.SelectedChild = [];
%@                else
%@                    obj.SelectedChild = max( 1, obj.SelectedChild - 1 );
%@                end
%@            end
%@        end % onChildRemoved
%@        
%@        function onEnable(obj, source, eventData ) %#ok<INUSL>
%@            %onEnable  Enable state has been changed, so update
%@            set( obj.HGWidgets_.TitleText, 'Enable', eventData );
%@        end % onEnable
%@        
%@        function onPanelColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            %onPanelColorChanged  Colors have been changed, so update
%@            if isfield( obj.HGWidgets_, 'TitleText' )
%@                set( obj.HGWidgets_.TitleText, 'ForegroundColor', obj.ForegroundColor );
%@                set( obj.HGWidgets_.TitlePanel, ...
%@                    'HighlightColor', obj.HighlightColor, ...
%@                    'ShadowColor', obj.ShadowColor );
%@                set( obj.UIContainer, ...
%@                    'HighlightColor', obj.HighlightColor, ...
%@                    'ShadowColor', obj.ShadowColor );
%@            end
%@        end % onPanelColorChanged
%@        
%@        function onPanelFontChanged( obj, source, eventData ) %#ok<INUSL>
%@            % Font has changed. Since the font size and shape affects the
%@            % space available for the contents, we need to redraw.
%@            if isfield( obj.HGWidgets_, 'TitleText' )
%@                set( obj.HGWidgets_.TitleText, eventData.Property, eventData.Value );
%@                obj.redraw();
%@            end
%@        end % onPanelFontChanged
%@        
%@    end % protected methods
%@    
%@end % classdef
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/ButtonBox.m__ -->
%@classdef ButtonBox < uiextras.Container
%@    %ButtonBox  Abstract parent for button box classes
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 300 $
%@    %   $Date: 2010-07-22 16:33:47 +0100 (Thu, 22 Jul 2010) $
%@    
%@    properties( SetObservable = true )
%@        ButtonSize = [100 25]          % Desired size for all buttons [width height]
%@        HorizontalAlignment = 'center' % Horizonral alignment of buttons [left|center|right]
%@        VerticalAlignment = 'middle'   % Vertical alignment of buttons [top|middle|bottom]
%@        Spacing = 5                    % spacing between contents (pixels)
%@        Padding = 0                    % spacing around all contents
%@    end % public properties
%@    
%@    methods
%@        
%@        function obj = ButtonBox( varargin )
%@            %ButtonBox  Container with contents in a single row or column
%@            
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.Container( varargin{:} );
%@                        
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'ButtonSize' );
%@            obj.setPropertyFromDefault( 'HorizontalAlignment' );
%@            obj.setPropertyFromDefault( 'VerticalAlignment' );
%@            obj.setPropertyFromDefault( 'Spacing' );
%@            obj.setPropertyFromDefault( 'Padding' );
%@
%@        end % constructor
%@        
%@        function set.ButtonSize( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || numel( value )~= 2 ...
%@                    || any( ~isreal( value ) ) || any( isnan( value ) ) ...
%@                    || any( ~isfinite( value ) ) || any( value <= 0 )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''ButtonSize'' must consist of two positive integers.' )
%@            end
%@            
%@            % Set & redraw
%@            obj.ButtonSize = value;
%@            obj.redraw();
%@        end % set.Sizes
%@        
%@        function set.Padding( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Padding'' must be a nonnegative integer.' )
%@            end
%@            
%@            % Set and redraw
%@            obj.Padding = value;
%@            obj.redraw();
%@        end % set.Padding
%@        
%@        function set.Spacing( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Spacing'' must be a nonnegative integer.' )
%@            end
%@            
%@            % Set and redraw
%@            obj.Spacing = value;
%@            obj.redraw();
%@        end % set.Spacing
%@        
%@        function set.HorizontalAlignment( obj, value )
%@            if ~ischar( value ) || ~any( strcmpi( value, {'left','center','right'} ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''HorizontalAlignment'' must be a one of ''left'',''center'',''right''.' );
%@            end
%@            obj.HorizontalAlignment = value;
%@            obj.redraw();
%@        end % set.HorizontalAlignment
%@        
%@        function set.VerticalAlignment( obj, value )
%@            if ~ischar( value ) || ~any( strcmpi( value, {'top','middle','bottom'} ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''HorizontalAlignment'' must be a one of ''top'',''middle'',''bottom''.' );
%@            end
%@            obj.VerticalAlignment = value;
%@            obj.redraw();
%@        end % set.VerticalAlignment
%@        
%@    end % public methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/CardPanel.m__ -->
%@classdef CardPanel < uiextras.Container
%@    %CardPanel  Show one element (card) from a list
%@    %
%@    %   obj = uiextras.CardPanel() creates a new card panel which allows
%@    %   selection between the different child objects contained, making the
%@    %   selected child fill the space available and all other children
%@    %   invisible. This is commonly used for creating wizards or quick
%@    %   switching between different views of a single data-set.
%@    %
%@    %   obj = uiextras.CardPanel(param,value,...) also sets one or more
%@    %   property values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.CardPanel">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> p = uiextras.CardPanel( 'Parent', f, 'Padding', 5 );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'r' );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'b' );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'g' );
%@    %   >> p.SelectedChild = 2;
%@    %
%@    %   See also: uiextras.Panel
%@    %             uiextras.BoxPanel
%@    %             uiextras.TabPanel
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 380 $
%@    %   $Date: 2013-02-27 10:29:08 +0000 (Wed, 27 Feb 2013) $
%@    
%@    
%@    properties
%@        Callback = []
%@        Padding = 0 % padding around contents (pixels)
%@    end % public properties
%@    
%@    properties ( Dependent = true, SetObservable = true )
%@        SelectedChild   % Which child is visible [+ve integer or empty]
%@    end % dependent properties
%@    
%@    properties ( SetAccess = private, GetAccess = private, Hidden = true )
%@        SelectedChild_ = [] % the index of the child that is currently being shown
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = CardPanel(varargin)
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj = obj@uiextras.Container( varargin{:} );
%@            
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'Padding' );
%@            
%@            % Set user-supplied property values (only if this is the leaf class)
%@            if nargin>0 && isequal( class( obj ), 'uiextras.CardPanel' )
%@                set( obj, varargin{:} );
%@            end
%@            obj.redraw();
%@        end % CardPanel
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function value = get.SelectedChild( obj )
%@            value = obj.SelectedChild_;
%@        end % get.SelectedChild
%@        
%@        function set.SelectedChild( obj, value )
%@            % Check
%@            if isempty( obj.Children )
%@                obj.SelectedChild_ = [];
%@            else
%@                if ~isscalar( value ) || (round( value ) ~= value) || value < 0
%@                    error( 'GUILayout:InvalidPropertyValue', ...
%@                        'Property ''SelectedChild'' must be a positive integer.' )
%@                elseif value > numel( obj.Children )
%@                    error( 'GUILayout:InvalidPropertyValue', ...
%@                        'Cannot select child %d of %d.', value, numel( obj.Children ) )
%@                end
%@                
%@                % Set
%@                obj.SelectedChild_ = value;
%@            end
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.SelectedChild
%@        
%@        function set.Padding( obj, value )
%@            % Check input
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Padding'' must be a nonnegative integer.' )
%@            end
%@            % All OK, so set it and redraw using the new value
%@            obj.Padding = value;
%@            obj.redraw();
%@        end % set.Padding
%@        
%@    end % accessor methods
%@    
%@    methods ( Access = protected )
%@        
%@        function redraw(obj)
%@            %REDRAW redraw the contents
%@            %
%@            % Fort a card layout the only thing we really need to do is
%@            % show one of the children filling the view
%@            pos = getpixelposition( obj.UIContainer );
%@            contentPos = [1 1 pos(3) pos(4)] + obj.Padding*[1 1 -2 -2];
%@            obj.showSelectedChild( contentPos );
%@        end % redraw
%@        
%@        function showSelectedChild( obj, contentPos )
%@            % Generic function for showing just one child
%@            
%@            page_offset = 2500; % The amount by which widgets are moved when making invisible
%@            C = obj.Children;
%@            nC = numel(C);
%@            if ~isempty( obj.SelectedChild )
%@                % Set all to be invisible except current page
%@                % We also have to move them offscreen to avoid problems with invisible
%@                % panels and things blocking out visible ones (an HG bug?)
%@                otherPages = 1:nC;
%@                otherPages( otherPages==obj.SelectedChild ) = [];
%@                for page=otherPages
%@                    oldunits = get( C(page), 'Units' );
%@                    set( C(page), 'Units', 'pixels' );
%@                    p = get(C(page), 'Position');
%@                    if p(1)<page_offset || p(2)<page_offset
%@                        newPosition = p + [page_offset page_offset 0 0];
%@                        obj.repositionChild( C(page), newPosition )
%@                    end
%@                    set( C(page), 'Units', oldunits );
%@                end
%@                
%@                % And put the selected one on view
%@                obj.repositionChild( C(obj.SelectedChild), contentPos );
%@                % Hack: to fix problems with axes, give them a wiggle
%@                iWiggleAxes(C(obj.SelectedChild));
%@            end
%@        end % showSelectedChild
%@        
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded: Callback that fires when a child is added to a container.
%@            % Select the new addition
%@            C = obj.Children;
%@            N = numel( C );
%@            obj.SelectedChild = N;
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSL>
%@            %onChildAdded: Callback that fires when a container child is destroyed or reparented.
%@            % If the missing child is the selected one, select something else
%@            if obj.SelectedChild >= eventData.ChildIndex
%@                % Changing the selection will force a redraw
%@                if isempty( obj.Children )
%@                    obj.SelectedChild = [];
%@                else
%@                    obj.SelectedChild = max( 1, obj.SelectedChild - 1 );
%@                end
%@            else
%@                % We don't need to change the selection, so explicitly
%@                % redraw
%@                obj.redraw();
%@            end
%@        end % onChildRemoved
%@        
%@    end % protected methods
%@    
%@end % classdef
%@
%@function iWiggleAxes(parent)
%@% Helper to give any axes inside the specified parent a "wiggle" (i.e.
%@% resize then resize back again).
%@ax = findall(parent, 'type', 'axes');
%@% Be careful to ignore legends and colorbars
%@
%@for ii=1:numel(ax)
%@    if ~isLegendOrColorbar(ax(ii))
%@        propname = get(ax(ii),'ActivePositionProperty');
%@        set(ax(ii),propname, get(ax(ii), propname)+[0 0 1 0]);
%@        set(ax(ii),propname, get(ax(ii), propname)-[0 0 1 0]);
%@    end
%@end
%@end
%@
%@function result = isLegendOrColorbar( child )
%@% Determine whether an object is a legend or colorbar
%@child = handle(child);
%@result = (isa( child, 'axes' ) ...
%@    && ismember(lower(get( child, 'Tag' )), {'legend', 'colorbar'}) );
%@end % isLegendOrColorbar
%@
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/ChildEvent.m__ -->
%@classdef ChildEvent < event.EventData
%@    %ChildEvent  Event data for a container child change
%@    %
%@    %   uiextras.ChildEvent(child,childindex) creates some new
%@    %   eventdata indicating which child was changed.
%@    %
%@    %   See also: uiextras.Container
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 288 $
%@    %   $Date: 2010-07-14 12:23:50 +0100 (Wed, 14 Jul 2010) $
%@    
%@    properties( SetAccess = private )
%@        Child
%@        ChildIndex
%@    end % private properties
%@    
%@    methods
%@        
%@        function data = ChildEvent(child,childindex)
%@            error( nargchk( 2, 2, nargin ) );
%@            data.Child = child;
%@            data.ChildIndex = childindex;
%@        end
%@        
%@    end % public methods
%@    
%@end
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/Container.m__ -->
%@classdef Container < hgsetget
%@    %Container  Container base class
%@    %
%@    %   c = uiextras.Container() creates a new container object. Container
%@    %   is an abstract class and can only be constructed as the first
%@    %   actual of a descendent class.
%@    %
%@    %   c = uiextras.Container(param,value,...) creates a new container
%@    %   object and sets one or more property values.
%@    %
%@    %   See also: uiextras.Box
%@    %             uiextras.ButtonBox
%@    %             uiextras.CardPanel
%@    %             uiextras.Grid
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    
%@    properties
%@        DeleteFcn       % function to call when the layout is being deleted [function handle]
%@    end % Public properties
%@    
%@    properties( Dependent, Transient )
%@        BackgroundColor % background color [r g b]
%@        BeingDeleted    % is the object in the process of being deleted [on|off]
%@        Children        % list of the children of the layout [handle array]
%@        Enable          % allow interaction with the contents of this layout [on|off]
%@        Parent          % handle of the parent container or figure [handle]
%@        Position        % position [left bottom width height]
%@        Tag             % tag [string]
%@        Type            % the object type (class) [string]
%@        Units           % position units [inches|centimeters|normalized|points|pixels|characters]
%@        Visible         % is the layout visible on-screen [on|off]
%@    end % dependent properties
%@    
%@    % These properties are provided to aid migration to GLT2
%@    properties( Dependent, Hidden, Transient )
%@        Contents
%@    end % GLT2 compatibility properties
%@    
%@    properties( Access = protected, Hidden, Transient )
%@        Listeners = cell( 0, 1 ) % array of listeners
%@    end % protected properties
%@    
%@    properties( SetAccess = private, GetAccess = protected, Hidden, Transient )
%@        UIContainer % associated uicontainer
%@    end % read-only protected properties
%@    
%@    properties( Access = private, Hidden, Transient )
%@        Children_ = zeros( 0, 1 )     % private copy of the children list
%@        ChildListeners = cell( 0, 2 ) % listeners for changes to children
%@        Enable_ = 'on'                % private copy of the enabled state
%@        CurrentSize_ = [0 0]          % private copy of the size
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = Container( varargin )
%@            %Container  Container base class constructor
%@            %
%@            %   obj = Container(param,value,...) creates a new Container
%@            %   object using the (optional) property values specified. This
%@            %   may only be called by child classes.
%@            
%@            % Check that we're using the right graphics version
%@            if isHGUsingMATLABClasses()
%@                error( 'GUILayout:WrongHGVersion', 'Trying to run using double-handle MATLAB graphics against the new graphics system. Please re-install.' );
%@            end
%@            
%@            % Find if parent has been supplied
%@            parent = uiextras.findArg( 'Parent', varargin{:} );
%@            if isempty( parent )
%@                parent = gcf();
%@            end
%@            units = uiextras.findArg( 'Units', varargin{:} );
%@            if isempty( units )
%@                units = 'Normalized';
%@            end
%@            
%@            % Create container
%@            args = {
%@                'Parent', parent, ...
%@                'Units', units, ...
%@                'BorderType', 'none'
%@                };
%@            obj.UIContainer = uipanel( args{:} );
%@                        
%@            % Set the background color
%@            obj.setPropertyFromDefault( 'BackgroundColor' );
%@            
%@            % Tag it!
%@            set( obj.UIContainer, 'Tag', strrep( class( obj ), '.', ':' ) );
%@            
%@            % Create listeners to resizing of container
%@            containerObj = handle( obj.UIContainer );
%@            obj.Listeners{end+1,1} = handle.listener( containerObj, findprop( containerObj, 'PixelBounds' ), 'PropertyPostSet', @obj.onResized );
%@            
%@            % Create listeners to addition of container children
%@            obj.Listeners{end+1,1} = handle.listener( containerObj, 'ObjectChildAdded', @obj.onChildAddedEvent );
%@            
%@            % Watch out for the graphics being destroyed
%@            obj.Listeners{end+1,1} = handle.listener( containerObj, 'ObjectBeingDestroyed', @obj.onContainerBeingDestroyed );
%@            
%@            % Store Container in container
%@            setappdata( obj.UIContainer, 'Container', obj );
%@
%@        end % constructor
%@        
%@        function container = double( obj )
%@            %double  Convert a container to an HG double handle.
%@            %
%@            %  D = double(C) converts a container C to an HG handle D.
%@            container = obj.UIContainer;
%@        end % double
%@        
%@        function pos = getpixelposition( obj )
%@            %getpixelposition  get the absolute pixel position
%@            %
%@            %   POS = GETPIXELPOSITION(C) gets the absolute position of the container C
%@            %   within its parent window. The returned position is in pixels.
%@            pos = getpixelposition( obj.UIContainer );
%@        end % getpixelposition
%@        
%@        function tf = isprop( obj, name )
%@            %isprop  does this object have the specified property
%@            %
%@            %   TF = ISPROP(C,NAME) checks whether the object C has a
%@            %   property named NAME. The result, TF, is true if the
%@            %   property exists, false otherwise.
%@            tf = ismember( name, properties( obj ) );
%@            
%@        end % isprop
%@        
%@        function p = ancestor(obj,varargin)
%@            %ancestor  Get object ancestor
%@            %
%@            %   P = ancestor(H,TYPE) returns the handle of the closest ancestor of h
%@            %   that matches one of the types in TYPE, or empty if there is no matching
%@            %   ancestor.  TYPE may be a single string (single type) or cell array of
%@            %   strings (types). If H is a vector of handles then P is a cell array the
%@            %   same length as H and P{n} is the ancestor of H(n). If H is one of the
%@            %   specified types then ancestor returns H.
%@            %
%@            %   P = ANCESTOR(H,TYPE,'TOPLEVEL') finds the highest level ancestor of one
%@            %   of the types in TYPE
%@            %
%@            %   If H is not an Handle Graphics object, ANCESTOR returns empty.
%@            p = ancestor( obj.UIContainer, varargin{:} );
%@        end %ancestor
%@        
%@        function setappdata( h, name, value )
%@            %setappdata  Set application-defined data. 
%@            %  setappdata(H, NAME, VALUE)
%@            if isa(h, 'uiextras.Container')
%@                h = h.UIContainer;
%@            end
%@            builtin( 'setappdata', h, name, value );
%@        end % setappdata
%@        
%@        function value = getappdata( h, name )
%@            %getappdata  Get value of application-defined data.
%@            %  VALUE = getappdata(H, NAME)
%@            if isa(h, 'uiextras.Container')
%@                h = h.UIContainer;
%@            end
%@            value = builtin( 'getappdata', h, name );
%@        end % getappdata
%@        
%@        function value = isappdata( h, name )
%@            %isappdata  True if application-defined data exists.
%@            %  isappdata(H, NAME)
%@            if isa(h, 'uiextras.Container')
%@                h = h.UIContainer;
%@            end
%@            value = builtin( 'isappdata', h, name );
%@        end % isappdata
%@        
%@        function rmappdata( h, name )
%@            %rmappdata  Remove application-defined data.
%@            %  rmappdata(H, NAME)
%@            if isa(h, 'uiextras.Container')
%@                h = h.UIContainer;
%@            end
%@            builtin( 'rmappdata', h, name );
%@        end % rmappdata
%@        
%@        function delete( obj )
%@            %delete  destroy this layout
%@            %
%@            % If the user destroys the object, we *must* also remove any
%@            % graphics
%@            if ~isempty( obj.DeleteFcn )
%@                uiextras.callCallback( obj.DeleteFcn, obj, [] );
%@            end
%@            if ishandle( obj.UIContainer ) ...
%@                    && ~strcmpi( get( obj.UIContainer, 'BeingDeleted' ), 'on' )
%@                delete( obj.UIContainer );
%@            end
%@        end % delete
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.Position( obj, value )
%@            set( obj.UIContainer, 'Position', value );
%@        end % set.Position
%@        
%@        function value = get.Position( obj )
%@            value = get( obj.UIContainer, 'Position' );
%@        end % get.Position
%@        
%@        function set.Children( obj, value )
%@            % Check
%@            oldChildren = obj.Children_;
%@            newChildren = value;
%@            [tf, loc] = ismember( oldChildren, newChildren );
%@            if ~isequal( size( oldChildren ), size( newChildren ) ) || any( ~tf )
%@                error( 'GUILayout:Container:InvalidPropertyValue', ...
%@                    'Property ''Children'' may only be set to a permutation of itself.' )
%@            end
%@            
%@            % Set
%@            obj.Children_ = newChildren;
%@            
%@            % Reorder ChildListeners
%@            obj.ChildListeners(loc,:) = obj.ChildListeners;
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.Children
%@        
%@        function value = get.Children( obj )
%@            value = obj.Children_;
%@        end % get.Children
%@        
%@        function set.Contents( obj, value )
%@            % Contents is just a GLT2 synonym for GLT1 "Children"
%@            obj.Children = value;
%@        end % set.Contents
%@        
%@        function value = get.Contents( obj )
%@            % Contents is just a GLT2 synonym for GLT1 "Children"
%@            value = obj.Children;
%@        end % get.Contents
%@
%@        function set.Enable( obj, value )
%@            % Check
%@            if ~ischar( value ) || ~ismember( lower( value ), {'on','off'} )
%@                error( 'GUILayout:Container:InvalidPropertyValue', ...
%@                    'Property ''Enable'' may only be set to ''on'' or ''off''.' )
%@            end
%@            % Apply
%@            value = lower( value );
%@            % If we want to switch on but our parent is off, just store
%@            % in the app data.
%@            if strcmp( value, 'on' )
%@                if isappdata( obj.Parent, 'Container' )
%@                    parentObj = getappdata( obj.Parent, 'Container' );
%@                    if strcmpi( parentObj.Enable, 'off' )
%@                        setappdata( obj.UIContainer, 'OldEnableState', value );
%@                        value = 'off';
%@                    end
%@                end
%@            end
%@            obj.Enable_ = value;
%@            
%@            % Apply to children
%@            ch = obj.Children_;
%@            for ii=1:numel( ch )
%@                obj.helpSetChildEnable( ch(ii), obj.Enable_ );
%@            end
%@            
%@            % Do the work
%@            obj.onEnable( obj, value );
%@        end % set.Enable
%@        
%@        function value = get.Enable( obj )
%@            value = obj.Enable_;
%@        end % get.Enable
%@        
%@        function set.Units( obj, value )
%@            set( obj.UIContainer, 'Units', value );
%@        end % set.Units
%@        
%@        function value = get.Units( obj )
%@            value = get( obj.UIContainer, 'Units' );
%@        end % get.Units
%@        
%@        function set.Parent( obj, value )
%@            set( obj.UIContainer, 'Parent', double( value ) );
%@        end % set.Parent
%@        
%@        function value = get.Parent( obj )
%@            value = get( obj.UIContainer, 'Parent' );
%@        end % get.Parent
%@        
%@        function set.Tag( obj, value )
%@            set( obj.UIContainer, 'Tag', value );
%@        end % set.Tag
%@        
%@        function value = get.Tag( obj )
%@            value = get( obj.UIContainer, 'Tag' );
%@        end % get.Tag
%@        
%@        function value = get.Type( obj )
%@            value = class( obj );
%@        end % get.Type
%@        
%@        function value = get.BeingDeleted( obj )
%@            value = get( obj.UIContainer, 'BeingDeleted' );
%@        end % get.BeingDeleted
%@        
%@        function set.Visible( obj, value )
%@            set( obj.UIContainer, 'Visible', value );
%@        end % set.Visible
%@        
%@        function value = get.Visible( obj )
%@            value = get( obj.UIContainer, 'Visible' );
%@        end % get.Visible
%@        
%@        function set.BackgroundColor( obj, value )
%@            set( obj.UIContainer, 'BackgroundColor', value );
%@            obj.onBackgroundColorChanged( obj, value );
%@        end % set.BackgroundColor
%@        
%@        function value = get.BackgroundColor( obj )
%@            value = get( obj.UIContainer, 'BackgroundColor' );
%@        end % get.BackgroundColor
%@ 
%@    end % accessor methods
%@    
%@    methods( Access = protected )
%@        
%@        function onResized( obj, source, eventData ) %#ok<INUSD>
%@            %onResized  Callback that fires when a container is resized.
%@            newSize = getpixelposition( obj );
%@            newSize = newSize([3,4]);
%@            if any(newSize ~= obj.CurrentSize_)
%@                % Size has changed, so must redraw
%@                obj.CurrentSize_ = newSize;
%@                obj.redraw();
%@            end
%@        end % onResized
%@        
%@        function onContainerBeingDestroyed( obj, source, eventData ) %#ok<INUSD>
%@            %onContainerBeingDestroyed  Callback that fires when the container dies
%@            delete( obj );
%@        end % onContainerBeingDestroyed
%@        
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded  Callback that fires when a child is added to a container.
%@            obj.redraw();
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSD>
%@            %onChildRemoved  Callback that fires when a container child is destroyed or reparented.
%@            obj.redraw();
%@        end % onChildRemoved
%@        
%@        function onBackgroundColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            %onBackgroundColorChanged  Callback that fires when the container background color is changed
%@        end % onChildRemoved
%@        
%@        function onEnable( obj, source, eventData ) %#ok<INUSD>
%@            %onEnable  Callback that fires when the enable state is changed
%@        end % onChildRemoved
%@        
%@        function c = getValidChildren( obj )
%@            %getValidChildren  Return a list of only those children not being deleted
%@            c = obj.Children;
%@            c( strcmpi( get( c, 'BeingDeleted' ), 'on' ) ) = [];
%@        end % getValidChildren
%@        
%@        function repositionChild( obj, child, position ) %#ok<INUSL>
%@            %repositionChild  adjust the position and visibility of a child
%@
%@            % First determine whether to use "Position" or "OuterPosition"
%@            if isprop( child, 'ActivePositionProperty' )
%@                propname = get( child, 'ActivePositionProperty' );
%@            else
%@                propname = 'Position';
%@            end
%@            if position(3)<=0 || position(4)<=0
%@                % Not enough space, so move offscreen instead
%@                position = [-10000 -10000 100 100];
%@            end
%@            % Now set the position in pixels, changing the units first if
%@            % necessary
%@            oldunits = get( child, 'Units' );
%@            if strcmpi( oldunits, 'Pixels' )
%@                set( child, propname, position );
%@            else
%@                % Other units, so switch to pixels before setting
%@                set( child, 'Units', 'pixels' );
%@                set( child, propname, position );
%@                set( child, 'Units', oldunits );
%@            end
%@        end % repositionChild
%@        
%@        function setPropertyFromDefault( obj, propName )
%@            %getPropertyDefault  Retrieve a default property value. If the
%@            %value is not found in the parent or any of its ancestors the
%@            %supplied defValue is used.
%@            error( nargchk( 2, 2, nargin ) ); %#ok<NCHKN>
%@            
%@            parent = get( obj.UIContainer, 'Parent' );
%@            myClass = class(obj);
%@            if strncmp( myClass, 'uiextras.', 9 )
%@                myClass = myClass(10:end);
%@            end
%@            defPropName = ['Default',myClass,propName];
%@            
%@            % Getting the default will fail if the default does not exist
%@            % of has an invalid value. In that case we leave the current
%@            % value as it is.
%@            try
%@                obj.(propName) = uiextras.get( parent, defPropName );
%@            catch err %#ok<NASGU>
%@                % Failed, so leave it alone
%@            end
%@        end % setPropertyFromDefault
%@        
%@        function helpSetChildEnable( ~, child, state )
%@            % Set the enabled state of one child widget
%@            
%@            % We need to take a great deal of care to preserve the old
%@            % enable state and to deal properly with children that are
%@            % layouts in their own right.
%@            if strcmpi( get( child, 'Type' ), 'uipanel' )
%@                % Might be another layout
%@                if isappdata( child, 'Container' )
%@                    child = getappdata( child, 'Container' );
%@                else
%@                    % Can't enable a panel
%@                    child = [];
%@                end
%@            elseif isprop( child, 'Enable' )
%@                % It supports enabling directly 
%@            else
%@                % Doesn't support enabling
%@                child = [];
%@            end
%@            
%@            if ~isempty( child )
%@            
%@            % We will use a piece of app data
%@            % to track the original state to ensure we don't
%@            % re-enable something that shouldn't be.
%@            if strcmpi( state, 'On' )
%@                if isappdata( child, 'OldEnableState' )
%@                    set( child, 'Enable', getappdata( child, 'OldEnableState' ) );
%@                    rmappdata( child, 'OldEnableState' );
%@                else
%@                    set( child, 'Enable', 'on' );
%@                end
%@            else
%@                if ~isappdata( child, 'OldEnableState' )
%@                    setappdata( child, 'OldEnableState', get( child, 'Enable' ) );
%@                end
%@                set( child, 'Enable', 'off' );
%@            end
%@            end
%@        end % helpSetChildEnable
%@        
%@    end % protected methods
%@    
%@    methods( Abstract = true, Access = protected )
%@        
%@        redraw( obj )
%@        
%@    end % abstract methods
%@    
%@    methods( Access = private, Sealed = true )
%@        
%@        function onChildAddedEvent( obj, source, eventData ) %#ok<INUSL>
%@            %onChildAddedEvent  Callback that fires when a child is added to a container.
%@            
%@            % Find child in Children
%@            child = eventData.Child;
%@            if ismember( double( child ), obj.Children_ )
%@                return % not *really* being added
%@            end
%@            
%@            % Only hook up internally if not a "hidden" child.
%@            if ~isprop( child, 'HandleVisibility' ) ...
%@                    || strcmpi( get( child, 'HandleVisibility' ), 'off' )
%@                return;
%@            end
%@            
%@            % We don't want to do anything to the panel title
%@            if isappdata( obj.UIContainer, 'PanelTitleCreate' ) ...
%@                    && getappdata( obj.UIContainer, 'PanelTitleCreate' )
%@                % This child is the panel label. Set its visibility off so
%@                % we don't see it again.
%@                set( child, 'HandleVisibility', 'off' );
%@                return;
%@            end
%@            
%@            % We also need to ignore legends as they are positioned by
%@            % their associated axes.
%@            if isLegendOrColorbar( eventData.Child )
%@                return;
%@            end
%@            
%@            % Add element to Children
%@            obj.Children_(end+1,:) = child;
%@            
%@            % Add elements to ChildListeners. A bug in R2009a and
%@            % earlier means we have to be careful about this
%@            if isBeforeR2009b()
%@                obj.ChildListeners(end+1,:) = ...
%@                    {handle.listener( child, 'ObjectBeingDestroyed', {@helpDeleteChild,obj} ), ...
%@                    handle.listener( child, 'ObjectParentChanged', {@helpReparentChild,obj} )};
%@            else
%@                obj.ChildListeners(end+1,:) = ...
%@                    {handle.listener( child, 'ObjectBeingDestroyed', @obj.onChildBeingDestroyedEvent ), ...
%@                    handle.listener( child, 'ObjectParentChanged', @obj.onChildParentChangedEvent )};
%@            end
%@            
%@            % We are taking over management of position and will do it
%@            % in either pixel or normalized units.
%@            units = lower( get( child, 'Units' ) );
%@            if ~ismember( units, {'pixels' ,'normalized'} )
%@                set( child, 'Units', 'Pixels' );
%@            end
%@            
%@            % If we are disabled, make sure the children are too
%@            if strcmpi( obj.Enable_, 'off' )
%@                helpSetChildEnable( obj, child, obj.Enable_ );
%@            end
%@            
%@            % Call onChildAdded
%@            eventData = uiextras.ChildEvent( child, numel( obj.Children_ ) );
%@            
%@            obj.onChildAdded( obj, eventData );
%@        end % onChildAddedEvent
%@        
%@        function onChildBeingDestroyedEvent( obj, source, eventData ) %#ok<INUSD>
%@            %onChildBeingDestroyedEvent  Callback that fires when a container child is destroyed.
%@            
%@            % Find child in Children
%@            [dummy, loc] = ismember( double( source ), obj.Children_ ); %#ok<ASGLU>
%@            
%@            % Remove element from Children
%@            obj.Children_(loc,:) = [];
%@            
%@            % Remove elements from ChildListeners
%@            obj.ChildListeners(loc,:) = [];
%@            
%@            % If we are in our death throes, don't start calling callbacks
%@            if ishandle( obj.UIContainer ) && ~strcmpi( get( obj.UIContainer, 'BeingDeleted' ), 'ON' )
%@                % Call onChildRemoved
%@                eventData = uiextras.ChildEvent( source, loc );
%@                obj.onChildRemoved( obj, eventData );
%@            end
%@            
%@        end % onChildBeingDestroyedEvent
%@        
%@        function onChildParentChangedEvent( obj, source, eventData )
%@            %onChildParentChangedEvent  Callback that fires when a container child is reparented.
%@            
%@            if isempty( eventData.NewParent ) ...
%@                    || eventData.NewParent == obj.UIContainer
%@                return % not being reparented *away*
%@            end
%@            
%@            % Find child in Children
%@            [dummy, loc] = ismember( double( source ), obj.Children_ ); %#ok<ASGLU>
%@            
%@            % Remove element from Children
%@            obj.Children_(loc,:) = [];
%@            
%@            % Remove elements from ChildListeners
%@            obj.ChildListeners(loc,:) = [];
%@            
%@            % Call onChildRemoved
%@            eventData = uiextras.ChildEvent( source, loc );
%@            obj.onChildRemoved( obj, eventData );
%@            
%@        end % onChildParentChangedEvent
%@        
%@    end % private sealed methods
%@    
%@end % classdef
%@
%@% -------------------------------------------------------------------------
%@
%@function result = isLegendOrColorbar( child )
%@% Determine whether an object is a legend or colorbar
%@tag = lower(get( child, 'Tag' ));
%@result = (isa( child, 'axes' ) && ismember(tag, {'legend', 'colorbar'}) );
%@end % isLegendOrColorbar
%@
%@
%@% Helper functions to work around a bug in R2009a and earlier
%@
%@function ok = isBeforeR2009b()
%@persistent matlabVersionDate;
%@if isempty( matlabVersionDate )
%@    v = ver( 'MATLAB' );
%@    matlabVersionDate = datenum( v.Date );
%@%     uiwait( msgbox( sprintf( 'Got MATLAB version date: %s', v.Date ) ) )
%@end
%@ok = ( matlabVersionDate <= datenum( '15-Jan-2009', 'dd-mmm-yyyy' ) );
%@end
%@
%@function helpDeleteChild( src, evt, obj )
%@obj.onChildBeingDestroyedEvent( src, evt );
%@end % helpDeleteChild
%@
%@function helpReparentChild( src, evt, obj )
%@obj.onChildParentChangedEvent( src, evt );
%@end % helpReparentChild
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/Contents.m__ -->
%@% +UIEXTRAS
%@%
%@% Files
%@%   Box                 - Box  Box base class
%@%   BoxPanel            - BoxPanel  Show one element inside a box panel
%@%   ButtonBox           - ButtonBox  Abstract parent for button box classes
%@%   callCallback        - callCallback  Try to call a callback function or method
%@%   CardPanel           - CardPanel  Show one element (card) from a list
%@%   ChildEvent          - ChildEvent  Event data for a container child change
%@%   Container           - Container  Container base class
%@%   DecoratedPanel      - DecoratedPanel  Abstract panel class that manages fonts and colors
%@%   Empty               - Empty  Create an empty space
%@%   findArg             - findArg  Find a specific property value from a property-value pairs list
%@%   Grid                - Grid  Container with contents arranged in a grid
%@%   GridFlex            - GridFlex  Container with contents arranged in a resizable grid
%@%   HBox                - HBox  Arrange elements in a single horizontal row
%@%   HBoxFlex            - HBoxFlex  A dynamically resizable horizontal layout
%@%   HButtonBox          - HButtonBox  Arrange buttons horizontally in a single row
%@%   interpretColor      - interpretColor  Interpret a color as an RGB triple
%@%   loadLayoutIcon      - loadLayoutIcon  Load an icon and set the transparent color
%@%   MousePointerHandler - MousePointerHandler  A class to handle mouse-over events
%@%   Panel               - Panel  Show one element inside a panel
%@%   TabPanel            - TabPanel  Show one element inside a tabbed panel
%@%   VBox                - VBox  Arrange elements vertically in a single column
%@%   VBoxFlex            - VBoxFlex  A dynamically resizable vertical layout
%@%   VButtonBox          - VButtonBox  Arrange buttons vertically in a single column
%@
%@%   Copyright 2009-2013 The MathWorks, Inc.
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/DecoratedPanel.m__ -->
%@classdef DecoratedPanel < handle
%@    %DecoratedPanel  Abstract panel class that manages fonts and colors
%@    %
%@    %   See also: uiextras.Panel
%@    %             uiextras.BoxPanel
%@    %             uiextras.TabPanel
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 301 $
%@    %   $Date: 2010-07-22 16:40:01 +0100 (Thu, 22 Jul 2010) $
%@    
%@    properties( SetObservable = true ) % should also have 'AbortSet' but this is only available on later releases
%@        FontAngle       % Title font angle [normal|italic|oblique]
%@        FontName        % Title font name
%@        FontSize        % Title font size
%@        FontUnits       % Title font units [inches|centimeters|normalized|points|pixels]
%@        FontWeight      % Title font weight [light|normal|demi|bold]
%@        ForegroundColor % Title font color and/or color of 2-D border line
%@        HighlightColor  % 3-D frame highlight color [r g b]
%@        ShadowColor     % 3-D frame shadow color [r g b]
%@    end % public properties
%@    
%@    properties( Constant, GetAccess = private )
%@        AllowedFontAngle = set( 0, 'DefaultUIPanelFontAngle' )
%@        AllowedFontName = listfonts(0)
%@        AllowedFontUnits = set( 0, 'DefaultUIPanelFontUnits' )
%@        AllowedFontWeight = set( 0, 'DefaultUIPanelFontWeight' )
%@    end % private constant properties
%@    
%@    methods
%@        
%@        function obj = DecoratedPanel( varargin )
%@            % Find the parent figure
%@            parent = uiextras.findArg( 'Parent', varargin{:} );
%@            if isempty( parent )
%@                parent = gcf();
%@            elseif isa( parent, 'uiextras.Container' )
%@                parent = double( parent );
%@            end
%@            % Set some defaults
%@            obj.setPropertyFromDefaultOrHG( parent, 'FontAngle' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'FontName' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'FontSize' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'FontUnits' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'FontWeight' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'ForegroundColor' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'HighlightColor' );
%@            obj.setPropertyFromDefaultOrHG( parent, 'ShadowColor' );
%@        end % DecoratedPanel
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.FontAngle( obj, value )
%@            idx = find( strcmpi( value, obj.AllowedFontAngle ) );
%@            if isempty( idx )
%@                list = sprintf( '%s, ', obj.AllowedFontAngle{:} );
%@                list(end-1:end) = [];
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''FontAngle'' must be one of: %s.', list );
%@            else
%@                obj.FontAngle = obj.AllowedFontAngle{idx};
%@                eventData = struct( ...
%@                    'Property', 'FontAngle', ...
%@                    'Value', obj.FontAngle );
%@                obj.onPanelFontChanged( obj, eventData );
%@            end
%@        end % set.FontAngle
%@        
%@        function set.FontName( obj, value )
%@            idx = find( strcmpi( value, obj.AllowedFontName ) );
%@            if isempty( idx )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''FontName'' must be a valid font name.  See also ''listfonts''.' );
%@            else
%@                obj.FontName = obj.AllowedFontName{idx};
%@                eventData = struct( ...
%@                    'Property', 'FontName', ...
%@                    'Value', obj.FontName );
%@                obj.onPanelFontChanged( obj, eventData );
%@            end
%@        end % set.FontName
%@        
%@        function set.FontSize( obj, value )
%@            obj.FontSize = value;
%@            eventData = struct( ...
%@                'Property', 'FontSize', ...
%@                'Value', value );
%@            obj.onPanelFontChanged( obj, eventData );
%@        end % set.FontSize
%@        
%@        function set.FontUnits( obj, value )
%@            idx = find( strcmpi( value, obj.AllowedFontUnits ) );
%@            if isempty( idx )
%@                list = sprintf( '%s, ', obj.AllowedFontUnits{:} ); 
%@                list(end-1:end) = [];
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''FontUnits'' must be one of: %s.', list );
%@            else
%@                obj.FontUnits = obj.AllowedFontUnits{idx};
%@                eventData = struct( ...
%@                    'Property', 'FontUnits', ...
%@                    'Value', obj.FontUnits );
%@                obj.onPanelFontChanged( obj, eventData );
%@            end
%@        end % set.FontUnits
%@        
%@        function set.FontWeight( obj, value )
%@            idx = find( strcmpi( value, obj.AllowedFontWeight ) );
%@            if isempty( idx )
%@                list = sprintf( '%s, ', obj.AllowedFontWeight{:} );
%@                list(end-1:end) = [];
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''FontWeight'' must be one of: %s.', list );
%@            else
%@                obj.FontWeight = obj.AllowedFontWeight{idx};
%@                eventData = struct( ...
%@                    'Property', 'FontWeight', ...
%@                    'Value', obj.FontWeight );
%@                obj.onPanelFontChanged( obj, eventData );
%@            end
%@        end % set.FontWeight
%@        
%@        function set.ForegroundColor( obj, value )
%@            obj.ForegroundColor = uiextras.interpretColor( value );
%@            eventData = struct( ...
%@                'Property', 'ForegroundColor', ...
%@                'Value', obj.ForegroundColor );
%@            obj.onPanelColorChanged( obj, eventData );
%@        end % set.ForegroundColor
%@        
%@        function set.HighlightColor( obj, value )
%@            obj.HighlightColor = uiextras.interpretColor( value );
%@            eventData = struct( ...
%@                'Property', 'HighlightColor', ...
%@                'Value', obj.HighlightColor );
%@            obj.onPanelColorChanged( obj, eventData );
%@        end % set.HighlightColor
%@        
%@        function set.ShadowColor( obj, value )
%@            obj.ShadowColor = uiextras.interpretColor( value );
%@            eventData = struct( ...
%@                'Property', 'ShadowColor', ...
%@                'Value', obj.ShadowColor );
%@            obj.onPanelColorChanged( obj, eventData );
%@        end % set.ShadowColor
%@        
%@    end % accessor methods
%@    
%@    methods ( Abstract = true, Access = protected )
%@        onPanelColorChanged( obj, source, eventData );
%@        onPanelFontChanged( obj, source, eventData );
%@    end % abstract protected methods
%@    
%@    methods ( Access = private )
%@        
%@        function setPropertyFromDefaultOrHG( obj, parent, propName )
%@            %setPropertyDefault  Retrieve a default property value. If the
%@            %value is not found in the parent or any of its ancestors the
%@            %default UIPanel equivalent in 'parent' is used
%@            error( nargchk( 3, 3, nargin ) );
%@            
%@            myClass = class( obj );
%@            if strncmp( myClass, 'uiextras.', 9 )
%@                myClass = myClass(10:end);
%@            end
%@            defPropName = ['Default',myClass,propName];
%@            try
%@                obj.(propName) = uiextras.get( parent, defPropName );
%@            catch err %#ok<NASGU>
%@                % Go up the HG tree instead
%@                hgPropName = ['DefaultUIPanel',propName];
%@                % We can't test for default properties, so just try it
%@                try
%@                    obj.(propName) = get( parent, hgPropName );
%@                catch err %#ok<NASGU>
%@                    found = false;
%@                    while ~found && ~isequal( parent, 0 )
%@                        parent = get( parent, 'Parent' );
%@                        try %#ok<TRYNC>
%@                            obj.(propName) = get( parent, hgPropName );
%@                            found = true;
%@                        end
%@                    end
%@                end
%@            end
%@        end % setPropertyFromDefaultOrHG
%@        
%@    end % private methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/Empty.m__ -->
%@classdef Empty < hgsetget
%@    %Empty  Create an empty space
%@    %
%@    %   obj = uiextras.Empty() creates an empty space object that can be
%@    %   used in layouts to add gaps between other elements.
%@    %
%@    %   obj = uiextras.Empty(param,value,...) also sets one or more
%@    %   property values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.Empty">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> box = uiextras.HBox( 'Parent', f );
%@    %   >> uicontrol( 'Parent', box, 'Background', 'r' )
%@    %   >> uiextras.Empty( 'Parent', box )
%@    %   >> uicontrol( 'Parent', box, 'Background', 'b' )
%@    %
%@    %   See also: uiextras.HBox
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 287 $
%@    %   $Date: 2010-07-14 12:21:33 +0100 (Wed, 14 Jul 2010) $
%@    
%@    
%@    
%@    properties( Dependent = true, Transient = true )
%@        BackgroundColor  % background color [r g b]
%@        Parent           % parent [handle]
%@        Position         % position [left bottom width height]
%@        Tag              % tag [string]
%@        Type             % type [string]
%@        Units            % units [inches|centimeters|normalized|points|pixels|characters]
%@        Visible          % visible [on|off]
%@    end % dependent properties
%@    
%@    properties( SetAccess = private, GetAccess = private )
%@        UIControl = -1
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = Empty( varargin )
%@            %Empty  Construct a new empty widget
%@            
%@            % Find if parent has been supplied
%@            parent = uiextras.findArg( 'Parent', varargin{:} );
%@            if isempty( parent )
%@                parent = gcf();
%@            end
%@            
%@            % Find the default background color to use
%@            color = get( ancestor(parent,'figure'), 'DefaultUIControlBackgroundColor' );
%@            % Create the widget
%@            obj.UIControl = uicontrol( ...
%@                'Parent', parent, ...
%@                'Style', 'frame', ...
%@                'ForegroundColor', color, ...
%@                'BackgroundColor', color, ...
%@                'Tag', class( obj ), ...
%@                'HitTest', 'off' );
%@            
%@            if nargin
%@                set( obj, varargin{:} );
%@            end
%@            
%@            % Store it in the Control to prevent it going out of scope
%@            setappdata( obj.UIControl, 'Control', obj );
%@        end % constructor
%@        
%@        function control = double( obj )
%@            %double  Convert to an HG double handle.
%@            %
%@            %  d = double(e) converts empty widget e to an HG handle d.
%@            control = obj.UIControl;
%@        end % double
%@        
%@        function delete( obj )
%@            %delete  Destroy this object (and associated graphics)
%@            if ishandle( obj.UIControl )
%@                delete( obj.UIControl );
%@            end
%@        end % delete
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.Position( obj, value )
%@            set( obj.UIControl, 'Position', value );
%@        end % set.Position
%@        
%@        function value = get.Position( obj )
%@            value = get( obj.UIControl, 'Position' );
%@        end % get.Position
%@        
%@        function set.BackgroundColor( obj, value )
%@            set( obj.UIControl, 'BackgroundColor', value );
%@            set( obj.UIControl, 'ForegroundColor', value );
%@        end % set.BackgroundColor
%@        
%@        function value = get.BackgroundColor( obj )
%@            value = get( obj.UIControl, 'BackgroundColor' );
%@        end % get.BackgroundColor
%@        
%@        function set.Units( obj, value )
%@            set( obj.UIControl, 'Units', value );
%@        end % set.Units
%@        
%@        function value = get.Units( obj )
%@            value = get( obj.UIControl, 'Units' );
%@        end % get.Units
%@        
%@        function set.Parent( obj, value )
%@            set( obj.UIControl, 'Parent', double( value ) );
%@        end % set.Parent
%@        
%@        function value = get.Parent( obj )
%@            value = get( obj.UIControl, 'Parent' );
%@        end % get.Parent
%@        
%@        function set.Visible( obj, value )
%@            set( obj.UIControl, 'Visible', value );
%@        end % set.Visible
%@        
%@        function value = get.Visible( obj )
%@            value = get( obj.UIControl, 'Visible' );
%@        end % get.Visible
%@        
%@        function set.Tag( obj, value )
%@            set( obj.UIControl, 'Tag', value );
%@        end % set.Tag
%@        
%@        function value = get.Tag( obj )
%@            value = get( obj.UIControl, 'Tag' );
%@        end % get.Tag
%@        
%@        function value = get.Type( obj )
%@            value = class( obj );
%@        end % get.Type
%@        
%@    end % accessor methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/Grid.m__ -->
%@classdef Grid < uiextras.Container
%@    %Grid  Container with contents arranged in a grid
%@    %
%@    %   obj = uiextras.Grid() creates a new new grid layout with all
%@    %   properties set to defaults. The number of rows and columns to use
%@    %   is determined from the number of elements in the RowSizes and
%@    %   ColumnSizes properties respectively. Child elements are arranged
%@    %   down column one first, then column two etc. If there are
%@    %   insufficient columns then a new one is added. The output is a new
%@    %   layout object that can be used as the parent for other
%@    %   user-interface components. The output is a new layout object that
%@    %   can be used as the parent for other user-interface components.
%@    %
%@    %   obj = uiextras.Grid(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.Grid">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> g = uiextras.Grid( 'Parent', f, 'Spacing', 5 );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', g, 'Background', 'r' )
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', g, 'Background', 'b' )
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', g, 'Background', 'g' )
%@    %   >> uiextras.Empty( 'Parent', g )
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', g, 'Background', 'c' )
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', g, 'Background', 'y' )
%@    %   >> set( g, 'ColumnSizes', [-1 100 -2], 'RowSizes', [-1 100] );
%@    %
%@    %   See also: uiextras.GridFlex
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 367 $ 
%@    %   $Date: 2011-02-10 16:25:22 +0000 (Thu, 10 Feb 2011) $
%@    
%@    properties( SetObservable ) 
%@        Padding = 0 % padding around and between contents [pixels]
%@        Spacing = 0 % spacing between contents [pixels]
%@    end % public properties
%@    
%@    properties( Dependent )
%@        RowSizes           % column vector of row sizes, with positive elements for absolute sizes (pixels) and negative elements for relative sizes
%@        ColumnSizes        % column vector of column sizes, with positive elements for absolute sizes (pixels) and negative elements for relative sizes
%@        MinimumRowSizes    % minimum size (in pixels) for each row
%@        MinimumColumnSizes % minimum size (in pixels) for each column
%@    end % dependent properties
%@    
%@    properties( Access=private )
%@  
%@        
%@    end % private properties
%@    properties( Access = private )
%@        RowSizes_ = zeros( 0, 1 )           % private property for storing actual row sizes
%@        ColumnSizes_ = zeros( 0, 1 )        % private property for storing actual column sizes
%@        MinimumRowSizes_ = zeros( 0, 1 )    % private property for storing actual minimum row sizes
%@        MinimumColumnSizes_ = zeros( 0, 1 ) % private property for storing actual minimum column sizes
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = Grid( varargin )
%@            %Grid  Create a container with contents in a grid.
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.Container( varargin{:} );
%@
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'Padding' );
%@            obj.setPropertyFromDefault( 'Spacing' );
%@
%@            % Set user-supplied property values (only if this is the leaf class)
%@            if nargin>0 && isequal( class( obj ), 'uiextras.Grid' )
%@                set( obj, varargin{:} );
%@            end
%@            
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.RowSizes( obj, value )
%@            
%@            % Check
%@            if ~isvector( value )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''RowSizes'' must be a vector.' )
%@            elseif ~isnumeric( value ) || ...
%@                    any( ~isreal( value ) ) || any( isnan( value ) ) || any( ~isfinite( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''RowSizes'' must consist of real, finite, numeric values.' )
%@            end
%@            
%@            % Set
%@            obj.RowSizes_ = value(:);
%@            
%@            % Make sure min row sizes is the same length
%@            nMinSizes = length(obj.MinimumRowSizes_);
%@            nSizes = length(obj.RowSizes_);
%@            if nMinSizes > nSizes
%@                obj.MinimumRowSizes_ = obj.MinimumRowSizes_(1:nSizes);
%@            elseif nMinSizes < nSizes
%@                obj.MinimumRowSizes_(end+1:nSizes,1) = 1;
%@            end
%@            
%@            % Add/remove elements to/from ColumnSizes, if required
%@            nColumns = ceil( numel( obj.Children ) / numel( obj.RowSizes_ ) );
%@            if numel( obj.ColumnSizes_ ) > nColumns
%@                obj.ColumnSizes_(nColumns+1:end,:) = [];
%@                obj.MinimumColumnSizes_(nColumns+1:end,:) = [];
%@            elseif numel( obj.ColumnSizes ) < nColumns
%@                obj.ColumnSizes_(end+1:nColumns,1) = -1;
%@                obj.MinimumColumnSizes_(end+1:nColumns,1) = 1;
%@            end
%@            
%@            % Redraw
%@            obj.redraw();
%@            
%@        end % set.RowSizes
%@        
%@        function value = get.RowSizes( obj )
%@            value = obj.RowSizes_;
%@        end % get.RowSizes
%@        
%@        function set.ColumnSizes( obj, value )
%@            % Check
%@            if ~isvector( value )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''ColumnSizes'' must be a vector.' )
%@            elseif ~isnumeric( value ) || ...
%@                    any( ~isreal( value ) ) || any( isnan( value ) ) || any( ~isfinite( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''ColumnSizes'' must consist of real, finite, numeric values.' )
%@            end
%@            
%@            % Set
%@            obj.ColumnSizes_ = value(:);
%@            
%@            % Make sure min row sizes is the same length
%@            nMinSizes = length(obj.MinimumColumnSizes_);
%@            nSizes = length(obj.ColumnSizes_);
%@            if nMinSizes > nSizes
%@                obj.MinimumColumnSizes_ = obj.MinimumColumnSizes_(1:nSizes);
%@            elseif nMinSizes < nSizes
%@                obj.MinimumColumnSizes_(end+1:nSizes,1) = 1;
%@            end
%@            
%@            % Add/remove elements to/from RowSizes, if required
%@            nRows = ceil( numel( obj.Children ) / numel( obj.ColumnSizes_ ) );
%@            if numel( obj.RowSizes_ ) > nRows
%@                obj.RowSizes_(nRows+1:end,:) = [];
%@                obj.MinimumRowSizes_(nRows+1:end,:) = [];
%@            elseif numel( obj.RowSizes ) < nRows
%@                obj.RowSizes_(end+1:nRows,1) = -1;
%@                obj.MinimumRowSizes_(end+1:nRows,1) = 1;
%@            end
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.ColumnSizes
%@        
%@        function value = get.ColumnSizes( obj )
%@            value = obj.ColumnSizes_;
%@        end % get.ColumnSizes       
%@                
%@        function set.MinimumRowSizes( obj, value )
%@            % Check that this vector matches the size vector
%@            if ~isequal( numel( obj.RowSizes ), numel( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Size of property ''MinimumRowSizes'' must match size of property ''RowSizes''.' )
%@            elseif ~isnumeric( value ) || ...
%@                    any( ~isreal( value ) ) || any( isnan( value ) ) || any( ~isfinite( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''MinimumRowSizes'' must consist of real, finite, numeric values.' )
%@            end
%@            
%@            % Set and redraw
%@            obj.MinimumRowSizes_ = value(:)';
%@            obj.redraw();
%@        end % set.MinimumRowSizes
%@        
%@        function value = get.MinimumRowSizes( obj )
%@            value = obj.MinimumRowSizes_;
%@        end % get.MinimumRowSizes
%@                
%@        function set.MinimumColumnSizes( obj, value )
%@            % Check that this vector matches the size vector
%@            if ~isequal( numel( obj.ColumnSizes ), numel( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Size of property ''MinimumColumnSizes'' must match size of property ''RowSizes''.' )
%@            elseif ~isnumeric( value ) || ...
%@                    any( ~isreal( value ) ) || any( isnan( value ) ) || any( ~isfinite( value ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''MinimumColumnSizes'' must consist of real, finite, numeric values.' )
%@            end
%@            
%@            % Set and redraw
%@            obj.MinimumColumnSizes_ = value(:)';
%@            obj.redraw();
%@        end % set.MinimumColumnSizes
%@        
%@        function value = get.MinimumColumnSizes( obj )
%@            value = obj.MinimumColumnSizes_;
%@        end % get.MinimumColumnSizes
%@        
%@        function set.Padding( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Padding'' must be a nonnegative integer.' )
%@            end
%@            
%@            % Set
%@            obj.Padding = value;
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.Padding
%@        
%@        function set.Spacing( obj, value )
%@            % Check
%@            if ~isnumeric( value ) || ~isscalar( value ) || ...
%@                    ~isreal( value ) || isnan( value ) || ~isfinite( value ) || ...
%@                    value < 0 || rem( value, 1 ) ~= 0
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''Spacing'' must be a nonnegative integer.' )
%@            end
%@            
%@            % Set
%@            obj.Spacing = value;
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % set.Spacing
%@        
%@    end % accessor methods
%@    
%@    methods( Access = protected )
%@        
%@        function [widths,heights] = redraw( obj )
%@            %REDRAW  Redraw container contents.
%@            
%@            % Get container width and height
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalWidth = totalPosition(3);
%@            totalHeight = totalPosition(4);
%@            
%@            % Get children
%@            children = obj.Children;
%@            nChildren = numel( children );
%@            
%@            % Get padding, spacing, widths and heights
%@            padding = obj.Padding;
%@            spacing = obj.Spacing;
%@            columnSizes = obj.ColumnSizes;
%@            minColumnSizes = obj.MinimumColumnSizes;
%@            rowSizes = obj.RowSizes;
%@            minRowSizes = obj.MinimumRowSizes;
%@            nColumns = numel( columnSizes );
%@            nRows = numel( rowSizes );
%@            
%@            % Compute widths and heights
%@            widths = uiextras.calculatePixelSizes( totalWidth, ...
%@                columnSizes, minColumnSizes, ...
%@                obj.Padding, obj.Spacing );
%@            heights = uiextras.calculatePixelSizes( totalHeight, ...
%@                rowSizes, minRowSizes, ...
%@                obj.Padding, obj.Spacing );
%@            
%@            % Compute and set new positions in pixels
%@            elementNumbers = reshape( 1:nRows*nColumns, [nRows, nColumns] );
%@            rowNumbers = repmat( transpose( 1:nRows ), [1, nColumns] );
%@            columnNumbers = repmat( 1:nColumns, [nRows, 1] );
%@            for ii = 1:nChildren
%@                child = children(ii);
%@                jj = rowNumbers(elementNumbers==ii); % row index
%@                kk = columnNumbers(elementNumbers==ii); % column index
%@                x = sum( widths(1:kk-1) ) + padding + spacing * (kk-1) + 1;
%@                y = totalHeight - sum( heights(1:jj) ) - padding - spacing*(jj-1) + 1;
%@                newPosition = [x, y, widths(kk), heights(jj)];   
%@                obj.repositionChild( child, newPosition );
%@            end
%@            
%@        end % redraw
%@        
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded: Callback that fires when a child is added to a container.
%@            % Add element to RowSizes, if required
%@            if numel( obj.RowSizes_ ) == 0
%@                obj.RowSizes_ = -1;
%@                obj.MinimumRowSizes_ = 1;
%@            end
%@            
%@            % Add element to ColumnSizes, if required
%@            nColumns = ceil( numel( obj.Children ) / numel( obj.RowSizes_ ) );
%@            if numel( obj.ColumnSizes_ ) < nColumns
%@                obj.ColumnSizes_(end+1:nColumns,:) = -1;
%@                obj.MinimumColumnSizes_(end+1:nColumns,:) = 1;
%@            end
%@            
%@            obj.redraw();
%@            
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded: Callback that fires when a container child is destroyed or reparented.
%@            if numel( obj.Children ) == 0
%@                % Remove elements from RowSizes and ColumnSizes
%@                obj.RowSizes_ = zeros( 0, 1 );
%@                obj.ColumnSizes_ = zeros( 0, 1 );
%@                obj.MinimumRowSizes_ = zeros( 0, 1 );
%@                obj.MinimumColumnSizes_ = zeros( 0, 1 );
%@            else
%@                % Remove elements from ColumnSizes, if required
%@                nColumns = ceil( numel( obj.Children ) / numel( obj.RowSizes_ ) );
%@                if numel( obj.ColumnSizes_ ) > nColumns
%@                    obj.ColumnSizes_(nColumns+1:end,:) = [];
%@                    obj.MinimumColumnSizes_(nColumns+1:end,:) = [];
%@                end
%@            end
%@            
%@            % Redraw
%@            obj.redraw();
%@        end % onChildRemoved
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/GridFlex.m__ -->
%@classdef GridFlex < uiextras.Grid
%@    %GridFlex  Container with contents arranged in a resizable grid
%@    %
%@    %   obj = uiextras.GridFlex() creates a new new grid layout with
%@    %   draggable dividers between elements. The number of rows and columns
%@    %   to use is determined from the number of elements in the RowSizes
%@    %   and ColumnSizes properties respectively. Child elements are
%@    %   arranged down column one first, then column two etc. If there are
%@    %   insufficient columns then a new one is added. The output is a new
%@    %   layout object that can be used as the parent for other
%@    %   user-interface components. The output is a new layout object that
%@    %   can be used as the parent for other user-interface components.
%@    %
%@    %   obj = uiextras.GridFlex(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.GridFlex">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> g = uiextras.GridFlex( 'Parent', f, 'Spacing', 5 );
%@    %   >> uicontrol( 'Parent', g, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', g, 'Background', 'b' )
%@    %   >> uicontrol( 'Parent', g, 'Background', 'g' )
%@    %   >> uiextras.Empty( 'Parent', g )
%@    %   >> uicontrol( 'Parent', g, 'Background', 'c' )
%@    %   >> uicontrol( 'Parent', g, 'Background', 'y' )
%@    %   >> set( g, 'ColumnSizes', [-1 100 -2], 'RowSizes', [-1 -2] );
%@    %
%@    %   See also: uiextras.Grid
%@    %             uiextras.HBoxFlex
%@    %             uiextras.VBoxFlex
%@    %             uiextras.Empty
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 366 $
%@    %   $Date: 2011-02-10 15:48:11 +0000 (Thu, 10 Feb 2011) $
%@    
%@    properties
%@        ShowMarkings = 'on'  % Show markings on the draggable dividers [ on | off ]
%@    end % public methods
%@    
%@    properties( Access = private )
%@        RowDividers = []
%@        SelectedRowDivider = -1
%@        ColumnDividers = []
%@        SelectedColumnDivider = -1
%@        BlockRedraw = false
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = GridFlex( varargin )
%@            %GridFlex  Container with contents in a grid and movable dividers
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.Grid( varargin{:} );
%@            
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'ShowMarkings' );
%@            
%@            % Set user-supplied property values
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.ShowMarkings( obj, value )
%@            % Check
%@            if ~ischar( value ) || ~ismember( lower( value ), {'on','off'} )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''ShowMarkings'' may only be set to ''on'' or ''off''.' )
%@            end
%@            % Apply
%@            obj.ShowMarkings = lower( value );
%@            obj.redraw();
%@        end % set.ShowMarkings
%@        
%@    end % accessor methods
%@    
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            %redraw  Redraw container contents
%@            
%@            % Prevent recursive redraws if we need to add/remove/reorder
%@            % dividers
%@            if obj.BlockRedraw
%@                return;
%@            end
%@            obj.BlockRedraw = true;
%@            
%@            % First simply call the grid redraw
%@            [widths,heights] = redraw@uiextras.Grid(obj);
%@            rowSizes = obj.RowSizes;
%@            columnSizes = obj.ColumnSizes;
%@            padding = obj.Padding;
%@            spacing = obj.Spacing;
%@            pos0 = ceil( getpixelposition( obj.UIContainer ) );
%@            
%@            % Now add the column dividers
%@            mph = uiextras.MousePointerHandler( obj.Parent );
%@            numDynamic = 0;
%@            for ii = 1:numel(columnSizes)-1
%@                if any(columnSizes(1:ii)<0) && any(columnSizes(ii+1:end)<0)
%@                    numDynamic = numDynamic + 1;
%@                    % Both dynamic, so add a divider
%@                    position = [sum( widths(1:ii) ) + padding + spacing * (ii-1) + 1, ...
%@                        padding + 1, ...
%@                        max(1,spacing), ...
%@                        max(1,pos0(4)-2*padding)];
%@                    % Create the divider widget
%@                    if numDynamic > numel( obj.ColumnDividers )
%@                        obj.ColumnDividers(numDynamic) = uiextras.makeFlexDivider( ...
%@                            obj.UIContainer, ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Vertical', ...
%@                            obj.ShowMarkings );
%@                        set( obj.ColumnDividers(numDynamic), ...
%@                            'ButtonDownFcn', @obj.onColumnButtonDown, ...
%@                            'Tag', 'UIExtras:GridFlex:ColumnDivider' );
%@                        % Add it to the mouse-over handler
%@                        mph.register( obj.ColumnDividers(numDynamic), 'left' );
%@                    else
%@                        % Just update an existing divider
%@                        uiextras.makeFlexDivider( ...
%@                            obj.ColumnDividers(numDynamic), ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Vertical', ...
%@                            obj.ShowMarkings );
%@                    end
%@                    setappdata( obj.ColumnDividers(numDynamic), 'WhichDivider', ii );
%@                end
%@            end
%@            % Remove any excess dividers
%@            if numel( obj.ColumnDividers ) > numDynamic
%@                delete( obj.ColumnDividers(numDynamic+1:end) );
%@                obj.ColumnDividers(numDynamic+1:end) = [];
%@            end
%@            
%@            % Now add the row dividers
%@            numDynamic = 0;
%@            for ii = 1:numel(rowSizes)-1
%@                if any(rowSizes(1:ii)<0) && any(rowSizes(ii+1:end)<0)
%@                    numDynamic = numDynamic + 1;
%@                    % Both dynamic, so add a divider
%@                    position = [padding + 1, ...
%@                        pos0(4) - sum( heights(1:ii) ) - padding - spacing*ii + 1, ...
%@                        max(1,pos0(3)-2*padding), ...
%@                        max(1,spacing)];
%@                    % Create the divider widget
%@                    if numDynamic > numel( obj.RowDividers )
%@                        obj.RowDividers(numDynamic) = uiextras.makeFlexDivider( ...
%@                            obj.UIContainer, ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Horizontal', ...
%@                            obj.ShowMarkings );
%@                        set( obj.RowDividers(numDynamic), 'ButtonDownFcn', @obj.onRowButtonDown, ...
%@                            'Tag', 'UIExtras:GridFlex:RowDivider' );
%@                        % Add it to the mouse-over handler
%@                        mph.register( obj.RowDividers(numDynamic), 'top' );
%@                    else
%@                        % Just update an existing divider
%@                        uiextras.makeFlexDivider( ...
%@                            obj.RowDividers(numDynamic), ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Horizontal', ...
%@                            obj.ShowMarkings );
%@                    end
%@                    setappdata( obj.RowDividers(numDynamic), 'WhichDivider', ii );
%@                end
%@            end
%@            % Remove any excess dividers
%@            if numel( obj.RowDividers ) > numDynamic
%@                delete( obj.RowDividers(numDynamic+1:end) );
%@                obj.RowDividers(numDynamic+1:end) = [];
%@            end
%@
%@            % We need to ensure dividers are above all other children so
%@            % that they receive mouse clicks
%@            c = allchild( obj.UIContainer );
%@            tags = get(c,'Tag');
%@            isDivider = strcmp( tags, 'UIExtras:GridFlex:RowDivider' ) ...
%@                | strcmp( tags, 'UIExtras:GridFlex:ColumnDivider' );
%@            firstChild = find( ~isDivider, 1, 'first' );
%@            lastDivider = find( isDivider, 1, 'last' );
%@            if firstChild < lastDivider
%@                % We need to put the divider first
%@                set( obj.UIContainer, 'Children', [c(isDivider);c(~isDivider)] );
%@            end
%@            obj.BlockRedraw = false;
%@
%@        end % redraw
%@        
%@        function onRowButtonDown( obj, source, eventData ) %#ok<INUSD>
%@            figh = ancestor( source, 'figure' );
%@            % Remove all column dividers
%@            ch = allchild( obj.UIContainer );
%@            dividers = strcmpi( get( ch, 'Tag' ), 'GridFlex:ColumnDivider' );
%@            delete( ch(dividers) );
%@            % We need to store any existing motion callbacks so that we can
%@            % restore them later.
%@            oldProps = struct();
%@            oldProps.WindowButtonMotionFcn = get( figh, 'WindowButtonMotionFcn' );
%@            oldProps.WindowButtonUpFcn = get( figh, 'WindowButtonUpFcn' );
%@            oldProps.Pointer = get( figh, 'Pointer' );
%@            oldProps.Units = get( figh, 'Units' );
%@            
%@            % Make sure all interaction modes are off to prevent our
%@            % callbacks being clobbered
%@            zoomh = zoom( figh );
%@            r3dh = rotate3d( figh );
%@            panh = pan( figh );
%@            oldState = '';
%@            if isequal( zoomh.Enable, 'on' )
%@                zoomh.Enable = 'off';
%@                oldState = 'zoom';
%@            end
%@            if isequal( r3dh.Enable, 'on' )
%@                r3dh.Enable = 'off';
%@                oldState = 'rotate3d';
%@            end
%@            if isequal( panh.Enable, 'on' )
%@                panh.Enable = 'off';
%@                oldState = 'pan';
%@            end
%@            
%@            
%@            % Now hook up new callbacks
%@            set( figh, ...
%@                'WindowButtonMotionFcn', @obj.onRowButtonMotion, ...
%@                'WindowButtonUpFcn', {@obj.onRowButtonUp, oldProps, oldState}, ...
%@                'Pointer', 'top', ...
%@                'Units', 'Pixels' );
%@            % Make the divider visible
%@            cdata = get( source, 'CData' );
%@            if mean( cdata(:) ) < 0.5
%@                % Make it brighter
%@                cdata = 1-0.5*(1-cdata);
%@                newCol = 1-0.5*(1-get( obj.UIContainer, 'BackgroundColor' ));
%@            else
%@                % Make it darker
%@                cdata = 0.5*cdata;
%@                newCol = 0.5*get( obj.UIContainer, 'BackgroundColor' );
%@            end
%@            set( source, ...
%@                'BackgroundColor', newCol, ...
%@                'ForegroundColor', newCol, ...
%@                'CData', cdata );
%@            
%@            obj.SelectedRowDivider = source;
%@        end % onRowButtonDown
%@        
%@        function onRowButtonMotion( obj, source, eventData ) %#ok<INUSD>
%@            figh = ancestor( source, 'figure' );
%@            cursorpos = get( figh, 'CurrentPoint' );
%@            dividerpos = get( obj.SelectedRowDivider, 'Position' );
%@            
%@            % We need to gaurd against the focus having been lost. In this
%@            % case we should have received a button-up event, but sometimes
%@            % don't (at least on Windows).
%@            if ishandle( obj.SelectedRowDivider )
%@                pos0 = getpixelposition( obj.UIContainer, true );
%@                dividerpos(2) = cursorpos(2) - pos0(2) - round(obj.Spacing/2) + 1;
%@                % Make sure that the position doesn't cause an element to
%@                % shrink too much
%@                minSizes = obj.MinimumRowSizes(:);
%@                pixSizes = uiextras.calculatePixelSizes( pos0(4), ...
%@                    obj.RowSizes, minSizes, obj.Padding, obj.Spacing );
%@                N = numel( minSizes );
%@                % Sometimes the actual width is smaller than the minimum!
%@                minSizes = min( minSizes, pixSizes );
%@                whichDivider = getappdata( obj.SelectedRowDivider, 'WhichDivider' );
%@                minPos = pos0(4) - ceil( obj.Padding ...
%@                    + sum( pixSizes(1:whichDivider-1) ) ...
%@                    + minSizes(whichDivider) ...
%@                    + obj.Spacing*(whichDivider-0.5) );
%@                dividerpos(2) = min( dividerpos(2), minPos );
%@                if whichDivider<(N-1)
%@                    maxPos = floor( obj.Padding ...
%@                        + sum( pixSizes(whichDivider+2:end) ) ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*(N-whichDivider-0.5) );
%@                else
%@                    % Final divider
%@                    maxPos = floor( obj.Padding ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*0.5 );
%@                end
%@                dividerpos(2) = max( dividerpos(2), maxPos );
%@                set( obj.SelectedRowDivider, 'Position', dividerpos );
%@            else
%@                % Divider has been lost, so we are in a bad state. The
%@                % best we can do is kill the callbacks and attempt to put
%@                % the figure back in a decent state.
%@                set( figh, 'Pointer', 'arrow', ...
%@                    'WindowButtonMotionFcn', [], ...
%@                    'WindowButtonUpFcn', [] );
%@            end
%@        end % onRowButtonMotion
%@        
%@        function onRowButtonUp( obj, source, eventData, oldFigProps, oldState )
%@            % Deliberately call the motion function to ensure any last
%@            % movement is captured
%@            obj.onRowButtonMotion( source, eventData );
%@            
%@            % Restore figure properties
%@            figh = ancestor( source, 'figure' );
%@            flds = fieldnames( oldFigProps );
%@            for ii=1:numel(flds)
%@                set( figh, flds{ii}, oldFigProps.(flds{ii}) );
%@            end
%@            
%@            % If the figure has an interaction mode set, re-set it now
%@            if ~isempty( oldState )
%@                switch upper( oldState )
%@                    case 'ZOOM'
%@                        zoom( figh, 'on' );
%@                    case 'PAN'
%@                        pan( figh, 'on' );
%@                    case 'ROTATE3D'
%@                        rotate3d( figh, 'on' );
%@                    otherwise
%@                        error( 'GUILayout:InvalidState', 'Invalid interaction mode ''%s''.', oldState );
%@                end
%@            end
%@            
%@            % Work out which divider was moved and which are the resizable
%@            % elements either side of it
%@            whichDivider = getappdata( obj.SelectedRowDivider, 'WhichDivider' );
%@            origPos = getappdata( obj.SelectedRowDivider, 'OriginalPosition' );
%@            newPos = get( obj.SelectedRowDivider, 'Position' );
%@            obj.SelectedRowDivider = -1;
%@            delta = newPos(2) - origPos(2) - round(obj.Spacing/2) + 1;
%@            sizes = obj.RowSizes;
%@            % Convert all flexible sizes into pixel units
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalHeight = totalPosition(4);
%@            heights = uiextras.calculatePixelSizes( totalHeight, ...
%@                sizes, obj.MinimumRowSizes, obj.Padding, obj.Spacing );
%@            
%@            topelement = find( sizes(1:whichDivider)<0, 1, 'last' );
%@            bottomelement = find( sizes(whichDivider+1:end)<0, 1, 'first' )+whichDivider;
%@            
%@            % Now work out the new sizes. Note that we must ensure the size
%@            % stays negative otherwise it'll stop being resizable
%@            change = sum(sizes(sizes<0)) * delta / sum( heights(sizes<0) );
%@            sizes(topelement) = min( -0.000001, sizes(topelement) - change );
%@            sizes(bottomelement) = min( -0.000001, sizes(bottomelement) + change );
%@            
%@            % Setting the sizes will cause a redraw
%@            obj.RowSizes = sizes;
%@        end % onRowButtonUp
%@        
%@        function onColumnButtonDown( obj, source, eventData ) %#ok<INUSD>
%@            % Remove all row dividers
%@            figh = ancestor( source, 'figure' );
%@            ch = allchild( obj.UIContainer );
%@            dividers = strcmpi( get( ch, 'Tag' ), 'GridFlex:RowDivider' );
%@            delete( ch(dividers) );
%@            % We need to store any existing motion callbacks so that we can
%@            % restore them later.
%@            oldProps = struct();
%@            oldProps.WindowButtonMotionFcn = get( figh, 'WindowButtonMotionFcn' );
%@            oldProps.WindowButtonUpFcn = get( figh, 'WindowButtonUpFcn' );
%@            oldProps.Pointer = get( figh, 'Pointer' );
%@            oldProps.Units = get( figh, 'Units' );
%@            
%@            % Make sure all interaction modes are off to prevent our
%@            % callbacks being clobbered
%@            zoomh = zoom( figh );
%@            r3dh = rotate3d( figh );
%@            panh = pan( figh );
%@            oldState = '';
%@            if isequal( zoomh.Enable, 'on' )
%@                zoomh.Enable = 'off';
%@                oldState = 'zoom';
%@            end
%@            if isequal( r3dh.Enable, 'on' )
%@                r3dh.Enable = 'off';
%@                oldState = 'rotate3d';
%@            end
%@            if isequal( panh.Enable, 'on' )
%@                panh.Enable = 'off';
%@                oldState = 'pan';
%@            end
%@            
%@            % Now hook up new callbacks
%@            set( figh, ...
%@                'WindowButtonMotionFcn', @obj.onColumnButtonMotion, ...
%@                'WindowButtonUpFcn', {@obj.onColumnButtonUp, oldProps, oldState}, ...
%@                'Pointer', 'left', ...
%@                'Units', 'Pixels' );
%@            % Make the divider visible
%@            cdata = get( source, 'CData' );
%@            if mean( cdata(:) ) < 0.5
%@                % Make it brighter
%@                cdata = 1-0.5*(1-cdata);
%@                newCol = 1-0.5*(1-get( obj.UIContainer, 'BackgroundColor' ));
%@            else
%@                % Make it darker
%@                cdata = 0.5*cdata;
%@                newCol = 0.5*get( obj.UIContainer, 'BackgroundColor' );
%@            end
%@            set( source, ...
%@                'BackgroundColor', newCol, ...
%@                'ForegroundColor', newCol, ...
%@                'CData', cdata );
%@            obj.SelectedColumnDivider = source;
%@        end % onColumnButtonDown
%@        
%@        function onColumnButtonMotion( obj, source, eventData ) %#ok<INUSD>
%@            figh = ancestor( source, 'figure' );
%@            cursorpos = get( figh, 'CurrentPoint' );
%@            
%@            % We need to gaurd against the focus having been lost. In this
%@            % case we should have received a button-up event, but sometimes
%@            % don't (at least on Windows).
%@            if ishandle( obj.SelectedColumnDivider )
%@                dividerpos = get( obj.SelectedColumnDivider, 'Position' );
%@                pos0 = getpixelposition( obj.UIContainer, true );
%@                dividerpos(1) = cursorpos(1) - pos0(1) - round(obj.Spacing/2) + 1;
%@                                % Make sure that the position doesn't cause an element to
%@                % shrink too much
%@                minSizes = obj.MinimumColumnSizes(:);
%@                pixSizes = uiextras.calculatePixelSizes( pos0(3), ...
%@                    obj.ColumnSizes, minSizes, obj.Padding, obj.Spacing );
%@
%@                N = numel( minSizes );
%@                % Sometimes the actual width is smaller than the minimum!
%@                minSizes = min( minSizes, pixSizes );
%@                whichDivider = getappdata( obj.SelectedColumnDivider, 'WhichDivider' );
%@                minPos = ceil( obj.Padding ...
%@                    + sum( pixSizes(1:whichDivider-1) ) ...
%@                    + minSizes(whichDivider) ...
%@                    + obj.Spacing*(whichDivider-0.5) );
%@                dividerpos(1) = max( dividerpos(1), minPos );
%@                if whichDivider<(N-1)
%@                    maxPos = pos0(3) - floor( obj.Padding ...
%@                        + sum( pixSizes(whichDivider+2:end) ) ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*(N-whichDivider-0.5) );
%@                else
%@                    % Final divider
%@                    maxPos = pos0(3) - floor( obj.Padding ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*0.5 );
%@                end
%@                dividerpos(1) = min( dividerpos(1), maxPos );
%@
%@                set( obj.SelectedColumnDivider, 'Position', dividerpos );
%@            else
%@                % Divider has been lost, so we are in a bad state. The
%@                % best we can do is kill the callbacks and attempt to put
%@                % the figure back in a decent state.
%@                set( figh, 'Pointer', 'arrow', ...
%@                    'WindowButtonMotionFcn', [], ...
%@                    'WindowButtonUpFcn', [] );
%@            end
%@        end % onColumnButtonMotion
%@        
%@        function onColumnButtonUp( obj, source, eventData, oldFigProps, oldState )
%@            figh = ancestor( source, 'figure' );
%@            % Deliberately call the motion function to ensure any last
%@            % movement is captured
%@            obj.onColumnButtonMotion( source, eventData );
%@            
%@            % Restore figure properties
%@            flds = fieldnames( oldFigProps );
%@            for ii=1:numel(flds)
%@                set( figh, flds{ii}, oldFigProps.(flds{ii}) );
%@            end
%@            
%@            % If the figure has an interaction mode set, re-set it now
%@            if ~isempty( oldState )
%@                switch upper( oldState )
%@                    case 'ZOOM'
%@                        zoom( figh, 'on' );
%@                    case 'PAN'
%@                        zoom( figh, 'on' );
%@                    case 'ROTATE3D'
%@                        rotate3d( figh, 'on' );
%@                    otherwise
%@                        error( 'GUILayout:InvalidState', 'Invalid interaction mode ''%s''.', oldState );
%@                end
%@            end
%@            
%@            % Work out which divider was moved and which are the resizable
%@            % elements either side of it
%@            whichDivider = getappdata( obj.SelectedColumnDivider, 'WhichDivider' );
%@            origPos = getappdata( obj.SelectedColumnDivider, 'OriginalPosition' );
%@            newPos = get( obj.SelectedColumnDivider, 'Position' );
%@            obj.SelectedColumnDivider = -1;
%@            delta = newPos(1) - origPos(1) - round(obj.Spacing/2) + 1;
%@            sizes = obj.ColumnSizes;
%@            
%@            % Convert all flexible sizes into pixel units
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalWidth = totalPosition(3);
%@            widths = uiextras.calculatePixelSizes( totalWidth, ...
%@                sizes, obj.MinimumColumnSizes, obj.Padding, obj.Spacing );
%@            
%@            leftelement = find( sizes(1:whichDivider)<0, 1, 'last' );
%@            rightelement = find( sizes(whichDivider+1:end)<0, 1, 'first' )+whichDivider;
%@            
%@            % Now work out the new sizes. Note that we must ensure the size
%@            % stays negative otherwise it'll stop being resizable
%@            change = sum(sizes(sizes<0)) * delta / sum( widths(sizes<0) );
%@            sizes(leftelement) = min( -0.000001, sizes(leftelement) + change );
%@            sizes(rightelement) = min( -0.000001, sizes(rightelement) - change );
%@            
%@            % Setting the sizes will cause a redraw
%@            obj.ColumnSizes = sizes;
%@        end % onColumnButtonUp
%@        
%@        function onBackgroundColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            %onBackgroundColorChanged  Callback that fires when the container background color is changed
%@            %
%@            % We need to make the dividers match the background, so redarw
%@            % them
%@            obj.redraw();
%@        end % onChildRemoved
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/HBox.m__ -->
%@classdef HBox < uiextras.Box
%@    %HBox  Arrange elements in a single horizontal row
%@    %
%@    %   obj = uiextras.HBox() creates a new horizontal box layout with
%@    %   all parameters set to defaults. The output is a new layout object
%@    %   that can be used as the parent for other user-interface components.
%@    %
%@    %   obj = uiextras.HBox(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.HBox">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> b = uiextras.HBox( 'Parent', f );
%@    %   >> uicontrol( 'Parent', b, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'b' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'g' )
%@    %   >> set( b, 'Sizes', [-1 100 -2], 'Spacing', 5 );
%@    %
%@    %   >> f = figure();
%@    %   >> b1 = uiextras.VBox( 'Parent', f );
%@    %   >> b2 = uiextras.HBox( 'Parent', b1, 'Padding', 5, 'Spacing', 5 );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', b1, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', b2, 'String', 'Button1' )
%@    %   >> uicontrol( 'Parent', b2, 'String', 'Button2' )
%@    %   >> set( b1, 'Sizes', [30 -1] );
%@    %
%@    %   See also: uiextras.VBox
%@    %             uiextras.HBoxFlex
%@    %             uiextras.Grid
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 374 $
%@    %   $Date: 2012-12-20 09:18:15 +0000 (Thu, 20 Dec 2012) $
%@    
%@    methods
%@        
%@        function obj = HBox( varargin )
%@            %HBox  Container with contents in a single horizontal row
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.Box( varargin{:} );
%@            
%@            % Set user-supplied property values
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end  
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods( Access = protected )
%@        
%@        function [widths,heights] = redraw( obj )
%@            %REDRAW  Redraw container contents.
%@            % Get container width and height
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalWidth = totalPosition(3);
%@            totalHeight = totalPosition(4);
%@            
%@            % Get children
%@            children = obj.getValidChildren();
%@            nChildren = numel( children );
%@            
%@            % Get padding, spacing and sizes
%@            padding = obj.Padding;
%@            spacing = obj.Spacing;
%@            
%@            % Compute widths
%@            widths = uiextras.calculatePixelSizes( totalWidth, ...
%@                obj.Sizes, obj.MinimumSizes, padding, spacing );
%@            
%@            % Compute heights
%@            heights = repmat( totalHeight - padding * 2, size( children ) );
%@            heights = max( heights, 1 ); % minimum is 1 pixel
%@            
%@            % Compute and set new positions in pixels
%@            for ii = 1:nChildren
%@                child = children(ii);
%@                newPosition = [sum( widths(1:ii-1) ) + padding + spacing * (ii-1) + 1, ...
%@                    padding + 1, ...
%@                    widths(ii), ...
%@                    heights(ii)];
%@                obj.repositionChild( child, newPosition )
%@            end   
%@        end % redraw
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/HBoxFlex.m__ -->
%@classdef HBoxFlex < uiextras.HBox
%@    %HBoxFlex  A dynamically resizable horizontal layout
%@    %
%@    %   obj = uiextras.HBoxFlex() creates a new dynamically resizable
%@    %   horizontal box layout with all parameters set to defaults. The
%@    %   output is a new layout object that can be used as the parent for
%@    %   other user-interface components.
%@    %
%@    %   obj = uiextras.HBoxFlex(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.HBoxFlex">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure( 'Name', 'uiextras.HBoxFlex example' );
%@    %   >> b = uiextras.HBoxFlex( 'Parent', f );
%@    %   >> uicontrol( 'Parent', b, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'b' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'g' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'y' )
%@    %   >> set( b, 'Sizes', [-1 100 -2 -1], 'Spacing', 5 );
%@    %
%@    %   See also: uiextras.VBoxFlex
%@    %             uiextras.HBox
%@    %             uiextras.Grid
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 366 $
%@    %   $Date: 2011-02-10 15:48:11 +0000 (Thu, 10 Feb 2011) $
%@    
%@    properties
%@        ShowMarkings = 'on'  % Show markings on the draggable dividers [ on | off ]
%@    end % public methods
%@    
%@    properties (Access=private)
%@        Dividers = []
%@        SelectedDivider = -1
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = HBoxFlex( varargin )
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.HBox( varargin{:} );
%@            
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'ShowMarkings' );
%@            
%@            % Set user-supplied property values
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.ShowMarkings( obj, value )
%@            % Check
%@            if ~ischar( value ) || ~ismember( lower( value ), {'on','off'} )
%@                error( 'GUILayout:HBoxFlex:InvalidPropertyValue', ...
%@                    'Property ''ShowMarkings'' may only be set to ''on'' or ''off''.' )
%@            end
%@            % Apply
%@            obj.ShowMarkings = lower( value );
%@            obj.redraw();
%@        end % set.ShowMarkings
%@    end % accessor methods
%@    
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            %REDRAW  Redraw container contents.
%@            
%@            % First call the grid redraw
%@            [widths,heights] = redraw@uiextras.HBox(obj);
%@            sizes = obj.Sizes;
%@            children = obj.getValidChildren();
%@            nChildren = numel( children );
%@            padding = obj.Padding;
%@            spacing = obj.Spacing;
%@            
%@            % Now also add/update some dividers
%@            mph = uiextras.MousePointerHandler( obj.Parent );
%@            numDynamic = 0;
%@            for ii = 1:nChildren-1
%@                if any(sizes(1:ii)<0) && any(sizes(ii+1:end)<0)
%@                    numDynamic = numDynamic + 1;
%@                    % Both dynamic, so add a divider
%@                    position = [sum( widths(1:ii) ) + padding + spacing * (ii-1) + 1, ...
%@                        padding + 1, ...
%@                        max(1,spacing), ...
%@                        heights(ii)];
%@                    % Create the divider widget
%@                    if numDynamic > numel( obj.Dividers )
%@                        obj.Dividers(numDynamic) = uiextras.makeFlexDivider( ...
%@                            obj.UIContainer, ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Vertical', ...
%@                            obj.ShowMarkings );
%@                        set( obj.Dividers(numDynamic), 'ButtonDownFcn', @obj.onButtonDown, ...
%@                            'Tag', 'UIExtras:HBoxFlex:Divider' );
%@                        % Add it to the mouse-over handler
%@                        mph.register( obj.Dividers(numDynamic), 'left' );
%@                    else
%@                        % Just update an existing divider
%@                        uiextras.makeFlexDivider( ...
%@                            obj.Dividers(numDynamic), ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Vertical', ...
%@                            obj.ShowMarkings );
%@                    end
%@                    setappdata( obj.Dividers(numDynamic), 'WhichDivider', ii );
%@                end
%@            end
%@            % Remove any excess dividers
%@            if numel( obj.Dividers ) > numDynamic
%@                delete( obj.Dividers(numDynamic+1:end) );
%@                obj.Dividers(numDynamic+1:end) = [];
%@            end
%@        end % redraw
%@        
%@        function onButtonDown( obj, source, eventData ) %#ok<INUSD>
%@            figh = ancestor( source, 'figure' );
%@            % We need to store any existing motion callbacks so that we can
%@            % restore them later.
%@            oldProps = struct();
%@            oldProps.WindowButtonMotionFcn = get( figh, 'WindowButtonMotionFcn' );
%@            oldProps.WindowButtonUpFcn = get( figh, 'WindowButtonUpFcn' );
%@            oldProps.Pointer = get( figh, 'Pointer' );
%@            oldProps.Units = get( figh, 'Units' );
%@            
%@            % Make sure all interaction modes are off to prevent our
%@            % callbacks being clobbered
%@            zoomh = zoom( figh );
%@            r3dh = rotate3d( figh );
%@            panh = pan( figh );
%@            oldState = '';
%@            if isequal( zoomh.Enable, 'on' )
%@                zoomh.Enable = 'off';
%@                oldState = 'zoom';
%@            end
%@            if isequal( r3dh.Enable, 'on' )
%@                r3dh.Enable = 'off';
%@                oldState = 'rotate3d';
%@            end
%@            if isequal( panh.Enable, 'on' )
%@                panh.Enable = 'off';
%@                oldState = 'pan';
%@            end
%@            
%@            % Now set the new callbacks
%@            set( figh, ...
%@                'WindowButtonMotionFcn', @obj.onButtonMotion, ...
%@                'WindowButtonUpFcn', {@obj.onButtonUp, oldProps, oldState}, ...
%@                'Pointer', 'left', ...
%@                'Units', 'Pixels' );
%@            % Make the divider visible
%@            cdata = get( source, 'CData' );
%@            if mean( cdata(:) ) < 0.5
%@                % Make it brighter
%@                cdata = 1-0.5*(1-cdata);
%@                newCol = 1-0.5*(1-get( obj.UIContainer, 'BackgroundColor' ));
%@            else
%@                % Make it darker
%@                cdata = 0.5*cdata;
%@                newCol = 0.5*get( obj.UIContainer, 'BackgroundColor' );
%@            end
%@            
%@            set( source, ...
%@                'BackgroundColor', newCol, ...
%@                'ForegroundColor', newCol, ...
%@                'CData', cdata );
%@            obj.SelectedDivider = source;
%@        end % onButtonDown
%@        
%@        function onButtonMotion( obj, source, eventData ) %#ok<INUSD>
%@            % First capture the current cursor position
%@            figh = ancestor( source, 'figure' );
%@            cursorpos = get( figh, 'CurrentPoint' );
%@            pos0 = getpixelposition( obj.UIContainer, true );
%@            
%@            % We need to gaurd against the focus having been lost. In this
%@            % case we should have received a button-up event, but sometimes
%@            % don't (at least on Windows).
%@            if ishandle( obj.SelectedDivider )
%@                % All OK, so move it
%@                dividerpos = get( obj.SelectedDivider, 'Position' );
%@                dividerpos(1) = cursorpos(1) - pos0(1) - round(obj.Spacing/2) + 1;
%@                
%@                % Make sure that the position doesn't cause an element to
%@                % shrink too much
%@                minSizes = obj.MinimumSizes(:);
%@                pixSizes = uiextras.calculatePixelSizes( pos0(3), ...
%@                    obj.Sizes, minSizes, obj.Padding, obj.Spacing );
%@
%@                N = numel( minSizes );
%@                % Sometimes the actual width is smaller than the minimum!
%@                minSizes = min( minSizes, pixSizes );
%@                whichDivider = getappdata( obj.SelectedDivider, 'WhichDivider' );
%@                minPos = ceil( obj.Padding ...
%@                    + sum( pixSizes(1:whichDivider-1) ) ...
%@                    + minSizes(whichDivider) ...
%@                    + obj.Spacing*(whichDivider-0.5) );
%@                dividerpos(1) = max( dividerpos(1), minPos );
%@                if whichDivider<(N-1)
%@                    maxPos = pos0(3) - floor( obj.Padding ...
%@                        + sum( pixSizes(whichDivider+2:end) ) ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*(N-whichDivider-0.5) );
%@                else
%@                    % Final divider
%@                    maxPos = pos0(3) - floor( obj.Padding ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*0.5 );
%@                end
%@                dividerpos(1) = min( dividerpos(1), maxPos );
%@                set( obj.SelectedDivider, 'Position', dividerpos );
%@            else
%@                % Divider has been lost, so we are in a bad state. The
%@                % best we can do is kill the callbacks and attempt to put
%@                % the figure back in a decent state.
%@                set( figh, 'Pointer', 'arrow', ...
%@                    'WindowButtonMotionFcn', [], ...
%@                    'WindowButtonUpFcn', [] );
%@            end
%@        end % onButtonMotion
%@        
%@        function onButtonUp( obj, source, eventData, oldFigProps, oldState )
%@            % Deliberately call the motion function to ensure any last
%@            % movement is captured
%@            obj.onButtonMotion( source, eventData );
%@            
%@            % Restore figure properties
%@            figh = ancestor( source, 'figure' );
%@            flds = fieldnames( oldFigProps );
%@            for ii=1:numel(flds)
%@                set( figh, flds{ii}, oldFigProps.(flds{ii}) );
%@            end
%@            
%@            % If the figure has an interaction mode set, re-set it now
%@            if ~isempty( oldState )
%@                switch upper( oldState )
%@                    case 'ZOOM'
%@                        zoom( figh, 'on' );
%@                    case 'PAN'
%@                        pan( figh, 'on' );
%@                    case 'ROTATE3D'
%@                        rotate3d( figh, 'on' );
%@                    otherwise
%@                        error( 'GUILayout:InvalidState', 'Invalid interaction mode ''%s''.', oldState );
%@                end
%@            end
%@            
%@            % Work out which divider was moved and which are the resizable
%@            % elements either side of it
%@            newPos = get( obj.SelectedDivider, 'Position' );
%@            origPos = getappdata( obj.SelectedDivider, 'OriginalPosition' );
%@            whichDivider = getappdata( obj.SelectedDivider, 'WhichDivider' );
%@            obj.SelectedDivider = -1;
%@            delta = newPos(1) - origPos(1) - round(obj.Spacing/2) + 1;
%@            sizes = obj.Sizes;
%@            
%@            % Convert all flexible sizes into pixel units
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalWidth = totalPosition(3);
%@            pixSizes = uiextras.calculatePixelSizes( totalWidth, ...
%@                    obj.Sizes, obj.MinimumSizes, obj.Padding, obj.Spacing );
%@            
%@            leftelement = find( sizes(1:whichDivider)<0, 1, 'last' );
%@            rightelement = find( sizes(whichDivider+1:end)<0, 1, 'first' )+whichDivider;
%@            
%@            % Now work out the new sizes. Note that we must ensure the size
%@            % stays negative otherwise it'll stop being resizable
%@            change = sum(sizes(sizes<0)) * delta / sum( pixSizes(sizes<0) );
%@            sizes(leftelement) = min( -0.000001, sizes(leftelement) + change );
%@            sizes(rightelement) = min( -0.000001, sizes(rightelement) - change );
%@            
%@            % Setting the sizes will cause a redraw
%@            obj.Sizes = sizes;
%@        end % onButtonUp
%@        
%@        function onBackgroundColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            %onBackgroundColorChanged  Callback that fires when the container background color is changed
%@            %
%@            % We need to make the dividers match the background, so redarw
%@            % them
%@            obj.redraw();
%@        end % onChildRemoved
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/HButtonBox.m__ -->
%@classdef HButtonBox < uiextras.ButtonBox
%@    %HButtonBox  Arrange buttons horizontally in a single row
%@    %
%@    %   obj = uiextras.HButtonBox() is a type of HBox specialised for
%@    %   arranging a row of buttons, check-boxes or similar graphical
%@    %   elements. All buttons are given equal size and by default are
%@    %   centered in the drawing area. The justification can be changed as
%@    %   required.
%@    %
%@    %   obj = uiextras.HButtonBox(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.HButtonBox">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> b = uiextras.HButtonBox( 'Parent', f );
%@    %   >> uicontrol( 'Parent', b, 'String', 'One' );
%@    %   >> uicontrol( 'Parent', b, 'String', 'Two' );
%@    %   >> uicontrol( 'Parent', b, 'String', 'Three' );
%@    %   >> set( b, 'ButtonSize', [130 35], 'Spacing', 5 );
%@    %
%@    %   See also: uiextras.VButtonBox
%@    %             uiextras.HBox
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 300 $
%@    %   $Date: 2010-07-22 16:33:47 +0100 (Thu, 22 Jul 2010) $
%@    
%@    methods
%@        
%@        function obj = HButtonBox( varargin )
%@            %HButtonBox  Create a new horizontal button box
%@                        
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.ButtonBox( varargin{:} );
%@
%@            % Set properties
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            % First we need to work out how much space is available - if
%@            % there's not enough for the desired size then the buttons may
%@            % have to shrink
%@            children = obj.getValidChildren();
%@            nChildren = numel( children );
%@            pos = ceil( getpixelposition( obj.UIContainer ) );
%@            availableWidth = pos(3) - 2*obj.Padding - (nChildren-1)*obj.Spacing;
%@            availableHeight = pos(4) - 2*obj.Padding;
%@            
%@            buttonWidth = min( obj.ButtonSize(1), availableWidth/nChildren );
%@            buttonHeight = min( obj.ButtonSize(2), availableHeight );
%@            
%@            % The positioning depends on the alignment
%@            switch upper( obj.VerticalAlignment )
%@                case 'TOP'
%@                    y0 = pos(4) - obj.Padding - buttonHeight;
%@                    
%@                case 'MIDDLE'
%@                    y0 = 1 + round( ( pos(4) - buttonHeight ) / 2 );
%@                    
%@                case 'BOTTOM'
%@                    y0 = 1 + obj.Padding;
%@                    
%@                otherwise
%@                    error( 'GUILayout:InvalidState', ...
%@                        'Invalid vertical alignment ''%s''.', obj.VerticalAlignment )
%@            end
%@            
%@            buttonsWidth = buttonWidth*nChildren + (nChildren-1)*obj.Spacing;
%@            switch upper( obj.HorizontalAlignment )
%@                case 'LEFT'
%@                    x0 = 1+ obj.Padding;
%@                    
%@                case 'CENTER'
%@                    x0 = 1 + round( (pos(3) - buttonsWidth ) / 2 );
%@                    
%@                case 'RIGHT'
%@                    x0 = pos(3) - obj.Padding - buttonsWidth;
%@                    
%@                otherwise
%@                    error( 'GUILayout:InvalidState', ...
%@                        'Invalid horizontal alignment ''%s''.', obj.HorizontalAlignment )
%@                    
%@            end
%@            
%@            % OK, we now know the start coords, so position each child
%@            children = obj.Children;
%@            for ii=1:nChildren
%@                contentPos = [x0 + (ii-1)*(obj.Spacing+buttonWidth), y0, buttonWidth, buttonHeight];
%@                obj.repositionChild( children(ii), contentPos )
%@            end
%@            
%@        end % redraw
%@     
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/MousePointerHandler.m__ -->
%@classdef MousePointerHandler < handle
%@    %MousePointerHandler  A class to handle mouse-over events
%@    %
%@    %   MousePointerHandler(fig) attaches the handler to the figure FIG
%@    %   so that it will intercept all mouse-over events. The handler is
%@    %   stored in the MousePointerHandler app-data of the figure so that
%@    %   functions can listen in for scroll-events.
%@    %
%@    %   Note that when registering you can supply the name of a standard
%@    %   MATLAB pointer image (e.g. 'timer', 'fleur' etc.) or can supply
%@    %   a custom image. See the 'register' method for details.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> u = uicontrol();
%@    %   >> mph = uiextras.MousePointerHandler(f);
%@    %   >> mph.register( u, 'fleur' )
%@    %
%@    %   See also: uiextras.ScrollWheelEvent
%@    
%@    %   Copyright 2008-2010 The MathWorks Ltd.
%@    %   $Revision: 374 $   
%@    %   $Date: 2012-12-20 09:18:15 +0000 (Thu, 20 Dec 2012) $
%@    
%@    properties( SetAccess = private, GetAccess = public )
%@        CurrentObject
%@    end % read-only public properties
%@    
%@    properties( SetAccess = private , GetAccess = private )
%@        CurrentObjectPosition
%@        OldPointer
%@        Parent
%@        List
%@        
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = MousePointerHandler(fig)
%@            
%@            % Check that a mouse-pointer-handler is not already there
%@            if ~isa( fig, 'figure' )
%@                fig = ancestor( fig, 'figure' );
%@            end
%@            if isappdata(fig,'MousePointerHandler')
%@                obj = getappdata(fig,'MousePointerHandler');
%@            else
%@                set(fig,'WindowButtonMotionFcn', @obj.onMouseMoved);
%@                setappdata(fig,'MousePointerHandler',obj);
%@                obj.Parent = fig;
%@            end
%@            
%@        end % MousePointerHandler
%@        
%@        function register( obj, widget, pointer, cdata, hotspot )
%@            %REGISTER  Register a pointer to use when over the supplied widget
%@            %
%@            %   handler.register(widget, pointer) register using a built-in
%@            %   MATLAB pointer.
%@            %
%@            %   handler.register(widget, name, cdata, hotspot) register a
%@            %   custom image and hotspot.
%@            if nargin > 3
%@                pointerShapeCData = cdata;
%@                if nargin > 4
%@                    pointerShapeHotSpot = hotspot;
%@                else
%@                    % Default to [1 1]
%@                    pointerShapeHotSpot = [1 1];
%@                end
%@            else
%@                pointerShapeCData = [];
%@                pointerShapeHotSpot = [];
%@            end
%@            
%@            % We need to be sure to remove the entry if it dies
%@            if isHGUsingMATLABClasses()
%@                % New style
%@                l = event.listener( widget, 'ObjectBeingDestroyed', @obj.onWidgetBeingDestroyedEvent );
%@            else
%@                % Old school
%@                l = handle.listener( widget, 'ObjectBeingDestroyed', @obj.onWidgetBeingDestroyedEvent );
%@            end
%@            entry = struct( ...
%@                'Widget', widget, ...
%@                'Pointer', pointer, ...
%@                'PointerShapeCData', pointerShapeCData, ...
%@                'PointerShapeHotSpot', pointerShapeHotSpot, ...
%@                'Listener', l );
%@            
%@            % Update obj.List
%@            if isempty(obj.List)
%@                % Create obj.List from entry if empty
%@                obj.List = entry;
%@            else
%@                % Make sure we don't put the same widget in the list twice
%@                matches = (widget == [obj.List.Widget]);
%@                if any(matches)
%@                    % Update obj.List if there is a match
%@                    obj.List(matches,1) = entry;
%@                else
%@                    % Otherwise, append
%@                    obj.List(end+1,1) = entry;
%@                end
%@            end
%@        end % register
%@        
%@    end % public methods
%@    
%@    methods( Access = private )
%@        
%@        function onMouseMoved( obj, src, evt ) %#ok<INUSD>
%@            if isempty( obj.List )
%@                return;
%@            end
%@            figh = obj.Parent;
%@            figUnits = get( figh, 'Units' );
%@            currpos = get( figh, 'CurrentPoint' );
%@            if ~strcmpi( figUnits, 'Pixels' )
%@                currpos = hgconvertunits( figh, [currpos,0,0], figUnits, 'pixels', 0 );
%@            end
%@            if ~isempty( obj.CurrentObjectPosition )
%@                cop = obj.CurrentObjectPosition;
%@                if currpos(1) >= cop(1) ...
%@                        && currpos(1) < cop(1)+cop(3) ...
%@                        && currpos(2) >= cop(2) ...
%@                        && currpos(2) < cop(2)+cop(4)
%@                    % Still inside, so do nothing
%@                    return;
%@                else
%@                    % Left the object
%@                    obj.leaveWidget()
%@                end
%@            end
%@            % OK, now scan the objects to see if we're inside
%@            for ii=1:numel(obj.List)
%@                % We need to be careful of widgets that aren't capable of
%@                % returning a PixelPosition
%@                try
%@                    widgetpos = getpixelposition( obj.List(ii).Widget, true );
%@                    if currpos(1) >= widgetpos(1) ...
%@                            && currpos(1) < widgetpos(1)+widgetpos(3) ...
%@                            && currpos(2) >= widgetpos(2) ...
%@                            && currpos(2) < widgetpos(2)+widgetpos(4)
%@                        % Inside
%@                        obj.enterWidget( obj.List(ii).Widget, widgetpos, obj.List(ii).Pointer, ...
%@                            obj.List(ii).PointerShapeCData, obj.List(ii).PointerShapeHotSpot)
%@                        break; % we don't need to carry on looking
%@                    end
%@                catch err %#ok<NASGU>
%@                    warning( 'MousePointerHandler:BadWidget', 'GETPIXELPOSITION failed for widget %d', ii )
%@                end
%@            end
%@            
%@        end % onMouseMoved
%@        
%@        function onWidgetBeingDestroyedEvent( obj, src,evt ) %#ok<INUSD>
%@            idx = cellfun( @isequal, {obj.List.Widget}, repmat( {double(src)}, 1,numel(obj.List) ) );
%@            obj.List(idx) = [];
%@            % Also take care if it's the active object
%@            if isequal( src, obj.CurrentObject )
%@                obj.leaveWidget()
%@            end
%@        end % onWidgetBeingDestroyedEvent
%@        
%@        function enterWidget( obj, widget, pixpos, pointer, pointerShapeCData, pointerShapeHotSpot )
%@            % Mouse has moved onto a widget
%@            obj.CurrentObjectPosition = pixpos;
%@            obj.CurrentObject = widget;
%@            obj.OldPointer = get( obj.Parent, 'Pointer' );
%@            set( obj.Parent, 'Pointer', pointer );
%@            % For custom pointers, supply the CData and HotSpot information
%@            if strcmpi(pointer,'custom')
%@                set( obj.Parent, 'PointerShapeCData', pointerShapeCData, ...
%@                    'PointerShapeHotSpot', pointerShapeHotSpot);
%@            end
%@        end % enterWidget
%@        
%@        function leaveWidget( obj )
%@            % Mouse has moved off a widget
%@            obj.CurrentObjectPosition = [];
%@            obj.CurrentObject = [];
%@            set( obj.Parent, 'Pointer', obj.OldPointer );
%@        end % leaveWidget
%@        
%@    end % private methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/Panel.m__ -->
%@classdef Panel < uiextras.CardPanel & uiextras.DecoratedPanel
%@    %Panel  Show one element inside a panel
%@    %
%@    %   obj = uiextras.Panel() creates a standard UIPANEL object but with
%@    %   automatic management of the contained widget or layout. The
%@    %   properties available are largely the same as the builtin UIPANEL
%@    %   object. Where more than one child is added, the currently visible
%@    %   child is determined using the SelectedChild property.
%@    %
%@    %   obj = uiextras.Panel(param,value,...) also sets one or more
%@    %   property values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.Panel">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> p = uiextras.Panel( 'Parent', f, 'Title', 'A Panel', 'Padding', 5 );
%@    %   >> uicontrol( 'Parent', p, 'Background', 'r' )
%@    %
%@    %   >> f = figure();
%@    %   >> p = uiextras.Panel( 'Parent', f, 'Title', 'A Panel', 'Padding', 5 );
%@    %   >> b = uiextras.HBox( 'Parent', p, 'Spacing', 5 );
%@    %   >> uicontrol( 'Style', 'listbox', 'Parent', b, 'String', {'Item 1','Item 2'} );
%@    %   >> uicontrol( 'Parent', b, 'Background', 'b' );
%@    %   >> set( b, 'Sizes', [100 -1] );
%@    %
%@    %   See also: uipanel
%@    %             uiextras.BoxPanel
%@    %             uiextras.HBox
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 373 $
%@    %   $Date: 2011-07-14 13:24:10 +0100 (Thu, 14 Jul 2011) $
%@    
%@    properties( Dependent = true )
%@        BorderType      % Type of border around the uipanel area  [none|etchedin|etchedout|beveledin|beveledout|line]
%@        BorderWidth     % Width of the panel border
%@        Title           % Title string
%@        TitlePosition   % Location of title string in relation to the panel [lefttop|centertop|righttop|leftbottom|centerbottom|rightbottom]
%@    end % dependent properties
%@    
%@    methods
%@        
%@        function obj = Panel( varargin )
%@            %PANEL constructor
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj = obj@uiextras.CardPanel( varargin{:} );
%@            obj = obj@uiextras.DecoratedPanel( varargin{:} );
%@            
%@            set( obj.UIContainer, 'Title', '' );
%@            
%@            % Override base settings
%@            obj.BorderType = 'etchedin';
%@            obj.BorderWidth = 1;
%@            obj.TitlePosition = 'lefttop';
%@            
%@            % See if the user has set any defaults
%@            obj.setPropertyFromDefault( 'BorderType' );
%@            obj.setPropertyFromDefault( 'BorderWidth' );
%@            obj.setPropertyFromDefault( 'TitlePosition' );
%@            
%@            % Set user-supplied property values
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % Panel
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function value = get.BorderType( obj )
%@            value = get( obj.UIContainer, 'BorderType' );
%@        end % get.BorderType
%@        
%@        function set.BorderType( obj, value )
%@            set( obj.UIContainer, 'BorderType', value );
%@        end % set.BorderType
%@        
%@        function value = get.BorderWidth( obj )
%@            value = get( obj.UIContainer, 'BorderWidth' );
%@        end % get.BorderWidth
%@        
%@        function set.BorderWidth( obj, value )
%@            set( obj.UIContainer, 'BorderWidth', value );
%@            obj.redraw();
%@        end % set.BorderWidth
%@        
%@        function value = get.Title( obj )
%@            value = get( obj.UIContainer, 'Title' );
%@        end % get.Title
%@        
%@        function set.Title( obj, value )
%@            % Only need to redraw if changing to/from empty
%@            oldValue = get( obj.UIContainer, 'Title' );
%@            % Unfortunately setting the title creates a uicontrol that
%@            % isn't tagged, so we have to set a flag so that we know to
%@            % ignore it for resize purposes
%@            setappdata( obj.UIContainer, 'PanelTitleCreate', true );
%@            set( obj.UIContainer, 'Title', value );
%@            rmappdata( obj.UIContainer, 'PanelTitleCreate' );
%@            if isempty( value ) && ~isempty( oldValue )
%@                obj.redraw();
%@            elseif isempty( oldValue ) && ~isempty( value )
%@                obj.redraw();
%@            end
%@        end % set.Title
%@        
%@        function value = get.TitlePosition( obj )
%@            value = get( obj.UIContainer, 'TitlePosition' );
%@        end % get.TitlePosition
%@        
%@        function set.TitlePosition( obj, value )
%@            set( obj.UIContainer, 'TitlePosition', value );
%@            obj.redraw();
%@        end % set.TitlePosition
%@        
%@    end % accessor methods
%@    
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            %redraw  Redraw the layout, positioning the children
%@            
%@            if isempty( obj.UIContainer ) || ~ishandle( obj.UIContainer )
%@                return
%@            end
%@            
%@            % The selected one inherits the visibility of the layout and
%@            % fills the available space
%@            oldUnits = obj.Units;
%@            obj.Units = 'Pixels';
%@            pos = getpixelposition( obj );
%@            border = obj.BorderWidth+1+obj.Padding;
%@            x0 = border;
%@            y0 = border;
%@            w = pos(3) - 2*border;
%@            h = pos(4) - 2*border;
%@            if ~isempty( obj.Title )
%@                % Work out how much extra space to leave for the title
%@                oldFontUnits = get( obj.UIContainer, 'FontUnits' );
%@                set( obj.UIContainer, 'FontUnits', 'Pixels' );
%@                % Get the height of the title (in pixels)
%@                titleSize = get( obj.UIContainer, 'FontSize' );
%@                % Put the old units back
%@                set( obj.UIContainer, 'FontUnits', oldFontUnits );
%@                
%@                % Whether to move top or bottom depends on title
%@                % position
%@                if isempty( strfind( get( obj.UIContainer, 'TitlePosition' ), 'top' ) )
%@                    % Title at the bottom
%@                    h = h - titleSize;
%@                    y0 = y0 + titleSize;
%@                else
%@                    % Title at the top
%@                    h = h - titleSize;
%@                end
%@                
%@            end
%@            % Use the CardLayout function to put the right child onscreen
%@            obj.showSelectedChild( [x0 y0 w h] );
%@            obj.Units = oldUnits;
%@        end % redraw
%@        
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded: Callback that fires when a child is added to a container.
%@            % Select the new addition
%@            obj.SelectedChild = numel( obj.Children );
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSL>
%@            %onChildAdded: Callback that fires when a container child is destroyed or reparented.
%@            % If the missing child is the selected one, select something else
%@            if eventData.ChildIndex == obj.SelectedChild
%@                if isempty( obj.Children )
%@                    obj.SelectedChild = [];
%@                else
%@                    obj.SelectedChild = max( 1, obj.SelectedChild - 1 );
%@                end
%@            end
%@        end % onChildRemoved
%@        
%@        function onEnable( obj, source, eventData ) %#ok<INUSD>
%@            %onEnable  Callback that fires when the enable state is changed
%@            t = findall( obj.UIContainer, ...
%@                'Type', 'uicontrol', ...
%@                'HandleVisibility', 'off', ...
%@                'Parent', obj.UIContainer );
%@            set( t, 'Enable', obj.Enable );
%@        end % onChildRemoved
%@        
%@        function onBackgroundColorChanged( obj, source, eventData ) %#ok<INUSL>
%@            %onBackgroundColorChanged  Callback that fires when the container background color is changed
%@            %
%@            % We need to make the panel match the container background
%@            set( obj.UIContainer, 'BackgroundColor', eventData );
%@        end % onChildRemoved
%@        
%@        function onPanelColorChanged( obj, source, eventData ) %#ok<INUSL>
%@            % Colors have changed. This shouldn't require a redraw.
%@            set( obj.UIContainer, eventData.Property, eventData.Value );
%@        end % onPanelColorChanged
%@        
%@        function onPanelFontChanged( obj, source, eventData ) %#ok<INUSL>
%@            % Font has changed. Since the font size and shape affects the
%@            % space available for the contents, we need to redraw.
%@            set( obj.UIContainer, eventData.Property, eventData.Value );
%@            obj.redraw();
%@        end % onPanelFontChanged
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/TabPanel.m__ -->
%@classdef TabPanel < uiextras.CardPanel & uiextras.DecoratedPanel
%@    %TabPanel  Show one element inside a tabbed panel
%@    %
%@    %   obj = uiextras.TabPanel() creates a panel with tabs along one edge
%@    %   to allow selection between the different child objects contained.
%@    %
%@    %   obj = uiextras.TabPanel(param,value,...) also sets one or more
%@    %   property values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.TabPanel">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> p = uiextras.TabPanel( 'Parent', f, 'Padding', 5 );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'r' );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'b' );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', p, 'Background', 'g' );
%@    %   >> p.TabNames = {'Red', 'Blue', 'Green'};
%@    %   >> p.SelectedChild = 2;
%@    %
%@    %   See also: uiextras.Panel
%@    %             uiextras.BoxPanel
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 893 $
%@    %   $Date: 2013-12-18 10:23:50 +0000 (Wed, 18 Dec 2013) $
%@    
%@    properties
%@        TabSize = 50
%@        TabPosition = 'top' % which side of the contents to put the tabs [top|bottom]
%@    end % public properties
%@    
%@    properties( Dependent = true )
%@        TabNames          % The title string for each tab
%@        TabEnable = {}    % The enable state of individual tabs
%@    end % dependent properties
%@    
%@    properties( SetAccess = private, GetAccess = private, Hidden = true )
%@        Images_ = struct()
%@        TabImage_ = []
%@        PageLabels = []
%@        PageEnable_ = {}
%@    end % private properties
%@    
%@    
%@    methods
%@        
%@        function obj = TabPanel(varargin)
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj = obj@uiextras.CardPanel( varargin{:} );
%@            obj = obj@uiextras.DecoratedPanel( varargin{:} );
%@            
%@            % Get some defaults
%@            bgcol = obj.BackgroundColor;
%@            obj.HighlightColor = ( 2*[1 1 1] + bgcol )/3;
%@            obj.ShadowColor    = 0.5*bgcol;
%@
%@            % Add a UIControl for drawing the tabs
%@            obj.TabImage_ = uicontrol( ...
%@                'Visible', 'on', ...
%@                'units', 'pixels', ...
%@                'Parent', obj.UIContainer, ...
%@                'HandleVisibility', 'off', ...
%@                'Position', [1 1 1 1], ...
%@                'style', 'checkbox', ...
%@                'Tag', 'uiextras.TabPanel:TabImage');
%@            
%@            % Make sure the images are loaded
%@            obj.reloadImages();
%@            
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'HighlightColor' );
%@            obj.setPropertyFromDefault( 'ShadowColor' );            
%@            obj.setPropertyFromDefault( 'TabPosition' );
%@            obj.setPropertyFromDefault( 'TabSize' );
%@
%@            % Parse any input arguments
%@            if nargin>0
%@                set( obj, varargin{:} );
%@            end
%@            obj.redraw();
%@        end % TabPanel
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.TabSize(obj,value)
%@            obj.TabSize = value;
%@            obj.redraw();
%@        end % set.TabSize
%@        
%@        function set.TabPosition(obj,value)
%@            if ~ischar( value ) || ~ismember( lower( value ), {'top','bottom'} )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''TabPosition'' must be ''top'' or ''bottom''.' );
%@            end
%@            obj.TabPosition = [upper( value(1) ),lower( value(2:end) )];
%@            obj.redraw();
%@        end % set.TabPosition
%@        
%@        function value = get.TabNames( obj )
%@            if isempty( obj.PageLabels )
%@                value = {};
%@            elseif numel( obj.PageLabels ) == 1
%@                value = {get( obj.PageLabels, 'String' )};
%@            else
%@                value = get( obj.PageLabels, 'String' )';
%@            end
%@        end % get.TabNames
%@        
%@        function set.TabNames(obj,value)
%@            if ~iscell( value ) || numel( value )~=numel( obj.Children )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''TabNames'' must be a cell array of strings the same size as property ''Children''.' )
%@            end
%@            for ii=1:numel( obj.Children )
%@                set( obj.PageLabels(ii), 'String', value{ii} );
%@            end
%@        end % set.TabNames
%@
%@        function value = get.TabEnable(obj)
%@            value = obj.PageEnable_;
%@        end % get.TabEnable
%@
%@        function set.TabEnable(obj,value)
%@            if ~iscell( value ) || numel( value )~=numel( obj.Children ) ...
%@                    || any( ~ismember( lower(value), {'on','off'} ) )
%@                error( 'GUILayout:InvalidPropertyValue', ...
%@                    'Property ''TabEnable'' must be a cell array of ''on''/''off'' the same size as property ''Children''.' )
%@            end
%@            obj.PageEnable_ = lower( value );
%@            if strcmpi( obj.Enable, 'on' )
%@                obj.onEnable();
%@            end
%@        end % set.TabEnable
%@        
%@    end % accessor methods
%@    
%@    methods ( Access = protected )
%@        
%@        function redraw(obj)
%@            %redraw  Redraw the tabs and contents
%@            
%@            % Check the object exists (may be being deleted!)
%@            if isempty(obj.TabImage_) || ~ishandle(obj.TabImage_)
%@                return;
%@            end
%@            
%@            C = obj.Children;
%@            T = obj.TabNames;
%@            
%@            % Make sure label array is right size
%@            nC = numel(C);
%@            nT = numel(T);
%@            
%@            if nC==0 || nT~=nC
%@                % With no tabs, blank the image. Note that we must leave
%@                % non-emoty cdata otherwise the checkbox re-appears!
%@                set( obj.TabImage_, 'CData', reshape(obj.BackgroundColor, [1 1 3]) );
%@                return
%@            end
%@            
%@            pos = getpixelposition( obj.UIContainer );
%@            pad = obj.Padding;
%@            
%@            % Calculate the required height from the font size
%@            oldFontUnits = get( obj.PageLabels(1), 'FontUnits' );
%@            set( obj.PageLabels(1), 'FontUnits', 'Pixels' );
%@            fontHeightPix = get( obj.PageLabels(1), 'FontSize' );
%@            set( obj.PageLabels(1), 'FontUnits', oldFontUnits );
%@            tabHeight = ceil( 1.5*fontHeightPix + 4 );
%@            
%@            % Work out where the tabs labels and contents go
%@            if strcmpi( obj.TabPosition, 'Top' )
%@                tabPos = [1 1+pos(4)-tabHeight, pos(3), tabHeight+2];
%@                contentPos = [pad+1 pad+1 pos(3)-2*pad pos(4)-2*pad-tabHeight];
%@            else
%@                tabPos = [1 1, pos(3), tabHeight+2];
%@                contentPos = [pad+1 tabHeight+pad+1 pos(3)-2*pad pos(4)-2*pad-tabHeight];
%@            end
%@            
%@            % Shorthand for colouring things in
%@            fgCol = obj.BackgroundColor;
%@            bgCol = obj.BackgroundColor;
%@            shCol = 0.9*obj.BackgroundColor;
%@            
%@            totalWidth = round( tabPos(3)-1 );
%@            divWidth = 8;
%@            textWidth = obj.TabSize;
%@            if textWidth<0
%@                % This means we should fill the space
%@                textWidth = floor( (totalWidth - (nC+1)*divWidth) / nC );
%@            end
%@            textPos = [tabPos(1:2), textWidth, tabHeight - 4];
%@            
%@            if ~isempty( obj.SelectedChild )
%@                % The tabs are drawn as a single image
%@                tabCData(:,:,1) = bgCol(1)*ones(20,totalWidth);
%@                tabCData(:,:,2) = bgCol(2)*ones(20,totalWidth);
%@                tabCData(:,:,3) = bgCol(3)*ones(20,totalWidth);
%@                set( obj.TabImage_, 'Position', [tabPos(1:2),totalWidth,tabHeight] );
%@                
%@                % Use the CardLayout function to put the right child onscreen
%@                obj.showSelectedChild( contentPos )
%@                
%@                % Now update the tab image
%@                tabCData(:,1:divWidth,:) = obj.Images_.NonNot;
%@                for ii=1:nC
%@                    x = divWidth+(divWidth+textWidth)*(ii-1)+1;
%@                    set( obj.PageLabels(ii), ...
%@                        'Position', textPos+[x,0,0,0] );
%@                    % BJT: Fix bug where text renders off edge of container
%@                    if (textPos(1)+x >= totalWidth )
%@                        set( obj.PageLabels(ii), 'Visible', 'off' );
%@                    else
%@                        set( obj.PageLabels(ii), 'Visible', 'on' );
%@                        rhs = textPos(1)+x+textPos(3);
%@                        if ( rhs > totalWidth )
%@                            % Text is partially off the edge
%@                            set( obj.PageLabels(ii), 'Position', textPos+[x,0,totalWidth-rhs,0] );
%@                        end
%@                    end
%@                    
%@                    if ii==obj.SelectedChild,
%@                        set( obj.PageLabels(ii), ...
%@                            'ForegroundColor', obj.ForegroundColor, ...
%@                            'BackgroundColor', fgCol);
%@                        % Set the dividers to show the right image
%@                        tabCData(:,x:x+textWidth-1,:) = repmat(obj.Images_.SelBack,1,textWidth);
%@                        if ii==1
%@                            tabCData(:,x-divWidth:x-1,:) = obj.Images_.NonSel;
%@                        else
%@                            tabCData(:,x-divWidth:x-1,:) = obj.Images_.NotSel;
%@                        end
%@                        if ii==nC
%@                            tabCData(:,x+textWidth:x+textWidth+divWidth-1,:) = obj.Images_.SelNon;
%@                        else
%@                            tabCData(:,x+textWidth:x+textWidth+divWidth-1,:) = obj.Images_.SelNot;
%@                        end
%@                    else
%@                        set( obj.PageLabels(ii), ...
%@                            'ForegroundColor', 0.6*obj.ForegroundColor + 0.4*shCol, ...
%@                            'BackgroundColor', shCol );
%@                        tabCData(:,x:x+textWidth-1,:) = repmat(obj.Images_.NotBack,1,textWidth);
%@                        if ii==nC
%@                            tabCData(:,x+textWidth:x+textWidth+divWidth-1,:) = obj.Images_.NotNon;
%@                        else
%@                            tabCData(:,x+textWidth:x+textWidth+divWidth-1,:) = obj.Images_.NotNot;
%@                        end
%@                    end
%@                end % For
%@                
%@                % Stretch the CData to match the fontsize
%@                if tabHeight ~= 20
%@                    topbot = min( round( tabHeight/2 ), 5 );
%@                    midsz = tabHeight - 2*topbot;
%@                    topData = tabCData(1:topbot,:,:);
%@                    bottomData = tabCData(end-topbot+1:end,:,:);
%@                    midData = repmat( tabCData(10,:,:), [midsz,1,1] );
%@                    tabCData = [ topData ; midData ; bottomData ];
%@                end
%@                
%@                if strcmpi( obj.TabPosition, 'Top' )
%@                    set( obj.TabImage_, 'CData', tabCData );
%@                else
%@                    set( obj.TabImage_, 'CData', flipdim( tabCData, 1 ) ); %#ok<DFLIPDIM>
%@                end
%@            end
%@        end % redraw
%@        
%@        function onChildAdded( obj, source, eventData ) %#ok<INUSD>
%@            %onChildAdded: Callback that fires when a child is added to a container.
%@            % Select the new addition
%@            C = obj.Children;
%@            N = numel( C );
%@            visible = obj.Visible;
%@            title = sprintf( 'Page %d', N );
%@            
%@            obj.PageLabels(end+1,1) = uicontrol( ...
%@                'Visible', visible, ...
%@                'style', 'text', ...
%@                'enable', 'inactive', ...
%@                'string', title, ...
%@                'FontName', obj.FontName, ...
%@                'FontUnits', obj.FontUnits, ...
%@                'FontSize', obj.FontSize, ...
%@                'FontAngle', obj.FontAngle, ...
%@                'FontWeight', obj.FontWeight, ...
%@                'ForegroundColor', obj.ForegroundColor, ...
%@                'parent', obj.UIContainer, ...
%@                'HandleVisibility', 'off');
%@            iResetTabCallbacks( obj )
%@            obj.PageEnable_{1,end+1} = 'on';
%@            if strcmpi( obj.Enable, 'off' )
%@                set( obj.PageLabels(end), 'Enable', 'off' );
%@            end
%@            obj.SelectedChild = N;
%@        end % onChildAdded
%@        
%@        function onChildRemoved( obj, source, eventData ) %#ok<INUSL>
%@            %onChildAdded: Callback that fires when a container child is destroyed or reparented.
%@            % If the missing child is the selected one, select something else
%@            
%@            % Deal with empty explicitly since we need to clear everything
%@            if isempty(obj.Children)
%@                obj.TabNames = {};
%@                obj.PageEnable_ = {};
%@                delete(obj.PageLabels);
%@                obj.PageLabels = [];
%@                obj.SelectedChild = [];
%@                obj.redraw()
%@                return;
%@            end
%@            
%@            % Clear one entry, maybe selecting a different one
%@            obj.TabNames( eventData.ChildIndex ) = [];
%@            obj.PageEnable_( eventData.ChildIndex ) = [];
%@            delete( obj.PageLabels(eventData.ChildIndex) );
%@            obj.PageLabels(eventData.ChildIndex) = [];
%@            iResetTabCallbacks( obj );
%@            if obj.SelectedChild >= eventData.ChildIndex
%@                % We need to change the selection. This will force a redraw
%@                obj.SelectedChild = max( 1, obj.SelectedChild - 1 );
%@            else
%@                % We don't need to change the selection, so need to
%@                % explicitly redraw
%@                obj.redraw();
%@            end
%@        end % onChildRemoved
%@        
%@        function onBackgroundColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            %onBackgroundColorChanged  Callback that fires when the container background color is changed
%@            %
%@            % We need to make the panel match the container background
%@            obj.reloadImages();
%@            obj.redraw();
%@        end % onBackgroundColorChanged
%@        
%@        function onPanelColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            % Colors have changed. This requires the images to be reset and
%@            % redrawn.
%@            obj.reloadImages();
%@            obj.redraw();
%@        end % onPanelColorChanged
%@        
%@        function onPanelFontChanged( obj, source, eventData ) %#ok<INUSL>
%@            % Font has changed. Since the font size and shape affects the
%@            % space available for the contents, we need to redraw.
%@            for ii=1:numel( obj.PageLabels )
%@                set( obj.PageLabels(ii), eventData.Property, eventData.Value );
%@            end
%@            obj.redraw();
%@        end % onPanelFontChanged
%@        
%@        function onEnable( obj, source, eventData ) %#ok<INUSD>
%@            % We use "inactive" to be the "on" state
%@            if strcmpi( obj.Enable, 'on' )
%@                % Take notice of the individual enable states. Where the
%@                % page is to be enabled we set the title uicontrol to be
%@                % inactive rather than on to avoid mouse-over problems.
%@                hittest = obj.PageEnable_;
%@                enable = strrep( obj.PageEnable_, 'on', 'inactive' );
%@                for jj=1:numel( obj.PageLabels )
%@                    set( obj.PageLabels(jj), ...
%@                        'Enable', enable{jj}, ...
%@                        'HitTest', hittest{jj} ); 
%@                    % Since the panel as a whole is on, we may need to
%@                    % switch off some children
%@                    obj.helpSetChildEnable( obj.Children(jj), hittest{jj} );
%@                end
%@            else
%@                for jj=1:numel( obj.PageLabels )
%@                    set( obj.PageLabels(jj), 'Enable', 'off', 'HitTest', 'off' );
%@                end
%@            end
%@        end % onEnable
%@        
%@        function reloadImages( obj )
%@            % Reload tab images
%@            
%@            % If any of the colours are not yet constructed, stop now
%@            if isempty( obj.TabImage_ ) ...
%@                    || isempty( obj.HighlightColor ) ...
%@                    || isempty( obj.ShadowColor )
%@                return;
%@            end
%@            
%@            % First part of the name says which type of right-hand edge is needed
%@            % (non = no edge, not = not selected, sel = selected), second gives
%@            % left-hand
%@            obj.Images_.NonSel = iLoadIcon( 'tab_NoEdge_Selected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.SelNon = iLoadIcon( 'tab_Selected_NoEdge.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.NonNot = iLoadIcon( 'tab_NoEdge_NotSelected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.NotNon = iLoadIcon( 'tab_NotSelected_NoEdge.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.NotSel = iLoadIcon( 'tab_NotSelected_Selected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.SelNot = iLoadIcon( 'tab_Selected_NotSelected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.NotNot = iLoadIcon( 'tab_NotSelected_NotSelected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.SelBack = iLoadIcon( 'tab_Background_Selected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            obj.Images_.NotBack = iLoadIcon( 'tab_Background_NotSelected.png', ...
%@                obj.BackgroundColor, obj.HighlightColor, obj.ShadowColor );
%@            
%@        end % reloadImages
%@        
%@    end % protected methods
%@    
%@end % classdef
%@
%@%-------------------------------------------------------------------------%
%@
%@function im = iLoadIcon(imagefilename, backgroundcolor, highlightcolor, shadowcolor )
%@% Special image loader that turns various primary colours into background
%@% colours.
%@
%@error( nargchk( 4, 4, nargin, 'struct' ) ); %#ok<NCHKN>
%@
%@% Load an icon and set the transparent color
%@this_dir = fileparts( mfilename( 'fullpath' ) );
%@icon_dir = fullfile( this_dir, 'Resources' );
%@im8 = imread( fullfile( icon_dir, imagefilename ) );
%@im = double(im8)/255;
%@rows = size(im,1);
%@cols = size(im,2);
%@
%@% Anything that's pure green goes to transparent
%@f=find((im8(:,:,1)==0) & (im8(:,:,2)==255) & (im8(:,:,3)==0));
%@im(f) = nan;
%@im(f + rows*cols) = nan;
%@im(f + 2*rows*cols) = nan;
%@
%@% Anything pure red goes to selected background
%@f=find((im8(:,:,1)==255) & (im8(:,:,2)==0) & (im8(:,:,3)==0));
%@im(f) = backgroundcolor(1);
%@im(f + rows*cols) = backgroundcolor(2);
%@im(f + 2*rows*cols) = backgroundcolor(3);
%@
%@% Anything pure blue goes to background background
%@f=find((im8(:,:,1)==0) & (im8(:,:,2)==0) & (im8(:,:,3)==255));
%@im(f) = backgroundcolor(1);
%@im(f + rows*cols) = backgroundcolor(2);
%@im(f + 2*rows*cols) = backgroundcolor(3);
%@
%@% Anything pure yellow goes to deselected background
%@f=find((im8(:,:,1)==255) & (im8(:,:,2)==255) & (im8(:,:,3)==0));
%@im(f) = 0.9*backgroundcolor(1);
%@im(f + rows*cols) = 0.9*backgroundcolor(2);
%@im(f + 2*rows*cols) = 0.9*backgroundcolor(3);
%@
%@% Anything pure white goes to highlight
%@f=find((im8(:,:,1)==255) & (im8(:,:,2)==255) & (im8(:,:,3)==255));
%@im(f) = highlightcolor(1);
%@im(f + rows*cols) = highlightcolor(2);
%@im(f + 2*rows*cols) = highlightcolor(3);
%@
%@% Anything pure black goes to shadow
%@f=find((im8(:,:,1)==0) & (im8(:,:,2)==0) & (im8(:,:,3)==0));
%@im(f) = shadowcolor(1);
%@im(f + rows*cols) = shadowcolor(2);
%@im(f + 2*rows*cols) = shadowcolor(3);
%@
%@end % iLoadIcon
%@
%@%-------------------------------------------------------------------------%
%@
%@function iTabClicked( src, evt, obj, idx ) %#ok<INUSL>
%@
%@% Call the user callback before selecting the tab
%@evt = struct( ...
%@    'Source', obj, ...
%@    'PreviousChild', obj.SelectedChild, ...
%@    'SelectedChild', idx );
%@uiextras.callCallback( obj.Callback, obj, evt );
%@obj.SelectedChild = idx;
%@
%@end % iTabClicked
%@
%@%-------------------------------------------------------------------------%
%@
%@function iResetTabCallbacks( obj )
%@% Helper to setup the callback functions on each tab label
%@for N=1:numel(obj.PageLabels)
%@   set(obj.PageLabels(N), 'ButtonDownFcn', {@iTabClicked, obj, N});
%@end
%@end % iResetTabCallbacks
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/VBox.m__ -->
%@classdef VBox < uiextras.Box
%@    %VBox  Arrange elements vertically in a single column
%@    %
%@    %   obj = uiextras.VBox() creates a new vertical box layout with
%@    %   all parameters set to defaults. The output is a new layout object
%@    %   that can be used as the parent for other user-interface components.
%@    %
%@    %   obj = uiextras.VBox(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.VBox">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> b = uiextras.VBox( 'Parent', f );
%@    %   >> uicontrol( 'Parent', b, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'b' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'g' )
%@    %   >> set( b, 'Sizes', [-1 100 -2], 'Spacing', 5 );
%@    %
%@    %   >> f = figure();
%@    %   >> b1 = uiextras.VBox( 'Parent', f );
%@    %   >> b2 = uiextras.HBox( 'Parent', b1, 'Padding', 5, 'Spacing', 5 );
%@    %   >> uicontrol( 'Style', 'frame', 'Parent', b1, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', b2, 'String', 'Button1' )
%@    %   >> uicontrol( 'Parent', b2, 'String', 'Button2' )
%@    %   >> set( b1, 'Sizes', [30 -1] );
%@    %
%@    %   See also: uiextras.HBox
%@    %             uiextras.VBoxFlex
%@    %             uiextras.Grid
%@    
%@    %  Copyright 2009 The MathWorks, Inc.
%@    %  $Revision: 366 $ $Date: 2011-02-10 15:48:11 +0000 (Thu, 10 Feb 2011) $
%@    
%@    %% Public methods
%@    methods
%@        
%@        function obj = VBox( varargin )
%@            %VBOX  Container with contents in a single vertical row.
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.Box( varargin{:} );
%@ 
%@            % Set properties
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    %% Protected methods
%@    methods( Access = protected )
%@        
%@        function [widths,heights] = redraw( obj )
%@            %REDRAW  Redraw container contents.
%@            
%@            % Get container width and height
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalWidth = totalPosition(3);
%@            totalHeight = totalPosition(4);
%@            
%@            % Get children
%@            children = obj.getValidChildren();
%@            nChildren = numel( children );
%@            
%@            % Get padding, spacing and sizes
%@            padding = obj.Padding;
%@            spacing = obj.Spacing;
%@            
%@            % Compute widths
%@            widths = repmat( totalWidth - padding * 2, size( children ) );
%@            widths = max( widths, 1 ); % minimum is 1 pixel
%@            
%@            % Compute heights
%@            heights = uiextras.calculatePixelSizes( totalHeight, ...
%@                obj.Sizes, obj.MinimumSizes, padding, spacing );
%@            
%@            % Compute and set new positions in pixels
%@            for ii = 1:nChildren
%@                child = children(ii);
%@                newPosition = [padding + 1, ...
%@                    totalHeight - sum( heights(1:ii) ) - padding - spacing*(ii-1) + 1, ...
%@                    widths(ii), ...
%@                    heights(ii)];
%@                obj.repositionChild( child, newPosition );
%@            end
%@            
%@        end % redraw
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/VBoxFlex.m__ -->
%@classdef VBoxFlex < uiextras.VBox
%@    %VBoxFlex  A dynamically resizable vertical layout
%@    %
%@    %   obj = uiextras.VBoxFlex() creates a new dynamically resizable
%@    %   vertical box layout with all parameters set to defaults. The output
%@    %   is a new layout object that can be used as the parent for other
%@    %   user-interface components.
%@    %
%@    %   obj = uiextras.VBoxFlex(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.VBoxFlex">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure( 'Name', 'uiextras.VBoxFlex example' );
%@    %   >> b = uiextras.VBoxFlex( 'Parent', f );
%@    %   >> uicontrol( 'Parent', b, 'Background', 'r' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'b' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'g' )
%@    %   >> uicontrol( 'Parent', b, 'Background', 'y' )
%@    %   >> set( b, 'Sizes', [-1 100 -2 -1], 'Spacing', 5 );
%@    %
%@    %   See also: uiextras.HBoxFlex
%@    %             uiextras.VBox
%@    %             uiextras.Grid
%@    
%@    %   Copyright 2009 The MathWorks, Inc.
%@    %   $Revision: 366 $ 
%@    %   $Date: 2011-02-10 15:48:11 +0000 (Thu, 10 Feb 2011) $
%@    
%@    properties
%@        ShowMarkings = 'on'  % Show markings on the draggable dividers [on|off]
%@    end % public methods
%@    
%@    properties( SetAccess = private, GetAccess = private )
%@        Dividers = []
%@        SelectedDivider = -1
%@    end % private properties
%@    
%@    methods
%@        
%@        function obj = VBoxFlex( varargin )
%@            %VBoxFlex  Create a VBoxFlex layout
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.VBox( varargin{:} );
%@
%@            % Set some defaults
%@            obj.setPropertyFromDefault( 'ShowMarkings' );
%@            
%@            % Set user-supplied property values
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods
%@        
%@        function set.ShowMarkings( obj, value )
%@            % Check
%@            if ~ischar( value ) || ~ismember( lower( value ), {'on','off'} )
%@                error( 'GUILayout:VBoxFlex:InvalidArgument', ...
%@                    'Property ''ShowMarkings'' may only be set to ''on'' or ''off''.' )
%@            end
%@            % Apply
%@            obj.ShowMarkings = lower( value );
%@            obj.redraw();
%@        end % set.ShowMarkings
%@        
%@    end % accessor methods
%@        
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            %redraw  Redraw container contents.
%@            
%@            % First simply call the grid redraw
%@            [widths,heights] = redraw@uiextras.VBox(obj);
%@            sizes = obj.Sizes;
%@            nChildren = numel( obj.getValidChildren() );
%@            padding = obj.Padding;
%@            spacing = obj.Spacing;
%@            
%@            % Get container width and height
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalHeight = totalPosition(4);
%@            
%@            % Now also add some dividers
%@            mph = uiextras.MousePointerHandler( obj.Parent );
%@            numDynamic = 0;
%@            for ii = 1:nChildren-1
%@                if any(sizes(1:ii)<0) && any(sizes(ii+1:end)<0)
%@                    numDynamic = numDynamic + 1;
%@                    % Both dynamic, so add a divider
%@                    position = [padding + 1, ...
%@                        totalHeight - sum( heights(1:ii) ) - padding - spacing*ii + 1, ...
%@                        widths(ii), ...
%@                        max(1,spacing)];
%@                    % Create the divider widget
%@                    if numDynamic > numel( obj.Dividers )
%@                        obj.Dividers(numDynamic) = uiextras.makeFlexDivider( ...
%@                            obj.UIContainer, ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Horizontal', ...
%@                            obj.ShowMarkings );
%@                        set( obj.Dividers(numDynamic), 'ButtonDownFcn', @obj.onButtonDown, ...
%@                            'Tag', 'UIExtras:VBoxFlex:Divider' );
%@                        % Add it to the mouse-over handler
%@                        mph.register( obj.Dividers(numDynamic), 'top' );
%@                    else
%@                        % Just update an existing divider
%@                        uiextras.makeFlexDivider( ...
%@                            obj.Dividers(numDynamic), ...
%@                            position, ...
%@                            get( obj.UIContainer, 'BackgroundColor' ), ...
%@                            'Horizontal', ...
%@                            obj.ShowMarkings );
%@                    end
%@                    setappdata( obj.Dividers(numDynamic), 'WhichDivider', ii );
%@                end
%@            end
%@            % Remove any excess dividers
%@            if numel( obj.Dividers ) > numDynamic
%@                delete( obj.Dividers(numDynamic+1:end) );
%@                obj.Dividers(numDynamic+1:end) = [];
%@            end
%@        end % redraw
%@        
%@        function onButtonDown( obj, source, eventData ) %#ok<INUSD>
%@            %onButtonDown  user has clicked on a divider
%@            
%@            figh = ancestor( source, 'figure' );
%@            % We need to store any existing motion callbacks so that we can
%@            % restore them later.
%@            oldProps = struct();
%@            oldProps.WindowButtonMotionFcn = get( figh, 'WindowButtonMotionFcn' );
%@            oldProps.WindowButtonUpFcn = get( figh, 'WindowButtonUpFcn' );
%@            oldProps.Pointer = get( figh, 'Pointer' );
%@            oldProps.Units = get( figh, 'Units' );
%@
%@            % Make sure all interaction modes are off to prevent our
%@            % callbacks being clobbered
%@            zoomh = zoom( figh );
%@            r3dh = rotate3d( figh );
%@            panh = pan( figh );
%@            oldState = '';
%@            if isequal( zoomh.Enable, 'on' )
%@                zoomh.Enable = 'off';
%@                oldState = 'zoom';
%@            end
%@            if isequal( r3dh.Enable, 'on' )
%@                r3dh.Enable = 'off';
%@                oldState = 'rotate3d';
%@            end
%@            if isequal( panh.Enable, 'on' )
%@                panh.Enable = 'off';
%@                oldState = 'pan';
%@            end
%@            
%@            % Set our new callbacks
%@            set( figh, ...
%@                'WindowButtonMotionFcn', @obj.onButtonMotion, ...
%@                'WindowButtonUpFcn', {@obj.onButtonUp, oldProps, oldState}, ...
%@                'Pointer', 'top', ...
%@                'Units', 'Pixels' );
%@            
%@            % Make the divider visible
%@            cdata = get( source, 'CData' );
%@            if mean( cdata(:) ) < 0.5
%@                % Make it brighter
%@                cdata = 1-0.5*(1-cdata);
%@                newCol = 1-0.5*(1-get( obj.UIContainer, 'BackgroundColor' ));
%@            else
%@                % Make it darker
%@                cdata = 0.5*cdata;
%@                newCol = 0.5*get( obj.UIContainer, 'BackgroundColor' );
%@            end
%@            
%@            set( source, ...
%@                'BackgroundColor', newCol, ...
%@                'ForegroundColor', newCol, ...
%@                'CData', cdata );
%@            
%@            obj.SelectedDivider = source;
%@        end % onButtonDown
%@        
%@        function onButtonMotion( obj, source, eventData ) %#ok<INUSD>
%@            %onButtonMotion  user is dragging a divider
%@            figh = ancestor( source, 'figure' );
%@            cursorpos = get( figh, 'CurrentPoint' );
%@            pos0 = getpixelposition( obj.UIContainer, true );
%@            
%@            % We need to gaurd against the focus having been lost. In this
%@            % case we should have received a button-up event, but sometimes
%@            % don't (at least on Windows).
%@            if ishandle( obj.SelectedDivider )
%@                dividerpos = get( obj.SelectedDivider, 'Position' );
%@                dividerpos(2) = cursorpos(2) - pos0(2) - round(obj.Spacing/2) + 1;
%@                % Make sure that the position doesn't cause an element to
%@                % shrink too much
%@                minSizes = obj.MinimumSizes(:);
%@                pixSizes = uiextras.calculatePixelSizes( pos0(4), ...
%@                    obj.Sizes, minSizes, obj.Padding, obj.Spacing );
%@                N = numel( minSizes );
%@                % Sometimes the actual width is smaller than the minimum!
%@                minSizes = min( minSizes, pixSizes );
%@                whichDivider = getappdata( obj.SelectedDivider, 'WhichDivider' );
%@                minPos = pos0(4) - ceil( obj.Padding ...
%@                    + sum( pixSizes(1:whichDivider-1) ) ...
%@                    + minSizes(whichDivider) ...
%@                    + obj.Spacing*(whichDivider-0.5) );
%@                dividerpos(2) = min( dividerpos(2), minPos );
%@                if whichDivider<(N-1)
%@                    maxPos = floor( obj.Padding ...
%@                        + sum( pixSizes(whichDivider+2:end) ) ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*(N-whichDivider-0.5) );
%@                else
%@                    % Final divider
%@                    maxPos = floor( obj.Padding ...
%@                        + minSizes(whichDivider+1) ...
%@                        + obj.Spacing*0.5 );
%@                end
%@                dividerpos(2) = max( dividerpos(2), maxPos );
%@                set( obj.SelectedDivider, 'Position', dividerpos );
%@            else
%@                % Divider has been lost, so we are in a bad state. The
%@                % best we can do is kill the callbacks and attempt to put
%@                % the figure back in a decent state.
%@                set( figh, 'Pointer', 'arrow', ...
%@                    'WindowButtonMotionFcn', [], ...
%@                    'WindowButtonUpFcn', [] );
%@            end
%@        end % onButtonMotion
%@        
%@        function onButtonUp( obj, source, eventData, oldFigProps, oldState )
%@            %onButtonUp  user has finished dragging a divider
%@            
%@            % Deliberately call the motion function to ensure any last
%@            % movement is captured
%@            obj.onButtonMotion( source, eventData );
%@            
%@             % Restore figure properties
%@            figh = ancestor( source, 'figure' );
%@            flds = fieldnames( oldFigProps );
%@            for ii=1:numel(flds)
%@                set( figh, flds{ii}, oldFigProps.(flds{ii}) );
%@            end
%@            
%@            % If the figure has an interaction mode set, re-set it now
%@            if ~isempty( oldState )
%@                switch upper( oldState )
%@                    case 'ZOOM'
%@                        zoom( figh, 'on' );
%@                    case 'PAN'
%@                        pan( figh, 'on' );
%@                    case 'ROTATE3D'
%@                        rotate3d( figh, 'on' );
%@                    otherwise
%@                        error( 'GUILayout:FlexLayout:BadInteractionMode', 'Interaction mode ''%s'' not recognised', oldState );
%@                end
%@            end
%@            
%@            % Work out which divider was moved and which are the resizable
%@            % elements either side of it
%@            newPos = get( obj.SelectedDivider, 'Position' );
%@            origPos = getappdata( obj.SelectedDivider, 'OriginalPosition' );
%@            whichDivider = getappdata( obj.SelectedDivider, 'WhichDivider' );
%@            obj.SelectedDivider = -1;
%@            delta = newPos(2) - origPos(2);
%@            sizes = obj.Sizes;
%@            % Convert all flexible sizes into pixel units
%@            totalPosition = ceil( getpixelposition( obj.UIContainer ) );
%@            totalHeight = totalPosition(4);
%@            heights = uiextras.calculatePixelSizes( totalHeight, ...
%@                    obj.Sizes, obj.MinimumSizes, obj.Padding, obj.Spacing );
%@
%@            
%@            bottomelement = find( sizes(1:whichDivider)<0, 1, 'last' );
%@            topelement = find( sizes(whichDivider+1:end)<0, 1, 'first' )+whichDivider;
%@            
%@            % Now work out the new sizes. Note that we must ensure the size
%@            % stays negative otherwise it'll stop being resizable
%@            change = sum(sizes(sizes<0)) * delta / sum( heights(sizes<0) );
%@            sizes(topelement) = min( -0.000001, sizes(topelement) + change );
%@            sizes(bottomelement) = min( -0.000001, sizes(bottomelement) - change );
%@            
%@            % Setting the sizes will cause a redraw
%@            obj.Sizes = sizes;
%@        end % onButtonUp
%@        
%@        function onBackgroundColorChanged( obj, source, eventData ) %#ok<INUSD>
%@            %onBackgroundColorChanged  Callback that fires when the container background color is changed
%@            %
%@            % We need to make the dividers match the background, so redarw
%@            % them
%@            obj.redraw();
%@        end % onChildRemoved
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/VButtonBox.m__ -->
%@classdef VButtonBox < uiextras.ButtonBox
%@    %VButtonBox  Arrange buttons vertically in a single column
%@    %
%@    %   obj = uiextras.VButtonBox() is a type of VBox specialised for
%@    %   arranging a column of buttons, check-boxes or similar graphical
%@    %   elements. All buttons are given equal size and by default are
%@    %   centered in the drawing area. The justification can be changed as
%@    %   required.
%@    %
%@    %   obj = uiextras.VButtonBox(param,value,...) also sets one or more
%@    %   parameter values.
%@    %
%@    %   See the <a href="matlab:doc uiextras.VButtonBox">documentation</a> for more detail and the list of properties.
%@    %
%@    %   Examples:
%@    %   >> f = figure();
%@    %   >> b = uiextras.VButtonBox( 'Parent', f );
%@    %   >> uicontrol( 'Parent', b, 'String', 'One' );
%@    %   >> uicontrol( 'Parent', b, 'String', 'Two' );
%@    %   >> uicontrol( 'Parent', b, 'String', 'Three' );
%@    %   >> set( b, 'ButtonSize', [130 35], 'Spacing', 5 );
%@    %
%@    %   See also: uiextras.HButtonBox
%@    %             uiextras.VBox
%@    
%@    %   Copyright 2009-2010 The MathWorks, Inc.
%@    %   $Revision: 300 $
%@    %   $Date: 2010-07-22 16:33:47 +0100 (Thu, 22 Jul 2010) $
%@    
%@    methods
%@        
%@        function obj = VButtonBox( varargin )
%@            %VButtonBox  Create a new horizontal button box
%@            
%@            % First step is to create the parent class. We pass the
%@            % arguments (if any) just incase the parent needs setting
%@            obj@uiextras.ButtonBox( varargin{:} );
%@
%@            % Set properties
%@            if nargin > 0
%@                set( obj, varargin{:} );
%@            end
%@        end % constructor
%@        
%@    end % public methods
%@    
%@    methods( Access = protected )
%@        
%@        function redraw( obj )
%@            % First we need to work out how much space is available - if
%@            % there's not enough for the desired size then the buttons may
%@            % have to shrink
%@            children = obj.getValidChildren();
%@            nChildren = numel( children );
%@            pos = ceil( getpixelposition( obj.UIContainer ) );
%@            availableWidth = pos(3) - 2*obj.Padding;
%@            availableHeight = pos(4) - 2*obj.Padding - (nChildren-1)*obj.Spacing;
%@            
%@            buttonWidth = min( obj.ButtonSize(1), availableWidth );
%@            buttonHeight = min( obj.ButtonSize(2), availableHeight/nChildren );
%@            
%@            % The positioning depends on the alignment
%@            buttonsHeight = buttonHeight*nChildren + (nChildren-1)*obj.Spacing;
%@            switch upper( obj.VerticalAlignment )
%@                case 'TOP'
%@                    y0 = pos(4) - obj.Padding - buttonsHeight;
%@                    
%@                case 'MIDDLE'
%@                    y0 = 1 + round( ( pos(4) - buttonsHeight ) / 2 );
%@                    
%@                case 'BOTTOM'
%@                    y0 = 1 + obj.Padding;
%@                    
%@                otherwise
%@                    error( 'GUILayout:InvalidState', ...
%@                        'Invalid vertical alignment ''%s''.', obj.VerticalAlignment )
%@                    
%@            end
%@            
%@            switch upper( obj.HorizontalAlignment )
%@                case 'LEFT'
%@                    x0 = 1+ obj.Padding;
%@                    
%@                case 'CENTER'
%@                    x0 = 1 + round( (pos(3) - buttonWidth ) / 2 );
%@                    
%@                case 'RIGHT'
%@                    x0 = pos(3) - obj.Padding - buttonWidth;
%@                    
%@                otherwise
%@                    error( 'GUILayout:InvalidState', ...
%@                        'Invalid horizontal alignment ''%s''.', obj.HorizontalAlignment )
%@                    
%@            end
%@            
%@            % OK, we now know the start coords, so position each child
%@            for ii=1:nChildren
%@                child = children(nChildren-ii+1);
%@                contentPos = [x0, y0 + (ii-1)*(obj.Spacing+buttonHeight), buttonWidth, buttonHeight];
%@                obj.repositionChild( child, contentPos )
%@            end
%@            
%@        end % redraw
%@        
%@    end % protected methods
%@    
%@end % classdef
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/calculatePixelSizes.m__ -->
%@function pixSizes = calculatePixelSizes( availableSize, sizes, minSizes, padding, spacing )
%@%calculatePixelSizes  convert flexible sizes into pixel sizes
%@    
%@%   Copyright 2009-2011 The MathWorks, Inc.
%@%   $Revision: 288 $ 
%@%   $Date: 2010-07-14 12:23:50 +0100 (Wed, 14 Jul 2010) $
%@
%@
%@
%@%calculatePixelSizes
%@nChildren = numel( sizes );
%@pixSizes = zeros( numel( sizes ), 1 ); % initialize
%@minSizes = minSizes(:);
%@
%@% First set the fixed-size components
%@fixed = ( sizes >= 0 );
%@pixSizes(fixed) = sizes(fixed);
%@
%@% Now split the remaining space between any flexible ones
%@flexible = ( sizes<0 );
%@flexSize = availableSize ...
%@    - sum( sizes(fixed) ) ...     % space taken by fixed components
%@    - spacing * (nChildren-1) ... % space taken by the spacing
%@    - padding * 2;                % space around the edge
%@pixSizes(flexible) = sizes(flexible) / sum( sizes(flexible) ) * flexSize;
%@
%@% Now look for any that are below their minimum size
%@tooSmall = (pixSizes < minSizes);
%@while any( tooSmall )
%@    flexSize = flexSize - sum( minSizes(tooSmall) );
%@    flexible(tooSmall) = false;
%@    pixSizes(tooSmall) = minSizes(tooSmall);
%@    pixSizes(flexible) = sizes(flexible) / sum( sizes(flexible) ) * flexSize;
%@    tooSmall = (pixSizes < minSizes);
%@end
%@
%@% If we didn't manage to fit, reduce all sizes by a bit until
%@% we do
%@if sum( pixSizes ) > availableSize
%@    reduction = availableSize / sum( pixSizes );
%@    pixSizes = pixSizes * reduction;
%@end
%@
%@% Finally, to prevent errors, don't allow anything to be smaller than 1 pixel
%@pixSizes = max( pixSizes, 1 );
%@end % calculatePixelSizes
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/callCallback.m__ -->
%@function varargout = callCallback( callback, varargin )
%@%callCallback  Try to call a callback function or method
%@%
%@%   uiextras.callback(@FCN,ARG1,ARG2,...) calls the function
%@%   specified by the supplied function handle @FCN, passing it the supplied
%@%   extra arguments.
%@%
%@%   uiextras.callback(FCNCELL,ARG1,ARG2,...) calls the function
%@%   specified by the first item in cell array FCNCELL, passing the extra
%@%   arguments ARG1, ARG2 etc before any additional arguments in the cell
%@%   array.
%@%
%@%   uiextras.callback(FUNCNAME,ARG1,ARG2,...) calls the function
%@%   specified by the string FUNCNAME, passing the supplied extra arguments.
%@%
%@%   [OUT1,OUT2,...] = uiextras.callback(...) also captures return
%@%   arguments. Note that the function called must provide exactly the right
%@%   number of output arguments.
%@%
%@%   Use this function to handle firing callbacks from widgets.
%@%
%@%   Examples:
%@%   >> callback = {@horzcat, 5, 6};
%@%   >> c = uiextras.callCallback( callback, 1, 2, 3, 4 )
%@%   c =
%@%       1  2  3  4  5  6
%@%
%@%   See also: function_handle
%@
%@%   Copyright 2009-2010 The MathWorks, Inc.
%@%   $Revision: 361 $
%@%   $Date: 2011-02-07 15:40:44 +0000 (Mon, 07 Feb 2011) $
%@
%@if isempty( callback ) % empty
%@    
%@    return
%@    
%@elseif iscell( callback ) % cell array
%@    
%@    inargs = [callback(1), varargin, callback(2:end)];
%@    
%@elseif ischar( callback ) && any( ismember( callback, ' =' ) ) % expression
%@    
%@    eval( callback );
%@    return
%@    
%@else % function handle or string
%@    
%@    inargs = [{callback}, varargin];
%@    
%@end
%@
%@% Call callback
%@[varargout{1:nargout}] = feval( inargs{:} );
%@
%@end % callCallback
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/findArg.m__ -->
%@function value = findArg( argname, varargin )
%@%findArg  Find a specific property value from a property-value pairs list
%@%
%@%   value = findParentArg(propname,varargin) parses the inputs as property-value
%@%   pairs looking for the named property. If found, the corresponding
%@%   value is returned. If not found an empty array is returned.
%@%
%@%   Examples:
%@%   >> uiextras.findArg('Parent','Padding',5,'Parent',1,'Visible','on')
%@%   ans =
%@%     1
%@
%@%   Copyright 2009-2010 The MathWorks, Inc.
%@%   $Revision: 288 $
%@%   $Date: 2010-07-14 12:23:50 +0100 (Wed, 14 Jul 2010) $
%@
%@error( nargchk( 1, inf, nargin, 'struct' ) );
%@
%@value = [];
%@if nargin>1
%@    props = varargin(1:2:end);
%@    values = varargin(2:2:end);
%@    if ( numel( props ) ~= numel( values ) ) || any( ~cellfun( @ischar, props ) )
%@        error( 'GUILayout:InvalidSyntax', 'Arguments must be supplied as property-value pairs.' );
%@    end
%@    myArg = find( strcmpi( props, argname ), 1, 'last' );
%@    if ~isempty( myArg )
%@        value = values{myArg};
%@    end
%@end
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/get.m__ -->
%@function propValue = get( hObj, propName )
%@%uiextras.get  Retrieve a default property value from a parent object
%@%
%@%   propValue = uiextras.get(hObj,propName) retrieves a default property
%@%   value from the object hObj. Note that the hObj must be a valid graphics
%@%   container object such as a uipanel, figure or the special flag 0 (the
%@%   overall environment). The property name should take the form
%@%   "DefaultClassProperty", for example to get the default "TitleColor" for
%@%   the class "uiextras.BoxPanel", use "DefaultBoxPanelTitleColor". If no
%@%   default has been set for the specified property an error is thrown.
%@%
%@%   Examples:
%@%   >> p = uiextras.get( gcf(), 'DefaultBoxPanelTitleColor' )
%@%   
%@%   >> p = uiextras.get( 0, 'DefaultHBoxPadding' )
%@%
%@%   See also: uiextras.set
%@
%@%   Copyright 2010 The MathWorks, Inc.
%@%   $Revision: 1$
%@%   $Date: 2010-05-18$
%@
%@% Check inputs
%@error( nargchk( 2, 2, nargin ) );
%@if isempty( hObj )
%@    hObj = 0;
%@end
%@if strncmpi( class( hObj ), 'uiextras.', 9 )
%@    hObj = double( hObj );
%@end
%@if ~isequal( hObj, 0 ) && ~ishghandle( hObj )
%@    error( 'GUILayout:InvalidArgument', 'Object must be a valid Handle Graphics object.' );
%@end
%@if ~ischar( propName )
%@    error( 'GUILayout:InvalidArgument', 'Property name must be a string.' )
%@end
%@
%@% Make sure the property requested is a default
%@if ~strncmp( propName, 'Default', 7 )
%@    error( 'GUILayout:InvalidArgument', 'Property name must begin with ''Default''.' )
%@end
%@
%@% All OK, so set it
%@propValue = getappdata( hObj, propName );
%@
%@% If not found, try the parent
%@while isempty( propValue ) && ~isequal( hObj, 0 )
%@    hObj = get( hObj, 'Parent' );
%@    propValue = getappdata( hObj, propName );
%@end
%@
%@if isempty( propValue )
%@    error( 'GUILayout:get:ItemNotFound', ...
%@        'Could not find a value for property ''%s'' in the ancestors of this object.', propName );
%@end
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/interpretColor.m__ -->
%@function col = interpretColor(str)
%@%interpretColor  Interpret a color as an RGB triple
%@%
%@%   rgb = uiextras.interpretColor(col) interprets the input color COL and
%@%   returns the equivalent RGB triple. COL can be one of:
%@%   * RGB triple of floating point numbers in the range 0 to 1
%@%   * RGB triple of UINT8 numbers in the range 0 to 255
%@%   * single character: 'r','g','b','m','y','c','k','w'
%@%   * string: one of 'red','green','blue','magenta','yellow','cyan','black'
%@%             'white'
%@%   * HTML-style string (e.g. '#FF23E0')
%@%
%@%   Examples:
%@%   >> uiextras.interpretColor( 'r' )
%@%   ans =
%@%        1   0   0
%@%   >> uiextras.interpretColor( 'cyan' )
%@%   ans =
%@%        0   1   1
%@%   >> uiextras.interpretColor( '#FF23E0' )
%@%   ans =
%@%        1.0000    0.1373    0.8784
%@%
%@%   See also: ColorSpec
%@
%@%   Copyright 2005-2010 The MathWorks Ltd.
%@%   $Revision: 329 $
%@%   $Date: 2010-08-26 09:53:44 +0100 (Thu, 26 Aug 2010) $
%@
%@if ischar( str )
%@    str = strtrim(str);
%@    str = dequote(str);
%@    if str(1)=='#'
%@        % HTML-style string
%@        if numel(str)==4
%@            col = [hex2dec( str(2) ), hex2dec( str(3) ), hex2dec( str(4) )]/15;
%@        elseif numel(str)==7
%@            col = [hex2dec( str(2:3) ), hex2dec( str(4:5) ), hex2dec( str(6:7) )]/255;
%@        else
%@            error( 'UIExtras:interpretColor:BadColor', 'Invalid HTML color %s', str );
%@        end
%@    elseif all( ismember( str, '1234567890.,; []' ) )
%@        % Try the '[0 0 1]' thing first
%@        col = str2num( str ); %#ok<ST2NM>
%@        if numel(col) == 3
%@            % Conversion worked, so just check for silly values
%@            col(col<0) = 0;
%@            col(col>1) = 1;
%@        end
%@    else
%@        % that didn't work, so try the name
%@        switch upper(str)
%@            case {'R','RED'}
%@                col = [1 0 0];
%@            case {'G','GREEN'}
%@                col = [0 1 0];
%@            case {'B','BLUE'}
%@                col = [0 0 1];
%@            case {'C','CYAN'}
%@                col = [0 1 1];
%@            case {'Y','YELLOW'}
%@                col = [1 1 0];
%@            case {'M','MAGENTA'}
%@                col = [1 0 1];
%@            case {'K','BLACK'}
%@                col = [0 0 0];
%@            case {'W','WHITE'}
%@                col = [1 1 1];
%@            case {'N','NONE'}
%@                col = [nan nan nan];
%@            otherwise
%@                % Failed
%@                error( 'UIExtras:interpretColor:BadColor', 'Could not interpret color %s', num2str( str ) );
%@        end
%@    end
%@elseif isfloat(str) || isdouble(str)
%@    % Floating point, so should be a triple in range 0 to 1
%@    if numel(str)==3
%@        col = double( str );
%@        col(col<0) = 0;
%@        col(col>1) = 1;
%@    else
%@        error( 'UIExtras:interpretColor:BadColor', 'Could not interpret color %s', num2str( str ) );
%@    end
%@elseif isa(str,'uint8')
%@    % UINT8, so range is implicit
%@    if numel(str)==3
%@        col = double( str )/255;
%@        col(col<0) = 0;
%@        col(col>1) = 1;
%@    else
%@        error( 'UIExtras:interpretColor:BadColor', 'Could not interpret color %s', num2str( str ) );
%@    end
%@else
%@    error( 'UIExtras:interpretColor:BadColor', 'Could not interpret color %s', num2str( str ) );
%@end
%@
%@
%@function str = dequote(str)
%@str(str=='''') = [];
%@str(str=='"') = [];
%@str(str=='[') = [];
%@str(str==']') = [];
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/loadLayoutIcon.m__ -->
%@function cdata = loadLayoutIcon(imagefilename,bgcol)
%@%loadLayoutIcon  Load an icon and set the transparent color
%@%
%@%   cdata = uiextras.loadLayoutIcon(filename) tries to load the icon specified by
%@%   filename. If the icon is a PNG file with transparency then transparent
%@%   pixels are set to NaN. If not, then any pixel that is pure green is set
%@%   to transparent (i.e. "green screen"). The resulting CDATA is an RGB
%@%   double array.
%@%
%@%   cdata = uiextras.loadLayoutIcon(filename,bgcol) tries to merge with the
%@%   specified background colour bgcol. Fully transparent pixels are still
%@%   set to NaN, but partially transparent ones are merged with the
%@%   background.
%@%
%@%   See also: IMREAD
%@
%@%   Copyright 2005-2010 The MathWorks Ltd.
%@%   $Revision: 288 $    
%@%   $Date: 2010-07-14 12:23:50 +0100 (Wed, 14 Jul 2010) $
%@
%@
%@error( nargchk( 1, 2, nargin ) );
%@if nargin < 2
%@    bgcol = get( 0, 'DefaultUIControlBackgroundColor' );
%@end
%@
%@% First try normally
%@this_dir = fileparts( mfilename( 'fullpath' ) );
%@icon_dir = fullfile( this_dir, 'Resources' );
%@if exist( imagefilename, 'file' )
%@    [cdata,map,alpha] = imread( imagefilename );
%@elseif exist( fullfile( icon_dir, imagefilename ), 'file' )
%@    [cdata,map,alpha] = imread( fullfile( icon_dir, imagefilename ));
%@else
%@    error( 'GUILayout:loadIcon:FileNotFound', 'Cannot open file ''%s''.', imagefilename );
%@end
%@
%@if ~isempty( map )
%@    cdata = ind2rgb( cdata, map );
%@end
%@
%@% Convert to double before applying transparency
%@cdata = convertToDouble( cdata );
%@
%@[rows,cols,depth] = size( cdata ); %#ok<NASGU>
%@if ~isempty( alpha )
%@alpha = convertToDouble( alpha );
%@    f = find( alpha==0 );
%@    if ~isempty( f )
%@        cdata(f) = nan;
%@        cdata(f + rows*cols) = nan;
%@        cdata(f + 2*rows*cols) = nan;
%@    end
%@    
%@    % Now blend partial alphas
%@    f = find( alpha(:)>0 & alpha(:)<1 );
%@    if ~isempty(f)
%@        cdata(f) = cdata(f).*alpha(f) + bgcol(1)*(1-alpha(f));
%@        cdata(f + rows*cols) = cdata(f + rows*cols).*alpha(f) + bgcol(2)*(1-alpha(f));
%@        cdata(f + 2*rows*cols) = cdata(f + 2*rows*cols).*alpha(f) + bgcol(3)*(1-alpha(f));
%@    end
%@    
%@else
%@    % Instead do a "green screen", treating anything pure-green as transparent
%@    f = find((cdata(:,:,1)==0) & (cdata(:,:,2)==1) & (cdata(:,:,3)==0));
%@    cdata(f) = nan;
%@    cdata(f + rows*cols) = nan;
%@    cdata(f + 2*rows*cols) = nan;
%@    
%@end
%@
%@%-------------------------------------------------------------------------%
%@function cdata = convertToDouble( cdata )
%@% Convert an image to double precision in the range 0 to 1
%@switch lower( class( cdata ) )
%@    case 'double'
%@    % Do nothing
%@    case 'single'
%@        cdata = double( cdata );
%@    case 'uint8'
%@        cdata = double( cdata ) / 255;
%@    case 'uint16'
%@        cdata = double( cdata ) / 65535;
%@    case 'int8'
%@        cdata = ( double( cdata ) + 128 ) / 255;
%@    case 'int16'
%@        cdata = ( double( cdata ) + 32768 ) / 65535;
%@    otherwise
%@        error( 'GUILayout:LoadIcon:BadCData', ...
%@            'Image data of type ''%s'' is not supported.', class( cdata ) );
%@end
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/makeFlexDivider.m__ -->
%@function uic = makeFlexDivider( parent, position, bgCol, orientation, showMarks )
%@%makeFlexDivider  Create a divider widget and add markings if desired
%@%
%@%   This function is for internal use only.
%@%
%@%   See also: uiextras.VBoxFlex
%@%             uiextras.HBoxFlex
%@%             uiextras.GridFlex
%@
%@%   Copyright 2010 The MathWorks, Inc.
%@%   $Revision: 354 $
%@%   $Date: 2010-11-01 10:07:13 +0000 (Mon, 01 Nov 2010) $
%@
%@error( nargchk( 5, 5, nargin, 'struct' ) );
%@
%@if strcmpi( showMarks, 'off' ) || position(3)<3 || position(4)<3
%@    % No amarkings or too small to show them, so draw a blank
%@    cdata = ones( position(4)-1, position(3)-1 ); % One less than the space since uicontrols always start with a blank pixel
%@    cdata = cat( 3, cdata*bgCol(1), cdata*bgCol(2), cdata*bgCol(3) );
%@else
%@    
%@    % Make the divider slightly darker than it's surroundings
%@    bgCol = 0.97*bgCol;
%@    
%@    % Determine the highlight and lowlight colors and create an empty image
%@    hiCol = 1-0.2*(1-bgCol);
%@    loCol = 0.8*bgCol;
%@    fgCol = 1-0.7*(1-bgCol);
%@    cdata = ones( position(4)-1, position(3)-1 ); % One less than the space since uicontrols always start with a blank pixel
%@    cdata = cat( 3, cdata*bgCol(1), cdata*bgCol(2), cdata*bgCol(3) );
%@    
%@    % Fill central region with foreground color. Note that the top and left get
%@    % a spare pixel anyway, so start at 1,1.
%@    cdata(1:end-1,1:end-1,1) = fgCol(1);
%@    cdata(1:end-1,1:end-1,2) = fgCol(2);
%@    cdata(1:end-1,1:end-1,3) = fgCol(3);
%@    
%@    % Add fletchings if there's space
%@    if strcmpi( orientation, 'Vertical' )
%@        % Vertical divider requires horizontal fletchings
%@        numFletches = min( 10, floor( position(4)/6 ) ); % Fill no more than half the space (3 pixels per mark, so divide by 6)
%@        y0 = round( (position(4)-numFletches*3 ) / 2 );
%@        for ii=1:numFletches
%@            y = y0+(ii-1)*3;
%@            % Add highlight
%@            cdata(y,1:end-1,1) = hiCol(1);
%@            cdata(y,1:end-1,2) = hiCol(2);
%@            cdata(y,1:end-1,3) = hiCol(3);
%@            % Add shadow
%@            cdata(y+1,1:end-1,1) = loCol(1);
%@            cdata(y+1,1:end-1,2) = loCol(2);
%@            cdata(y+1,1:end-1,3) = loCol(3);
%@        end
%@    else
%@        % Horizontal divider requires vertical fletchings
%@        numFletches = min( 10, floor( position(3)/6 ) ); % Fill no more than half the space (3 pixels per mark, so divide by 6)
%@        x0 = round( (position(3)-numFletches*3 ) / 2 );
%@        for ii=1:numFletches
%@            x = x0+(ii-1)*3;
%@            % Add highlight
%@            cdata(1:end-1,x,1) = hiCol(1);
%@            cdata(1:end-1,x,2) = hiCol(2);
%@            cdata(1:end-1,x,3) = hiCol(3);
%@            % Add shadow
%@            cdata(1:end-1,x+1,1) = loCol(1);
%@            cdata(1:end-1,x+1,2) = loCol(2);
%@            cdata(1:end-1,x+1,3) = loCol(3);
%@        end
%@        
%@    end
%@end
%@
%@% If the first argument is a divider, we update it, otherwise create from
%@% scratch.
%@if strcmpi( get( parent, 'Type' ), 'UIControl' )
%@    % Update existing
%@    set( parent, ...
%@        'BackgroundColor', bgCol, ...
%@        'ForegroundColor', bgCol, ...
%@        'CData', cdata, ...
%@        'Position', position );
%@    uic = parent;
%@else
%@    % Create the widget
%@    uic = uicontrol( 'Parent', parent, ...
%@        'Style', 'Checkbox', ...
%@        'BackgroundColor', bgCol, ...
%@        'ForegroundColor', bgCol, ...
%@        'CData', cdata, ...
%@        'HitTest', 'on', ...
%@        'Enable', 'inactive', ...
%@        'Units', 'Pixels', ...
%@        'Position', position, ...
%@        'HandleVisibility', 'off' );
%@end
%@
%@% Store the original position for later
%@setappdata( uic, 'OriginalPosition', position );
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/set.m__ -->
%@function set( hObj, propName, propValue )
%@%uiextras.set  Store a default property value in a parent object
%@%
%@%   uiextras.set(hObj,propName,propValue) stores a default property value
%@%   in the object hObj such that children created inside it of the correct
%@%   class will use the specified value (propValue) for the specified
%@%   property by default. The property name should take the form
%@%   "DefaultClassProperty", for example to set the default "TitleColor" for
%@%   the class "uiextras.BoxPanel", use "DefaultBoxPanelTitleColor". Note
%@%   that using the special object handle 0 sets the default for all new
%@%   figures.
%@%
%@%   Examples:
%@%   >> uiextras.set( gcf(), 'DefaultBoxPanelTitleColor', 'g' )
%@%   >> uiextras.set( 0, 'DefaultHBoxPadding', 5 )
%@%
%@%   See also: uiextras.get
%@%             uiextras.unset
%@
%@%   Copyright 2010 The MathWorks, Inc.
%@%   $Revision: 1$
%@%   $Date: 2010-05-18$
%@
%@% Check inputs
%@error( nargchk( 3, 3, nargin, 'struct' ) )
%@
%@if isa( hObj, 'uiextras.Container' )
%@    hObj = double( hObj );
%@end
%@if ~isequal( hObj, 0 ) && ~ishghandle( hObj )
%@    error( 'GUILayout:InvalidArgument', 'Object must be a valid Handle Graphics object.' )
%@end
%@if ~ischar( propName )
%@    error( 'GUILayout:InvalidArgument', 'Property name must be a string.' )
%@end
%@
%@% Make sure the property requested is a default
%@if ~strncmp( propName, 'Default', 7 )
%@    error( 'GUILayout:InvalidArgument', 'Property name must begin with ''Default''.' )
%@end
%@
%@% All OK, so set it
%@setappdata( hObj, propName, propValue );
%<-- ASCII ends here -->
%<-- ASCII begins here: __+uiextras/unset.m__ -->
%@function unset( hObj, propName )
%@%uiextras.unset  Clear a default property value from a parent object
%@%
%@%   uiextras.unset(hObj,propName) clears a default property value from the
%@%   object hObj. Note that the hObj must be a valid graphics container
%@%   object such as a uipanel, figure or the special flag 0 (the overall
%@%   environment. If a default has been set for the specified property
%@%   (propName) of the specified layout (className), it is removed.
%@%
%@%   Examples:
%@%   >> uiextras.unset( gcf(), 'DefaultBoxPanelTitleColor' )
%@%
%@%   See also: uiextras.set
%@%             uiextras.get
%@
%@%   Copyright 2010 The MathWorks, Inc.
%@%   $Revision: 1$
%@%   $Date: 2010-05-18$
%@
%@% Check inputs
%@error( nargchk( 2, 2, nargin ) );
%@if isempty( hObj )
%@    hObj = 0;
%@end
%@if strncmpi( class( hObj ), 'uiextras.', 9 )
%@    hObj = double( hObj );
%@end
%@if ~isequal( hObj, 0 ) && ~ishghandle( hObj )
%@    error( 'GUILayout:InvalidArgument', 'Object must be a valid Handle Graphics object.' );
%@end
%@if ~ischar( propName )
%@    error( 'GUILayout:InvalidArgument', 'Property name must be a string.' )
%@end
%@
%@% Make sure the property requested is a default
%@if ~strncmp( propName, 'Default', 7 )
%@    error( 'GUILayout:InvalidArgument', 'Property name must begin with ''Default''.' )
%@end
%@
%@% Try to remove appdata
%@while true
%@    if isappdata( hObj, propName ) % appdata found
%@        rmappdata( hObj, propName ); % remove
%@        break % done
%@    elseif isempty( get( hObj, 'Parent' ) ) % cannot look higher than root
%@        error( 'GUILayout:get:ItemNotFound', ...
%@            'Could not find a value for property ''%s'' in the ancestors of this object.', propName );
%@    else % continue one level up
%@        hObj = get( hObj, 'Parent' );
%@        continue
%@    end
%@end
%<-- ASCII ends here -->
%<-- ASCII begins here: __Patch/README.txt__ -->
%@This folder contains revised versions of MATLAB built-in functions that
%@have unresolved issues for these layouts. As the issues are fixed these 
%@functions will be removed.
%<-- ASCII ends here -->
%<-- ASCII begins here: __layout/Contents.m__ -->
%@% GUI Layout Toolbox
%@% Version 1.17 (R2013b) 4-Mar-2014
%@%
%@% Panels
%@%   uiextras.Panel      - arrange a single element inside a standard panel
%@%   uiextras.CardPanel  - show one element from a list
%@%   uiextras.BoxPanel   - arrange a single element inside a panel with a boxed title
%@%   uiextras.TabPanel   - arrange elements in a panel with tabs for selecting which is visible
%@%
%@% Boxes
%@%   uiextras.HBox       - arrange elements horizontally in a single row
%@%   uiextras.VBox       - arrange elements vertically in a single column
%@%   uiextras.HBoxFlex   - arrange elements horizontally with draggable dividers
%@%   uiextras.VBoxFlex   - arrange elements vertically with draggable dividers
%@%   uiextras.HButtonBox - arrange buttons horizontally in a single row
%@%   uiextras.VButtonBox - arrange buttons vertically in a single column
%@%
%@% Grids
%@%   uiextras.Grid       - arrange elements in a two-dimensional grid
%@%   uiextras.GridFlex   - arrange elements in a two-dimensional grid with draggable dividers
%@%
%@% Installation
%@%   install       - install toolbox
%@%   uninstall     - uninstall toolbox
%@%
%@% See also
%@%   <a href="../readme.txt">Release notes</a>
%@
%@% Copyright 2009-2014 The MathWorks, Inc.
%@
%@
%@
%@%% Older versions:
%@
%@% version = '1.16';
%@% versionDate = '2013-12-18';
%@
%@% version = '1.15';
%@% versionDate = '2013-11-15';
%@
%@% version = '1.14';
%@% versionDate = '2013-09-09';
%@
%@% version = '1.13';
%@% versionDate = '2013-04-26';
%@
%@% version = '1.12';
%@% versionDate = '2013-02-18';
%@
%@% version = '1.11';
%@% versionDate = '2012-12-14';
%@
%@% version = '1.10';
%@% versionDate = '2011-07-14';
%@
%@% version = '1.9';
%@% versionDate = '2011-02-10';
%@
%@% version = '1.8';
%@% versionDate = '2010-11-02';
%@
%@% version = '1.7';
%@% versionDate = '2010-10-22';
%@
%@% version = '1.6';
%@% versionDate = '2010-09-24';
%@
%@% version = '1.5';
%@% versionDate = '2010-07-22';
%@
%@% version = '1.4';
%@% versionDate = '2010-07-15';
%@
%@% version = '1.3';
%@% versionDate = '2010-06-28';
%@
%@% version = '1.2';
%@% versionDate = '2010-06-18';
%@
%@% version = '1.1';
%@% versionDate = '2010-06-09';
%@
%@% version = '1.0';
%@% versionDate = '2010-05-28';
%@
%@% version = '0.4';
%@% versionDate = '2010-05-19';
%@
%@% version = '0.3';
%@% versionDate = '2010-03-10';
%@
%@% version = '0.2';
%@% versionDate = '2010-01-06';
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/AxesExample.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide2_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/BoxPanelFancyStuff.html__ -->
%@                <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide5.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Compiling.html__ -->
%@                <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide7.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/EnableExample.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide3_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/ExampleApp.html__ -->
%@                <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Examples</title>
%@   </head>
%@
%@   
%@            
%@   <body>
%@      
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="index.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>GUI Layout Toolbox 1.17</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="index.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="index.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@      <h1>Examples&nbsp;<A href="index.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h1>
%@    
%@     <p>The following examples are provided as part of this documentation. Click
%@     the name of any example to go to the corresponding page.</p>
%@         
%@     <h4>Basics</h4>
%@     <dl>
%@         <dt><a href="HierarchyExample.html">Layout hierarchy</a></dt>
%@         <dd>Using layouts inside layouts to produce more complex designs</dd>
%@     </dl>
%@         
%@     <h4>Using axes</h4>
%@     <dl>
%@         <dt><a href="AxesExample.html">Positioning axes</a></dt>
%@         <dd>Using the different axes position properties.</dd>
%@     </dl>
%@         
%@     <h4>Using panels</h4>
%@     <dl>
%@         <dt><a href="PanelHelp.html">Context help</a></dt>
%@         <dd>Adding context-sensitive help using panels.</dd>
%@         
%@         <dt><a href="PanelMinimize.html">Minimize and maximize</a></dt>
%@         <dd>Creating a user interface with panels that can be minimized and
%@         maximized.</dd>
%@         
%@         <dt><a href="PanelDock.html">Dock and undock</a></dt>
%@         <dd>Creating a user interface with panels that can be undocked into
%@         separate windows.</dd>
%@     </dl>
%@     
%@     <h4>Enable and Visible</h4>
%@      <dl>
%@         <dt><a href="EnableExample.html">Enabling/Disabling a layout</a></dt>
%@         <dd>Using the "Enable" property to enable or disable groups of buttons</dd>
%@      
%@         <dt><a href="VisibleExample.html">Showing/Hiding a layout</a></dt>
%@         <dd>Using the "Visible" property to show or hide groups of buttons</dd>
%@      </dl>
%@       
%@     <h4>Applications</h4>
%@      <dl>
%@         <dt><a href="ExampleApp.html">Building a complete application</a></dt>
%@         <dd>Using layouts together to produce a complete application</dd>
%@     </dl>
%@       
%@
%@      <br clear="all"/>
%@      
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/FigureDefaults.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide4_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Function reference</title>
%@   </head>
%@
%@   
%@            
%@   <body>
%@      
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="index.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>GUI Layout Toolbox 1.17</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="index.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference1_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@      <h1>Function reference&nbsp;<A href="index.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h1>
%@    
%@     
%@     
%@    <!-- ****************************************************************** -->
%@    
%@     
%@    
%@         <!-- ****************************************************************** -->
%@    
%@     
%@    
%@        
%@
%@      <table border="0">
%@         <tr>
%@            <td colspan="2"><a name="1"><h2>1: Panels</h2></a>
%@         <a href="uiextras.Panel.html"><img src="Images/bigicon_Panel.png" border="1"/></a>
%@         <a href="uiextras.CardPanel.html"><img src="Images/bigicon_CardPanel.png" border="1"/></a>
%@         <a href="uiextras.BoxPanel.html"><img src="Images/bigicon_BoxPanel.png" border="1"/></a>
%@         <a href="uiextras.TabPanel.html"><img src="Images/bigicon_TabPanel.png" border="1"/></a>
%@
%@     
%@
%@
%@     
%@
%@     
%@
%@     
%@
%@         
%@     </td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference1_1.html">1.1&nbsp;uiextras.Panel</a></td>
%@            <td valign="top">Arrange a single element inside a standard panel</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference1_2.html">1.2&nbsp;uiextras.CardPanel</a></td>
%@            <td valign="top">Show one element (card) from a list</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference1_3.html">1.3&nbsp;uiextras.BoxPanel</a></td>
%@            <td valign="top">Arrange a single element in a panel with boxed title</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference1_4.html">1.4&nbsp;uiextras.TabPanel</a></td>
%@            <td valign="top">Arrange elements in a panel with tabs for selecting which is visible</td>
%@         </tr>
%@         <tr>
%@            <td colspan="2"><a name="2"><h2>2: Boxes</h2></a>
%@         <a href="uiextras.HBox.html"><img src="Images/bigicon_HBox.png" border="1"/></a>
%@         <a href="uiextras.VBox.html"><img src="Images/bigicon_VBox.png" border="1"/></a>
%@         <a href="uiextras.HBoxFlex.html"><img src="Images/bigicon_HBoxFlex.png" border="1"/></a>
%@         <a href="uiextras.VBoxFlex.html"><img src="Images/bigicon_VBoxFlex.png" border="1"/></a>
%@         <a href="uiextras.HButtonBox.html"><img src="Images/bigicon_HButtonBox.png" border="1"/></a>
%@         <a href="uiextras.VButtonBox.html"><img src="Images/bigicon_VButtonBox.png" border="1"/></a>
%@         
%@         
%@                  
%@         
%@         
%@         
%@         
%@         
%@         
%@
%@         
%@
%@         
%@
%@     </td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference2_1.html">2.1&nbsp;uiextras.HBox</a></td>
%@            <td valign="top">Arrange elements horizontally in a single row</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference2_2.html">2.2&nbsp;uiextras.VBox</a></td>
%@            <td valign="top">Arrange elements vertically in a single column</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference2_3.html">2.3&nbsp;uiextras.HBoxFlex</a></td>
%@            <td valign="top">Arrange elements horizontally with draggable dividers</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference2_4.html">2.4&nbsp;uiextras.VBoxFlex</a></td>
%@            <td valign="top">Arrange elements vertically with draggable dividers</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference2_5.html">2.5&nbsp;uiextras.HButtonBox</a></td>
%@            <td valign="top">Arrange buttons horizontally in a single row</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference2_6.html">2.6&nbsp;uiextras.VButtonBox</a></td>
%@            <td valign="top">Arrange buttons vertically in a single column</td>
%@         </tr>
%@         <tr>
%@            <td colspan="2"><a name="3"><h2>3: Grids</h2></a>
%@         <a href="uiextras.Grid.html"><img src="Images/bigicon_Grid.png" border="1"/></a>
%@         <a href="uiextras.GridFlex.html"><img src="Images/bigicon_GridFlex.png" border="1"/></a>
%@
%@        
%@        
%@        
%@        
%@    </td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference3_1.html">3.1&nbsp;uiextras.Grid</a></td>
%@            <td valign="top">Arrange elements in a two dimensional grid</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference3_2.html">3.2&nbsp;uiextras.GridFlex</a></td>
%@            <td valign="top">Arrange elements in a two dimensional grid with draggable dividers</td>
%@         </tr>
%@         <tr>
%@            <td colspan="2"><a name="4"><h2>4: Other functions</h2></a>
%@
%@        
%@
%@        
%@
%@        
%@
%@
%@        
%@
%@
%@
%@        
%@
%@    </td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference4_1.html">4.1&nbsp;uiextras.Empty</a></td>
%@            <td valign="top">Create an empty space</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference4_2.html">4.2&nbsp;layoutVersion</a></td>
%@            <td valign="top">Get the toolbox version number and date</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference4_3.html">4.3&nbsp;layoutRoot</a></td>
%@            <td valign="top">Return the folder containing the GUI layout toolbox</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference4_4.html">4.4&nbsp;uiextras.set</a></td>
%@            <td valign="top">Store a default property value in a parent object</td>
%@         </tr>
%@         <tr>
%@            <td valign="top"><a href="Function reference4_5.html">4.5&nbsp;uiextras.get</a></td>
%@            <td valign="top">Retrieve a default property value from a parent object</td>
%@         </tr>
%@      </table>
%@      <br clear="all"/>
%@      
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.Panel</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference1_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.Panel</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference1_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.1: uiextras.Panel&nbsp;<a href="Function reference.html#1"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@             
%@             <img src="Images/bigicon_Panel.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange a single element inside a standard panel</p>
%@                          <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.Panel(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a standard <a href="matlab:doc uipanel"><code class="FUNCTION">uipanel</code></a> object but with automatic management
%@                 of the contained widget or layout. The properties available are largely
%@                 the same as the builtin <a href="matlab:doc uipanel"><code class="FUNCTION">uipanel</code></a> object. Where more than one child is
%@                 added, the currently visible child is determined using the SelectedChild property.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.Panel(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.Panel properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BorderType&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ none | etchedin | etchedout | beveledin | beveledout | line ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Type of border around the uipanel area.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BorderWidth&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Width of the panel border.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontAngle&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ normal | italic | oblique ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font angle.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontName&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font name (e.g. Arial, Helvetica etc).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontSize&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font size.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontUnits&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font units for measuring size.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontWeight&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ light | normal | demi | bold ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font weight.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ForegroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Title font color and/or color of 2-D border line.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>HighlightColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>3-D frame highlight color.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>SelectedChild&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer or empty</value></td><td valign="top" class="PROPERTYTABLE"><description>Which child is visible.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ShadowColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>3-D frame shadow color.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Title&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>Title string.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>TitlePosition&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ lefttop | centertop | righttop | leftbottom | centerbottom | rightbottom ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Location of title string in relation to the panel.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->p = <a href="uiextras.Panel.html"><code class="FUNCTION">uiextras.Panel</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Title'</code>, <code class="STRING">'A Panel'</code>, <code class="STRING">'Padding'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/Panel.png"/></center>
%@                     </font></p>
%@                 
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->p = <a href="uiextras.Panel.html"><code class="FUNCTION">uiextras.Panel</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Title'</code>, <code class="STRING">'A Panel'</code>, <code class="STRING">'TitlePosition'</code>, 'CenterTop');
%@<!--&gt;&gt; -->b = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Spacing'</code>, 5, <code class="STRING">'Padding'</code>, 5  );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Style', 'listbox', <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, {<code class="STRING">'Item 1'</code>,<code class="STRING">'Item 2'</code>} );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> );
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'Sizes'</code>, [100 -1] );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/Panel2.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.BoxPanel.html">uiextras.BoxPanel</a></code> - for creating a more boxy panel</li><li><code class="FUNCTION"><a href="uiextras.TabPanel.html">uiextras.TabPanel</a></code> - for a panel with tabs for selecting the visible child</li><li><code class="FUNCTION"><a href="uiextras.HBox.html">uiextras.HBox</a></code> - for creating a horizontal arrangement within a panel</li></ul>
%@     
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Function reference</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.CardPanel</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference1_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.CardPanel</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference1_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference1_3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.2: uiextras.CardPanel&nbsp;<a href="Function reference.html#1"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@             
%@             <img src="Images/bigicon_CardPanel.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Show one element (card) from a list</p>
%@                          <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.CardPanel(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new card panel which allows
%@    selection between the different child objects contained, making the
%@    selected child fill the space available and all other children
%@    invisible. This is commonly used for creating wizards or quick
%@    switching between different views of a single data-set.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.CardPanel(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.CardPanel properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>SelectedChild&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer or empty</value></td><td valign="top" class="PROPERTYTABLE"><description>Which child is visible.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->p = <a href="uiextras.CardPanel.html"><code class="FUNCTION">uiextras.CardPanel</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Padding'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> );
%@<!--&gt;&gt; -->p.SelectedChild = 2;</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/CardPanel.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.Panel.html">uiextras.Panel</a></code> - for creating a standard panel</li><li><code class="FUNCTION"><a href="uiextras.BoxPanel.html">uiextras.BoxPanel</a></code> - for creating a more boxy panel</li><li><code class="FUNCTION"><a href="uiextras.TabPanel.html">uiextras.TabPanel</a></code> - for a panel with tabs for selecting the visible child</li></ul>
%@     
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.Panel</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.BoxPanel</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference1_3.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.BoxPanel</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference1_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference1_4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.3: uiextras.BoxPanel&nbsp;<a href="Function reference.html#1"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@             
%@             <img src="Images/bigicon_BoxPanel.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange a single element in a panel with boxed title</p>
%@                          <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.BoxPanel(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a box-styled panel object with
%@    automatic management of the contained widget or layout. The
%@    properties available are largely the same as the builtin <a href="matlab:doc UIPANEL"><code class="FUNCTION">UIPANEL</code></a>
%@    object. Where more than one child is added, the currently visible
%@    child is determined using the SelectedChild property.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.BoxPanel(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.BoxPanel properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BorderType&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ none | etchedin | etchedout | beveledin | beveledout | line ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Type of border around the title and content areas.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>CloseRequestFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the panel close icon is clicked. Note that if empty, no close button is shown.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DockFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>function handle</value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when panel is docked or undocked. Note that if empty, no dock button is shown. See <a href="BoxPanelFancyStuff.html">advanced manoeuvres with panels</a> for details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontAngle&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ normal | italic | oblique ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font angle.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontName&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font name (e.g. Arial, Helvetica etc).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontSize&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font size.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontUnits&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font units for measuring size.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontWeight&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ light | normal | demi | bold ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font weight.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ForegroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Title font color and/or color of 2-D border line.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>HelpFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>function handle</value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the help icon is clicked. Note that if empty, no help button is shown. See <a href="BoxPanelFancyStuff.html">advanced manoeuvres with panels</a> for details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>HighlightColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>3-D frame highlight color.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>IsDocked&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>logical</value></td><td valign="top" class="PROPERTYTABLE"><description>Is this panel in a docked state. See <a href="BoxPanelFancyStuff.html">advanced manoeuvres with panels</a> for details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>IsMinimized&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>logical</value></td><td valign="top" class="PROPERTYTABLE"><description>Is this panel in a minimized state. See <a href="BoxPanelFancyStuff.html">advanced manoeuvres with panels</a> for details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>MinimizeFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>function handle</value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when panel is minimized or maximized. Note that if empty, no minimize button is shown. See <a href="BoxPanelFancyStuff.html">advanced manoeuvres with panels</a> for details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>SelectedChild&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer or empty</value></td><td valign="top" class="PROPERTYTABLE"><description>Which child is visible.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ShadowColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>3-D frame shadow color.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Title&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>Title string.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>TitleColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>color for the title bar background.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen. See the <a href="VisibleExample.html">visible example</a> for more details.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->p = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Title'</code>, 'A BoxPanel', <code class="STRING">'Padding'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/BoxPanel.png"/></center>
%@                     </font></p>
%@                 
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->p = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Title'</code>, 'A BoxPanel', <code class="STRING">'Padding'</code>, 5 );
%@<!--&gt;&gt; -->b = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Spacing'</code>, 5, <code class="STRING">'Padding'</code>, 5  );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Style', 'listbox', <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, {'Item 1','Item 2'} );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> );
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'Sizes'</code>, [100 -1] );
%@<!--&gt;&gt; -->p.FontSize = 12;
%@<!--&gt;&gt; -->p.FontWeight = 'bold';
%@<!--&gt;&gt; -->p.HelpFcn = @(x,y) disp('Help me!');</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/BoxPanel2.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.Panel.html">uiextras.Panel</a></code> - for creating a more standard panel</li><li><code class="FUNCTION"><a href="uiextras.TabPanel.html">uiextras.TabPanel</a></code> - for a panel with tabs for selecting the visible child</li><li><code class="FUNCTION"><a href="uiextras.HBox.html">uiextras.HBox</a></code> - for creating a horizontal arrangement within a panel</li></ul>
%@     
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.CardPanel</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.TabPanel</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference1_4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference1_4.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.TabPanel</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference1_3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference2_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.4: uiextras.TabPanel&nbsp;<a href="Function reference.html#1"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@             
%@             <img src="Images/bigicon_TabPanel.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange elements in a panel with tabs for selecting which is visible</p>
%@                          <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.TabPanel(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a panel with tabs along one edge
%@    to allow selection between the different child objects contained.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.TabPanel(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.TabPanel properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Callback&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the selected tab is changed. The event-data supplied has fields <code>PreviousChild</code> and <code>SelectedChild</code> giving the previously selected and newly selected tab indices.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontAngle&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ normal | italic | oblique ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font angle.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontName&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font name (e.g. Arial, Helvetica etc).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontSize&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font size.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontUnits&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font units for measuring size.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>FontWeight&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ light | normal | demi | bold ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Title font weight.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ForegroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Title font color and/or color of 2-D border line.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>HighlightColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>3-D frame highlight color.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ShadowColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>3-D frame shadow color.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>IsMinimized&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>logical</value></td><td valign="top" class="PROPERTYTABLE"><description>Is this panel in a minimized state.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>MinimizeFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>function handle</value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when panel is minimized or maximized.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>SelectedChild&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer or empty</value></td><td valign="top" class="PROPERTYTABLE"><description>Which child is visible.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>TabSize&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Size (width) of the tabs in pixels (default 50).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>TabEnable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>cell array of [ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>A list of the enabled state of each tab (default is all 'on').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>TabNames&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>cell array of strings</value></td><td valign="top" class="PROPERTYTABLE"><description>A list of the names of the tabs with one entry per tab.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->p = <a href="uiextras.TabPanel.html"><code class="FUNCTION">uiextras.TabPanel</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Padding'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, p, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> );
%@<!--&gt;&gt; -->p.TabNames = {<code class="STRING">'Red'</code>, <code class="STRING">'Blue'</code>, <code class="STRING">'Green'</code>};
%@<!--&gt;&gt; -->p.SelectedChild = 2;</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/TabPanel.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.Panel.html">uiextras.Panel</a></code> - for creating a more standard panel</li><li><code class="FUNCTION"><a href="uiextras.BoxPanel.html">uiextras.BoxPanel</a></code> - for creating a panel with boxed title</li></ul>
%@     
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.BoxPanel</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.HBox</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference2_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.HBox</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference1_4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference2_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.1: uiextras.HBox&nbsp;<a href="Function reference.html#2"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@
%@             <img src="Images/bigicon_HBox.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange elements horizontally in a single row</p>
%@             <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.HBox(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new horizontal box layout with all properties set to defaults.
%@             The output is a new layout object that can be used as the parent for other user-interface components.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.HBox(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.HBox properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>MinimumSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The minimum size in pixels for each of the child elements. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Sizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the child elements. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->b = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'Sizes'</code>, [-1 100 -2], <code class="STRING">'Spacing'</code>, 5 );</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/HBox.png"/></center>
%@                     </font></p>
%@                 
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->b1 = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b1, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; -->b2 = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, b1, <code class="STRING">'Padding'</code>, 5, <code class="STRING">'Spacing'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b2, <code class="STRING">'String'</code>, <code class="STRING">'Button1'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b2, <code class="STRING">'String'</code>, <code class="STRING">'Button2'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b1, <code class="STRING">'Sizes'</code>, [30 -1] );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/CombineBoxes.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.VBox.html">uiextras.VBox</a></code> - for creating a vertical arrangement</li><li><code class="FUNCTION"><a href="uiextras.HBoxFlex.html">uiextras.HBoxFlex</a></code> - for creating a horizontal arrangement with draggable dividers</li></ul>
%@         
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference1_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.TabPanel</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.VBox</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference2_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.VBox</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference2_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference2_3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.2: uiextras.VBox&nbsp;<a href="Function reference.html#2"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@             <img src="Images/bigicon_VBox.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange elements vertically in a single column</p>
%@             <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.VBox(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new vertical box layout with all properties set to defaults.
%@             The output is a new layout object that can be used as the parent for other user-interface components.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.VBox(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.VBox properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>MinimumSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The minimum size in pixels for each of the child elements. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Sizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the child elements. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->b = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'Sizes'</code>, [-1 100 -2], <code class="STRING">'Spacing'</code>, 5 );</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/VBox.png"/></center>
%@                     </font></p>
%@                 
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->b1 = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b1, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; -->b2 = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, b1, <code class="STRING">'Padding'</code>, 5, <code class="STRING">'Spacing'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b2, <code class="STRING">'String'</code>, <code class="STRING">'Button1'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b2, <code class="STRING">'String'</code>, <code class="STRING">'Button2'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b1, <code class="STRING">'Sizes'</code>, [30 -1] );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/CombineBoxes.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.HBox.html">uiextras.HBox</a></code> - for creating a horizontal arrangement</li><li><code class="FUNCTION"><a href="uiextras.VBoxFlex.html">uiextras.VBoxFlex</a></code> - for creating a vertical arrangement with draggable dividers</li></ul>
%@         
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.HBox</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.HBoxFlex</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference2_3.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.HBoxFlex</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference2_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference2_4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.3: uiextras.HBoxFlex&nbsp;<a href="Function reference.html#2"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@                 
%@                 
%@             <img src="Images/bigicon_HBoxFlex.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange elements horizontally with draggable dividers</p>
%@             <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.HBoxFlex()(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new horizontal box layout with draggable dividers and with all properties set to defaults.
%@             The output is a new layout object that can be used as the parent for other user-interface components.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.HBoxFlex()(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.HBoxFlex properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>MinimumSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The minimum size in pixels for each of the child elements. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ShowMarkings&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Show markings on the draggable dividers (default 'on').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Sizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the child elements. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( <code class="STRING">'Name'</code>, <code class="STRING">'uiextras.HBoxFlex example'</code> );
%@<!--&gt;&gt; -->b = <a href="uiextras.HBoxFlex.html"><code class="FUNCTION">uiextras.HBoxFlex</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'y'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'Sizes'</code>, [-1 100 -2 -1], <code class="STRING">'Spacing'</code>, 5 );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/HBoxFlex.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.HBox.html">uiextras.HBox</a></code> - for creating a horizontal arrangement</li><li><code class="FUNCTION"><a href="uiextras.VBoxFlex.html">uiextras.VBoxFlex</a></code> - for creating a vertical arrangement with draggable dividers</li></ul>
%@         
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.VBox</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.VBoxFlex</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference2_4.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.VBoxFlex</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference2_3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference2_5.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.4: uiextras.VBoxFlex&nbsp;<a href="Function reference.html#2"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@                 
%@                 
%@             <img src="Images/bigicon_VBoxFlex.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange elements vertically with draggable dividers</p>
%@             <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.VBoxFlex(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new vertical box layout with draggable dividers and with all properties set to defaults.
%@             The output is a new layout object that can be used as the parent for other user-interface components.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.VBoxFlex(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                    <dd>also sets one or more property values from the list below.</dd>
%@             </dl>
%@                    
%@             <h3>uiextras.VBoxFlex properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>MinimumSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The minimum size in pixels for each of the child elements. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ShowMarkings&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Show markings on the draggable dividers (default 'on').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Sizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the child elements. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing. The size of this vector must always match the number of elements (children).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( <code class="STRING">'Name'</code>, <code class="STRING">'uiextras.VBoxFlex example'</code> );
%@<!--&gt;&gt; -->b = <a href="uiextras.VBoxFlex.html"><code class="FUNCTION">uiextras.VBoxFlex</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'Background'</code>, <code class="STRING">'y'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'Sizes'</code>, [-1 100 -2 -1], <code class="STRING">'Spacing'</code>, 5 );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/VBoxFlex.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.VBox.html">uiextras.VBox</a></code> - for creating a vertical arrangement</li><li><code class="FUNCTION"><a href="uiextras.HBoxFlex.html">uiextras.HBoxFlex</a></code> - for creating a horizontal arrangement with draggable dividers</li></ul>
%@         
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.HBoxFlex</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.HButtonBox</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_5.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference2_5.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.HButtonBox</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference2_4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference2_6.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.5: uiextras.HButtonBox&nbsp;<a href="Function reference.html#2"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@
%@             <img src="Images/bigicon_HButtonBox.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange buttons horizontally in a single row</p>
%@             <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.HButtonBox(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>is a type of HBox specialised for
%@       arranging a row of buttons, check-boxes or similar graphical
%@       elements. All buttons are given equal size and by default are
%@       centered in the drawing area. The justification can be changed as
%@       required.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.HButtonBox(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.HButtonBox properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ButtonSize&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The size for the buttons (all are given equal size).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>HorizontalAlignment&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ left | center | right ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The horizontal position of the buttons.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>VerticalAlignment&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ top | middle | bottom ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The vertical position of the buttons.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->b = <a href="uiextras.HButtonBox.html"><code class="FUNCTION">uiextras.HButtonBox</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, 'One' );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, 'Two' );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, 'Three' );
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'ButtonSize'</code>, [130 35], <code class="STRING">'Spacing'</code>, 5 );</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/HButtonBox.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.VButtonBox.html">uiextras.VButtonBox</a></code> - for creating a vertical arrangement of buttons</li><li><code class="FUNCTION"><a href="uiextras.HBox.html">uiextras.HBox</a></code> - for creating a general horizontal arrangement</li></ul>
%@         
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.VBoxFlex</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_6.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.VButtonBox</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference2_6.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference2_6.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.VButtonBox</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference2_5.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference3_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.6: uiextras.VButtonBox&nbsp;<a href="Function reference.html#2"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@
%@             <img src="Images/bigicon_VButtonBox.png" align="left"/>
%@             <br clear="all"/>
%@             <p>Arrange buttons vertically in a single column</p>
%@             <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.VButtonBox(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>is a type of VBox specialised for
%@       arranging a column of buttons, check-boxes or similar graphical
%@       elements. All buttons are given equal size and by default are
%@       centered in the drawing area. The justification can be changed as
%@       required.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.VButtonBox(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.VButtonBox properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ButtonSize&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The size for the buttons (all are given equal size).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>HorizontalAlignment&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ left | center | right ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The horizontal position of the buttons.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>VerticalAlignment&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ top | middle | bottom ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The vertical position of the buttons.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->b = <a href="uiextras.VButtonBox.html"><code class="FUNCTION">uiextras.VButtonBox</code></a>( <code class="STRING">'Parent'</code>, f );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, 'One' );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, 'Two' );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, b, <code class="STRING">'String'</code>, 'Three' );
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( b, <code class="STRING">'ButtonSize'</code>, [130 35], <code class="STRING">'Spacing'</code>, 5 );</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/VButtonBox.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.HButtonBox.html">uiextras.HButtonBox</a></code> - for creating a horizontal arrangement of buttons</li><li><code class="FUNCTION"><a href="uiextras.VBox.html">uiextras.VBox</a></code> - for creating a general vertical arrangement</li></ul>
%@         
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_5.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.HButtonBox</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference3_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.Grid</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference3_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference3_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.Grid</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference2_6.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference3_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>3.1: uiextras.Grid&nbsp;<a href="Function reference.html#3"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@             <img src="Images/bigicon_Grid.png" align="left"/>
%@             <br clear="all"/>
%@           <p>Arrange elements in a two dimensional grid</p>
%@                        <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.Grid(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new new grid layout with all properties set to defaults. The number of rows and
%@                 columns to use is determined from the number of elements in the
%@                 RowSizes and ColumnSizes properties respectively. Child elements are
%@                 arranged down column one first, then column two etc. If there are insufficient
%@                 columns then a new one is added.
%@             The output is a new layout object that can be used as the parent for other user-interface components.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.Grid(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.Grid properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>RowSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the rows. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ColumnSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the columns. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->g = <a href="uiextras.Grid.html"><code class="FUNCTION">uiextras.Grid</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Spacing'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )
%@<!--&gt;&gt; --><a href="uiextras.Empty.html"><code class="FUNCTION">uiextras.Empty</code></a>( <code class="STRING">'Parent'</code>, g )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'c'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'y'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( g, <code class="STRING">'ColumnSizes'</code>, [-1 100 -2], <code class="STRING">'RowSizes'</code>, [-1 100] );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/Grid.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.GridFlex.html">uiextras.GridFlex</a></code> - for creating a grid arrangement with draggable dividers</li></ul>
%@
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_6.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference2_6.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.VButtonBox</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference3_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.GridFlex</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference3_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference3_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.GridFlex</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference3_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference4_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>3.2: uiextras.GridFlex&nbsp;<a href="Function reference.html#3"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@             <img src="Images/bigicon_GridFlex.png" align="left"/>
%@            <br clear="all"/>
%@            <p>Arrange elements in a two dimensional grid with draggable dividers</p>
%@                        <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.GridFlex(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates a new new grid layout with draggable dividers between elements. The number of rows and
%@                 columns to use is determined from the number of elements in the
%@                 RowSizes and ColumnSizes properties respectively. Child elements are
%@                 arranged down column one first, then column two etc. If there are insufficient
%@                 columns then a new one is added.
%@             The output is a new layout object that can be used as the parent for other user-interface components.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.GridFlex(</code><code class="INARG">&nbsp;prop</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.GridFlex properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BackgroundColor&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc colorspec"><code class="FUNCTION">colorspec</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>The color to use for exposed areas of the layout background. This can be an RGB triple (e.g. [0 0 1]) or a colour name (e.g. 'b').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Children&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle array</value></td><td valign="top" class="PROPERTYTABLE"><description>List of child objects within this layout (note that this can only be set to permutations of itself).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ColumnSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the columns. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>DeleteFcn&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value><a href="matlab:doc function_handle"><code class="FUNCTION">function_handle</code></a></value></td><td valign="top" class="PROPERTYTABLE"><description>Function to call when the layout is being deleted</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Enable&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is interaction with this layout enabled? Note that changing the enable property will cause all children contained to also be enabled/disabled, however since they can be individually re-enabled the state of this property does not reflect the state of the children. See the <a href="EnableExample.html">enable example</a> for more details.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Padding&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space around the outside of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>RowSizes&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>double vector</value></td><td valign="top" class="PROPERTYTABLE"><description>The size of each of the rows. Positive entries indicate fixed sizes in pixels, negative values indicate relative weights for resizing.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>ShowMarkings&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Show markings on the draggable dividers (default 'on').</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Spacing&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>positive integer</value></td><td valign="top" class="PROPERTYTABLE"><description>Number of pixels of extra space to leave between elements in the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->g = <a href="uiextras.GridFlex.html"><code class="FUNCTION">uiextras.GridFlex</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Spacing'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'b'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )
%@<!--&gt;&gt; --><a href="uiextras.Empty.html"><code class="FUNCTION">uiextras.Empty</code></a>( <code class="STRING">'Parent'</code>, g )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'c'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Background'</code>, <code class="STRING">'y'</code> )
%@<!--&gt;&gt; --><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( g, <code class="STRING">'ColumnSizes'</code>, [-1 100 -2], <code class="STRING">'RowSizes'</code>, [-1 -2] );</font></pre>         
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022">
%@                         <center><img src="Images/GridFlex.png"/></center>
%@                     </font></p>
%@                 
%@             
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.Grid.html">uiextras.Grid</a></code> - for creating a grid arrangement</li></ul>
%@
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference3_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference3_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.Grid</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.Empty</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference4_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.Empty</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference3_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference4_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.1: uiextras.Empty&nbsp;<a href="Function reference.html#4"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@            <p>Create an empty space</p>
%@                        <dl>
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.Empty(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>creates an empty space object that can be
%@    used in layouts to add gaps between other elements.</dd>
%@                 
%@                 <dt><code class="OUTARG">obj</code><code class="FUNCTION"> = uiextras.Empty(</code><code class="INARG">&nbsp;param</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;value</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;...</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>also sets one or more property values.</dd>
%@                 
%@             </dl>
%@             
%@                    
%@             <h3>uiextras.Empty properties</h3>
%@                 <center><table frame="box" rules="all" class="PROPERTYTABLE"><tr><th class="PROPERTYTABLE">Property</th><th class="PROPERTYTABLE">Value</th><th class="PROPERTYTABLE">Description</th></tr><tr><td valign="top" class="PROPERTYTABLE"><code>BeingDeleted&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>is the object in the process of being deleted.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Parent&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>handle</value></td><td valign="top" class="PROPERTYTABLE"><description>The handle of the parent figure or container.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Position&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[x y w h]</value></td><td valign="top" class="PROPERTYTABLE"><description>The position (x,y) and size (w,h) of the layout.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Tag&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>A string that can be used to identify this object later.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Type&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>string</value></td><td valign="top" class="PROPERTYTABLE"><description>the object type (class).</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Units&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ inches | centimeters | normalized | points | pixels | characters ]</value></td><td valign="top" class="PROPERTYTABLE"><description>The units of measurement for position the layout within its parent.</description></td></tr><tr><td valign="top" class="PROPERTYTABLE"><code>Visible&nbsp;</code></td><td valign="top" class="PROPERTYTABLE"><value>[ on | off ]</value></td><td valign="top" class="PROPERTYTABLE"><description>Is the object visible on screen.</description></td></tr></table></center>                 
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><!--&gt;&gt; -->f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<!--&gt;&gt; -->box = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Spacing'</code>, 5 );
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, box, <code class="STRING">'Background'</code>, <code class="STRING">'r'</code> )
%@<!--&gt;&gt; --><a href="uiextras.Empty.html"><code class="FUNCTION">uiextras.Empty</code></a>( <code class="STRING">'Parent'</code>, box )
%@<!--&gt;&gt; --><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Parent'</code>, box, <code class="STRING">'Background'</code>, <code class="STRING">'g'</code> )</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/Empty.png"/></center></font></p>
%@                 
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.HBox.html">uiextras.HBox</a></code> - for arranging widgets horizontally</li></ul>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference3_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference3_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.GridFlex</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">layoutVersion</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference4_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>layoutVersion</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference4_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference4_3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.2: layoutVersion&nbsp;<a href="Function reference.html#4"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@            <p>Get the toolbox version number and date</p>
%@                        <dl>
%@                 <dt><code class="OUTARG">V</code><code class="FUNCTION"> = layoutVersion(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>returns the version number as a string.</dd>
%@                 
%@                 <dt><code class="FUNCTION">[</code><code class="OUTARG">V</code><code class="FUNCTION">, </code><code class="OUTARG">D</code><code class="FUNCTION">] = layoutVersion(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>returns both the version string and the date of creation (format is ISO8601, i.e. YYYY-MM-DD)</dd>
%@                 
%@             </dl>
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">[v,d] = <a href="layoutVersion.html"><code class="FUNCTION">layoutVersion</code></a>()</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><code>v = <code class="STRING">'1.0'</code><br/>d = <code class="STRING">'2010-05-28'</code></code></font></p>
%@                 
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="layoutRoot.html">layoutRoot</a></code> - returns the folder containing the GUI layout toolbox</li></ul>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.Empty</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">layoutRoot</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference4_3.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>layoutRoot</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference4_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference4_4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.3: layoutRoot&nbsp;<a href="Function reference.html#4"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@                 
%@            <p>returns the folder containing the GUI layout toolbox</p>
%@                        <dl>
%@                 <dt><code class="OUTARG">folder</code><code class="FUNCTION"> = layoutRoot(</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>returns the full path to the folder containing the GUI layout toolbox.</dd>
%@                 
%@             </dl>
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">folder = <a href="layoutRoot.html"><code class="FUNCTION">layoutRoot</code></a>()</font></pre>
%@                     <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><code>folder = <code class="STRING">'C:\Temp\LayoutToolbox1.0'</code></code></font></p>
%@                 
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="layoutVersion.html">layoutVersion</a></code> - for getting the toolbox version number and date</li></ul>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">layoutVersion</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.set</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference4_4.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.set</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference4_3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Function reference4_5.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.4: uiextras.set&nbsp;<a href="Function reference.html#4"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@            <p>Store a default property value in a parent object</p>
%@                        <dl>
%@                 <dt><code class="FUNCTION">uiextras.set(</code><code class="INARG">&nbsp;hObj</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;propName</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;propValue</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>stores a default property
%@value in the object hObj such that children created inside it of the
%@correct class will use the specified value (<code class="INARG">propValue</code>) for
%@the specified property by default. The property name should take the
%@form "DefaultClassProperty", for example to set the default "TitleColor"
%@for the class "uiextras.BoxPanel", use "DefaultBoxPanelTitleColor".
%@Note that using the special object handle 0 sets the default for all
%@new figures.</dd>
%@                 
%@             </dl>
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( <a href="matlab:doc gcf"><code class="FUNCTION">gcf</code></a>(), <code class="STRING">'DefaultBoxPanelTitleColor'</code>, <code class="STRING">'g'</code> )</font></pre>
%@                 
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( 0, <code class="STRING">'DefaultHBoxPadding'</code>, 5 )</font></pre>
%@                 
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.get.html">uiextras.get</a></code> - for retrieving a default property value from a parent object</li></ul>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">layoutRoot</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.get</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Function reference4_5.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Function reference4_5.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>uiextras.get</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Function reference.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Function reference</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Function reference4_4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="index.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.5: uiextras.get&nbsp;<a href="Function reference.html#4"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                 
%@                 
%@            <p>Retrieve a default property value from a parent object</p>
%@                        <dl>
%@                 <dt><code class="OUTARG">propValue</code><code class="FUNCTION"> = uiextras.get(</code><code class="INARG">&nbsp;hObj</code><code class="FUNCTION">,</code><code class="INARG">&nbsp;propName</code><code class="FUNCTION">&nbsp;)</code></dt>
%@                 <dd>retrieves a default property
%@value from the object hObj. Note that the hObj must be a valid graphics
%@container object such as a uipanel, figure or the special flag 0 (the
%@overall environment). The property name should take the form
%@"DefaultClassProperty", for example to get the default "TitleColor" for
%@the class "uiextras.BoxPanel", use "DefaultBoxPanelTitleColor".If no
%@default has been set for the specified property an error is thrown.</dd>                 
%@             </dl>
%@             
%@             <h3>For example:</h3>
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">p = <a href="uiextras.get.html"><code class="FUNCTION">uiextras.get</code></a>( <a href="matlab:doc gcf"><code class="FUNCTION">gcf</code></a>(), <code class="STRING">'DefaultBoxPanelTitleColor'</code> )</font></pre>
%@                 
%@                     <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">p = <a href="uiextras.get.html"><code class="FUNCTION">uiextras.get</code></a>( 0, <code class="STRING">'DefaultHBoxPadding'</code> )</font></pre>
%@                 
%@             <br/><b>See also:</b><ul><li><code class="FUNCTION"><a href="uiextras.set.html">uiextras.set</a></code> - for setting a default property value in a parent object</li></ul>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Function reference4_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">uiextras.set</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/GUI Layout.html__ -->
%@<html><head>
%@  <meta http-equiv="Refresh" content="0;url=index.html"/>
%@  <meta author="The MathWorks Ltd."/>
%@  <meta copyright="2014 The MathWorks Ltd."/>
%@</head></html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Getting Started.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Getting Started</title>
%@   </head>
%@
%@   
%@            
%@   <body>
%@      
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="index.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>GUI Layout Toolbox 1.17</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="index.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Getting Started1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@      <h1>Getting Started&nbsp;<A href="index.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h1>
%@    <p>
%@        This chapter gives an overview of this package, including its purpose,
%@how to install it and any known issues at the time of release.
%@    </p>
%@
%@
%@<!-- ****************************************************************** -->
%@
%@  
%@
%@
%@<!-- ****************************************************************** -->
%@
%@  
%@
%@
%@<!-- ****************************************************************** -->
%@  
%@
%@
%@<!-- ****************************************************************** -->
%@  
%@
%@
%@<!-- ****************************************************************** -->
%@  
%@
%@<!-- ****************************************************************** -->
%@  
%@
%@      <br clear="all"/>
%@      <a name="Contents"/><h2>Contents</h2>
%@      <ul class="contents">
%@         <li>1. <a href="Getting Started1.html">What is the GUI Layout Toolbox?</a></li>
%@         <li>2. <a href="Getting Started2.html">Release Notes</a></li>
%@         <li>3. <a href="Getting Started3.html">Installation</a></li>
%@         <li>4. <a href="Getting Started4.html">Support</a></li>
%@         <li>5. <a href="Getting Started5.html">Acknowledgements</a></li>
%@      </ul>
%@              
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">What is the GUI Layout Toolbox?</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Getting Started1.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>What is the GUI Layout Toolbox?</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Getting Started.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Getting Started</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Getting Started.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Getting Started2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>1: What is the GUI Layout Toolbox?&nbsp;<A href="Getting Started.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@    
%@<P>
%@The GUI Layout Toolbox provides a package of MATLAB objects that allow for complex
%@arrangement of graphical user interface elements within a figure window. The
%@main capabilities provided are:
%@<UL>
%@  <LI>Automatic element arrangement horizontally, vertically or in grids</LI>
%@  <LI>Ability to specify fixed sizes or resizing weights for each element</LI>
%@  <LI>Ability to "nest" layouts to produce virtually any element arrangement</LI>
%@  <LI>Divider bars for user-resizing of elements</LI>
%@</UL>
%@</P>
%@<P>
%@These element arrangement capabilities are designed to match those found as
%@standard in other user-interface toolkits such as Java Swing, GTK, QT etc.
%@</P>
%@    
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Getting Started</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Release Notes</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Getting Started2.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Release Notes</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Getting Started.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Getting Started</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Getting Started1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Getting Started3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>2: Release Notes&nbsp;<A href="Getting Started.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@    <p>
%@The GUI Layout Toolbox version numbers take the form <code>major.minor</code>. The
%@        current version you have installed can be checked by typing <a href="matlab:doc ver"><code class="FUNCTION">ver</code></a>
%@        or <a href="layoutVersion.html"><code class="FUNCTION">layoutVersion</code></a> at the MATLAB command prompt.
%@    </p>
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@
%@    
%@    
%@    
%@
%@    
%@
%@    
%@
%@    
%@     
%@
%@  
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@         <li>2.1. <a href="#1">Version 1.17 (March 2014)</a></li>
%@         <li>2.2. <a href="#2">Version 1.16 (December 2013)</a></li>
%@         <li>2.3. <a href="#3">Version 1.15 (November 2013)</a></li>
%@         <li>2.4. <a href="#4">Version 1.14 (September 2013)</a></li>
%@         <li>2.5. <a href="#5">Version 1.13 (April 2013)</a></li>
%@         <li>2.6. <a href="#6">Version 1.12 (February 2013)</a></li>
%@         <li>2.7. <a href="#7">Version 1.11 (December 2012)</a></li>
%@         <li>2.8. <a href="#8">Version 1.10 (July 2011)</a></li>
%@         <li>2.9. <a href="#9">Version 1.9 (February 2011)</a></li>
%@         <li>2.10. <a href="#10">Version 1.8 (November 2010)</a></li>
%@         <li>2.11. <a href="#11">Version 1.7 (October 2010)</a></li>
%@         <li>2.12. <a href="#12">Version 1.6 (September 2010)</a></li>
%@         <li>2.13. <a href="#13">Version 1.5 (July 2010)</a></li>
%@         <li>2.14. <a href="#14">Version 1.4 (July 2010)</a></li>
%@         <li>2.15. <a href="#15">Version 1.3 (July 2010)</a></li>
%@         <li>2.16. <a href="#16">Version 1.2 (June 2010)</a></li>
%@         <li>2.17. <a href="#17">Version 1.1 (June 2010)</a></li>
%@         <li>2.18. <a href="#18">Version 1.0 (May 2010)</a></li>
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@      </ul>
%@<br clear="all"/><hr/>
%@          
%@      <h2><a name="1">&nbsp;</a>2.1: Version 1.17 (March 2014)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Allow version number retrieval using ver('layout')</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="2">&nbsp;</a>2.2: Version 1.16 (December 2013)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Misc fixes in doc (typos etc.)</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="3">&nbsp;</a>2.3: Version 1.15 (November 2013)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Misc fixes for TabPanel edge cases (empty etc.)</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="4">&nbsp;</a>2.4: Version 1.14 (September 2013)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Add BorderType property to BoxPanel</li>
%@        <li>Fix support for appdata in R2013b </li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="5">&nbsp;</a>2.5: Version 1.13 (April 2013)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Improve handling of colorbars</li>
%@        <li>Fix bug in reparenting children</li>
%@        <li>Fix background color of BoxPanel icons</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="6">&nbsp;</a>2.6: Version 1.12 (February 2013)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Fix bug when axes were deleted from layouts in R2013a</li>
%@        <li>Improve handling of legends</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="7">&nbsp;</a>2.7: Version 1.11 (December 2012)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Fix bug where axes disappear from tabs</li>
%@        <li>Fix bug where axes position is corrupted if tabs become too small to draw</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="8">&nbsp;</a>2.8: Version 1.10 (July 2011)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Add <code>TabEnable</code> property for controlling the enabled state of individual tabs</li>
%@        <li>Revert to normalized units for all layouts</li>
%@        <li>Fix bug with mouse-over events</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="9">&nbsp;</a>2.9: Version 1.9 (February 2011)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Add <code>MinimumSize</code> properties to Boxes and Grids</li>
%@        <li>Minor improvements to mouse-over and redraw speed</li>
%@        <li>Fix bug with ordering of controls that sometimes prevented grid dividers being dragged</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="10">&nbsp;</a>2.10: Version 1.8 (November 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Add PreviousChild event-data to <a href="uiextras.TabPanel.html"><code class="FUNCTION">uiextras.TabPanel</code></a> Callback</li>
%@        <li>Add guards to prevent errors when focus is lost whilst dragging a flexible divider</li>
%@        <li>Fix bug when trying to print figures containing flexible layouts</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="11">&nbsp;</a>2.11: Version 1.7 (October 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Improve enable behavior when used with custom widgets</li>
%@        <li>Add an explanation of cell arrays used to pass extra function arguments</li>
%@        <li>Fix bug in unit-setting of children added to layouts (improves axes handling)</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="12">&nbsp;</a>2.12: Version 1.6 (September 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Make panel "SelectedChild" property observable for use with <a href="matlab:doc event.proplistener"><code class="FUNCTION">event.proplistener</code></a></li>
%@        <li>Fix bug with dividers disappearing when GridFlex's are nested</li>
%@        <li>Fix clipping bug with Tab label text drawing outside parent container</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="13">&nbsp;</a>2.13: Version 1.5 (July 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Add DeleteFcn property that allows a user function to be called before a layout is deleted.</li>
%@        <li>Improve <a href="PanelDock.html">Docking</a> and <a href="PanelMinimize.html">Minimizing</a> examples.</li>
%@        <li>Fix flexible layout divider positions when figure units are not set to pixels (e.g. in GUIDE apps).</li>
%@        <li>Add documentation describing how to use layouts as part of a GUIDE-built GUI.</li>
%@        <li>Fix a bug where ButtonBoxes caused a new window to open if their parent had HandleVisibility off</li>
%@    </ul>
%@    <br clear="all"/><hr/>
%@          
%@      <h2><a name="14">&nbsp;</a>2.14: Version 1.4 (July 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Add ability to set defaults for property values. See <a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>.</li>
%@    </ul>
%@        <br clear="all"/><hr/>
%@          
%@      <h2><a name="15">&nbsp;</a>2.15: Version 1.3 (July 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Fix bug with <a href="uiextras.Panel.html"><code class="FUNCTION">uiextras.Panel</code></a> mis-managing its title when not specified at construction</li>
%@        <li>Fix bug with <a href="uiextras.Empty.html"><code class="FUNCTION">uiextras.Empty</code></a> widget going out of scope</li>
%@        <li>Fix bug when removing a child from <a href="uiextras.TabPanel.html"><code class="FUNCTION">uiextras.TabPanel</code></a></li>
%@        <li>Prevent legends being hijacked by the layout managers!</li>
%@        <li>Add option for showing markings on the movable dividers for flexible containers (<a href="uiextras.HBoxFlex.html"><code class="FUNCTION">uiextras.HBoxFlex</code></a>,<a href="uiextras.VBoxFlex.html"><code class="FUNCTION">uiextras.VBoxFlex</code></a>,<a href="uiextras.GridFlex.html"><code class="FUNCTION">uiextras.GridFlex</code></a>)</li>
%@        <li>Add documentation on <a href="Compiling.html">building deployed exectuables</a></li>
%@        <li>Tidy up help H1 lines in all files</li>
%@    </ul>
%@        <br clear="all"/><hr/>
%@          
%@      <h2><a name="16">&nbsp;</a>2.16: Version 1.2 (June 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>Update to the first release:</p>
%@    <ul>
%@        <li>Ensure layout objects are deleted when the graphics are deleted</li>
%@        <li>Add "ancestor" method</li>
%@        <li>Fix bug in GridFlex divider positioning</li>
%@        <li>Remove "&gt;&gt;" from examples in documentation</li>
%@        <li>Improve formatting of examples in documentation</li>
%@    </ul>
%@        <br clear="all"/><hr/>
%@          
%@      <h2><a name="17">&nbsp;</a>2.17: Version 1.1 (June 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@        <p>Update to the first release:</p>
%@        <ul>
%@            <li>Added missing <a href="layoutRoot.html"><code class="FUNCTION">layoutRoot</code></a> and <a href="layoutVersion.html"><code class="FUNCTION">layoutVersion</code></a> functions.</li>
%@            <li>Fix various typographical errors in the documentation.</li>
%@        </ul>
%@        <br clear="all"/><hr/>
%@          
%@      <h2><a name="18">&nbsp;</a>2.18: Version 1.0 (May 2010)&nbsp;<a href="Getting Started2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@        <p>Initial public release. Includes:</p>
%@        <ol>
%@            <li>Panels<ul>
%@                    <li><a href="uiextras.Panel.html"><code class="FUNCTION">uiextras.Panel</code></a>: Arrange a single element inside a standard panel</li>
%@                    <li><a href="uiextras.CardPanel.html"><code class="FUNCTION">uiextras.CardPanel</code></a>: Show one element (card) from a list</li>
%@                    <li><a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>: Arrange a single element in a panel with boxed title</li>
%@                    <li><a href="uiextras.TabPanel.html"><code class="FUNCTION">uiextras.TabPanel</code></a>: Arrange elements in a panel with tabs for selecting which is visible</li>
%@            </ul></li>
%@            <li>Boxes<ul>
%@                <li><a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>: Arrange elements horizontally in a single row</li>
%@                <li><a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>: Arrange elements vertically in a single column</li>
%@                <li><a href="uiextras.HBoxFlex.html"><code class="FUNCTION">uiextras.HBoxFlex</code></a>: Arrange elements horizontally with draggable dividers</li>
%@                <li><a href="uiextras.VBoxFlex.html"><code class="FUNCTION">uiextras.VBoxFlex</code></a>: Arrange elements vertically with draggable dividers</li>
%@                <li><a href="uiextras.HButtonBox.html"><code class="FUNCTION">uiextras.HButtonBox</code></a>: Arrange buttons horizontally in a single row</li>
%@                <li><a href="uiextras.VButtonBox.html"><code class="FUNCTION">uiextras.VButtonBox</code></a>: Arrange buttons vertically in a single column</li>
%@            </ul></li>
%@            <li>3: Grids<ul>
%@                <li><a href="uiextras.Grid.html"><code class="FUNCTION">uiextras.Grid</code></a>: Arrange elements in a two dimensional grid</li>
%@                <li><a href="uiextras.GridFlex.html"><code class="FUNCTION">uiextras.GridFlex</code></a>: Arrange elements in a two dimensional grid with draggable dividers</li>
%@            </ul></li>
%@        </ol>
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">What is the GUI Layout Toolbox?</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Installation</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Getting Started3.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Installation</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Getting Started.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Getting Started</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Getting Started2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Getting Started4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>3: Installation&nbsp;<A href="Getting Started.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@       
%@    
%@    <p>
%@        To use this toolbox it must be added to the MATLAB path. Scripts are provided
%@        to do this in two ways:
%@    </p>
%@    <p>
%@        <b>From MATLAB:</b>
%@        <OL>
%@            <LI><b>From MATLAB:</b> from the folder containing the toolbox, run the "install.m" function</LI>
%@            <LI><b>From Windows Explorer:</b> from the folder containing the toolbox, double-click the "install.bat" icon</LI>
%@        </OL>
%@    </p>
%@    <p>
%@        To uninstall (i.e. remove it from the path), run the function 'uninstall' in MATLAB, also found in the toolbox folder.
%@    </p>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Release Notes</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Support</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Getting Started4.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Support</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Getting Started.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Getting Started</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Getting Started3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="Getting Started5.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>4: Support&nbsp;<A href="Getting Started.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@       
%@    
%@    <p>
%@        This toolbox is not a MathWorks supported product. However, if you
%@        have problems, suggestions or other comments, please contact the
%@        authors:
%@    </p>
%@    <ul>
%@        <li><a href="mailto:ben.tordoff@mathworks.co.uk">Ben Tordoff</a></li>
%@        <li><a href="mailto:david.sampson@mathworks.co.uk">David Sampson</a></li>
%@    </ul>
%@    <p>If you like this toolbox, help others to find it by leaving a rating
%@        and comment on the <a href="http://www.mathworks.com/matlabcentral/fileexchange/27758">MATLAB Central File Exchange</a>.
%@    </p>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Installation</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Acknowledgements</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="Getting Started5.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Getting Started5.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Acknowledgements</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="Getting Started.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>Getting Started</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="Getting Started4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="index.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>5: Acknowledgements&nbsp;<A href="Getting Started.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@       
%@    <p>
%@        This toolbox has been evolving for several years and is based on the work of many engineering consultants
%@        at MathWorks, including (but not limited to):
%@    </p>
%@    <ul>
%@        <li>Ben Tordoff</li>
%@        <li>David Sampson</li>
%@        <li>Paul Kerr-Delworth</li>
%@        <li>Malcolm Wood</li>
%@        <li>Brad Phelan</li>
%@    </ul>
%@    <p>Many thanks to those who have shared their code and expertise over the years.</p>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="Getting Started4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Support</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/HierarchyExample.html__ -->
%@                        <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide1_4.html#1.4.1"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/LayoutsGUIDE.html__ -->
%@                <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide6.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/PanelDock.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide5_3.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/PanelHelp.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide5_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/PanelMinimize.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide5_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/SystemDefaults.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide4_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>User guide</title>
%@   </head>
%@
%@   
%@            
%@   <body>
%@      
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="index.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>GUI Layout Toolbox 1.17</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="index.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@      <h1>User guide&nbsp;<A href="index.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h1>
%@    <p>
%@        This chapter describes the purpose and overall design of the layout
%@        tools that the toolbox provides. It also provides some examples of
%@        creating some user interfaces using layouts.
%@    </p>
%@
%@    <!-- ****************************************************************** -->
%@        
%@    
%@<!-- ****************************************************************** -->
%@
%@
%@<!-- ****************************************************************** -->
%@
%@
%@
%@    
%@<!-- ****************************************************************** -->
%@
%@      
%@        
%@        
%@<!-- ****************************************************************** -->
%@
%@
%@
%@
%@
%@
%@
%@    <!-- ****************************************************************** -->
%@    
%@        
%@
%@    
%@    
%@    <!-- ****************************************************************** -->
%@    
%@        
%@        
%@        
%@        
%@
%@    <!-- ****************************************************************** -->
%@    
%@<!-- ****************************************************************** -->
%@
%@      <br clear="all"/>
%@      <a name="Contents"/><h2>Contents</h2>
%@      <ul class="contents">
%@         <li>1. <a href="User guide1.html">Understanding layouts</a></li>
%@         <li>2. <a href="User guide2.html">Positioning Axes</a></li>
%@         <li>3. <a href="User guide3.html">Enable and Visible</a></li>
%@         <li>4. <a href="User guide4.html">Using property defaults</a></li>
%@         <li>5. <a href="User guide5.html">Advanced maneuvers with panels</a></li>
%@         <li>6. <a href="User guide6.html">Using layouts inside GUIDE GUIs</a></li>
%@         <li>7. <a href="User guide7.html">Deploying GUIs using the MATLAB Compiler</a></li>
%@         <li>8. <a href="User guide8.html">A complete example</a></li>
%@      </ul>
%@              
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Understanding layouts</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide1.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Understanding layouts</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide1_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>1: Understanding layouts&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@            <p>The purpose of a "layout" is to manage the positioning of one
%@                or more user-interface components. This means that instead of
%@                worrying about the exact position of each user interface component
%@                you instead worry about the relative positioning of them; are they
%@            arranged in a vertical list, horizontal list, a grid pattern, etc.</p>
%@        <p>The best way to understand what layouts are and why they are a good user-interface
%@            design tool is to see some examples. The sections below go through the
%@            basics of building an interface using layouts and how to build complex
%@        interfaces using them.</p>
%@            
%@            
%@            
%@  
%@
%@            
%@            
%@            
%@        
%@        
%@    
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@         <li>1.1. <a href="User guide1_1.html">Layout basics</a></li>
%@         <li>1.2. <a href="User guide1_2.html">Types of layout</a></li>
%@         <li>1.3. <a href="User guide1_3.html">Sizes and units</a></li>
%@         <li>1.4. <a href="User guide1_4.html">Layout heirarchies</a></li>
%@         <li>1.5. <a href="User guide1_5.html">Why use layouts?</a></li>
%@      </ul>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">User guide</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Layout basics</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide1_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Layout basics</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide1_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.1: Layout basics&nbsp;<a href="User guide1.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                <p>To see how layouts work, let's use the most basic layout,
%@                    a horizontal list (or box). We first create a window:</p>
%@                    <example>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();</font></pre>
%@                        <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example1.png"/></center></font></p>
%@                    </example>
%@
%@                <p>Now let's create the horizontal layout and add it to the figure. Note
%@            that in common with other MATLAB graphics objects, one object is added to
%@        another by setting the "Parent" property - this will automatically adjust the list
%@    of "Children" in the parent object. The job of a horizontal box layout is to arrange
%@    its contents in a horizontal line, setting the position of each element to best fill
%@    the space:</p>
%@                <example>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">layout = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( 'Parent', f );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example1.png"/></center></font></p>
%@</example>
%@                <p>Nothing's changed! That's because the layout is for arranging
%@            other user-interface components - it doesn't draw anything itself. Let's
%@        add some buttons. Note how after creating each button the existing contents
%@    of the box make room for the new addition; we don't need to set the position of
%@    any user-interface component!</p>
%@                <example>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 1', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 2', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 3', 'Parent', layout );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example2.png"/>.<img src="Images/basics_example3.png"/>.<img src="Images/basics_example4.png"/></center></font></p>
%@</example>
%@                <p>Other layouts work in exactly the same way, although visually
%@            the end-result is quite different:</p>
%@                <example>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@layout = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( 'Parent', f );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 1', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 2', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 3', 'Parent', layout );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example_vbox.png"/></center></font></p>
%@                </example>
%@                <example>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@layout = <a href="uiextras.TabPanel.html"><code class="FUNCTION">uiextras.TabPanel</code></a>( 'Parent', f );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 1', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 2', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 3', 'Parent', layout );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example_tab.png"/></center></font></p>
%@                </example>
%@                
%@            
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Understanding layouts</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Types of layout</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide1_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Types of layout</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide1_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide1_3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.2: Types of layout&nbsp;<a href="User guide1.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@      <p>The layouts in this toolbox come in three forms:</p>
%@      <ol>
%@          <li><b>Panels</b>: show a single child element with some decoration. Other children
%@          of the layout are hidden from view. The visible child can be switched. Available
%@          panels include 
%@          <a href="uiextras.Panel.html">Panel</a>,
%@          <a href="uiextras.CardPanel.html">CardPanel</a>,
%@          <a href="uiextras.BoxPanel.html">BoxPanel</a> and
%@          <a href="uiextras.TabPanel.html">TabPanel</a>. </li>
%@          
%@          <li><b>Boxes</b>: arrange children linearly in a single row or column. Available boxes include
%@          <a href="uiextras.HBox.html">HBox</a>,
%@          <a href="uiextras.VBox.html">VBox</a>,
%@          <a href="uiextras.HBoxFlex.html">HBoxFlex</a> and
%@          <a href="uiextras.VBoxFlex.html">VBoxFlex</a>. </li>
%@          
%@          <li><b>Grids</b>: (also known as tables) arrange children in a two-dimensional grid. Available grids include
%@          <a href="uiextras.Grid.html">Grid</a> and
%@          <a href="uiextras.GridFlex.html">GridFlex</a>. </li>
%@          
%@      </ol>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Layout basics</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Sizes and units</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide1_3.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Sizes and units</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide1_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide1_4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.3: Sizes and units&nbsp;<a href="User guide1.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                <p>In the previous section we noted that when using layouts
%@                    you never need to set the position or size of a user-interface
%@                    component yourself - the layouts take care of it. So how do
%@                you control the sizes of the components?</p>
%@                <p>Each layout that arranges multiple items within its drawing area
%@                    has a sizing property: for horizontal and vertical boxes this
%@                    is called <code>Sizes</code>; for grids we have <code>RowSizes</code>
%@                and <code>ColumnSizes</code>. These all obey the same convention:</p>
%@                <ol>
%@                    <li>Positive numbers indicate sizes in pixels (similar to "pixel" units)</li>
%@                    <li>Negative numbers indicate a weighting for variable sizing (similar to "normalized" units)</li>
%@                </ol>
%@                <p>By default all sizes are set to -1 (variable size with unit weighting).</p>
%@                <p>Let's take a simple example:</p>
%@                <example>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@layout = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( 'Parent', f );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 1', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 2', 'Parent', layout );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'String', 'Button 3', 'Parent', layout );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example4.png"/></center></font></p>
%@</example>
%@                <p>We can set the middle element to be twice as wide as the others
%@            (but still variable width) by setting its weight to -2 with the others at -1:</p>
%@                <example>
%@                    <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">layout.Sizes = [-1 -2 -1]</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example5.png"/></center></font></p>
%@</example>
%@                <p>Alternatively we might want the first element to have a 
%@                fixed width of 100 pixels with the others filling any remaining 
%@                space equally:</p>
%@                <example>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">layout.Sizes = [100 -1 -1]</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/basics_example6.png"/></center></font></p>
%@</example>
%@
%@                <p>This ability to mix fixed and variable sized elements is
%@            crucial in interface design. It really comes into its own when building
%@        a hierarchy of layouts, described next.</p>
%@                
%@            
%@        
%@            <br clear="all"/><hr/><h3 class="hbg"><a name="">&nbsp;</a><a name="1.3.1">
%@                        &nbsp;</a>1.3.1: 
%@                        Minimum sizes&nbsp;<a href="#Top"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h3>
%@                <p>Many of the multi-element layouts also provide a <code>MinimumSizes</code>
%@                    property to prevent an element becoming too small. This is measured in
%@                    pixels and defaults to one pixel. If the specified minimum sizes cannot fit
%@                within the available space then all element sizes are reduced to fit.</p>
%@            
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Types of layout</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Layout heirarchies</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide1_4.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Layout heirarchies</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide1_3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide1_5.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.4: Layout heirarchies&nbsp;<a href="User guide1.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@                <p>Consider the following simple interface:</p>
%@                <center><img src="Images/why_layout1.png"/></center>
%@                <p>Instead of thinking of this in terms of three elements that need
%@                    positioning, we can break it up into two simple linear ("box") arrangements:
%@                    a vertical box with the axes at the top and a control area at the bottom and
%@                a horizontal box containing two buttons:</p>
%@                <center><img src="Images/why_layout_anno1.png"/>.<img src="Images/why_layout_anno2.png"/></center>
%@                <p>By placing the second layout (horizontal box) inside the first (vertical box)
%@                    we arrive at the complete layout. Since the sizes of the elements in each list
%@                    can be set to be fixed or flexible we can achieve a user-interface that is not just
%@                arranged correctly when created, but also behaves well when resized.</p>
%@                <center><img src="Images/why_layout2.png"/></center>
%@                <p>Note that the buttons have stayed fixed height as the window grows and the
%@                axes grow to fill the remaining space.</p>
%@                
%@                
%@<br clear="all"/><hr/><h3 class="hbg"><a name="HierarchyExample">&nbsp;</a><a name="1.4.1">
%@                        &nbsp;</a>1.4.1: 
%@                        Code:&nbsp;<a href="#Top"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h3>
%@                <p>The example above can be created programmically pretty 
%@                much as described in text 
%@                (the completed example code is here: 
%@                [ <a href="Examples/hierarchyexample.m">view</a>
%@                | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','hierarchyexample.m'))">edit</a>
%@                | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); hierarchyexample; cd(p)">run</a> ]
%@                )</p>
%@                <p><b>1. Open a window</b></p>
%@                <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Position', 200*ones(1,4) );</font></pre></example>
%@                <p><b>2. Create the first layout (vertical box)</b><br/>Inside this vertical box
%@            we place the axes</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">vbox = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( 'Parent', f );
%@axes( 'Parent', vbox );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/why_layout0_1.png"/></center></font></p>
%@                </example>
%@                <p><b>3. Create the second layout (horizontal box)</b><br/>Inside this horizontal box
%@            we place two buttons</p>
%@<example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">hbox = <a href="uiextras.HButtonBox.html"><code class="FUNCTION">uiextras.HButtonBox</code></a>( 'Parent', vbox, 'Padding', 5 );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', hbox, ...
%@    'String', 'Button 1' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', hbox, ...
%@    'String', 'Button 2' );</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/why_layout0_2.png"/></center></font></p>
%@                </example>
%@    <p><b>4. Set the sizes</b><br/>We want the axes to grow with the window so
%@    set the first size to be -1 (which means variable size with wieght 1) and the buttons to stay fixed height so set the
%@second size to 35 (fixed height of 35 pixels)</p>
%@<example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">set( vbox, 'Sizes', [-1 35] )</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/why_layout1.png"/></center></font></p>
%@                </example>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Sizes and units</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Why use layouts?</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide1_5.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide1_5.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Why use layouts?</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide1_4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>1.5: Why use layouts?&nbsp;<a href="User guide1.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>MATLAB ships with a GUI design tool called <a href="matlab:doc GUIDE"><code class="FUNCTION">GUIDE</code></a>. This
%@        doesn't use layouts, but forces users to manually position each element. This approach
%@    is a much faster way to build simple user-interfaces, so why would you want to
%@use layouts?</p>
%@            <p>The over-riding reason for using layouts or layout managers is
%@            to gain control of the resizing behaviour of the interface without
%@            having to write a complex "ResizeFcn". If you simply position user-interface elements
%@            directly (either using <a href="matlab:doc GUIDE"><code class="FUNCTION">GUIDE</code></a> or programmatically), you
%@            have two choices about what happens when the window resizes:
%@            </p>
%@                <h3>For example:</h3>
%@                        <para><b>1. The user-interface components scale with the window (normalised units)</b><br/>We didn't really want the buttons to grow but everything resizes in proportion.</para>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Position', 200*ones(1,4) );
%@<a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( 'Parent', f, ...
%@    'Units', 'Normalized', ...
%@    'OuterPosition', [0.02 0.2 0.96 0.8] );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', f, ...
%@    'Units', 'Normalized', ...
%@    'Position', [0.02 0.02 0.46 0.16], ...
%@    'String', 'Button 1' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', f, ...
%@    'Units', 'Normalized', ...
%@    'Position', [0.52 0.02 0.46 0.16], ...
%@    'String', 'Button 2' );</font></pre>
%@                        <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/why_normalized1.png"/>.<img src="Images/why_normalized2.png"/></center></font></p>
%@                    
%@                        <para><b>2. The user-interface components stay fixed and the window resize creates empty space (pixel units)</b><br/>Although the buttons don't now grow, neither does the axes, which looks very odd.</para>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Position', 200*ones(1,4) );
%@<a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( 'Parent', f, ...
%@    'Units', 'Pixels', ...
%@    'OuterPosition', [10 35 190 175] );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', f, ...
%@    'Units', 'Pixels', ...
%@    'Position', [5 5 90 25], ...
%@    'String', 'Button 1' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', f, ...
%@    'Units', 'Pixels', ...
%@    'Position', [105 5 90 25], ...
%@    'String', 'Button 2' );</font></pre>
%@                        <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/why_fixed1.png"/>.<img src="Images/why_fixed2.png"/></center></font></p>
%@                    
%@                <p>Neither of these alternatives is particularly useful for a serious
%@                user-interface. Typically there are user-interface components that should
%@                be fixed size: icons, buttons, selectors etc; and others that should resize
%@                with the window: graphs, images, prose text etc. To achieve this one needs
%@                to be able to specify which interface components should be fixed size and
%@                which variable. Over the last two decades, layouts have been shown to be
%@            the method of choice for achieving this.</p>
%@                <h3>For example:</h3>
%@                        <para>Using layouts, some user-interface components scale with the window, others stay fixed</para>
%@                        <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Position', 200*ones(1,4) );
%@vbox = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( 'Parent', f );
%@axes( 'Parent', vbox );
%@hbox = <a href="uiextras.HButtonBox.html"><code class="FUNCTION">uiextras.HButtonBox</code></a>( 'Parent', vbox, 'Padding', 5 );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', hbox, ...
%@    'String', 'Button 1' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', hbox, ...
%@    'String', 'Button 2' );
%@set( vbox, 'Sizes', [-1 35] )</font></pre>
%@                        <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/why_layout1.png"/>.<img src="Images/why_layout2.png"/></center></font></p>
%@                    
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Layout heirarchies</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Positioning Axes</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide2.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Positioning Axes</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide1_5.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide2_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>2: Positioning Axes&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@        
%@        <p>
%@            Unlike other MATLAB user interface components, <a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>
%@            have two position properties: "Position" and "OuterPosition". This
%@            means one has some extra options as to how the layout will
%@            arrange the axes.
%@        </p>
%@        
%@        
%@        
%@        
%@    
%@
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@         <li>2.1. <a href="User guide2_1.html">Position vs OuterPosition</a></li>
%@         <li>2.2. <a href="User guide2_2.html">Axes inside layouts</a></li>
%@      </ul>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_5.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide1_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Why use layouts?</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide2_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Position vs OuterPosition</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide2_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide2_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Position vs OuterPosition</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide2_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.1: Position vs OuterPosition&nbsp;<a href="User guide2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>Typically one
%@                would position some axes using their "OuterPosition" so that the axis labels, title
%@                and other annotations are all contained within the specified area. Sometimes,
%@                particularly if drawing images, one might want to instead make the axes
%@                canvas (the white bit!) fill the specified area. This is done by setting
%@                the "Position" property instead.
%@            </p>
%@            
%@            <h3>For example:</h3>
%@                    <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>
%@<a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( 'Units', 'Normalized', 'OuterPosition', [0 0 1 1] )
%@                    </font></pre>
%@                    <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/axes_outer.png"/></center></font></p>
%@                
%@                    <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>
%@<a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( 'Units', 'Normalized', 'Position', [0 0 1 1] )
%@                    </font></pre>
%@                    <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/axes_inner.png"/></center></font></p>
%@                
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Positioning Axes</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide2_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Axes inside layouts</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide2_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide2_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Axes inside layouts</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide2_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>2.2: Axes inside layouts&nbsp;<a href="User guide2.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>(The code for this example can be found here: 
%@                            [ <a href="Examples/axesexample.m">view</a>
%@                | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','axesexample.m'))">edit</a>
%@                | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); axesexample; cd(p)">run</a> ]
%@            )</p>
%@            <p>
%@                When using layouts to position axes, the position property
%@                is set by the layout, not the user. Whether the "Position"
%@                or "OuterPosition" property is used is determined by the
%@                "ActivePositionProperty" property of the <a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>.
%@                Note that the default setting is "OuterPosition".
%@            </p>
%@            <p>
%@                The following example illustrates the two usages.
%@            </p>
%@            
%@            <h4>Open a window</h4>
%@            <p>Open a new figure window and remove the toolbar and menus.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">window = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Name', 'Axes inside layouts', ...
%@            'MenuBar', 'none', ...
%@            'Toolbar', 'none', ...
%@            'NumberTitle', 'off' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/axes_layout_example_1.png"/></center></font></p>
%@            </example>
%@            <h4>Create the layout</h4>
%@            <p>The layout involves two axes side by side. This is done using a flexible horizontal box. The left-hand axes is left with the ActivePositionProperty set to "OuterPosition", but the right-hand axes is switched to use "Position".</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">hbox = <a href="uiextras.HBoxFlex.html"><code class="FUNCTION">uiextras.HBoxFlex</code></a>('Parent', window, 'Spacing', 3);
%@axes1 = <a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( 'Parent', hbox, ...
%@    'ActivePositionProperty', 'OuterPosition' );
%@axes2 = <a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( 'Parent', hbox, ...
%@    'ActivePositionProperty', 'Position' );
%@set( hbox, 'Sizes', [-2 -1] );</font></pre>
%@             <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/axes_layout_example_2.png"/></center></font></p>
%@           </example>
%@           
%@            <h4>Fill the axes</h4>
%@            <p>Using "OuterPosition" (left-hand axes) is the normal mode and looks good for virtually any plot type. Using "Position" is only really useful for 2D plots with the axes turned off, such as images.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">x = membrane( 1, 15 );
%@<a href="matlab:doc surf"><code class="FUNCTION">surf</code></a>( axes1, x );
%@<a href="matlab:doc lighting"><code class="FUNCTION">lighting</code></a>( axes1, 'gouraud' );
%@<a href="matlab:doc shading"><code class="FUNCTION">shading</code></a>( axes1, 'interp' );
%@l = <a href="matlab:doc light"><code class="FUNCTION">light</code></a>( 'Parent', axes1 );
%@<a href="matlab:doc camlight"><code class="FUNCTION">camlight</code></a>( l, 'head' );
%@<a href="matlab:doc axis"><code class="FUNCTION">axis</code></a>( axes1, 'tight' );
%@
%@<a href="matlab:doc imagesc"><code class="FUNCTION">imagesc</code></a>( x, 'Parent', axes2 );
%@set( axes2, 'xticklabel', [], 'yticklabel', [] );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/axes_layout_example_3.png"/></center></font></p>
%@            </example>
%@            <p/>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide2_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide2_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Position vs OuterPosition</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Enable and Visible</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide3.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Enable and Visible</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide2_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide3_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>3: Enable and Visible&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@    <p>The examples in this section show the effect of setting the
%@    "Enable" or "Visible" properties on a layout object.</p>
%@    
%@    
%@    
%@    
%@
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@         <li>3.1. <a href="User guide3_1.html">Enable example</a></li>
%@         <li>3.2. <a href="User guide3_2.html">Visible example</a></li>
%@      </ul>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide2_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide2_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Axes inside layouts</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide3_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Enable example</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide3_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide3_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Enable example</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide3_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>3.1: Enable example&nbsp;<a href="User guide3.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>(The code for this example can be found here: 
%@                            [ <a href="Examples/enableexample.m">view</a>
%@                | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','enableexample.m'))">edit</a>
%@                | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); enableexample; cd(p)">run</a> ]
%@            )</p>
%@        <p>
%@            This example shows how the <code>enable</code> property can be
%@            used to indicate to users which bits of an interface are currently
%@            relevant. This is particularly useful for preventing unwanted
%@            clicking during long calculations, loading and saving!
%@        </p>
%@        
%@        <example>
%@            <para>Open a window and add a panel</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">fig = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Name', 'Enable example', ...
%@    'Position', [100 100 150 250], ...
%@    'MenuBar', 'none', ...
%@    'ToolBar', 'none', ...
%@    'NumberTitle', 'off' );
%@panel = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( 'Parent', fig, 'Title', 'Panel' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/EnableExample1.png"/></center></font></p>
%@        </example>
%@        <example>
%@            <para>Put some buttons inside the panel</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">box = <a href="uiextras.VButtonBox.html"><code class="FUNCTION">uiextras.VButtonBox</code></a>( 'Parent', panel );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 1' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 2' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 3', 'Enable', 'off' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 4' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 5', 'Enable', 'off' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 6' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/EnableExample2.png"/></center></font></p>
%@        </example>
%@        <example>
%@            <para>Try disabling the panel</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">set( panel, 'Enable', 'off' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/EnableExample3.png"/></center></font></p>
%@        </example>
%@        <example>
%@            <para>Try enabling the panel. Note that the original "enable" state of each button is remembered.</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">set( panel, 'Enable', 'on' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/EnableExample2.png"/></center></font></p>
%@        </example>
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Enable and Visible</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide3_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Visible example</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide3_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide3_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Visible example</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide3_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>3.2: Visible example&nbsp;<a href="User guide3.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>(The code for this example can be found here: 
%@                            [ <a href="Examples/visibleexample.m">view</a>
%@                | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','visibleexample.m'))">edit</a>
%@                | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); visibleexample; cd(p)">run</a> ]
%@            )</p>
%@       <p>
%@            This example shows how the <code>visible</code> property can be
%@            used to hide whole sections of an interface.
%@        </p>
%@        <example>
%@            <para>Open a window and add a panel</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">fig = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Name', 'Visible example', ...
%@    'Position', [100 100 150 250], ...
%@    'MenuBar', 'none', ...
%@    'ToolBar', 'none', ...
%@    'NumberTitle', 'off' );
%@panel = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( 'Parent', fig, 'Title', 'Panel' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/VisibleExample1.png"/></center></font></p>
%@        </example>
%@        <example>
%@            <para>Put some buttons inside the panel</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">box = <a href="uiextras.VButtonBox.html"><code class="FUNCTION">uiextras.VButtonBox</code></a>( 'Parent', panel );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 1' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 2' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 3', 'Visible', 'off' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 4' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 5', 'Visible', 'off' );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( 'Parent', box, 'String', 'Button 6' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/VisibleExample2.png"/></center></font></p>
%@        </example>
%@        <example>
%@            <para>Try hiding the panel</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">set( panel, 'Visible', 'off' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/VisibleExample3.png"/></center></font></p>
%@        </example>
%@        <example>
%@            <para>Try showing the panel. Note that the original "visible" state of each button is remembered.</para>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">set( panel, 'Visible', 'on' );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/VisibleExample2.png"/></center></font></p>
%@        </example>
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide3_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide3_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Enable example</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Using property defaults</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide4.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Using property defaults</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide3_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide4_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>4: Using property defaults&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@        
%@        
%@
%@        <p>Sometimes it is useful to override the default values used when
%@            new layout managers are created. The default property values for most
%@            properties are inherited from the parent panel, figure or environemt
%@            when the layout is first created. Functions for setting these are
%@        described below.</p>
%@        
%@        
%@        
%@        
%@        
%@
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@         <li>4.1. <a href="User guide4_1.html">Setting defaults for one window</a></li>
%@         <li>4.2. <a href="User guide4_2.html">Setting defaults for all windows</a></li>
%@      </ul>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide3_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide3_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Visible example</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide4_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Setting defaults for one window</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide4_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide4_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Setting defaults for one window</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide4_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.1: Setting defaults for one window&nbsp;<a href="User guide4.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>The usual use of defaults is to modify the colors, fonts or
%@                other settings used for a particular application window. The defaults
%@            are therefore changed on the figure object using the <a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a> function.</p>
%@        <p>The example below sets new defaults for panel title-bar color and font
%@    on the window before two panels are added.</p>
%@            <example>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( f, <code class="STRING">'DefaultHBoxBackgroundColor'</code>, [0.3 0.3 0.3] );
%@<a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( f, <code class="STRING">'DefaultBoxPanelTitleColor'</code>, <code class="STRING">'y'</code> );
%@<a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( f, <code class="STRING">'DefaultBoxPanelFontSize'</code>, 16 );
%@h = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, f, <code class="STRING">'Padding'</code>, 10, <code class="STRING">'Spacing'</code>, 10 );
%@p1 = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, h, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 1'</code> );
%@p2 = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, h, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 2'</code> );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/DefaultsFigure.png"/></center></font></p>
%@            </example>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Using property defaults</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide4_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Setting defaults for all windows</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide4_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide4_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Setting defaults for all windows</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide4_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide5.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>4.2: Setting defaults for all windows&nbsp;<a href="User guide4.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>As well as modifying the <a href="FigureDefaults.html">defaults used in one window</a>,
%@        it is possible to override the defaults used for all windows. This makes use of
%@    the special "0" handle that roughly corresponds to the MATLAB environment. Note, however,
%@that defaults set at the window level take precedence.</p>
%@            <p>The example below shows how defaults can be set for the panel title-bar color
%@            and font for all windows, but the font size is overridden for the second window:</p>
%@            <example>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( 0, <code class="STRING">'DefaultHBoxBackgroundColor'</code>, [0.3 0.3 0.3] );
%@<a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( 0, <code class="STRING">'DefaultBoxPanelTitleColor'</code>, <code class="STRING">'y'</code> );
%@<a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( 0, <code class="STRING">'DefaultBoxPanelFontSize'</code>, 14 );
%@f1 = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@h = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, f1, <code class="STRING">'Padding'</code>, 10, <code class="STRING">'Spacing'</code>, 10 );
%@p1 = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, h, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 1'</code> );
%@p2 = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, h, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 2'</code> );
%@f2 = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>();
%@<a href="uiextras.set.html"><code class="FUNCTION">uiextras.set</code></a>( f2, <code class="STRING">'DefaultBoxPanelFontSize'</code>, 20 );
%@p3 = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, f2, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 3'</code> );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/DefaultsSystem1.png"/><img src="Images/DefaultsSystem2.png"/></center></font></p>
%@            </example>
%@            <p>It is important to note that although the default has been set
%@            system-wide, it is not preserved between MATLAB sessions.</p>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide4_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide4_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Setting defaults for one window</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Advanced maneuvers with panels</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide5.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Advanced maneuvers with panels</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide4_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide5_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>5: Advanced maneuvers with panels&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@    <p>
%@        The <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a> provides some extra buttons
%@        and callbacks that can be used to design advanced user-interface
%@        layouts. In particular, the sections below illustrate how to create
%@        interfaces with context help, and panels that can be minimized or undocked.
%@    </p>
%@    
%@    
%@    
%@    
%@    
%@        
%@        
%@        
%@    
%@    
%@
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@         <li>5.1. <a href="User guide5_1.html">Context help</a></li>
%@         <li>5.2. <a href="User guide5_2.html">Minimize and maximize</a></li>
%@         <li>5.3. <a href="User guide5_3.html">Dock and undock</a></li>
%@      </ul>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide4_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide4_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Setting defaults for all windows</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Context help</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide5_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Context help</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide5.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide5_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>5.1: Context help&nbsp;<a href="User guide5.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@        <p>
%@            When a <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a> has its "HelpFcn"
%@            filled in, a help button (<img src="Images/panelHelp.png"/>) is shown in the upper-right of the
%@            title-bar. When the user clicks this button the specified function
%@            is called.
%@        </p>
%@        <h3>For example:</h3>
%@                <para>Here we hookup the HelpFcn to simply bring up
%@            the MATLAB documentation for each command. Clicking any of the "?" buttons
%@        will cause the MATLAB help browser to open.</para>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">f = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( 'Name', 'uiextras.BoxPanel Help Example' );
%@b = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( 'Parent', f );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( 'Parent', b, 'Title', 'sin', 'HelpFcn', @(a,b) doc('sin') );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( 'Parent', b, 'Title', 'cos', 'HelpFcn', @(a,b) doc('cos') );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( 'Parent', b, 'Title', 'tan', 'HelpFcn', @(a,b) doc('tan') );
%@</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelHelpExample.png"/></center></font></p>
%@            
%@        
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Advanced maneuvers with panels</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Minimize and maximize</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide5_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Minimize and maximize</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide5_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide5_3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>5.2: Minimize and maximize&nbsp;<a href="User guide5.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@        <p>
%@            When a <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a> has its "MinimizeFcn"
%@            filled in, a minimize/maximize button (<img src="Images/panelMinimize.png"/> / <img src="Images/panelMaximize.png"/>) is shown in the upper-right of the
%@            title-bar. When the user clicks this button the specified function
%@            is called. Since the behaviour of the parent container is
%@            different in different use-cases, it is up to the user to write
%@            some code to actually resize the panel. Note that minimizing
%@            a panel to its title-bar only really makes sense inside a 
%@            <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a> or <a href="uiextras.VBoxFlex.html"><code class="FUNCTION">uiextras.VBoxFlex</code></a>.
%@                 </p>
%@                 <p>The following simple example shows how to add minimize/maximize
%@                     functionality to a box full of panels. Save the code into
%@                 a file called "dockexample.m" to run it.</p>
%@                 
%@                 <p>(The code for this example can be found here: 
%@                     [ <a href="Examples/minimizeexample.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','minimizeexample.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); minimizeexample; cd(p)">run</a> ]
%@                 )</p>
%@                 
%@                 
%@                 <h4>Create the layout with three panels</h4>
%@            <p>Open a new figure window and add three panels.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="matlab:doc function"><code class="FUNCTION">function</code></a> minimizeexample()
%@width = 200;
%@pheightmin = 20;
%@pheightmax = 100;
%@
%@<code class="COMMENT">% Create the window and main layout</code>
%@fig = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( <code class="STRING">'Name'</code>, <code class="STRING">'Collapsable GUI example'</code>, ...
%@              <code class="STRING">'NumberTitle'</code>, <code class="STRING">'off'</code>, ...
%@              <code class="STRING">'Toolbar'</code>, <code class="STRING">'none'</code>, ...
%@              <code class="STRING">'MenuBar'</code>, <code class="STRING">'none'</code> );
%@box = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( 'Parent', fig );
%@
%@panel{1} = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Title'</code>, <code class="STRING">'Panel 1'</code>, <code class="STRING">'Parent'</code>, box );
%@panel{2} = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Title'</code>, <code class="STRING">'Panel 2'</code>, <code class="STRING">'Parent'</code>, box );
%@panel{3} = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Title'</code>, <code class="STRING">'Panel 3'</code>, <code class="STRING">'Parent'</code>, box );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( box, 'Sizes', pheightmax*ones(1,3) );
%@
%@<code class="COMMENT">% Add some contents</code>.
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, <code class="STRING">'String'</code>, <code class="STRING">'Button 1'</code>, <code class="STRING">'Parent'</code>, panel{1} );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, <code class="STRING">'String'</code>, <code class="STRING">'Button 2'</code>, <code class="STRING">'Parent'</code>, panel{2} );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, <code class="STRING">'String'</code>, <code class="STRING">'Button 3'</code>, <code class="STRING">'Parent'</code>, panel{3} );
%@
%@<code class="COMMENT">% Resize the window</code>
%@pos = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( fig, <code class="STRING">'Position'</code> );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( fig, <code class="STRING">'Position'</code>, [pos(1,1:2),width,sum(box.Sizes)] );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelMinimizeExample1.png"/></center></font></p>
%@        </example>
%@        
%@            <h4>Add the minimize/maximize callback</h4>
%@            <p>We set each panel to call the same minimize/maximize function.
%@        This function is nested inside the main function so that it has access
%@    to the main function's variables. A better way to do this is to make the
%@main function into a class, but this nested-function approach is fine
%@for simple applications.</p>
%@            <p>Note that as soon as we set the "MinimizeFcn" property the minimize/maximize
%@                icon appears in the top-right of each panel. We use a cell-array to pass an
%@            extra argument, the panel number, to the minimize function. This extra argument appears after the usual
%@            <code>eventSource</code> and <code>eventData</code> arguments.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><code class="COMMENT">% Hook up the minimize callback</code>.
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{1}, <code class="STRING">'MinimizeFcn'</code>, {@nMinimize, 1} );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{2}, <code class="STRING">'MinimizeFcn'</code>, {@nMinimize, 2} );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{3}, <code class="STRING">'MinimizeFcn'</code>, {@nMinimize, 3} );
%@
%@<code class="COMMENT">%-------------------------------------------------------------------------%</code><br/> 
%@    <a href="matlab:doc function"><code class="FUNCTION">function</code></a> nMinimize( eventSource, eventData, whichpanel )
%@        <code class="COMMENT">% A panel has been maximized/minimized</code>
%@        s = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( box, <code class="STRING">'Sizes'</code> );
%@        pos = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( fig, <code class="STRING">'Position'</code> );
%@        panel{whichpanel}.IsMinimized = ~panel{whichpanel}.IsMinimized;
%@        <a href="matlab:doc if"><code class="FUNCTION">if</code></a> panel{whichpanel}.IsMinimized
%@            s(whichpanel) = pheightmin;
%@        <a href="matlab:doc else"><code class="FUNCTION">else</code></a>
%@            s(whichpanel) = pheightmax;
%@        <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;
%@        <a href="matlab:doc set"><code class="FUNCTION">set</code></a>( box, <code class="STRING">'Sizes'</code>, s );
%@        
%@        <code class="COMMENT">% Resize the figure, keeping the top stationary</code>
%@        delta_height = pos(1,4) - <a href="matlab:doc sum"><code class="FUNCTION">sum</code></a>( box.Sizes );
%@        <a href="matlab:doc set"><code class="FUNCTION">set</code></a>( fig, <code class="STRING">'Position'</code>, pos(1,:) + [0 delta_height 0 -delta_height] );
%@    <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;<code class="COMMENT">% Minimize</code>&nbsp;
%@
%@<a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;<code class="COMMENT">% Main function</code></font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelMinimizeExample2.png"/></center></font></p>
%@        </example>
%@        
%@    
%@            <h4>Click the minimize buttons</h4>
%@            <p>Minimizing the middle panel causes it to shrink to just its 
%@            title-bar and the window shrinks accordingly. The
%@    "Minimize" icon is replaced by a "Maximise" icon.</p>
%@            <example><p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelMinimizeExample3.png"/></center></font></p></example>
%@            <p> Re-maximizing the panel would
%@            cause it to re-appear in full and the window to grow again.</p>
%@
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Context help</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Dock and undock</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide5_3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide5_3.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Dock and undock</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide5_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide6.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>5.3: Dock and undock&nbsp;<a href="User guide5.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@        
%@        <p>
%@            When a <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a> has its "DockFcn"
%@            filled in, a dock/undock button (<img src="Images/panelDock.png"/> / <img src="Images/panelUndock.png"/>) is shown in the upper-right of the
%@            title-bar. When the user clicks this button the specified function
%@            is called. Since re-docking the panel into its previous parent
%@            depends on the type of parent, it is up to the user to write
%@            some code to actually extract or insert the panel.
%@        </p>
%@             <p>The following simple example shows how to add dock/undock
%@                 functionality to a box full of panels. Save the code into
%@                 a file called "dockexample.m" to run it.</p>
%@                 
%@                 <p>(The code for this example can be found here: 
%@                     [ <a href="Examples/dockexample.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','dockexample.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); dockexample; cd(p)">run</a> ]
%@                 )</p>
%@       
%@            <h4>Create the layout with three panels</h4>
%@            <p>Open a new figure window and add three panels.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="matlab:doc function"><code class="FUNCTION">function</code></a> dockexample()
%@<code class="COMMENT">% Create the window and main layout</code>
%@fig = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( <code class="STRING">'Name'</code>, <code class="STRING">'Dockable GUI example'</code>, ...
%@              <code class="STRING">'NumberTitle'</code>, <code class="STRING">'off'</code>, ...
%@              <code class="STRING">'Toolbar'</code>, <code class="STRING">'none'</code>, ...
%@              <code class="STRING">'MenuBar'</code>, <code class="STRING">'none'</code>, ...
%@              <code class="STRING">'CloseRequestFcn'</code>, @nCloseAll );
%@box = <a href="uiextras.HBox.html"><code class="FUNCTION">uiextras.HBox</code></a>( <code class="STRING">'Parent'</code>, fig );
%@
%@<code class="COMMENT">% Add three panels to the box</code>
%@panel{1} = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Title'</code>, <code class="STRING">'Panel 1'</code>, <code class="STRING">'Parent'</code>, box );
%@panel{2} = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Title'</code>, <code class="STRING">'Panel 2'</code>, <code class="STRING">'Parent'</code>, box );
%@panel{3} = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Title'</code>, <code class="STRING">'Panel 3'</code>, <code class="STRING">'Parent'</code>, box );
%@
%@<code class="COMMENT">% Add some contents</code><br/>
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, <code class="STRING">'String'</code>, <code class="STRING">'Button 1'</code>, <code class="STRING">'Parent'</code>, panel{1} );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, <code class="STRING">'String'</code>, <code class="STRING">'Button 2'</code>, <code class="STRING">'Parent'</code>, panel{2} );
%@<a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, <code class="STRING">'String'</code>, <code class="STRING">'Button 3'</code>, <code class="STRING">'Parent'</code>, panel{3} );</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelDockExample1.png"/></center></font></p>
%@        </example>
%@        
%@            <h4>Add the dock/undock callback</h4>
%@            <p>We set each panel to call the same dock/undock function.
%@        This function is nested inside the main function so that it has access
%@    to the main function's variables. A better way to do this is to make the
%@main function into a class, but this nested-function approach is fine
%@for simple applications.</p>
%@            <p>Note that as soon as we set the "DockFcn" property the Dock/Undock
%@                icon appears in the top-right of each panel. We use a cell-array to pass an
%@            extra argument, the panel number, to the minimize function. This extra argument appears after the usual
%@            <code>eventSource</code> and <code>eventData</code> arguments.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><code class="COMMENT">% Set the dock/undock callback</code><br/>
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{1}, <code class="STRING">'DockFcn'</code>, {@nDock, 1} );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{2}, <code class="STRING">'DockFcn'</code>, {@nDock, 2} );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{3}, <code class="STRING">'DockFcn'</code>, {@nDock, 3} );
%@
%@<code class="COMMENT">%-------------------------------------------------------------------------%</code><br/> 
%@    <a href="matlab:doc function"><code class="FUNCTION">function</code></a> nDock( eventSource, eventData, whichpanel )
%@        <code class="COMMENT">% Set the flag</code>
%@        panel{whichpanel}.IsDocked = ~panel{whichpanel}.IsDocked;
%@        <a href="matlab:doc if"><code class="FUNCTION">if</code></a> panel{whichpanel}.IsDocked
%@            <code class="COMMENT">% Put it back into the layout</code>
%@            newfig = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( panel{whichpanel}, <code class="STRING">'Parent'</code> );
%@            <a href="matlab:doc set"><code class="FUNCTION">set</code></a>( panel{whichpanel}, <code class="STRING">'Parent'</code>, box );
%@            <a href="matlab:doc delete"><code class="FUNCTION">delete</code></a>( newfig );
%@        <a href="matlab:doc else"><code class="FUNCTION">else</code></a>&nbsp;
%@            <code class="COMMENT">% Take it out of the layout</code>
%@            pos = <a href="matlab:doc getpixelposition"><code class="FUNCTION">getpixelposition</code></a>( panel{whichpanel} );
%@            newfig = <a href="matlab:doc figure"><code class="FUNCTION">figure</code></a>( ...
%@                <code class="STRING">'Name'</code>, <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( panel{whichpanel}, <code class="STRING">'Title'</code> ), ...
%@                <code class="STRING">'NumberTitle'</code>, <code class="STRING">'off'</code>, ...
%@                <code class="STRING">'MenuBar'</code>, <code class="STRING">'none'</code>, ...
%@                <code class="STRING">'Toolbar'</code>, <code class="STRING">'none'</code>, ...
%@                <code class="STRING">'CloseRequestFcn'</code>, {@nDock, whichpanel} );
%@            figpos = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( newfig, <code class="STRING">'Position'</code> );
%@            <a href="matlab:doc set"><code class="FUNCTION">set</code></a>( newfig, <code class="STRING">'Position'</code>, [figpos(1,1:2), pos(1,3:4)] );
%@            <a href="matlab:doc set"><code class="FUNCTION">set</code></a>( p{whichpanel}, <code class="STRING">'Parent'</code>, newfig, ...
%@                <code class="STRING">'Units'</code>, <code class="STRING">'Normalized'</code>, ...
%@                <code class="STRING">'Position'</code>, [0 0 1 1] );
%@        <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;
%@    <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;<code class="COMMENT">% nDock</code></font></pre></example>
%@
%@        
%@            <h4>Add the close callback</h4>
%@            <p>If the user closes the main window we need to also close any
%@            other windows that were created. This can be done by finding 
%@            the window that contains each panel and deleting it.</p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><code class="COMMENT">%-------------------------------------------------------------------------%</code><br/> 
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> nCloseAll( ~, ~ )
%@      <a href="matlab:doc for"><code class="FUNCTION">for</code></a> ii=1:<a href="matlab:doc numel"><code class="FUNCTION">numel</code></a>( panel )
%@         <a href="matlab:doc if"><code class="FUNCTION">if</code></a> <a href="matlab:doc isvalid"><code class="FUNCTION">isvalid</code></a>( panel{ii} ) && ~<a href="matlab:doc strcmpi"><code class="FUNCTION">strcmpi</code></a>( panel{ii}.BeingDeleted, <code class="STRING">'on'</code> )
%@            figh = <a href="matlab:doc ancestor"><code class="FUNCTION">ancestor</code></a>( panel{ii}, <code class="STRING">'figure'</code> );
%@            <a href="matlab:doc delete"><code class="FUNCTION">delete</code></a>( figh );
%@         <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;
%@      <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;
%@        
%@   <a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;<code class="COMMENT">% nCloseAll</code>
%@<a href="matlab:doc end"><code class="FUNCTION">end</code></a>&nbsp;<code class="COMMENT">% Main function</code></font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelDockExample2.png"/></center></font></p>
%@        </example>
%@        
%@            <h4>Click the dock buttons</h4>
%@            <p>Undocking the middle panel causes the other two to fill the
%@        vacated space. The undocked panel appears in its own window, with the
%@    "Undock" icon replaced by a "Dock" icon.</p>
%@            <example><p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/BoxPanelDockExample3.png"/>.<img src="Images/BoxPanelDockExample4.png"/></center></font></p></example>
%@            <p> Re-docking the panel would
%@            cause it to be appended to the right of the list in the original window. Closing the main window
%@        causes all panels, docked or undocked, and their enclosing windows to be closed.</p>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Minimize and maximize</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide6.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Using layouts inside GUIDE GUIs</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide6.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide6.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Using layouts inside GUIDE GUIs</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide5_3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide7.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>6: Using layouts inside GUIDE GUIs&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@        
%@        <p>Whilst the layouts in this toolbox do not integrate into the
%@        MATLAB Graphical User Interface Design Environment (<a href="matlab:doc GUIDE"><code class="FUNCTION">GUIDE</code></a>), it
%@    is possible to insert layouts into a GUIDE-built GUI as follows:</p>
%@        <h4>Create the GUIDE GUI</h4>
%@            <p>Create you GUIDE application as usual, placing a panel where you
%@        want to insert the layout. You can turn the panel border and title
%@    off if you do not want them.</p>
%@        <center><img src="Images/guide1.png"/></center>
%@
%@        <h4>Insert the layout</h4>
%@        <p>Edit the "OpeningFcn" in the GUIDE-created code and insert your
%@    layout into the panel, making it fill the space. In the example below
%@four boxpanels are inserted into a grid, which itself is placed inside
%@        <code>uipanel1</code>:</p>
%@        <example>
%@            <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><code class="COMMENT">% --- Executes just before guideApp is made visible.</code>&nbsp;
%@<a href="matlab:doc function"><code class="FUNCTION">function</code></a> guideApp_OpeningFcn(hObject, eventdata, handles, varargin)
%@
%@<code class="COMMENT">% Choose default command line output for guideApp</code>&nbsp;
%@handles.output = hObject;
%@
%@<code class="COMMENT">% Update handles structure</code>&nbsp;
%@guidata(hObject, handles);
%@
%@<code class="COMMENT">% Put a layout in the panel</code>&nbsp;
%@g = <a href="uiextras.GridFlex.html"><code class="FUNCTION">uiextras.GridFlex</code></a>( <code class="STRING">'Parent'</code>, handles.uipanel1, ...
%@    <code class="STRING">'Units'</code>, <code class="STRING">'Normalized'</code>, <code class="STRING">'Position'</code>, [0 0 1 1], ...
%@    <code class="STRING">'Spacing'</code>, 5 );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 1'</code> );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 2'</code> );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 3'</code> );
%@<a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( <code class="STRING">'Parent'</code>, g, <code class="STRING">'Title'</code>, <code class="STRING">'Panel 4'</code> );
%@g.RowSizes = [-1 -1];</font></pre>
%@            <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/guide2.png"/></center></font></p>
%@        </example>
%@                         <p><small>(Full source code for this application is available here: 
%@                     [ <a href="Examples/guideApp.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','guideApp.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); guideApp; cd(p)">run</a> ]
%@                 )</small></p>
%@
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5_3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide5_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Dock and undock</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide7.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Deploying GUIs using the MATLAB Compiler</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide7.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide7.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Deploying GUIs using the MATLAB Compiler</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide6.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>7: Deploying GUIs using the MATLAB Compiler&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@        
%@        
%@        <p>Applications built using these layout tools can be deployed as standalone
%@            executables using the <a href="matlab:doc compiler">MATLAB Compiler</a> in
%@        the same way as any other MATLAB application. There is, however, one thing to watch out for:</p>
%@        <ul>
%@            <li>You must explicitly include the uiextras.Resources folder</li>
%@        </ul>
%@        <h4>Example</h4>
%@        <p>Below is a screen-shot of the <a href="matlab:doc deploytool"><code class="FUNCTION">deploytool</code></a> setup
%@        used to build the <a href="ExampleApp.html">example application</a>.
%@    The "Resources" folder from the toolbox has been explicitly added as a
%@shared resource so that the mouse-pointers and panel icons continue to work.</p>
%@        <example><p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/deploy.png"/></center></font></p></example>
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide6.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide6.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Using layouts inside GUIDE GUIs</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">A complete example</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@
%@            
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8.html__ -->
%@            <html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>A complete example</title>
%@   </head>
%@
%@   
%@   <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide7.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8_1.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <h2>8: A complete example&nbsp;<A href="User guide.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></A></h2>
%@      
%@        
%@        
%@<img src="Images/demoBrowser4.png" align="right"/>
%@        <p>The following example application uses many of the layout features
%@            discussed above in order to create a good-looking user interface that
%@        scales well when resized. It is not designed to showcase all the
%@        layout functionality, but shows how callbacks are added to provide
%@        user interaction. It also exemplifies separating the data from the GUI,
%@    a fundamental part of creating modular and maintainable applications.</p>
%@        <p>The full application is available here:</p>
%@        <ul>
%@            <li><a href="Examples/demoBrowser.m">View demoBrowser.m</a></li>
%@            <li><a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','demoBrowser.m'))">Edit demoBrowser.m</a></li>
%@            <li><a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples'));demoBrowser;cd(p)">Run demoBrowser.m</a></li>
%@        </ul>
%@
%@        
%@        
%@        
%@
%@
%@
%@
%@    
%@        
%@
%@        
%@        
%@
%@        
%@        
%@        
%@    
%@      <h3>Section contents:</h3>
%@      <ul class="contents">
%@      </ul>
%@
%@      <ul class="contents">
%@      </ul>
%@
%@      
%@      <ul class="contents">
%@         <li>8.1. <a href="User guide8_1.html">Application structure</a></li>
%@         <li>8.2. <a href="User guide8_2.html">createInterface</a></li>
%@         <li>8.3. <a href="User guide8_3.html">updateInterface</a></li>
%@         <li>8.4. <a href="User guide8_4.html">onListSelection</a></li>
%@         <li>8.5. <a href="User guide8_5.html">Running it</a></li>
%@         <li>8.6. <a href="User guide8_6.html">Scalability</a></li>
%@      </ul>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide7.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide7.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Deploying GUIs using the MATLAB Compiler</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Application structure</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_1.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8_1.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Application structure</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide8.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8_2.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>8.1: Application structure&nbsp;<a href="User guide8.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@
%@        <p>There are many ways to build graphical applications in MATLAB, but
%@    here we will take a very simple approach. If the application were to become
%@larger and more complex, this approach would be changed to better mitigate
%@    the complexity. Some notes on this are contained <a href="demoBrowserScalability.html">at the end</a>.</p>
%@
%@    <p>The application is structured as a single function with callbacks and other helper
%@        functions stored as "nested" subfunctions, i.e. functions inside the main function. This has
%@        the advantage that the nested subfunctions can share access to any variables
%@        declared in the main function. This is also a risk as anything we accidentally
%@        declare in the main function becomes "global" within the application. For that reason
%@        <em>all</em> logic is put into subfunctions and we restrict the main
%@    function to just declaring two shared variables:</p>
%@    <ul>
%@        <li><b>data</b>: a structure containing all shared data</li>
%@        <li><b>gui</b>: a structure containing handles to GUI widgets</li>
%@    </ul>
%@    <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">
%@<a href="matlab:doc function"><code class="FUNCTION">function</code></a> demoBrowser()
%@
%@   <code class="COMMENT">% Declare shared variables</code>
%@   data = createData();
%@   gui = createInterface( data.DemoNames );
%@
%@   <code class="COMMENT">% Now update the GUI with the current data</code>
%@   updateInterface();
%@   redrawDemo();
%@   
%@   <code class="COMMENT">% Helper subfunctions</code>.
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> data = createData() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> gui = createInterface(names) ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> updateInterface() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> redrawDemo() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@
%@   <code class="COMMENT">% Callback subfunctions</code>.
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> onMenuSelection() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> onListSelection() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> onDemoHelp() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> onHelp() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@   <a href="matlab:doc function"><code class="FUNCTION">function</code></a> onExit() ... <a href="matlab:doc end"><code class="FUNCTION">end</code></a>;
%@
%@<a href="matlab:doc end"><code class="FUNCTION">end</code></a> <code class="COMMENT"> % Main function</code>
%@</font></pre></example>
%@
%@<p>Note that all of the work is done in subfunctions. Most subfunctions
%@are callbacks executed when a button is pressed or a menu selected. The four used
%@at startup are helper functions:</p>
%@    <ul>
%@        <li><b>createData</b>: build the structure which contains all application data</li>
%@        <li><b>createInterface</b>: build the user interface</li>
%@        <li><b>updateInterface</b>: update selectors etc in response to a change in the data</li>
%@        <li><b>redrawDemo</b>: redraw the plot part of the interface</li>
%@    </ul>
%@    <p>We will not dig into all the subfunctions and callbacks, but instead
%@        concentrate on the GUI creation (<a href="demoBrowserCreateInterface.html">createInterface</a>)
%@        and update (<a href="demoBrowserUpdateInterface.html">updateInterface</a>).</p>
%@    
%@                 <p><small>(Full source code for this application is available here: 
%@                     [ <a href="Examples/demoBrowser.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','demoBrowser.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); demoBrowser; cd(p)">run</a> ]
%@                 )</small></p>
%@
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">A complete example</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">createInterface</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_2.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8_2.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>createInterface</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide8_1.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8_3.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>8.2: createInterface&nbsp;<a href="User guide8.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@    <p>The interface creation is handled in the <code>createInterface</code>
%@        subfunction. This has two distinct sections: menu building and widget arrangement.
%@        The menus are built using the standard MATLAB menu building command <a href="matlab:doc uimenu"><code class="FUNCTION">uimenu</code></a>,
%@    so let's concentrate on the widget arrangement.</p>
%@
%@    <p>The top-level layout is a horizontal arrangement, placing the controls
%@to the left of the main plot. We make the layout draggable by using the
%@"flex" variant of HBox, and put a panel in each side. Note that setting the
%@"HelpFcn" for the view panel adds a small "?" icon for bringing up help. See
%@<a href="PanelHelp.html">here</a> for more details.</p>
%@<example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">
%@<code class="COMMENT">% Add the contents</code>
%@mainLayout = <a href="uiextras.HBoxFlex.html"><code class="FUNCTION">uiextras.HBoxFlex</code></a>( <code class="STRING">'Parent'</code>, gui.Window, <code class="STRING">'Spacing'</code>, 3 );
%@
%@<code class="COMMENT">% Create the panels</code>
%@controlPanel = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( ...
%@   <code class="STRING">'Parent'</code>, mainLayout, ...
%@   <code class="STRING">'Title'</code>, <code class="STRING">'Select a demo:'</code> );
%@gui.ViewPanel = <a href="uiextras.BoxPanel.html"><code class="FUNCTION">uiextras.BoxPanel</code></a>( ...
%@   <code class="STRING">'Parent'</code>, mainLayout, ...
%@   <code class="STRING">'Title'</code>, <code class="STRING">'Viewing: ???'</code>, ...
%@   <code class="STRING">'HelpFcn'</code>, @onDemoHelp );
%@
%@<code class="COMMENT">% Adjust the main layout</code><br/>
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( mainLayout, <code class="STRING">'Sizes'</code>, [-1,-2]  );
%@    </font></pre>
%@    <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/demoBrowser1.png"/></center></font></p>
%@</example>
%@<p>The controls panel is filled with a vertical layout containing the listbox
%@and a button. Note the callbacks that are specified for both the list and button. These
%@both call further subfunctions that are able to access the common "data" and "gui"
%@shared structures.</p>
%@<example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">
%@<code class="COMMENT">% Create the controls</code>
%@controlLayout = <a href="uiextras.VBox.html"><code class="FUNCTION">uiextras.VBox</code></a>( <code class="STRING">'Parent'</code>, controlPanel, ...
%@   <code class="STRING">'Padding'</code>, 3, <code class="STRING">'Spacing'</code>, 3 );
%@gui.ListBox = <a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'list'</code>, ...
%@   <code class="STRING">'BackgroundColor'</code>, <code class="STRING">'w'</code>, ...
%@   <code class="STRING">'Parent'</code>, controlLayout, ...
%@   <code class="STRING">'String'</code>, demoList(:), ...
%@   <code class="STRING">'Value'</code>, 1, ...
%@   <code class="STRING">'Callback'</code>, @onListSelection);
%@gui.HelpButton = <a href="matlab:doc uicontrol"><code class="FUNCTION">uicontrol</code></a>( <code class="STRING">'Style'</code>, <code class="STRING">'PushButton'</code>, ...
%@   <code class="STRING">'Parent'</code>, controlLayout, ...
%@   <code class="STRING">'String'</code>, <code class="STRING">'Help for &lt;demo&gt;'</code>, ...
%@   <code class="STRING">'Callback'</code>, @onDemoHelp );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( controlLayout, <code class="STRING">'Sizes'</code>, [-1 28] ); <code class="COMMENT">% Make the list fill the space</code>
%@</font></pre>
%@<p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/demoBrowser2.png"/></center></font></p>
%@</example>
%@<p>Finally, the view itself is simply an axes placed inside the view panel:</p>   
%@<example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">
%@<code class="COMMENT">% Create the view</code>
%@gui.ViewAxes = <a href="matlab:doc axes"><code class="FUNCTION">axes</code></a>( <code class="STRING">'Parent'</code>, gui.ViewPanel );
%@   </font></pre>
%@   <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/demoBrowser3.png"/></center></font></p>
%@</example>
%@                 <p><small>(Full source code for this application is available here: 
%@                     [ <a href="Examples/demoBrowser.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','demoBrowser.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); demoBrowser; cd(p)">run</a> ]
%@                 )</small></p>
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_1.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_1.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Application structure</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">updateInterface</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_3.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8_3.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>updateInterface</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide8_2.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8_4.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>8.3: updateInterface&nbsp;<a href="User guide8.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@        <p>The second subfunction we will look at, <code>updateInterface</code>, uses the
%@            current selections to update the interface. This uses the structure
%@            "data" to update various parts of the interface. For this simple example this just means:
%@        </p>
%@        <p><b>1. Update the selected item in the listbox</b></p>
%@        <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">set( gui.ListBox, <code class="STRING">'Value'</code>, data.SelectedDemo );</font></pre></example>
%@        <p><b>2. Update the help button label</b></p>
%@        <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">demoName = data.DemoNames{ data.SelectedDemo };<br/><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( gui.HelpButton, <code class="STRING">'String'</code>, [<code class="STRING">'Help for '</code>,demoName] );</font></pre></example>
%@        <p><b>3. Update the view panel title</b></p>
%@        <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011"><a href="matlab:doc set"><code class="FUNCTION">set</code></a>( gui.ViewPanel, <code class="STRING">'Title'</code>, <a href="matlab:doc sprintf"><code class="FUNCTION">sprintf</code></a>( <code class="STRING">'Viewing: %s'</code>, demoName ) );</font></pre></example>
%@        <p><b>4. Update the ticked menu</b></p>
%@        <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">menus = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( gui.ViewMenu, <code class="STRING">'Children'</code> );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( menus, <code class="STRING">'Checked'</code>, <code class="STRING">'off'</code> );
%@<code class="COMMENT">% Use the name to work out which menu item should be ticked</code>
%@whichMenu = <a href="matlab:doc strcmpi"><code class="FUNCTION">strcmpi</code></a>( demoName, <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( menus, <code class="STRING">'Label'</code> ) );
%@<a href="matlab:doc set"><code class="FUNCTION">set</code></a>( menus(whichMenu), <code class="STRING">'Checked'</code>, <code class="STRING">'on'</code> );
%@</font></pre></example>
%@        <example><p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/demoBrowser4.png"/></center></font></p></example>
%@        <p>In general, this update function is called whenever the underlying
%@            shared "data" structure is changed. This happens when the user clicks
%@            a button, selects a list item or a menu. Next we will look at a typical
%@        callback.</p>
%@                 <p><small>(Full source code for this application is available here: 
%@                     [ <a href="Examples/demoBrowser.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','demoBrowser.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); demoBrowser; cd(p)">run</a> ]
%@                 )</small></p>
%@    
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_2.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_2.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">createInterface</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">onListSelection</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_4.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8_4.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>onListSelection</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide8_3.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8_5.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>8.4: onListSelection&nbsp;<a href="User guide8.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>Finally, let's have a look at how one of the callbacks works: "onListSelection", the function
%@        that is called when an item is selected in the listbox. The other
%@            callbacks obey the same pattern.</p>
%@            <p>The basic rule of thumb is that a callback should not update any part of
%@        the user interface directly - it's job is to respond to user interaction by changing the "data" structure. 
%@        In this example, each callback changes the underlying data structure
%@    then asks the interface to refresh. This might mean that things update in the
%@interface that don't need to, but ensures the callbacks remain simple and that all
%@interface update logic is in one place. Extending this to more granular interface updates
%@            is straightforward. See <a href="demoBrowserScalability.html">Scalability</a> for more details.</p>
%@            <p>For the listbox callback, the "src" argument is a handle to the
%@            listbox and we simply need to update the SelectedDemo field of "data"
%@            to reflect the new selection. We then ask the rest of the interface to
%@            update in response to the change.
%@            </p>
%@            <example><pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">
%@                <code class="COMMENT">% User selected a demo from the list - update "data" and refresh</code>
%@data.SelectedDemo = <a href="matlab:doc get"><code class="FUNCTION">get</code></a>( src, <code class="STRING">'Value'</code> );
%@updateInterface();
%@redrawDemo();</font></pre>
%@        <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/demoBrowser4.png"/></center></font></p>
%@        </example>
%@                 <p><small>(Full source code for this application is available here: 
%@                     [ <a href="Examples/demoBrowser.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','demoBrowser.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); demoBrowser; cd(p)">run</a> ]
%@                 )</small></p>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_3.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_3.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">updateInterface</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Running it</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_5.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8_5.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Running it</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide8_4.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="User guide8_6.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>8.5: Running it&nbsp;<a href="User guide8.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>When the main function is launched (click 
%@                <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples'));demoBrowser;cd(p)">here</a>)
%@                it first creates the data, then the GUI, then updates the GUI using the data. At this point the
%@                function exits and control is returned to the command prompt. Note, however,
%@            that the GUI is still onscreen and will still respond to user interaction.</p>
%@            <p>This works because the "shared" variables in the main function are not cleared when the
%@                function exits. They are only cleared once the GUI is closed. This is a slightly
%@                unusual, but very useful, feature of using nested functions for building
%@            applications.</p>
%@            <h3>For example:</h3>
%@                <pre style="background-color: #eeeeff; margin-left: 20px; margin-right: 20px"><font color="#000011">&gt;&gt; demoBrowser</font></pre>
%@                <p style="background-color: #ddddee; margin-left: 20px; margin-right: 20px"><font color="#000022"><center><img src="Images/demoBrowser4.png"/></center></font></p>
%@                
%@                 <p><small>(Full source code for this application is available here: 
%@                     [ <a href="Examples/demoBrowser.m">view</a>
%@                     | <a href="matlab: edit(fullfile(layoutRoot,'layoutHelp','Examples','demoBrowser.m'))">edit</a>
%@                     | <a href="matlab: p=pwd();cd(fullfile(layoutRoot,'layoutHelp','Examples')); demoBrowser; cd(p)">run</a> ]
%@                 )</small></p>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_4.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_4.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">onListSelection</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_6.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Scalability</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="User guide8_6.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@        
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/User guide8_6.html__ -->
%@<html xmlns:saxon="http://icl.com/saxon">
%@   <head>
%@      <link rel="stylesheet" type="text/css" href="doc.css"/>
%@      <link rel="stylesheet" type="text/css" href=""/>
%@      <meta author="The MathWorks Ltd."/>
%@      <meta copyright="2014 The MathWorks Ltd."/>
%@      <title>Scalability</title>
%@   </head>
%@
%@   
%@    <body>
%@      <table class="header" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td bgcolor="#e4f0f8"><A href="User guide.html"><font face="Arial" bgcolor="#e4f0f8" size="+0" underline="0" color="#000000"><b>User guide</b></font></A></td>
%@            <td width="36" bgcolor="#e4f0f8"><A HREF="User guide8_5.html"><IMG SRC="Images/leftarrow.png" BORDER="0" ALT="previous page"/></A><A HREF="index.html"><IMG SRC="Images/rightarrow.png" BORDER="0" ALT="next page"/></A></td>
%@         </tr>
%@      </table>
%@   
%@
%@      <br clear="all"/>
%@          
%@      <h2>8.6: Scalability&nbsp;<a href="User guide8.html"><img src="Images/uparrow.png" border="0" align="top" alt="Go back up one level"/></a></h2>
%@      
%@            <p>As applications get bigger the code gets more complex. The simple
%@                application structure used here does not scale well to large applications,
%@            however some small adjustments can make life much better:</p>
%@            <ul>
%@                <li>Convert the "data" structure into a <a href="matlab: doc handle">handle object</a>. This allows
%@                    a single "data" object to be shared between mutliple graphical interfaces, and in turn means that the interface
%@                need not be built as a single monolithic entity.</li>
%@                <li>Use the <a href="matlab: doc event.listener">events system</a> to trigger updates
%@                    to specific parts of the GUI in response to bits of the data object changing. This removes the need
%@                for a single large "UpdateInterface" function and reduces coupling between parts of the interface. For example,
%@            the "SelectedDemo" property would have an associated event such that when it is changed by a callback (or from the command-line) it
%@        notifies other interface components of the change. Each interface component (or group thereof) can
%@    just listen for the events that affect it.</li>
%@            </ul>
%@            <p>Advice on how to build large-scale applications is beyond the scope
%@                of this document. If you need help in this area, please contact your MathWorks
%@            account manager who will be able to put you in touch with a technical specialist.</p>
%@        
%@      
%@      <br clear="ALL"/>
%@      <table class="footer" width="100%" border="0" cellspacing="0" cellpadding="0">
%@         <tr>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_5.html"><img src="images/leftarrow.png" border="0" alt="previous page"/></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="left"><a href="User guide8_5.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Running it</font></a></td>
%@            <td width="20%" height="15" bgcolor="#e4f0f8" align="center"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">[Top]</font></a></td>
%@            <td width="40%" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><font face="arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">Front page</font></a></td>
%@            <td width="18" height="15" bgcolor="#e4f0f8" align="right"><a href="index.html"><img src="images/rightarrow.png" border="0" alt="next page"/></a></td>
%@         </tr>
%@      </table>
%@      <font face="Arial" bgcolor="#e4f0f8" size="normal" underline="0" color="#000000">&copy; 2014 The MathWorks Ltd</font>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@      <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@   
%@   </body>
%@</html>
%@&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/VisibleExample.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide3_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/about.html__ -->
%@                <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Getting Started1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/atoz.html__ -->
%@<HTML>
%@
%@  <HEAD>
%@    <LINK REL="stylesheet" TYPE="text/css" HREF="doc.css"/>
%@    <TITLE>GUI Layout Toolbox documentation: Index</TITLE>
%@    <meta author="The MathWorks Ltd."/>    <meta copyright="2014 The MathWorks Ltd."/>  </HEAD>
%@  <BODY>
%@    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD BGCOLOR="#DDEEFF">
%@    <A HREF="index.html"><FONT FACE="ARIAL" COLOR="#000066" SIZE="+2" UNDERLINE="0">GUI Layout Toolbox 1.17</Font>
%@    </A></TD></TR></TABLE>
%@    <H1>Alphabetical index</H1>
%@    <CENTER>
%@    <A HREF="#A">A</A> - 
%@    <A HREF="#B">B</A> - 
%@    <A HREF="#C">C</A> - 
%@    <A HREF="#D">D</A> - 
%@    <A HREF="#E">E</A> - 
%@    <A HREF="#F">F</A> - 
%@    <A HREF="#G">G</A> - 
%@    <A HREF="#H">H</A> - 
%@    <A HREF="#I">I</A> - 
%@    <A HREF="#J">J</A> - 
%@    <A HREF="#K">K</A> - 
%@    <A HREF="#L">L</A> - 
%@    <A HREF="#M">M</A> 
%@    </CENTER><CENTER>
%@    <A HREF="#N">N</A> - 
%@    <A HREF="#O">O</A> - 
%@    <A HREF="#P">P</A> - 
%@    <A HREF="#Q">Q</A> - 
%@    <A HREF="#R">R</A> - 
%@    <A HREF="#S">S</A> - 
%@    <A HREF="#T">T</A> - 
%@    <A HREF="#U">U</A> - 
%@    <A HREF="#V">V</A> - 
%@    <A HREF="#W">W</A> - 
%@    <A HREF="#X">X</A> - 
%@    <A HREF="#Y">Y</A> - 
%@    <A HREF="#Z">Z</A>
%@    </CENTER>
%@    <TABLE BORDER="0" WIDTH="100%" CELLPADDING="0" CELLSPACING="0"><TR><TD>
%@      <TR><TD COLSPAN="2"><HR><A NAME="A"><H2>A</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">A complete example</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8.html">A complete example (User guide: 8)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">About</TD><TD BGCOLOR="#FFFFFF"><A HREF="Getting Started1.html">What is the GUI Layout Toolbox? (Getting Started: 1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Acknowledgements</TD><TD BGCOLOR="#EBEBFF"><A HREF="Getting Started5.html">Acknowledgements (Getting Started: 5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Advanced maneuvers with panels</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide5.html">Advanced maneuvers with panels (User guide: 5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Application design</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8.html">A complete example (User guide: 8)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Application structure</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide8_1.html">Application structure (User guide: 8.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">axes</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide2.html">Positioning Axes (User guide: 2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Axes inside layouts</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide2_2.html">Axes inside layouts (User guide: 2.2)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="B"><H2>B</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Box</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_1.html">uiextras.HBox (Function reference: 2.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_2.html">uiextras.VBox (Function reference: 2.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Boxes</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference.html#2">Boxes (Function reference: 2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">BoxPanel</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference1_3.html">uiextras.BoxPanel (Function reference: 1.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Button box</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_5.html">uiextras.HButtonBox (Function reference: 2.5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">&nbsp;</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_6.html">uiextras.VButtonBox (Function reference: 2.6)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="C"><H2>C</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Callbacks</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8.html">A complete example (User guide: 8)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">CardPanel</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference1_2.html">uiextras.CardPanel (Function reference: 1.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Compiler</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide7.html">Deploying GUIs using the MATLAB Compiler (User guide: 7)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Context help</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide5_1.html">Context help (User guide: 5.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">createInterface</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8_2.html">createInterface (User guide: 8.2)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="D"><H2>D</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Date</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_2.html">layoutVersion (Function reference: 4.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Default</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide4.html">Using property defaults (User guide: 4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">&nbsp;</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_4.html">uiextras.set (Function reference: 4.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">&nbsp;</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_5.html">uiextras.get (Function reference: 4.5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Deploying GUIs using the MATLAB Compiler</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide7.html">Deploying GUIs using the MATLAB Compiler (User guide: 7)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Dock and undock</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide5_3.html">Dock and undock (User guide: 5.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Draggable dividers</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference3_2.html">uiextras.GridFlex (Function reference: 3.2)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="E"><H2>E</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Empty</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_1.html">uiextras.Empty (Function reference: 4.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Enable and Visible</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide3.html">Enable and Visible (User guide: 3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Enable example</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide3_1.html">Enable example (User guide: 3.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Examples</TD><TD BGCOLOR="#FFFFFF"><A HREF="Examples.html">(Examples)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="F"><H2>F</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Flexible layout</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Folder</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_3.html">layoutRoot (Function reference: 4.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Function reference</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference.html">(Function reference)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="G"><H2>G</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Getting Started</TD><TD BGCOLOR="#EBEBFF"><A HREF="Getting Started.html">(Getting Started)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Grid</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference3_1.html">uiextras.Grid (Function reference: 3.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">GridFlex</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference3_2.html">uiextras.GridFlex (Function reference: 3.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Grids</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference.html#3">Grids (Function reference: 3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">GUIDE</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide6.html">Using layouts inside GUIDE GUIs (User guide: 6)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="H"><H2>H</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">HBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_1.html">uiextras.HBox (Function reference: 2.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">HBoxFlex</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">HButtonBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_5.html">uiextras.HButtonBox (Function reference: 2.5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Help</TD><TD BGCOLOR="#FFFFFF"><A HREF="Getting Started4.html">Support (Getting Started: 4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Horizontal button layout</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_5.html">uiextras.HButtonBox (Function reference: 2.5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Horizontal layout</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_1.html">uiextras.HBox (Function reference: 2.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">&nbsp;</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="I"><H2>I</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Installation</TD><TD BGCOLOR="#EBEBFF"><A HREF="Getting Started3.html">Installation (Getting Started: 3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Installation folder</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_3.html">layoutRoot (Function reference: 4.3)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="J"></A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="K"></A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="L"><H2>L</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Layout basics</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide1_1.html">Layout basics (User guide: 1.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Layout heirarchies</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide1_4.html">Layout heirarchies (User guide: 1.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">layoutRoot</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_3.html">layoutRoot (Function reference: 4.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">layoutVersion</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_2.html">layoutVersion (Function reference: 4.2)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="M"><H2>M</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">MATLAB Compiler</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide7.html">Deploying GUIs using the MATLAB Compiler (User guide: 7)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Minimize and maximize</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide5_2.html">Minimize and maximize (User guide: 5.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Minimum sizes</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide1_3.html#1.3.1">Sizes and units (User guide: 1.3.1)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="N"></A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="O"><H2>O</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">onListSelection</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8_4.html">onListSelection (User guide: 8.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Other functions</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference.html#4">Other functions (Function reference: 4)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="P"><H2>P</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Panel</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference1_1.html">uiextras.Panel (Function reference: 1.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Panels</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference.html#1">Panels (Function reference: 1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Position vs OuterPosition</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide2_1.html">Position vs OuterPosition (User guide: 2.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Positioning Axes</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide2.html">Positioning Axes (User guide: 2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Property</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide4.html">Using property defaults (User guide: 4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_4.html">uiextras.set (Function reference: 4.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">&nbsp;</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_5.html">uiextras.get (Function reference: 4.5)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="Q"></A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="R"><H2>R</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Release Notes</TD><TD BGCOLOR="#EBEBFF"><A HREF="Getting Started2.html">Release Notes (Getting Started: 2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Root</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_3.html">layoutRoot (Function reference: 4.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Running it</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8_5.html">Running it (User guide: 8.5)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="S"><H2>S</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Scalability</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8_6.html">Scalability (User guide: 8.6)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Setting defaults for all windows</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide4_2.html">Setting defaults for all windows (User guide: 4.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Setting defaults for one window</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide4_1.html">Setting defaults for one window (User guide: 4.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Sizes and units</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide1_3.html">Sizes and units (User guide: 1.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Support</TD><TD BGCOLOR="#EBEBFF"><A HREF="Getting Started4.html">Support (Getting Started: 4)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="T"><H2>T</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">TabPanel</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference1_4.html">uiextras.TabPanel (Function reference: 1.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Types of layout</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide1_2.html">Types of layout (User guide: 1.2)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="U"><H2>U</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.BoxPanel</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference1_3.html">uiextras.BoxPanel (Function reference: 1.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.CardPanel</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference1_2.html">uiextras.CardPanel (Function reference: 1.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.Empty</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_1.html">uiextras.Empty (Function reference: 4.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.get</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_5.html">uiextras.get (Function reference: 4.5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.Grid</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference3_1.html">uiextras.Grid (Function reference: 3.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.GridFlex</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference3_2.html">uiextras.GridFlex (Function reference: 3.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.HBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_1.html">uiextras.HBox (Function reference: 2.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.HBoxFlex</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.HButtonBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_5.html">uiextras.HButtonBox (Function reference: 2.5)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.Panel</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference1_1.html">uiextras.Panel (Function reference: 1.1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.set</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference4_4.html">uiextras.set (Function reference: 4.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.TabPanel</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference1_4.html">uiextras.TabPanel (Function reference: 1.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.VBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_2.html">uiextras.VBox (Function reference: 2.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">uiextras.VBoxFlex</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">uiextras.VButtonBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_6.html">uiextras.VButtonBox (Function reference: 2.6)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Understanding layouts</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide1.html">Understanding layouts (User guide: 1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Undock</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide5_3.html">Dock and undock (User guide: 5.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Uninstall</TD><TD BGCOLOR="#FFFFFF"><A HREF="Getting Started3.html">Installation (Getting Started: 3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">updateInterface</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide8_3.html">updateInterface (User guide: 8.3)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">User guide</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide.html">(User guide)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Using layouts inside GUIDE GUIs</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide6.html">Using layouts inside GUIDE GUIs (User guide: 6)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Using property defaults</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide4.html">Using property defaults (User guide: 4)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="V"><H2>V</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">VBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_2.html">uiextras.VBox (Function reference: 2.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">VBoxFlex</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">VButtonBox</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_6.html">uiextras.VButtonBox (Function reference: 2.6)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Version</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference4_2.html">layoutVersion (Function reference: 4.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Vertical button layout</TD><TD BGCOLOR="#EBEBFF"><A HREF="Function reference2_6.html">uiextras.VButtonBox (Function reference: 2.6)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Vertical layout</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_2.html">uiextras.VBox (Function reference: 2.2)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">&nbsp;</TD><TD BGCOLOR="#FFFFFF"><A HREF="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">Visible example</TD><TD BGCOLOR="#EBEBFF"><A HREF="User guide3_2.html">Visible example (User guide: 3.2)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><HR><A NAME="W"><H2>W</H2></A></TD></TR>
%@      <TR><TD BGCOLOR="#EBEBFF">What is the GUI Layout Toolbox?</TD><TD BGCOLOR="#EBEBFF"><A HREF="Getting Started1.html">What is the GUI Layout Toolbox? (Getting Started: 1)</A></TD></TR>
%@      <TR><TD BGCOLOR="#FFFFFF">Why use layouts?</TD><TD BGCOLOR="#FFFFFF"><A HREF="User guide1_5.html">Why use layouts? (User guide: 1.5)</A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="X"></A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="Y"></A></TD></TR>
%@      <TR><TD COLSPAN="2"><A NAME="Z"></A></TD></TR>
%@    </TD></TR></TABLE>
%@    <BR CLEAR="ALL"/>
%@    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
%@      <TR><TD HEIGHT="15" BGCOLOR="#DDEEFF" ALIGN="right">
%@        Back to <A HREF="index.html">Top</A>
%@      </TD></TR>
%@    </TABLE>
%@    &copy; 2014 The MathWorks Inc
%@    <TT>&#149; </TT><a href="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</a>
%@    <TT>&#149; </TT> <a href="matlab: helpview([matlabroot,'/patents.txt'])">Patents</a>
%@    <TT>&#149; </TT> <a href="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</a>
%@  </BODY>
%@</HTML>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/demoBrowserCreateInterface.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/demoBrowserOnListSelection.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8_4.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/demoBrowserRun.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8_5.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/demoBrowserScalability.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8_6.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/demoBrowserStructure.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/demoBrowserUpdateInterface.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=User guide8_3.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/doc.css__ -->
%@  H4 { color: rgb(153,0,0);
%@    font-family: Arial,Helvetica,sans-serif;
%@    font-weight: bold;
%@    font-size: smallnormal;
%@    }
%@
%@  H3 { color: rgb(153,0,0);
%@    font-family: Arial,Helvetica,sans-serif;
%@    font-weight: bold;
%@    font-size: large;
%@    }
%@
%@  H2 { color: rgb(153,0,0);
%@    font-weight: bold;
%@    font-size: x-large;
%@    font-family: Arial,Helvetica,sans-serif;
%@    }
%@
%@  H1 { color: rgb(10,0,0);
%@    font-weight: bold;
%@    font-size: xx-large;
%@    font-family: Arial,Helvetica,sans-serif;
%@    }
%@
%@  P { font-weight: normal;
%@    font-style: normal;
%@    color: rgb(0, 0, 32);
%@    font-family: Arial,Helvetica,sans-serif;
%@    text-decoration: none;
%@    }  
%@
%@  LI { font-weight: normal;
%@    font-style: normal;
%@    color: rgb(0, 0, 32);
%@    font-family: Arial,Helvetica,sans-serif;
%@    text-decoration: none;
%@    }  
%@
%@  A { font-weight: normal;
%@    font-style: normal;
%@    color: rgb(0,0,180, 0, 0);
%@    font-family: Arial,Helvetica,sans-serif;
%@    text-decoration: none;
%@    }
%@
%@  CODE { font-family: Courier New,Courier,monospace;
%@    color: #000044;
%@    font-size: -1;
%@    }
%@CODE.FUNCTION {
%@    color: #0000EE;
%@    font-weight: bold;
%@}
%@CODE.INARG {
%@    color: #008800;
%@    font-weight: bold;
%@}
%@CODE.OUTARG {
%@    color: #880000;
%@    font-weight: bold;
%@ }
%@CODE.COMMENT {
%@    color: #008800;
%@}
%@CODE.STRING {
%@    color: #DD00FF;
%@}
%@
%@TABLE.PROPERTYTABLE {
%@    border-width: 3;
%@    border-style: inset;
%@    border-color: #777777;
%@    cellpadding: 4;
%@    cellspacing: 0;
%@}
%@TH.PROPERTYTABLE {
%@    font-weight: bold;
%@    color: #000000;
%@    border-width: 2;
%@    border-style: inset;
%@    background-color: #b2b2b2;
%@}
%@TD.PROPERTYTABLE {
%@    font-weight: normal;
%@    color: #000000;
%@    border-width: 2;
%@    border-style: inset;
%@    background-color: #f2f2f2;
%@}
%@
%@PRE { font-family: Courier New,Courier,monospace;
%@    color: #000044;
%@    font-size: -1;
%@}
%@
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/doc.m__ -->
%@function doc( funcname )
%@%DOC  a wrapper for the built-in "doc" that also finds user documentation
%@%
%@%   DOC(FUNCNAME) tries to find HTML help for the function, class or
%@%   method FUNCNAME. It first searches the MATLAB path for FUNCNAME.html,
%@%   and if this is not found calls the built-in "doc" function to scan the
%@%   built-in help files. This is needed because the "doc" command in R2007a
%@%   and above no longer searches the MATLAB path for help files (it did for
%@%   R14 up to R2006b). Once this is fixed this hack should be removed.
%@
%@%   Copyright 2007 The MathWorks Ltd.
%@%   $Revision: 71 $    
%@%   $Date: 2010-07-07 08:21:55 +0100 (Wed, 07 Jul 2010) $
%@
%@if nargin
%@    if ischar( funcname )
%@        w = which( [funcname,'.html'] );
%@    elseif ishandle( funcname )
%@        switch upper( get( funcname, 'type' ) )
%@            case 'BLOCK'
%@                funcname = iResolveSimulinkBlockType( funcname );
%@            otherwise
%@                error( 'doc:BadArg', 'Cannot find documentation for object of type ''%s''', get( funcname, 'type' ) );
%@        end
%@        if isempty(funcname)
%@            error( 'doc:BadArg', 'Object returned empty type description' );
%@        else
%@            w = which( [funcname,'.html'] );
%@        end
%@    end
%@else
%@    w = [];
%@end
%@if isempty(w)
%@    % To get a function handle to the original function we first have to CD
%@    % to its directory, then get a handle, then return to where we were.
%@    % Urgh! Just horrible.
%@    olddir = pwd();
%@    origpath = fullfile( matlabroot(), 'toolbox', 'matlab', 'helptools' );
%@    cd(origpath);
%@    orig_doc = str2func( 'doc' );
%@    cd(olddir);
%@    
%@    % OK, we have the handle, so call it
%@    if nargin
%@        feval( orig_doc, funcname );
%@    else
%@        feval( orig_doc );
%@    end
%@else
%@    web(w, '-helpbrowser'); % was helpview(w) but gave Java issues - DJA
%@end
%@
%@function type = iResolveSimulinkBlockType( block )
%@% Simulink block. The block type can be in many places
%@% according to how the block was constructed so we need to
%@% check the type
%@block_type = get( block, 'BlockType' );
%@switch upper( block_type )
%@    case 'SUBSYSTEM'
%@        type = get( block, 'MaskType' );
%@    otherwise
%@        error( 'doc:BadArg', 'Simulink block type ''%s'' is not yet supported', block_type );
%@end
%@
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/frames.html__ -->
%@<HTML>
%@
%@  <HEAD>
%@    <TITLE>GUI Layout Documentation</TITLE>
%@    <META AUTHOR="The MathWorks Ltd."/>
%@    <META COPYRIGHT="2005-2007 The MathWorks Ltd."/>
%@  </HEAD>
%@  <FRAMESET cols="30%,70%">
%@    <FRAME name="toc" src="helptoc.html">
%@    <FRAME name="content" src="index.html">
%@  </FRAMESET>
%@</HTML>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/helpindex.xml__ -->
%@<?xml version='1.0' encoding='ISO-8859-1'  ?>
%@<!-- $Revision: 28 $ $Date: 2008-09-05 12:36:45 +0100 (Fri, 05 Sep 2008) $ -->
%@
%@<index version="1.0">
%@<indexitem target="User guide8.html">A complete example</indexitem>
%@<indexitem target="Getting Started1.html">About</indexitem>
%@<indexitem target="Getting Started5.html">Acknowledgements</indexitem>
%@<indexitem target="User guide5.html">Advanced maneuvers with panels</indexitem>
%@<indexitem target="User guide8.html">Application design</indexitem>
%@<indexitem target="User guide8_1.html">Application structure</indexitem>
%@<indexitem target="User guide2.html">axes</indexitem>
%@<indexitem target="User guide2_2.html">Axes inside layouts</indexitem>
%@<indexitem>Box
%@    <indexitem target="Function reference2_1.html">uiextras.HBox (Function reference: 2.1)</indexitem>
%@    <indexitem target="Function reference2_2.html">uiextras.VBox (Function reference: 2.2)</indexitem>
%@    <indexitem target="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</indexitem>
%@    <indexitem target="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</indexitem>
%@</indexitem>
%@<indexitem target="Function reference.html#2">Boxes</indexitem>
%@<indexitem target="Function reference1_3.html">BoxPanel</indexitem>
%@<indexitem>Button box
%@    <indexitem target="Function reference2_5.html">uiextras.HButtonBox (Function reference: 2.5)</indexitem>
%@    <indexitem target="Function reference2_6.html">uiextras.VButtonBox (Function reference: 2.6)</indexitem>
%@</indexitem>
%@<indexitem target="User guide8.html">Callbacks</indexitem>
%@<indexitem target="Function reference1_2.html">CardPanel</indexitem>
%@<indexitem target="User guide7.html">Compiler</indexitem>
%@<indexitem target="User guide5_1.html">Context help</indexitem>
%@<indexitem target="User guide8_2.html">createInterface</indexitem>
%@<indexitem target="Function reference4_2.html">Date</indexitem>
%@<indexitem>Default
%@    <indexitem target="User guide4.html">Using property defaults (User guide: 4)</indexitem>
%@    <indexitem target="Function reference4_4.html">uiextras.set (Function reference: 4.4)</indexitem>
%@    <indexitem target="Function reference4_5.html">uiextras.get (Function reference: 4.5)</indexitem>
%@</indexitem>
%@<indexitem target="User guide7.html">Deploying GUIs using the MATLAB Compiler</indexitem>
%@<indexitem target="User guide5_3.html">Dock and undock</indexitem>
%@<indexitem>Draggable dividers
%@    <indexitem target="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</indexitem>
%@    <indexitem target="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</indexitem>
%@    <indexitem target="Function reference3_2.html">uiextras.GridFlex (Function reference: 3.2)</indexitem>
%@</indexitem>
%@<indexitem target="Function reference4_1.html">Empty</indexitem>
%@<indexitem target="User guide3.html">Enable and Visible</indexitem>
%@<indexitem target="User guide3_1.html">Enable example</indexitem>
%@<indexitem target="Examples.html">Examples</indexitem>
%@<indexitem>Flexible layout
%@    <indexitem target="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</indexitem>
%@    <indexitem target="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</indexitem>
%@</indexitem>
%@<indexitem target="Function reference4_3.html">Folder</indexitem>
%@<indexitem target="Function reference.html">Function reference</indexitem>
%@<indexitem target="Getting Started.html">Getting Started</indexitem>
%@<indexitem target="Function reference3_1.html">Grid</indexitem>
%@<indexitem target="Function reference3_2.html">GridFlex</indexitem>
%@<indexitem target="Function reference.html#3">Grids</indexitem>
%@<indexitem target="User guide6.html">GUIDE</indexitem>
%@<indexitem target="Function reference2_1.html">HBox</indexitem>
%@<indexitem target="Function reference2_3.html">HBoxFlex</indexitem>
%@<indexitem target="Function reference2_5.html">HButtonBox</indexitem>
%@<indexitem target="Getting Started4.html">Help</indexitem>
%@<indexitem target="Function reference2_5.html">Horizontal button layout</indexitem>
%@<indexitem>Horizontal layout
%@    <indexitem target="Function reference2_1.html">uiextras.HBox (Function reference: 2.1)</indexitem>
%@    <indexitem target="Function reference2_3.html">uiextras.HBoxFlex (Function reference: 2.3)</indexitem>
%@</indexitem>
%@<indexitem target="Getting Started3.html">Installation</indexitem>
%@<indexitem target="Function reference4_3.html">Installation folder</indexitem>
%@<indexitem target="User guide1_1.html">Layout basics</indexitem>
%@<indexitem target="User guide1_4.html">Layout heirarchies</indexitem>
%@<indexitem target="Function reference4_3.html">layoutRoot</indexitem>
%@<indexitem target="Function reference4_2.html">layoutVersion</indexitem>
%@<indexitem target="User guide7.html">MATLAB Compiler</indexitem>
%@<indexitem target="User guide5_2.html">Minimize and maximize</indexitem>
%@<indexitem target="User guide1_3.html#1.3.1">Minimum sizes</indexitem>
%@<indexitem target="User guide8_4.html">onListSelection</indexitem>
%@<indexitem target="Function reference.html#4">Other functions</indexitem>
%@<indexitem target="Function reference1_1.html">Panel</indexitem>
%@<indexitem target="Function reference.html#1">Panels</indexitem>
%@<indexitem target="User guide2_1.html">Position vs OuterPosition</indexitem>
%@<indexitem target="User guide2.html">Positioning Axes</indexitem>
%@<indexitem>Property
%@    <indexitem target="User guide4.html">Using property defaults (User guide: 4)</indexitem>
%@    <indexitem target="Function reference4_4.html">uiextras.set (Function reference: 4.4)</indexitem>
%@    <indexitem target="Function reference4_5.html">uiextras.get (Function reference: 4.5)</indexitem>
%@</indexitem>
%@<indexitem target="Getting Started2.html">Release Notes</indexitem>
%@<indexitem target="Function reference4_3.html">Root</indexitem>
%@<indexitem target="User guide8_5.html">Running it</indexitem>
%@<indexitem target="User guide8_6.html">Scalability</indexitem>
%@<indexitem target="User guide4_2.html">Setting defaults for all windows</indexitem>
%@<indexitem target="User guide4_1.html">Setting defaults for one window</indexitem>
%@<indexitem target="User guide1_3.html">Sizes and units</indexitem>
%@<indexitem target="Getting Started4.html">Support</indexitem>
%@<indexitem target="Function reference1_4.html">TabPanel</indexitem>
%@<indexitem target="User guide1_2.html">Types of layout</indexitem>
%@<indexitem target="Function reference1_3.html">uiextras.BoxPanel</indexitem>
%@<indexitem target="Function reference1_2.html">uiextras.CardPanel</indexitem>
%@<indexitem target="Function reference4_1.html">uiextras.Empty</indexitem>
%@<indexitem target="Function reference4_5.html">uiextras.get</indexitem>
%@<indexitem target="Function reference3_1.html">uiextras.Grid</indexitem>
%@<indexitem target="Function reference3_2.html">uiextras.GridFlex</indexitem>
%@<indexitem target="Function reference2_1.html">uiextras.HBox</indexitem>
%@<indexitem target="Function reference2_3.html">uiextras.HBoxFlex</indexitem>
%@<indexitem target="Function reference2_5.html">uiextras.HButtonBox</indexitem>
%@<indexitem target="Function reference1_1.html">uiextras.Panel</indexitem>
%@<indexitem target="Function reference4_4.html">uiextras.set</indexitem>
%@<indexitem target="Function reference1_4.html">uiextras.TabPanel</indexitem>
%@<indexitem target="Function reference2_2.html">uiextras.VBox</indexitem>
%@<indexitem target="Function reference2_4.html">uiextras.VBoxFlex</indexitem>
%@<indexitem target="Function reference2_6.html">uiextras.VButtonBox</indexitem>
%@<indexitem target="User guide1.html">Understanding layouts</indexitem>
%@<indexitem target="User guide5_3.html">Undock</indexitem>
%@<indexitem target="Getting Started3.html">Uninstall</indexitem>
%@<indexitem target="User guide8_3.html">updateInterface</indexitem>
%@<indexitem target="User guide.html">User guide</indexitem>
%@<indexitem target="User guide6.html">Using layouts inside GUIDE GUIs</indexitem>
%@<indexitem target="User guide4.html">Using property defaults</indexitem>
%@<indexitem target="Function reference2_2.html">VBox</indexitem>
%@<indexitem target="Function reference2_4.html">VBoxFlex</indexitem>
%@<indexitem target="Function reference2_6.html">VButtonBox</indexitem>
%@<indexitem target="Function reference4_2.html">Version</indexitem>
%@<indexitem target="Function reference2_6.html">Vertical button layout</indexitem>
%@<indexitem>Vertical layout
%@    <indexitem target="Function reference2_2.html">uiextras.VBox (Function reference: 2.2)</indexitem>
%@    <indexitem target="Function reference2_4.html">uiextras.VBoxFlex (Function reference: 2.4)</indexitem>
%@</indexitem>
%@<indexitem target="User guide3_2.html">Visible example</indexitem>
%@<indexitem target="Getting Started1.html">What is the GUI Layout Toolbox?</indexitem>
%@<indexitem target="User guide1_5.html">Why use layouts?</indexitem>
%@</index>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/helptoc.html__ -->
%@<HTML>
%@
%@  <HEAD>
%@    <TITLE>Table of Contents</TITLE>
%@    <META AUTHOR="The MathWorks Ltd."/>
%@    <META COPYRIGHT="2005-2007 The MathWorks Ltd."/>
%@  </HEAD>
%@  <BODY>
%@    <a href="index.html" target="content"><img src="Images/bookicon.gif" border="0"/><b>&nbsp;GUI Layout</b><br /><font size="-2"><br /></font>
%@    
%@      &nbsp;<a href="Getting Started.html" target="content"><img border="0" src="Images/help_gs.png"><b>&nbsp;Getting Started</b></a><br><small>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="Getting Started1.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;1. What is the GUI Layout Toolbox?</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="Getting Started2.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;2. Release Notes</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="Getting Started3.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;3. Installation</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="Getting Started4.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;4. Support</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="Getting Started5.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;5. Acknowledgements</a><br></small>
%@<font size="-2"><br /></font>
%@    
%@      &nbsp;<a href="Examples.html" target="content"><img border="0" src="Images/help_ex.png"><b>&nbsp;Examples</b></a><br><small></small>
%@<font size="-2"><br /></font>
%@    
%@      &nbsp;<a href="User guide.html" target="content"><img border="0" src="Images/help_ug.png"><b>&nbsp;User guide</b></a><br><small>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide1.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;1. Understanding layouts</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide2.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;2. Positioning Axes</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide3.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;3. Enable and Visible</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide4.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;4. Using property defaults</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide5.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;5. Advanced maneuvers with panels</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide6.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;6. Using layouts inside GUIDE GUIs</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide7.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;7. Deploying GUIs using the MATLAB Compiler</a><br>
%@         &nbsp;&nbsp;&nbsp;&nbsp;<a href="User guide8.html" target="content"><img src="Images/pageicon.gif" border="0">&nbsp;8. A complete example</a><br></small>
%@<font size="-2"><br /></font>
%@    
%@      &nbsp;<a href="Function reference.html" target="content"><img border="0" src="Images/help_fx.png"><b>&nbsp;Function reference</b></a><br><small></small>
%@<font size="-2"><br /></font>
%@  &nbsp;<a href="atoz.html" target="content"><b><img src="Images/help_rn.png" border="0">&nbsp;Index</b></a>
%@  </BODY>
%@</HTML>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/helptoc.xml__ -->
%@<?xml version='1.0' encoding='ISO-8859-1' ?>
%@
%@<!-- Copyright 2014 The MathWorks Ltd.-->
%@<toc version="1.0">
%@  <tocitem image="$toolbox/matlab/icons/book_mat.png" target="index.html">GUI Layout
%@    <tocitem target="Getting Started.html" image="$toolbox/matlab/icons/help_gs.png">Getting Started<tocitem target="Getting Started1.html">1. What is the GUI Layout Toolbox?</tocitem><tocitem target="Getting Started2.html">2. Release Notes</tocitem><tocitem target="Getting Started3.html">3. Installation</tocitem><tocitem target="Getting Started4.html">4. Support</tocitem><tocitem target="Getting Started5.html">5. Acknowledgements</tocitem></tocitem>
%@    <tocitem target="Examples.html" image="$toolbox/matlab/icons/help_ex.png">Examples</tocitem>
%@    <tocitem target="User guide.html" image="$toolbox/matlab/icons/help_ug.png">User guide<tocitem target="User guide1.html">1. Understanding layouts<tocitem target="User guide1_1.html">1.1. Layout basics</tocitem><tocitem target="User guide1_2.html">1.2. Types of layout</tocitem><tocitem target="User guide1_3.html">1.3. Sizes and units</tocitem><tocitem target="User guide1_4.html">1.4. Layout heirarchies</tocitem><tocitem target="User guide1_5.html">1.5. Why use layouts?</tocitem></tocitem><tocitem target="User guide2.html">2. Positioning Axes<tocitem target="User guide2_1.html">2.1. Position vs OuterPosition</tocitem><tocitem target="User guide2_2.html">2.2. Axes inside layouts</tocitem></tocitem><tocitem target="User guide3.html">3. Enable and Visible<tocitem target="User guide3_1.html">3.1. Enable example</tocitem><tocitem target="User guide3_2.html">3.2. Visible example</tocitem></tocitem><tocitem target="User guide4.html">4. Using property defaults<tocitem target="User guide4_1.html">4.1. Setting defaults for one window</tocitem><tocitem target="User guide4_2.html">4.2. Setting defaults for all windows</tocitem></tocitem><tocitem target="User guide5.html">5. Advanced maneuvers with panels<tocitem target="User guide5_1.html">5.1. Context help</tocitem><tocitem target="User guide5_2.html">5.2. Minimize and maximize</tocitem><tocitem target="User guide5_3.html">5.3. Dock and undock</tocitem></tocitem><tocitem target="User guide6.html">6. Using layouts inside GUIDE GUIs</tocitem><tocitem target="User guide7.html">7. Deploying GUIs using the MATLAB Compiler</tocitem><tocitem target="User guide8.html">8. A complete example<tocitem target="User guide8_1.html">8.1. Application structure</tocitem><tocitem target="User guide8_2.html">8.2. createInterface</tocitem><tocitem target="User guide8_3.html">8.3. updateInterface</tocitem><tocitem target="User guide8_4.html">8.4. onListSelection</tocitem><tocitem target="User guide8_5.html">8.5. Running it</tocitem><tocitem target="User guide8_6.html">8.6. Scalability</tocitem></tocitem></tocitem>
%@    <tocitem target="Function reference.html" image="$toolbox/matlab/icons/help_fx.png">Function reference<tocitem target="Function reference.html#1">1. Panels<tocitem target="Function reference1_1.html">1.1. uiextras.Panel</tocitem><tocitem target="Function reference1_2.html">1.2. uiextras.CardPanel</tocitem><tocitem target="Function reference1_3.html">1.3. uiextras.BoxPanel</tocitem><tocitem target="Function reference1_4.html">1.4. uiextras.TabPanel</tocitem></tocitem><tocitem target="Function reference.html#2">2. Boxes<tocitem target="Function reference2_1.html">2.1. uiextras.HBox</tocitem><tocitem target="Function reference2_2.html">2.2. uiextras.VBox</tocitem><tocitem target="Function reference2_3.html">2.3. uiextras.HBoxFlex</tocitem><tocitem target="Function reference2_4.html">2.4. uiextras.VBoxFlex</tocitem><tocitem target="Function reference2_5.html">2.5. uiextras.HButtonBox</tocitem><tocitem target="Function reference2_6.html">2.6. uiextras.VButtonBox</tocitem></tocitem><tocitem target="Function reference.html#3">3. Grids<tocitem target="Function reference3_1.html">3.1. uiextras.Grid</tocitem><tocitem target="Function reference3_2.html">3.2. uiextras.GridFlex</tocitem></tocitem><tocitem target="Function reference.html#4">4. Other functions<tocitem target="Function reference4_1.html">4.1. uiextras.Empty</tocitem><tocitem target="Function reference4_2.html">4.2. layoutVersion</tocitem><tocitem target="Function reference4_3.html">4.3. layoutRoot</tocitem><tocitem target="Function reference4_4.html">4.4. uiextras.set</tocitem><tocitem target="Function reference4_5.html">4.5. uiextras.get</tocitem></tocitem></tocitem>
%@  <tocitem image="$toolbox/matlab/icons/help_rn.png" target="atoz.html">Index</tocitem>
%@  </tocitem>
%@</toc>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/index.html__ -->
%@<HTML>
%@
%@  <HEAD>
%@    <TITLE>GUI Layout Toolbox documentation</TITLE>
%@    <META AUTHOR="The MathWorks Ltd."/>
%@    <META COPYRIGHT="2005-2007 The MathWorks Ltd."/>
%@    <LINK REL="stylesheet" TYPE="text/css" HREF="doc.css"/>
%@  </HEAD>
%@  <BODY>
%@    <TABLE BGCOLOR="#FFFFFF" WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
%@      <tr>
%@        <TD HEIGHT="62" BACKGROUND="Images/headerBG.png">
%@          <IMG SRC="Images/header.png" HEIGHT="62" ALT="GUI Layout Toolbox Documentation"> 
%@        </TD></TR><TR><TD>
%@    <BR/>
%@    <H1>GUI Layout Toolbox documentation</H1>
%@    <B>Version: 1.17</B>
%@    <P><P>
%@    This toolbox provides tools to create sophisticated MATLAB graphical 
%@    user interfaces that resize gracefully.  The classes supplied can be 
%@    used in combination to produce virtually any user interface layout.
%@</P>
%@<UL>
%@    <LI>Arrange MATLAB user-interface components horizontally, vertically or in grids</LI>
%@    <LI>Ability to mix fixed size and variable size elements</LI>
%@    <LI>Dynamic resizing of elements by dragging dividers</LI> 
%@    <LI>Use panels and tabs for switching interface pages</LI>
%@</UL>
%@<P>
%@    This toolbox was developed by Ben Tordoff and David Sampson from the 
%@    Consulting group at <a href="http://www.mathworks.com">MathWorks</a>.
%@</P>
%@    </P>
%@    <center><IMG src="Images/titleimage.png"/></center>
%@    <H2>Contents:</H2>
%@    <TABLE>
%@      <TR><TD><IMG SRC="Images/help_gs.png"/></TD><TD><B><A HREF="Getting Started.html">Getting Started</A>: </B></TD><TD>Introductory notes and installation instructions</TD></TR>
%@      <TR><TD><IMG SRC="Images/help_ex.png"/></TD><TD><B><A HREF="Examples.html">Examples</A>: </B></TD><TD>A list of the examples that are provided in the documentation</TD></TR>
%@      <TR><TD><IMG SRC="Images/help_ug.png"/></TD><TD><B><A HREF="User guide.html">User guide</A>: </B></TD><TD>Describes how to use these tools</TD></TR>
%@      <TR><TD><IMG SRC="Images/help_fx.png"/></TD><TD><B><A HREF="Function reference.html">Function reference</A>: </B></TD><TD>A list of the available functions</TD></TR>
%@      <TR><TD><IMG SRC="Images/help_rn.png"/></TD><TD><B><A HREF="atoz.html">Index</A></B></TD>
%@<TD>Alphabetical index of sections, functions and concepts</TD></TR>
%@    </TABLE>
%@    </TD></TR></TABLE>
%@    <BR/>
%@    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
%@    <TR><TD HEIGHT="15" BGCOLOR="#336699"> </TD></TR></TABLE>
%@    <P>&copy; 2014 The MathWorks Ltd
%@    <TT>&#149;</TT> <A HREF="matlab: helpview([matlabroot,'/license.txt'])">Terms of Use</A>
%@    <TT>&#149;</TT> <A HREF="matlab: helpview([matlabroot,'/patents.txt'])">Patents</A>
%@    <TT>&#149;</TT> <A HREF="matlab: helpview([matlabroot,'/trademarks.txt'])">Trademarks</A></P>
%@  </BODY>
%@</HTML>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/info.xml__ -->
%@<productinfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="optional">
%@<?xml-stylesheet type="text/xsl"href="optional"?>
%@<!-- Copyright 2005-2007 The MathWorks Ltd.-->
%@
%@<matlabrelease>14</matlabrelease>
%@<name>GUI Layout</name>
%@<type>toolbox</type>
%@<icon>$toolbox/matlab/icons/bookicon.gif</icon>
%@<help_location>../layoutHelp</help_location>
%@
%@</productinfo>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/layout.html__ -->
%@<html><head>
%@  <meta http-equiv="Refresh" content="0;url=index.html"/>
%@  <meta author="The MathWorks Ltd."/>
%@  <meta copyright="2014 The MathWorks Ltd."/>
%@</head></html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/layoutRoot.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference4_3.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/layoutVersion.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference4_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/layouts.html__ -->
%@<html><head>
%@  <meta http-equiv="Refresh" content="0;url=index.html"/>
%@  <meta author="The MathWorks Ltd."/>
%@  <meta copyright="2014 The MathWorks Ltd."/>
%@</head></html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/releasenotes.html__ -->
%@                <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Getting Started2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.BoxPanel.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference1_3.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.CardPanel.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference1_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.Empty.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference4_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.Grid.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference3_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.GridFlex.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference3_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.HBox.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference2_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.HBoxFlex.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference2_3.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.HButtonBox.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference2_5.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.Panel.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference1_1.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.TabPanel.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference1_4.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.VBox.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference2_2.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.VBoxFlex.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference2_4.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.VButtonBox.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference2_6.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.get.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference4_5.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/uiextras.set.html__ -->
%@                    <html xmlns:saxon="http://icl.com/saxon"><head><meta http-equiv="Refresh" content="0;url=Function reference4_4.html"/><meta author="The MathWorks Ltd."/><meta copyright="2014 The MathWorks Ltd."/></head></html>&gt;
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/axesexample.m__ -->
%@%% Axes inside layouts
%@% This example demonstrates how axes are affected by being placed into
%@% layouts. The layouts take into account the "ActivePositionProperty" in
%@% order to determine whether to set the "Position" or "OuterPosition"
%@% (default) property of the axes.
%@%
%@% Copyright 2009-2013 The MathWorks, Inc.
%@
%@%% Open the window
%@% Open a new figure window and remove the toolbar and menus
%@window = figure( 'Name', 'Axes inside layouts', ...
%@    'MenuBar', 'none', ...
%@    'Toolbar', 'none', ...
%@    'NumberTitle', 'off' );
%@
%@%% Create the layout
%@% The layout involves two axes side by side. This is done using a
%@% flexible horizontal box. The left-hand axes is left with the
%@% ActivePositionProperty set to "OuterPosition", but the right-hand axes is
%@% switched to use "Position"
%@hbox = uiextras.HBoxFlex('Parent', window, 'Spacing', 3);
%@axes1 = axes( 'Parent', hbox, ...
%@    'ActivePositionProperty', 'OuterPosition' );
%@axes2 = axes( 'Parent', hbox, ...
%@    'ActivePositionProperty', 'Position' );
%@set( hbox, 'Sizes', [-2 -1] );
%@
%@%% Fill the axes
%@% Using "OuterPosition" (left-hand axes) is the normal mode and looks good
%@% for virtually any plot type. Using "Position" is only really useful for
%@% 2D plots with the axes turned off, such as images
%@x = membrane( 1, 15 );
%@surf( axes1, x );
%@lighting( axes1, 'gouraud' );
%@shading( axes1, 'interp' );
%@l = light( 'Parent', axes1 );
%@camlight( l, 'head' );
%@axis( axes1, 'tight' );
%@
%@imagesc( x, 'Parent', axes2 );
%@set( axes2, 'xticklabel', [], 'yticklabel', [] );
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/callbackexample.m__ -->
%@function callbackexample()
%@
%@% Copyright 2009-2013 The MathWorks, Inc.
%@
%@% Create application data
%@colorNames = {
%@    'Red'
%@    'Orange'
%@    'Yellow'
%@    'Green'
%@    'Blue'
%@    'Indigo'
%@    'Violet'
%@    };
%@colorValues = [
%@    1.0 0.2 0.2
%@    1.0 0.6 0.2
%@    1.0 1.0 0.4
%@    0.6 1.0 0.6
%@    0.2 0.4 1.0
%@    0.4 0.1 0.6
%@    0.7 0.5 1.0
%@    ];
%@
%@% Layout the interface
%@f = figure();
%@p = uiextras.Panel( 'Parent', f, 'Title', 'A Panel', 'TitlePosition', 'CenterTop');
%@b = uiextras.HBoxFlex( 'Parent', p, 'Spacing', 5, 'Padding', 5  );
%@hList = uicontrol( 'Style', 'listbox', 'Parent', b, ...
%@    'String', colorNames, ...
%@    'Back', 'w' );
%@hButton = uicontrol( 'Parent', b, ...
%@    'Background', colorValues(1,:), ...
%@    'String', colorNames{1} );
%@set( b, 'Sizes', [-1 -3] );
%@
%@% Add user interactions
%@set( hList, 'Callback', @onChangeColor );
%@
%@
%@    function onChangeColor( source, ~ )
%@        idx = get( source, 'Value' );
%@        set( hButton, 'Background', colorValues(idx,:), 'String', colorNames{idx} )
%@    end % onChangeColor
%@
%@
%@end % main
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/demoBrowser.m__ -->
%@function demoBrowser()
%@%demoBrowser: an example of using layouts to build a user interface
%@%
%@%   demoBrowser() opens a simple GUI that allows several of MATLAB's
%@%   built-in demos to be viewed. It aims to demonstrate how multiple
%@%   layouts can be used to create a good-looking user interface that
%@%   retains the correct proportions when resized. It also shows how to
%@%   hook-up callbacks to interpret user interaction.
%@%
%@%   See also: <a href="matlab:doc Layouts">Layouts</a>
%@
%@%   Copyright 2010-2013 The MathWorks, Inc.
%@
%@% Data is shared between all child functions by declaring the variables
%@% here (they become global to the function). We keep things tidy by putting
%@% all GUI stuff in one structure and all data stuff in another. As the app
%@% grows, we might consider making these objects rather than structures.
%@data = createData();
%@gui = createInterface( data.DemoNames );
%@
%@% Now update the GUI with the current data
%@updateInterface();
%@redrawDemo();
%@
%@% Explicitly call the demo display so that it gets included if we deploy
%@displayEndOfDemoMessage('')
%@
%@%-------------------------------------------------------------------------%
%@    function data = createData()
%@        % Create the shared data-structure for this application
%@        demoList = {
%@            'Complex surface'            'cplxdemo'
%@            'Cruller'                    'cruller'
%@            'Earth'                      'earthmap'
%@            'Four linked tori'           'tori4'
%@            'Klein bottle'               'xpklein'
%@            'Klein bottle (1)'           'klein1'
%@            'Knot'                       'knot'
%@            'Logo'                       'logo'
%@            'Spherical Surface Harmonic' 'spharm2'
%@            'Werner Boy''s Surface'      'wernerboy'
%@            };
%@        selectedDemo = 8;
%@        data = struct( ...
%@            'DemoNames', {demoList(:,1)'}, ...
%@            'DemoFunctions', {demoList(:,2)'}, ...
%@            'SelectedDemo', selectedDemo );
%@    end % createData
%@
%@%-------------------------------------------------------------------------%
%@    function gui = createInterface( demoList )
%@        % Create the user interface for the application and return a
%@        % structure of handles for global use.
%@        gui = struct();
%@        % Open a window and add some menus
%@        gui.Window = figure( ...
%@            'Name', 'Gallery browser', ...
%@            'NumberTitle', 'off', ...
%@            'MenuBar', 'none', ...
%@            'Toolbar', 'none', ...
%@            'HandleVisibility', 'off' );
%@        
%@        % Set default panel color
%@        uiextras.set( gui.Window, 'DefaultBoxPanelTitleColor', [0.7 1.0 0.7] );
%@        
%@        % + File menu
%@        gui.FileMenu = uimenu( gui.Window, 'Label', 'File' );
%@        uimenu( gui.FileMenu, 'Label', 'Exit', 'Callback', @onExit );
%@        
%@        % + View menu
%@        gui.ViewMenu = uimenu( gui.Window, 'Label', 'View' );
%@        for ii=1:numel( demoList )
%@            uimenu( gui.ViewMenu, 'Label', demoList{ii}, 'Callback', @onMenuSelection );
%@        end
%@        
%@        % + Help menu
%@        helpMenu = uimenu( gui.Window, 'Label', 'Help' );
%@        uimenu( helpMenu, 'Label', 'Documentation', 'Callback', @onHelp );
%@        
%@        
%@        % Arrange the main interface
%@        mainLayout = uiextras.HBoxFlex( 'Parent', gui.Window, 'Spacing', 3 );
%@        
%@        % + Create the panels
%@        controlPanel = uiextras.BoxPanel( ...
%@            'Parent', mainLayout, ...
%@            'Title', 'Select a demo:' );
%@        gui.ViewPanel = uiextras.BoxPanel( ...
%@            'Parent', mainLayout, ...
%@            'Title', 'Viewing: ???', ...
%@            'HelpFcn', @onDemoHelp );
%@
%@        % + Adjust the main layout
%@        set( mainLayout, 'Sizes', [-1,-2]  );
%@        
%@        
%@        % + Create the controls
%@        controlLayout = uiextras.VBox( 'Parent', controlPanel, ...
%@            'Padding', 3, 'Spacing', 3 );
%@        gui.ListBox = uicontrol( 'Style', 'list', ...
%@            'BackgroundColor', 'w', ...
%@            'Parent', controlLayout, ...
%@            'String', demoList(:), ...
%@            'Value', 1, ...
%@            'Callback', @onListSelection);
%@        gui.HelpButton = uicontrol( 'Style', 'PushButton', ...
%@            'Parent', controlLayout, ...
%@            'String', 'Help for <demo>', ...
%@            'Callback', @onDemoHelp );
%@        set( controlLayout, 'Sizes', [-1 28] ); % Make the list fill the space
%@        
%@        % + Create the view
%@        p = gui.ViewPanel;
%@        gui.ViewAxes = axes( 'Parent', p );
%@        
%@        
%@    end % createInterface
%@
%@%-------------------------------------------------------------------------%
%@    function updateInterface()
%@        % Update various parts of the interface in response to the demo
%@        % being changed.
%@        
%@        % Update the list and menu to show the current demo
%@        set( gui.ListBox, 'Value', data.SelectedDemo );
%@        % Update the help button label
%@        demoName = data.DemoNames{ data.SelectedDemo };
%@        set( gui.HelpButton, 'String', ['Help for ',demoName] );
%@        % Update the view panel title
%@        set( gui.ViewPanel, 'Title', sprintf( 'Viewing: %s', demoName ) );
%@        % Untick all menus
%@        menus = get( gui.ViewMenu, 'Children' );
%@        set( menus, 'Checked', 'off' );
%@        % Use the name to work out which menu item should be ticked
%@        whichMenu = strcmpi( demoName, get( menus, 'Label' ) );
%@        set( menus(whichMenu), 'Checked', 'on' );
%@    end % updateInterface
%@
%@%-------------------------------------------------------------------------%
%@    function redrawDemo()
%@        % Draw a demo into the axes provided
%@        
%@        % We first clear the existing axes ready to build a new one
%@        if ishandle( gui.ViewAxes )
%@            delete( gui.ViewAxes );
%@        end
%@        
%@        % Some demos create their own figure. Others don't.
%@        fcnName = data.DemoFunctions{data.SelectedDemo};
%@        switch upper( fcnName )
%@            case 'LOGO'
%@                % These demos open their own windows
%@                evalin( 'base', fcnName );
%@                gui.ViewAxes = gca();
%@                fig = gcf();
%@                set( fig, 'Visible', 'off' );
%@                
%@            otherwise
%@                % These demos need a window opening
%@                fig = figure( 'Visible', 'off' );
%@                evalin( 'base', fcnName );
%@                gui.ViewAxes = gca();
%@        end
%@        % Now copy the axes from the demo into our window and restore its
%@        % state.
%@        cmap = colormap( gui.ViewAxes );
%@        set( gui.ViewAxes, 'Parent', double(gui.ViewPanel) );
%@        colormap( gui.ViewAxes, cmap );
%@        rotate3d( gui.ViewAxes, 'on' );
%@        % Get rid of the demo figure
%@        close( fig );
%@    end % redrawDemo
%@
%@%-------------------------------------------------------------------------%
%@    function onListSelection( src, ~ )
%@        % User selected a demo from the list - update "data" and refresh
%@        data.SelectedDemo = get( src, 'Value' );
%@        updateInterface();
%@        redrawDemo();
%@    end % onListSelection
%@
%@%-------------------------------------------------------------------------%
%@    function onMenuSelection( src, ~ )
%@        % User selected a demo from the menu - work out which one
%@        demoName = get( src, 'Label' );
%@        data.SelectedDemo = find( strcmpi( demoName, data.DemoNames ), 1, 'first' );
%@        updateInterface();
%@        redrawDemo();
%@    end % onMenuSelection
%@
%@
%@%-------------------------------------------------------------------------%
%@    function onHelp( ~, ~ )
%@        % User has asked for the documentation
%@        doc layout
%@    end % onHelp
%@
%@%-------------------------------------------------------------------------%
%@    function onDemoHelp( ~, ~ )
%@        % User wnats documentation for the current demo
%@        showdemo( data.DemoFunctions{data.SelectedDemo} );
%@    end % onDemoHelp
%@
%@%-------------------------------------------------------------------------%
%@    function onExit( ~, ~ )
%@        % User wants to quit out of the application
%@        delete( gui.Window );
%@    end % onExit
%@
%@end % EOF
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/displayEndOfDemoMessage.m__ -->
%@function displayEndOfDemoMessage(filename)
%@% Dummy function - do nothing.
%@%
%@% Copyright 2009-2013 The MathWorks, Inc.
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/dockexample.m__ -->
%@function dockexample()
%@%DOCKEXAMPLE: An example of using the panelbox dock/undock functionality
%@
%@%   Copyright 2009-2013 The MathWorks Ltd.
%@
%@% Create the window and main layout
%@fig = figure( 'Name', 'Dockable GUI example', ...'
%@    'NumberTitle', 'off', ...
%@    'Toolbar', 'none', ...
%@    'MenuBar', 'none', ...
%@    'CloseRequestFcn', @nCloseAll );
%@box = uiextras.HBox( 'Parent', fig );
%@
%@% Add three panels to the box
%@panel{1} = uiextras.BoxPanel( 'Title', 'Panel 1', ...
%@    'DockFcn', {@nDock, 1}, ...
%@    'Parent', box );
%@panel{2} = uiextras.BoxPanel( 'Title', 'Panel 2', ...
%@    'DockFcn', {@nDock, 2}, ...
%@    'Parent', box );
%@panel{3} = uiextras.BoxPanel( 'Title', 'Panel 3', ...
%@    'DockFcn', {@nDock, 3}, ...
%@    'Parent', box );
%@
%@% Add some contents
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 1', 'Parent', panel{1} );
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 2', 'Parent', panel{2} );
%@box1 = uiextras.VBox( 'Parent', panel{3} );
%@box2 = uiextras.HBox( 'Parent', box1 );
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 3', 'Parent', box1 );
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 4', 'Parent', box2 );
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 5', 'Parent', box2 );
%@
%@% Set the dock/undock callback
%@set( panel{1}, 'DockFcn', {@nDock, 1} );
%@set( panel{2}, 'DockFcn', {@nDock, 2} );
%@set( panel{3}, 'DockFcn', {@nDock, 3} );
%@
%@%-------------------------------------------------------------------------%
%@    function nDock( eventSource, eventData, whichpanel ) %#ok<INUSL>
%@        % Set the flag
%@        panel{whichpanel}.IsDocked = ~panel{whichpanel}.IsDocked;
%@        if panel{whichpanel}.IsDocked
%@            % Put it back into the layout
%@            newfig = get( panel{whichpanel}, 'Parent' );
%@            set( panel{whichpanel}, 'Parent', box );
%@            delete( newfig );
%@        else
%@            % Take it out of the layout
%@            pos = getpixelposition( panel{whichpanel} );
%@            newfig = figure( ...
%@                'Name', get( panel{whichpanel}, 'Title' ), ...
%@                'NumberTitle', 'off', ...
%@                'MenuBar', 'none', ...
%@                'Toolbar', 'none', ...
%@                'CloseRequestFcn', {@nDock, whichpanel} );
%@            figpos = get( newfig, 'Position' );
%@            set( newfig, 'Position', [figpos(1,1:2), pos(1,3:4)] );
%@            set( panel{whichpanel}, 'Parent', newfig, ...
%@                'Units', 'Normalized', ...
%@                'Position', [0 0 1 1] );
%@        end
%@    end % nDock
%@
%@%-------------------------------------------------------------------------%
%@    function nCloseAll( ~, ~ )
%@        % User wished to close the application, so we need to tidy up
%@        
%@        % Delete all windows, including undocked ones. We can do this by
%@        % getting the window for each panel in turn and deleting it.
%@        for ii=1:numel( panel )
%@            if isvalid( panel{ii} ) && ~strcmpi( panel{ii}.BeingDeleted, 'on' )
%@                figh = ancestor( panel{ii}, 'figure' );
%@                delete( figh );
%@            end
%@        end
%@        
%@    end % nCloseAll
%@
%@end % Main function
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/enableexample.m__ -->
%@%% Enabling/disabling a panel
%@%
%@%   This example opens a simple user-interface with a panel full of
%@%   buttons. We can then enable/disbale the entire panel in one go. Note
%@%   that the previous state of the buttons is preserved. 
%@%
%@%   Copyright 2009-2013 The MathWorks Ltd.
%@
%@%% Open a window and add a panel
%@fig = figure( 'Name', 'Enable example', ...
%@    'Position', [100 100 150 250], ...
%@    'MenuBar', 'none', ...
%@    'ToolBar', 'none', ...
%@    'NumberTitle', 'off' );
%@panel = uiextras.BoxPanel( 'Parent', fig, 'Title', 'Panel' );
%@
%@%% Put some buttons inside the panel
%@box = uiextras.VButtonBox( 'Parent', panel );
%@uicontrol( 'Parent', box, 'String', 'Button 1' );
%@uicontrol( 'Parent', box, 'String', 'Button 2' );
%@uicontrol( 'Parent', box, 'String', 'Button 3', 'Enable', 'off' );
%@uicontrol( 'Parent', box, 'String', 'Button 4' );
%@uicontrol( 'Parent', box, 'String', 'Button 5', 'Enable', 'off' );
%@uicontrol( 'Parent', box, 'String', 'Button 6' );
%@
%@%% Try disabling the panel
%@set( panel, 'Enable', 'off' );
%@
%@%% Try enabling the panel
%@set( panel, 'Enable', 'on' );
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/gridflexpositioning.m__ -->
%@% Copyright 2009-2013 The MathWorks Ltd.
%@
%@f = figure(); 
%@
%@% Box Panel 
%@p = uiextras.BoxPanel( 'Parent', f, 'Title', 'A BoxPanel', 'Padding', 5 ); 
%@
%@% HBox 
%@b = uiextras.HBox( 'Parent', p, 'Spacing', 5, 'Padding', 5 ); 
%@
%@% uicontrol 
%@uicontrol( 'Style', 'listbox', 'Parent', b, 'String', {'Item 1','Item 2'} ); 
%@
%@% Grid Flex 
%@g = uiextras.GridFlex( 'Parent', b, 'Spacing', 5 ); 
%@uicontrol( 'Parent', g, 'Background', 'r' );
%@uicontrol( 'Parent', g, 'Background', 'b' );
%@uicontrol( 'Parent', g, 'Background', 'g' );
%@uiextras.Empty( 'Parent', g );
%@uicontrol( 'Parent', g, 'Background', 'c' );
%@uicontrol( 'Parent', g, 'Background', 'y' );
%@set( g, 'ColumnSizes', [-1 100 -2], 'RowSizes', [-1 -2] ); 
%@
%@% set HBox elements sizes 
%@set( b, 'Sizes', [100 -1] ); 
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/guideApp.m__ -->
%@function varargout = guideApp(varargin)
%@% GUIDEAPP MATLAB code for guideApp.fig
%@%      GUIDEAPP, by itself, creates a new GUIDEAPP or raises the existing
%@%      singleton*.
%@%
%@%      H = GUIDEAPP returns the handle to a new GUIDEAPP or the handle to
%@%      the existing singleton*.
%@%
%@%      GUIDEAPP('CALLBACK',hObject,eventData,handles,...) calls the local
%@%      function named CALLBACK in GUIDEAPP.M with the given input arguments.
%@%
%@%      GUIDEAPP('Property','Value',...) creates a new GUIDEAPP or raises the
%@%      existing singleton*.  Starting from the left, property value pairs are
%@%      applied to the GUI before guideApp_OpeningFcn gets called.  An
%@%      unrecognized property name or invalid value makes property application
%@%      stop.  All inputs are passed to guideApp_OpeningFcn via varargin.
%@%
%@%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%@%      instance to run (singleton)".
%@%
%@% See also: GUIDE, GUIDATA, GUIHANDLES
%@
%@%   Copyright 2009-2013 The MathWorks Ltd.
%@
%@% Edit the above text to modify the response to help guideApp
%@
%@% Last Modified by GUIDE v2.5 21-Jul-2010 07:36:25
%@
%@% Begin initialization code - DO NOT EDIT
%@gui_Singleton = 1;
%@gui_State = struct('gui_Name',       mfilename, ...
%@                   'gui_Singleton',  gui_Singleton, ...
%@                   'gui_OpeningFcn', @guideApp_OpeningFcn, ...
%@                   'gui_OutputFcn',  @guideApp_OutputFcn, ...
%@                   'gui_LayoutFcn',  [] , ...
%@                   'gui_Callback',   []);
%@if nargin && ischar(varargin{1})
%@    gui_State.gui_Callback = str2func(varargin{1});
%@end
%@
%@if nargout
%@    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
%@else
%@    gui_mainfcn(gui_State, varargin{:});
%@end
%@% End initialization code - DO NOT EDIT
%@
%@
%@% --- Executes just before guideApp is made visible.
%@function guideApp_OpeningFcn(hObject, eventdata, handles, varargin)
%@% This function has no output args, see OutputFcn.
%@% hObject    handle to figure
%@% eventdata  reserved - to be defined in a future version of MATLAB
%@% handles    structure with handles and user data (see GUIDATA)
%@% varargin   command line arguments to guideApp (see VARARGIN)
%@
%@% Choose default command line output for guideApp
%@handles.output = hObject;
%@
%@% Update handles structure
%@guidata(hObject, handles);
%@
%@% Put a layout in the panel
%@g = uiextras.GridFlex( 'Parent', handles.uipanel1, ...
%@    'Units', 'Normalized', 'Position', [0 0 1 1], ...
%@    'Spacing', 5 );
%@uiextras.BoxPanel( 'Parent', g, 'Title', 'Panel 1' );
%@uiextras.BoxPanel( 'Parent', g, 'Title', 'Panel 2' );
%@uiextras.BoxPanel( 'Parent', g, 'Title', 'Panel 3' );
%@uiextras.BoxPanel( 'Parent', g, 'Title', 'Panel 4' );
%@g.RowSizes = [-1 -1];
%@
%@% UIWAIT makes guideApp wait for user response (see UIRESUME)
%@% uiwait(handles.figure1);
%@
%@
%@% --- Outputs from this function are returned to the command line.
%@function varargout = guideApp_OutputFcn(hObject, eventdata, handles) 
%@% varargout  cell array for returning output args (see VARARGOUT);
%@% hObject    handle to figure
%@% eventdata  reserved - to be defined in a future version of MATLAB
%@% handles    structure with handles and user data (see GUIDATA)
%@
%@% Get default command line output from handles structure
%@varargout{1} = handles.output;
%@
%@
%@% --- Executes on button press in pushbutton1.
%@function pushbutton1_Callback(hObject, eventdata, handles)
%@% hObject    handle to pushbutton1 (see GCBO)
%@% eventdata  reserved - to be defined in a future version of MATLAB
%@% handles    structure with handles and user data (see GUIDATA)
%@
%@
%@% --- Executes on button press in pushbutton2.
%@function pushbutton2_Callback(hObject, eventdata, handles)
%@% hObject    handle to pushbutton2 (see GCBO)
%@% eventdata  reserved - to be defined in a future version of MATLAB
%@% handles    structure with handles and user data (see GUIDATA)
%@
%@
%@% --- Executes on button press in pushbutton3.
%@function pushbutton3_Callback(hObject, eventdata, handles)
%@% hObject    handle to pushbutton3 (see GCBO)
%@% eventdata  reserved - to be defined in a future version of MATLAB
%@% handles    structure with handles and user data (see GUIDATA)
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/hierarchyexample.m__ -->
%@%% A Hierarchy of Layouts Example
%@% This example shows how to use layouts within other layouts to achieve
%@% more complex user interface designs with the right mix of variable and
%@% fixed sized components.
%@%
%@% Copyright 2009-2014 The MathWorks Ltd.
%@
%@%% Open the window
%@% Open a new figure window and remove the toolbar and menus
%@window = figure( 'Name', 'A Layout Hierarchy Example', ...
%@    'MenuBar', 'none', ...
%@    'Toolbar', 'none', ...
%@    'NumberTitle', 'off', ...
%@    'Position', 200*ones(1,4) );
%@
%@%% Create the first layout (vertical box)
%@% Inside this vertical box we place the axes
%@vbox = uiextras.VBox( 'Parent', window );
%@axes( 'Parent', vbox );
%@
%@%% Create the second layout (horizontal box)
%@% Inside this horizontal box we place two buttons
%@hbox = uiextras.HButtonBox( 'Parent', vbox, 'Padding', 5 );
%@uicontrol( 'Parent', hbox, ...
%@    'String', 'Button 1' );
%@uicontrol( 'Parent', hbox, ...
%@    'String', 'Button 2' );
%@
%@%% Set the sizes
%@% We want the axes to grow with the window so set the first size to be -1 
%@% (which means variable size with wieght 1) and the buttons to stay fixed 
%@% height so set the second size to 35 (fixed height of 35 pixels)
%@set( vbox, 'Sizes', [-1 35] )
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/minimizeexample.m__ -->
%@function minimizeexample()
%@%MINIMIZEEXAMPLE: An example of using the panelbox minimize/maximize
%@
%@%   Copyright 2010-2013 The MathWorks Ltd.
%@
%@width = 200;
%@pheightmin = 20;
%@pheightmax = 100;
%@
%@% Create the window and main layout
%@fig = figure( 'Name', 'Collapsable GUI', ...'
%@    'NumberTitle', 'off', ...
%@    'Toolbar', 'none', ...
%@    'MenuBar', 'none' );
%@box = uiextras.VBox( 'Parent', fig );
%@
%@panel{1} = uiextras.BoxPanel( 'Title', 'Panel 1', 'Parent', box );
%@panel{2} = uiextras.BoxPanel( 'Title', 'Panel 2', 'Parent', box );
%@panel{3} = uiextras.BoxPanel( 'Title', 'Panel 3', 'Parent', box );
%@set( box, 'Sizes', pheightmax*ones(1,3) );
%@
%@% Add some contents
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 1', 'Parent', panel{1} );
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 2', 'Parent', panel{2} );
%@uicontrol( 'Style', 'PushButton', 'String', 'Button 3', 'Parent', panel{3} );
%@
%@% Resize the window
%@pos = get( fig, 'Position' );
%@set( fig, 'Position', [pos(1,1:2),width,sum(box.Sizes)] );
%@
%@% Hook up the minimize callback
%@set( panel{1}, 'MinimizeFcn', {@nMinimize, 1} );
%@set( panel{2}, 'MinimizeFcn', {@nMinimize, 2} );
%@set( panel{3}, 'MinimizeFcn', {@nMinimize, 3} );
%@
%@%-------------------------------------------------------------------------%
%@    function nMinimize( eventSource, eventData, whichpanel ) %#ok<INUSL>
%@        % A panel has been maximized/minimized
%@        s = get( box, 'Sizes' );
%@        pos = get( fig, 'Position' );
%@        panel{whichpanel}.IsMinimized = ~panel{whichpanel}.IsMinimized;
%@        if panel{whichpanel}.IsMinimized
%@            s(whichpanel) = pheightmin;
%@        else
%@            s(whichpanel) = pheightmax;
%@        end
%@        set( box, 'Sizes', s );
%@        
%@        % Resize the figure, keeping the top stationary
%@        delta_height = pos(1,4) - sum( box.Sizes );
%@        set( fig, 'Position', pos(1,:) + [0 delta_height 0 -delta_height] );
%@    end % nMinimize
%@
%@end % EOF
%@
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/tabpanelexample.m__ -->
%@%% A TabPanel Example
%@% This example shows how to use tabs within a layout. It also shows how to
%@% use the TabPanel Callback property to update other GUI elements when the
%@% visible tab is changed.
%@%
%@% Copyright 2009-2013 The MathWorks, Inc.
%@
%@%% Open the window
%@% Open a new figure window and remove the toolbar and menus
%@window = figure( 'Name', 'A TabPanel example', ...
%@    'MenuBar', 'none', ...
%@    'Toolbar', 'none', ...
%@    'NumberTitle', 'off' );
%@
%@%% Create the layout
%@% The layout involves two panels side by side. This is done using a
%@% flexible horizontal box. The left-hand side is filled with a standard
%@% panel and the right-hand side with some tabs.
%@hbox = uiextras.HBoxFlex('Parent', window, 'Spacing', 3);
%@panel = uiextras.Panel( ...
%@    'Parent', hbox, ...
%@    'Padding', 5, ...
%@    'Title', 'Left' );
%@tabpanel = uiextras.TabPanel( 'Parent', ...
%@    hbox, ...
%@    'Padding', 0);
%@
%@%% Add a list on the left
%@% Note that we link the callbacks from the list to the tab selection and
%@% the tab callback to the list such that they are kept in sync.
%@panellist = uicontrol( 'Style', 'list', ...
%@    'Parent', panel, ...
%@    'String', {'1', '2', '3'}, ...
%@    'BackgroundColor', 'w', ...
%@    'Callback', @(a,b) set( tabpanel, 'SelectedChild', get( a, 'Value' ) ) );
%@set( tabpanel, 'Callback', @(a,b) set( panellist, 'Value', b.SelectedChild ) );
%@
%@%% Create some contents
%@% Each tab is filled with a list box showing some numbers
%@htab1 = uiextras.Panel( 'Parent', tabpanel, 'Padding', 5, 'Title', '1');
%@uicontrol( 'Style', 'listbox', 'Parent', htab1, ...
%@    'String', {'1', '1', '1'}, ...
%@    'BackgroundColor', 'w' );
%@
%@htab2 = uiextras.Panel( 'Parent', tabpanel, 'Padding', 5, 'Title', '2');
%@uicontrol( 'Style', 'listbox', 'Parent', htab2, ...
%@    'String', {'2', '2', '2'}, ...
%@    'BackgroundColor', 'w' );
%@
%@htab3 = uiextras.Panel( 'Parent', tabpanel, 'Padding', 5, 'Title', '3');
%@uicontrol( 'Style', 'listbox', 'Parent', htab3, ...
%@    'String', {'3', '3', '3'}, ...
%@    'BackgroundColor', 'w' );
%@
%@%% Update the tab titles
%@tabpanel.TabNames = {'1', '2', '3'};
%@
%@%% Show the first tab
%@tabpanel.SelectedChild = 1;
%<-- ASCII ends here -->
%<-- ASCII begins here: __layoutHelp/Examples/visibleexample.m__ -->
%@%% Showing/hiding a panel
%@%
%@%   This example opens a simple user-interface with a panel full of
%@%   buttons. We can then show/hide the entire panel in one go. Note
%@%   that the previous state of the buttons is preserved. 
%@%
%@%   Copyright 2009-2013 The MathWorks, Inc.
%@
%@%% Open a window and add a panel
%@fig = figure( 'Name', 'Visible example', ...
%@    'Position', [100 100 150 250], ...
%@    'MenuBar', 'none', ...
%@    'ToolBar', 'none', ...
%@    'NumberTitle', 'off' );
%@panel = uiextras.BoxPanel( 'Parent', fig, 'Title', 'Panel' );
%@
%@%% Put some buttons inside the panel
%@box = uiextras.VButtonBox( 'Parent', panel );
%@uicontrol( 'Parent', box, 'String', 'Button 1' );
%@uicontrol( 'Parent', box, 'String', 'Button 2' );
%@uicontrol( 'Parent', box, 'String', 'Button 3', 'Visible', 'off' );
%@uicontrol( 'Parent', box, 'String', 'Button 4' );
%@uicontrol( 'Parent', box, 'String', 'Button 5', 'Visible', 'off' );
%@uicontrol( 'Parent', box, 'String', 'Button 6' );
%@
%@%% Try disabling the panel
%@set( panel, 'Visible', 'off' );
%@
%@%% Try enabling the panel
%@set( panel, 'Visible', 'on' );
%<-- ASCII ends here -->
%<-- Binary begins here: __Patch/getpixelposition.p__ __754__ -->
%v%0%0%.%0%0%v%0%0%.%0%0% %%%%%%%% % % %% % %%Y% % %%%%%L%g%E%i%3%%	%%%%Y%K%%%%E%%Z%1%%%J%=%%%%%%%%N%%%%%%%T%%[%%b%%%M%%%y%%%%M%u%%E%%!%%%%<%%*%%j%%%Q%%%4%]%%%%%%%%%%!%%%%/%w%%%%%%%%%Y%%.%%w%|%%z%%%%%%% %%%a%%% %L%%}%%1%I%%!%%%%%%t%M%%,%%%%%T%%	%%t%%%%3%R%%l%D%% %R%=%%%%%%%R%%%%o%%%z%y%]%,%%_%%%
%#%%%%%y%v%%A%-%?%%%^%%%6%%%%a%%T%f%*%`%%%%d%%%%%|%%9%%9%%%W%%g%(%%*%n%%]%<%%e%%%%M%%%%%I%%?%j%J%%%c%%)%%%b%%	%K%%%%%%%%%X%%%1%%'%%/%%%%%%J%w%%%_%%>%%%i%q%%z%%%=%%%z%%%%%.%Z%%>%%%%W%%%%%'%%	%%w%%/% %%%%%%v%$%%%%%%%f%n%%
%%E%%%%%%1%H%W
%<-- Binary ends here -->
%<-- Binary begins here: __Patch/isHGUsingMATLABClasses.p__ __296__ -->
%v%0%0%.%0%0%v%0%0%.%0%0% %%%%%[%%% % % %-% % % %t% % % %%y%%C%%%%%%(%%N%`%%%%(%%%G%%%%%E%%%N%%%%%%%%%%%A%%%%l%%%%%%%m%%%%%>%%_%%g%T%%~%%l%%h%2%%%%{%%%%%5%%%%%%%"%~%%4%>%a%%H%%U%H%%%%1%%%%%%%<%}%V%%9%%%%%%%M%%!%x
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/panelClose.png__ __436__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%*%D% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%%i%%M% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %>%I%D%A%T%x%%}%%1%
% %0%%%r%%%?%%%R%%%c%%%E%%%%%%8%%%+%P%%%%%%W%A%T%y%G%%%%%%%%%;%<%Z%F%%%%%:%%%%%%%D% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/panelDock.png__ __428__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%*%D% % % %%s%R%G%B% %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%*%%%F%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %?%I%D%A%T%%%c%d%%%%%0%1%% %%%%%3%%%%%%@%%%%%%z%%%%%%%%%%J%%q%%%~%%z%d%.%#%%%%%%b%%%c% %p%?%%%d%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/panelHelp.png__ __454__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%*%D% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%3%+%%%%?% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %G%I%D%A%T%x%%}%%%%%0%%%%%%%%%%%L%%%%%%%!%D%q%M%A%a%{%g%%'%%%%%j%!%
%%M%'%d%%%%%%%%F%%%%%%%c%%3%)%%%%%%%%<%|%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/panelMaximize.png__ __372__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %	% % % %	%%% % % %o%%%G% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%
%%%%+%%%%<% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %0%I%D%A%T%x%%c%d%%%%%%%)%%%G%%#%%>%F%%c%%%c%B%%@%%%n%&%#%%%%%%%%%[%P%% %%%
%%%%!%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/panelMinimize.png__ __374__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %	% % % %	%%% % % %o%%%G% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%
%%%%
%%l%%b% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %1%I%D%A%T%x%%c%d%%%%%%%)%%%G%%#%%>%F%%c%%P%$%%$%%%\%%%%4%%%%%%4%%%[%P%% %I%%
%	%^%n%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/panelUndock.png__ __444__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%*%D% % % %%s%R%G%B% %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%4%%'%V%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %G%I%D%A%T%%%}%N%I%% % %%%%%%C%%%u%%%%%% %
%%%%%%%%%M%X%%e%%%%G%&% %H%:%<%h%%.%%w%%{%%%%,%%%%%%%%J%.%S%n%%n%%%%F%%$% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_Background_NotSelected.png__ __364__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %L%%W%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%	%%%V%C%0% % % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%c%%r%%%%%%%%%3%1%0%0%0%%% % %i%%%%%)%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_Background_Selected.png__ __364__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %L%%W%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%
%%	%)%%%%%a% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%c%%%%%%%%%%%%%%%%h%B% % %C%%%%7%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_NoEdge_NotSelected.png__ __456__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% % % % % % %%C%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%
%%5%%%x%&%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %;%I%D%A%T%(%%c%d%`%%%%%%`%%%%%%%%[%%%%%%%%%% %`%%%%<%%F%%P%C%%z%<%%f%%6%%p%%%$%%%%% %%%%#%%g%%H% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_NoEdge_Selected.png__ __432__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%	% %*%%%o%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %<%I%D%A%T%x%%c%d%`%%%%%%`%%%%%%%%S%%%%%%%%%%% %`%%%%<%%F%%P%C%%z%<%%f%%6%%p%%%$%%%%% %%%%(%%M%[%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_NotSelected_NoEdge.png__ __456__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%
%%5%(%i%%+%`% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %;%I%D%A%T%(%%c%d%`%%%%%%`%d%`%`%%*%%%%%%%%%%%%0%% %p%%%L%!%%%Q%%%T%%-%>%H%%%%%%&% %+%% %%_%%%%z%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_NotSelected_NotSelected.png__ __486__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% % % % % % %%C%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%
%%6%%~%%%r% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %J%I%D%A%T%(%%%%9%%%0%%%g%%%?%/%E% %%%Q%$%D%D%%v%%^%%-%$%L%%7%%%%%%%T%r%9%D%G%%%x%@%%%%%L%%%_%
%V%%x%_%1%%%%%%=%O%8% %g%%%%=%.%%h% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_NotSelected_Selected.png__ __486__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% % % % % % %%C%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%
%%6%%%>%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %J%I%D%A%T%(%%%%1%%%0%%%%%%%%Y%%%%%`%`%%%s%%%%$%%)%%N%h%\%%%;%%%%%%%%T% %%%%%%%%_% %%%%7%%% %%%]%%7%%%K%,%%%%%%%{% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_Selected_NoEdge.png__ __460__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%
%%6%5%!%%%z% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %=%I%D%A%T%(%%c%d%`%%%%%%`%%%%%%%%%[%%%%%%%%F%%
%%Z%%c%%2%%x%%F%%P%S%%%% %%
%t%S%%%%%% %%%%'%%%/%<% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __+uiextras/Resources/tab_Selected_NotSelected.png__ __476__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%|%k% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% % % % % % %%C%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%
%%7%%%%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %E%I%D%A%T%(%%%%1%
% % %%%%%%%8%%%Z%D%P%%%x%9%%`%	%H%(%%%%D%%%`%%%*%%%\%%%K%%c%E%%%_%x%)%%%%%%%B%9%+%%+%%*%%%#%%	%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Examples/guideApp.fig__ __4816__ -->
%M%A%T%L%A%B% %5%.%0% %M%A%T%-%f%i%l%e%,% %P%l%a%t%f%o%r%m%:% %P%C%W%I%N%,% %C%r%e%a%t%e%d% %o%n%:% %W%e%d% %J%u%l% %2%1% %0%7%:%3%6%:%2%6% %2%0%1%0% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %L%% % % % % % % %%I%M%% % % %%% % %x%%%X%%o%%E%%%;%n%H%R%%9%%%%%p%@%I%P%%%%T%%(%%|%%b%%%%N%*%!%,%%%z%l%%Y%%%v%f%]%%%%%G%%%%% %%'%p%%%C%%8%p%% %R%%P%%!%%*%%%B%%%%%%7%%{%m%%%J%~%%%%%%{%%%o%>%%%%% %%%
%%(%%%%%O%%%%R%%%k%%Z%%%%%c%$%%e%%E%%%
%k%%e%#%a%%%%%%%%c%%%%%%%%%Q%q%%%z%%%t%%%o%%%k%o%%%%L%%%%%s%%
%%%k%%%N%%%v%%%%%%%%%]%%q%%%t%2%%d%%%B%^%f%?%%&%%%(%%%Y%%j%%%e%X%%:%%%h%@%;%%%%%%%%%%%7%%%%-%%T%t%%n%%%m%d%%%P%%%%%H%%	%v%%F%%9%%%
%%}%?%%,%%)%%%%%%?%%%%%%p%%%:%%%%%(%%%%.%%%%%%%i%%%%%l%B%
%%%k%%m%`%%r%3%~%%>%%%%%%k%%%%O%%%y%%%^%%%%)%r%H%r%;%%#%v%%%#%%%%
%%q%;%[%%%:%%%%%h%%%/%%%t%%z%%%%%K%%%%%%%F%%%%%%%%=%%%%%%%%%;%%%%%G%%%%%g%%%%%%%%	%%P%%%%?%%%X%%%%%%%%I%%%%H%%%#%q%%%%%!%%%~%%%%%A%%"%q%%%I%%%%%%g%%%%4%%%%O%%%%G%^%% %%%%%7%%L%%%%D%z%%6%%4%%%>%%^%%M%/%%L%%D%I%%%1%%%w%%\%s%q%%%"%a%%8%%@%%<%%%%%%l%%%\%7%%%%%%%h%%:%"%%%%%%%)%?%%%%%_%+%%%%%\%0%%%%%3%%k%+%%%%V%^%g%%%%%v%y%%Y%%%&%%)%j%M%O%%%%s%%%%%%%%%%%%%{%%%%
%%u%%7%%%z%%%'%%|%%%%%%%%w%m%^%%%`%@%B%o%A%%W%%"%%%%%%%%%%%b%%%%%%J%u%%)%%5%l%V%-%1%%b%U%%%%%/%9%%@%%%%%i%+%%%%#%%%%%*%6%%*%[%"%%%%%%5%%Q%Q%%%%%%%%%%a%R%%%%C%%%%%%%`%%U%%%%%%/%)%%%%T%o%%%%%e%%~%%1%%]%R%/%%%%%b%%%%P%%%d%}%%%I%%%%>%%2%%%%%%o%2%F%%I%%%%%%%%%>%%|%V%%%%%%%%N%%W%.%%%%%%S%%m%%%E%v%%U%%%%%%%%%%%\%J%%[%%%%%%%%%O%`%%6%%)%%%%Z%#%%%%s%%%r%%%%K%%%%%%%%%%%%%%A%%%%.%~%%G%%%%%u%%%%%%%%A%%% %@%%%%%h%o%%`%V%%%%%%B%%b%%I%9%z%%R%%N%p%%s%%%%D%%Q%%%%%%H%h%'%%%%N%%N%%%%%%o%%R%%%%%%%s%%l%%%%n%%%%%Q%R%E%%5%u%%B%I%%%$%q%%%%%y%%%Z%%^%%%%%^%%%%[%%%%%%%6%;%)%P%%%%%%%&%%f%%%%&%%o%^%%A%%Y%a%%p%%r%%%%u%%%%%%%a%%%.%%%+%9%m%%%[%%%%t%%5%%4%T%%%[%%g%%%\%%%%J%r%5%%-%%%X%%%%K%[%%%%{%%%%%%%%V%%r%%^%%%%$%%%%%\%%%%%%U%%%%n%%%%%%u%W%
%%%%%%%%%?%%%%%%%%%%/%i%%>%%2%?%%S%%%%%%%%%%%%{%;%o%k%%%7%%%c%%%%j%4%%%b%%F%%%%%_%>%.%%>%u%%%%%u%%%%v%%u%%K%%%y%%t%%%/%e%%%%_%%%(%%f%%I%%%;%%%%y%%%8%%y%k%%%%%y%%%%%%?%h%%%%5%U%%-%%%W%D%%%{%%%%U%;%P%|%q%v%8%%% % %%%%U%%o%%0%%v%%%t%%P%%.%%%%j%+%%%%	%!%%%]%9%p%`%Z%E%%%*%%'%M%W%%,%%%g%%7%%%%#% %%%`%%%p%%%%%.%%5%6%%%%%%=%%%%%%/%%%%%n%%%`%%%%%%%%%%%%%%u%1%%%%%%%%,%%%%%%%%%%c%(%<%%%=%%%!%%%%|%%%I%%%%%%%~%%%%K%Y%%%k%%%1%%u%$%q%%%)%%%+%q%%%%=%L%%7%}%%%%%)%O%	%#%%K%%%s%%t%]%%	%%5%"%%%%%%	%%%l%%S%L%%'%%o%g%%%%%{%L%%C%%%%X%%=%%}%% %%%H%b%%Q%%%%%%%k%%%%%q%%%=%%%%%%%%[%%{%%%%%%^%%%%%v%%%%z%
%%q%%%@%=%%%E%%%%+%e%%%M%%_%E%%%!%6%%m%%%u%%%;%/%8%
%}%b%%%|%N%Y%%k%M%%%%%n%%W%F%%%[%%b%5%%%%%%%]%%0%%%%'%c%%%G%%%%%%%%%%%r%%R%D%%"%%(%%%%%%%%%%%%%%%%%%%%4%%G%%}%Q%%n%k%%%%%%:%% %%%.%%]%?%Q%8%%{%%%m%h%%%k%%	%%%?%%%(%%%b%%%+%4%%^%%)%|%%%%%_%?%%n%%O%%%%O%%%%%%%%g%%%%%%O%%%W%x%%)%%%%%3%%%y%7%4%}%%%y%v%l%%M%%%?%%%%%%%%%0%:%$%d%%%C%%%%-%%.%%%k%W%%%4%%}%T%%%4%%k%%/%%%%%%%j%%%0%%W%%%%/%%%U%%2%Y%\%b%%%%%?%%%%%J%%%%%U%%%%Z%,%%%%%%%%%p%%%M%h%%%%%%X%%%6%%%@%W%{%%V%]%O%Z%%%^%%%"%o%8%\%%>%%%%5%%%(%G%%%%%%%w%%%%%%Y%~%%%%#%%%]%%%#%% % % %%% % %x%%%c%`%`%%%%%%%%9%%%%%%X%%|%F% %^%%
%%A%%	%%g%`%%%%%%@%%%%3%a%%%%%q%%%%#%T%%%%%0%%%%,%%s%%%%%%4%%X%-%%%%%n%%9%%%E%%%%%E%%%P%%%H%%%%A%%l%h%% %%%`%%%o%%F%T%%L%P%1%&%(%%%%3%%x%%%%%%%y%%H%%%d%H%+%%K%.%%%%%%H%%K%%I%%/%%/%%.%.%H%L%N%e%%%%%%%%%#%%%M%?%%9%%l%F%4%q%&%$%%Y%%%%&%%%!%%;%%p%%%%.%%x%%@%R%%%%%=%%A%|%	%%%.%%Y%%P%%,%%H%K%%%%%u%%%%%%%%'%d%%%%~%%(%%%%%%<%%@%R%%%%#%%%%%O%I%y%
%% %<%%(%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/Border.png__ __7472__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%*%$%%%%% % %%L%I%D%A%T%x%%%%{%\%%u%%%%%%[%r%%8%0%8%%%%%%P%	%4%q%%h%%$%{%T%b%%%%L%%L%K%+%%:%%%S%%%)%%%%%]%%s%<%%%%%%%%a%^%%%%%%%5%%,%/%%%A%@%%R%O%%%%f%`%%%:%%9%%%%?%%%%~%%%%%%%%%o%%Q%%f%%%%#%n%n%%%V% %%%%1%%L%%%.%)%)%	%%U%%%s%%%3%%d%%%%%%% %%%V%%7%%%[%%%%(%P%%k%%%%B%%%V%3%%%%%%%%A%%b%a%%%%%>%j%%%b%%t%@%b%%i%%%%%%%%%%%%%%%%%%y%%%3%"%j%7%#%)%?%%W%%%%%%%G%%o%T%%%I%%%%%%%%M%_%Y%%%f%f%f%%j%%W%%f%%a%%%%%%"%e%%{%%~%%%%W%.%%%%%%%%%%%Q%g%%%%%%;%%%~%{%%%g%j%%%%%%%1%%%v%'%_%%%%%%%%%V%%5%q%%G%%%%N%|%-%%'%%%'%g%%{%*%-%%%%%%%%%%c%w%%=%%%%F%4%w%W%g%\%%0%)%e%K%+%+%%%1%%%%%%%l%S%e%%%%Q%%%i%%J%Z%%p%%%%%O%v%%%)%e%%%<%%%4%0%5%3%6%%9%I%#%%l%j%%%%%%%%:%%W%%%%%9%%%%i%%^%%s%%%%%%%%%%Z%N%%a%%%%a%%%7%s%%%%%v%%Q%n%X%%%U%%V%%%%%%O%>%V%%%%=%=%6%%%%%e%?%%%7%%%%%%"%%%w%%%s%%%%h%|%%8%Z%%o%%%%%%%Q%%%)%%%%)%+%%%%>%%%%)%6%{%%Z%w%%%%,%q%u%p%%%L%%%%%w%%%%%%%v%U%%%%g%W%,%
%%%%%3%%%%2%%%a%%%%%%%o%u%%%%C%%=%%d%!%n%F%%%~%%+%%%%0%%%%%%%%F%%z%%%%/%/%%%%%i%%*%%%\%%;%,%% %%_%%%%%!%g%%\%%%%%%%?%<%u%%j%}%%>%z%%%%%C%|%%%%%%%%5%:% %%Y%%% %%v%a%%%M%%%t%%%o%%%g%% %%%%%@%`%|%%%1%%%3%%w%o%%%%%|%%%X%%%)%>%%%.%%%%%%o%%P%f%N%%%%d%7%%C%7%M%%%%%%y%%%%%=%%.%}%-%@%%%%t%%q%Q%%%%%%%%)%!%%?%%%%%%%J%r%%%^%%j%%%%%c%%%%%%%%%%%%P%z%=%e%%%>%%%%%H%%}%z%%%*%%y%%%<%%Q%%U%%%%% %%V%%%%F%% %@%y%%%%(%.%v%%%%%%V%?%V%%%%%o%%%%%%~%3%%%%%%e%[%%%5%%C%y%h%%%\%%%%M%%_%"%%u%r%%%%%O%.%%2%`%A%%K%%%%%%;%%^%%%%r%%%%%%b%%8%%*%%T%%F%%5%J%%0%%%%~%%6%%%%4%_%%%%%%%l%%f%M%%{%%%%O%%%%%B%%%W%!%%%%%%%%g%% %%%%%%%%%u%S%%%%?%N%% %%K%%%%]%%:%%%%%k%7%%%%%%%%F%%%%%%#%%%%%%%%:%%%%%t%%%%%%%.%n%%%%>%%%
%%9%j%%%g%%%%%j%j%%%h%F%%$%%%_%%%%%>% %%%%9%%%%%q%%%%:%_%w%%&%8%e%%%p%%%%%%g%J%z%>%T%%%}%%%%%%%c%=%%%U%%Y%<%^%]%t%%%k%%{%^%%Q%%%%3%%;%|%%%%%%%>%8%(%F%%%%n%%%%%m%%%%%%%%C%%%%%%%O%%%%U%h%@%t%%%%8%W%%5%%%%g%% %%X%%[%%%%%%%8%y%<%%W%%B%%.%5%%%5%%%%%{%L%%M%%%N%n%%%%K%/%%%%q%e%e%%%8%8%%%c%m%%%%0%%%%%%k%#%G%e%%%%A%%%%g%c%[%}%%%%%%&%%%%%g%%%%%%%9%%Y%%>%`%%%;%[%%%%%%%%%%T%W%%2%L%D%t%%/%%I%	%%%j%%%%%%%%%V%%%%%%%%%%%I%%%,%%9%%%%%%%%%P%%E%	%%%%%X%%%%x%%%r%d%<%%%%%%%%%%W%%%%%%1%%y%E%%'%A%%%~% %%e%]%%%o%%%%%%%%%D%/%%%%{%%}%%%%{%%e%%%%%d%%%
%4%%%%	%/%O% %Q%#%7%F%%.%Q%%;%%%%%%M%%%%z%%R%~%A%j%5%%%%%%%w%%%%%%%%%c%%%%%%%%%m%Z%%5%W%%%x%E%<%%%f%k%%%/%%*%%%%%%*%#%+% % %%%~%%l%\%%m%P%^%%%]%c%%
% %%%%%%%%%%%%%%%%%%?%$%%%i%<%%%%%%d%%%%%>%s%%w%s%p%T%%%+%=%}%%%%G%%%%%N%%%%
%%%X%(%%%J%`%7%%~%%v%%J%Z%%L%%%%%!%%^%`%p%}%	%%%%L%%2%%%E% %%%W%g%%%u%%%%6%f%%%%%w%%%%%%5%k%%%%9%%z%o% %^%%&%%%%5%,%%%S%%%%%%%%%_%a%%%%%%%%\%
%%%%%m%y%%%%q%% %]%E%%%%%%%N%%%G%%%%`%%v%5%X%%;%"%,%!%%V%w%%%%G%+%%E%G%%%l%i%%&%+%%%%>%%%%%%%%u%'%%?%?%%?%o%~% %%'%%%%Y%'%%%T%%%%r%%J%%%{%C%/%%%%%%%=%%%%-%n%%W%^%O%+%	%K%/%%V%R%%%%%x%K%_%%%%v%x%%%b% %%%%%l%%%%e%q%%q%%%%%%%o%%%%%%%%%%]%{%<%V%%%K%%w%%%%%%-%%x%7%%%%%%%%%%%l%%%%%%o%D%O%%%%%%U%Y%W%%%%%%`%L%%/%%%'%%%|%%%%%%%E%%%%%% %<%%%E%%e%W%u%w% %%#%z%%5%\%>%$%&%(%%%%%%?%%%%S%%%%O%%%%%%%%% %%%%%%y%%%%%%%%%5%%%%%-%%k%V%M%U%%%u%%%%F%A%%%%%%j%%i%%%%+%%o%%O% %%=%%&%%t%%%}%%%%%%%E%%%%]%%o%%%H%W%%\%O%%K%7%%%%%7%%H%}%9%d%%%%o%%%l%%%%%T%%%q%%%F%-%9%%%% %p%m%K%%%a%%%%%%%%%%|%%%%%%%u%%%%%=%+%%%G%%5%<%%%%%%%v%%%%%%%}%%D%l%i%n%%U%%%%%%w%L%%%%0%%%O%.%*%%%%%%:%2%s%%H% %(%%^%%%%%%7%%%V%%%%%e%%%%%%%%%%k%%%%%%%%%u%%%%%%z%K%%%O%*%%N%y%%%%%%%,% %@%%%%%%%f%%%%d%%%%%%e%%i%%G%M%% %%%=%w%&% %x%%+%%%<%w%%J%a%%_%p%%%%% %e%%%%s%%%%%&%%U%%n%5%%%4%%I%5%#%^%% %%%%%%%?%#%%+%Z%~%%%%(%%g%%%?%% %(%%\%%%r%W%%`%%%%%%`%S%N%0%%%%G%%%%%%%R%%v%%F%%%%p%%%i%E%O%%K%(%%%%%%%{%%^%!%%%%x%%%6%%N%d%%L%:%v%%%%%%%n%%%%o%o%%h%%%%y%;%%%%%M%%%%o%%%%%%V%%_%%%%%[%%%%%f%I%%%+%%%W%%*%%;%6%%%%?%%%t%O%%+%%%%%/%%%O%%%%%%w%%%%%%%I%W%%%R%%%?%f%%s%%%%B%%%%%/%%%%%O%;%%V%%%%%%%%>%%R%%Z%%%%@%$%^%%%%=%%%%I%%%?%%G%%A%%G%%%%k%%d%%%0%%%%%3%H%%%%%%%Z%%v%%%m%%%%%%%%`%%%^%%%%%k%%F%%%C%B%y%l%%%Z%b%%%%%%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%D%%O%'%J%%%i%%%_%%%r%%)%%%%%%%% %%%%%%k%%D%%%s%e%%%)%%%L%%%`%%$%%%%>%%%%%%k%%%%%%%%%\%%%Q%n%:%V%W%|%%C%s%_%-%%/%%%%+%%e%%%%%%%\%'%%%o%%%%%%%%%%%%%%]%%%;%%Q%N%%0%2%%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%%%%%%%%%;%%f%%%%%%%%]%3%%%K%z%%%%%%.%%% %e%%V%%%C%v%%X%d%.%]%%(%%%%z%%%.%%%+%%"%s%%%G%%%%$%%S%&%!%%2%	%%%I%%%%}%%%%%%%Q%%h%%%F%%)%%%%|%%%w%]%8%%%%H%7%v%%%q%% %B%%F%t%%d%%%.%%%5%%%+%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%F%%%!%%%3%!%j%%%}%%%Q%%2%H%y%e%%'%%%%Q%k%U%V%%%%%%2%	%a%% %)%)%%%% %j%/%%%%%6%%%%:%%?% %E%%%%%%[%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxInBox.png__ __8718__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%	%%%|%%{%}% % %%%I%D%A%T%x%%%%y%\%%%%%%% %%%%%%%E%D%%V%%E%%%Q%%b%H%%%%%"%%%+%%$%%5%Z%5%%%L%%Z%%%%x%%%%%%%%%1%h%%!%%%%%%%e%%%(%%r%%%%%%%%%%%%,%%%~%%%%%%%e%%%%w%%%%%%%%~%% %%q%S%%%%"%"%u%H%%%g%%%x%%%.%$%"%+%%7%%%c%f%%%%%,%%=%% %%%%%M%%a%%j%%0%%I%%%]%%o%%%a%%%%%%%%4%%I%$%Y%%r%%%%>%k%7%V%%%L%%X%S%
%%>%W%u%%%%%%s%i%m%%%k%%%%%3%%0%%%%%%+%(%x%%%%%%y%E%w%%5%%%@%4%%%;%%%%,%%%%%%Z%%%%%F%\%%v%%%%%%%%*%%%k%%%%%%%N%%%%7%|%C%x%%%%%@%B%b%R%%%7%f%%*%%%,%I%%s%%%%N%%m%%%%% %%%]%%.%%%o%%%%z%i%%%%%t%r%%%%%%%%w%%%f%%%%%%%L%s%%)%M%%%N%%=%%%%%x%6%%%G%0%,%%%%%?%%%%%?%%{%%%%%%%%%%%R%%%%%V%%e%}%t%%%%%5%+%J%%%%%%%%&%x%%%%]%%v%%s%1%p%%%%F%%%4%i%s%l%%%%%%F%%%%%%%%.%%%%%%*%%%]%D%%%%%;%%%%%b%-%%Y%%p%%%%l%%%Z%%%%%m%q%x%%%%%W%.%%%7%s%%W%%%7%%%4%%%%%%~%%%%m%%%%>%%%o%%d%%%`%%z%%%%F%%%~%T%%%v%s%%%%%%%%%d%a%%%%%%%d%%%%f%%[%x%%-%q%T%9%%z%K%j%f%[%%f%g%%%j%%_%^%Q%w%%J%%%h%M%D%E%W%%%%%0%g%%%8%%%%%%%%%%?%%%%%%%k%%V%G%%=%%%%%	%#%%)%%%%%%%^%%%%% %%(%y%%%%%O%%h%%%%%z%%%%|%%i%%%B%%%%%J%{%%%R%%v%;%%p%b%J%;%%/%%%%%M%D%7%R%'%N%;%%E%4%p%%[%%%%6%%%%c%L%n%%%%%R%z%r%%%%%%M%%%R%g%%=%%%^%%%]%.%%%Z%|%%%%%s%%%%%:%%%%%%%%%%D%m%%%%a%%%%T%p%%%%%%{%%%%%%
%%%%S%r%y%%9%b%%%*%*%%%%%%%%;%%%q%%%S%z%u%%%%\%%%/%G%%%%%%%%/%;%v%%%u%%%_%,%;%%.%%%%%%%n%r%%%>%t%3%%%%%
%%%%%%m%%%h%%%%%%%%p%%%%%%%%'%%V%c%%9%9%%%/%U%Y%;%%%%%>%%%%%%%%)%%q%%L%%%H%8%U%5%W%}%[%%&%%S%n%a%%%%%%l%%%%t%p%%o%v%4%%%%}%%7%%]%[%Z%%%Z%U%V%%d%-%%Z%H%Q%%%%%%%1%%%,%%%%%n%f%:%I%#%'%%%s%%%[%]%%J%%%f%%%%%%%%%}%{%.%}%%t%%%%%%%%%%L%%%%%%.%U%%%%%%r%v%|%,%%)%%W%b%/%%%%%[%%9%4%t%A%%%%%%%O%
%%=%%%%%%%%n%?%o%%%%a%%%%%|%F%%%B%%{%%%%%%%%%%%W%%%5%#%%%t%J%%%+%%%:%~%z%0%%%%t%]%%%O%%%%'%'%%,%%%%k%%z%%%k%o%}%u%%%5%%%%%L%C%1%/%.%%%0%%%%3%%%?%%T%%%%%>%%%=%%%%%}%%%%Y%%u%%%;%`%%%!%%%^%%x%^%E%%%W%%%%%%%%0%%%%%%%%%K%A%%W%%%%%%%M%R%P%%%%%%-%=%%%%7%%%%;%%c%q%z%%%%
%%%%%}%%%%%%N%>%%%%]%%u%j%%%j%%%%%%%6%%-%,%%h%%%"%I%%$%%y%%%%%%%%%%%j%%Q%%?%%%%%%%%%%%%(%Z%%T%%%%M%%%}%w%%%o%%%%B%%%%%%%k%=%)%%w%%%%%%%%[%T%%%k%q%%%:%%%%%g%%%e%?%%%%]%K%%%%%R%%u%%%%b%%%j%%%%%5%6%>%%%%%%R%%%%%%.%%X%z%%%D%%c%%I%"%i%C%J%%%%%{%%a%%e%%%i%%%%%%%%%#%%Z%0%%%%%%=%%%%%%%|%i%%n%$%%%W%%!%"%%%2%A%3%%r%%%8%`%]%%c%o%G%%%L%%%5%%y%%%%)%%r%%n%%%%%=%%%n%%D%t%"%%2%%%%%%%[%{%%Q%%%%%t%K%<%%%%j%%L%D%D%W%
%n%%%%%%%v%%$%%t%M%.%%t%@%%?%1%%#%$%%%N%%%%v%%%%^%%%C%%
%%%%%k%%%:%%%%%%{%%~%%R%%%'%[%*%%%"%r%	%%%%0%*%J%=%U%}%%%%%%%%B%;%-%
%%-%q%v%h%A%T%%%r%%%w%%#%b%Z%%%%%S%P% %I%%%[%%v%%%m%%%B%%%%?%%%%%%%%%%]%r%%%%%%I%%%%%_%%%%?%%%%*%;%%%%%%%:%%?%%f%%%%%%J%%%Q%%%I%%R%%G%)%%%e%%c%K%M%%%=%%%/%%J%%6%%%;%\%{%%%%%y%%Y%%%+%W%{%%)%3%%%%%%%%%g%%%3%%_%%%%%%&%%%%%[%z%%%%%%%%%%%H%%%A%>%Q%%V%%%r%%%%%C%%%%%%n%%%H%%%%A%%%v%&%"%%%.%%%.%%N%%Y%}%}%%^%%%3%v%D%%]%%k%%%%%?%.%%%$%%%?%4%%%/%t%%%l%%|%%T%}%%\%%%%	%%?%%Q%%%z%j%V%l%%%%/%|%%%%%[%%%,%=%%%{%%6%%%%(%%E%z%s%G%I%%%%;%K%*%%%%%%<%r%@%%6%D%W%%%%%%!%%>%r%7%"%%%7%%%~%J%N%%%%%+%%G%R%%{%=%%%P%%%%%%%%%.%&%"%%%%%Z%c%%%%%%%%%%%4%%%A%D%%%%%%%%%J%%%%%r%%-%"%%%t%%%%b%%-%"%%%
%%_%%%}%;%{%%%%%%?%i%%%(%T%%E%D%%j%%"%%%%%%%^%#%C%%%%%%%%%m%%%%[%%%%%!%"%%%%%%%%%z%g%%%%[%s%%j%.%%+%%K%D%%%^%%5%%%%%%@%%%%\%%@%%%%q%s%#%r%%%%%%8%%%7%%%Z%%s%%%%%%~%V%N%m%]%&%%u%%%k%%%%4%6%%e%p%%%%%%V%U%%%%k%m%%Z%%%%%%=%%c%g%%%%%%%%%%%%%P%_%%%%6%%%-%%l%-%%o%*%%%%M%"%Z%T%|%{%%%%s%%%k%%%"%F%%:%;%%%(%g%%%?%_%'%i%%@%%w%w%%%%%%%%%k%[%W%%%%%%%i%%%%%%%%O%%%%%%%%%%%%%~%%%%%)%%%%O%y%?%%%%r%%X%7%%%~%6%%%.%.%%%%%2%%%=%e%%%%%%<%%%t%#%%%%^%%%%%%%%%%%.%C%%D%%%6%%%%G%%_%%%%%%N%S%W%%%J%D%D%%?%|%S%%\%%%n%_%%%%%H%%%%%%%a%d%%%>%%#%%%C%?%%%%%%%;%%%%%u%%0%I%y%G%%%?%%7%o%%%d%%%7%%%%%%%%%O%%%Z%t%%%&%)%h%V%%%%%K%s%V%|%S%%%%]%%8%%g%%w%%x%%%%m%%%%%%%>%%%7%%%.%%%>%C%R%%%%%%e%% %%%M%%%%>%%%%f%%%/%%m%%/%%i%k%\%%u%w%%%%`%H%%%G%%!%%%'%Z%%/%'%%%%%W%%%%^%%k%a%I%%m%Z%%E%%%}%5%v%s%%%%6%~%%%r%"%%f%%%%X%%%%F%u%w%0%%y%%%%%%%%%%_%%%u%#%%%%%H%%%%c%J%a%%%%n%%%%%l%%%%%%j%%%%%%%j%%%%3%%q%%%%j%}%c%%%b%%%%%W%%%%%%%%%%%p%'%%r%%%o%%V%%%%%%|%=%O%%%B%%}%%%%%%'%e%%%%%E%5%R%>%%%%%%%5%U%%U%%%%T%S%#%e%%o%%%e%y%%%%%/%	%%t%7%%d%%%r%n%%,%%%W%,%%%%%	%%%%^%W%%/%V%%t%O%(%%%W%%%[%J%J%%%u%%%%s%%%n%%%p%%%%!%>%%q%?%%%%%(%%%%%%%%%%%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%V%%%%%$%$%&%%%'%%{%%`%2%
%M%Y%%e%s%O%%L%L%%)%%]%%%%% %&%%%s%e%%%%%/%_%%V%%M%F%S%\%0%%%%%%%Z%%P%n%%%%R%%&%%z%%L%D%%%%F%n%%V%%%%W%%%%%n%%%(%4%%%@%%F%o%+%%r%%{%%%%f%%%%%%%
%M%%%4%%%%%U%B%%%%h%%%F%{%A%%%m%%h%&%%%j%4%%R%n%%D%%%%o%%&%	%%%V%%S%H%%F%%!%>%1%%q%?%2%%%%%%>%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L%(%%%%&%%%%%%%%%S%%%M% %%u%$%%%l%%%|%[%%h%%%%%%J%{%%$%o%%%5%Z%%%L%%%%g%%%%%%u%/%%Z%%%%%H%j%%%)%%%R%%%g%%%%Z%%,%%h%&%%%%%%%%R%%%%%d%G%e%%%L%>%%%%'%>%%%%%G%%%c%6%%%%p%%a%$%%%%t%G%p%%%%'%%%u%%%=%%`%%I%A%)%%~%%%|%z%%S%P%%%%%%%%%%%%%G%p%%%'%>%%%,%%%\%%%%O%A%)%%~%%%|%z%%S%P%%%%%%%%%%%%%G%p%%%'%>%%%,%%%\%%%%O%A%)%%~%%%|%z%%S%P%%%%%%%%%%%%%G%p%%%'%>%%%,%%%\%%%%O%A%)%%~%%%|%z%%S%P%%%%%%%%%%%%%G%p%%%'%>%%%,%%%\%%%%O%A%)%%~%%%|%z%%S%P%%%%%%%%%%%%%G%p%%%'%>%%%,%%%\%%%%O%A%)%%~%%%|%z%%S%P%%M%w%%%w%%%i%%%m%%g%%%R%%%m%%%%%%?%%%>%=%%)%(%e%%%%%O%O%|%
%J%%I%%%A%[%`%$%%l%%%%%%l%.%%2%>%%%x%H%%4%4%%%%%a%B%b%%i%g%%X%H%%d%:%%%l%%V%%%L%L%%%C%%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%%%%%%%%x%%%%#%!%1%%%/%%7%%%%@%%)%%%l%%%%%m%j%%h%M%1%%%(%4%e%S%%-%T%2%%h%M%1%%%(%%\%Y%%%1%%%%%%F%%%%%%%"%%4%%%%<%%%2%0%%%%	%%%+%%%%@%%%%%2%%%%n%%%(%4%e%#%?%O%H%d%%%%#%%%L%F%|%%%%%%Y%G%%M%%%:%%%%{%
%&%%%%g%U%p%%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%a%U%%%%%%%%x%s%%%i%K%H%L%%%O%2%%,%%%%%%%%H%Y%%e%s%%%)%(%/%%%%%%%%%n%%%%%~%T%%%%%8%f%%% %4%R%B%b%R%J%J%
%%%%	%+%"%Z%%p%%%%%`%,%%o%%%%%%%	%%%%2%%g%%:%D%,% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanel.png__ __8940__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%1%f%%%% % %%*%I%D%A%T%x%%%%y%\%T%%%%%%A%D%%E%%%%\%p%A%%F%%%%.%#%%%%d%%%Y%W%%%z%%%[%Z%!%.%%R%%j%%%=%%$%.%%%%k%%5%Q%%%%%a%%+%%%%%%@%%%m%~%%%%%%2%%J%}%z%?%%%%g%%%%/%%%p%%%%%c%%% %%%{%u%%%S% %=%%%[%z%&%D%w%/%>%>%%%%%%%%%%%d%%%%%%'%@%t%o%%%~%%H%d%%]%n%F%%r%+%%%%%%%%7%%%%%%%F%m%%
%%%c%v%j%h%%%%%U%L%%{%%%%%%%T%%%%%%%%%%w%%9%%N%/%7%w%F%D%%f% %%%%%%k%%S%%%%E%%%\%%O%%%%%1%%%%%%R%%%j%%%%%Y%%r%%{%%%%%%R%6%%%%%%%1%%%%%%%%)%6%~%E%%%3%%Y%%%%%w%7%%9%k%%3%6%e%E%Q%%%=%%%%6%%%%#%%%%%%U%\%%n%%%%@%7%%%%%q%%%%%e%-%9%%%%I%=%,%P%V%%%%%%%%%`%H%c%%%%%%F%%%%%%v%%%%%%%m%%%]%%l%%%A%%%[%%%7%%b%%%o%m%%%t%>%i%%%%%%%R%@%%:%"%%9%%%7%%%5%%%C%%/%%%%%%%q%i%%+%3%%%1%~%%%%%c%=%o%~%X%v%j%%%%%%%%5%A%%=%%%%%%}%M%?%%g%%<%%%%%%%%z%%J%s%%1%S%.%%%h%k%%%%%1%s%%%%%%%%7%h%A%%1%%%%%%%	%+%%%%%%>%%z%%%_%<%9%c%%%Q%%%%%%%&%z%%%%%u%,%;%S%%%%%%s%P%7%%c%%%%%%%%t%%%h%%%%%%%%%%J%%%%%o%%%%V%% %%S%7%k%%%%%7%G%%%%%%%%%%%%%%Z%%~%%d%%{%c%%%Z%%v%%|%%%%%,%D%%P%2%%[%%%%%g%%%%%%%s%C%%%%%%%%<%%%%[%%%Q%%%%%>%% %%%%n%%;%q%%%%j%%%%?%%U%%o%%f%%u%%1%%o%%%%%\%_%S%%%%#%>%/%%%%%%o%%%.%,%L%M%%%%%%g%%%%%@%e%~%% %%E%E%~%4%%%:%%(%m%[%%%%'%^%%%%?%%v%%%%R%%q%%%%%%%%%i%i%:%%(%%*%%%%%%%{%%%_%%s%%[%\%%7%c%Z%Z%%%%N%x%%%%j%J%%Y%% %%t%f%%%%%%%%X%>%%%v%h%E%%%%\%%%%]%%%%j%W%%~%e%%%[%
%]%%%%%F%%%%%%]%u%%%%%%%U%%+%%%%!%.%u%%P%~%%%%%%`%%4%%	%%%%%+%l%%% %%f%G%%%%%%%%2%)%%%%%%%P%{%%%}%%\%%E%f%U%%%%N%v%%%%%}%%%%%%+%%%'%% %%%%%%%%%%%o% %%G%e%%[%%N%%%{%d%%%^%o%-%%%%%%%%v%%%y%%%%%V%%%%P%%%k%%e%%q%%f%-%%%%%3%%%%%%%%%%%%%g%%%%o%%%>%y%%;%%%%%5%%{%%%%%Q%%w%%%%%%S%%%@%N%%%%]%%m%N%%%%%{%%;%%%%%C%%,%%%%%%a%k%%%%9%|%%%%%9%q%%[%A%(%%r%}%H%%%G%G%.%%J%%;%%%%S%'%F%>%%%d%%%<%%%%%%`%;%%%%%I%X%z%%%%?%%%(%v%~%%%%%%%%%%%=%6%%%%O%L%%%%%%6%|%%=%\%%%%%%E%%%%%%q%%R%%%%%^%%%%%%n%%%J%W%%%w%B%%%%%%%%K%%%%%%%g%%%p%%+%%%%%=%1%%%%%%%%A%%%%%%%"%s%%%r%%{%%%m%%%%%%%%%%%%%%%%9%%J%V%%%%%%%%%G%%m%8%:%?%%%}%U%h%%%s%@%%u%%%%}%[%s%%O%_%%%%%k%%n%;%%u%1%`%m%%%Q%7%%%j%%%%-%%7%`%e%%%Q%%%f%e%5%%[%%%%%k%%^%L%<%}%%%%}%%Z%%%/%{%%%%k%%%%%%%k%%%%%%%j%f%%%~%%%%2%3%%%%%>%%%*%%%%%%%%7%%V%%%%%S%N%V%%%%%%%%%%%p%%% %F%O%.%%]%%%}%%%%x%%%%w%%%%%U%%%%%F%%e%%(%%O%%%%>%%r%%f%(%%%%F%O%J%%h%%?%%s%%%%a%(%%j%C%%%!%9%{%%j%%O%J%%%{%&%%v%M%V%%%%%%Y%g% %%%%%%{%%%%/%>%%%M%[%%U%%%%%%%%%?%%w%%%R%7%%%n%%%%% %N%%%%%%b%%%%%%%%%%<%/%U%%%%%h%t%%%%% %8%%%%%%8%%%%%%%%g%'%G%G% %%%,%x%%v%%%%%p%%%{%%q%%%%}%#%|%%%%%%%*%%%%%%%%%%u%% %%%_%%%%%%n%%%%R%%%%%%e%k%%\%%%%%%% %/%%%%%m%k%%
%%%%-%<%0%%'%%%%l% %%%%Y%7%%%%%%9%%%6%%%_%+%%%%r%%%%M%k%'%%%%%
%4%P%L%%%%%%%U%7%%%%%?%%o%%1%%7%.%%%%%%%%%%%x%4%%"%%.%%% %%%D%'%F%%%O%Y%%%g%%%f%O%%%% %G%?%%%%%%%%%%%%%%%y%%%%%%%]%~%e%%%%j%%%%%%%{%:%%Z%|%%%%%%r%k%o%%%'%%%%%l%J%%%3%e%g%u%%%%%%6%1%%%%3%g%g%%|%%%[%w%%%@%%%%%%\%%%%%%;%5%|%%%%%%/%%%%%%9%+%%\%%%%%%%%-%%%%%%)%%n%4%%%i%I%%%%%3%%&%k%6%|%%Q%v%,%%%)%%/%|%%6%%%%N%i%%}%%[%%9%%{%:%%%%1%%%%%%%%%%%%%W%#%\%m%o%]%%%k%_%C%%%%% %%%%%/%6%\%%%%%%8%%n%%%{%%5%~%%%A%%%%%%Y%{%<%V%%%%%%%%/%%#%?%%%%%}%%%%s%%%&%%%q%%%%%]%C%%%%%%%.%%:%%%w%P%G% %%%%%%%%\% %%%%%%%%_%%6%%^%%%%%%%9%%w%%?%%%z%8%6%2%% %p%%b%% %%`%%F%%%% %%%%%%%!%%[%>%%%A%%%%b%k%B%%i%%?%%%%%%%%%=%h%%%%%7%F%g%%% %y%%%%/%)%%%% %;%/%K%_%#%V%%V%%%v%7%%0%b%/%%;%%h%r%_%%^%%]%%%>%%q%5%%%n%%%z%%%%o%%%%%%%I%%%%%'%.%%%W%V%=%%%%%%%%%%%%%%%_%%
%%%D%%%%4%[%%\%N%%=%%%%%%%%% %%%%%%%O%%%O%%g%%%D%(%'%%%%%
%%%A%%5%n%%G%%}%C%#%o%^%%%n%g%%%%%%%y%,%%%C%%%%u%w%i%z%N%%%%%%%j%J%%&%%%Z%%%%%%%%%%a% %P%%=%%S%9%%]%%y%D%~%4%%%%U%%%%%m%%%%%%?%,%%%Y%%2%%%%%%%%%}%%,%4%%%%%%x%0%%%%%%7%p%]%%%%%?%5%|%%p%l%Y%%9%/%%L%%%6%% %p%%%%y%%%a%%%%Z%%a%%H%%%%!%#%% %e%%g%N%%t%%g%%S%%g%%%\%8%%%%%5%v%%%r%%%%%%%%%2%%%%%%%%Z%%%%%'%l%%%B%%%R%(%%%%%.%'%%%%%A%V%}%C%%%%%%%%_%%%%%%%k%]%% %l%%	%%r%,%;%%G%@%%%F%%%%D%%%%%%%"%%#%o%%V%P%%%%%U%%w%5%x%%%%%I%%%X%%%%%%%%'%k%g%?%.%%%%%j%%w%%%o%3%%%%%%%m%g%%}%%%%t%%Z%}%G%%%o%\%%%Z%%%%i%%4%}%%%B%%%%%%%%%%%%I%%%]%%%%%%o%-%%}%@%%[%c%%%%%%%%U%%%%}%%%%N%o%%*%'%%%%%%w%%%r%%%%u%G%%;%%R%%%%%%%%%%%%%_%m%z%%	%%%%%%%^%%%%%%%%Q%%%%$%O%h%%y%P%C%%%%{%O%T%%A%%%)%;%%%%%%R%d%%%%X%%%%%%%%%%M%%%`%%$%D%%)%g%%Q%%%%%_%%%_%=%%]%Q%%%=%%%o%%.%%z%E%%%%%%%%%%%%%5%%%7%`%U%%%%d%%,%F%%*%%P%%.%%%%?%"%#%x%%%1%%%%%%%%%%H%%@%%)%%N%%%%%%%%%%}%M%m%)%v%H%%% %%%%%%%q%%%%%9%%j%%%%%4%%%%q%z%%x%%.%%W%K%%%%%%%%%w%%%%:%K%%%%%%]%%%M%z%%%)%!%%%%%%%%%:%v%%c%%x%(%*%w%e%`%p%%A%%*%%%%O%%_%R%%%S%%%%%R%j%>%%%%,%%%Y%%!%%%\%%%%%%%y%7%%B%~%%A%%Z%%G%$%%j%%%%G%%H%%=%%%@%%%%%1%%"%M%R%%%%%y%%%%v%w%%J%7%,%8%%h%y%%%x%E%%%S%R%%E%%>%%p%%j%U%%%h%W%%%M%%J%%%%w%%%%%%%%%P%%0% %$%V%%%%x%!%%%%%%>%o%`%U%%%%%+%%c%%x%% % %%%%_%%%%%%%%%%%%%p%%%% %P%u%q%% %o%/%%%%%%~%%%%z%G%%Z%@%l%%%%%%%	%%h%%%M%z%%%%%%%%Z%%%%%%G%%]%%%%%%.%%%%%i%%j% %[%%
%%%h%%U%%%{%%v%_%%M%%%%%%%%%H%_%%%%%)%%^%%%{%P%%%%%%%E%%>%%%`%%K%%%%V%%i%%o%{%
%s%%`%k%V%c%%:%]%%%%%%%%%%%%%%h%%3%W%%{%y%A%%%%>%#%%7%%%+%<%%%%%%M%%<%%%o%%%%^%}%6%%%
%%%%>%*%k%4%y%%?%%%%%%@%Q%%%z%%%`%B%%%w%o%.%%9%O%%%d%M%%%x%E%%%%%1%%%v%%S%%y%%%%|%%%V%?%%`%%%]%%%%%%%%%%G%%%%T%%V% %%S%F%a%G%~%%%%%%O%@%g%%%U%%%y%k%%%Y%<%%%%K%%y%%%%(%t%o%\%k%_%z%%%}%$%%%%%%U%%%~%%D%%d% %%%%%%?%%%f%2%%%%%%%~%%D%w%d%%%e%%%s%y%%L%B%0%e%%%)%%%L%%%h%%%%%%:%4%9%%%%R%%T%%}%%%%c%%%;%%%%V%%%%%W%%%%o%u%z%%%%%H%%%%%%%%%s%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%a%j%%%%%%%%g%%%%%5%K%%)%%T%%%0%%%f%j%:%%%>%%% %%A%%L%<%W%&%!%%2%	%%%I%%%L%B%%%%[%%v%%%%%Q%3%%H%9%.%.%%%%%%%%%%%%~%%%%%%
%Q%s%%\%%%0%%%%%%%% %j%.%e%%%%-%=%%%{%%%%%%f%%h%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanel2.png__ __12482__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%1%f%%%% % %%%I%D%A%T%x%%%%{%\%T%e%%%%% %%Q%A%%%%%`%%%%%A%%%x%I%J%M%0%%%%t%%H%%%Z%%%%%%%%%%L%%,%L%%5%u%-%%Q%^% %%D%%#%/%%(%%r%%%%%W%+%k%~%%%0%%0%%%^%%%%%%%%g%f%8%%%%=%<%%%%%%%%% %%}%n%Z%%,%k% %%%%%z%$%D%u%%%%%%Z%w%%%%%%t%0%D%%%%z% %D%%%%%%#%a%%u%<%%%%%%%%z%%J%%f%&%%V%%%%:%%%(%V%j%%%%%%%%%X%)%%%%%%O%%%%%%%~%%%%%3%%p%-%<%%%%%H%%%(%%%%g%%9%%o%%;%X%x%%%%w%i%@%$%%g%}%%%%X%%%%%%%%%%%%%%,%%%%%%%&%-%m%z%8%9%%L%<%U%r%%%%G%.%%%%%w%*%W%%6%o%K%%%%"%{%%%%%%(%%%%%u%x%{%%N%%G%v%o%%V%v%%%%%S%%/%U%%%%%`%{%%%x%5%%%!%%%h%7%%W%s%%_%%%%%%%%%%_%%%%%%%%%%%%%%%%%%w%%6%%%%%%m%%c%%%%%%%%%%%w%%%%c%%%%%%%%%%C%%Z%%%%%%%%I%%%%:%%%%{%_%r%+%%%1%k%%%%%%%%%%y%%K%%%%%%%%%%%%%B%%=%`%%%%%T%U%%b%%%% %%W%%w%%%%%%%%%%(%%%5%o%k%5%%%%%1%}%%x%%%%?%|%%%%%%.%%%%%%%%% %G%%%%%%%%%Y%Q%%%%
%a%%%%/%%%%%,%%%%%%%j%%%Q%%%%1%j%n%e%%%%%%%{%3%%%%%%%5%w%%U%b%g%%%%_%%%-%%>%%%;%%4%%P%z%%|%%1%%7%%=%%%%6%%%F%%J%X%%%%%^%%%%%%%%%%%a%j%&%%%%%%%%8%?%%%%%%%%p%%?%%6%%%%N%%%%%%i%%=%
%%%4%%o% % %<%%%%%h%d%%N%+%%%%1%%%%%m%%%4%%%%^%%%;%~%%4%%%'%1%%%b% %%s%"%g%%%%,%H%%0%z%%%*%_%M%%.%%%\%%%%%%%%%%%?%%(%%%}%%%k%%O%%%%'%
%w%'%%%%%%%a%%%%%%%%%%% %%%%%%C%%%n%N%%^%%[%%%e%%_%%%>%c%%u%x%=%%&%%%%%^%l%g%%%%J%%%%N%%%%%%%0%%%%W%%.%]%%k%%%%%%K%%%%%%V%%|%S%A%%A%%a%]%P%%%O%%%%%%%#%%w%3%\%%%%7%%%%X%%%J%N%%%:%%+%%%%%%}%%%%]%m%%%% %J%S%2%%%c%% %%%6%%_%%%%v%L%%%%%%n%%%<%%z%%?%R%%%%%%O%o%%C%%%|%%%n%%%%%x%%x%%%%%%%N%%}%%O%%;%w%%%%u%h%a%%%%%%6%%&%%M%s%e%%%b%%Q%%%=%4%%%%%%:%>%<%%i%%	%%%%%%%%%%%%%%Q%%%=%%%>%%%%%F%%%9%o%%%}% %%%3%`%%%%6%n%%%%%%%n% %p%*%m%%%%%%%%%%%%%p%%1%<%%%%_%|%q%%%%%X%%?%j%%%%%%J%%2%%%%%%%%%#%%%%%g%%%A%%%i%%#%%%%%$%%%%%%b%%%%%%%.%;%%%%%&%%v%%3%%5%.%%4%}%%%%%c%t%%v%% %%%%%-%<%%%%%c%_%%%%?%S%w%%%1%%%%%%%.%~%0%%%%d%%%%%%%%=%b%%9%\%:%%1%e%%%%%%a%%%% %S%%h%%%f%%j%W%|%%%%+%3%f%%)%%%%3%%-%~%%u%h%%9%%{%u%}%%%N%%%%%%%%%%%W%%%[%w%d%%%%%7%%%%%m%{%%%7%%%%%u%%%%%%%%6%%N%%	%%s%%% %%%%9%%m%P%z%}%%%y%%r%%%e%%%%%%\%5%%C%|%U%N%%M%|%I%%z%%%|%%%%%4%%%v%%%f%q%%%%%?%y%%%%%%-%Z%%j%a%%;%@%#%%e%%%'%%%\%w%%%O%%V%%%%%{%v%%%L%%%g%%%t%%%%\%%%%%%6%M%%%%i%%%%g%v%f%Z%)%%%%N%%%?%%%F%(%%%x%O%%%%%%%&%.%%%f%%G%%%%G%U%%%%%%%N%+%%C%%L%%%%T%%F%g% %%2%s% %%%%%%%;%=%%%7%d%%%|%%%%%%F%%%%%-%_%%c%%R%6%%%=%%%% %%%%#%w%%%X%)%n%%%%%%2%1%%+%7%%%%%%%{%:%:%%%%%%%"%%%v%6%%%%.%%%% %%%Z%%%%%{%%%%%%]%%%%z%%%q%%%m%%v%%%%(%%%W%%%%M%M%<%%%%.%%%%_%%Q%%%%%%%%k%%%%q%%%M%d%a%<%%P%%f%%Q%.%:%%y%g%%%%%b%%%%R%%%~%%%%%N%%t%l%%%}%%%6%6%
%%P%%%%v%J%%f%%z%%%8%^%b%%?%%%%%%%/%T%x%}%	%%%%k%%%%W%N%% %%&%O%J%%i%%%%%%>%%<%j%^%%%% %8%%%%%%?%u%p%%;% %%a%c%%s%%%%%S%%v%y%%
%%%%%%%%{%%[%%%S%%_%>%1%k%%%\%%%b%p%%%%0%%U%%%=%Q%_%%%z%n%%%%k%%%%%%%%o%%%%%%%s%%%%%q%%o%%%%%4%k%_%q%%%%%%d%%%W%%g%%<%%[%%~%%%]%L%%%%%%%u%3%%Z%%l%z%%Q%|%,%%%%g%.%}%%6%%%5%%;%%%%4%%h%%%%%q%%V%V%%w%%)%%J%%%\%%%%v%H%%%%%%%%%%%f%%^%%%%%!%%*%>%%%[%a%%%%%%%%%%%%%%%%%X%w%%}%%+%h%%%d%%%%_%%%%%?%+%S%%P%%%%%%6%L%%l%%%%%%%w%q%%
%%8%%~%%9% %%>%% %%%t%%%%%% %%%%%%%%%%6%%%%%%%^%%%:%9%%%%%%}%5%%% %%]%.%%%%%%%E%)% %@%~%%%%%?%%Z%%%%%%% %%n%Y%%{%%%%!%%%%%6%%%>%%%%%%%%%%%%8%{%%%%%%]%%%%t%%%b%m%%%n%\%_%%%%%%%%%%o%7%%%Q%%%u%%2%%%% %j%S%%<%%%Y%`%u%%%3%%Z%z%%%%V%%%%%%%]%%t%%%%%]%#%%%V%%>%%%%O%W% %,%(%%1%%%%m%%&%%%f%%%%L%%%%:%%%%%V%=%%v%%%%%%%}%%%%%%%%% %%%6%%%%5%%%%,%%4%%%%M%A%%%%6%%W%%%%z%w%s%%%%%%>%%%$%%M%%%c%%c%!%/%%%%%_%%*%M%%%_%%%%%%%%%%%O%*%%|%+%<%%%%%%% %p%1%k%a%R%	%%]%%s%%{%w%H%P%%% % %%;%%G%%%%%3%<%%%%%%%%%%%%%%%q%%%%i%_%%%%C%~%%|%%%8%%%%%%5%/%%%%1%%%[%%x%%q%3%%%% %\%:%x%p%A%%%%%%%_%%<%s%%%%%%% %%%%%%%%%%%%%3%Y%P%.%%%%%w%%%%%%%%e%?%%%%^%%%%%%%%5%>%u%U%6%%G%?%%% %.%%|%}%%J%%%%%%u%%z%%%V%3%%P%%e%e%%%%%%%%%%%%5%%%%%%%%%%%%%%%%%%%*%%%7%%%j%%5%%%%%%I%C%}%%m%l%%%%%%^%%%%/%%%5%l%V%%%D%%%%Q%%:%\%Z%Z%Z%j%j%%Y%%%^%%%%^%%%%t%%%~%&%{%%%%%%~%%%%%%%%q%%*%%%%%%%%y%z%%%U%%Z%q%}%m%/%%%%%E%%%%%%M%%e%%%%%%L%%q%m%}%%/%e%%k%6%%F%s%W%%%%%%%(%%%p%%%%%B%U%%%M%%g%1%%e%^%%L%%%
%Q%>%%y%\%C%%%*%%%%^%{%"%%
%Q%%%-%%%:%:%:%%%"%%%%W%%D%G%G%%/%z%%%T%%B%0%%d%!%%e%%%%/%%i%%V%%%%|%% %%%.%%%6%%2%%%%}%%%I%2%%{%%f%m%%c%B%C%%%%%%%s%%%%Z%%%%%%%%%[%%%%-%%%7%%3%%%%%I%a%%%%%%K%%%%M%l%%%9%4%%%j%%%V%{%6%s%G%
%%%%%% %i%W%Z%%%%o%%%%%?%%%%F%i%%f%/%%%%%!%.%% %V%.%I%%%%c%%}%%%V%%%%%
%h%F%%%%%%`%e%r%%%%N%E%%%%d%0% %%<%U%T%%%V%%%%I%%%?%%0%%Q%%%z%%%%q%%W%x%%%'%%K%%%%%% %%%W%%A%V%%%%%f%%j%%3%%%%M%+%%%b%%%%{%%%%%u%g%%~%y%T%%%M%%Y%%%%I%Y%6%u%%%G%%%%%%%E%%n%%.%%%4%0%k%%Q%%%%}%r%p%%%%M%%+%%z%S%%%%%U%\%'%%% %%%%%%%g%w%%%|%%%%{%%h%5%%%z%q%%%$% %%v%u%%%%X%%%%F%%N%%%%%%
%;%%%%o%%R%c%%l%V%%%%%%%X%%M%w%c%%%=%%%%u%%%%%P%%%%%%%%[%%j%%%%`%%%(%%%%>%%%%b%k%%-%$%%%%c%%p%v%%O%%4%%^%%%E%w%4%]%@%%Y%%%@%%Z%%}%[%%%%%%%%z%#%5%%@%%%%%+%%S%%D%%%%%%%%%%1%s%%+%%%%%% %%%.%0%%{%%%(% % %%G%%(%%%%%9%%@%%%z%%%%{%%%%%%M%_%%%'%%%%W%V%l%%t%%,%5%%%n%v%%(%%G%%%1%%%9%% %%N%%%%%h%%Q%%'%%J%Z%%]%%+%%% %E%%%%%(% %%%~%z%<%%%%%W%K%%|%%r%u%+%%%%?%%P%%Z%%%%%z%%S%%%-%%1%s%%%%%G%'%/%%% %%%%%h%%%%%%%%x%%%%%%%n%%f%%%y%1%%l%%"%%U%%x%%%%3%%%y%W%%>%U%i%%%h%%%%N%O%I%
%%%_%%%%%%%%%o%%%%%%%n%%%C%%%%%%%%j%8%%%V%{%v%%s%n%%f%%%2%%%%%L%=%%%%%X%%%%%%0%%%%%5%%%%m%e%%%%*%%+%%e%'%g%%=%W%%%%%]%%%%%%%_%%V%%%`%%n%B%%_%%%O%0%%+%%%%>%%%%%R%%%u%%c%T%?%%0%%%%%%%m%%%%%c%%O%.%?%%%%8%%%%%/%/%%8%_%%%@%3%%%% %%y%%%%%%D%%%%%%%r%%M%_%%%U%!%%%%%X%%~%%T%6%%%~%7%]%%%h%%%s%%%P%*%%4%%R%m%%%%%%%%=%:%4%%%a%%%%%L%%%%%%%%%%O%N%%%%%%%:%+%%'%%%C%%%I%%%%%B%%%%%%%^%%%6%%}%%%%<%%%%%k%%S%%l%%V%>%Z%%%%5%%%%%%%%n%%%%r%%u%4%%E%%%%%%%z%%a%8%9%%%<%%%%@%w%%%%%u%@%%%%%%%%W%-%%3%%%%o%%%f%(%%%%O%*%4%%6%%%%%%8%{%%%%_%H%1%%v%%%.%%%F%w%%H%+%W%%%k%^%%L%%%%%%u%%q%%+%%%B%0%%d%!%%e%%%&%^%"%I%_%%s%%%A%$%%D%%%%%%%8%%%%%%%3%W%%%8%%%%v%%%J%%%%2%Y%%F%%,%%%L%%%Q%&%%Q%%%%X%%v%%=%%G%%D%G%G%%8%Q%%%E%z%%%'%%%%%-%%F%%%%%\%%%%%%%%%%%p%%%%%%%%6%6%%w%L%*%-%%%%o%%L%%%%%B%\%%%%%%%)%0%%u%O%a%%%%%%9%%%%z%z%%%%Y%%%%%W%%Q%%7%z%y%%%`%L%%_%%%%%%2%8%=%%%%
%%Y%%3%%%%C%!%%v%%%%%H%%%% %u%%%l%%8%Z%%%S%%S%%%@%T%%%%%%S%g%%%%C%%%r%z%\%%%#%%%d%^%%%Z%%%q%%%:%%%%;%4%H%%%%;%%%%%7%O%%%%%%t%%%Q%%%]%+%n%%Z%%%%k%%%%%%C%%%b%%_%%=%%%T%?%c%%+%%D%%%E%Y%Q%J%W%M%%%{%n%%%%%%%	%]%%x%%I%%)%-%%M%}%%%%c%s%]%%%_%%%%%l%%%%%%%7%%%%5%l%#%%%%%A%+%%U%%t%%%3%%%F%%W%0%%%%%%%q%%%%%%%8%%%%#%%g%%(%%=%W%%%%%%A%Z%m%%%%}%h%%%i%%%%/%%%%$%%%%%v%q%%n%S%%%%%s%%%j%%%%%f%u%o%%=%_%%A%%%)%1%%%%(%S%>%Z%1%%%%%_%%%%%%d%.%%[%%%%s%%%%%%:% %s%%%%%q%%%%y%j%E%%%=%c%%%%%!%%%%%%o%%%%4%%%n%%%@%Q%%%%2%%%%%R%%F%%%(%%%v%;%%%%s%8%Q%%%j%%Y%%%%|%%%%w%u%% %n%%%%u%B%T%g%%]%N%%5%
%%!%Q%%%'%,%%%!%F%%%m%%!%%D%$%%+%3%%$%%%(%k%%%%%O%%%%%E%%%%%t%]%%V%{%>%i%|%[%w%%%%%m%%%%%%Y%%r%%%"%}%%%a%~%+%%%f%%%%
%6%%c%%%%s%r%J%N%%%z%3%%%E%%%%%%%$%%%+%%%$%%%%%7%2%h%%%|%%6%?%i%%q%%j%%%%/%J%%%%%%%e%7%%%%%%)%g%v% % %E%%%7%x%`%%%
%%%%%I%%%W%%%%%%%%%%%%%%%k%%H%%%~%%J%N%N%I%z%%w%%'%%%%%%%%W%N%%%%%%%%%H%%%%q%%%}%k%%%x%i%t%%%J%e%+%%%%%`%%|%%%%%%%<%"%%%'%%G%_% %p%x%_%g% %%%%%%%%g%%%}%]%%^%%%j%%-%%x%%k%%F%%%/%%%%%L%3%%%Z%%%|%3%k%M%x%'%%]%m%%%Z%w%%%'%N%%%"%8%}%c%%K%%%%%c%%Q%%%8%%%%1%%%%Z%-%%%E%m%%%%%i%%%'%%%~%%%%%%s%e%%c%~%+%;%%=%%w%D%%%%%%%%7%G%%y%%%%%%s%%;%i%k%{%s%%%k%#%%%{%=%%%%V%*%u%%2%%0%#%%%%%5%k% %`%v%N%%l%%C%%%r%%M%l%%%7% % %%%K%r%f%W%{%|%%%I%%_%%#%%!%Q%%9%W%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%a%%%%(%W%%V%%%%%%(%-%%%@%c%%%'%Q%%%m%e%C%%%%%%n%%%%%%%O%%L%%(%%%%%%%%%`%+%%/%%%%%%%%%%%%O%%%%Z%%%%%T%Q%%%\%%%%%T%Q%%
%%%%(%%\%% %%%E%%+%%$%%+%%d%!%,%%%9%% %H%%e%%`%%%%%%%%%!%Q%%%%A%"%$%%2%W%0%H%%W%0%%B%X%B%+%s%%A%%*%%\%% %%%E%%+%%$%B%%(%s%%%D%H%%e%%`%%%%`%%%%%V%%%% %U%%%%A%"%$%%2%W%0%H%%D%Q%%
%%%%(%%\%% %%\%% %%a%	%%%	%%A%%(%s%%%D%H%4%%%s%+%%A%%(%%y%%L%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%f%+%%%%%%V%&%%%E%%%L%"%$%%2%[%%D%H%%e%%2%%%(%%l%e%%!%Q%%%%$%B%%(%%%I%%D%Q%%%S%%%%E%%j%%%%%%%z% %%%%6%%%%%%%%}%G%%(%%%w%%%%%%%%H%%%L%%%Q%&%%!%%\%Y%%%%%%%%%~%$%t%%%%%%%%9%%%I%%e%T%%.%s%L%%%7%%(%K%0%s%L%j%H%%e%0%%%%%Q%&%R%%Q%&%%%(%%%%k%]%%%	%Q%%I%%e%^%%I%"%T%E%y%y%%%[%7%%%%P%%k%%b%%%%y%%R%%%P%t%%%=%%%%%%`%%"%J%K%o%%n%k%4%%%%	%5%%%%|%%%%{%0%%:%k%%%%%%%?%%%P%#%%%%%%%%%2%Y%%F%%,%%%L%%%%i%%%%%%%8%%%%%%%%o%D%U%U%%r%X%H%0%%w%%%S%%+%%%%%/%%!%%%%%%%%%@%T%%%%%%A%%&%%%H% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelDockExample1.png__ __9582__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%2%%%%% % %%k%I%D%A%T%x%%%%{%X%T%%%%%%B%%%%%E%%%A%%%%%,%A%P%p%L%%r%%E%%(%%%%%%%C%;%/%%[%'%%D%%%%N%z%0%4%%5%%%]%F%Y%T%%%%%%%%%{%P%%%.%*%%Z%i%%i%%?%%%%%%%%%%%%%%%X%%%%%%%%%5%%p%% %% %%s%%%_%%&%%!%#%%%z%$% %%%%%K%D%%%%%%%%%`% %Z%%%%% % %%%%?%%%%%%%%H%%%%%%%%Z%%%%%%%%%Y%{%#%%%+%s%%j%j%%%6%Y%%J%%!%1%K%%%%G%%m%%%%%%n%S%%v%%]%%%%#%%h%1%%)%7%B%%;%<%%%%%%J%/%%%%B%%%%f%%#%%%%%R%%4%%M%%%%%%%f%%E%%%%&%%%%%%`%7%%S%%%S%u%%a%%%e%%o%%%;%3%?%%H%%%%%%[%%%%%)%%%%%%%C%%%%%%	%%%%%s%]%%%%%%m%%%;%%%%%%%%%%}%%%_%%%%%7%%y%%%%u%%%%%%%>%%%%%%}%=%f%%Y%9%G%%~%%%%%%%J%%W%g%]%k%%%%k%%H%%%~%e%%%%f%%%%%%n%B%%%x%%%%o%]%n%u%w%p%%%}%l%w%_%%%%%%%%%%w%~%,%%%y%%%%Y%%*%%%%%%%.%w%~%>%%m%%Z%P%}%%%%%%%I%(%"%%%%g%-%%J%G%%S%%G%%/%%R%%%%%c%%:%u%^%%%%_%%%7%%%*%%%,%%w%%%%%%H%%%%%%%%n%%N%%%o%B%%%I%.%%%A%%{%]%%%%%;%%8%%%%z%%O%Y%%%l%%%!%%%i%%%'%%%p%Y%>%l%k%b%{%z%%,%%2%>%I%5%%%p%%%%%%z%%%`%z%%%[%R%2%G%%M%%%N%%%%%J%%%%d%~%<%:%;%%`%|%%%
%%%%%%%%g%k%%V%C%G%%%%%/%m%n%N%%%x%%%%%%r%%O%7%%%%]%%%%%%%%m%k%%%5%%s%%q%T%O%%%%%%~%%e%z%%%%E%%%>%%%%%%=%q%%a%%%e%%3%%%%\%L%y%%%%e%D%D%O%%.%Y%>%%z%}%%%%q%w%%%X%%~%%%%4%g%%%%%%%%5%%K%>%M%%%x%%%%7%%m%%%%%%%%%R%%%3%%"%R%M%%%%%%]%~%,%j%q%%%%%A%%%%&%*%%%%%9%$%o%{%%f%%e%%@%%%9%%%%%%%%+%%l%%%p%%%a%%%o%%%%%C%%V%g%%B%%%%%%%%%_%/%%%%L%D%t%%%%[%!%|%%#%%%O%%%R%%e%%%%%F%%d%%%%%%O%%%k%%%%s%E%%]%%%%W%%%%|%Y%%%%%%%%?%%s%%%%H%l%%%%%f%%~%'%u%%%%%%%%|%%%}%y%Q%%%%v%=%%%[%$%t%%l%m%%%N%=%%%%%%%%%%%%0%c%n%%L%g%%M%u%y%h%%%%%_%%%%%%%%%%%%I%%5%=%`%%g%%%%%Z%[%%%%%u%?%%C%{%%%%<%v%6%s%%%7%}%'%%%}%l%k%r%)%y%<%=%%%%j%V%+%%%%%%%%%U%%;%:%%o%%%%%%%%Q%%%%)%c%g%n%%%%%%>%%r%%%%%>%%%%H%o%0%%z%%%%F%%X%%%=%N%%%%%%%b%%Y%r%	%|%%Y%%%%%l%%%%%%]%q%%N%%%%%%%-%|%+%%_%%%%=%%)%%H%{%%%%{%%%9%z%%%)%\%y%e%%%%%%D%%%%%%%V%%q%%%M%%o%%%%%Q%%%%%%%% %%%%%5%)%%%%%%%%%%]%%%N%;%c%%%%%k%%%%%%F%%%%%?%%%%%%%%%J%%%%%8%{%%%z%Q%%%%{%v%%%%D%%%%%V%O%8%%H%.%%%S%%%?%%%%|%%(%K%{%%H%%%9%%%%%A%%G%%%%D%t%%%%%%	%T%%%%r%a%%c%D%D%4%%%%N%T%%%%%%%%%%%%>%%u%l%h%%'%J%%%z%%+%%%%%%;%%[%A%D%S%%%%V%/%Q%%9%%%%%%%I%+%G%H%g%%G%%m%S%7%>%%%%9%%%%%,%%E%A%%%%I%T%%%%+%%H% %%7%>% %%%%c%%%%e%D%%%%%%_%%:%B%%O%7%%%9%%%%O%%K%\%<%{%9%%%%2%%%z%%%]%W%"%Y%%%%%%%d%%%F%%L%%\%~%%%%7%%(%%%u%%%)%%%%%%%%%=%%%%%%]%g%[%[%%D%%%%%%%%n%%%%%~%%%%%%%%%%%%%%%%)%%W%%%%%%%_%:%9%q%%%%%,%%8%%%%%%S%6%W%%%%%%%s%w%c%%%%%Q%e%%%X%%%%%%%z%%+%%(%%H%%%G%%%y%N%%%%%%%%\%%>%%<%U%%1%%=%.%%%%~%%%1%%%%V%%v%%%%%%?%%V%%%%l%%n%%j%%%%>%o%n%%%%%+%'%%~%%8%%%%;%%%;%I%%m%r%%%N%}%{%w%s%%%%g%O%%%o%%%w%W%=%%V%%I%%%%\%%L%n%N%#%C%%%p%%%%%%%%%%%(%h%%%D%4%W%5%%%%%G%?%%%!%%q%%=%6%%%%o%%?%'%?%,%m%h%8%%%%%%"%%g%%%%H%%=%%%%%%[%a%%8%%%%!%%%%%%%%%_%%%"%%%%!%%^%-%~%L%%%%%%c%O%%%X%%%%%%!%%%%%%%%%%%%"%}%%a%%%k%%%%%#%%"%i%u%%%%%%%%$%r%s%4%>%%%%u%h%%%$%#%%z%%%%%%%%%%%n%%%%o%%a%%%_%K%I%U%%%g%%%%]%'%%%<%V%%o%%~%%%%%%D%"%z%%%%3%^%%%%%:%%%d%%%j%%%%o%N%W%%%%W%n%%z%9%%%%%%k%[%`%%%%%D%5%%%	%%%{%k%%%k%%3%%*%%%%%%%w%%?%!%A%%%N%%%%%%%%%%%%~%n%%%%}%%%%%N%w%%%%%;%%%%}%%%C%%%%%*%)%%;%>%%%%%_%%%~%%&%V%/%%3%%%(%%%%?%j%i%%K%K%%%%%%%%%%'%%%%b%"%%.%\%%%%9%%%H%i%%5%%%%.%%%%b%7%%{%%%%^%&%"%%%%%%~%%&%%%%0%%%/%u%%%%%%$%%F%%X%=%%%*%%%}%?%%%)%N%t%|%%%l%%%%%%%>%+%%h%%%%'%%%%%%%%%%K%M%=%?%%w%{%i%%%%Q%%%%%%%S%%%%%%k%%%%%%d%%%'%%%%%%%-%%%%	%F%%Z%%%	%%%%%%d%A%%%%~%%%%%%D%%%%%%%%%%x%Y%u%"%%%%%%%%%%j%%%%%U%W%%(%|%%%%%%9%`%'%%W%%Q%8%]%+%%%V%Z%%%m%-%%u%%%%%%%%N%%%j%4%%&%%o%%p%%%%%%%I%K%%%%%%%7%%)%%}%%%%%%%^%_%%c%"%%%?%%4%%%p%_%k%%Z%%\%%%d%+%#%%%%E%o%0%,%%%%\%%%w%x% %%J%%;%%%%'%%%%R%%,%%~%K%%%%%%%%%%%%%%%%A%k%%G%1%%2%%%%%%:%)%%J%{%%%%%u%%D%%%%%%%I%9%m%O%%Z%%%%%*%%%%b%%j%u%l%l%,%%i%%%%9%%%%%%z%%%T%%	%%%L%4%%%X%%%%M%P%U%%{%|%o%I%3%% %%$%.%%H%,%%{%%'%%%%%%%%%%l%%B%%%%%%%5%%%%%4%%f%%%]%Y%%W%%%%\%Y%F%%"%%>%+%%>%%i%%5%%b%f%%%%_%%%c%%%%v%%B%%*%%%%`%%i%V%|%%%%%%M%%%i%%%%%%%%i%%%Q%%]%%
%I%s%%%%%%b%2%%%%c%%%%%%%%k%?%%%%%%K%%%$%%}%%%%N%=%%X%%%s%{%%%%0%9%F%/%3%%%%%%%f%%x%"%%%%Q%O%L%9%%%%5%%o%%%%(%%%%%%N%%%r%%%%D%b%I%%;%_%%%4%%%%M%X%%%%G%a%%%%Z%b%\%G%S%*%%%Y%%4%%%%%%%k%j%%%%%N%B%.%%M%%H%%%{%%%%5%%%%%p%O%r%%%<%%%	%
%%%%%%%W%&%%%%%%?%S%1%%%%%,%%_%%%%%%M%\%%%%%%M%%%%%"%R%%p%%%"%%%P%%4%%%5%%%%%%%%%%%(%%%%%%%%)%%%%%u%%%_%%%%l%%9%%F%|%%%%%8%!%%%%%%D%%u%4%%%%%%%%%Z%s%7%%%K%&%L%%%%%u%%%%X%%%F%%%%%V%%%%G%%%?%%%%%,%3%M%%$%q%%%'%%%_%M%%%%g%%%%%g%%%%E%%%%%
%%%%%%E%M%%)%%}%%%%7%m%.%A%%%d%%%%U%%'%4%%%%%%x%%b%I%%2%%s%%%%%c%%Z%>%%%%%w%%%%3%%%{%Y%f%%%j%J%%c%%%%%%T%n%%%}%%F%%%%%>%%%<%^%%%%%%(%%%%%
%i%j%?%%%%r%L%%x%%%%%%%%%%%=%%%%%%%%_%%%&%%%%%%=%%%z%_%%%%k%%:%%%k%%%%%%%L%%x%%'%=%%%%%%%%s%4%2%%%Z%%%%,%%%%%4%%%=%%%9%%%%N%0%T%*%%t%%%%%%,%j%%L%%%%?%W%%%%%1%%'%%%a%%%a%%%%/%%%%%`%%%%	%%%%%%%%s%%%u%%%%!%e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%%!%e%Q%%=%%%%%%%%T%%h%z%5%1%;%>%r%%^%%%7%%s%,%1%;%%g%U%^%%%m%%%%%(%^%L%%%9%J%|%%%%o%%%[%%%%%%>%J%|%%l%w%%L%%%A%%%%*%%%%t%%%%%V%%N%%p%%\%%%M%$%%%k%%!%[%%?%%%%%4%%%^%%%%^%X%X%%%%%9%%"%%=%m%.%%%Q%%[%%A%%%%)%%%C%4%%%N%0%%M%%%%Q%%=%%%%{%1%5%r%F%J%I%%%%%Y%Y%%%%%6%K%7%%%%%%>%u%%%%%L%%H%%%B%%%x%S%%I%%x%q%%%o%T%%%y%%%%Y%,%3%M%%%%%%%%% %%%%%%%%%%%%%2%s%%%%%9%%K%%%%%%%%>%>%%%%%,%S%%%%~%%%%%%%%@%R%%%%%%g%+%%;%V%%%N%%U%%t%%%b%^%%~%9%%B%*%]%%N%%>%o%%7%%%%%%/%,%)%%O%%%6%%%%i%$%%%;%b%%%%%%e%g%t%%%%%>%u%%R%%B%%%%% %%%%>%%h%%%1%A%%%%7%%_%%%a%%j%%%%z%i%W%J%w%"%%~%%A%g%%%%%N%6%%5%M%Q%%^%%|%%%%l%w%s%%%%%%%v%%%V%%4%%r%%D%%~%%q%%%/%%7%%%%%Y%p%%%~%%%%%%%v%%%%z%%u%%%]%%%-%%I%%%)%%%%Y%%=%%D%D%%%%S%%%%%%A%[%%%%E%Q%%%l%y%%%]%%%X%%%%)%%%%	%%%%k%%%-%9%%%U%%%g%%%%%<%%9%%%%e%/%%%%%%%n%%K%%%%%r%%%%y%%%%%)%h%%% %"%"%R%x%%%
%	%%C%%%%%d%M%%%C%%>%%%z%%%%J%G%i%%0%w%A%%%3%%K%%%4%%w%D%g%%e%)%%%~%%Z%S%%%%%%%%%%s%%%%%5%%>%>%D%%%%%y%%
%'%%%%%%;%u%<%%%%%d%%%j%"%:%u%<%%%% %Y%%%N%%%%%V%%%?%~%%Z%%%%%%=%M%%F%%~%%%]%i%%V%%%%j%%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L%X%%\%%%'%%(%%%%%%:%%4%;%%%%%&%R%V%%T%%?%%%%%%%%%h%d%"%%%%%%%0%%@%G%%f%G%%%%%%%j%u%%%%%u%%i%v%%9%%	%'%%%%%%;%u%<%%%G%%%L%i%{%2%%Z%-%>%% %&%%%(%6%6%%%%%%R%B%%z%g% %%%?%%v%w%%%%`% % % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelDockExample2.png__ __9798__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%2%%%%% % %%%I%D%A%T%x%%%%{%\%T%%%%%g%!%%%%% %%%0%y%%%%%%
%%%Y%%4%I%%%%%%5%C%%%g%%%%q%%%%h%%%%I%%%%K%%%e%%Q%%%2%#%%%%0%o%%%%g%%%%%%V%%%%c%%%e%%%a%%%%%%%%%f%%%{%^%%%a%%E%%N%%%%%%n%A%%%%D%4%`%H%@%s%%%%z%q%q%q%D%d%/%}%s%%x%~%%.%%%%%%{%% %%%%%%%%[%%%%@%B%m%u%/%1%u%%%y%W%3%%7%%%5%k%o%$%%`%g%%A%M%]%%%%+%%	%2%$%f%K%%%%h%%%%%%%-%%`%%%:%)%%7%v%E% %%f%"%%%(%%%%u%%%%%%+%%%%%%%%%%%%%W%V%%T%%%%%%%}%{%%%G%%%%%%%%u%v%%%%x%f%%%*%%;%/%%%%%%%A%g%%%%%%3%%%~%c%%2%2%7%e%A%%%>%=%s%%%%%%%%%t%~%%\%%%w%~%7%s%[%%%%%%%H%o%C%n%x%%%c%%_%%%%%%%x%%%%u%%%%%%%%:%%%?%%%z%%%%r%%%%%%K%=%%+%%J%V%f%%h%%%%k%%%%%~%d%%w%3%%J%%%%%%%I%%%]%%%%%%%%%%%v%w%%y%%%%%f%D%%R%%%%%.%k%%S%%%%%V%%8%%K%%%s%%%%%-%[%%%%%%%%d%%%%b%"%%;%w%%%%t%4%%%5%%h%%%%U%%%%c%%%%%K%_%?%%%2%%%%%K%9%%%%%%D%%o%%%%@%%%%^%R%%%S%v%%%%%%x%%%5%}%%%{%%%%	%W%%t%t%%%%v%%%%$%7%%%%C%%%%%%%%8%%%t%%%%%%$%X%$%e%B%%j%8%%%%%%8%X%%%z%%%%%%%%5%|%d%%t%/%:%%%%%%%%%%x%t%f%%%%%%	%%%%1%%_%%%%%%%%%%8%4%P%%%%%%%%%;%;%w%e%%%%B%%}%;%%v%%%u%%%%%%%7%%%%%a%]%%{%8%t%(%%%%%-%%2%%%%%<%r%@%%R%%%5%%%K%%d%L%w%%~%r%1%%%%%%%%=%3%S%%%_%%%%%%%%%:%r%%%% %%%%%o%	%k%%%y%W%]%%%4%y%b%%%%o%<%%%|%%@%D%T%v%h%%%%%%4%%H%5%1%7%%%%%%c%%%%%/%%%%x%x%8%Q%%%%.%%%%y%%%5%%/%%%%%%%%Y%?%%%%%<%%%*%%V%%%f%%%3%%%%|%%%%%_%%%%?%%%q%%%%%n%%%%%%%~%+%D%%s%!%"%%%%~%%%%%%%%*%\%%%%Q%%%i%Y%y%%%%%,%%r%%%%%%%%%\%%s%%%%X%%%%%n%b%%-%%%%N%%%3%%%%6%x%%%%}%%%%{%%%%%{%'%{%%%%%%%%	%%%%%%%%%%%%%%%%%%0%m%v%%t%7%:%%%%%%e%%Q%%%%J%%#%q%%%%%%H%%=%5%h%%O%%%%%j%[%%%%%% %%C%%%%%:%v%6%k%%%%%%_%%%%%)%%%=%e%%%%U%]%%4%%%%%%%g%%%%%%%%%%%%%w%F%%%%%%%%~%%%%%%%%%.%%%%{%t%%%"%%%%%%+%%%%m%%%%%%%%t%`%%%%%%{%%%%%%%%%@%%%%J%,%,%%T%%^%%%%5%{%%%%%%%%%%%%q%%%~%%%%%%%%M%%%%%%h%%%%%D%]%%%%%%(%]%%%%%%w%%%c%%%%%%%%}%^%%%%%%%R%O%%%%%$%G%%%%%%3%N%%c%%%%%k%%%%%%%%_%%%%%%(%%~%%%%%%%%%%%	%%%%]%;%u%%%%%%%%%:%;%%=%%%9%%%%O%Q%l%% %/%%%O%D%%%#%D%%f%%%%F%%%%=%l%%%#%%%%%}%%H%%%%%%%%% %"%%>%%,%t%%%%%%%%%6%%%%%I%%K%}%;%?%%% %%%%p%%%;%C%%%~%
%"%%%%3%%%%%%%Q%%v%}%%M%^%>%D%:%%=%%e%%%%%%S%%%%r%R%%%%%<%1%w%(%%%%%%%%%%%%%b%%M%%%%%Z%F%$%%b%%R%%k%}%G%(%%%6%Q%%W%%%%S%%%%%>%]%]%%%%2%%%%%%%%%%d%}%
%%2%%%%%g%%%3%%r%%%%w%%%%\%%%%%%p%%%%?%%%}%%%{%%%n%%m%%%%%I%%%:%v%%%t%h%%%[%%S%%%%%%(%%%D%T%R%R%F%%%,%_%A%d% %R%%%}%%%%%%%%7%%%0%%%%%%6%^%%x%3%v%%c%%%%%'%5%%%k%%%%%.%/%*%%%%%%%%%%%z%%%%%%%%l%%%%%%%%%%G%%%%%%r%~%%%%%%%%%L%%l%G%%v%%p%%%%U%%%N%%]%%%%%%%%7%7%%%	%%%%G%%_%%q%%%m%%%%%%6%%%C%%%%:%x%u%o%%%%%%w%%%;%+%%I%/%%U%q%%%%G%%%%%I%%D%%%.%%%%}%R%%i%"%
%%%(%%%V%%#%%l%%%%%g%%h%%%O%%'%"%%%%%%%J%%%%.%|%3%W%G%%%%%%}%%%w%e%%"%%%)%L%%%%%%D%%]%%%%%%%%%%H%1%q%%$%S%%-%~%L%%%%%%%S%%
%%%%%%%%%@%%q%D%D%%#%%%%>%%%%%%3%2%b%%%%%%%%%r%%%V%%%y%%%%%%z%8%[%%7%%P%%n%D%t%%%%%%K%7%%%%K%%%%%%_%c%I%U%U%%c%%%P%%%%%%%%%}%%%|%%t%j%%%=%%%%Y%_%'%%%%]%%%%%l%7%m%%%o%N%_%#%%7%%%
%%u%%%%]%%%m%%%7%N%G%%U%%%'%%%%%%%_%%%%~%%X%8%%]%L%}%/%b%%	%%V%/%z%A%%4%$%%`%%%%%%%%=%%%%0%%o%%T%%%%%q%c%?%%%;%9%8%l%%%%
%]%i%%%%%%%%%%}%$%%%%X%%%"%%$%x%g%%%%%/%/%&%"%"%%%;%"%%W%%`%%T%%%u%}%%%%%%%_%G%I%%%%%%%%%%)%n%%%W%>%x%%%"%%%%k%%%#%a%%%%%%%%%-%q%%%b%%%%%m%+%%%%%%c%%%}%d%%+%%%}%4%%%%A%%% %%e%%%j%%%%K%%%
%%%%%%e%K%%%%<%_%%%I%D%T%r%%%%$%%W%]%^%\%%%%%y%O%u%%:%b%%%D%D%T%q%%%%S%-%%%%%%%>% %%s%%!%%,%%%0%$%@%z%%E%%8%Q%%%`%t%w%%x%%%|%%%%p%%V%%%%%{%%%%%%%%%_%4%>%N%d%%J%%\%%%%k%%*%\%o%%%O%/%-%%t%[%%|%%h%%c%N%%%%%%j%5%%%E%%7%%q%m%%V%%%%%K%%%%%%%%%)%%}%b%`%%e%%%^%[%%c%"%%%?%%4%%%%@%%%%b%%%%%%%%z%%/%f%%a%I%%6%%%M%?%%%%]%%%%d%%z%%l%~%*%%%%%o%%V%%%%r%I%Y%=%o%%@%+%P%%3%h%-%%(%&%R%%%%%A%T%#%%C%%/%4%%:%%&%%%>%%=%A%-%5%R%N%%%%V%%%|%?%%%%%8%%Z%%%%%~%L%"%b%?%%Z%%%%%%%%*%0%%%%%z%S%%u%I%%=%%U%%%'%%%%<%%%K%Z%%%T%^%%%O%%%%%%
%l%s%6%%%%l%A%%y%%%%l%4%%(%%%%%%m%%%%%6%%%1%m%w%S%%%W%%6%%%%%l%%E%7%e%%%%%%%%D%M%%%%>%%%%k%%h%5%Q%%n%T%%%%%%	%%R%Q%S%j%%Z%m%0%%%O%%%%G%%)%%%%%%%U%%%%%l%L%%%(%%\%%%$%%%%%6%y%`%%h%F%%N%0%%{%K%%J%+%O%y%%%#%%%K%Z%%%(%%%c%O%%%%"%%%_%>%%'%%%	%7%s%%V%%%=%%4%%%%%%J%%b%4%%	%%%%%&%%%P%l%%z%%%%1%%%Q%%Z%+%%h%S%%%h%^%%%s%%%D%]%%%_%%m%7%%Y%%M%x%%%%{%a%"%%V%%%x%%M%%%%%%%%%Z%{%%%%%)%k%%%=%%%%%%L%%b%%c%3%%9%%%(%j%w%/%%8%c%%%%%%%%1%%%%<%%%1%
%%%%%j%%w%&%-%%%%w%%4%s%%+%%%%%%%%k%{%x%%%%I%K%%%a%"%%	%%z%%B%D%%%%D%D%%%%%%=%y%d%%:%%%%%%(%%%B%%1%J%#%%%~%%%W%%%%%%%%X%%%%%-%n%f%%%c%%l%F%%%%4%%T%%/%$%%%]%%_%%l%$%3%g%l%0%e%%%%?%~%%%%f%%%.%%3%%%e%%%%v%%b%M%}%%=%%%%%%%%o%E%%%%Y%%%%w%b%%%%l%3%%%K%Z%%%+%4%%%%%d%#%%%i%%%%%%%%%%%%[%%%%f%%%%%%%=%q%%@%%%%%%%%%%%%%%/%%%x%%%%%%3%e%%%+%%%%%=%%%K%Z%%p%n%%%%%7%v%%%%x%p%%%%%%L%%^%%%/%%%%%h%%?%%5%b%b%%T%%*%%(%z%a%8%e%%t%D%u%n%'%%%%%%}%r%%B% %"%%%h%"%}%E%k%_%%%%%%w%%%%%r%%Y%t%%a%$%%%%%%%&%:%%x%G%%%%%%,%%5%%%3%
%A%k%%%W%P%y%%I%%%%%%%%k%|%%%o%\%%%%%%%>%z%%w%%%	%%'%%%}%%%%0%f%k%%%%D%%j%%%%,%%%%%%%%%%{%%Z%Z%%	%%J%%%n%`%%%%7%%Z%>%%7%%%W%0%%%/%;%&%%
%d%k%%%5%%(%%%%%%]%z%%l%1%%%%%%a%%%0%#%%%%%%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%%)%%%%Q%%%%%%%%%E%%W%%s%%%%%E%%%%5%%%s%%%W%%Y%%m%#%5%%%%x%1%-%%%(%	%9%r%,%%%%7%%M%%%P%y%%%<%%n%J%%%%C%%%/%%V%T%T%Q%%%%%P%%%%%%%%%%B%%%%Z%9%i%%%%l%4%%%i%%%Z%l%%%%%%%%%U%%&%%x%K%%%%3%%y%+%"%I%%1%%"%%9%%%l%p%%1%g%|%% %%%%Q%%w%%%i%Q%%R%u%%%;%%%d%g%%%F%%%(%}%1%k%%^%%%i%%%{%g%T%%E%%%%%V%$%%z%L%%%%;%f%}%%*%%%#%%%%b%%1%%%w%%-%%I%D%%%3%x%%%%J%t%%3%%%6%3%
%%%%%%%)%%%%P%%%%%%2%4%&%%%%%%%s%+%%%%%%%%%%%%G%3%%%m%%c%%%%^%+%,%%%%%Z%%%%M%%*%%V%X%%1%g%%7%%%%%%3%<%9%>%@%%%Z%%%c%%%b%%%%~%/%=%%m%%%%j%%%%i%%%%I%%%%(%%%,%\%%%%%o%%%%%%s%%%
%% %%T%%%w%^%/%%J%%E%D%%%/%%L%%A%%%%%%%%%%%%%%%%v%3%[%%%f%%
%%Y%T%T%%%%%u%%%%%	%F%%u%_%<%o%%%%`%%%%%~%%,%%{%~%%w%%{%5%y%%5%4%%M%%%'%%I%%%)%%%%%%|%%D%D%%]%%%%%%x%)%C%6%}%%'%%%%%%%%%%%k%%!%%%)%%%%
%-%|%%%%;%%%%y%+%%g%%%%%z%%%s%%e%/%%^%(%;%&%T%%#%}%9%'%%Z%% %%%%/%%q%%T%~%@%!%%%%%%%%%w%%%%Y%%%%%w%%%%Y%%%%%+%W%=%%%t%%%
%%%D%%<%%%%%%%%-%&%%(%[%%%%m%%%%%%%6%%%&%%%(%%%%h%%%%%%%%%%%
%'%%%%%	%8%u%<%%%%w%g%%%j%"%:%u%<%%c%%%%%%%%%%}%%V%;%z%%h%%Z%%%%%{%L%%F%%~%F%%%4%v%%%j%%n%%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L%%%%4%}%w%&%Q%f%%/%%%%%1%[%%%%%)%%T%%%_%G%%k%%c%%%%%L%%<%z%%%&%_%F%3%h%%c%%%%%L%%%V%%%~%%M%%5%%%%f%4%%N%%%%%%p%%x%~%s%%%%J%%%3%%Z%-%^%% %&%%%(%.%.%%%%%%X%B%%z%f% %%%?%%:%%%%%%z% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelDockExample3.png__ __9210__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%%I%D%A%T%x%%%%{%\%%e%%%%%%x%@%%%% %%%0%y%%%f%	%%%c%%s%%D%%%t%%%%%%>%%g%W%G%%D%%m%%%t%1%4%^%j%$%$%k%F%%%)%%%%x%H%%%.%(%%%%%L%%%%%~%%%%%%p%%f%%%%}%%%%n%%%5%%%%=%%%=%%8%}%"%% %%%%%%%%Q%%~%%%%	%@%%%%%%%%%%3%'%%%:%%%%%%% % %%%V%%%%S%%%s%7%%%%%]%b%h%%%q%%%%%%%5%j%o%$%H%%%s%P%C%%%%%%6%%%%Y%R%%V%%%%%}%%%?%%n%4%i%w%m%%%%:%"%%%3%%r%%d%%}%%%%^%Y%P%v%%%/%%%%4%5%%%:%%%%B%%P%%T%&%%%%;%%%q%%%V%%L%H%%U%;%%%%%%%%[%u%%i%%w%%%o%%%%%%
%%%%[%%%%%%%%)%%!%:%%0%%%%t%%.%v%%%%%w%%%%%%%%%Q%%G%%%4%%K%%%%y%%x%%k%>%5%%%%%^%e%%%%u%%%n%%s%/%%%%%%%%%9%o%%Q%5%%]%%*%%v%%%%U%Y%7%%=%%c%%%%%%G%%%%a%T%%-%l%m%%F%L%p%%%%%%%%%%N%%4%%%%%%U%5%V%z%9%%%%%%o%K%3%&%<%%E%%Y%%j%&%N%%%C%C%%%|%%t%%V%%P%|%9%%%N%g%O%H%(%&%%%%%<%%7%%K%N%%%%%%%%z%%%_%%%%%%%%%&%O%%%%%J%%%E%%n%7%%%% %%%%%%%]%%%%%l%%8%%%%Q%n%%%%%{%%\%[%%k%-%%%%Q%.%%%N%Y%+%'%%%%%%%%%%%%%%%%%%%%^%%K%$%%O%R%%$%:%%%%o%%z%/%%%%%%p%s%J%%%!%i%%%t%6%?%,%%T%%%%%%c%%%5%%%%%0%%f%%`%|%u%%%u%[%%%%%%%%%%%%%%%%%%%%%_%%%%%%-%%%y%%%%h%%%%M%%%%4%%%m%g%%6%%?%%5%%%%%%%}%%%%%%%3%q%%f%%%E%%%%%%\%N%%g%%%%%%^%%V%%%g%%%%%S%%%l%%%F%%2%%%,%%%%%%%%^%%%%~%%4%>%%j%%7%%%[%?%%$%"%*%/%%1%'%%%%%%)%%%%%V%%]%q%<%f%~%%%%%%%%%%%%%l%Y%%%%%%%%%%%%%%^%%%%%%!%%%%%%h%%n%1%s%%%%	%%j%A%%%%%%%%%^%%v%%%%%%m%]%%%%%|%-%%G%9%%%%%y%?%U%]%%%%%%2%%%%o%V%$%|%V%^%%%0%%%e%%%%_%%%%%%%5%s%>%%&%A%W%%%%%n%b%%%%%%%|%%%%%%%]%%%C%%%-%%%s%%(%%%%%%%%t%%D%+%a%o%'%F%%%%c%%%/%^%%%"%o%%%b%%%%%W%%M%u%{%z%%%o%%K%%_%R%B%I%%4%]%%%'%%%%%/%%%%a%%Z%o%%?%%%%$%*%%%}%Z%%%%%%G%%%?%z%%%%-%%e%%5%i%%%%%%V%%%%%%%%%%%y%`%%%\%u%[%%%%;%c%|%5%{%R%%D%l%%%%%%?%%%e%g%%O%%%;%%%Z%c%%%%%z%%%%j%%%8%E%x%g%:%%%%-%%%m%p%%%%:%O%%%%%%%%
%K%%%*%%|%=%k%%%%%%%%%N%%{%%%%i%%%%~%%%{%%%%%%%%/%%%%z%%%%l%%%%%,%%%%%%%w%%%}%%%6%%%%%m%V%%C%%%%%)%g%%%n%%%%%%%%%p%%%]%%F%^%X%%8%+%%%%%%%_%%%%%~%%c%%%%V%%%%v%%%%%%%m%%%o%k%C%%%Z%%v%%6%%%%K%.%%%]%%%>%%%#%%%(%+%%(%%%%:%%%%%!%%%%%%D%t%%%}%%D%%%W%%Y%!%z%%!%"%%%%%w%%%%%%%i%O%%%g%%|%%%\%%%O%%V%%u%%%%%%_%%%!%%2%"%%%%=%%z%%%%%%%v%%%I%Z%%O%{%%{%t%%V%e%%%%6%5%.%0%(%;%%%%s%n%%%%%%%$%%%%%%%D%]%%%/%%2%%;%%%%r%"%%%%%%%k%;%B%%%w%%%%8%%%%%K%%%;%8%%%%|%%%%%'%%%D%f%}%	%%4%%N%%%+%%%%H%%%%%{%o%%%%%k%c%%^%%%%%w%%%%/%p%k%%%%%%%% %%%%%%(%%%i%%%c%%3%U%?%%%%P%%N%D%T%R%R%N%>%%%_%F%%!%%%^%7%%%%%W%%%5%%%P%%%]%[%%n%%%%%%%%%%%%%%%%+%%o%b%i%%%U%%@%%%S%%D%%G%%^%=%6%%%%%%%2%%%p%p%%%K%%%%%4%%%%%%%%~%%%%%4%%%%T%y%%p%%w%%%%%3%%%%%%%c%%%%:%%%%%~%%%%%%%~%%%%%%%_%'%w%%o%%%c%%%N%-%%%%%%%%%%%%%%]%U%w%_%t%w%0%%9%%L%% %%%J%3%^%%W%'%f%%%%%%%%%%L%E%O%"%%%<%%Q%%9%"%%%%%%D%D%%%%>%%%%%%%%%%)%%%%%<%e%E%w%%%U%%%D%n%%2%%%%<%%%%%%;%%[%r%V%}%%%d%%%N%0%%l%%}%%%%D%%c%&%%=%%%%%)%>%J%D%%%G%%%%%%M%D%%%#%%%\%m%%%%%%+%I%%N%|%G%n%Q%1%r%o%"%%g%%%%%%%i%{%%
%%%H%D%%%o%%%\%%y%%%%%;%%%%%%J%[%%%%%%%%%%x%%%j%}%%%%%%%%$%%%S%%%&%%8%%v%i%%%%%m%;%%%[%%%?%[%I%D%o%]%%%%%%%M%%%%m%%#%o%%%$%%%f%%%b%%%	%~%%%#%%%%%#%%%)%%%%E%B%l%%%%%%%!%i%%!%D%D%%%_%%%p%%%%%%%S%%#%7%%%%%<%%%%%%3%%%V%%%%%%%e%%%%%q%%%%%%R%%%%%%%w%%%X%%2%g%!%%%i%%%4%r%G%%%%%%%Q%7%f%%	%%%%%/%J%%%%Z%C%D%%V%%%%%C%_%%%%%%%n%%%;%|%%%%%%o%%%%%.%r%|%%f%%V%%%%W%% %%+%%%%%%%X%%:%%%X%6%	%u%%%o%%%%%Z%%%%%%%}%%%%m%%%%%%%%%%s%f%z%%%%\%%%"%	%%%%%K%%%%>%%%N%/%%%z%%%%%%]%%|%%%^%`%%%%G%O%%%\%`%%%'%%z%%%%%h%%~%%%%%`%t%r%%%%%>%6%-%H%%%%%%%%%%%O%[%%%%%%%%%%%%%%v%%|%s%%%%f%%%%%
%S%%%%%%"%%u%4%%>%\%f%f%%J%%2%i%}%%%%z%l%%%8%%v%%%%W%%z%%%%%_%%%%\%%%%u%5%;%&%%%%%w%c%%%%Z%m%%%%%~%C%%%1%%n%%%%%E%%[%\%(%6%%
%%%%R%%^%%%%%%%%
%%E%%o%%V%%%J%%%%%[%!%%%x%%3%h%M%%(%%R%%%%%9%%%r%A%%t%k%%%j%%%%s%%	%%R%#%%%%{%%J%e%&%>%%l%>%%>%%U%*%%%%%%X%%%N%%%%%%k%%%%R%%&%j%M%Y%*%M%\%%!%%%%%%)%%%%%%%%%%%5%/%%$%)%3%%c%%	%.%W%%%%%%%%%%y%%%r%%{%"%%z%%	%%%%g%S%c%%%%y%V%V%|%%C%#%%%%%%%%.%~%8%%z%%%%M%2%E%%y%v%%$%%%$%U%%)%%c%%%%r%%%%%T%e%R%%F%E%S%%%&%L%%X%%.%0%%%i%?%%V%%<%%%W%$%.%%%'%%%%	%z%K%%]%%!%%T%%%+%{%%4%%0%#%%%L%<%%%a%%%&%V%%%S%%%^%%1%4%m%%O%%q%)%%^%8%B%$%%&%%%U%%%%%%Q%%%%%%%%O%% %%%%%u%T%e%%%%%%%%%%%%>%%%%%3%%%4%%%%%4%i%%i%%f%2%%%j%U%$%%%!%S%P%%%%%p%%%%L%%%:%%%%^%%%%F%D%D%c%%%%%%E%k%%$%.%%%#%D%D%c%%%%%%%%%%%|%%%%5%j%r%%%u%D%%%%V%D%1%%%%%%%%%%a%%%%Z%l%b%%#%%%%%%q%"%%%%Z%%%b%%c%%%%%%%%%%%%~%%%[%%]%0%b%
%%C%#%%%%M%%%%m%%%%K%%D%%%%%J%%k%%8%%;%%i%%%%%%'%%%o%%%K%%%%S%%
%%%%%k%%%q%1%%%%%7%{%j%{%%%%%J%%6%h%%"%O%%%%%%%%4%i%R%=%%%u%%<%%R%%%%W%%E%{%}%%%4%h%<%M%%I%%k%%?%%5%h%|%%%%"%%(%f%~%%%-%-%%%%z%x%%%%%_%%%%%	%"%%%%*%%G%%%%M%%%%%v%%%%?%'%%L%%%%1%%%%%u%%8% %%%D%%%7%%%%%&%%%G%%q%%%%p%%%B%%o%\%k%?%z%%%}%%%%%%C%%%6%%8%%%%X%%2%%%R%Y%%%%%%%%%(%\%`%X%%B%%%%%/%`%^%%'%%%;%%%_%v%%%%_%%%%6%%%%%%]%%n%%%%%%%%c%b%%%%%%%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%a%%%%%%%(%?%'%%%?%S%S%%%%%%%%%m%j%I%%}%Q%%c%I%%%~%+%%%%m%%%h%%%%_%}%%%<%%O%%%%%!%%%%V%%%U%%%z%a%%0%%%%4%%/%<%%%%$%)%{%%|%%%%%%%%%%J%y%+%"%)%%%%%%0%%"%k%9%D%#%%v%%%%G%%	%!%%%E%U%%*%.%%F%M%M%)%-%%t%%%%%y%%%%o%%~%1%c%%Z%%%%S%%%%%%%%=%%%%%%%%%%%%*%I%%?%%%_%Q%%%m%%%e%}%%%X%%%W%%d%%%%%%%N%9%k%%0%%%%%%|%%%,%C%?%%%%K%%%%%%?%%4%%%%/%>%%&%%l%_%%%g%r%a%e%a%a%z%%%o%V%?%%n%&%E%a%e%a%a%z%%%%%g%%!%%%%%%%6%%%i%2%,%?%%Z%%%%r%%%J%%%%%%%%N%%N%Y%%<%X%%L%%%.%%%%%$%%%C%%%%/%%%%%{%%%u%%%9%W%%%%%%%%%X%%%%E%E%U%
%%%%/%%%%%%%%%%%%%'%`%%%%X%O%%%.%%%%y%%&%j%2%)%k%2%%f%%%%%%Q%V%%%%|%-%%)%%%%?%O%%$%)%[%%%9%_%%%%d%s%d%%%%%V%%%%%%%v%%%2%%%%%%%%%%y%%%%%_%F%'%W%%	%A%%%%%%%)%%%B%%F%%%%%%%[%%%a%3%(%s%K%%n%Y%%%%%C%%M%[%%%%a%r%g%%V%a%%B%R%[%%!%4%M%%%X%%%%%r%%%#%"%
%Y%}%"%)%%%%%%%%%^%%%%%%'%%%%{%%J%%%%%9%%o%%%%u%G%%%m%%%~%f%f%%%%%%J%e%l%l%,%&%%\%%'%V%%m%f%f%f%%%% %h%%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%%%%%%{%%%6%%P%%%%X%%1%%%B%%h%%q%<%	%0%%%e% %%%%%7%%0%%%%X%%2%%%R%%l%%q%<%	%0%%%U%#%%)%/%%=%s%2%%Z%C%a%%%%%%%%0%a%K%D%%%%%%%@%C%	%%%%%%%z%L%%%%r%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelDockExample4.png__ __5962__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %p% % %%%%% % % %/%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%Y%I%D%A%T%x%%%%%P%%u%%%%%w%Y%P%~%%%?%%%!%l%%F%%%g%p%S%-%%e%%y%Y%z%"%&%%%F%Z%W%%P%%%]%n%T%%%%Q%%w%*%%%f%%%0%%q%2%%%%%9%%%%%%%%%%"%%%%%%%%%%%%%%%e%%^%%*%%~%%%|%w%%%%%%%%%%%_%Q%%%% %%%j%%%j%"%z%%%d%o%%%/%%%%%%"%%|%%%%%^%%L%%%%% %%%%%%G%f%l%%%^%|%%%%?%~%%%%%%M%%%%%%8%%^%4%%%'%%%%%%%5%%%%%%h%%%%%%!%
%A%%%%=%f%%%%%}%W%%%%%^%%P%g%%%7%%%%u%:%%%`%p%k%%%%%w%%Y%%%%%%%/%0%h%T%D%%s%%?%7%]%%}%%%Y%%7%D%q%%%%%%%{%%%d%+%;%W%%J%%4%%%%%%%%%%%>%2%p%u%%%%%7%]%%%%%%R%:%{%%7%>%%%%%G%%%%0%u%%h%%%w%%%z%@%%P%z%r%X%%%%&%%u%%%%%%u%%%%%%s%_%:%%#%v%%%%%%&%%%w%%%%%%%%%O%%%%%%F%%%%J%%%%I%%}%%C%%%!%%%%%%%g%%%%|%Z%%%7%R%%%7%=%%%%%%%%%	%%%\%%V%%I%)%%I%)%%%%%$%%A%%%%*%L%3%2%%%%%%%o%%%%k%M%!%A%%o%%*%%%%%%%%A%%%^%%%%%%%%%%%%'%%?%%%%%"%[%%>%%%%/%%%W%%%%%i%%%x%%%%%0%"%%X%%%%%%%a%z%%%%%f%%%(%%%%%%%y%6%%%%%c%%%%z%`%%o%s%%%%%a%%%%@%%%N%%%%%/%=%9%$%%%%%%0%2%%%z%%%*%%%f%%Z%3%~%%%%/%%%%%%'%%%%e%_%%%%%{%%2%%%%%.%%%%% %{%D%%_%p%%f%%%%%%~%%%%%%%%k%%%%%F%>%t%%%%%]%%%%%0% %@%E%%D%>%R%%@%%%C%%%%6%%%%%%%%%%%%%%%%%M%%%%%%%%%S%B%%%%%r%-%Q%%{%G%%%%%i%?%%%S%%%%%%=%%%%%~%%S%7%_%%%o%]%<%q%,%%%w%a%%%C%%}%%%$%%$%%$%%%i%d%%%Q%!%%%7%%%g%>%%%%%%%Z%V%E%D%%%%%?%%%%%%p%%%%%%%%%y%%%u%%%e%%9%%%%%U%G%/%/%%%%%Y%7%%%%N%%%%%	%%%%5%%w%% %%%f%i%Q%q%%%%%f%%%=%7%<%%d%%U%'%{%%?%%>%7%C%c%%9%%G%%o%%_%M%%o%<%Y%%[%%%5%%%%%%O%%%6%B%}%%r%%%A%%8%%%%%%v%%B%%%%:%%%%%%+%%%%&%%%%%%%C%%%%%~%%C%|%%%%%/%%%%%%%>%%p%y%z%%%A%%%%|%%-%Z%^%:%%%I%%%g%%k%%%%%%s%T%%%%%%:%%s%%%%%%%c%W%o%i%%%%%!%%2%-%%%%\%S%%%%%%J%%%%%%%M%%%%%3%%l%%%%%L%%/%v%%R%%y%%e%%%%%%%%!%U%%%%/%%%W%W%%%7%l%%%/%%%%]%r%k%>%z%%
%z%%A%%%t%m%o%%%)%)%%%%%%j%%%%%%%}%%w%%%%%o%{%%%{%%%%K%%%r%%l%%%%T%%8%{%%%m%:%%%W%%%%V%%\%
%Z%{%%%%%%%%%%%%,%
%A%%%f%O%%	%%]%%%o%%%%6%%M%%{%%
%%%m%%%%%%%%2%/%\%%%W%%o%%%%%%%P%%%%%8%(%X%%A%%%%%Q%%%k%%%\%b%%%%%K%%%%%%%K%(%B%%%d%%%%%%n%%%.%%t%%%6%l%%	%C%%8%P%%%%%w%%%%%%_%%d%%%P%/%%%%,%<%%[%w%%%%%%%+%%[%'%%$%%c%_%%%%S%>%:%a%%%%5%l%%%8%%%%%%%%o%%k%;%%%%%%%%=%%e%%%H%%b%%>%=%%%%%%%%[%>%%e%z%Q%Q%%%%e%6%9%I%)%s%-%%%%%%%%%%%%%6%q%%f%H%_%W%R%)%?%%:%J%q%%%%%%^%l%%_%%h%[%M%g%%%%%%%%%%c%]%%%W%%5%%%b%%%i%%U%S%%%%%%%%%O%D%D%%%%^%%%M%+%?%%_%%)%%!%"%%%m%%%%H%%0%%%(%6%Z%W%e%%%p%%%#%%%%%%^%%!%%%%%(%[%%%2%%%%%.%~%%w%%%%%*%*%%b%%N%%%6%l%%%%%%{%%%%%0%%>%%%%T%%>%r%e%g%%%[%u%%%%X%%M%a%%%%
%%%%8%y%W%%%=%S%%%%%%%%%]%%B%%'%%%%%%%%%$%I%$%%%%%-%T%z%<%L%;%%%%V%%^%%$%Q%%%%%%g%V%%%%%%%8%%z%%%%%%%z%%w%%%%%%%%%N%%%%&%%%t%*%%(%}%%%%_%|%c%U%%%%%.%B%z%%%%S%U%v%|%%%#%%%%%.%B%r%%"%{%%%%*%+%%|%8%Y%%%%_%=%%%%%%%%%%%%%)%%)%%%%o%%%%8%%%%%z%%%%%%3%%%%>%%N%'%%G%%G%%%%%%0%t%%%%%%%p%%%%%]%A%9%(%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%%%%-%Y%%%%-%?%i%%V%%%%8%%"%k%%U%%%%{%%"%%
%%Z%%e%%A%%%%%%%%%+%7%5%%%M%%%g%J%S%%%%%l%%%%-%%%%%%%	%%%%&%%%r%y%%%%%%%>%z%%%%|%%S%)%%$%%[%%Z%%c%]%A%V%%7%%%%%%%%9%%Y%y%%%%y%[%%B%X%%%%I%%U%P%G%%d%_%%l%%%4%%J%%i%^%%%%I%R%%%%%%%%x%%%<%%%%%%%%%%%I%%1%*%=%.%I%1%3%?%%%j%%%7%%,%%%%%%%m%}%w%%%m%%F%%i%w%%%7%[%^%+%6%%%%h%2%%%%%W%q%%%q%p%%%Q%%f%F%%%%%%%S%%%%
%%&%c%%S%)%%$%I%%%%%%%%%%D%%%%%i%%%%%%B%%%%i%>%%+%%M%%$%%%%%%S%%c%%%%%%%}%%%e%%%%%%%%Q%%%I%%%j%+%+%5%%%/%%%%%&%+%9%}%%%%h%7%%%%B%%%%%O%%E%9%%%%n%%%j%Z%`%%B%M%"%R%{%%	%%9%%%%y%1%{%[%c%%$%Q%%%%%%%%5%%}%5%[%K%D%D%%q%	%%%%%%l%%%%%%%%%%%%%%%L%%%%%J%%%%%%g%8%%5%%H%d%%%%o%j%%W%n%N%%%%%%%%A%%%9%%%s%:%%%%%%%%%%%%%%%;%%%%%%%%v%W%%%%%%%;%%%%%%%%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%%%%%%q%P%0%%
%%A%%8%(%%%%%%`%j%%{%%%K%%J%=%<%%%A%!%%N%%%%8%%%%%%%%%%0%%%%%z%%%%%%3%%%%%%%%%%{%k%(%}%%%%%%%(%7%7%%%%%;%$%~%%%%?%%%%r%%<%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelHelpExample.png__ __8826__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%1%f%%%% % %%%I%D%A%T%x%%%%y%\%T%%%%%%%%7%%A%6%%%p%W%%%%~%%%%^%Q%% %%%%u%%F%%%y%%%j%%%%%O%-%5%%%%k%%%%%?%o%%%%M%%%%%%\%A%%%%%J%+%%%%%%% %3%0%%%%%|%%%%%%%%~%%%f%%%%%%%%%%%%%%=%%%%z%x%%4%%H% %j%.%&%&%%%L%%%%]%:%%%%%%-%%%% %@%%0%%%%z%X%\%%%F%%(%%%%]%%%%[%M%%%%%%%]%%	%%F%%%%%%/%%d%%%%%%%S%/%%%5%?%%T%%%%w%%%%%%%8%%%#%%%5%%)%W%%%{%%%%E%%%%r%%%V%O%%%%f%L%o%K%%W%%%%J%%%Z%%%%%@%%n%E%%%%j%%l%%%%%%S%%%%%%%?%%%%%%%E%g%%%%{%%%%%%%%J%%%%%%m%%%%%%%%%-%C%%%^%u%%%%%%%n%%e%t%%%,%%%%%x%/%!%%&%%%%%%g%I%%i%%<%U%X%%#%%c%%^%%%~%U%%g%3%%J%%%%%b%%%%%%{%%%L%%%%%%%v%f%{%%%W%%%%%%%%%}%%s%%k%+%2%%%%%%e%%?%%%%%{%g%%%u%H%}%%%3%%%%%%%i%%%%e%%%%%%%u%~%~%1%%%%+%%%%v%P%%t%%%r%P%[%J%%5%%p%>%%%%%%p%%%H%%%%%%%%d%%%%%%R%%]%%%;%%j%=%%%%~%%h%%^%q%I%E%U%%l%%3%%%o%%}%^%z%%3%	%%%%"%%%%%4%%%%!%)%%^%%%%%%%%%(%%%|%%%a%%&%%%%k%%%%%O%W%s%%%%%%_%M%%%%{%T%%%N%,%%%%^%/%%%%%%k%%~%%|%%%%%%3%%J%%%5%[%y%x%%z%x%%%7%7%%c%%<%e%a%d%d%%%K%%%%%%W%%Z%%t%~%%o%e%f%%%c%%%%%m%n%%%%%%%%%%%%U%%%%%%%%%%6%%Y%%G%'%%%%J%%%%%%%%e%7%-%%%&%e%.%%V%%r%%%%#%%w%_%%%c%_%J%%%%%g%%%%%%'%%%2%N%o%O%%%'%"%%%8%%%%n%-%%%;%i%%%.%%%%}%e%%=%%%%%?%%3%%%%%L%%%%%/%s%%(%d%A%%%%%%%3%%v%%u%[%^%%%%%%#%%G%i%%D%D%]%%%%%.%y%%%:%z%0%r%%%%L%%?%%%T%%%%%x%%%%a%%%`%A%9%%%%%%%%%%%%`%k%%%%c%%%.%%%%%N%%%{%%%<%_%%%%@%y%%Y%m%%%%(%%%%M%w%%%%%%%a%v%%%%%%%%%R%%%A%%%%%%J%~%.%%%t%0%3%[%%%6%v%%%m%%5%%%%%%%%%%%%%%@%{%z%%%%%%%%%%G%%L%%%%%%%%%5%%%%%Y%s%%%M%t%%%%%%I%>%%%|%%%%E%%%%%8%u%%2%3%%%%%E%k%%%)%	%S%a%%R%%%i%%M%;%%J%%^%A%%%t%{%%k%%%%%%%%%%%%%u%%/%z%!%%Y%%q%%%%G%O%%%%P%%%%%=%v%Q%%%%K%%0%%%%:%`%%%Q%%O%%%%n%%%%a%A%'%%%F%%n%%%	%c%%%>%%%-%G%%N%|%%%%%%%%%%%p%%%%{%%(%%%%'%%%!%%D%%%k%%[%%%%%%%%%%%=%h%D%%%%E%_%%%%%3%%%%%t%%9%%%r%%%Y%z%%%%%%%p%%r%r% %%%%%%*%%%%%%B%%%%%%%%%%%*%w%%%%%%%%]%F%%%%%%%%w%%%t%%%f%%}%%%%%%%%%%%%&%%g%/%%%b%%%y%y%T%%%%%%%%%%%|%c%%%%%%%%>%%a%^%%%x%\%v%%%%-%%s%D%%%%%%%%%%_%%%%%q%%%%D%D%%$%%V%%K%~% %%\%%%%%d%%%%%%/%E%%%%%4%%%e%e%%5%%%%%:%R%v%%%%}%%%?%L%[%J%%?%1%%%%%%K%%?%n%^%i%_%%%%U%+%%V%F%%%%X%%%4%%j%%:%%~%%%%d%%%%%z%%%%%%%%K%%%%%'%z%%u%%%N%{%%%%<%%%g%%%%I%F%z%%Y%%%/%%l%%%%%%+%%%%`%%%%8%%%8%;%%2%%%%^%%)%9%%%|%%%%w%%%%%%%%j%j%O%D%%%%%%%I%%%{%%%%%%%M%9%%%%%%a%o%%%#%J%[%%%%]%%n%%%%%%n%D%D%7%%G%%%X%%	%%%%K%%%%%g%^%%}%"%%%F%%%%%D%%%%E%%%\%%%%%%%S%n%%;%%/%%%%%%.%#%"%j%%n%e%C%D%%%%%*%Y%%%e%s%z%%c%%%%%%%Z%%%%%M%%%%%%%%i%%%%%%5%%%%%%%&%%1%i%%%h%%4%*%%#%%%+%I%%%L%%8%}%q%%3%s%%%%%%%;%%<%o%o%%%%%%%% %%%%h%i%%%%%0%%f%%%Z%%/%%%%%Y%Y%%%%9%%9%%%%*%%&%%%y%%%%%l%%v%`%%%%%	%_%4%{%%7%%%%/%%|%=%}%%%%%%%i%%%3%N%G%%%%z%k%%%H%E%%%%%}%%%%i%%l%%k%%%X%%%%%%%%Z%%%<%%?%'%f%%)%%7%%%%%U%%%%Y%Y%s%%%%%%%%%Y%Y%s%%%%M%%6%/%%%%u%-%%n%@%%%%%%%%%%%%%%I%?%%%%%%%[%_%o%%x%4%%%%%%U%%g%%f%%%F%%%%%=%%%%%%%%4%%%%%%%%}%t%]%%%%l%"%r%%=%%%%%'%%
%%C%?%%%%%)%%%%k%%%%m%%u%q%.%y%>%%d%%%%%%%%%	%%%w%~%%%%%%%%8%%s%%%%%%m%%%%%%T%?%%%%t%%%z%{%w% %%%%%D%%%O%)%D%4%h%%%7%%%%q%:%%\%%%%%A%%%\%%4%%%%N%6%z%V%"%"%%%9%%D%d%%%^%%%%=%%%<%%%"%%^%%<%%Z%%%%9%%%%(%%|%%%%6%2%z%r%%X%~%*%%%%%[%%Y%%%%%%>%T%f%b%-%%%%o%%%j%l%%%f%%%Y%%w%1%%y%%%%%%%%%%T%%%B%%%_%%%%%%%%%%%%X%"%%%%b%%%%%%y%[%+%c%%%F%%[%%%\%%#%%%%%E%%2%%6%-%L%K%^%%v%$%l%y%%c%%K%%7%%%*%^%%%g%%%%a%%%%[%%%%%D%D%%`%%%D%%%%%%%%%q%$%n%%%%%%%%%1%*%%%%%}%%%%%%%%%%%%%%%6%%%%	%%%%%K%%%%%8%%_%#%J%%%e%&%%%%%%%%%%{%%(%%%%%%%%%%'%q%l%%S%%%%%%m%%G%D%%%%%?%X%E%%%%%%%%'%%%H%9%%%;%%%%%T%%m%_%%%%%>%%%~%%%%%}%%%*%%h%%%%%%N%%'%%%%%0%%%%%%%%{%%\%%%%%>%r%z%7%%]%%%W%B%%%(%%%%%%%%6%%%m%%%T%%%i%T%%%%%X%%
%%%%%%%j%F%%W%%n%%(%H%}%&%%%%%%%9%%%%F%j%%z%%'%`%C%%0%%%%%=%<%}%%'%Z%%_%'%*%%%%;%%%)%k%e%F%%$%%%%%%W%%+%%	%%%%Q%s%%(%|%%%%%%%%%%%%m%%%s%%%%%%%%%%:%%%%%%%%K%L%L%T%*%%%Z%_%s%%%%[%%%N%%^%R%%%%%%O%%d%%%%%l%%%%%%%%%%%?%%4%%%%%%%\%q%]%%_%%%4%%:%%%%&%c%^%s%%[%%%x%%%%%Q%%%%%%%%%H%.%%%%%%%J%%A%)%%%h%%%%%O%%%%5%%[%%%2%%%%/%%2%)%%%;%%%%%e%I%D%%%{%%%2%)%%=%p%H%%P%$%%%*%%%%1%
%%"%&%&%%%4%%%%%%
%%%%%%3%U%`%%)%%%%H%Y%J%%%%%%%%%%>%%%*%w%%%%>%%%%%#%%%%O%S%%%7%%%;%%%j%%%j%%,%\%"%W%%G%:%4%%/%S%%%%%%%%C%B%B%%*%I%%%B%B%B%%%%/%w%l%%%%%%M%3%%%%%%^%%%%%%%%$%%&%D%%<%%%%%R%%%%%%%s%%%%%~%%,%N%%%)%%%%%%%%%%R%Z%%%%%%%d%%%(%3%~%H%%%W%%+%%%C%%)%I%%%%%%%%%1%%b%3%%%S%S%%;%)%%%%M%%w%%%%%v%L%9%9%4%E%%%N%d%(%%%L%I%H%%%%F%%%%N%d%(%G%m%L%H%n%b%/%[%%G%%%b%%G%%%%%%g%_%%s%%R%%%%\%y%%%%%%%%U%s%<%V%g%<%%x%e%w%E%#%1%|%%B%%%.%%%[%%y%%%H%%%%U%%%%,%%%%%%%%%%{%%%%o%(%%%%%%E%)%%%%%H%%%B%y%g%%"%"%%%%j%F%:%y%%%%%%%y%%%
%	%	%%%%%~%%%<%4%%%%%!%%;%%%%t%&%%B%T%%
%A%D%%}%%%g%%h%h%%%%%0%t%%D%D%$%\%"%%/%%%%$%.%%%%%%%'%% %{%%%9%%M%Y%%D%%P%E%J%i%%%|%%%%4%j%%4%%%M%%J%%%%%%x%W%D%%Q%%k%%K%%N%S%:%3%g%@%%%%%%S%%&%%%%=%%%U%%%%%`%d%%%%/%N%%.%%+%T%%%%%%R%R%%x%h%%%%%%^%%%%%%%%%%%3%s%%%%%%%{%o%L%H%%H%%%%n%%t%q%i%%w%%%%%%
%%%D%?%$%%%z%%%%%9%%?%%%%a%%8%7%%%/%5%%%w%n%%%%%7%%T%%%T%%]% %D%%%%n%%%%%%%%^%%%%N%%%%C%%8%	%"%%%W%
%r%!%%%]%%d%%4%M%%N%%J%%%q%%c%[%%%0%%|%#%Q%%%Q%t%(%-%M%%%%%0%%w%%%%%!%%%%%%%%D%%%'%"%R%%%H%%%%%%%%%%\%%>%~%%^%%%%%2%B%k%%%w%E%%a%%4%%%%%%%%%%%%>%Z%I%D%D%%M%%o%%%+%q%%%%%%%%%2%
%{%/%%4%_%%9%j%%H%Y%%P%4%%8%%%%i%%%%%%%X%%%%%%k%%%%%:%%m%%%%%%u%%/%%%%%4%%p%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%0%%%h%%%%%~%%%%e%%%%0%G%%%)%+%%%%%G%%{%%%%2%%Q%C%\%M%>%%%%%%%s%%=%%%%%{%%P%b%b%"%%%%	%%"%%%%i%%a% %%%%%%%c%%%%%%?%%%%N%:%5%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelMinimizeExample1.png__ __12390__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%G%%% % % %_%%U%l% % % %%t%I%M%E%%%%%
%"%2%%%%% % %%%I%D%A%T%x%%%%{%\%T%u%%%%%%K%%%%D%%%D%f%%(%M%%%A%%%p%%\%%2%%%I%I%%~%x%%j%7%%P%q%%:%%m%d%%E%%e%Q%H%6%%%%%h%)%r%%%&%% %%]%L%%%%E%f%%%%w%%%%%%%q%`%%%%%%Q%<%%%%%%3%3%%%%{%%=%3%s%%%*%+%%%%%#%	%%%%%%%"%.%%H%%%%%%L%D%%%%%%*%%%%%%%%%% %u%%%y%%%%;%%%%%%K%%j%Z%h%%%{%%K%%%%s%M%/%%%%w%r%%%6%=%%%f%%%%%%%6%%j%~%%%%%'%J%%E%7%%%%%%%%%%%%%%%]%%{%%b%G%%%%%\%%4%%%%%%%%%%~%%%w%%4% %%%E%S%%%%%%(%%%%.%%%%%%n%%E%%%S%%%%8%x%H%x%%f%n%%%%%%%?%=%%%%%G%'%%%%%%w%o%%%%%%%%	%%0%%%%%7%%%p%X%%%y%%%?%W%5%%%%%w%r%%%%>%p%b%]%8%%%%%%`%O%%%%%4%n%%%n%%%=%c%n%%%8%)%%%%G%M%%%%%%%%<%%D%%%%%U%%%%%%&%L%%l%%%%%%%S%%%%%%%%9%#%%%C%%%n%%%%x%%%%%%%%i%h%%%%Q%%y%%%}%s%%%%C%%{%p%%%%%%1%D%%4%%>%%%%%%I%%%=%%l%%%%%&%%%9%Q%1%Z%%%%%%%~%%(%%i%%%%~%%%l%%%%%%Q%#%%{%%%%z%%%%\%%% %%%%e%%{%%%p%p%C%"%%%%z%%_%%%%%E%~%%%%%%%%%%%9%%U%p%%E%%%e%%%%%%%%%C%%%%%%l%.%%%M%B%%%%%%%%%%%%%%'%*%%}%%%%%]%w%%%%%%%U%%>%h%h%%%k%%?%a%%%%%%%%%%N%1%%%f%>%%V%%&%G%N%%%)%o%%%%%%%%/%/%?%%x%%%%%%%%\%=%(%%%%%C%%%%_%%%%%-%C%%%%r%%%%%%%%7%%4%%%%%%c%%%%%%%v%%;%%F%%%5%y%/%N%}%^%%%%t%%%%%0%5%%%%%O%%%%v%Z%%%U%%B%%%N%:%%I%%%%%$%%%%%%7%7%%%*%%%%%q%%O%%%i%Z%%%%%e%%%6%%%%%B%%D%"%%%%k%R%*%%%%D%4%e%%%E%%%%g%%%%%>%%n%z%$%d%f%%d%%S%%%%%)%%l%!%%%7%%%%%%m%[%%%%7%Q%%%~%%%;%%%'%%%%>%%%%%Q%%%G%%%%%%&%w%s%%%%%D%%#%%A%%%%%%%%%%n%L%J%%~%%%%~%%%%%%Q%%%%6%%%%-%	%%%!%%%;%F%%%%d%B%%(%"%%%;%[%%h%A%%;%%F%%%y%%%g%%%}%L%%%_%%1%W%%p%%%{%%%%%%;%%%%3%+%%%%~%1%7%i%\%%c%%%%%<%%%;%g%i%%%)%%%N%x%p%%%%%%%7%n%7%%8%%%%%9%g%%%e%%%%%Z%%U%\%%%[%%(% %z%%/%%4%m%{%%%%%^%K%%%%4%j%%%_%4%%%(%%%%%%%%|%%0%q%%1%%%F%%%U%%0%%%A%#%%%Q%%W%%.%%g%%)%%c%%X%v%%i%%u%3%F%%a%%%%8%%%% %q%%%i%%W%%%3%%%s%%%%%%%%%%%c%{%%%%%%4%b%%%%C%{%%%<%%%u%%%%%%%?%%%%%%%%%%%%%%%%g%%%%%%%%%|%]%=%%%k%%^%%E%?%%%%%_%%u%%%%%%%?%I%R%%{%_%.%^%O%D%V%%A%"%a%%%%%%%%,%%&%*%Q%X%%%%%z%%>%%%%%%%%%%h%D%%f%$%%%%i%%^%%%n%r%%%i%%%'%%%%%g%%5%%%m%%%%%%% %%%%4%%j%o%
%%M%D%Q%?%%%%%%G%%#%j%S%%%%%V%j%%%%%%%%%%g%%Z%%R%%%G%U%%%%%%%A%D%_%%%%u%%K%%"%%%~%%%%%%%%K%%=%%%%%%S%%%%%%%%%_%%p%%%%%%
%?%%p%%%%%|%%%%%%%%%%%"%%D%%%0%h%%0%%%~%%#%%q%o%U%Y%}%%%B%%%m%w%x%A%7%?%%%%%%8%%%%%%%)%%:%Z%%%%%E%%b%%%5%%%/%M%%%_%%(%%%%%%%%e%%~%W%%%%6%%p%k%%%%%{%%%%%%q%%<%%%%%%S%_%n%%%~%v%U%7%%P%%%%%%%%%%c%%%%x%%%%%B%%%}%%%&%%%6%%%q%%S%>%%%%<%%%%%?%%%%U%o%e%%%%3%v%H%%%#%%%%5%`%%P%%%?%
%%%n%%9%%%%%o%%%7%%%Y%S%%%%%%y%%%%%%%4%%N%D%z%%%"%%%
%'%%%,%%h%{%%% %%%%%%%}%%%%M%K%D%%%%!%"%%%%%%%%%%%.%"%"%%i%%%J%%%%
%%%%)%%%%V%%w%%c%%%%%F%G%M%%%%%%%T%U%%%M%%?%z%c%%%*%O%U%%%n%T%$%%%%$%-%%%9%%E%%%t%d%%%%%%%w%%%G%i%%%h%%Q%D%%C%%s%%@%%%%%%%%%%%%%%%%%W%%%Y%%%%{%%%%F%%%%%%3%G%%_%W%y%%t%m%%%%%]%B%'%%k%%M%%w%%%}%%f%&%%%%=%%%%k%C%%%%%%%%`%%%%%%%y%=%%=%y%%%%%%%%%(%%%'%Q%%=%%%w%%%%%I%%%w%%?%%%%%%%%%g%%%%%%D%T%%%%%%%~%%%X%%%/%%%<%w%%}%%%%W%%%m%%X%@%%k%%%D%D%%%%%^%%%%l%%=%M%%%%\%%V%u%D%%%9%w%D%%%o%%%%%S%-%%u%%i%%,%M%.%#%%%G%q%%t%~%%%%%%_%%%`%%%%%%k%>%p%%R%]%%%s%%%%%=%%%W%%_%q%%?%%%%%%%%%%%	%%<%>%%%"%%%%%%% %	%%%n%%X%d%l%%%%=%>%%%%%}%b%%%Q%}%%%/%%%L%%F%U%%k%*%I%8%s%%%q%%#%%%I%%%%%>%/%@%%%%:%%%%%%%%%%%W%d%%%h%g%N%%B%e%E%%%%"%%%%%%%%%%%%6%%%%!%^%%H%8%G%%%%%%%]%%%%%%%*%t%U%o%\%%%0%%%%"%%j%%%%%%%%/%~%%%%;%%%%%x%%h%%%%%%`%%X%%f%s%%%w%_%%%%V%%%{%%%%%%w%%%o%%%}%?%;%r%%o%^%>%%%%6%"%%%%~%%%%%A%{%W%%z%j%%%%%%S%W%%%%]%%%%W%U%%%%9%R%W%	%G%-%w%%.%i%%%%%%}%%(%%%%%%l%%%S%%%8%y%E%]%%%"%%%%%%%(%
%%%%%%%%%%%%%%j%%W%%%%%%%%%E%p%%%%&%%%%%>%~%%%V%%%d%%%%%%%r%%u%x%%% %8%`%%n%p%%#%s%m%% %6%%%*%r%t%% %%#%s%m%L%f%]%%%4%%d%%%H%%%%%%%p%%%%%%$%s%%%/%%%%%[%G%%m%%d%%%%%z%f%g%%%t%%%%%6%%%%%r%f%5%%y%)%%%g%%%%%%{%%%%%$%U%%%@%Q%%%l%%%%C%%%%%%U%%%$%G%%s%%%%u%I%%\%f%c%F%Q%%	%1%%"%=%%q%%c%%%r%%[%%%T%%%% %%%%I%%%%O%%%%%%4%%W%,%%% %"%%%%%%F%%%%%3%%i%%%D%D%%A%N%%D%D%b%%?%%Q%H%%X%%r%%%%%%%%%%%V%U%%%%G%%}%N%%%%%r%_%_%%%t%!%S%%%8%}%>%=%%%%%e%%f%K%{%%M%I%;%%L%L%%%%%8%%#%%%+%C%%?%%Y%5%{%%@%%q%Q%{%/%%%%%(%%e%%l%[%%"%%=%%%%u%%%%%f%%3%D%1%@%%%!%%%%%%A%%%%%%%%%%A%%%V%%%s%%%%V%%%%K%[%%%<%/%m%%%%%+%%%J%%M%C%%%d%%q%%J%(%%g%2%%%%%*%%S%*%%%Q%%%%H%%%%%p%%;%%%"%u%%%%%4%4%%%%%j%%%%N%%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%T%%%%%%%%%6%%,%%s%*%%%%$%%%%%p%J%%{%%;%%%J%S%%%%%%%%D%%%%%%%K%l%%v%{%%%%%b%%I%9%%%%%V%%]%$%I%%O%%%d%u%%%W%%%%%)%~%f%% %H%%%%%%Y%M%^%%%7%%'%v%m%L%%Z%%%%%[%%%%%N%I%r%%-%%%%%%%%'%%%M%%%d%%Z%%%W%I%%%%%G%%%%_%%%u%Y%Q%}%p%%%%%G%%%%%%%J%%%B%%%%%z%}%z%I%v%%J%y%a%%%%k%%%%%9%%z%%%0%l%%%%s%q%%%%z%%%0%>%k%%%L%)%%%%%%%%%s%%S%}%p%%S%j%%P%:%%%Y%%g%F%
%% %L%%%%%s%%%%%%%%%%%%p%%%%%6%%%%%m%(%5%%%'%=%%%%%%%R%l%%%%!%"%"%%%I%%%E%%%%%%%I%%$%%%%f%%%r%%%%%%;%%%%%`%%%%%%%9%%%%@%%K%W%%{%%%^%"%%#%%z%"%"%%%%Y%%%%%%%%0%%%%8%*%%%d%%S%%%:%%y%+%c%% %9%/%%S%%S%T%%%%%4%%%%%%%I%%%$%%;%%%%%%%;%%%d%%m%7%%%U%%%%l%%%%p%,%a%Z%%}%Z%%%%O%%)%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%W%%%%%%%3%%%%@%!%8%Q%%%%%*%%%\%T%T%%%0%@%-%%%3%%L%%% %%P%%%r%%%%p%e%*%%%%j%%%%T%`%%%%U%%%I%%%%%%%%3%%%%%%H%%%%1%%u%M%_%%'%I%%E%1%M%%M%%t%s%%%g%u%8%%%%r%]%%%V%%%?%%%%%%\%%S%o%%%%%f%s%%%%u%%%/%%%%=%%O%%C%:%w%J%%
%%B%D%D%u%9%%<%'%'%%%%6%%%1%%%t%%j%%V%%c%%7%o%%"%"%A%%%%%%c%%%/%%)%@%_%%%%%U%%%$%G%%s%%%%u%I%%\%f%c%F%Q%%<%%e%P%%%=%%u%%%R%%v%%%%%%v%)%I%%%%	%%%%%%%%>%%%o%%4%%X%%Y%A%D%D%%%%%%%%-%O%g%%%%%%%%%%4%%%%0%%"%%% %%%%$%%%%%%%M%[%%%%&%%%%%%%%U%%%%%%%%B%%=%%%%:%%N%%%%%r%%%&%%%%%%%%.%i%%Y%%j%%%%%%%%%%%%o%J%%%%V%%%%%"%%6%%%?%;%%%%%>%%%%%%%=%Y% %%%(%%%%%%%(%%e%%l%[%%"%%=%%J%%%u%%U%%]%%M%%%%%m%%%%%% %L%%%%T%%P%%%D%%Z%%X%Z%%j%% %%%%%%9%%%%e%%8%@%%%+%%%
%E%%%M%%%(%%a%R%%g%%%%(%%%%d%2%%%%%%%%%%.%%%%+%%%J%%M%C%%%d%%q%%J%%%%%%N%%%[%D%Q%L%N%n%}%%T%%%N%~%%%%m%%%%%O%L%%%%%%%%k%%%5%P%%%%T%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%N%r%%%%z%k%%%%%9%%%%X%%J%S%c%w%8%%%%%%%%H%5%y%%M%G%I%-%%%%%a%%%%%H%%^%b%%%%%l%%%%%%L%e%%1%%%U%%Z%%
%%%5%%%
%%%%%%%%%9%%e%=%%%%}%%%%%%?%3%R%%$%%%%%%%&%/%v%%%%%%6%&%X%%	%%%%%%B%%N%%$%9%%%%%V%l%^%%%%e%%%T%%i%,%%%%%4%%%%!%x%j%%%%%J%%%%%%%%%`%%%h%%%:%C%%U%%q%A%%^%%9%]%%O%/%%N%X%)%/%l%_%%q%%%%!%<%%V%o%%%%m%X%%x%.%%"%%V%o%%%%g%%Q%%)%%%%t%%%%%%U%%%%%%%}%J%m%?%%%N%%5%~%f%% %%%4%1%~%%1%%%+%]% %%Q%p%%%%	%W%%-%$%%%i%%%%%%%%%%%%[%%%5%k%%J%%1%%I%%%$%%%8%%%%%%%%%%%%%\%3%%%%%>%F%C%D%D%V%%%:%|%%%%%g%%)%%$%I%*%5%g%%%%%h%%%s%G%%%%%%%%.%%%%j%`%M%0%%%%%%%%H%A%%%%+%%%c%t%/%%%%x%=%%%i%B%%%s%%q%d%y%u%l%%%^%C%%%l%_%%%%%%%%%%1%P%%%%%%|%g%%%%%{%I%%%%%"%%%%%%%%%%%%%%%%%m%%%L%j%%'%y%%1%-%%% %%%^% %%n%%%%%%%%`%c%%%%%%j%8%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%%%%b%%b%%%%%(%%'%%"%%8%@%%%%%%%%b%%%%%B%p%&%%%%%%%
%%Y%N%%%%%L%%%%%[%%_%x%%
%%%%%j%7%8%%%%6%@%%%%f%%u%%K%>%%%G%%%%%:%%/%%%H%i%%m%%%n%%%%%%g%8%q%[%%K%2%%J%%%'%<%%%E%4%%&%%O%\%M%f%s%%%%e%%%%%%%v%d%5%%%)%5%(%l%
%%%%%%j%%%R%,%$%%^%)%%%%%%]%%%%%4%%%%%%8%%M%%%%Q%u%%H%r%d%>%%%%\%%%%e%6%f%%5%N%N%%%%q%%{%%s%%%%%%6%%Z%q%%u%9%%%k%D%%O%%%/%t%T%%%%M%%%b%%f%%%%E%?%^%%6%:%%%<%%%N%#%% %"%%%r%%$%"%%%%%%B%%%J%%%%%o%%0%%7%m%E%%%%%
%;%%%y%%%C%%)%B%%I%%n%%%g%%%%%%%%%%%%%i%%%%'%N%%O%%%%-%d%%%%%%F%S%%%?%%%%%)%9%%%%%%6%%%%j%%=%%%%%%%%%E%V%%%,%%}%\%%%%%~%%y%%%%|%%%H%%%%R%%%%%%%%%%c%C%%6% %%%%%%m%%%%%% %L%%%%T%%P%%%D%%Z%%X%Z%%j%% %%%%%%9%%5%%p%{%%%$%%%*%%%%%%T%m%%%%%%&%E%|%v%%%%%%%M%&%%.%m%A%O%%/%m%%%%X%,%%% %%%%4%%l%K%%%%%%~%=%	%X%%%
%%E%%%%%%g%K%%%%%W%y% %%%_%%%%%%%%%%%a%%6%%P%%%%p%J%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%$%%%X%%%%%g%A%%S%%%%%%%4%5%v%%S%%%%]%=%P%Y%j%%Q%R%%%%%%%%%%H%%^%b%%%%%l%%%%%%L%e%%1%%%U%%Z%%
%%l%S%%%%%%6%[%!%%%s%%%P%}%p%%%g%F%
%%%%%%8%%%%%.%x%%q%b%%%%%5%%%%%U%^%%%%%$%g%%%y%%%%%!%y%%L%%%*%O%%%%%{%%"%S%%I%%.%%S%%%%>%8%k%%A%%%%z%%%	%V%%%%!%x%%%t%%>%%$%;%a%%%%}%%%%s%%%%%[%%%V%%%a%M%%%8%%D%[%%%V%%%%%%4%%%[%%%%%%%H%A%%%%%%%%%%v%B%Q%%%Y%%g%F%
%% %L%%%%%s%%%%%%%%%%%%p%%%"%%%%n%o%%%>%*%%%%%%%%%%%%%%w%%%C%g%T%%P%%%Y%%@%p%M%\%%b%k%%%%%%Y%m%N%%%-%B%%N%%%%L%%$%%%%5%#%4%%%%K%e%%%%%%%%%%	%%%A%%=%%~%%%%X%%%%%y%1%>%%>%R%%(%p%%%x%%%%K%%%$%^%O%D%D%%%0%%%C%%Y%^%%%f%%%%G%%%%%l%~%j%%A%%#%o%e%%%$%g%%G%%"%S%r%%%Z%-%%%%%%%H%U%%%S%u%p%B%%%l%%%%%G%&%5%%%<%%%%d%o%%%p%/%%q%%%%r%W%%%b%%1%{%%%v%%^%8%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%%%%b%%b%%%%%(%%'%%"%%8%@%%%%%%%%b%%%%%B%p%&%%%%%%%-%%%?%7%%%C%%%j%(%%%x%%
%%%%Q%r%r%%%%%%%%%%%%%%%X%%%e%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelMinimizeExample2.png__ __12630__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%G%%% % % %_%%U%l% % % %%t%I%M%E%%%%%
%"%2%%%%% % %%_%I%D%A%T%x%%%%{%\%T%u%%%%%%K%%%T%% %%%%%Q%%V%?%%%%%h%%%e%%%%%%%%%%n%%%%%%%6%2%%%%%(%&%%F%%R%K%%%%%%%k%%%.%&%e%%%"%3%%h%%%%n%%_%%%%%0%%a%%%%%y%?%%%%3%3%%%%{%%=%s%!%F%*%+%-%!% %%%$%%%N%D%7%%%%%#%%+%_%J%J%
%%u%W%%|%v%h%%%%%%h%%%%% %h%K%w%%+%%%%%%%H%%~%%_%%B%%?%=%%~%%%%%k%%y%%%%%%%%%^%%f%;%l%z%8%%%6%%U%%%]%t%%%Q%B%'%%%%%%%%%%%%%%6%%%%%C%%;%"%%%%%|%%]%%%%%%%%%%%o%%%%%A%%%%%m%%W%%e%%b%%%i%%%%%%%%(%%V%%%%\%%%}%"%%u%3%%%%%%%%%%%%%x%%%%_%^%~%a%%%%%%<%Z%%%$%I%%%%%%%w%%%%5%s%T%%%%{%%%%%V%n%%%%%N%%%%%o%%m%7%8%%%%%%%%%p%;%w%%%%%d%%%%x%%%%%%%{%n%%4%%?%%L%%%%%%%%%%%%%%%%]%%%%m%%%%%%{%%I%%%%%%%%%%%%%%L%w%%%%%%%%z%"%r%%%%&%%%}%%%?%t%%%%%%%%%S%%%%%%%%~%Y%%%%%C%%^%%H%%i%"%%%%%%%%>%%}%:%%g%s%%%%%%%%%%%%_%%_%%=%%%%%%%W%%}%%5%~%%J%%%Q%6%%%%%%%'%r%R%%	%w%%%q%]%%%`%%%%%W%%z%%%w%%%%$%8%%"%%%2%%D%_%e%%%v%%%%%P%%|%4%%%.%!%%%q%D%%%%%%a%%%%c%%%>%P%%%%%%%w%w%%%%%U%%%6%}%%%%%%%%%%%c%%m%%%%%%%%%%q%Q%%%E%)%%%%6%%%%%%7%%0%J%%%%s%%%%W%%
%%%v%@%%k%%%%%%%%%o%%a%}%%>%y%%%?%Y%%%)%&%%%9%%|%%%%%b%%V%%z%g%% %e%%2%%%	%%%<%%%%M%%%%%%%%:%%%%%M%%%%%%%"%=%7%%%O%%=%%%2%%%k%%]%}%s%%m%%%%%?%%%%%%u%%k%U%%%%p%%%%+%C%%%%9%%%%t%%%%%%s%+%%%%%s%n%P%%%%/%%%%%+%%%	%%%>%%%%_%m%/%|%J%%[%%%%%3%%%%s%%%%%%%%%%%%%%y%%%i%%d%%%L%x%%%%%%?%t%%Q%;%%%9%%%%n%%%%N%%~%%%%%%%s%%7%&%e%%%%%%?%%x%m%u%%%k%%%%%]%|%K%R%O%%O%/%%%A%%%7%%%:%%%*%%%F%;%%%%%%%%%%a%%%%%>%%%%%%%%r%8%%%=%w%L%Z%%%%O%F%%%9%%%%%1%#%i%d%%}%U%%%N%%%%w%%%%[%S%%%<%%%%%o%&%%%%%%%%%%_%2%%%%%%%{% %3%z%%F%y%%[%o%%%%%%%%^%%%%%%.%{%-%%/%_%%%%+%~%%p%v%%%%_%%%t%%%%%%%%%*%%4%%W%1%%<%w%%%%C%D%%_%%%%%]%%%%x%b%%M%%%%%<%%%%>%}%%I%%%%%%%%%q%%%;%%%%g%%%%%-%%:%%%;%%%w%9%%v%%%%%|%{%%%9%2%%O%d%%|%%%2%%%%%%%%%%%%%%%%%%%L%%Q%c%~%%%%%%+%%_%s%M%%k%%%G%%n%R%%k%%%%%;%%D%%O%B%%%%b%%z%"%%Y%%%I%[%%G%%%-%%g%%7%Q%%%%%<%%%%%%%%A%D%D%%%%D%%%t%%%%%H%w%%%}%w%%%%M%s%N%%%E%%%?%%%%-%m%{%%%%%%%%%O%%s%%%%%a%D%%%%%%%%y%H%?%%f%%%%%%R%%P%e% %%%~%%%%%%%)%%%%T%>%%%%%~%%L%%u%A%%W%%%$%?%%%%%_%0%%g%%v%%%y%%7%%%%7%%%%%%%O%%%%%%+%%%%%%%%g%?%%{%%%%%%%c%p%%%}%%H%$%H%%%z%%%F%]%%-%b%%5%%%%*%N%%Q%%>%%%%/%%%%%~%%>%%%[%Y%%w%%6%%%%5%%%%Z%%+%%e%Y%7%%%%%%%y%s%3%%%%~%?%O%^%%%w%%m%8%h%%%%2%o%%%%%m%m%%%%g%%%Q%%%%t%%%5%%%%.%o%%%%%j%%~%%%%%a%%%Q%=%%%W%>%%%%A%W%{%%%%%%%i%%o%%%%3%e%%%%%%%%%%%%l%%_%r%F%%%6%l%%%A%C%z%%%%w%%G%%%%%7%%U%%]%%%%%%%<%[%%%"%%%%%>%7%%a%?%Y%%%%%(%%B%D%%%#%%%#%%?%%%.%"%%3%%%%%%%O%%%%'%%%K%%%%%%%m%s%~%%{%%A%7%%%%t%%s%%%%0%%m%%%%L%D%%K%%{%n%q%T%%M%D%%%G%O%R%{%%%%%K%%%N%0%>%z%c%%;%%N%%%%a%H%%%%%%z%"%:%s%%%%;%%e%%%B%%%%w%s%%G%%%%%%C%%%%%%m%=%%%O%%%%%%%	%%k%%%o%%X%z%%n%N%X%%%#%%%o%t%%}%%%Z%s%%%y%%%%m%%l%%&%%%Z%%\%%/%%%;%%%%7%%%h%%%~%%%^%%%r%%%%n%%{%%%~%%%%%k%%%%3%%f%%%%%u%O%%%8%A%%%%%%%%e%l%\%N%F%%%%}%%%?%%%%%%%%5%%%%%%*%s%_%%%O%%/%%%%%%%w%Z%f%L%%o%%%%j%%U%%%%%|%m%W%$%%%%%%%%%%-%%r%O%}%a%%%%%%%%$%c%%%%S%g%Y%%%%%T%%m%=%/%%%%S%J%H%%%U%%(%%U%=%%%%"%%%%^%%%%h%%%%<%%T%w%F%%%%%m%%%q%%%u%%8%%%%%%%_%y%F%z%h%%%%%%% %%%%%%|%v%%%[%%%%-%2%"%|%%%^%o%%(%B%F%<%%%%%%%%%!%%'%%%%}%%e%$%%9%%%%%A%%N%%%%R%%%%%%%Y%%%%%%-%%%%\%%+%%%	%%5%%T%%%%%%%%%%%%%%M%>%K%%%%%%%C%%%%t%%%%%%3%%%%%%%%w%U%%%%%%%%%%^%%%%%%p%%G%e%%%%w%g%%%5%;%%%%%%%%%%%%X%%V%%%%%%=%%m%%c%+%%%{%%%%%%w%%%o%v%W%%?%-%%%o%^%>%%%%6%"%%%%~%j%%%%A%K%%&%u%%%%%%G%%>%i%H%%p%%%%[%y%%%/%%H%m%%%%%%=%%%%?%n%%%w%M%%,%w%%%%%%%V%%w%%%%%%%%%%%e%\%%G%Q%	%%?%%%%%Q%p%%%-%%T%%%%%"%_%%%k%Y%%%%%%%%%%]%%%G%%l%%m%J%I%N%N%%~%a%{%%%8%<%\%a%%%%j%1%8%%%Z%%(%%u%%%%%v%%@%8%%V%%f%U%7%~%J%#%%5%3%0%%%%s%%>%%!%%%%%%}%%p%%%%n%a%%%{%%F%?%%%i%4%%&%%u%%N%%%%%A%%%%S%j%p%%x%"%"%%%%Z%W%q%%%%%+%5%1%%%%%%4%!%D%%{%%%D%%-%%%%=%\%r%%*%%\%%,%%%u%%9%%%%	%g%%s%%%%%%{%%%s%f%A%%	%1%%%%n%%%c%%%%%%V%%T%4%%%$%%N%%I%%%%%%%/%%4%%%d%%%%I%%e%%\%%%"%"%%y%|%%%%`%%%t%%*%%t%%%(%&%%E%c%%H%%% %"%
%%%%%.%
%%%}%%R%X%%%%%
%2%^%%%%%@%%%,%U%%%O%%+%%%N%%%%%%%%%%}%%%f%%%n%%%%%u%%Z%%h%|%%%g%b%C%=%W%%%h%[%%%]%%w%a%%k%%6%%-%%l%%8%%%%%%%%%5%%%%%%%m%i%%%%%
%%%%%n%%f%%%%@%i%%%d%%B%%%%%%R%%%%%%%%$%9%P%Z%N%%%%%%l%%%%%%~% %%%m%A%%%%h%K%%%L%|%% %%T%^%4%%m%J%%%%h%%J%p%%%%%% %%%)%%:%%,%%%/%%%%%>%%~%%4%\%%6%%~%%^%}%%;%m%0%%%%%%%
%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%J%%%	%%%8%%@%}%%e%v%%K%%%{%%(%N%%%%%%%%%c%%%4%%%%v%m%{%%%%t%p%D%D%%%"%{%%%Q%k%/%%%%%%%%%X%y%%%6%%%%i%%%%%%%%C%%%y%%%%%%I%%%5%%n%>%%%%%%%%%%%	%6%[%%)%.%c%%%%h%%K%%W%%l%e%j%%%%$%e%%L%[%%%L%%i%%%{%%%r%%%%%}%W%%%%z%X%%%%%g%K%0%%%%%%%S%%M%%~%I%
%%%>%%h%%(%%N%X%%,%l%%%s%o%[%%&%"%%^%c%%%
%_%%%%\%%%d%{%%%%+%~%%n%%%R%%B%%%%%L%%%r%%%%<%%%f%%%%%%%%D%I%%$%M%%%%%s%)%%2%%%%%%%%%p%w%%%%6%%%%%y%(%%%T%'%=%%%%%%%Z%h%%%%#%"%"%%%E%>%_%"%%%%%w%%%!%D%%e%%%% %%A%v%}%>%%%^%%l%	%&%C%%%%%S%%%%I%%%`%i%%%X%%K%d%|%$%%H%D%D%%%p%%t%%"%%%:%"%%v%%i%%%m%%%%%9%&%%%%%9%H%%%K%%%%%M%%'%%-%%v%,%h%~%{%T%R%%#%%%%%I%%Z%%%%%%w%:%%%w%%%,%%%%w%%%K%%%%%%!%%%%p%J%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%%%%%%%B%%B%%%%%%%'%%2%%8%@%#%T%%%%%f%%%h%%J%p%%%%%% %%P%	%%z%%%%p%e%*%%%%d%%%%T%`%%%%U%%%	%g%%%@%I%%%L%-%p%%% %%%%2%6%%%%K%%%%(%%%%m%%%%;%%%%%%I%%%%%>%g%8%y%%v%%%T%%%y%%%]%%%%%8%%%/%%%e%%T%%%%%%%)%g%%%%}%B%%%%S%j%p%%x%"%"%%%%%=%9%	%g%%%%%%%%U%%u%%%%}%%%.%%%$%)%%%%b%%%%%%% %%%%J%(%%&%%-%i%]%p%%%%D%%%%%{%3%%%%^%%%%Y%P%%%6%%%%n%%%c%%%%%%V%%T%%%K%!%%%%%%%%m%%c%%%%r%%%}%2%U%%%6%A%%%%%%%D%D%%%%%%a%%%%%%U%:%% %%Q%L%%%%%%%%@%D%%%,%%%]%%`%{%%%%%~%+%%e%%d%T%%%%%%%%%%%%w%%%%%N%%%,%U%%%O%%+%%%N%%%%%%%%M%%}%%%f%%%n%%%%%u%%Z%%h%|%%%g%b%C%=%W%%%h%%%%3%k%U%%%%%%O%%%%#%%.%%%0%%%Q%%%%Y%6%m%%D%%q%A%n%%%%5%%%%%%%m%i%%%%%*%%Y%%"%%%%Q%%F%%%%%%%%3%e%9%P%%%!%%%%%%F%%%%%%%%%:%I%%%%%%{%%S%%%^%r%%%U%V%%%U%%%.%%%s%%B%*%+%-%%a%l%%g%%%%Q%^%~%a%r%r%2%>%%%%%|%%%%%j%%%%%`%%%%%h%S%
%%8%@%#%%%I%%
%%T%%,%%,%%%4%=%[%%%%%<%%%h%%%|%%%'%%%7%~%{%%%%%%%%%%%S%*%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%M%%'%\%[%%%%%u%%%%.%%/%%%%8%-%n%%K%%%B%%%"%*%s%%%%%V%%%%%%4%%%%%1%%%^%%p%%%%%)%4%%%%%%%>%V%%d%%-%%;%V%%	%%%p%%%%%O%%O%O%+%%%o%%%%4%%%%%)%Q%%$%\%[%%%%%%%%%o%:%O%%X%%`%%%%%%2%6%*%%%%%%p%%%V%&%%%%J%R%&%%%u%i%j%%X%%y%%#%i%"%%I%R%%%%%%'%%%%O%3%4%%%-%%d%%%%%%L%	%6%%%%%)%d%%%%%1%%(%;%a%%%%e%%%%m%%%%%{%%%%+%|%%%%s%%f%%%5%v%%%%%%U%g%J%!%%%%%X%:%G%%_%%%%%<%%%%C%Q%%%%%%D%I%%$%M%%%%%s%)%%2%%%%%%%%%p%7%%B%%%%%/%%%%D%I%%%%l%%%%%y%(%%%T%'%%%%%%%%/%%%%0%%i%%6%B%p%%%%B%[%%p%%%%%%.%%%%!%%`%%%%D%%!%%-%%'%%%%%%p%m%]%d%%/%%%6%%%|%%%%%%L%%%e%1%>%%&%J%%(%h%%%%%%%%%%H%%%%%t%a%%%%%E%d%}%u%D%%%^%%"%*%%2%%%S%s%L%%%e%+%s%%$%\%-%%a%%%%%%%%%r%%%T%i%%9%%%%%%K%%%I%A%%%%%%%%%T%%H%%%a%b%%%V%%%%@%%%%s%%]%e%+%%!%%%%>%%%i%8%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%j%^%~%!%Q%!%%P%@%%T%%%e%%%%%%*%%E%G%G%%%%%B%%%%%%d%%q%%F%%%g%=%%?%%%2%%m%J%i%2%%%U%*%%B%p%%%%%%3%k%e%%$%%]%%%%%K%>%%3%k%e%l%V%%%%%%%%%6%s%_%;%%	%%%%!%%%%%%}%%p%%%%n%a%%%{%%F%?%%%Q%4%%&%%%%.%'%%%J%%u%[%h%V%b%%%%%Y%%Z%w%J%%%%O%D%D%%9%S%%*%N%%%2%{%%&%f%z%%%|%%&%%%%-%%%;%`%%p%y%%T%	%%%d%%%%%%%Y%~%%H%8%%%{%o%%v%%%%%%3%%%&%%L%%%%%%%%J%l%%o%X%%S%%%%%%%%t%2%%%%%%:%^%%%%%%%%%%%	%Z%%%%-%!%"%%%%%%%%%%O%g%%%I%%%%b%%]%4%%%%% %"%%%`%%%%% %%%%,%%%[%%-%% %%%%%b%%%%R%i%%%I%b%%%%%\%p%9%%%%%K%%%%%%%>%%%7%m%%}%q%@%}%%b%_%%%Y%%%[%l% %%F%%%%6%%%~%%%%P%%U%%<%%%%%%%c%%+%%%%%V%%.%%%0%%%Q%%%%Y%6%m%%D%%q%A%n%%%%5%%%%%%%m%i%%%%%*%%%%6%<%%s%%%%%m%% %%%k%K%p%%M%3%g%%r%%4%%C%2%S%%S%%%%)%x%%c%%e%%u%%%(%-%'%%%T%W%%%%%%%%%%x%C%%%%%+%%%%6%%T%V%Z%r%%%%%%%'%%%%%%%d%|%%%%E%%h%%S%%%j%%'%%%J%%E%C%%%%%q%%F%%%%%%N%%%Y%d%Y%N%I%i%z%%T%%%N%y%%%%n%y%%%%O%L%%o%%%%%%i%%%-%P%%%%T%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%N%%%%%%%%.%%s%]%%_%%#%D%q%Z%%V%%%%%%%%$%%%(%i%%%Z%%F%b%M%%G%D%d%%(%%%8%%%%%{%
%M%%%%%1%%%%7%Y%h%%Q%%.%%v%9%%%v%%.%%m%%%%%%%%%O%%%$%%%%W%7%%U%%%%~%%y%b%%%%%-%%%%%Q%Y%X%%%%%%+%w%%2%i%%%V%%2%Y%%%K%S%&%%%b%%%J%Q%%%%%%%!%]%v%4%%%-%%d%%%%%%L%	%6%%%%%)%d%%%%%1%%(%;%a%%%%e%%%%m%%%%%{%%%%+%|%%%%s%%f%%%5%v%%%%%%%O%c%%%%%%t%%I%%%4%%-%%%%%s%J%m%!%%u%.%%-%~%J%%$%I%%D%9%~%%1%%%+%C%%%Q%H%%%%	%w%%-%%%;%%%Z%%%%%%q%%%%A%%P%*%%%N%z%%!%(%l%r%%	%%/%%%%%W%%m%-%%E%%%%%%%%"%%/%%%%%%%K%%%%%%y%r%X%%%%%%u%%g%u%%c%{%%%%w%%%%%%%y%%%%%%!%A%Y%%%%%%$%
%Z%%4%~%`%%%%%2%>%%o%$%"%"%]%X%%m%%i%%Y%_%%%n%%%%%%%%_%%%%%%_%%%%$%	%W%%G%%%R%s%,%%%z%"%"%%S%%%Q%%~%%%%%%%%%%%%o%%J%%u%$%y%%0%1%%Q%%%%Y% %%N%%%%%%%%%s%%%%%P%%p%J%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%%%%%%%B%%B%%%%%%%'%%2%%8%@%#%T%%%%%f%%%h%%J%p%%%%%% %%h%%%%%1%%%%%%%%Z%%W%%%%;%%%%%\%%a%%V%H%x%% %%%%K%%%%%w%%	% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/BoxPanelMinimizeExample3.png__ __10402__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%o%M%% % % %%t%I%M%E%%%%%
%"%2%%%%% % %%%I%D%A%T%x%%%%{%\%%%%%%% %%%%D%%%D%v%E%%%%%%%0%%%j%%y%[%%/%%%/%Y%%%%%%)%%%%(%%%%%I%Z%h%$%%R%$%Q%%%%Q%%%%%&%%*%%%%
%X%%9%Y%%k%%%%%%%%%%%%%_%%%%%g%%y%%?%>%%\%v%X%.%/%7%% %%x%!%b%%=%%%%%%%-%%%/%:%:%%%%%7%%%%4%k%c%%V%%5%w%%%%%%%y%|%%%%%%%%q%v%%%%%%%%8%%%%%%%L%%U%V%%%
%+%%%%%%%%L%+%%%%%%-%%%%%%&%4%%%'%%%}%%%%%|%P%%%:%%V%4%%E%`%3%%%%%%%!%%]%%%%}%%%_%%k%%%A%%%%%j%}%a%%%%J%e%%%/%}%3%%%[%%%2%U%%%9%t%%%%.%%%~%%%%%%%%%_%%%%%%/%%%5%%~%%%%%%%%%8%%%S%%%%%%%%a%F%%N%[%%%n%%%%%u%%%>%%%%?%%9%(%U%%%F%%%%%%%=%W%%%j%%{%D%%%%%7%%%%%%%8%%_%%:%%%%%%%%%%7%%%%%%P%%%%%F%k%U%%%%%;%%%%C%x%%%%7%%%%%\%h%B%%%%
%%%%%%%.%%%%%%%%%%t%#%%%%.%%%%%%+%%%%"%%}%n%%%O%%$%M%%%%7%%%%Z%P%%%%%%>%%%%%%%r%?%%%M%%%w%%R%%%%%%%J%%%?%8%s%%U%%Y%%%j%%%%s%j%z%x%%:%%%%2%f%%k%%%%%t%W%%%%V%%%N%%%%%%%%#%%/%.%%%%%%%%%:%S%y%%U%%%i%N%%%%%%%%%~%%%9%%%%%%K%%J%%%%%%%%%L%W%%%|%]%V%}%%%%%%%%x%v%%%%u%g%6%"%%z%>%%Z%%%%%%% %%n%M%%%r%%8%;%;%W%Y%?%i%{%%%%g%m%%w%%%%%{%%%%%%%%$%%%b%%%s%%%%*%%%%7%N%
%$%%%%%K%%d%%%%X%%%p%H%%q%%0%y%%%m%f%%%%%%%%%%%%%%%w%O%%y%S%%%%%%%q%&%]%%~%%%%%#%%%%%%%%%%%%%%%%%%%%%R%E%%%%%%]%%%u%%;%%%%%n%%%%%%%[%%h%%%%!%%%%%%%^%y%%B%A%%%%I%%%%n%%S%%%Y%j%%%%%%%%I%e%%4%;%%%%:%X%%%%%%%%%%%6%%%%%%%l%%%%%%%%%d%%%%%C%W%1%%	%%%c%W%%%%%%%<%d%]%\%%%C%%>%x%%%%%g%G%{%%N%%%}%%%%%%%	%=%:%%%2%%%'%%%h%%U%*%%%%p%H%%:%%%%%%%%I%%R%%u%%t%3%%%~%:%:%a%%%%%^%%%%+%%%<%%%%%o%%%%%E%%%z%%%m%%%x%%%.%%%]%%v%8%%%%7%Z%%}%%%%%I%%%%%%y%%%%%%%%%<%x%%%%%?%%%b%%%%^%\%%'%%%;%%s%%%g%*%G%7%%%%=%%%%%%9%%%%%E%%%%_%%%%%=%{%t%&%%%[%w%%%%%%W%%W%%=%%%%%%%t%N%}%%%%%%x%%%%%%%%%%%%e%%%%%d%%%%%%%l%K%%%p%%%%u%%%%q%%%%1%d%V%%%%%%%%%%%%?%%p%% %%%%%%K%%%%%%%%%w%
%%u%%%%%%=% %j%%u%%j%7%%%S%%%%?%%%B%%K%%%D%%V%%&%%v%%.%%6%%%%%%(%%L%%%%%%7%%%%%"%"%:%%+%#%%%!%%A%E%D%D%%'%%%x%%%%%*%%J%%%o%%%%)%%j%[%%%%_%%%%]%%Q%E%%*%}%%%%%%%%%%%]%%%H%T%#%a%%%^%_%&%u%%%%E%%%%%%%*%C%*%%%.%%%%%%%%I%t%'%=%%%M%;%%%%e%@%%%%%%W%}%%3%v%o%%%%2%3%=%\%%%%g%_%{%%%%%%%%s%%%%}%%G%%K%%%v%h%%%%%s%g%%%%%%%%%~%%%%u%%h%\%+%%%&%%y%K%=%j%V%%P%%%%~%%L%g%%%%%%%%9%e%%d%%G%{%%>%%%%%%s%%G%%%%%%%%%p%$%%_%%%%%:%l%%%%[%%%%%%%%%%%%%%%%%t%%%%%o%:%%%_%%%%%%%c%%%.%%%,%%%p%;%%p%[%%%%%v%%%x%%f%z%%g%%%!%%$%%%%^%%{%%%%%%&%%%I%%%%M%%%%=%z%%%%%%%%n%%%%%)%%%%%O%w%%%%%c%2%%%z%%>%%u%X%e%=%	%%%D%$%%G%%%% %?%"%%N%%%%%%%4%%m%%R%I%%%4%s%%%%N%f%_%$%"%:%%%%9%%%^%w%%@%D%D%2%%q%%t%%%e%f%%I%%y%%%%%%%9%%%;%D%%+%h%%8%s%%^%%%%K%%:%F%%%%%%%n%%%%%g% %%%%P%)%%%%%%f%%%%~%%%%%|%%%%L%%S%%]%z%%%t%1%%m%%%%%i%%_%%%%%B%d%m%%e%n%%&%H%%%%;%%q%%% %%%%m%%%%x%\%e%%%[%+%%S%%,%%%%%z%%%%%%%>%M% %%%%%g%z%w%%%j%%%%%}%'%%%{%n%d%^%(%%%%%J%%%%%%%%%x%9%N%%%%%q%_%\%
%%K%%%%%8%%%e%%%%}%%%%Q%\%%A%A%D%%%%%%%%L%%m%}%%6%u%%r%%%%K%.%%,%%%U%]%%%%'%%%%%%%%%%%a%%v%?%U%%%%%K%c%%/%r%%<%i%%%%Y%%%?%%%%%%%%!%%x%t%6%q%%%%%%%%%n%%%o%y%%%%b%M%Y%G%W%}%m%%R%%q%Q%w%%%-%0%x%%%%%%8%%]%%E%D%%%%%%X%=%h%%%%%%%%%X%%%S%%=%>%%%%H%%%-%s%M%.%%%%%%%%%%4%%%O%^%%%8%R%%%%<%%J%.%%%%%%%%h%%7%E%%%%R%_%%%%%%%W%%%F%%%_%"%k%%%%%%\%^%n%%%%%%%c%%%}%%{%%=%%;%\%%%m%%%%%%%%%7%%5%%.%m%c%g%%%g%y%S%%%&%_%%%w%%=%%r%%-%%.%%%o%~%7%E%%%%%%o%%%%%j%%=% %%J%%T%*%%T%%x%k%%%k%%7%%%9%%%%w%%%%%%%O%%h%%%%%b%%%%%%%%?%%%<%0%P%%%%%*%%%%%%%%%%g%X%%%M%~%%%%%%%%.%%%%%U%%%%%%[%&%%%%%|%C%%2%e%U%%%]%o%U%%d%Z%%%%%x%4%%b%&%p%%|%%4%%*%%%>%e%a%s%%%u%%%,%]%%%e%U%%%%%%%%%j%i%%%%%%%3%:%*%*%%%%%Q%%8%<%%2%%%0%U%k%%%]%%j%w%%/%%M%N%%%s%%%.%a%u%h%B%q%%C%%A%P%%%G%%%8%%%%+%C%R%%%P%%b%%%%%o%%%E%%%%A%o%%%%%z%%%%%	%%%8%%A%%c%%%%%;%%%%%%&%%%8%F%E%b%%%%%o%2%%f%%j%%%%%%%%%%%1%Z%%%N%Y%$%%%j%%%%.%p%%%S%D%%.%a%%W%3%%%%c%%%"%>%%|%@%%% %%9%%2%%"%a%%t%%%%%j%5%q%%%%%%%%%5%x%t%%%%%%T%d%%N%%r%i%%d%)%%%%%%%%%%%%%%F%%%"%"%
%%%%P%"%%}%%%%%=%%<%%%%%%N%)%3%*%%"%Z%^%@%%%%%%%%;%%,%%L%%%P%%b%%%%%?%Y%%V%%Z%%D%%%Y%%% %l%!%%%%%%V%%%{%%%P%o%%[%A%w%%.%%%%%4%a%%%F%u%%,%%|%%0%%%d%z%m%%%%%%%%%8%%%%p%5%%T%%q%u%	%%%%%x%%w%%%}%K%
%%%%%P%%y%.%y%)%6%o%%%%%%%%4%%%%u%{%h%%&%%%%L%%%%%e%z%k%K%% %&%%4% %S%f%N%%%v%F%%o%%%%3%%%%%b%%%%%%R%%%%<%/%%"%i%S%%%%%w%L%C%%%%%%u%%%%d%%%[%`%>%p%%R%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%%%%&%u%%%%f%'%%%%y%% %%%%%W%/%%%%%l%K%8%%Y%%1%%^%%%&%6%%8%"%"%y%\%%%T%%-%%d%=%%%%e%>%%%+%%%&%%H%%%%!%%%%%%l%=%l%>%p%%%'%%p%%%%%V%%%%&%%%%T%w%%%%%j%u%D%`%X%%%q%b%%%z%A%%'%%%%%%%B%%;%%%%7%%%%%%%%
%B%%g%%3%y%M%Z%x%3%%%#%%%%%%%%9%K%%N%%%%%%%%%5%g%S%%\%%%%%%L%%%%@%b%%x%%z%%$%M%%F%%%%~%U%%X%%%x%M%%F%%%%+%%%%%8%/%E%b%%?%%%y%%%|%%%C%j%%%X%%%%%'%%p%%%%%%%^%%%U%%<%%%%|%%%%%%%%-%%%%%R%%%%^%1%%%A%% %p%%%%%%_%o%	%%%%5%z%%x%%%!%%%%%%%A%8%%%5%%%%U%#%[%>%%%y%o%%%%%%%q%2%<%%4%%%%c%%%p%%P%%{%$%%!%\%N%D%D%%%_%%%%%%%%%%%%%%%%{%%%%%%%%%%%%%%o%%]%h%Q%l%:%p%%%%D%%%%%%%%i%%%%%%N%[%&%%0%N%%%%V%Q%%%D%q%%K%%x%%%%%%%%c%%%%-%%%T%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%8%`%
%%%%%%%%%%%%%%M%%[%`%&%p%<%%%o%%%%3%%%
%
%b%%%%%f%%%%%%%%`%#%%%N%u%%}%3%%u%%%%]%%%%Y%*%0%%%%S%%%N%%%%%v%%%%%%t%]%=%7% %%%V%%&%%W%|%I%% %%%%V%T%%%%g%%%%%+%C%R%%%P%%b%%%%%o%%%E%%%%A%o%%%%M%C%%%%%[%%%%"%%%%%%%%%%%P%'%% %%%%%%#%%%%8%i%%i%%$%%%V%%D%%W%%%%%%%-%%%r%c%%%q%%%%)%%W%%%4%x%%%9%)%%%%U%m%%6%%%N%%%%H%%%%l%%j%%~%%p%%%T%%%%%%%S%%%%c%%e%%%_%%e%u%R%A%m%U%
%%*%5%r%%%y%%%%%%%%%M%P%%4%D%%%%%%_%%%%%I%[%%H%X%#%%N%%%%{%%i%(%%%%n%D%D%%%|%%A%O%n%%C%%%%%k%%-%/% %%%%%A%%C%%%3%%%0%K%%=%%%%;%g%%%L%%%%%8%~%%%O%%%U%d%B%8%%9%n%%m%3%%[%H%%C%%%%%F%%^%}%3%%%%V%%]%%V%@%%%%%%?%%%s%d%%%%%C%K%%,%%%%%%%%%|%Y%d%%%a%%%%%%Z%%%%g%P%%%%h%%%%%%R%%]%%%%%y%%%%U%1%%%=%%d%]%%7%j%%"%%%%%q%%%%2%t%%.%%p%%K%^%%%[%)%%x%w%n%%%)%M%%:%%%%%%%-%% %%n%&%%%B%Y%%6%"%%%r%%%%%?%%&%%%R%R%3%%%%p%k%%%%x%k%%%.%%J%%;%%%%%%%%%%%%%6%%%O%%%%%%%%%P%o%%%%<%%G%G%W%%-%k%}%%!%%%%%4%@%%%3%%%%%i% %%p%% %L%%%%h%B%x%%%%%%%L%%~%%%%r%c%%%%%%[%%G%%%%%D%%J%%%i%P%%%%%%%%Z%%%%4%p%%c%%g%%%u%h%%%4%%'%M%%'%%)%%%%%1%o%%%%%}%h%%%y%%%-%%%2%%r%c%%x%%%%%~%%%Q%$%~%%%%O%%%%%%%#%7%i%%%%%4%%%%%%"%%&%%%{%%%D%d%%%%6%%%%w%%% %-%%%g%%%%%%%%%*%%I%%b%<%m%5%%L%%4%?%<%% %%%%4% %S%%x%%0%%!%%%J%%%i%%C%4%%@%%=%%S%%%%%]%|%%%1%`%%%%%C%*%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%%%%S%%%0%e%%%%%{%%%N%%%%%d%%%/%%%%%%%%%%%8%Q%%%e%o%.%%%%l%[%%F%b%%%%%%<%.%K%S%%%%i%%%%%%%6%%&%%%%j%%u%!%d%o%%%4%%%L%%I%%%Z%6%a%3%l%>%p%%%'%%p%%%%%V%%%%&%%%%T%w%%%%%j%u%D%`%X%%%q%b%%%z%A%%'%%%;%%%%B%%;%%%%7%%%%%%%%r%%1%%u%c%%i%%%9%6%%8%u%D%%%Y%*%u%%%F%%%-%%8%%9%%%%%%%%%e%%%%%%%%%%%%%i%J%5%%4%%%%%%%]%%k%J%5%%%%]%%5%%1%}%%l%%l%%%%E%%p%6%%-%%6%%8%%%Z%K%P%%%k%%%%%8%%%%%%G%%%%%d%%D%D%^%>%%%%%%%%P%%%j%%x%%%%%%%|%%*%%%J%%%%%^%%x%%%%%f%%%f%m%%%W%%%%P%%%%%%%Z%%'%%%%%2%%%%l%A%%%%%]%%}%<%,%U%,%d%o%4%%%%%%%%%%x%%n%y%,%~%%%-%P%G%%%"%%%%%% %%#%%%%%%B%e%%%%%p%9%%%I%|%|%%%%%%%%>%%%%%%S%%%%%^%%%(%s%%%R%x%p%%%%-%p%%1%I%J%'%%%%H%%z%n%b%%M%%%%t%%8%%%%%%5%%%%+%%%3%%1%v%%%L%%a%% %%%%%j%U%%%%%"%%%%*%%]%%R%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%B%%%)%%%%2%%+%W%S%R%3%%2%%7%%l%%%%%<%%%%`%#%%%.%(%(%%y%3%%V%%	%\%T%T%%%v%%%%%%Y%%%%%%i%%%%-%%Y%*%0%e%O%D%%%%%%%%%%N%%%%%%%A%%%%%%h% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/CardPanel.png__ __7076__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%*%%a%
%+%% % %%%I%D%A%T%x%%%%w%\%%%%%%%%@%%%!%x%%!%K%D%d%%D%D%%@%%P%%%%*%%%G%c%4%	%%%:%%%%%I%-%V%M%%%%%%F%c%b%%%|%%%%`%4%N%0%%%%%%%%%%q%%y%%%%%"%%%%%%%%w%%%E%_%%%%D%\%<%w%% %%%%%s%%%%%s%P%S%%%%%%%%%%%%%%%%5%%`% %%K%%%% %x%>%%%_%t%%%%%%%$%%W%%%%%%%f%%%%%%%A%k%#%A%B%b%%F%u%M%l%n%%%%%%%%%%%%%%k%%%o%%%%G%O%%%%%o%7%v%D% %%%#%%%8%%t%%'%%X%|%:%%%%o%/%h%@%%%%%h%m%%%J%%2%9%9%%%%%%%%3%l%E%%%%%H%%%%%%%1%j%%%%2%%%?%%%% %4%w%%^%%H%:%p%%%%o%%R%%%%,%%h%5%`%%%%%R%%%!%%%%3%M%%%%%\%%%%%%%4%%%a%O%%%%%%v%O%%%%e%t%=%s%%%%%%%%%%%%I%o%%%%%%%l%d%l%,%%%(%%y%%f%%%I%U%K%[%9%%%%L%%Y%%w%%%9%s%%%%%%%%u%U%%%C%%%)%9%*%%2%%%%%z%>%g%%%+%%%~%t%%%|%J%%%%%q%M%%%%=%%%%%%%%k%%%h%%%%>%%%%v%%%%%%?%e%%%0%%%p%E%I%%%%%
%%%(%2%2%%%	%%Y%%%r%%%%e%+%k%O%%%B%%y%|%%%w%%%N%Z%%%%%Z%%%%Q%%1%%%%%.%A%;%%=%%%%%%3%%9%%%!%%%5%%%%,%%%%%%%%j%q%C%:%%%S%%%%%%%%%0%%z%o%%3%s%%{%%6%%%%%%%%5%%V%%m%,%%%*%%%%=%%%%E%~%%%%z%%%%6%%%%%%%%8%%&%%%%%N%%%%%N%%%%%y%%g%%>%1%t%%W%>%%%%v%%[%%%C%%%w%}%%%%%%%%m%%%%!%"%%X%%%%%(%s%%%%	%%z%8%%~%;%z%%l%{%,%-%{%%t%%% %%%m%f%%%5%j%s%1%%%%%;%7%@%=%1%%%%7%%%?%%}%F%%%%%|%q%l%}%%=%
%%%%%%%5%{%%%c%%%%%M%%]%>%%%%P%x%%O%G%%%>%%%%%*%%%%%%%%%%%|%"%{%%%k%%%%%:%(%j%'%%%%%O%%$%?%%%%%T%z%%%%B%A%D%%Y%+%%~%%&%"%o%%%%%%g%-%%%z%%%%%V%%%%+%m%%_%%%%%?%y%
%%k%%%%%b%%G%%%%%=%%%%R%y%%%o%)%*%B%n%[%%P%Y%F%%%%%$%m%=%>%%%%%%%%%%%%%%s%%%o%A%D%t%%<%%d%%%=%%+%@%S%%%%%E%t%%l%.%%v%T%%l%%%h%m%-%m%q%%%%%%%%Y%v%-%%%%%5%U%$%L%%%%%#%%%%%r%%D%%%3%%%o%%%%%0%O%%%%;%%%?%f%^%%%%O%%%%%%[%r%%%[%%%r%R%%%y%%%(%r%M%%=%%%%%%6%%%%%%X%[%%k%t%-%%%%	%!%%D%%%y%%%%%%%%f%%%%%%%%%C%;%%%%h%.%%%%%%%%%%s%J%%%%%Y%%%%%%%B%"%l%%.%%%%%k%%%%%%%s%%5%Z%J%t%%%%N%%%%%%m%t%%%%%%M%%y%%;%j%%%%%%%J%n%V%^%%%E%W%%%B%H%%%x%=%"%%?%%r%j%%z%%%%%?%;%%%%%%%%%/%%%%-%%'%/%<%s%f%y%%%%%7%>%%y%L%%%%%%j%%4%S%i%S%|%%b%|%z%%p%o%%%%}%t%@%%%%%%%%(%?%%%%%r%_%S%*%/%J%%%%P%%%%E%B%%!%%z%F%%%%t%%%%J%U%%%%%%%%%/%%%%,%%%%%?%R%%%Z%%>%
%i%%}%%W%%%%%5%1%U%%d%%%%%%%;%%%%%%}%%%%%{%%%%&%%%%g%\%h%[%%%%e%K%%%%z%@%d%$%,%%%%o%%-%v%%(%}%X%S%c%%f%%%%s%!%%%%y%%%S%\%%*%%%%%\%%!%q%%%%C%%%.%%~%,%]%%%%~%%%%%>%%K%B%%%?%e%%%(%%%%8%%%u%j% %%|%%3%f%%%%'%%%%%%%%%%%%%%%%B%%%:%%%%%%%%3%%"%%\%%7%O%"%%%%%%%%!%\%%%q%!%%:%%V%r%%&%%S%%+%g%/%%%%%%%	%T%O%%%X%P%%%%%%%%%%o%%%%%%%%%%%\%%%%
%%t%!%*%%%p%A%%%%H%%%%%o%S%%%%%_%\%;%%%%f%y%%%%%%k%%4%%%#%%%%%%%M%s%%%%%%J%<%%_%%%Y%%%%
%%%r%i%%K%K%A%5%$%$%%%F%x%%%y%%%%T%z%%%%%%%%%%%%%%%K%%%d%%%Q%%%S%%F%%%:%%e%`%B%Q%%%Y%%%%%.%l%%%-%{%%%%%%%c%%%'%%%%%%T%-%%S%%m%%o%%%%%%%%%%%6%%:%%%%%%%%}%g%B%l%G%%%%%%%w%0%%c%%%o%%%%%%%%%%%s%%W%%%%%%%g%i%%^%Y%%%%%%%%%Z%w%%%%%%:%%(%:%%O%%6%-%%%%%%%}%{%x%E%:%%\%S%%%%?%%>%n%n%%%g%0%%/%%%0%k%x%%%%2%%m%r%?%%%%%Q%%%3%'%%%V%V%%%%%%%%.%I%%%K%%%%%%/%%b%%%k%%%%%%%%%%%u%%%[%%%J%W%%%%K%%%%%%%%%%%%%%%%%%%%%%%%P%P%%%%s%%U%%%>%c%F%%%%%{%%%%%%%%%%%%%%h%%%%%%+%%i%k%%{%C%Y%%%D%%`%%J%%%%Y%%%%[%9%%%R%%V%%%D%d%%%%[%%+%%-%%G%D%2%%G%%%%;%%r%%%;%%v%%%$%%%H%%%H%n%%%%%%%%%T%%u%{%%%%%1%n%%%%%%z%%%u%5%%q%%%%*%%%V%%5% %U%U%%%%%%%x%%%B%%%%%O%%%o%%%%w%%%%:%%%%u%%v%s%1%m%m%c%d%l%!%%%R%p%%r%	%%-%+%%%%*%k%e%f%%%%%y%x%%D%%	%%%?%%%%%%j%%7%)%2%%%%%s%%%+%%%%%%=%%)%%1%c%%%%%%%%%%%3%$%&%d%%N%1%l%%%%I%%!%%%N%%%%%g%%%%/%"%{%D%%;%%U%%]%{%%%%%%%%%%$%%%O%^%%!%%%?%%%e%%%M%%%%%^%%%h%%%%)%%k%R%B%6%%
%%%%2%%N%%%%%%>%%v%%S%%%a%}%%%%%%%o%v%%%\%%%?%%%%%%%%%m%%\%x%%%m%%%%Q%%=%G%%%Q%Q%%Y%%%%?%]%%w%%y%%%%%I%]%U%c%.%%%%%%5%X%J%%i%Y%%H%%]%R%x%%%'%%A%%%%u%m%%s%%o%%%%%%%z%%%$%%%%%;%`%C%%0%%%s%%|%;%%%n%%%%'%z%%%%;%%%%%%%#%%%%p%_%%%%u%%%%$%%S%%%%8%%A%#%i%n%%%%q%%%%%%%%K%I%I%I%N%N%~%%%5%7%%%a%)%%%D%%)%%?%S%
%%%%%%%%%b%%%%%%?%~%%%%%%%%y%h%%%t%%%y%%%%%4%%%%%%%%%S%%%%%8%%%6%%J%%%%%1%K%i%3%(%%%y%%^%?%%~%%?%%%j%n%E%G%%x%%%%%:%)%%N%%%T%%%%j%%%%%%%u%R%6%%%w%}%%%U%r%%"%S%%5%%%*%0%%%%	%%%L% %e%`%%%%%n%n%6%%%%%%)%%%%%%O%z%W%%-%%%%.%x%E%%%%m%%s%}%%%%%%%/%%%2%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%%~%;%%%%%%%%%% %4%F%C%)%+%%%%6%%%F%j%(%%%%%/%m%% %%%c%e%`%%)%%%H%%%@%%%D%%%%{%%%M%5%%%F%%^%%%0%&%%%%%%%%@%c%%^%%z%5%%% %%%%%%%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/CombineBoxes.png__ __9006__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%6%%%H%	% % %%K%I%D%A%T%x%%%%{%\%T%u%%%%%%D%%%~%%%%% %%%y%%%%%R%%%m%%a%%%(%%-%7%Y%%%%L%%U%W%{%%%%e%^%%%%%%%%%%\%S%%$%%&%%
%%%%%]%%%1%1%%f%%%%%%`%%%%%%|%%%%%s%%%%;%s%%%B%V%F%
%%<%%%G%-%7%"%"%?%%@%]%%	%@%%E%G%G%%%%%I%v%f%%N%w%%%%%t%%% %%a%%%d%%%%]%\%%@%B%K%%%(%%h%%%l%J%%%%e%U%Z%%	%$%%%%Q%e%%%%%%%%5%$%%I%%%%%%%%~%%%%%%Z%%%%%%%%@%%)%I%%%.%%%^%a%%%%%%;%%%i%h%%@%%%5%%R%%%%b%q%|%|%|%%%%%%x%%%"%[%J%Q%'%R%6%6%%%:%%%1%%f%u%%%'%W%%T%_%%%v%*%~%*%%{%%T%%%%%R%r%%%,%%%%%p%%%'%,%%L%%%%m%%5%%%%M%%e%;%K%:%`%%%/%%%%&%%%%%%%m%(%r%{%~%%%A%%%Y%K%%%%%%9%%p%%_%%o%J%%U%_%^%%%%6%%%%%%%&%%f%%%	%%%%%%%%%%O%<%z%>%2%%%l%%%%%%%%	%%%%9%[%%]%%r%7%;%%&%+%%%%%j%%%%%%%~%%<%n%%%%W%%%~%;%5%v%I%%%v%j%%"%%%%%%%%%Z%O%i%%%%%(%p%%y%%8%G%I%%%%q%%%%%%C%%%%8%;%%%E%%%g%%:%y%%O%%T%%w%%%%%%%v%%%%%%%%;%%}%%%%%%%}%_%%~%%%%%%(%%%v%%e%V%F%%%]%%%%%;%%%%%%`%`%%%%%%K%0%>%{%%G%/%%%%%%"%%%%	%=%%%C%%%%D%%%%%~%[%%%|%9%%%%%%Q%%%%%%%%%%a%/%{%\%t%(%&%%%2%%4%%%=%%n%%U%E%%v%n%D%D%%W%n%%%%%@%D%T%%%6%%L%%l%n%%%o%%%%%%%4%3%"%>%s%%%%Q%%%R%%%%O%%%/%*%%)%v%%v%%%%%%s%%I%%%3%)%u%%'%]%%%%%%/%,%%%%%%%%.%D%T%~%y%%{%%%%^%]%:%%Y%@%%^%%%w%%%%%%%%%%%%%%U%f%-%[%{%%%%%s%%%6%%%%%X%%p%z%I%\%%%%7%%%R%y%%%%%%%%%%%!%"%%%]%%%F%%%%}%S%%%%#%%%%%%E%D%#%%%2%%%a%Z%e%j%j%t%%%%m%%%%%%%%%%v%%7%E%N%%F%%%%%%+%%]%|%%<%b%%_%%L%%^%%%s%%%%%%%%$%%%%%G%d%%%p%%%m%%%j%%%6%D%D%%q%%%%@%s%"%%%%%g%$%U%%%%G%%X%%%U%w%%%%w%%%%G%%%f%%@%%%%%%%%%A%M%%?%{%]%%%,%%%%"%%%%&%%%^%%%%%|%x%%%1%V%%%%x%%%%%%%%%%%H%Z%O%%% %2%%%%%)%.%2%%%%%
%n%%n%%%7%%%%a%O%%%9%%y%%%%r%%%u%x%J%%K%%w%v%%}%4%%H%%%%%%%%^%Z%%i%*%%K%%_%^%m%%%4%y%%%%3%%I%%%%%%%[%%c%%G%%}%%.%%%i%%%%%>%%%%%%6%%%%~%>%"%%(%d%%% %%%s%c%f%%%%%%%%%Z%%%%e%g%k%%a%%{%%Y%%%%6%%%%%%%.%=%%%5%%=%%%%%(%a%%w%_%%P%%%%3%%]%%%%%*%%%-%%%%%l%%%T%%%%%%7%%x%%%z%%%m%%W%%<%%%*%R%.%,%%%%%%%Y%%X%%%!%%~%%%%%s%)%%%[%%\%z%%%%%%%2%%%%%%%%%%%%l%m%%%%%%%%%%%U%%n%%%%r%%%O%%%$%%%%@%%1%%B%-%%%%%%%%%%%b%%k%%%%%q%%D%%%%%%3%%%%<%%%%%%H%d%%%w%%%%%,%%%%%-%%%y%%t%%%z%2%%%%%%8%#%:%&%%W%%%%%%r%%A%C%%%%%%%&%%%%%<%%2%%%%%%%%%%V%%%%%%%%%P%0%%4%%%%%%%%%%%v%%>%O%%G%D%%%%%%%	%9%%F%%%%%%%%U%%%%%%n%%U%%%%%B%	%%m%%W%%*%l%%B%%%*%%O%[%%%U%_%%%%%%W%%%%%%K%y%D%%%?%n%%%#%%p%r%%%%%J%D%i%%%D%%%%%%%%%%%%%%%%%%%%%%%%%%~%%%S% %%%%9%9%%Q%p%%%%%%8%%%%%%%1%h%%%A%T%%%%*%%%%%%%%%%%%%%%%)%%6%%D%%%N%e%%~%%?%t%%%Q%%%%%e%% %%9%%%[%%%K%%%%>%%l%<%%%%6%?%%%%%%%%Z%d%L%%%%l%{%%Z%%%%%%%%%X%%% %%%%V%%%d%%H%%}%J%R%.%%%%d%%B%%%%{%%%%'%%k%%\%%%q%%%%%%E%%%H% %)%	%%%%%%%%%%%4%%%%%)%%%%%%%=%%%%%%x%%%%%%%%%%%%%%)%%(%+%%'%	%%j%%#%%9%%%m%%%z%%%*%%%%s%)%m%%%_%%%%%%8%X%5%[%%%0%%E%%%%%%%%r%}%%%!%%%Q%%1%%-%%8%%%%f%7%%%%%%X%q%%%%%%%%%%%%%W%%%%%%%z%%p%%%%%%%%%C%%s%s%%%'%%%%%%%%%%%%c%o%%%"%%%O%'%%%%%v%%%%%|%%%M%D%%%a%D%4%w%%/%%%%%%u%%%%
%%&%%%%%%Z%%%[%%w%%%%%%%9%%%%!%%%%%%%%D%4%%%/%%%%w%!%%%%%%h%%%%C%%t%%%%3%%y%^%%%;%Q%A%%}%"%r%%%y%%%%%f%%_%%z%%%_%*%%O%%-%%%%%%%m%%%%%%%%T%}%t%G%^%%%L%%%%D%%h%%8%%%^%%%%%%%%%%%%%%~%'%H%%%%%%%%W%W%%%P%%%O%%V%%%V%%% %%%%`%<%%%%%%N%"%%%d%%%%%%[%O%[%k%C%#%3%%i%_%W%%%&%!%%%U%%%%%Y%%2%n%%x%9%e%%%%%%%%%[%"%d%%%%%]%%{%%%%'%f%L%%L%%N%D%E%%b%%%%0%X%%%%%%%%%%%I%%%%R%%%|%%C%%%i%S%'%%q%%%%%%%e%%%%I%%%A%%%}%%%%F%%%%%%"%*%O%8%%%%%%%%M%%%%%)%%$%%N%%%%%^%%%V%n%%%v%%%%%%%%t%%\%"%"%%%%%%%?%%%%y%e%%/%%%U%4%%%%%Z%"%%%%%%3%%}%i%%%%%I%%%%%3%%%r%%%%%P%%%%%%%x%%m%%%u%}%%%%%%%%%%j%;%y%%"%%%%%%%%%%%%	%%%%%%%;%%X%%%%%G%%%%%%^%a%%%%%;%%v%U%u%%%%%`%U%%%B%V%F%%%%%%F%%%%D%-%%%%`%a%%%%%%%I%%O%+%%%%x%%D%%U%C%%%%%%%%%%%`%%%?%%%%X%%%%3%%T%%%%%u%"%K%%%%6%%u%5%%%k%$%m%.%%%%%%5%%R%%%p%	%	%	%%%%%%_%~%%%%K%%%N%$%%%%%%%%%O%%%6%1%%%G%%%6%5%%%%%%%%%B%%U%%%%%4%%%%{%%V%%%%%7%%%%%{%%%%%;%K%%%t%%:%*%%%%%%%%%:%%U%O%%\%>%+%%%E%%%Z%%%%%n%%%%%X%,%%%%%Y%J%%J%)%%%i%%%=%%%%%A%%%%(%I%%%?%%%Q%%%/%%%%%~%@%s%R%%%%=%A%k%%R%%?%%%%%X%,%%<%f%%%i%%%%%%5%<%%Z%%%%d%%%%%[%8% %j%%%j%U%%)%%?%%%g%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%%%%%%%b%W%%%%% %t%K%%%%%k%%(%!%!%!%>%>%%%%%3%S%%%%e%s%%%P%x%%%%%%%%%%*%%%%%%%n%;%%%%{%%c%%C%%+%%%H%%%@%%%%R%%&%Z%%%S%%%a%%%%`%I%,%%o%%%%H%%S%%%%%%%%I%%%%T%%%%%w%%k%%%%R%&%%%%T%u%%%%"%%%)%%%q%J%%%%%)%%A%%D%d%b%%%%%y%%%y%%q%J%%%%%1%V%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%% %%d%g%'%%=%%%%%%%%%%5%.%.%%%%%%%`%%%	%o%H%Y%%%%G%%%%%%Q%H%Y%%0%%%%%%q%%`%h%%R%%8%%0%%%)%k%%%%%%%5%%%%%@%%%%%%v% %e%%% %C%;%%%%a%%%%H%Y%%0%%%%}%%:%%%x%%%%%g%%%%%%R%%%I%%%%%_%,%%%%t%b%%%%%=%W%%t%f%%%%%%%~%%%Q%%%O%%%%p%D%%%%%W%%%w%%%%L%D%%%%%'%%u%%:%/%q%%%%O%%7%W%%%%%%j%%%%%%&%%R%%^%v%Z%\%%9%%%%7%%%%Y%r%d%%
%%%%n%U%%%e%%%%%>%E%%W%%%%)%e%E%%/%%	%%%x%%D%%5%%%p%%%C%%%%|%%%%%%%%%C%%`%%%b%%%%%4%%%"%%p%%%.%H%%W%%W%%f%H%%E%G%%%%%%%%%%%%%%%%b%%%%z%>%]%%%%%%E%"%%%%%%c%r%%o%%%%%%S%%I%Q%%^%%%%6%^%%Q%I%%^%%%%7%%%%%%$%%%%/%{%%'%%%%%'%+%|%%%I%%%N%x%%X%%%%t%%%%$%y%y%'%"%w%%N%%J%%%-%l%%%@%%%%%N%%%D%%<%%%5%H%%%%%%%%f%%-%%Q%%%)%e%%/%%V%%%=%%y%I%%/%%	%% %%(%%<%%_%,%[%%%+%%%%G%H%N%a%%%%X%%%%%`%h%%|%J%%%7%x%m%%H%%%%%%%%'%%%'%%%%L%%:%Z%%%D%%%%%%%%O%0%%%>%%%%%%%%%x%$%%U%/%:%&%%%*%%%$%%J%%%%B%D%D%I%y%%%%%%W%%%]%%S%%R%%%|%%%1%%%%%I%%%l%%!%%%%)%-%%?%'%4%o%~%%%u%L%%u%U%N%%
%%%%=%%<%(%	%%%r%%5%?%%f%%%%%%8%2%%%%\%<%%%&%%%%%%%%%^%%%C%%{%%%%{%3%%%V%%T%%% %-%%%!%(%%%[%$%%;%%%%%%%%%>%%=%%Y%%%7%%M%[%G%%&%!%+%#%%%?%0%;%3%%%L%%%%_%%%%%%L%m%1%%T%t%%%%%%%%%%%%z%%%%%%%%:%%%v%%%|%%%}%L%q%%%%%D%%{%%T%B%B%%>%]%%%%w%0%%%)%k%%%%%%H%Y%%%%%%g%%R%%8%%0%%%)%k%%%%%%%5%%%%%@%%%%%%v% %e%%% %C%;%%%%a%%%%z%%%%%%C%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%%%{%%%%)%%%
%W%-%%7%%%R%%i%/%e%%X%%%%`%M%%?%%)%%%%R%%%%%%%%%%S%%9%%+%%%H%%%@%%%%R%%&%%%%{%x%?%W%W%%%%M%%*%%%F%D%%%%%%% %%.%a%%%Q%%%% %5%%/%%4%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/DefaultsFigure.png__ __7778__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%4%%%)%%% % %%%I%D%A%T%x%%%%{%X%T%u%%%%%%$%%%5%.%%%`%`%I%x%I%3%%r%%K%%%P%I%*%s%%i%+%%%F%	%%%%%E%W%a%%,%%%%%%%P%%K%%%%S%=%%F%%j%%%%%%%%H%%%m%V%n%%%%3%%0%%0%%0%%%%%z%%%%%s%%%%7%%3%%%%%%%%D%%%%%%|% %\%5%<%%%#%!%j%%%%|% %>%%/%%%%%[%%C%%,%/%w%%%%}%%%~%q%%%5%m%%%%%9%%%%%%z%%%%%%%%%v%%%
%%/%{%%%%%%%%*%^%J%;%$%%J%%|%%5%~%%c%%%%%{%%%%%%%%%%%%f%%%e%%%%%[%%|%.%%%%%%%q%%%%%%%%h%%%I%I%I%%%%%%%%b%S%%%E%%%)%%R%%%%%%%%%%%%>%%w%%W%'%%%%:%;%;%%
%%%%n%%%%l%e%d%o%%%%%%%%%v%m%	%%%%z%%%%j%%3%%~%%s%[%%%%~%x%%%A% %%%%%%l%%]%%%|%%W%%1%%%l%D%%~%g%%%%%^%]%2%5%%%{%%l%8%%%%%S%%%%%%r%%%%%R%%%%	%%%%%%8%%%_%|%/%%%%%%B%%K%%%6%[%%%%%r%%%%<%%Q%%%%;%Z%%%%#%3%n%%B%%'%3%n%{%%%%+%%%%%%:%y%%%[%:%u%%F%O%%e%B%%%%%%%n%%%R%%)%%%%%u%%%%%j%%%%,%4%%W%9%%%%%n%B%%_%%%%v%%%%]%%\%=%u%%%%[%%%f%%}%%%j%j%q%!%%%%%W%%L%Q%0%%%%8%Z%%%%%%%7%"%A%%%=%%%v%%%%W%h%%%%w%W%|%%%%%{%%%%O%%%%%%G%%%%n%T%/%%0%%%'%%_%%%%%-%%%%%:%%%%%%%%%%!%%%%%%%%j%?%N%M%%%%%%% %	%3%%|%%%f%%7%I%%%%%%%%%/%%_%}%%%%8%%h%0%*%7%%%%w%%%%%%%%E%%%%%I%%%<%% %%%o%^%%%%/%K%%%%%%%%%=%V%%%m%k%%h%%%%T%%%%%%O%%^%%%%%%%%%p%%%%%%%%%%:%}%%%@%%%{%%%d%e%%%7%l%t%b%{%%%%?%"%|%%s%%b%%N%%%%%%% %%_%z%%s%o%%% %%%K%%%%%]%Y%0%%p%%%%~%%%%%%%%N%E%%%%%%4%~%~%F%%%%%Z%%3%N%%%%%_%%%%%[%$%=%%%%%%u%%%%%e%%%%r%X%%%%%%%!%=%}%%%|%t%%%%*%%=%%%%%l%%%%C%% %%%%S%%O%%%%=%%f%Q%%%G%%-%%%%%%%%%%%%% %%%d%%%g%%l%y%%%%K%%%>%~%%%%%%%e%3%%r%%l%e%%%y%e%%%%w%K%%%%%%%%%s%O%%(%%n%]%%%%%%%V%%%i%0%%%%%%#%=%%%{%%I%w%%<%%o%Z%%%%%%%{%%%%%W%%%s%%%%%%%%%%{%3%r%w%%<%%k%%%%)%%%1%%%%%%%%%%{%%%{%	%>%%)%%4%[%s%%%?%w%h%%%%%/%%%%%%u%%a%%%%y%y%%%%8%%K%/%%3%%W%%@%C%%%%%%%%s%%%%%%N%%O%%=%7%%%4%2%e%%%%%k%+%G%%~%C%G%%%%%%o%%%%?%{%%%%{%%%%%%%x%V%%%g%%^%=%%p%%%V%%%%&%%%%;%|%%w%%%%%\%%%% %0%3%%%%%%%%%a%%%%%%%%%%%3%\%%%o%%%%%%{%%%4%%C%r%%u%%% %%%V%1%%q%I%%%%%%%U%%%|%z%%%%q%%%%%]%%%E%%b%%O%]%y%S%%%]%%:%%5%%%%%%m%i% %%S%%%%%`%%%~%%%%%%%%O%x%%%&%%%K%%%%:%%%v%%%C%%%L%%6%+%)%%%%%%%%%%O%t%%%%\%%%%W%%%%%%%%-%8%%%%%%%%/%%G%%%%%%C%%%%%%O%V%%;%v%P%%%%%%%%%y%%h%t%%q%%%$%%M%6%%9%:%#%c%}%Z%%%%%%=%W%w%W%A%~%%%o%m%%%%k%%%%T%%%%%%)%w%~%6%%%%%W%%%p%%%%?%%u%%%%%%%%%%$%&%u%%%%%%o%/%%%%?%%%%Z%%%%R%%%%%%%2%%%%n%%%%%%%%%%%%'%%%%%%%y%G%%%k%%7%%%%m%]%%%w%X%%%%!%%z%%%:%%Q%%_%z%z%%%%%%/%L%%g%%%%`%D%%%%%q%%%%%%%%%)% %%3%'%%%%%b%#%%%%%.%,%:%%%%%%%m%%%h%%%%%%&%<%V%u%%|%%%%3% %%L%%=%%|%y%%%%G%%p%Q%%%_% %"%#%%d%%%%%%%%,%%m%p%%%~% %%%o%%%~%%%y% %!%%%Z%y%%%y%%%2%%p%%%%%%%%%j%%e%%/%%%%%%%@%L%X%%%%%%"%.%%%%%%%W%%%'%?%%%%%%%%%F%%%%%k%v%y%%%Y%?%%%%%.%%)%%R%%J%%%[%%^%O%\%%k%%R% %%%%W%%%%%%%%%%%%c%%%%y%%%5%%5%%X%V%%n%%%Y%%%%%m%%%%%%y%%%1%%%_%%%%%%%)%}%%%%%%%/%%`%8%%)%%%%%%%%%%E%k%%,%% %%W%k%v%^%%%%%/%^%%%%r%%%%%'%%-%%W%%%%%%%%%n%%%%%%'%%m%O%%%%%%%% %%%%j%/%%a%%%%%%m%%y%%O%Q%w%?%r%%% %%%%%%v%t%%%%%%n%y% %%%%C%%%{%%U%%%%7%Z%%o%'%j%%%%%%%5%%E%z%y%C%9%%%7%%]%%%%%%%%%%A%s%%%%%%%)%%?%8%%%`%%%%%%%%%%%%%N%4%s%t%%%%%4%%M%E%E%%C%%%o%\%%a%+%%%%%K%Z%%%\%%%%%%~%%%%-%g%%%%%%%%%%~%%%%%%N%%%{%%%%%3%[%%%u%%/%%%%%%x%W%k%%%%%%N%|%%%%%%%%%%%"%I%I%I%.%]%%%%L%%%%%%-%%
%%.%%%=%h%%%,%V%R%%%%%3%2%K%%r%%%%%%%%%%%{%%f%%R%%^%%%%%A%%%%%%1%~%%%%J%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%8%%%%F%%%%%%%%%o%[%~%~%^%n%n%n%J%J%%%u%8%%%%g%&%M%%%L%B%0%e%%%)%%%L%%%`%%$%%%)%k%%(%-%|%d%%% %%Q%%%E%%%%%%%%%%%Z%%s%&%%%h%%H%.%%%%%%5%G%%B%%%%%%%D%%%{%%%%%%%d%5%%@%u%:%%d%h%%3%%%%%U%%%%%%d%% %%%%%%%%%%(%%%%%%%%f%R%%%B% %(%%1%%%%*% %j%%s%%P%]%r%T%.%%%
%P%o%t%%%%u%Z%$%+%%J%%T%%T%%{%0%v%%%%,%Y%% %%5%%%i%X%%%r%w%%%5%'%%%%%%%%%/%%%%%%%,%(%
%J%%f%%e%i%,%%%q%%%L%%%j%%%%%%%%%M%<%r%&%%% %%%%%P%;%%k%R%%b%%%%%
%%-%%%L%%%%%%%%(%%%
%%%V%(%I%n%~%b%%%%Y%b%%t%:%%%%{%%%%%%,%%A%%C%%%%%!%%%%%;%%%%%%5%%J%m%%%%%%%g%%%%5%%%x%%U%%%%%%%%%%%H%W%%*%%%%%"%%%%g%%%%f%%d%%%@%E%A%%%%$%g%S%V%%[%%%T%%@%%%%%?%%%%%%V%%%*%n%:%%%%%%C%%%%%j%%%~%%%%P%%%:%%%_%%;%%S%%%&%%%j%d%V%X%%%;%%K%%%%%%%%%%%%Y%%%%:%%%%H%4%%0%%%%R%#%%%?%%%%%A%m%;%%%%t%%%,%I%F%R%!%2%+%P%%%%%%%%%%%%%U%%]%%%%%%V%%%%%%S%%%%3%%%3%%E%r%%%%%f%%I%G%%%%%%%%%h%<%9%%%%k%%E%%%J%%%+%%%%%%c%%%%%%@%%%Z%%%%%%%H%%%%%E%%%w%%%%%%B%%%%P%%9%%3%<%g%&%%o%3%e%%:%%%`%%%v%"%5%%i%%%%%v%E%%%%%%%U%'%%%Q%%%%%<%<%a%&%%%%3%%s%%%
%K%%%%~%%%%%_%%% %%%-%o%f%N%%%%%~%%%G%%%%%#%y%%L%f%%%I%%Z%{%%%%%%%%)%'%%%"%%l%%%%p%%~%%%%%%r%%%B%%j%t%n%~%%%%<%b%&%5%M%?%?%%%%+%%%h%%%?%i%%n%%%_%F%%:%%+%D%%%%%l%6%t%-%%%%]%%%o%%9%%%k%u%%%t%d%%%%o%%'%!%%2%	%%%I%%%L%B%8%%%/%?%?%%%%%%8%%%%%%s%s%s%]%1%%.%%3%%%%N%%%%3%%%%%k%%%%%Q%%%m%%%%%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%%%%%%]%%%q%t%A%%%%%p%%%%%%%G%%%%l%_%%%\%U%U%%%%%%%t%%%I%W%%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%a%v%%o%%%9%%%%%%x%T%&%!%|% %%%%%{%%D%%R%%%%%=%%%v%%%\%i%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/DefaultsSystem1.png__ __7752__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%4%%%)%%% % %%%I%D%A%T%x%%%%{%X%T%u%%%%%%$%%%1%.%%%`%`%%x%I%3%%r%%%%5%L%%%%z%%J%%%Q%B%%<%%t%%M%%%%%%%%%%%z%%%.%6%T%%%Q%%%%	%%%%"%%l%j%e%%6%%%%%%%p%%%q%%/%%%%%p%%%3%?%~%%9%s%f%%%%%]%;%@%%%-%J%%%%%%%q%%%	%Q%%%%%%%2%|%%%%/%\%:%%"%{%y%%z% %D%%%e%%%%3%^%%%n%%(%%%\%b%m%%%%%%%%%%%%%%(%%j%%%%%%%%*%%%%%s%%%%%%>%%j%y%%%%%`%%%z%F%-%%w%D%D%v%%%r%%%%%_%%t%&%%%x%%/%%:%i%@%%n%f%%%W%%r%b%b%%V%%%i%%%%%;%p%/%%%%%%%%%%%~%%o%%%%T%C%%%_%%P%%!%u%v%*%_%%X%%Q%%%%%%%D%m%%%%%%%%%;%7%%%%%~%%%%%%%%~%S%%%U%q%%<%%%%@% %G%K%V%%{%%F%%6%7%%%u%z%4%%*%%%%%%%v%%a%%%O%%A%%%%%O%%z%(%%%;%2%%%%%q%5%C%U%%%^%^%~%%R%%%%%^%%%%%%}%%p%]%%o%%%S%%+%%6%%L%N%l%%%G%?%N%%%e%{%+%;%%c%T%%%%%%t%%-%%%i%x%%a%%%U%[%&%%%w%%%n%%%%%L%%%8%%%%%%5%T%%%u%%%t%%%%%%%[%.%i%%%%}%%&%%%z%b%%%%%?%/%%	%%V%%<%{%%%O%%%i%%%%%%%s%%%%%%^%;%a%%%%%a%%%%%%%<% %@%u%m%9%%%S%%C%%%%%%%%A%8%%%%%8%Z%%%%%%%;%2%%%%%%%v%%%%G%H%%e%%v%W%%%%%%{%%%_%N%%%%%%%%%G%?%%%W%%o%%%g%%Y%%r%%%E%k%%m%%=%t%^%V%X%%%%%z%W%m%v%%%%%O%%O%%M%%%%p% %%3%%|%%%%%%%%%w%I%%%G%%%4%a%%I%L%%y%`%% %%o%%%%w%%%K%%%%%%%%5%%%%;%y%,% %D%-%%%x%	%%_%>%}%3%%%g%%6%%z%%%%[%%%%4%%?%%%%%E%%?%?%%k%%%_%E%%w%%%#%p%%%%w%%o%%%y%%%%%Q%%%%%%%%%%%%%m%[%%n%%%a%%%[%%%Z%w%%&%%%/% %%%%%%%%% %%W%.%-%%%%%%%`%P%%%%~%%%%%*%%%O%E%%%%%%%?%o%%%x%%P%u%%m%u%%%%W%%%~%j%b%`%%?%%%%T%%%%v%7%%~%%%%%%%%%%|%%%%Y%%%%%%v%%%%%.%%%%%%%%%%o%%%%r%]%%O%%%%%`%-%%%%B%%%S%*%%c%%%Y%%2%%%%%%#%l%|%%%%3%%%%%%%O%g%%}%f%%%%%]%%4%r%%#%%%{%i%%1%\%2%#%5%g%p%;%%.%%-%%% %%[%6%%%+%%m%%%%%%%%%%6%>%u%%U%%%L%}%%%%%>%2%%%%%c%%%$%%%%%%%%2%2%%%>%%=%%%%%%%%%%%%%~%%?%N%%I%%%Y%u%t%%%%k%R%%%s%%%%%j%%z%%%w%%5%%%%%%%%%%%3%@%%y%%%g%e%m%x%y%?%%8%%%%%+%%W%%%%%%%,%.%%t%%%^%M%%%%%%%\%%%%%+%%-%,%%C%@%%%%%5%i%d%%%%%%k%+%G%%%%F%%d%%%%w%%%o%%x%%T%%}%%%%%%%p%Z%%%g%%^%=%=%p%%%T%|%%=%&%%%%=%|%%%%%%;%%*%)%6%%%%%%%%K%%%C%%%s%%}%%%K%%%%%v%%%%7%%%%o%%%%%c%%%%%%%T%%$%%%~%%}%%%%+%%%%%%i%%%%#%%9%;%%%E%%%%M%}%%:%?%+%%%;%%k%<%%%%=%%% %t%u%g%%%% %_%4%%*%%%	%	%%%%%B%%%\%%/%%%~%%%;%%"%L%%d%%%F%%%%\%%%%%%%%%=%%%%%r%%%%%w%%:%P%%%%[%%_%7%_%_%%z%(%%J%% %%%%%C%%z%~%s%%'%%%%7%0%%%%%%g%2%G%%,%%%%%t%=%	%%%M%k%%I%O%_%%%x%%%%%%%%%%%g%%[%%%%%%%%)%%%.%%%%%m%%%%%%'%+%%W%8%%^%%%%:%e%q%]%%%a%!%%;%%%~%%%%%%%V%:%%%%'%%%%(%%%R%%%%%O%~%2%%%%%]%%e%~%~%l%~%%%%%'%%%{%+%%%1%%%%5%%%_%%%p%m%%%g%h%@%%%%n%%z%y%%=%%,%(%9%5%j%]%%%S%%n%%k%%%%`%d%%%%%p%%%{%%W%%%`%%%%Y%%%%%%b%%%%c%E%%%%f%y%[%X%%%m%%%d%%%%%%%?%\%q%%r%%%%% %%'%%%b%%<%%%	%c%p%%0%%%/%%%%7%*%%%l%%^%z%_%%%%%f%H%_% %%%5%%%q%%%,%%%%%%<%%%<%%U%%%8%%^%%%%%%%j%%i%%%g%%%{%%%@%t%%%%%%%%/%%8%%%%%#%%%%%%%%%%%g%%G%%%%%m%%%%%%%%7%%h%|%1%N%Q%%%%A%U%7%V%%%%l%%%e% %%#%o%%%%%i%%%%X%7%q%%%q%%%%O%%?%j%*%%T%%v%%%%%%%%%X%k%%%%%%%c%o%2%>%%{%{%s%%[%S%%%%%T%%%%%h%<%%)%%j%%W%%%%%%%%%]%% %8%%)%%q%y%%%%|%%%6%%%%%%%s%%%%<%%%%%*%^%%7%%%%%%=%}%%%%I%k%!%0%:%7%7%% %*%w%%%%e%x%%%%%%%G%?%%%%;%%%%% %@%m%y%%%%M%'%%f%%`%%%%%%%%m%%k%%%x%%%%c%%%<% %%9%%P%%%%1%t%D%%%B%%%%D%%%%%%%%%s%%%%P%%%%%%W%|%d%q%%%%%%h%%%%%v%%~%C%
%%%
%%%%}%%%%v%w%%%%Y%%%%f%%%W%%%%%%L%%%%%%%%u%%%2%%%%%%%%%k%O%%%A%%o%%%%e%%:%%%Q%%%p%%%%?%%%=%u%j%%]%+%v%%%%l%e%%%j%_%z%%%%.%%%%Y%%%%%%%6%%%%%%%%%%$%%%%N%]%%%%%%J%%%%V%.%%P%%%%=%h%%y%/%V%R%%%%%3%%H%%|%%%%%%Y%%%%\%{%%f%,%R%%Z%%%%%A%%%%%%6%}%%%%J%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%%%%%F%%%%%%%%%%%
%y%y%%9%9%9%)%)%)%m%%%%T%C%%L%%%Q%%%`%%$%%S%&%!%%2%	%a%G%%e%P%%%%e%%%^%;%%%%$%C%%b%%L%%%e%N%%M%%u%%%%4%%%%9%%%%r%T%N%t%%n%2%%%%z%%%%%3%%C%r%%	%% %R%A%%%E%%i%%%)%g%h%%%[%|%%*%%%%'%%%%%%%%]%%%L%%%%%(%:%d%6%6%-% %%%r%%%Z%p%%Q%9%b%%%%%%%%%%o%%d%*%P%"%%%%%\%<%%%q%%%%% %%%%a%%(%%E%I%@%%%;%%Q%%)%'%%%%,%%%<%%L%.%n%%%x%%%C%%%[%%%1%m%%i%%H%%%%%c%N%t%G%%%w%%%3%%%%>%%%%I%%P%%%%%)%)%%*%% %:%% %t%%P%,%%%%&%%r%%5%%%%%%%:%$%+%H%3%%C%%%6%<%%%%c%%%%%%f%%d%&%%+%C%%%%%%%%%%%@%%% % %%% %@%k%v%
%%%h%6%X%%%e%X%%%j%%%%%%,%%p%d%5%_%!%%%c%s%'%%%3%%%% %Z%%%j%%%7%%%%%%%E%%%@%%B%%
%%z%%%%%%%%%%%0%%%D%%A%%%%%%%a%%%I%E%%G%V%%%%%%%9%D%g%%I%%%A%E%%%#%q%%%%%}%%$%%%V%%%%%%%%%%%%a%%%%%%%5% %%%%Y%%%J%%%%+%%E%q%%%l%%@%%!%%g%%%%%/%%%%Z%L%h%f%%%%%%2%%%K%%%|%&%u%%%%%%z%w%%%N%9%*%%+%C%%%%E%~%%%%F% %	%@%Q%%%%%%.%%I%]%1%"%%Z%<%J%%%%%%%%%%%m%%%%%%I%%%Y%^%%j%|%%%%%%d%s%%L%%;%%h%%(%%n%%%r%%2%`%|%%%%a%%}%%%+%X%s%^%D%R%%%C%%% %%Z%%{%%%t%%%I%%+%'%%w%}%%%"%%%%%%%%%t%%Z%h%3% %%J%%b%%%l%%%(%%b%%V%%%%%%%5%3%Y%%9%.%%%%s%%%%%%%%%%a%%%d%B%%%%9%[%%%%M%%%5%7%Y%P%=%T%%p%%%t%%%3%%%+%%%L%%%`%%$%%%%%y%y%%N%%F%W%%%t%,%%S%%%%q%%8%% %%%c%%%%%%%%%%%k%%%T%%(%g%%m%%g%%%%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%%%%%%Y%%%q%t%A%%I%%%9%%%%%g%%%%%L%:%%%)%W%T%T%%%%8%o%(%]%%g%%%x%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%X%\%%[%%X%%%%A%d%'%%%I%%/% %y%y%y%%%%%%%%%%W%%%%%%%%{%%W%%p%0%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/DefaultsSystem2.png__ __8164__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%4%%%)%%% % %%%I%D%A%T%x%%%%%\%T%u%%%%%%$%%%1%~%%"%%%*%%%5%%r%%4%]%%%?%H%2%%%%[%%%%F%)%k%%%%n%k%W%a%[%%%
%%%-%%Z%%u%%%A%%.%S%%%k%%z%5%%V%(%%%%%%%%%m%%%%%%p%%a%f%%%%~%>%%C%f%%9%%%^%s%8%%{%%%T%%=%%%%n%e%%%% %F%%%%%%%9%.%;%;%%%%%%%%}%%%%!%r%%[%W%%%%5%<%,%?%%}%%%%n%F%%b%%%#%j%%%%%%%%\%%%]%[%%%%%%%U%{%%%}%%%%%%%:%%h%%%%%%%%%o%%%%%%%%\%%%%%%%%r%%%%%^%%x%%%%%\%%%%:%i%@%%%,%%%g%%%	%	%	%e%e%e%%Z%>%u%%n%%^%%%%%%%%%%3%b%%%%%%%%%%%O%%%%"%%t%v%%
%%%]%%%%%%e%f%o%%%%%%%%%G%%%%y%%%%%~%%%%%%%v%%%*%%%%v%.%
% %P%]%%i%%K%u%v%%%%{%?%M%%%?%%%f%%p%%%;%%%q%%%%Q%y%l%%%%]%=%%%%;%6%%%%:%%j%%]%)%%{%x%%N%%%%%1%%%%<%%%%%%%%|%%%^%%Z%%%e%W%2%c%%?%%%%%Y%%%%%A%=%%%-%
%@%%%%%{%%%%%G%%%l%%7%{%%%X%?%o%%%%~%f%%%%G%%%>%%%I%%%c%9%%%%r%8%%%%=%`%%{%%G%Z%j%?%e%%%%}%%%%|%%f%%G%%%%%J%%%W%%%% %o%%%%%n%%K%)%W%%%;%%m%%%%%%%%%%%%%4%%@%M%}%9%%%S%t%%%%%%m%P%%%9%%%%%%%%%%%%o%j%%%%_%%{%k%%Z%%c%%c%%%%V%%%c%%%%%%%%9%%%%%%%?%%%%%z%%%%%%%_%+%%%%%%z%%%%>%%%%%%G%%%%6%j%%%%%2%B%%7%%"%%%%u%1%%%j%>%H%J%%O%%%)%a% %%%%%H%%%%%%%L%%l%Z%%z%%%S%7%]%%%%O%%%F%%%%%*%%%%%g%'%%`%%%%L%%$%g%%%% %%k%%%Z%%/%_%H%%%%i%%%%%%%%}%%%%%%%y%%6%5%%%%%G%W%<%%%%'%%}%r%%%%%%%%M%Q%%.%%%%%%%'%% %=%#%v%%i%%%%J%V%%%%%%_%^%%%%p%%.%%w% % %%{%%%X%v%%@% %h%%|%&%%s%]%%%%%%%%%%%%s%%+%%Z%~%+%b%%%2%'%%%%&%%%%O%%4%?%%%%%%%%%%_%%%^%A%%%Y%)%;%%\%%%%v%W%Q%%D%%%%%9%%%%_%%>%:%#%%%%%%n%%%%%%%%%%%%_%%%%%x%)%w%%x%%%%%%%%0%d%H%%2%f%%%u%1%g%%%%%%%%%?%G%%%%U%%%%%%% %j%>%\%8%%w%%%}%o%%]%%D%L%~%%%%%n%%%%%%%%%%t%Q%V%%G% %%%%y%%%%%=%U%%?%%1%%5%%%%'%%%q%_%~%%%%%%%%%q%o%%F%%%[%%%%k%S%%G%%%%%%%%%%-%%%%%%%%t%%%%g%%%%%%%#%U%%G%%%%:%w%%%%=%^%%%%!%%%|%8%%%%%+%%W%%e%h%% %%%%%Y%%%%%%%%%{%%%%h%%%%z%'%%%U%%z%%%%}%%%%%%=%'%%%%C%%7%%X%Q%% %%%%%R%%%%%M%% %p%%%%[%0%%k%%%%%^%y%%%	%1%%^%%%%K%%%5%%o%%=%%%%%%%!%%u%%%%%%%%7% %w%%%%m%V%%%%3%%~%%%%~%%;%%c%% %,%N%%%%%H%X%X%%%2%?%{%%%%%%%%%%%%,%9%t%%j%%y%+%%b%%%s%%%A% %f%%%%%2%>%2%0%%?%%T%%%%%%,%X%%n%
%p%6%/%%H%%%(%@%%%y%/%%%%%%%%:%%%P%]%%%%%%k%%
%%%%%%%V%%%%%% %.%~%%%&%%%[%}%%o%%V%%%%f%%% % %_%]%<%z%%'%~%%e%%%K%6%%i%%M%%%%%%%o%<%%X%%%%z%%%U%n%%%%%%%%%%}%{%%%%%%Q%%%%%x%%+%%z%%%%%%%%o%T%%;%y%h%%%3%g%%s%v%g%%%%%s%%|%=%	%%f%%%%%%%#%9%%%%%)%/%%=%%%%%%[%%%%%%%%%-%_%~%%%A%s%%%h%%%w%n%%%\%%%%%%%%%%%%Z%%%%%%H%T%%%%%%=%w%%%%%_%M%_%%d%e%,%\%%%%C%Y%%|%c%y%%%%%a%%%;%%%%%%%%%s%%?%%%%%%%%%%%%%%%%%%%%%%%l%%%%z%%%m%%>%%!%%%C%%z%%%%v%%%%%%%%%u%%.%]%%?%@%m%%%`%%%%/%	%D%%%%%%%%N%5% %%[%<%%%V%F%%%f%%%+%%%%P%%%B%%%%=%|%%%%%%%%%%%Z%%%O%%4%%%4%k%%%%%g%%J%3%%g%%R%?%%%a%i%%%%%%%%%%% %8%%%%% %%;%%<%%~%%%*%%%%%%%9%%%%%%%%%6%%<%%%k%%l%%%,%?%:%%U%%% %%%%j%%%%%%W%N%%%%@%T%%%%%~%C%%n%%%%%%%-%%%%%%%%%%%+%I%%%%z%{%Z%M%/%%%%%%K% %%d%%%(%E%[%%%%9%%%f%%%%%% %g%%%%%%%%%O%%%~%p%%%%%%L%n%%6%%X%\%%m%q%%%%%%%?%I%m%t%'%^%%=%i%%|%%i%%%%%%%%7%>%S%w%%%%}%%%%%%a%%%%%%%k%%%7%%%% %%+%%%%%I%
%%'%%%(%%r%%%%%g%%%%V%%%%%%%%'%L%%%g%%%%%m%%%Z%%%%%%%%%%%%%%6%=%^%q%l%Y%c%%s%%%%%%%=%% %%/%/%%%%%%%%%N%[%>%% %%%%%^%#%%%%c%%%%%%s%%%T%%=%4%r%L%%%B%%%v%"%%{%0%%|%%N%%%%%%%
%%%y%y%%_%%v%|%%n%n%%%]%%%%%h%%%%%%%%U%Y%%?%y%%%%%%/%%p%;%%%%~%%_%%%j%%e%e%e%%Z%%|%%%%%%%%%%i%%^%%%%%%%%%%%k%%%%9%%%%%%%%%%=%/%O%=%Z%k%%%]%%%3%k%%%u%%/%-%%v%%-%%%:%%3%%%%%%L%%%%q%%%%c%%$%	%	%	%%%%3%k%Y%%+%%3%%[%%%B%?%%-%%A%%%%%%2%%?%%%%*%%%%%u%%8%%%%h%%%%%%J%y%%%%%%L%^%q%%%/%;%;%+%3%3%%r%%%%%J%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%I%9%]%%%%%L%%n%%(%;%L%%%
%%%%Z%%W%%Z%%i%%%7%8%%%%%%K%%%%\%%%%%P%l%n%%%%%%P%%%%%!%G%%%r%b%%%z%%%% %%%%%%%\%%%%R% %X%]%f%%%%F%@%%%C%%%p%j%%%s%%% %%]%%]%2%%%%%%\% %X%]%%%M%%%9%%%7%%v%%%%%%;%%%%%% %P%%%%%4%%G%%%%%d%g%k%l%%%m%%%*%m%%%%%%%%%h% %@%%m%%%t%%%D%%%%%'%g%%v%%P%%%j%u%%%%%%%%B%%%F%%;%p%%d%\%"%%%%%B%Q%%%%%T%B%k%%%%P%%X%%Q%%%%%.%m%:%%%%%%A%B%g%L%8%%%<%f%%z%%%9%%M%Y%%%%o%%a%*% %%%-%%%M%%%4%7%A%e%'%%%% %e%%%O%%%%O%%d%%%6%%%%%<%%5%.%%%%.%<%%%a%%%%%%%%%m%%:%%s%)%%v%]%%I%%%%%%%s%-%+%%%O%%%4%%Z%%S%%R%%%%%%%%%'%G%,%%%8%?%+%I%i%^%1%<%%%>%)%M%u%%D%J%%L%(%%q%%%X% %%%W%A%%%%)%k%%%%%1%%%%%g%x%T%%[%J%,%%]%^%%%%%v%S%%%I%%
%%%W%L%%T%Z%%%%%v%%k%@%%%]%)%%%%]%%3%]%S%(%8%%%9%%%D%%%_%C%%m%%r%%.%%%%%%%%%%%\%1%%%c%>%"%2%%3%%"%%5%%%N%%`%%%Y%S%%[%<%a%3%%%%D%%%%%%%%%|%%Y%%%%%Q%b%8%%/%%&%%%6%J%%%%%}%%%%f%%%%%%%%%z%%%q%K%n%q%W%%%%%%;%%t%%%%%%%%%%%!%%%%U%>%\%}%%%%%?%%H%%%%)%%%% %X%%R%%%%%-%G%s%%I%m%r%q%%%#%%%h%%%%%;%%%%%u%%%=%%%%%%%%%%%%%%%n%\%%%a%%%2%%%5%%}%%0%%%%%%=%%%%%_%%3%n%%%%u%-%%%%%%%%w%x%%t%%%8%e%%%%%%%6%%j%&%%R%%%%5%%%&%%%%%%+%%%I%%
%G%6%k%8%%%%%S%k%%s%b%%%%%%S%%8%e%M%%%%H%%Y%3%%%`%A%%%%%
%G%%%5%9%%%%%%%?%%%%%%%6%%R%b%%s%B%%Y%%%%%Y%%%%\%%%}%9%z%%e%g%%%%%%I%%%~%%-%%%t%%%%%%%%l%%^%e%%%%%%F%%%%%K%%9%z%%t%|%%%%%%V%K%)%%U%%%(%i%%%%i%%%%%%%%:%%%%%H%=%%%%%%`%%$%%S%&%!%%2%	%%r%%%%%u%%%A%%,%%%3%3%3%o%%8%%%%%%%S%M%7%%%D%%%u%k%%%>%%%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%G%%%%n%%%%% %r%%J%%%%%7%%%D%N%%J%y%%%%%%}%%U%C%!%r%%%%I%%% %%%%]%=%%"%g%)%%%%%%@%%%%%2%%%%
%%;%)% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/Empty.png__ __7138__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%6%%%%%	% % %%%I%D%A%T%x%%%%y%\%T%%%%%%%%%%%% %%%%%8%%(%"%(%n%%]%s%'%%%T%2%-%5%%%i%.%%%L%_%n%]%E%%2%%u%%T%P%%%M%-%%%%%)%%%Q%%\%%%%%4%p%%r%% %F%%m%d%%%%~%%%%9%%s%~%%|%<%%3%%%%%%I% %%%%%K%5%%%S%W%%%%	%@%%%%%%%f%%/%%.%_%h%%% %%%%%'% %P%?%4%%%%s%l%@%-%7%#%%%%%K%*%[%(%R%o%%J%%V%%c%%%%	%$%%%%i%e%%_%%7%+%%%z%H%%!%u%%%%%Y%%%%%%%%%6%%%~%N%]%g%%P%g%%%\%%%%]%%%%%D%%f%%<%n%%	%A%s%3%%%P%%%%%%%%%_%i%%%%%%b%/%%%%z%%%%%%%-%[%{%%%%%c%%%%4%%%%%N%%o%%B%%%%n%%%%R%Q%7%e%A%%%F%L%%t%%G%%k%%%%%6%&%h%%%>%Q%s%,%4%%+%%E%=%%)%5%u%c%%%%%J%	%%%%%%%%n%%Z%)%k%h%j%%%%)%)%z%%%%c%%B%]%%S%%d%&%%N%%%q%%%%e%?%N%2%M%%%%%>%E%%)%u%%%%%%%|%%%%%%U%G%Q%%w%N%%%F%%k%%%%%%k%%v%e%%%n%p%%F%%%%%?%U%%I%A%%%%%%%%%%%j%N%Y%%<%P%%%m%%%d%%%%H%M%%%,%%%%%%%%z%%%|%n%%%%%%%%&%%s%%m%%%%%%%X%*%%%%%%j%%\%%"%W%%%%W%%c%%>%e%A%$%%%%%%%%}%%%V%K%%Y%A%%%%%%%A%K%%%Q%_%%B%%2%%a%%%%'%%%_%!%%s%{%%g%F%%%%%%%N%%Z%0%%>%P%%%%%%d%%q%4%%}%?%}%y%%%%%O%%%%%%%%/%]%(%)%x%k%%%%=%%%%%%P%%%=%%%}%%%%V%%%|%%%%%%%|%%%%V%%%%;% %%%M%%%g%O%%%l%U%%%%%%x%%V%%%%%%%9%%,%L%9%%8%%%%U%%+%%%%+%%%%%R%%%%D%D%%~%%%=%%%%(%3%%%%1%%%%~%%%%B%%~%%%%k%%%L%w%%F%D%d%9%k%%%Y%%%%%7%%<%%i%%%%t%"%%%%%m%%%%%[%%%%F%%%%G%I%K%~%%%%%%%e%%%%%%2%%%V%%%K%%%%%I%%r%%6%%%)%%%L%K%%)%/%]%%*%%%Z%%%%i%-%y%P%%4%%%%%%%%%%%%%%%2%%%%%4%%%%j%%J%%%|%%%_%%Y%e%%%%%%Q%\%%%%%%3%%U%%%h%%T%5%%~%%q%H%%%H%t%%%%%%%s%%%.%%%%%%h%=%{%f%%~%%L%W%%@%O%%%%%m%A%%#%%%%%?%3%%%%%%w%L%%%%%%%r%%u%%%%%%r%%%g%%G%%%%%%%%%%%J%9%;%n%%q%%%%a%g%%%%|%%~%i%?%%@%`%%%:%%%%%%"%%%1%|%%z%%%%%G%%%%%l%%%E%%%%%%2%G%J%>%%%%s%K%%q%[%<%%%/%%^%%%%%%I%%q%s%l%J%%H%s%%%%9%%%%"%k%%%%%%%%%K%d%&%%%:%^%d%%-%%%%%d%%%v%%?%%%%%%%%%R%%-%9%8%q%%%%%%D%%%%2%"%%%l%!%%%%9%%%W%%;%%%%Q%%%%%>%Z%s%l%%%L%2%i%%A%%q%%%N%%%%%z%%G%%%%q%%%%%%%p%7%Y%y%o%%7%g%%m%=%%%%%S%%$%%f%;%D%U%%a%a%%%?%%%\%H%d%4%%&%%'%%R%X%%%%t%%%-%%e%%%%m%%%%%/%%)%o%%%%%%%r%%%$%$%m%>%t%{%%%G%$%6%%l%%%%'%%|%%%U%%%%%%%y%g%G%%%%{%%%S%%%@%%H%%%%%%%%o%%%5%%%%%%%3%"%%A%%P%4%%T%o%%%%%E%E%%%%%%%5%%M%%N%%P%%%%-%)%Q%%%%o%l%%%N%%>%%%%%	%%%E%U%%%%R%%{%%%%H%%%A%1%s%F%%%I%%U%d%#%&%G%%%%%%<%+%%%%%`%%%9%g%%%.%}%1%5%=%%%i%%%%G%d%`%!%%%=%%%%%O%K%%%e%?%%%%%%%%/%%%N%%%N%R%)%%%r%%%W%%%%V%z%D%%"%%%,%%%t%%%%H%%7%%n%% %%D%%^%%%%u%*%%%%%%%M%*%%%T%5%%%%%%Z%%%%%%%%%%2%%1%%%Y%%%+%Y%b%,%%&%z%V%%%%-%%!%Y%u%%Q%%J%R%N%%%%l%%%%s%W%%%%%%%%\%%h%%%%%%%2%5%%%%%*%"%A%$%%%%%Z%j%t%4%%%%%
%%%%A%~%%_%%%%%D%%m%Z%%1%2%%~%<%%%u%%p%f%%%I%R%%%%%Y%%>%%%;%%%]%%%%g%%%%9%%%%%%I%%%>%%%.%A%%Y%%J%r%%%%%~%%N%%I%!%%%%	%g%^%%\%"%%%%/%"%%%%%z%R%%r%%%z%;%.%p%%%%%%%B%A%%!%%%%%%%%%%%%%%%%z%%t%%(%{%~%\%%%%%%%`%(%c%%/%-%%%y%%%%%%%%%%F%%a%a%%R%f%%%%/%z%%L%%%%%=%$%=%4%%%%%%%%%%}%+%%`%%%L%"%%%0%x%z%%%%6%%%K%7%%%s%%,%%%%%%X%%%%:%%J%%%%%%%,%%%%C%%c%7%%,%%.%%%%a%%%%%%%M%%%%%%%w%%%%%%%%_%%s%%%5%%H%a%o%A%%%b%l%^%%%%e%=%"%"%i%%%%%%q%%%$%%%%%%b%I%2%y%%%%%%X%u%<%%5%/%_%%%%V%%D%t%+%%%%%%%%%%%%}%m%%W%%%%.%/%%% %;%y%%:%%%%_%5%%%%{%%0%?%.%%_%D%d%k%a%0%%%%%u%%V%%%%z%"%O%%%c%q%%%h%%2%%%%%%%v%%%%%%%%.%%%%%p%%{%%%%%%%%%%%%%%?%%%&%"%%%%%%%%S%e%t%f%%% %%%%%%%%%%>%a%%%_%%%%%g%%%%%%%%%%%%?%%%%1%%%G%N%r%%]%%%^%^%;%G%%%%%=%c%m%%0%%%%%%%%%%T%%e%%%% %%:%l%%s% %"%%%%%%%%%%%%%%%_%%%~%%%%%%%%o%%}%h%O%t%#%!%(%%%%%%^%%%e%%j%F%;%%e%%%"%"%%%%%W%l%%%L%(%%%%%$%%%n%#%w%%%d%%%q%O%|%%%;%8%8%v%%%X%%%U%o%b%*%%%%%%%%%%%&%%`%]%%<%)%m%S%%%%%x%%%%`%"%"%%%3%e%%%%9%%%]%%%%%%%`%%%1%%%%:%%%h%)%~%%%%g%0%%%t%%|%m%#%% %!%%%8%%%%%r%%%k%%D%-%%%b%%8%%%b%%%r%%%%%%%%%%q%"%%%%%%%P%L%%%M%%%%%%%%%j%%*%/%k%%%%%%:%%%%%x%%h%%%%%%%"%"%"%%%%_%i%}%%%%Z%%*%~%%%x%I%%%+%g%%%%K%%2%%E%%%%%7%%%%%%%=%%%%%%%%u%%%)%%B%c%*%%&%%S%%%%%Z%%.%%T%%%%%%%%%%F%%%%r%G%%a%%%]%%=%%J%%q%%j%i%q%%%q%%%%%B%n%%%%%%%h%%%%%%%A%%%%%%%J%%^%Z%a%%+%%S%%%A%k%%{%%$%e%<%%%%%r%)%G%%L%m%%y%@%y%E%D%j%%{%%%r%)%%%%U%%%@%3%T%%%%^%%%7%U%`%%)%%%H%%%@%%%D%u%%+%%m%[%%'%\%%=%7%7%%%;%B%%z%%%%%%%j%%E%%%/%%%%%%%%%%%%|%%%S%%<%%%T%B%|%|%%z%
%%D%%`%%%Z%%%%%2%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%4%%%9%$%%h%%%O%%%%%S%H%%Q%%%%M%=%%F%U%]%%n%n%n%%6%%%G%o%%%W%]%%;%v%%6%%<%%%%%%%%%%	%%%L% %e%`%%)%%%%.%%
%%%%j%% %u%%%2%0%%I%D%%%%M%=%%%%%%%%%%s% %%%%%%%%%B%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/EnableExample1.png__ __5872__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%,%I%D%A%T%x%%%%{%X%T%u%%%%%9%%%e%@%P%%8%%a%"%
%B%K%%E%%%h%m%%X%%Y%%r%w%%I%#%%%.%O%j%%e%%%%%%%%%%%v%5%%%-%u%%%Z%c%%b%%%/%)%%%%%%%%\%%%$%g%%%a%%`%%%%.%}%%%%%%9%s%~%g%~%%%s%%%3%*%%%}%%%%g%%%%{%%%%%%z%z%&%%I%%%%"%%e%}%R%%%G%%N%%<%O%%%	%P%W%%r%|%2%r%%%%%%%*%%%%%%j%%-%T%%U%%l%%%%%g%%%m%G%m%%F%%%%%%M%5%%}%O%%%%%%%W%%%%8%%%%m%%%%%%%%u%%'%i%]%%%:%|%Q%X%%_%v%%U%%%%E%%%%%%%%%%z%%%h%4%v%h%%%%6%t%%]%%%%u% %%O%%6%!%:%f%%}%%j%%%=%%u%%%%%%y%%%~%%%%%%9%%%%M%%(%J%%m%3%%%%%t%%%%%%%G%}%%%%%%%%%%%_%6%"%%%%%G%%%%%%%%>%%7%V%%%,%%%%%{%%%%%%%%K%]%q%w%%%%%/%%%1%%%Z%%%%s%%%%%%0%%)%\%%%%Z%%u%,%S%g%%=%%h%%z%%%%%%%U%%%%d%%%%1%%%%%%%%V%{%%%%%%#%j%J%%|%Y%%%%%T%i%%%Y%n%%%h%%%f%%%%9%E%%%%%%%%%%p%%7%%G%%%%%%%%%Y%%%%U%\%%U%T%5%b%P%|%%%%%%:%o%_%%%%j%C%%}%/%%O%%%%%%z%E%i%}%%%%w%1%%%%G%%%%1%W%%b%B%u%"%b%%6%m%F%%%%1%%W%%%k%Z%%t%%%%%%%%D%%%%6%U%D%%r%%%%%%9%n%+%m%%%%M%%%%/%\%V%\%%%j%%%%d%F%%%%%X%%%w%%&%%%%%%%E%K%%%%I%%%%T%?%9%m%~%%P%%2%1%:%%i%P%M%%%%%%]%~%8%%%%%%i%%C%%_%%%%%%t%%%%+%%%%%%%!%%%%%%V%%%%{%%%x%Y%%%%%h%%%%B%%%%L%%V%%%%%{%%%5%%%%%%7%>%e%%!%%%%%%%#%%%n%y%6%%%%%%%%%%%%;%n%{%,%%i%%%%%%%%%%%D%%<%9%%%%%%%%%%%%O%
%2%%%%s%m%%%%%<%%%p%%%5%d%I%f%d%%%%g%=%%%%%T%J%%%%%%%%`%%%V%%%M%%%%%%T%?%9%]%%%%%%Z%%%W%w%%^%%%%%7%%%%%%+%%%%~%>%%%=%%%_%%N%%%%%%%O%%t%%%%%%9%%l%%O%|%%%#%%%%/%	%%%%%W%%Q%D%%%%U%%%%%%}%%%%%%%`%%%%%/%"%"%%%%"%C%%V%I%%%%%%%%%%%%%%G%G%%H%%m%%%#%%%%%%%%%m%%a%x%%H%%%q%l%R%T%%%%%6%7%%%j%x%% %%%v%n%%%%%%c%%%%%%%7%%i%T%U%$%*%u%%%d%?%w%>%%^%%%%%%%%9%I%[%q%%%%%%%%]%%%%T%%/%%}%%g%%%%%%%a%A%%Z%%"%%Q%T%%/%D%%%%$%%%%%%%%%%y%%%%%~%%%_%%%%S%%%/%X%%%%%%O%
%%l%%w%%%%%j%%%%%4%%u%%%$%%%%%l%%Q%%&%%I%%%>%p%x%%%%%%%	%:%%%q%%~%u%%%u%%%w%m%%%%%%%%%%r%%%J%_%%%@%%&%*%%w%@%%w%`%%z%%Q%%%%%%%%%%%	%%A%%M%;%D%g%?%%%%%r%%%%%%E%d%g%%q%Q%%Z%%%+%?%-%%%5%v%%%M%_%%%%/%9%% %%%H%%|%%q%%%%:%%%%%%:%%%%%%%%%%%\%g%%%%%%%a%M%G%%%%%%	%>%u%G%J%
%%%{%%%%%7%%%%O%%%>%}%%%%%?%%%%%>%%%%%%%%M%-%%%%%%i%%%3%%%%%%%%%%%%%{%%%}%%%h%%%%%%%%%P%%%<%S%%0%1%6%4%%%%%%m%%%%%%D%%%%+%%%]%%%/%%8%v%%%%%3%%g%%%%5%%%~%%%%p%%%%%j%Z%%%x%[%Y%j%%%%s%W%N%%+%"%"%%[%%%%%%%%%%=%%%%%%Y%W%%|%r%%L%%%9%%%%%%%c%C%%%%C%%E%%,%%b%h%%%%%V%^%\%%%7%%%%I%J%0%$%%%%%%%%%%S%%%v%%%%%%%%G%%%U%5%%4%%%%%%v%%z%%%Z%%%}%D%D%D%%%	%y%%%%%7%t%%m%%%%%%%%%%%}%K%q%%;%%%&%%%%%%z%%b%%-%_%6%]%D%%%f%=%%%%(%%%r%%%E%%%5%%%%E%%&%%%b%%j%%%%%%%%^%%k%y%%%%%%%%k%%\%y%%%%%%%%%t%%C%%%%%%%%%%%}%\%%c%F%%%%%%,%%b%n%%%O%%.%u%%%z%%%%%y%j%%%%e%%%%%%%3%/%%%9%Z%%%%U%T%z%%%K%%%%Q%%%J%%}%%%[%%%6%%%c%%%%%$%-%%%%%,%%%%%%%y%t%%%i%A%%%4%%%%]%%a%%%`%%%%l%~%%>%%%6%%%%?%%%%%%C%%%%%%L%k%1%%%%V%%%%n%-%0%u%%%,%%%%%s%+%,%%%I%%%r%%%%%%-%%2%K%%%%%=%%<%%0%%%%u%%G%%%H%E%%%%%x%%V%%%%%%%v%X%%z%%%)%%%5%%%%%b%1%%%%`%b%%%R%h%6%N%^%]%%%%%%%4%%%%%u%%e%%%%%%%J%%p%%%%%%Q%%%S%c%f%%%%%%v%,%%%%%%%%%b%%]%"%"%%t%%%,%"%%%%"%"%%:%%A%s%%D%~%%%.%%%%Q%"%Y%%%2%%%%%%%L%%%%%k%V%d%%O%,%%/%%%%$%%0%[%%%%%c%%%5%h%%%%%%%%%Z%L%%%Z%%%T%%/%~%%2%R%%%%%%%%z%%%%2%o%%%X%%o%%%%r%%%H%%%3%&%%%%%%1%[%d%%l%6%9%%%R%t%%%]%~%%%%E%%%<%"%F%%%%%Y%%%d%E%7%k%Y%^%%%%%%%2%K%%%%%%E%D%%%N%l%F%%%%G%%%?%4%N%w%%%%%%%%%%^%%i%N%v%%%%<%%I%Z%%%%%% %%s%%%%%%%%%t%%%%y%%%>%%%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%%j%%h%%%%%%%%q%N%%%%%%%%y%\%%%%&%%+%%%%%%B%%%%Z%X%^%"%%%%%%% %%S%F%%%%%s%%.%%%r%%%%N%%%X% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/EnableExample2.png__ __9982__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%3%I%D%A%T%x%%%%{%X%%%%%%N% %y%%7%%H%@%y%%D%A%m%Q%%)%%%%%^%%%%R%%%%%T%%G%o%%%%%E%m%?%%%%%%q%[%%%%%R%%%Z%=%%%%"%%Z%%%Z%E%%M%"%%%%M%%%%%%%c%B%%%%%$%%%%}%~%%%=%{%%%%%{%%d%%%"%%%%%%:%%e%%m%% %%'%>%j%%% %%%%5%k% %%%}%Q%%%	%%%%%~%%%% %%%V%%/%%>%%;%%^%%%"%%c%%%%%%
%%D% %4%U%(%%%%%
%%%#%%r% %a%%B%%%*%|%%g%%%%%%%V%=%w%7%I%%g%@%%%%/%%%%%%0%%%%|%%M%X%%y%{%%%%%%%%%%%g%%%%%W%%H%$%%%%%%%%%%%8%
%%%%%%%q%%%%%%%%%F%%%%%%%o%H%%%%%%%%h%p%%%%%@%%%%B%\%f%%%?%s%%%%n%n%%%%+%6%%%%~%%%?%A%%%>%%%[%s%:%%%%%%%%'%%O%%%%%&%~%v%u%%%d%Q%%'%E%%%%%%%%R%+%%%r%%6%%%i%%%%j%%b%%%	%O%%%%%%%%a%%,%%%%n%x%Y%%%%?%m%%C%%%a%%%7%a%%%g%I%O%%%V%%%4%%%'%%%%%?%%z%y%%%%B%;%7%%I%%%n%j%%%%%%%%%&%s%%%@%=%&%e%%1%%%%%'%E%%O%%b%%%%+%%%%%%^%%%A%%%%H%%%%%%Y%%*%r%%w%%X%;%0%%%V%>%"%%%%-%}%4%g%%%]%%%%%%
%_%%?% %P%%/%L%9%z%6%t%Z%%%%%u%%Q%~%%%%w%%%%w%%%/%"%% %j%%-%]%%%%%}%E%%%%%%%%%%%+%*%%%N%%%3%%[%%%%%a%%\%<%G%%(%%n%%:%%%%f%%%%3%#%%%^%%%Q%%%%Q%%%%%%W%%%%%%%<%@%%%%^%%%%%%j%v%N%%%%%L%%%g%B%%f%%%%%%%%k%*%G%%[%9%9%X%1%-%@%l%%%%<%%%`%%e%%%%%%%%%%%%%%K%%%%%>%%%%%%D%%%G%g%L%_%%%%%%%9%%% %~%f%%%A%%%k%N%g%,%%t%%%%%5%%%%%;%%%{%d%k%%%%#%%I%%%?%%%%<%%^%I%4%%{%%%%!%%%%%%%%/%%8%X%%n%%i%%%%%%%d%%9%9%l%%%%S%%v%P%%%%@%y%]%%%%%T%%%%%%%%%%%%%%%%%%y%%0%%%%%%%%%%%%%%%t%6%v%L%[%%%%M%%%%%%%%%*%]%%%%%%%% %$%%%%%%t%%%%%%0%]%%%-%%$%% % %%%% %%%U%%%d%I%^%%[%o%%%%%%%%%v%%j%}%%C%S%F%%%%%%%%:%F%8%%	%%%%%%%%% %%%o%%%%%%% %%t%%%%>%%%2%m%A%(%%% %_%Q%-%%% %|%"%%/%%h%%%%%%%0%e%%+%s%%%P%[%s%%t%%%/%%/%[%k%+%r%$%%:%%%g%B%.%%%r%%%t%%%%%0%@%%%%%%%
%%\%%+%4%w%%4%%%_%~%9%/%%M%%u%%%%u%%k%W%%%%o%%%G%
%%%h%0%~%%e%%%%%%w%%%%?%E%%p%%r%%%%%%%%%%n%%%%%%%%%I%s%%%G%%_%_%%%%}%`%%Z%{%%%%%o%<%%4%%%V%%%I%E%I%%H%%%j%+%%i%%%(%h%l%'%o%%%%%t%'%%K%4%%%i%%j%%%%V%%%%>%&%*%%%% % %'%O%K%%%%%%%_%%%p%%I%%%p%%%%%%%%% %"%%%%%%%%%%%%%%%%%%%%%%%_%%W%[%%%v%1%%W%[%%%%}%d%x%P%j%%%%r%e%!%%%(%%F%+%U%%"%#%%%%%%%%%z%%%%%%%%%%1%%%%%%U%%F%%%Q%%%%/%~%%% %%%q%z%v%%s%%%%w%W%%%%`%%?%j%%]%T%%%%7%o%%%%%b%k%%%%m%%%%%,%%%%/%%D%%%8%%%%%%%%D%'%%%%%Q%V%w%%g%%%:%w%4%%%%%v%%%T%<%%:%r%%%%%%,%X%% % %5%%%%%%%%2%%;%%Z%7%v%%%%R%%%%
% % %u%'%.%%%	%O%p%%%%/%%%A%%i%%q%%%%%%'%%d%%%%%%%%%h%Q%7%%E%%%%%I%z%*%%%%%%3%w%t%%%D%%!%%%%%%6%%^%Y%%%%)%%%F% % % %%%%%%%%%%%}%%_%<%%%f%%%%%%%%W%%x%R%_%%%%%%=%%%%%%%%%%%8%%d%%/%]%[%%-%%5%%W%%%%%c%%%%%%5%A%u%%%%%%%%%v%i%%?%%%-%%x%%%Y%%%2%[%X%%%T%%% %%%%%<%t%%%%%%%P%M%[%b%%%_%?%m%%x%X%%m%%%{%%%%%%M%o%%%%%%P%Z%%%%%%%%%%#%%W%*%%v%Y%%%%D%%i%%%%2%%_%j%%]%%%%%%%%%%<%%G%1%%%%%%%.%j%O%%{%%R%%0%%%m%%%?%%%A%%%%%%e%g%g%%%/%l%x%H%%%5%%%%%_%%>%%?%%A%%%%%%^%%2%%%o%%"%%%%%%%%<% %%%%%%%k%%%%D%%%>%g%%d%[%%%)%%f%%%%%%%Q%%%%%%%%2%% % %j%%%%%%%%%%%k%%%%%%g%%%R%%O%%%%% %%b%%%o%%%%%%%%%%%%%%%s%%2%*%1%%)%%f%%%>%x%+%%%%%#%}%%%%%%%%|%%% %%%7%N%l%%%%%6%l%_%%K%~%% %%%%%% % %	%%% %%%'%%%R%%w%%W%?%%%u%%%X%R%	%%&%%F%8%%O%%%m%%%|%%%%+%%%%7%%=%%%%b%>%%c%[%}%?%%%%%%W%?%|%a%%%%%%%%%%%%%%%%%%I%%%%%=%%%%%%%o%~%%%%%%%\%%-%%@%%%)%1%%s%%d%%%v%%%%H%a%%%%%{%%%%%^%%%%%Q%%U%(%6%%%%%%u%A%&%~%/%}%%%%%%/%%f%%%/%%%% % %%:%c%%%%c%%%_%%%%%%%A%%%>%%%%%%%d%%%%%%%v%L%%%%%6%%8%%a%%%Z%%\%k%%q% %C%d%%%%%%I%%%R%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%%T%K%-%%%Z%%%.%%%%%%%%%% %%H%v%%%%%%%R%%%%%%%%%)%%%%%%%%c%%%%%%%%%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%2%%%% %% %%%y%{%%%%%n%%)%[%%%%d%%%%`%%%%%%z%%%%%Z%%%%% %%%\%"%U%%d%%i%%%%%l%%o%%J%~%%%% %a%%%%%%w%%~%%%%%j%%I%%*%%%F%%%%%%U%{%R%%}%%%V%%*%%%4%3%.%u%%V%v%#%m%%%a%%{%%%%=%u%O%%%%%%w%%%%%%2%%^%%%% %%%D%z% %%B%%5%t%%%%4%3%.%%=%(%%-%8%.%%%%~%B%%%%%9%6%v%s%I%N%f%%%%+%%W%%{%%%%<%%Z%*%=%%%%u%%J%%%$%R%%T%z% %}%%!%%%O%%%r%%%G%%t%>%%%O%%%%%%%%P%J%K%%%%"%%%%I%%%%%%*%X%% %%%%{%%Z%%4%%%%%j%;%%%%J%n%r%"%%%%%Z%%%%%%%% % %P%*%U%B%%7%M%%%%%%%3%%%%%%H%%%%k%%%%%o%~%%%4%3%.%8%%%L%%S%G%%%%%3%%%^%%%%b%%%%%,%|%%C%J%g%%%%%%%!%%%%%A%%%%%%%%%v%g%[%%%%	%%%%)%p%%%%%%%9%2%%%;%%%4%%,%%%%,%%%-%0%l%@%%^%Y%r%%%r%%M%%%%%&%%E%b%%d%1%%2%l%%%%%%%%T%K%-%%%Z%P%-%%%Z%j%%%%y%%%"%N%%%%%%W%j%%%%	%G%=%#%%%+%%%%l%%%?%x%%%%T%K%-%%%Z%P%-%%`%%%%%H%=%:%%H%=%%%H%=%d%%%Z%j%A%%%%j%%%%R%%%%%%%5%O%%%%T%%I%%8%J%%p% %%%?%% %%%%S%%%%2%%%L%%%J%%%%2%{%%q%%%a%%S%%1%%D%%%%%%%b% %%%%%%	%W%%)%,%s%v%C%%%j%%%%3%%0%e%%W%%e%%%%%%8%%%j%%%%%0%e%%%%%%%%"%d%8%%o%%%%%%%#%%%e%n%Z%%%%%%d%1%%%%%%r%%%%(%s%%%%%R%%z%%>%%s%%%#%R%%%%%R%%%%O%%%%%%%$%%s%|%V%%%%%%'%R%%G%o%%%%%2%%;%%%Z%P%-%%%Z%j%A%%%%%z%%%%z%%%%z%%%%Z%j%A%%%%j%%%%R%%F%%Y%%%%%%%%%%%%C%%%%%%T%K%-%%%Z%P%-%%%Z%j%%%/%%%%S%%%%%% % %%x%<%2%{%A%%%%%
%3%%%%P%%%%%%W%%%%%F% %T%%m%)%%J% % % %n%y%%?%%~%%%?%% % %%q%%%K%|% %%f%%%O%%}%%%]%%{%,%?%%4%% %t%%%%
%%%@%%%%%]%%%%c%0%k%%%%%%%_%%.%%%%%%%%%%%j%%%%I%%l%i%%%%%%P%%%%%L%%%2%%I%%t%%m%E%a%%%=%%%%k%%d%%%%%%S%Z%-%%%E%%}%r%%%"%%%%% %%%%%%%n%L%%%%%j%%%o%W%	%a%%f%%%%h%%%%O%O%%%%%%2%Y%%m%%%%%^%v%%%W%%?%%T%%.%%%A%%%%%%%A%c%[%% %%+%%%%N%%0% %%%%<%%%%(%%K%~%9%%%%%%%%%%c%<%%%%|%%=%%?%3%b%%d%_%%>%%%%,%% %%U%%%Y%I%%%%W%_%%%%%X%%h%7%%%4%%9%s%%%%g%o%%%%%%%%"%g%:%%%%%% %%%%W%_%%%%%<%%B%%n%%N%%%T%U%%~%%%t%%M%U%%k%%%%%%%%%y%%%^%%m%%E%X%%%%%9%B%%T%(%p%%%j%%%%%%%%K%%%%%%%%%%%%%%G%%l%A%%%p%;%i%m%R%%4%2%%%%%%s%G%%-%M%%%%B%%%6%V%^%{%%%%5%%%]%% % %s%W%'%%a%%%%N%%p%G%%Y%%%%%%Y%`%<%o%%%%%_%%%;%;%
%G%X%%%%% %h%%%%%Z%%%%%%v%%%%%%0%%*%%%%K%_%%3%U%%%%%%%%%%.%%.%6%#%%%>%|%N%%%%l%t%%%x%%%%%%4%%%%%?%%%%%q%%%t%'%B% %p%v%u%Q%%k%%.%%%%%%%p%%.%x%%%G%b%&%%|%%i%% %%%%%%%%m%%{%=%%%%%_%%e%%n%% %%%%%%%j%k%%%%%Q%\%B%\%&%'%%G%%%%%a%%l%%%4%%%%%+%%s%\%%E% %m%m%%@%t%%%%)%o%%%%%%%]%%%%%%(%j%k%V%%%%h%g%?%W%!%%%%a%r%%%[%w%%%%-%<%q%%%;%%%%%%G%%%1%%%[%% %%%%%l%%%W%%%Z% % %%%%%%%%%%%N%+%%%,%$%D%W%'%%%%% %%%%%%A%%%l%E%t%-%J%%% %!%%%i%%%%%e%%%y%%%%%H%%%Z%j%A%%%%j%%%#%%%%#%%%%#%%%%%%%%j%%%%R%%%%%%%%0%%%G%'%%%G%1%%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%%?%%%%%g%@%%g%%%%%w%%O%-%%9%r%%%0%%%U%+%%%%%%%%Z%c%%%%% %%S%U%%%`%H%z%%%%%j%%%%Z%%%%S%%%^%4%%o%)%%%%%%%%%%%z%%2%w%U%%%%x%%%%% %/%%%%%+%y%%%%J%^%
%C%%i%%%%%%G%:%r%%M%J%%%e%%%%%5%%Y%N%=%q%%^%%L%#%%i%J%%%%%1%%%%u%%r%%S%%%%%%<%9%%%%%%%%}%%%%%%2%%;%%%Z%P%-%%%Z%j%A%%%%%z%%%%z%%%%z%%%%Z%j%A%%%%j%%%%R%%F%%Y%%%%%%%%%%%%C%%%%%%T%K%-%%%Z%P%-%%%Z%j%%%/%%%%S%%a%B%%S%%%%U%j%.%%%Z% %%%%c%4%%%%S%%%%%G%%%m%5%%F%L%%f%%8%%%%%%%%%h%%v%%%A%%#% % %%%
%|%U%k%%%z%%j%%%%%%%%%%:%O%%%Z%%s%%%%%%%[%\%%<%%F%X%5%%m%%%v%%D%%%%%y%%%%Z%%X%%A%%S%/%%s%G%%-%%%%%%[%N%%%l%W%]%r%%5%%:%%%%%%%%%v%%%%]%%%%%%u%%%%8%%%%%%9%%%%%{%%%%%%9%%%%%s%%-%J%
%$%m%%%S%%c%0%%^%?%%%Z%%%z%%%%%Z%%w%P%-%%%Z%j%A%%%%%z%%%%z%%%%z%%%%Z%j%A%%%%j%%%%R%%F%%Y%%%%%%%%%%%%C%%%%%%T%K%-%%%Z%P%-%%%Z%j%%%Z%%%%3%%%%%%%%%O%-%%9%r%%%)%%J%%j%%%%%+%%%%%d%%E%%%O%%%p%%S%O%U%~%%f%%%	%!%%?%9%G%%%%%%!%%_%%r%%S%O%)%?%%%%R%q%A%6%7%%%%%%%E%%%T%-%%i%% %%d%%%S%I%%%%D%%8%%%)%b%B% %@%%%p%%%b%x%:%5%#%<%W%%Y%N%%G%%%%v%%%%%J%%%%%%K%%%%%%3%%%#%Q%k%K%%%%
%%% %%%%%%%6%%%j%%%S%O%%%2%%%%%%%%%%%T%K%-%%%Z%P%-%%`%%%%`%%%%`%%%%%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%%j%%%%R%%%%%T%K%-%%%Z%P%-%%%Z%j%A%%%b%"%%k%%%%%?%%d%%1%%6%;%;%%%%@%%%.%j%%%3%%3%%P%%^%k%%%
% %%%Y%c%%a% %%%%%%%%%%N%%%%E%%%I%%%w% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/EnableExample3.png__ __10018__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%E%I%D%A%T%x%%%%}%\%T%u%%%?%%%@%%f%`%%g%%P%%%%P%%3%%*%H%%Z%%D%+%%^%%]%%%i%n%f%[%%%%%h%%m%}%%k%{%%=%%%%j%[%n%%%%f%%W%%%%%e%%%%%%%%%<%%%%0%%%x%%%3%% %%%r%%%%~%%%%9%%%;%%w%x%s%%%%3%%3%?%v%%%%%%x%%%_%y%%%<%%%%n%	%1%%l%%%%%%%C%%%o%%%1%%%%%%%%b%%%%a%%%%%%Z%%
%%p%%5%%P%(%=%%T%0%%%%L%%B%%%4%%%z%%%6%%%=%S%%%*%G%%%0%%%B%%%W%%%%K%%=%%%%%%%%%%"%%A%m%?%%%4%%%%%%%%%%%%%%%%%%%%^%8%#%#%%%%%%*%%%%%n%`%+%%Z%%%B%%%%z%%%1%%%z%%h%
%%%%%%W%%%%^%u%%%w%%%%%L%%.%%%%1%%}%0%{%%%%%1%~%%%%_%/%%1%%%%X%%%%%%y%%%1%%'%V%?%s%%Z%_%%6%%%%q%8%%%%w%.%%%%%%%i%%%Z%$%%%%%%U%z%y%%%% %D%h%%%%%%%
%
%%%0%%G%%F%%2%%%%M%%K%%%X%%{%%%%%[%%%C%%%%%]%%%9%%%%Z%%%%j%R%%%7%%&%|%%%%%%%%~%A%%%%%%j%]%%%%]%{%%%"%s%%%%=%%e%%s%4%w%%J%%6%+%i%%,%g%%%x%E%%j%%B%%>%>%1%%%%|%%%%%_%T%%Q%%%%%%%%%%%W%%%%%%%O%u%!%%?%*%^%%%%%%1%!%% %*%%%g%%:%%x%%%%%%%,%c%%%%%%6%%>%D%%l%%%% %5%%k%%%%%%%f%%%%%Y%%%%%^%-%*%s%_%:%u%%%%%%%%%%m%%%%%+%%Q%W%p%b%%7%-%c%f%%%t%%%%%o%%b%K%%%%%%%P%T%%%%%%?%%%%%n%%%%V%%|%%%%%8%%%%%%%}%%%%%N%%%%%%X%]%%%%
%%%%Z%%|%%%%%	%%%P%3%u%y%%%?%%%z%%%%]%%%%&%%%9%%%c%R%%%	%%%%%%+%%%l%%%%%%+%%z%%%%%;%%V%%X%%%%5%%4%#%|%%o%%%_%[%g%%%-%%%U%_%%f%%%%x%%%%%%g%%]%=%F%N%%%%Q%%%%%%|%`%%%5%%%]%u%%%%}%%?%(%E%%%%%C%B%%K%%%%%%%%*%c%%%%%9%%=%%%%%%%%O%%%%%%%g%%%%s%%%%%%6%"%9%e%%%%q%%%	%%%E%s%%O%b%%%%%X%K%%V%%%%%h%%%%?%P%%%P%%%~%0%^%%%n%%%N%%,%% %P%Q%S% %L%r%+%2%m%%%%%%%j%%%%%%%%%%%%%[%n%%;%%%%%%%;%[%%% %X%%%%%#%%%%%%%T%%%%`%%%v%|%%w%%?%%%%e%%@%%%%*%%(%%
% %2%e%%%%~%%%%%@%%%%%3%s%%x%P%[%}%%D%%%O%%%%%%_%%%%;%L%g%N%&%%%%%x%%%x%%%%%%%%%X%%%r%%N%U%d%l%%T%%n%}%%%%%%*%%%;%%/%%K%^%z%%%%%V%%%2%w%%~%%%%(%%%5%%_%%%p%%%S%$%%?%\%%m%%%3%%%N%%%?%%%%%%%f%L%[%%%%%%%%%%%%%%%?%w%%%%%%%%%%%2%%%%%%%:%%%0%o%%F%a%m%g%%%g%<%%}%s%v%%z%a%D%%`%%N%%%:%%%%F%z%(%0%%f%,%%%'%.%%%:%%\%%2%%%%%%%%%%%%%%%	%P%%%&%%y%%%%%%\%0%i%2%%w%%%0%u%]%%%%%k%>%%%%v%%%%%%g%%%%%%%}%L%%e%%l%%%%%%%%%Y%%%x%o%%%%%.%w%\%w%w%z%_%%%q%%%%%%%U%U%_%%y%%%f%m%:%%%% %n%%%X%<%.%0%.%f%T%%N%%%%x%%%%%%7% %x%%%i%%%%%%O%%%%%%u%%%%(%%%y%%%%%]%/%~%2%%%%R%%V%%%2%%%t%_%%u%%U%x%%%%%%%s%%7%%%%%%%W%I%O%n%^%%$% %%%%%%%%]%'%d%%%%%%%i%%-%+%%s%%J% %@%%%%%&%$%%%%%%%%(%j%N%%L%J%%Z%%(%{%k%O%%%%%O%H%%%%%%`%%%p%%%a%%%V%x%%'%%%%l%v%%%B%%P%%5%%w%%%8%%:%%%%^%%P%%% %%]%[%u%%%%%%%%O%\%'%%%%"%g%%k%%%%%%%z%R%%%%#%%%x%R%%%/%%}%%y%%U%q%j%%%%%k%%%%%%_%|%%b%%%%y%u%%]%%%Q%y%%%%%]%_%%|%%%%%%%S%%k%%%%%%7%%;%g%^%y%%%k%=%7%%G%%%%7%%%%%Z%Z%>%%%g%%%%%%%%%%%%%%%U%q%%6%%%%%%P%%%%Z%]%%%i%%%%%|%~%%%%l%p%%*%%d%d%d%%Z%%f%j%%3% %%?%T%%%h%%%%%%%%%%x%P%K%%%%A%7%%%%<%6%\%%%%%e%%%o%i%%%%%=%%%%%%%%/%l%d%%%%%s%r%r%%%%%%/%%%7%%%%%>%%%%k%I%%%%Z%%% %%%%;%%%%7%%%%Z%R%x%%%w%$%%%%[%i%%%%G%3%!%{%Q%B%4%%%%%U%X%2%%%%%%=%%`%H%%A%U%=%l%d%W%B%%w%_%k%%%z%4%%%U%%%%%%%%c%%&% %B%%%%)%%%%%P%o%%%6%%3%%%%%%?%R%X%z%%%%%@%x%f%`%%%%%6%A%%%X%r%%f%%%%	%%%T%%%%j%%]%%%+%P%%Y%%,%%P%U%%s%%%,%)%%v%%A%%%#%{%%%%%%%%%%~%%6%]%%%%%% %h%%%%%h%q%%%%3%{%%%c%L%%%%%H%%%%u%*%%V%%%j%K%%%%%+%-%%M%%%%;%%%%Q%%%a%(%%b%G%%%%%%% %%%9%%%)%L%%%%%%%C%%%%%j%%% %%%%%e%{%;%T%J%%O%L%_%%%%%Z%%$%F%%%%2%%%%y%%#%%%%%%%8%W%X%u%%%%%x%`%%h%%]%<%%8%%%%%3%%%%%%%%%%%%%L%0%$%4%2%%%%W%%g%B%%%%X%Z%<%}%%%4%	%%%%|%%%S% %B%%m%%%k%%6%T%%	%y%X%%S%-%S%'%L%K%C%%C%%c%G%%"%%%.%H%%%P% %-%%%% %S%g%%%%%#%=%.%%0%%%\%%%$%%t%%%[%p%D%%s%=%%4%%%%r%%%%%%n%F%%C%Q%%"%3% %0%%%0%%r%%k%%%%#%%%%C%H%%%%G%%n%%%%%%%A%m%N%N%%%% %%%%j%%z%%%% %n%%%;%%%q%L%%7%?%%B%j%%%%r%%%%%R%%-%%%[%H%-%%%Z%n%!%%%B%j%%%%r%%%%%R%%-%%%[%H%-%%%Z%n%!%%%B%j%%%%r%%%%%R%%-%%%[%H%-%%%Z%n%!%%%B%j%%%%r%%%%%%%%8%p%%%t%%/%D% %%%%%%}%,%%%%R%%%%z% %%%%%%%%j%%%i%%D%]%%%%Q%-%%%%B%j%%%%r%%%%%R%%-%%%[%%%%%%%\%%%?%%%%y%%%%%%%%i%=%%%% %%%s%%I%%)%%%%%%%A%%(%% %%%w%\%%%%/%f%%u%%%%%%%%{%%_%%%	%%>%o%%[%%%%J%%%%:%%4%%%P%%G%%%"%%%%%%%%!%A%%%%%T%%I%S%%%U%%%6%%%%%Z% %m%%
%C%%%%%m%%-%%1%%%%G%?%%C%Z%f%J% %L%E%%%%%y%,%?%%d%b%%%%%%%L%&%%%v%%x%%%G%%%O%O%%%%%%b%~%R%%`%.%%=%%%%_%%%%%;%%%%%%%%%%(%%b%%%,%%%%}%%o%/%o%%y%%m%8%%u%%%%%B%|%%%v%% %%%%%%%%%@%5%z%%%%%%|%%%%O%%%\%%%%%{%%%i%!%U%%%<%%<%%%%i%A%%{%7%|%Q%1%y%I%% %%W%%%/%d%i%%%%p%%%%%]%%%\%-%c%A%%3%%%E%%%%%
%%%%%%%<%%v%%%Q%%w%%%%B%l%%%`%%%%%G%%%%%%%%%6%[%y%q%M%%%I%3%%%V%%%%%%j%%%%%@%p%p%%%%K%J%E%P%U%e%%%$%%%u%%e%%%%%%.%%%%%%%T%%%%2%%%J%&%^%[%`%n%4%B%%W%-%%%%j%w%%k%o%%%v%%%%%% % %%%%%%%%C%%%K%%%o%~%%%?%%%%5%%Q%%@%C%%%%%d%%S%z%{%*%%%%T%r%%X%%%A%_%%%%i%%%n%%%%%%u%%k%c%%%"%y%%U%%*%e%%%7%%l%*%%t%%q%%L%	% %P%%m%%l%%v%,%%%%6%%n%%%%s%%%%%p%%%%%%M%%%%%%%%%%%b%#%?%%L%;%#%%'%i%%%~%>%%s%%%F%%c%1%w%%_%%P%%%%%v%+%%%%%.%5%%%E%%j%%%E%%b%%%%%%%%%-%Y%%%%%S%:%k%%%g%d%.%%%f%%a%A%I%%+%%%%j%%o%%%%f%'%%%Y%{%%B%%%O%-% %%h%5%%%G%K%v%]%%%j%M%%%k%3%%s%%%M%% %%p%M%0%%%%%G%%%k%U%%%1%%%&%%%%o%%3%%%%;% %%%Z%%%%%%%%%r%%%%%R%%-%"%^%F%%%w%@%%%%%%%K%m%F%F%%H%k%&%%%X%j%E%z%m%%%8%%%r%%%%%R%%-%%%[%(%%7%%P%R%%O%(%%%1%%%#%%%%%%R%%-%%%[%H%-%%%Z%n%%%k%o%%$%%%%X%%%%%%%%%%%%%S%%H%%%k%,%:%p%R%%`%%%%:%%%%-%o%%n%z%v%%F%f%%%y%%%%I%=%m%%%%%%t%v%%%%T%E%%^%1%%%%W%%%%%%%<%%%%%%%0%Y%%% %%%%
%%%%%%5%%v%u%X%v%%%%%Z%I%%z%p%%%%%.%x%l%Z%%U%c%i%%%^%4%%%Z%H%%%%%%%%K%%.%x%l%%t%%%%Q%v%%x%%%%%%%%%%%%%%%Z%%%t%%%%%%%%W%%%%%?%%W%q%.%%%%%w%_%;%
%%%%K%%%%J%%%V%%%^%L%%%%%t%%%k%%%%%%&%%%%%i%%z%%%&%?%d%%%%}%C%j%%%%r%%%%%J%%q%%%%%%%%z%%B%}%-%%%Z%n%!%%%B%j%%%%z%%%%%%%%%z%%C%I%=%b%%%Z%n%!%%%B%j%%%%r%%%%%%%%&%%%z%%y%%%^%f% %b%%Y%%%C%%!%K%%%I%=%%%%%<%%%%%%u%%%%G%%V%%%i%%%%N%%j%!%z%R%%%%%%%%%k%i%%%	%%D%%e%7%b%%<%%J%%%c%%%%%w%~%z%%>%6%%%x%%%%#%O%%R%%%%%I%%W%%%`%;%%%%%[%7%#%L%f%'%d%%5%%%m%%%R%c%i%%+%%%%%3%7%%%%%#%%%L%}%u%O%%%%a%%4%+%C%k%m%B%%J%%%=%%%%%u%"%^%R%%%%%y%z%%%%\%%%%%%R%%y%%E%E%%'%d%%%z%,%f%^%%%%;%v%0% %%[%%%M%%%[%;%z%%%5%%%%Z%%%%%%%~%%%W%X%%n%j%4%%%%,% %G%%%p%L%=%Y%%%d%%%%}%C%j%%%%r%%%%%J%%q%%%%%%%%z%%B%}%-%%%Z%n%!%%%B%j%%%%z%%%%%%%%%z%%C%I%=%b%%%Z%n%!%%%B%j%%%%r%%%%%%%%&%Y%R%%%%%%<%%/%%1%%% %G%%%%I%=%'%%% %%d%%K%U%G%%%%%S%%r%U%%%%z%p%%%%W%%%%%%'%%%%%y%%%$%%%X%t%%l%%%2%%%%%;% %%Q%%%%<%%%%%%%%y%e%	%%+%%U%'%:%:%%%%%A%%j%!%%%z%%%%%%%%7%%% %%%6%<%6%/%%%%%%C%%j%%4%%%0%%%%%%%4%%%%,%%%%%%%%B%%%%/%%%%%%%%%b%g%%6%Z%%%%%%%,%^%%%B%%s%I%%%I%=%8%%%5%%l%l%%%u%%%+%%%V%%%%%m%%%%% %@%v%%w% %C%%%0%%%%a%%%D%%%1%%%%%B%j%%%%r%%%%%J%%q%%%%%%%%z%%B%}%-%%%Z%n%!%%%B%j%%%%z%%%%%%%%%z%%C%I%=%b%%%Z%n%!%%%B%j%%%%r%%%%%%%%&%%%z%%%%%}%_%%%%%%%%%%%%'%%-%%%%?%%%%c%%3%%%%V%%x%M%%%N%%5%%%%!%%%%%
%%%% %@%V%^%!%W%%%$%%,%%%`%%%?%%%%%|%%,%%%Z%%%z%,%f%%%%V%m%l%h%%(%/%K%%%%%%%j%%{%m%d%D%#%O%%%=%%%@%%%%X%%%b%%%3%%%Z%l%s%%%k%e%5%%%%o%~%D%%S%%9%%:%%%t%A%%4%%%$%H%=%%%%%8%f%o%%1%%D%%%%% %%S%%%S%o%`%%%%%%%%%r%%%%%R%%-%%%%%J%%q%%%%%%%%Z%n%!%%%B%j%%%%r%%%%%%%J%%%	%%%%8%%%z%%%!%%%B%j%%%%r%%%%%R%%-%%{%%M%%%%%%N%g%@%%%!%%"%A%R%%\%%W%%%h%%%% %s%%%%N%7%=%K%%%%%9%%%h%(%A%%C%%j%G%E%%"%r%%%'%G%k%%%F%y%%C%%%V%%%%%\%%%y%y%%+%%%%f%]%N%^%!%W%%%'%% %\%%%V%>%%%% %%%%%%x%B%%%%r%%%%%X%Z%%J%%%E%%%%%%k%%H%%9%S%_%%%z%]%$%%%%U%%%R%c%%2%%%%-%L%%%%%%%!%[%%N%D%K%%E%%L%(%)%.%%%[%%%Y%%u%%@%-%%%%$%A%%%%%%%%%R%%@%w%k%%%%^%v%+%%%%D%F%%%%6%q%%%Y%%%%%%%%%%z%%k%%%%%%Z%%o%H%-%%%Z%n%!%%%B%I%=%n%%%%%P%R%%[%%%%%R%%-%%%[%H%-%%%Z%n%!%%%B%j%%%%r%%%%%R%%-%%%[%H%-%%%Z%n%!%%%B%j%%%%r%%%%%R%%-%%%[%H%-%%%Z%n%!%%%B%j%%%%r%%%%%R%%-%%%[%H%-%%x%%s%%%%%%% %%%%j%s%r%r%%o%%1%%t%S%%%%%i%%%n%%%%[%% %l%%%q%%%A%%=%,%=%=%}%%%@%%%%%,%%%%%%%z% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/Grid.png__ __7122__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%%;%%%%N% % %%%I%D%A%T%x%%%%y%\%%u%%%%%o%@%%>%d%`%%A%D%%%%% %%%%%%%%B%,%%V%%%%%%%%%0%%%v%,%%%%R%@%A%%%2%%%%M%I%\%%%3%Q%A%@%9%T%<%%\%%%%q%%%d%D%%'%%%%G%%%%%%%%%%%%%%%%%%%%@%%%;%u%%)%%y%%%%=%%%%%%%'%"%S%%%%C%%D%%%%%%%=% %%%a%%=%%%%%F%n%F% %%.%%9%%f%J%%[%%%%%x%]%%%F%%	%%c%v%j%h%f%K%{%%%D%h%%%%%%%	%%%%%%%%%%%%%%%%%%%%%3%%%=%%{%%%t%%T%%\%%t%%V%3%%%%5%%%%3%~%a%%B%%}%%%%Z%%%E%Y%%%%z%-%m%%%%%%u%%W%y%%%S%%%%%%%%%"%%t%F%~%*%%%%%q%%?%%Z%%%%,%%%%%W%%%|%k%%n%1%%%%%y%f%%U%%%%n%%%?%&%r%%7%%H%[%%`%%%%%%%%%%%%%;%.%%:%%%%%%\%%C%%q%7%%%%M%L%M%m%%%%V%%%l%{%%%%%%%=%%l%%q%%%%%C%%%%6%%%\%%%%%B%%%%%l%{%X%%%%%%:%%i%%:%%c%%G%%%%%%Y%%<%{%%%%]%%%%%%^%%%a%b%V%%%%%%%%%%%%%%%p%%%A%%l%B%%%%
%%%%(%s%2%%.%%X%%%% %%2%&%%%%%%%k%/%%%P%M%]%?%X%%?%%h%%W%_%%%%%%%v%j%]%%%%$%%8%%2%%%=%%%%%|%%%}%%%%%%%1%%;%e%A%"%%y%u%%l%.%%m%[%%%%%%f%%%%%%+%B%%%%@%%%%%%E%%%%.%%5%%r%%%%^%e%%%3%%K%U%b%%%L%x%k%8%%%t%%7%%I%w%%%K%#%%%%%Q%%p%%%%#%~%%%%%^%0%%%%%%%%^%o%%%%.%%%%+%%B%%%%u%%%S%%\%%%%[%:%.%%w%%%?%%%F%%r%*%%%L%)%%%$%%C%%>%%%I%	%[%^%J%D%%f%N%%%X%3%%p%c%Z%%%e%%%{%F%%%%%~%%1%}%%%T%%%%%8%%%%%o%%`%%%X%Z%%"%L%%%@%G%%%|%%?%`%%%X%%%_%%%%%"%\%k%~%.%%%[%r%%=%j%p%L%w%*%%%s%%%k%%%%6%'%%%%N%'%%%%%%5%%	%.%%%%%%%%%%%%%\%q%%%%%%%Q%i%%f%%%%%%%%@%%~%%%%%%p%%T%%%+%%>%]%[%T%%%%N%%q%!%%%G%W%/%-%%%%%{%%%-%%%f%%d%%%%%E%b%a%k%%5%%%'%?%\%%7%C%e%%%%%%%v%%%%%%%V%%%U%$%%	%%%%3%R%+%%G%&%%%%e%f%%s%%%%%%u%]%%+%%%%%m%%%S%g%%%%%%/%%%%0%%%\%J%%%%Q%[%%%f%e%%%%%%{%%%3%k%%j%6%%m%%%.%D%D%%v%%%%(%`%%%%%^%%V%D%n%C%%O%%L%%c%%%%%%%V%%%%%T%%G%%)%%%%z%%%%%%%%%q%u%%>%%]%g%F%p%h%%%%%=%%%%}%r%L%o%q%W%o%U%%k%%%m%Q%3%%%%%@%%%%%%%J%%%?%'%I%%%%%L%>%4%%%%N%%%%%%%%%%%%%%%%'%&%%%%%%%|%%9%%n%%%%f%%%%%o%%I%G%y%%%%%%~%%%%%%%%%\%.%L%%*%'%%%M%%s%%%%%%w%%%%C%%%%%%%%%%%%*%%:%%%%%%%%8%%|%%<%%6%p%T%v%%%%9%%%?%%,%%%%)%%^%j%%%%%%G%:%^%%%%%%%%%m%"%%%%N%%%%%%%%w%%%%%M%%%>%%D%%9%%(%%f%%{%G%%Q%%%%%%d%%F%%9%%%%%%-%%%z%~%%%%.%%%%5%$%%%%%3%>%%%%%%"%n%%G%%%L%%%R%%%6%%%G%%%y%%%%i%%%%%%S%w%%%5%%%o%%%%w%%)%D%D%4% %%%%%%%'%2%0%%%%%.%D%%%?%5%%f%%%%%%r%W%%N%%7%B%%%%@%T%%%%%%% %%u%T%%%z%%%%H%*%%_%%%%%%%%%.%%%]%%"%%%%[%P%%%%%%%%%|%%%%%%%%%%%%%%%C%%%L%%%%%\%|%$%%v%%%^%%%%%m%%%%V%%>%%%d%%%%%%m%%k%k%%%I%%%%%B%7%s%%%%%%%%}%3%%%K%W%%-%.%%%%D%.%%%F%%y%%%$%%%%%%%%%%|%%%!%%%%%%f%%%%%Y%%%%%!%9%%:%%%|%P%%%%%%%y%%%~%+%%L%%%n%r%G%%%%%1%9%%%z%%% %%%%\%%%%%%*%%%%%%%%>%%%%%%2%%%K%%%%%%z%%%%%%%%n%%Q%v%4%%%%%%%%5%%%%%%%%%%%%%`%%%%%h%%%%E%^%%%u%%%e%^%[%V%u%%6%i%%`%%%%%%F%r%%%0%)%%%%%%u%%U%a%.%%u%%t%w%%k%h%%{%%\%$%"%%%%^%%%?%%%%}%%%%>%k%%%{%|%%%@%C%%j%%%V%s%<%%%%%%%%%%%%%$%x%z%%%h%%%%%%i%%%G%K%%%%%#%%%%%h%p%X%z%%K%%%%%%%%G%%/%%$%"%%%%%%%%F%=%%@%%%%%%%l%%%%%%%R%%%%%%%Q%%%%1%%%"%:%%%%%%%r%%%9%%%|%%%%%%%J%%%f%%%%%`%4%%%z%/%%n%]%%<%%%%%u%i%o%;%%%%%%%%%%%%$%|%E%%%%e%D%%P%Z%9%%C%j%o%n%V%%%r%%%e%%%%%%%%%%%[%%%X%&%;%9%%%%%%%/%%O%D%D%%V%g%%%	%%v%%]%%W%%%%k%F%h%%%>%k%R%%%F%o%%8%%o%%%w%/%%%%%z%%%~%%%%%6%%@%X%E%A%%]%%%%c%%%q%%%(%%%%x%R%%~%B%=%%%P%%?%_%.%{%%_%%#%c%&%%%%%w%%%%%%%%%%%%%%%8%%%%%%<%	%%%%#%%%U%S%%O%x%%%%"%"%*%%%{%%G%%%R%:%%~%%6%	%%%%%C%:%%%N%	%%%:%<%%%/%%%%%%/%6%%I%%.%{%y%l%%%%%%%U%%I%%\%;%%L%%%+%%'%%%%%%%J%D%D%%%%%%%#%}%%%%%%%%%%`%%G%%%%%%R%%h%Q%%%%%w%0%%m%-%%|%%!%1%!%%%%%%%h%%%'%%&%%I%[%%%%:%%Q%#%i%p%%R%%%%%%%%%2%
%%%,%%%%%%F%=%a%g%%}%%%;%v%l%%%%%%%%%n%%Z%%%%%%4%%%%%%7%7%%%1%0%%%%O%%}%%%%%%%%%c%%%%E%%%^%q%S%-%% %k%i%%u%%o%%%%%%&%y%%%q%%%%Q%v%~%%%%5%G%G%%%%%P%(%%u%%%Y%K%%Q%)%%-%%j%x%!%`%J%%;%h%%%^%%%%%%C%K%%%r%N%f%%X%% %]%%D%F%%{%%%%%E%%%k%%B%%%%N%{%%%%C%}%%%%V%%%)%%%$%U%%f%%%	%%C%%%%%.%Z%%%%%j%%/%%%%7%p%%%%<%%p%%%T%*%%{%%%%%%%%%R%f%)%%{%%%%%%&%J%%%%%% %%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%%%t%f%%%L%%R%%%%%%2%K%%a%%D%%Y%%%Y%%%%%%t%R%V%(%%b%%C%%#%2%%%%5%%t%:%)%'%'%%%k%%%%%a%%D%%%%%Y%%%%%%%%%R%%&%%2%0%%%%	%%%>%O%O%%%?%%%B%%%.%V%%%(%%%X%%
%E%%*%Q%3%Y%%s%%c%%%=%%%d%%%O%@%%%C%~%%%%_%N%%%%%'% %%%%%%H%%D%%M%%%?%X%%!%4%%L%%;%h%8%W%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%0%%3%%%%I%%%$%%P%%I%d%f%m%%%R%%=%
%%%%%P%(%%%%4%%%%%%%%%J%%e%%7%+%%D%%/%?%b%%%%%%+%%%%D%%%%/%%0% %%%%%%O%%=%%%&%%%^%%%%?%% %`% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/GridFlex.png__ __8258__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%	%%%|%%{%}% % %%%I%D%A%T%x%%%%y%\%T%%%%%%%%u%%%M%q%%%%%%%O%%%%Y%%%%%%%r%)%%2%o%y%%%%]%%%%[%?%%%u%%%%%%%T%r%K%%%[%t%%%	%>%\%R%%/%%%`%%%%(%%%c%%z%%%%%%%%%%%9%|%|%?%%%1%s%8%%%%/%/%%9%%%p%%d%%%t%s%%%,%t%$%%%8%%%#%%%.%+%+%%%%%;%?%%%_%%% %%)%%%% %%%%%w%%d%%H%%%@%B%k%m%%%Z%%%o%5%%{%%%m%%%%	%$%%%y%P%[%%%%7%+%%%N%H%%n%%%t%%r%%%%%%%i%M%%v%%%o%%%%%%%%H%%%%%%^%%P%%?%p%%%%%%4% %P%%)%%{%%%%N%%+%,%,%%%%s%W%%I%x%%q%+%k%%H%%%]%%	%%K%%}%%%%%%C%%%o%%%%%%
%%%
%%%%'%[%Y%%%% %%%c%%%9%%7%%%%%%%%.%u%%m%%j%%%%%%9%%%%%%%?%^%%}%%%%%%%%J%%%%%X%.%%%$%%	%%%%F%U%%%=%%%e%%%%%%%%%%%%v%%%%%%%:%%%%z%%%F%%%7%% %z% %P%%{%%%%%&%/%\%%%%%g%7%g%'%%%%G%%%%0%=%%J%%R%?%%%9%%:%%%%5%1%#%%%%%%~%%%%%k%%%%%=%%%%%/%%%%d%c%%%%[%%%%%[%}%b%I%%N%%%a%%%%%%%.%i%%%)%%%%%%%%%e%%{%%%%%%%%%%M%%%%%I%y%%%e%%o%4%?%=%%C%%%x%s%%H%-%%%%%]%%%%%z%k%'%?%%%%%%f%%G%%O%^%W%f%~%%%w%%%o%%%%%n%q%%%l%%%%%%%$%n%n%O%%t%%%%%*%%_%T%_%%%%%%=%\%\%%%%%%%n%%*%%p%o%J%%p%%Q%%T%%%%V%S%%%%5%%%l%%%s%%%%%%'%%%%%8%%%%~%)%%%n%	%|%%%2%f%U%.%%%W%.%%9%a%%%%%~%%%I%t%.%w%%%%%%%=%%%%O%%{%6%%%%%%%%x%u%%%%R%%%%%%V%%%8%%%c%[%%7%,%%%%%%%R%%%%%e%%%%%%&%%G%%/%X%%`%^%X%%%y%%G%F%%%%%	%Z%%%%r%%%%%%%J%\%%r%\%h%%%%%%%%3%i%e%%%%%%:%%{%%_%O%%z%j%%%%[%O%Z%K%%%%%%%o%%%^%%%4%b%%%Y%%%%%=%%%]%%9%b%%%$%w%%9%%%%S%e%%M%%c%%G%%%o%%%%%t%6%%%%%z%S%%?%%%u%%J%%%%%%w%%_%%%%A%%%%m%^%%%G%%%.%i%$%%%g%%%%%%k%<%%}%%%%%%%i%Z%%"%%z%c%%v%c%%%%%T%_%%%c%%.%m%%u%%h%=%%`%%%%%%%%%%%%\%%%o%%k%X%j%%%%%&%%S%v%%%
%%%%%%%%%%%%%%%%^%%%%%%=%%%%%H%p%%%%%%%%%%%%%%%%}%%X%s%v%K%%%%
%a%%%%%%%%%%%%%P%%%%%%%%%%}%2%%%|%%%%%%
%%#%%%/%0%T%%%%:%%%(%j%%%_%%%t%%h%L%%N%A%%T%B%%%%7%c%%%%%%k%%%%%%(%%%%%%%c%%%8%*%>%n%%0%o%"%*%+%7%%%<%%%Z%8%%%%%%%I%%%%%%%%%%g%%%;%%%%%u%%j%%%%%Q%%%o%^%%%%0%$%%%%!%U%%w%%i%{%%%%%6%%%S%%%K%%%%%%%%%%n%%%_%B%%%%%%e%%{%%%2%%%%/%%%%%}%%%%%M%%%%%`%%%%%%%%K%%%%t%_%%%%.%%%w%%K%%W%%%+%%a%%%%% %%%%%%5%%%%#%%%%!%%%%q%%%%.%%%{%B%%%%^%%%P%%3%4%:%-%%/%9%%%y%=%%%%j%7%%%
%%%S%%{%?%4%%%&%S%%%%%%b%]%/%%%%=%%O%!%%w%%@%%.%%%%3%7%%%9%v%%%%f%%%%%F%%%%%%.%%%k%N%%M%W%%%.%W%;%E%%%v%%p%%%%%n%n%%n%*%%N%% %%{%%%	%p%%x%%%F%S%%=%%%4%:%%'%%M%^%P%1%%%%g%% %%%%/%%%%;%%%{%%%%%:%%%b%U%;%'%%%%u%%%%%%A%%%%%%I%%m%%J%%%i%%%R%%%%2%?%2%%%*%E%j%7%,%%%%%"%%Z%Y%%t%%%%%%%%	%%0%4%%y%"%"%%%%A%D%%?%%%%~%%%%%%%
%%"%%%%%R%%K%%%%D%%%%{%%%I%~%%%A%D%%r%%%%%%%K%D%T%@% %%%%&%%%%%%$%%%%%J%q%%%%S%%%g%%#%%%%-%%%%%(%$%!%f%^%%%%o%%%%B%%%k%%%}%a%%%%%%%%%%%S%%%v%%&%%%%9%%%%%^%%=%%%%%%%%l%%%%5%%)%W%%.%%%%3%%%/%u%Q%{%%%%%%:%8%%%% %%%%%=%%j%%%H%P%	%%>%B%%%%%%%%%%%%%|%T%%~%%%%{%%%~%C%:%o%<%A%D%D%q%s%%%%%%%[%?%%%%%%%%'%%%%^%%n%H%%%%%%%Q%%%%{%%%%%%Q%*%n%%S%%%%%%%%%%]%%%%q% %%%s%%-%%j%%U%%%%%%%3%%%[%|%_%%`%%%%n%2%%%%%c%#%r%%%n%%N%H%b%%%8%%%C%%%9%%%?%%%G%#%%%W%%%%%-%%%,%%%c%%%%[%%%%%%#%%%x%q%%%/%?%*%%d%m%%%7%%V%;%%%%%%%%%P%%%%%r%k%~%g%%%%%!%=%%%%%=%%%%%%%_%.%%Q%%%%=%%r%%%%3%%%%W%R%>%%M%%Y%[%F%%%%%%Z%T%%9%%%%z%%Z%}%%%/%%%+%%%%%G%%%%O%%%%%-%%%%n%*%%O%%%H%%r%%%j%%t%U%%%%%{%%v%M%%%%%%(%(%e%@%%%%%%%L%U%%%%>%L%%%%%%%%%%7%"%
%H%%u%%%M%%F%%%P%M%%%?%%#%%%%%%% %%%+%Z%r%	%%%%%7%E%%%%%%%%%%%%%%y%G%z%%%%?%s%U%%%$%%%%%B%V%%%%O%%n%%%%}%%%%%[%%'%%%!%%%"%%%%t%%%q%p%t%W%e%%%%v%%H%D%%U%%%%%%v%q%2%%%%)%%%%%%"%F%~%y%t%d%%%5%%%%:%1%%%%%_%%%%%%%%%%%E%%%%%i%%%%r%H%8%%;%<%%%3%e%%&%a%%%%%%%%d%%|%%g%%%%_%%O%%*%m%h%%%%%%e%%%%%%9%%%q%%%s%*%%g%/%?%!%L%7%w%"%P%%%<%f%%%%M%%%%%%9%%%_%%%%%r%&%:%%%%%%%%~%%#%%%%&%l%)%%n%%%%%%%%R%?%%I%"%"%%%S%R%%%%%%%%%%[%%%%%3%(%%%%%%%%}%%%<%o%%%%%^%S%%%6%%%%.%%%%%O%%%%:%%M%i%1%	%%%%a%%%%%%%%%%%'%%F%%%d%%n%%%%o%<%%j%%i%c%}%%%*%/%~%U%A%%%%}%%%%%^%%%<%t%%%:%q%:%%T%%%k%e%i%%%=% %%s%%!%%)%%%%%%%h%%?%N%%%3%%%%%%%%%r% %%%^%%%n%%%%%%;%%T%%}%%%%%%%I%%|%%^%%%R%}%}%L%%%%k%%%n%%%%%M%%%%%%%%%%
%%%;%%%%%k%	%[%%%'%%%%%u%%%u%W%%U%^%M%K%%%d%%%%%%%%%%%%%>%%%%%%{%%%%%%l%e%a%%%}%%%%%%%P%z%%%%%@%6%u%%u%%%4%%g%;%%N%%%%%%%V%%%J%%L%E%%%q%%J%%%3%h%%|%%%)%%%%%%%H%%%a%%\%%%%%%%z%%	%,%Z%%,%%%^%%t%%5%k%6%[%/%%h%%%~%%%%=%>%u%:%%n%U%%r%%%%%%]%%%%%'%%j%%%x%%d%j%%%a%t%G%%%%%}%%%%%r%%%y%%%&%%^%%%%b%%%A%%[%%%%%%R%%=%%%M%%m%R%%%% %&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%%%%%%%Z%%a%2%5%%;%%n%%S%'%R%J%%%%;%%%1%1%%%%I%%%%%)%%%e%%v%%x%%%?%%H%%%%)%%%e%%%%%%%%%%%2%%%%a%%D%J%I%%g%I%%0%u%"%%%%%%d%%:%%R%R%%Y%R%2%L%%H%)%)%%,%)%%%N%%%%q%%%%S%'%R%J%%8%K%J%%%%)%%%e%%%%%%%%%%%2%%%%a%%D%J%I%%g%I%%0%u%"%%%%%%d%%:%%R%R%%Y%R%2%L%%H%)%)%%,%)%%%N%%%%q%%%%S%'%R%J%%8%K%J%%%%)%%%e%%%%%%%%%%%2%%%%a%%D%J%I%%g%I%%0%u%"%%%%%%d%%:%%R%R%%Y%R%2%L%%H%)%)%%,%)%%%N%%%%q%%%%S%'%R%J%%8%K%J%%%%)%%%e%%%%%%%%%%%2%%%%a%%D%J%I%%g%I%%0%u%"%%Q%Z%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%%%!%%%W%`%%%%%I%%a%%%%%F%w%d%%+%%%%%=%
%%%H%Y%%%%5%%k%
%%F%w%t%/%O%%p%%d%_%L%%%%%%%%%%%%%%%%%W%%%%!%%%%%%%%%Z%%,%%%%%%%u%~%%%%v%H%%%%%;%%6%Z%%%9%%%%%H%%%h%{%%%$%%% %%u%%%Y%%y%%%%%w%%h%t%:%%%5%%-%%%&%S%%%%K%%%%%j%l%l%%%:%%&%D%%%t%%%%N%%*%{%%%n%%%}%%%%%%%%W%@%%%.%%	%%%m%9%6%%f%\%l%%%K%%C%D%%%#%%%%%%$%%%%:%C%%w%%%%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L%8%%%o%%+%%%%d%%
%t%
%C%^%%!%O%/%%(%d%%"%e%%N%'%%8%L%%%%%%%%%:%%%%%k%%%%%%%%%%%3%%w%%\%%e%%%%%%T%%\%+%%%%D%%%%%%%0% %%%0%b%%%%% %%	%%%%%%^%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/HBox.png__ __7054__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%6%%%%%"% % %%{%I%D%A%T%x%%%%y%\%T%%%%%%3% %%l%%%%%"%(%$%
%%`%8%`%i%!%D%*%%7%%M%%W%Q%%U%%t%0%%L%%Y%%Y%%R%%%%%%"%S%%%%a%(%*%n%h%%%#%%%%_%%%%% %%%%%%%%_%%%%9%%9%%%%%%s%%E%f%%%%h%%%#%%h%%%%%%%g%%%r%Q%Q%Q%D%%]%%%%%%4%:%%%%%h%z%% %m%C%[%%%%%%%n%F%%%%%%U%%%%%%%r%k%m%<%V%%%% %!%Q%g%%%%%%%+%$%%%%{%%%%%S%%]%%%%7%.%~%%%%u%%>%%%3%%h%5%%)%7%%%O%%H%%*%y%Z%%%%%%%%%I%3%~%%%%+%%d%%%%%f%%?%%%%%%%f%%%f%%%%o%%b%c%%2%%B%y%%%;%'%%%%%%%%W%%%%%[%%~%k%F%)%%%%%%s%%%%%%7%r%%%%K%%]%%N%%%;%j%%%6%%%%h%%%%%%L%%%%%4%%%C%%%S%%%n%%Z%)%k%i%k%%%%%U%%s%%x%[%%V%'%S%s%%j%a%%w%%%%%}%%,%%~%%%%%%%%%%%%%c%%B%|%)%+%%%%%V%%%%~%f%%%_%%J%%%d%%.%%%%%3%%z%P%%%%o%%%?%M%q%|%%^%I%%%%c%%[%%7%h%%5%%%%%7%\%%%%S%6%%%7%%y%%%,%%%%%%%:%%%%%i%%%f%%%%%%j%%%%%o%%%@%'%S%%%%=%,%|%r%D%_%%%%c%Q%%%%%T%%%%%Z%1%%%C%%%!%%%%N%%%t%%B%"%%%%%%%%9%%%%%%%%r%%%%%%%%~%%%%%%%n%%%[%%%%0%%j%%%%n%3%%%6%k%%%U%>%%%%%%4%%%m%W%:%%%%%t%%=%%(%%%v%%%%Q%%~%%%~%%%R%%%%8%%%%%%%%%j%F%%%_%%%%%%%\%r%%%%%%%4%%t%%G%%%%~%%%.%%%"%h%%%%%>%%%%%%%%b%C%%%%%K%%%%=%k%%%%%>%%%%%_%%%S%'%%"%%%%O%D%%%%%%%F%5%O%%%L%%%}%%%%%9%%T%%%%%%%%%%[%%g%H%%%%%;%%%%%%%%#%%k%%^%%%%%%%%%%%%%%M%]%%%%%%A%%R%}%*%%Y%%%%N%r%%x%0%%%%%+%%% %3%%%%%%+%n%%%%%%%%%%%P%%S%"%%%%%%%E%%6%%%X%%)%%u%%x%%%%%%%;%%%%%N%%%%b%%%%%%%%d%%%%%%9%D%u%%z%F%%%%%.%%`%c%c%%%G%%%%%o%\%%c%%I%%H%_%%%%	%%a%%'%%%%%%%r%%D%%%%%.%%w%%%~%%P%%%\%%%%?%o%%%%X%D%%%%%:%v%%%)%%%f%%%h%%%%%%%%%%'%%%!%z%%O%!%"%%%2%%%%%]%H%%%%"%%%%%y%%'%%%1%%%_%b%%=%3%y%%'%%%%6%:%%L%q%q%%%%=%%%b%%T%L%%%%%%%%%%%%%%x%z%%% %#%%L%%%|%i%%%	%%%%#%%v%%%%)%%%%=%%%%%3%6%~%%T%z%.%r%%%%%%%{%%%i%]%|%(%e%%%*%%1% %&%%%+%%%%v%%%%%%S%%v%%u%6%%Z%%O%%%+%?%%3%O%%%k%%%B%%a%%%%%%%\%%%%%%l%%%%%%%%J%%%%o%%%|%q%%%%%%%%u%%	%%V%%%*%%%U%%m%%%%%%%r%%%%^%%%%%%%%L%%Q%%%?%?%?%}%G%8%%%%%%%%*%%%]%5%%Q%%p%5%5%%%'%%*%R%%%%%g%%'%w%u%%%%%%%U%%%%%%%%%%%t%%%%%%%%%i%	%}%c%%%%%%.%%%%%V%g%7%%%n%%D%4%.%%p%\%%%%G%K%%%%o%~%%#%.%<%l%%(%%s%K%%%%.%i%%D%%%t%%%%%"%!%%%%1%=%6%%%%*%v%A%%%%Q%%%%C%%%%3%%%%]%%B%%%1%s%%%%%%)%%o%%%%%%%4%x%%%%@%%D%%%%C%$%%%%%w%%%t%w%%%/%%%%%~%%%%%%D%%%%%%V%%%S%_%%K%"%%%%%[%%%%%%%%%%T%%%>%%M%%K%T%%%%%%B%%"%%%%%%%U%%%%%%%A%%W%o%4%%5%,%%z%%H%%%%.%=%H%%%%%%%\%%%%%%%%%%%%%%%d%%%F%%T%%\%t%*%%%%%%%%%%%%{%w%+%N%%%y%>%%%%%%Q%%%%A%%$%$%B%%D%%%%r%1%%t%%%/%%'%W%{%T%V%%%D%V%]%m%%%Y%P%v%%%%%g%%%%1%%M%%%%}%%%T%%V%%'%%%%-%[%%%%%%t%#%"%%%%%%%%Y%%%%%(%%%%%%%%%%%5%%m%%%%@%%Q%%%%2%%%%%f%%%%|%/%%%%%e%%7%%%%L%%%%	%6%%%%%t%%%%6%%9%%%c%%%%&%%%%F%i%f%%%%%%%%2%%%%%?%o%%j%%e%m%%k%g%%%%P%r%%%%%W%%?%%%%%[%!%V%F%%G%:%X%%V%%%#%%%%D%%0%n%%%%%'%%%=%%%-%%%%%%%%%%%%%%z%%%%"%%%%%%%%v%{%%%@%% %%%B%I%%%'%%%%%%%f%%%%P%%%%6%D%%'%%%%%%%%%%%%%%%Q%%%K%D%%?%M%%%%7%%%%8%%%%%%U%i%l%N%I%%%Y%%%%%%%%%%%%-%+%O%%"%%%%%%%l%%(%%%%V%*%~%%<%%%c%g%"%%%|%U%%%%%6%%%%%%%d%{%-%Q%S%%%%%%%R%:%%P%~%%%%F%%%%%^%u%f%%g%D%%%%h%%%%%C%%.%&%Z%%%%%%%%%%%%%%%%N%f%%u%u%j%/%/%%%7%f%%%%%%=%g%T%%%V%%%X%%%q%t%%%%%W%/%'%"%%%;%%%}%B%%%%%%_%%%8%%%%%%%%k%1%v%%%%%%%%~%%%O%y%;%;%%%%%!%p%P%%%c%!%%y%%~%*%%%<%%%`%%%%E%%%W%%%a%%%~%%%%%%%%%%Q%I%%%o%+%H%$%%%y%q%m%%O%%%%"%*%<%%%%h%%%%%%%%%%%I%$%.%%%y%%%%%%%%%%%%a%%%.%k%f%%%&%%1%%%%%S%3%2%z%{%%%B%'%w%g%%J%%%%s%_%i%%%%%%%%%%\%%%%6%x%%%R%%%%%2%%%%f%E%D%%{%i%g%%	%%7%%%%U%%%3%%%%%%%H%D%D%%%s%%%s%%%%%% %%%	%%%%8%%%%]%s%%%%%D%%>%%a%a%%%%%%D%%D%%-%%%%{%%%\%!%%%H%:%:%%%%%%%I%%&%%%%%%k%%%%M%%%%7%w%l%S%%m%%%%%%4%V%%>%\%r%r%r%R%R%R%%%W%%%n%%%%%%%,%y%%u%%%k%7%%%%	%%v%X%%%%%%%%t%%%%}%u%v%%%Z%c%%%%j%%%%R%P%%n%_%%%%%%%%r%%%%%%F%y%%%%%%#%%%% %%%%%%%%%L%%%/%%%{%%%%i%%%%'%s%/%*%R%%%%%=%%%r%Z%|%%%%%u%U%%%u%%	%%%%%%_%%%%d%%%%*%/%q%v%6%i%l%e%P%%%%%%d%%%%%R%<%%%%%7%%%u%c%o%Z%%%%%%%%%5%|%%*%%%]%%%-%%%%%%%%r%%%%%%%%%%K%W%n%%%%%%%%%%%%%?%% %&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%%=%%O%H%%%%5%1%%%%%%%5%=%%v%)%>%!%Q%% %%%,%4%%N%%2%%L%S%%P%%%L%%=%%'%%%D%f%%%W%w%%%'%~%%%L% %Z%(%>%!%1%9%9%%%%%%6%%E%E%E%i%z%% %%%%%%%%%9% %%%%%U%%%%%F%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/HBoxFlex.png__ __7968__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%	%%%%%F%% % %%D%I%D%A%T%x%%%%{%\%%e%%%%%5% %r%%%%A%%%% %%%I%%	%%%%%%%%%%%%%%%k%%%|%U%%%T%%%%Z%[%=%i%%%%y%%\%%%%%S%%M%]%%%P%%U%%%Q%%%%%%%%%%`%%[%%%r%%%%%%%%%%%%\%}%%%%%% %%%%%%%%%%%H%%%8%%#%%%w%%%%D%d%%%%%%%%u%0% %%%%%% %%%c%%o%&%F%o%%%%%%w%%%%%%
%%v%%%l%}%|%%A%g%#%A%B%a%%E%;%%(%%%+%%%%%%O%%M%%%%6%%%%k%?%~%%%%%%^%%%%%%Z%'%)%w%c%%%%%%%I%%%%%%%%%%~%%T%%%%%%Z%m%F%F%F%%%_%%V%%=%\%%%(%}%=%H%%%%%%i%x%T%%%5%%v%/%%*%3%%@%%;%%_%%H%M%K%%%%{%s%%%%)%%!%l%%/%%%~%a%=%%l%%%%%B%%%%%%%%_%%%%-%%%%0%%%%2%%C%%%%%%Q%u%%%%%%%%%_%P%W%?%%%w%3%%J%%%%%:%|%%%%%%%%M%%%%%)%%%2%%B%%]%%%~%%%/%%%_%%%%%%J%%%%%%%%%*%L%%%%%%%:%Z%%%%%_%%S%%A%%%%%%%	%K%%%%%%7%%Q%D%~%%%%%~%%%%$%%%h%%y%%%%%%t%%%%%%%%%P%A%%%%%~%%%%t%t%%%-%%%%%%U%_%.%%{%t%%%%D%T%%%%%<%%%0%$%%#%k%%T%%m%%z%|%%:%%%%%E%S%V%%%%%x%/%%%M%%%k%%g%s%%%(%m%{%%%%%/%#%%%N%%%%n%%;%%%/%%%/%%%p%C%:%%%S%%
%%z%%%(%S%a%r%p%%%S%3%%%%[%K%%%W%%%%%%+%%a%%%e%%%%%%%%%%o%:%%C%%$%{%%%%k%%)%%%g%f%%%%%%%%]%%%%%%%%%^%m%;%%d%%%%%%%%_%%%%)%%%%S%%%%~%%%%%%#%%%%%%%y%%r%%%W%%%%%%%%%%r%%%%%%%4%%^%%}%%%w%%]%%%Y%%%m%Q%%T%%%%%%%%%6%%%%9%w%%%%%%%;%7%%"%%/%)%%%"%%3%k%%%%%%%%%J%_%%e%]%%%O%.%%P%y%%%%%%%9%%%7%%%%%%%%%%%<%%%L%u%%%5%E%o%|%%%%%%%%T%%%%%%%.%!%%W%%%S%%%u%%%o%%%%%|%+%%%%%%J%%K%)%u%%%%v%%%%g%%%m%%%%%%%%%+%6%~%G%%%%%%Q%%%%%%%%%%%%%%%n%%Z%%%%%5%%%%T%%K%"%%%%%Y%u%%%l%%%%%%%u%%%%c%%%%%%2%%k%h%%%M%M%%%%%%%%~%%%Y%%%]%%%<%e%3%k%%p%%%%%3%%J%%!%%%o%%>%%,%?%%`%n%l%m%a%%%L%%D%X%%%H%%%v%%%%%%%O%;%%%u%a%%%%?%%%9%q%%^%%%%%%%%V%%%%%%<%%%%Y%#%c%T%T%z%x%%%%%%%-%%}%%%%b%l%%b%"%"%%7%%%%~%%%2%%%%%%%P%%%%%%=%5%s%%s%%m%%%H%%%%T%%%%%m%%u%/%%J%.%%%%%-%%%a%%%%%F%"%"%%?%%%%I%<%<%y%]%%5%%%%%T%%%t%%%%%%%%%%%[%%?%%%%%%%%q%
%%%%%%%%%%%D%D%4%%%%k%%D%T%q%8%%%%%s%%=%V%%T%W%%=%%R%f%%%%%8%%=%~%r%E%%%%b%v%%%%%%s%%% %s%%-%%%%%R%%(%U%#%%%|%%:%%%%%M%%%c%M%%%y%%%%>%p%%%%%%%%X%Q%%%%)%%%%%%%J%!%>%%Q%!%%%%,%|%%%%%%'%_%%)%%%$%V%%%%%|%%%-%%%r%%S%%%/%*%%%F%M%%f%%8%%%%F%"%"%j%%%s%%%%3%,%%%*%b%%%%%%%%%%%5%%%%%%%[%%^%%%i%%%r%%%%%%%?%%%Z%k%&%%%%%%%%%?%n%%%%4%1%k%%%%%Z%m%%%s%%\%%k%%y%%s%s%+%s%%%"%2%%%J%%/%%-%v%%%%%%b%%e%%%z%% %%y%	%e%%%%%p%U%%%m%%%{%c%R%V%%n%%C%t%%%y%%%(%%X%%8%U%%%%%=%$%%%~%K%%%E%%u%%%y%%%c%%%%%%b%:%%%%%j%%%(%%%%%%g%%%%%%z%%%"%1%)%%%E%%_%-%%w%%%%r%%%%%%'%K%V%x%;%%%%%%.%%%%%%%S%%H%%$%%%%%%%t%%%,%0%%N%%%Q%%%h%R%%%I%m%[%%%,%%%%%k%%S%%%%%%%%w%l%=%_%%%%%y%%J%E%D%%|%%N%h%%%%1%#%j%%;%p%Z%%%	%%r%'%%%k%Z%Y%%%%H%%%%%%%%%%%F%%Q%%9%k%%%|%F%~%%%&%%%%%%j%O%%%%T%I%D%.%%%%%%Y%%%%%~%%%[%%n%%%%N%R%.%%%%%%o%F%%x%%%%J%%%Y%{%*%%%\%%%j%%%%%K%K%A%-%$%%%%V%x%%%y%%%%%%%%%]%i%%+%%%%D%%%%%8%%%%s%D%D%%%t%%%(%%%i%[%g%l%%%I%z%.%%%%(%%%O%&%%%%^%>%%%%?%1%%%%%%k%%%%%%^%%D%%%`%;%%%%=%%N%%=%8%%%%%%%%%%B%m%%%!%m%w%e%%w%%%L%%%/%%%%<%%z%%%|%%%%S%7%%%z%O%w%%%%%%v%W%%%x%0%%%%%%%%%%3%%%%9%%?%7%%%%%%%o%%%%%w%K%%a%%%%%C%%%%%%%%%%	%%%{%k%%%%%%<%r%%c%h%g%'%<%V%T%I%D%#%%M%%%t%%%%%%t%%%%%%%%%]%%%w%v%%>%O%%%%% %{%w%%%%%%%%%%%%%%%%%%p%%%%%%%@%u%%%%%%	%p%u%"%%t%%h%%%%%%%%%%"%|%%%(%%d%1%%%?%%4%%J%?%\%y%%{%r%Z%%R%%%%%%%%%%z%%%I%%%A%%4%%T%%%%3%%%Z%%%M%?%%%%k%D%%%%r%%%%%%5%%j%%n%)%:%G%6%%%%%%%J%%%%%%:%%%A%%V%m%F%D%%+%%t%[%j%%%"%"%%%%H%%%o%%J%%%{%%%%W%!%%u%%%%%n%t%%%%z%c%%%]%%%%%a%%s%%%#%G%%}%%%%%B%%%%b%%%%D%%z%u%%l%7%%%%I%%/%%%%m%%%%b%%%%%t%%*%m%I%%%>%%%%%a%%%%v%5%%%]%%%%%%%%L%%%%t%%%%%%%%%%%L%<%%%%_%R%C%C%%o%?%%%?%%%%%%%=%m%R%%%%%%%%%p%}%%%>%%%~%%+%%%_%s%N%%%%z%%%%%o%%#%"%%,%x%{%o%-%%%g%%f%%%%N%{%7%%%%%%%q%%&%.%q%%t%{%%%u%4%%%%%q%%%%}%%Y%%%%%%%%*%%%K%F%%%%N%%#%"%%%%%%%x%G%%Q%%%%%I%%%p%%%p%}%.%V%%~%%W%x%v%e%%%%s%%%.%%%K%D%D%%y%?%%q%%%%%%f%%_%%%%%a%%>%%%f%%%_%%%%%%C%%%J%s%%%%%%x%%%%%%%%%*%k%%W%%p%l%%^%y%e%%%%%%%%%%o%%%%%\%%%%%%%%%%l%%%C%%%%%%%%%%%%q%%;%>%%%`%m%V%%%7%%%%%z%%%%%%H%^%!%6%R%(%%%\%%%%%4%%%z%%J%%%!%6%%%%{%%^%%%f%%.%>%N%%T%%%%%%2%3%3%3%2%2%z%%%%%%{%8%%%%D%%[%%%%r%e%}%%%%%%%%%z%%%%%w%%%%%%%%%%%%%%+%%%%{%s%%%A%%%%%l%(%}%~%%Q%%%%<%%%%H%C%%g%%W%%%%=%%%j%%u%%%%%%%%%%%}%%%%%%%%%%*%%%%%%%%I%R%%N%%%%q%%T%%%A%%=%%%$%%%%%%Z%%%%%v%%o%%%r%%j%g%%'%%%%%%k%%%%6%%%}%{%%%%o%%%%%9%%%e%%{%%%%%}%~%%%%;%u%%3%%%/%w%t%%V%%%%[%8%%I%I%]%%%%%%%F%w%%%%|%e%%%%_%%c%%+%I%i%I%]%%H%%w%#%O%%p%%%%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%%%\%F%%%l%%%%%y%`%%%%|%%n%%G%>%@%)%%%w%%%%%f%%%\%%%%N%% %%|%%R%%%%%%%%n%-%%N%%S%7%%#%%%%~%'%%%%%%$%%;%u%X%`%%%|%%%%%%%%%a%%%%%%:%,%0%@%B%%S%%%%H%%w%%%% %	%%N%%%% %!%%%%%%$%%;%u%X%`%%%|%%%%%%%%%a%%%%%%:%,%0%@%B%%S%%%%H%%w%%%% %	%%N%%%% %!%%%%%%$%%;%u%X%`%%%|%%%%%%%%%a%%%%%%:%,%0%@%B%%S%%%%H%%w%%%% %	%%N%%%% %!%%%%%%$%%;%u%X%`%%%|%%n%%G%%%%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%%%%%%%%&%%%%%U%S%%%%%%%%*%,%%%%'%%%%%%(%%E%j%Z%z%j%%%\%%%V%%%%%4%6%6%%%U%X%%%%%%%E%A%%1%%o%%%%%%%J% %%$%5%-%=%3%3%%k%e%`%%%%%%%%{%% %%%%&%O%%<%%c% %%%%%%s%M%%%L%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/HButtonBox.png__ __8892__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%5%a%%%% % %%%I%D%A%T%x%%%%{%\%T%u%%%%%%%%%%G%a% %%%%%%%%%%L%i%%%%j%%%%%%%c%%%|%%%Z%f%%%%j%k%%K%%H%%%`%%%%%i%%%%%%%%@%%g%%%%%%5%%%%1%%0%%%%e%%%%~%>%%%9%%s%%%%%<%%3%3%(%N%%%%%S%n%V%%\%s%"%
%%%7%%H% %%%%%%%%\%%%%%%&%%%%%2%3%% % %%%s%%%%%f%>%%n%%%%%.%%%%%%%%%%%o%k%%%H%%0%3%%I%%-%|%%&%+%%%#%H%%%%Z%%%~%m%%%%7%J%%q%_%%%%%%%#%%x%h%z%R%n%%{%%%i%%%%%%t%%%%%%%O%%W%%%%_%Y%&%%%%%%%%%?%%% %%%%J%%}%%l%a%c%%%%%%%%%%y%%%
%%7%%%%%%
%l%%%%`%%?%%V%Z%%%,%%p%%%%x%d%%%%%h%%%%%-%j%o%%6%p%%g%B%%%%%%R%q%%k%%%%%%%%%@%+%%%%%I%c%%%%
%%%%%%%n%%A%)%w%0%7%%%%%%%%%%%%M%k%g%W%%%%6%%\%y%%%#%%%%>%%%|%%%%?%P%%<%%%%%%(%*%^%%%i%%C%%u%%%%%%]%%*%%#%%%%%~%%:%m%v%%%%|%%_%%%%%%%%%:%%%;%G%J%%%%s%%Y%%n%%%%%~%%%%%*%h%%%%%%%v%I%[%%N%%6%<%%.%%E%I%%%%%%%W%%q%%%%%%E%%%C%R%.%X%%%%~%%%%%%X%%K%%%%6%k%j%j%%%I%%G%%%%k%%g%%O%%R%h%%%C%%%2%%%%%%%9%[%k%%
%
%%%
%%P%o%n%H%%%~%%%%L%%%%c%)%,%%l%%h%i%%%m%T%:%%:%%z%M%t%%Q%%%%w%%%%h%%%%%%%%o%%Q%A%%%%%3%V%/%_%%I%%%%>%%^%%%K% %%%%%%%i%l%r%e%Z%%f%e%y%%%1%%%^%%x%Q%%]%%%d%%%%%%%%%D%%R%%|%)%%%"%"%%{%%%%o%S%%%%%%W%%%%%%%n%v%%2%%%%%r%%%p%%%%%%+%3%%%j%"%%%%:%/%T%%P%%s%%%%5%%O%[%%s%%.%D%T%'%W%%%%%5%b%Y%%%%%%?%%%%q%5%%%%3%%%2%o%%%v%%y%%%%$%%%%%%%%%M%%%>%%)%%|%%<%%%%R%%%%$%_%%:%x%p%%%%%Q%%%%Y%S%m%%%%e%%?%%%%?%%%Y%%%U%%%l%E%%!%a%c%%S%%%S%%%%%-%4%`%F%%K%%%%%G%%;%\%%%%)%O%%%>%~%%%\%S%%%8%%%%%%p%"%"%j%%9%L%q%%%D%D%%W%7%%_%%%s%%%%%%}%%%%_%%%%8%%%:%L%%%%%%%q%g%Q%%U%%%%%D%[%%%%=%7%%%%%%%%l%D%g%%%%%%%%9%%%%%P%y%%%%%%%%%&%	%%a%k%%%%%%%%M%%]%%%%C%i%%%%%%%%B%%%z%i%^%%%%|%<%2%%-%Z%%x%Q%%%w%%%%N%t%!%%%q%%w%%%W%%%5%]%`%%	%%+%&%%%%?%=%%%%g%%9%%%%%B%%3%%e%%%)%%%%%%%%]%%%%%%%%%%%%5%%%G%[%<%}%H%l%n%f%%%a%%%%%*%"%"%:%~%t%%E%%/%%^%%k%O%'%
%%V%%%%>%q%V%L%\%Z%%%%%%D%%%%%~%!%%%%[%%%U%%I%[%v%%B%%%"%%^%%%%%%%%}%%o%^%i%%%%o%%H%%%%%%%%D%%%U%%=%R%%_%~%g%%%1%:%v%r%%%%%e%%0%k%%-%%k%f%%B%;%J%%%7%%t%%>%r%%%%%%%o%i%%%%%%%%>%D%/%%%%%%z%%%%%%%%U%~%%%%*%!%%%u%Y%%!%%U%%p%%%%%%%K%%%;%%%%%%%%%%'%%%%%U%.%%~%9% %%g%X%7%%p%%%%6%%%Q%C%%%%%D%%n%%=%%b%}%n%d%_%o%%%%%%%N%%.%%n%+%%#%\%%%%%%z%%%!%%%%#%k%<%%%%%%k%=%)%w%%%%%%%%%%J%u%%%%z%%%%%_%%%%%%%h%m%m%g%m%F%w%%:%%%%%%%%d%%)%%U%%%y%%%% %O%"%%%Z%1%A%%%%K%B%T%%%%+%{%f%%J%Z%=%%%%%%%?%l%v%%%%%%/%^%Z%%%%%"%d%Z%J%f%%s%%U%%%%
%%I%%%W%%m%O%%E%{%d%%%%!%%%>%}%v%%%%c%%/%}%r%^%%%%v%%%o%f%%%%A%D%%%.%%%=%G%%%%%%%^%%%%%%~%%1%w%%%%%D%%>%%%%y%% %[%\%`%h%v%%%(%%%%%%%%4%K%%8%%%]%/%%%A%%%%%%{%%U%g%%% %%%%&%%u%q%!%%~%%%%%,%q%q%%"%j%,%%}%R%2%6%p%`%B%%%%%%V%q%Y%%A%$%	%%%%%t%%%U%%%
%%z%%%%w%%#%%i%%%%%%%#%5%%%%j%%@%D%%N%S%%~%%%[%w% %2%}%%%S%%%J%%}%z%R%%<%~%%%{%%%%%%%%%%%K%%%#%~%g%%J%%:%%%w%%%%%"%a%&%%%%%e%% %'%%%%%m%%p%7%%%%%%K%%%%%%[%^%%9%K%D%D%%%%e%&%8%_%%%n%%%+%%%%%%J%D%t%%%/%%%G%%%%C%D%%/%O%%%%+%%%b%%G%E%%k%%%%%8%y%V%%m%%%7%%%%%%i%%%-%f%j%#%q%j%o%%%Y%Y%%]%7%"%K%%%/%%J%B%%%%u%%9%Y%%%%%}%%%%K%%o%T%%%%%[%%%%t%%%%%%%%%%%%%%%z%c%B%%7%%%%%%%>%%%m%%n%N%%%.%%%%%%%%%%%~%[%*%%*%o%&%t%%o%%%g%%%%v%X%x%%%%<%'%%{%%%%)%%%%H%g%%D%}%%%z%-%%%b%%%m%u%%K%5%%c%A%%=%t%^%B%%=%;%%%%%%{%X%}%%%{%%%}%%%%q%%%%%G%D%%3%%%%%%%%k%%%H%D%%!%%%(%6%X%J%D%%%%%Q%%k%%%H%%%%%?%%%%9%%=%%%[%%%%D%$%%%;%%%%%Q%%A%t%%%%N%% %%I%S%%%F%(%W%% %"%%~%%%%%2%%%%%n%%8%%%%G%%%t%%%I%%,%%%i%%%%%%%%J%%%%B%U%%v%%%%%"%r%%%%6%`%s%u%U%%%%d%%%<%%%\%W%%%%%%%%}%%%%O%m%%%%z%v%%%%%%%%S%g%%%%6%f%%%.%%:%U%C%D%%U%%%%%%h%i%%%a%%%%%W%%%=%b%%9%%%%T%%%!%9%%%%u%%%%%%b%"%"%*%%%%%%%$%%%%%2%%%%%%%%%%_%%%%v%%}%%%%%%%}%%%%%`%g%%%%%$%L%9%%P%+%o%z%%%%%%%%h%:%%U%%N%Y%z%V%$%%%z%B%%%%%%&%"%%:%%%%Z%%y%%%F%.%%%%%q%$%%U%%%%%%%%%%x%W%:%%q%%.%%%%%%E%%Z%2%[%%w%%w%%H%%%%%%|%%%%%J%D%D%U%%N%%%%4%%%N%|%{%% %%%C%%%%%%H%%%%}%%g%%%z%%9%N%:%n%F%%8%"%"%%.%*%=%%%g%%%%%?%W%D%%%x%7%%>%]%g%%%%%%%%%%/%%%%%[%%:%%%%%%~%%P%{%"%%*%%%%$%%6%-%%%%q%%%%C%m%%F%%%O%C%u%%k%%%Z%%%Z%o%{%%6%%%C%%(%*%%%%W%%%%%8%Q%%%`%t%%%:%%%%f%%H%%%%%%>%%%%%%%f%f%%%g%%%D%%%%T%%u%p%%%%%%P%%y%%5%e%;%%%%%D%%%9%%%>%\%^%^%^%n%n%%}%%%}%%%%%R%%%H%%%%%+%W%%5%%%%=%<%%%[%%4%|%%%%;%%%%%%%%`%l%w%{%%%Q%%%0%[%i%%%n%_%%r%%%%:%%_%%%;%<%x%%%_%%*%%Z%%%%%%d%2%%%%0%[%%2%(%%%
%C%_%?%%~%%~%%%%|%%=%)%%%%%4%j%%%%-%I%%%%%%"%2%%%'%%j%%%%%%%%%% %%%%%%%%%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%\%%%%%%%%a%T%2%%l%%%%%K%%%%%%%%d%%%%%j%%%%%%%%%%%x%%n%%%%%%%%%%%%%%i%%%%%%%%%%%%%%t%%%L%%Y%%l%%%%Z%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%%r%a%%%%%%%%%O%%>%c%?%%I%%%%%>%M%s%%%I%%$%W%%z%\%%%%	%n%<%%%%%)%W%=%A%%4%n%%%%%%h%{%i%%%%T%%E%#%X%%,%%I%%%%%R%e%%%%A%K%%J%K%%%%%%%%%%z%d%%O%%%%%%%%S%V%%%%%%%5%7%R%%0%|%%%%5%%
%U%*%%<%3%9%}%A%z%%S%%|%S%"%%%%J%%|%%*%L%%L%J%%*%%%%9%a%k%%%%%%%c%}%p%%%%_%%%=%d%*%y%f%r%%%%d%g%%%%%*%U%%%j%%C%l%%%%%\%% %_%i%%c%O%%A%%%%D%D%%%d%%%5%%%%%%q%%%%%/%%)%-%U%%{%%x%%%n%%%%q%%%@%A%*%%%%%%A%%%%*%%)%%r%(%>%%%T%%%%i%%Y%%%5%%%%%%%%f%?%%W%#%{%O%{%/%j%>%%%%%%%%%+%%%:%%%%%%%%%%%I%\%%%%`%%%%{%%}%S%5%%M%)%'%%4%%%%%!%<%#%%h%~%%%q%^%%%%%%%%%%%%%%%%%L%*%%J%^%%7%e%h%%%D%Q%%%%%r%"%%%%%%%%%%N%%%%%%%%m%%%%%~%%%%%%%%%]%:%%%%%% %%;%%B%%%%%%e%%%%%m%%=%2%%%%%%;%%%%%%%%%%%r%(%n%%%%%%%%:%%%M%+%%}%%%x%%!%D%%,%e%%%%%%%%%%X%%2%4%B%%%%r%%%%%5%%M%W%%%.%0%H%s%%%*%'%@%%N%$%%%s%%%%%%E%R%%A%%+%+%%%%5%%%O%%)%%]%m%%%c%8%%%%%%%%%J%w%%%!%"%%%%%%%%%&%%I%%%$%F%%v%%%%%%%%%H%%%]%D%D%%%%%S%s%%%%B%P%%%%d%%p%z%%C%M%%%5%%!%%'%%
%%%%%%%%%%%/%%%_%%q%^%^%^%%_%B%%7%S%z%%&%%%%%7%%%l%%%%%%%}%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%Z%%%c%%%%v%%c%S%N%%%%%%1%%%)%%d%2%S%%%1%{%v%f%J%%%d%[%%%%c%(%%=%;%3%%%%%m%%/%%~%%k%e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%\%%A%c%}%%%%%%%p%V%%&%%%h%%%%%%%%%%%%%6%%% %%%%%Q%%%%%%\%%&% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/Panel.png__ __7956__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%0%%%%<% % %%>%I%D%A%T%x%%%%{%\%T%%%%%%%%%.%8%%%B% %%E%%%% %t%,%%%b%d%%%%%a%%%%%%%A%[%%%%]%6%h%%%%% %)%%<%%%%Z%%%%%%%2%/%%%8%\%%A%%D%%%%?%%%A%%%%%%%}%%%%%%%%%~%X%%a%-%I%8%y%%% %%p%%c%%1%$%%a%%%}%%%%%K%H%H% %"%C%%;%%%8%%%%%%%%%% %p%g%%%}%g%L%x%Z%/%w%#%%p%%%[%%m%%%6%L%%%%%\%%%F%%	%"%]%%%m%%%%%
%"%%%$%v%7%%0%:%%y%%%%%%%%W%%v%g%%%%%+%%%%%%%%4%t%D%%%%%G%j%.%%%%K%%%%%%~%%%%%J%%y%y%y%=%%%%%%^%%E%5%%%%%l%d%j%%%%%%%%%%z%%O%%%O%%%%%?%%%%%%%%%%%%5%e%A%%%%F%%%a%%%%%4%O%%%K%%%%%%%\%f%%%%l%%9%%%%%2%%}%%%G%%c%%%%j%y%%%+%}%%%%%%%%%C%w%%n%%N%)%%%%Z%%%*%V%%t%%%%%%%%%=%c%k%%]%%%v%b%%;%%;%g%%T%m%K%%%%Z%%%%%n%%%%%%%%%%%~%%%%%X%8%%%%%%%%%%%R%}%%
%w%%%{%%m%%%%t%%}%%f%%%%%'%%]%%{%%%m%g%c%$%\%0%0%%V%N%%%%%r%%%%%D%%%%>%T%%%%%%9%%%%}%%%O%c%.%M%H%.%%%%<%L%%%%%%Z%3%%g%d%%%% %%t%]%:%%%S%%D%"%;%%O%%%%%%%~%%%%%-%
%+%3%%%.%%%L%%%%%%%%%^%%~%k%%%%W%%}%%(%%r%%%%_%$%%	%%%%%1%%^%i%%%0%:%%%%%%
%%%%%n%%,%/%x%%%%C%%V%%%@%%%?%}%*%%n%%%o%f%%%T%]%%U%%%D%D%4%$%%%%%T%%%%%%O%%t%%9%%R%%x%k%%%x%K%%r%%%%%%%%M%%%%H%D%%%%%%j%%X%%{%%%%%Z%>%%%%j%%%%%z%%%%[%%%%%\%%%%y%;%.%Q%%%%%%%%\%k%k%%@%D%%N%-%^%%S%%%%%f%%(%i%%%x%&%%%_%*%%~%%|%G%o%z%%%%%%%+%>%/%%%%%%B%%%%%%%%<%6% %%%%%*%%%%9%%%%%I%%J%~%X%s%%%%]%%D%8%%/%%4%%4%%%%)%%%%%%%%%r%%g%;%j%%%%%N%%%k%%%%%%%%%%%%%%%%%%}%U%%u%%%Q%%"%%%%%5%%v%;%E%%-%%c%%K%%%"%%|%%9%"%6%i%%%%~%7%o%Z%%U%%%%Z%%%*%%%`%$%%%%%%M%u%_%%0%b%%%8%%%%I%%%%8%%>%M%%%%|%%q%s%%%K%%%Y%%%%%%o%%%T%}%`%%%o%%/%%=%@%D%T%%0%%}%%g%%%%%%s%u%%%D%D%%%O%%%v%%%%%%%%%%$%%%.%r%%%s%%%%"%%%%%%u%O%L%_%'%K%%%%%%%%H%T%%c%%%%c%s%%7%%%K%%%%%%S%O%%%%%%|%s%P%%%o%d%|%r%%%f%%%?%"%%%%/%J%j%%%N%_%%%%Y%C%b%%7%'%i%{%%%%%%%}%}%Q%%%%%y%%%%%%%%%%%%%%%W%%%%1%%%>%%%%%%%%%%/%%%%%%o%%%%%$%%|%%D%6%%%%h%
%%%%%%%%%%%Y%%%+%%M%9%%s%%%%A%%%%%\%%a%%%/%N%% %%%%}%%%:%%%M%%%%%L%%%;%J%?%:%z%%%%'%{%%%%W%s%%%%%%%%%%%%%Q%C%%%%O%#%c%%%-%%%%%<%%%y%%%G%%+%%%%%%%%&%%%`%j%)%%d%c%%q%N%%%R%%%a%%&%%%%%%%%%%[%\%%%#%%%%%'%%f%/%%%%%D%g%%g%|%[%"%%%B%%%q%%%6%d%% %%%%y%%i%a%%%%H%B%g%%%R%%%/%e%%O%%v%%}%%%%%%%%%%
%A%%<%e%%%C%%E%%p%%%H%s%q%%%%%%%%!%Y%R%%%%%%%n%%%%%`%G%D%%%%%%%%%%%%%9%%4%%%	%Q%>%D%%%%+%%%H% %r%%%%%%D%%%/%]%%%%R%}%%%%Z%%~%%%%%%u%%%%,%%%%%-%%%%%D%%%%%%u%%%%%%%%%%A%%9%%%k%%4%%%%%%%%K%n%%%%%%%%%%%7%%l%%%%!%g%%%%%%%%g%f%&%%%%%`%l%%%x%%0%%%2%%E%%%%%%%%%%a%m%%%K%d%?%%I%%%5%%%%%%%%%%%%%%n%%%%%l%%%%Q%D%D%?%o%%<%F%>%%%k%%D%%4%e%%A%%}%%%%_%%%%%%%%%%_%%b%Y%%7%w%%W%M%%%%%%%%%k%%%%%%Y%}%C%%h%%D%%%%%%%%W%%}%r%d%n%%%%%9%%%%%%%%%V%%%6%&%4%x%%%%=%%%%L%e%%%?%%%%%c%%%%m%%%%^%7%w%A%%%F%%%%%%%h%%%^%%%&%%o%3%%%%8%X%%%%%3%7%%]%%)%%%%x%<%%n%%%z%%%%%3%]%%%%%%%%%%%e%F%%%%%_%%8%%)%:%%,%%%%%%%}%%(%m%s%%%%%%!%%%`%%6%%%%%%x%r%%;%%%%%%%%%u%`%%%%g%%;%%%%%%-%%;%%z%%V%%%V%%u%%D%% %%%%%%*%%%%%]%%%%%%%%%>%%%%%O%%$%%%W%%%%%%i%%%%%V%]%%%%%]%,%%%%%%f%K%C%%%"%%%%4%%7%%%%U%U%m%%%%%P%%%%n%%%%%%%W%%%%%%D%%%%%%%%n%.%%%Y%%%%%d%[%%%%%H%D%+%%%L%s%%%%`%%%%%/%w%o%%%%%%%%S%O%w%%%2%{%%%%)%G%%%]%y%,%q%%%%%U%e%f%%%%f%K%%%%%%%p%:%{%l%%,%(%%K%!%b%%w%%s%%
%
%%%%%%~%2%%%%%%%'%%^%%!%%I%%%K%3%|%%%%%%.%%J%%%%%f%%u%%9%%%%%%:%%/%$%%%B%.%%%w%%%9%z% %%%w%%%%%>%%-%P%%%%%%%%%t%%%%%%%%%%]%6%I%%%Z%%%%	%/%%g%%%%]%'%%%P%}%x%%%%%%%%v%%%%o%%%%%%%w%%B%S%%%%%%n%%K%v%D%D%%%%%%%%%^%%%_%%l%%=%A%<%i%%%$%"%"%j%*%%%r%%%%%%]%%%O%%%\%`%%'%%%%%%W%%h%Q%=%N%t%%3%%%%%%%w%%%%p%%%}%%%%%v%?%!%6%%%%%-%%%D%:%%%%%%%%%T%{%q%s%%%%u%%=%%%%%=%x%%%E%?%K%%%%%%%%%%%h%%%%u%/%f%%%'%R%m%%%%%%%-%%%%%%%%%O%%~%%%%w%:%%%%_%%%%%h%%%+%%S%%%%%%%%%%%%%%%%J%+%{%%
%%%$%E%%'%i%%%%%%%R%%%%A%z%%%g%V%[%:%%|%%%z%%%%%%%%%%G%%%2%%?%%%Q%%%%%%%%u%@%{%J%"%%%=%%F%%%%%%%%:% %z%%%%%{%a%%g%%%%R%%&%%M%%x%%u%T%f%U%%%J%y%Z%%%%{%%%Y%%%%W%~%J%y%Z%T%T%%\%%%%%a%%W%%J%y%%%J%%%'%%X%k%j%%I%%e%%%%%e%%%q%K%%%#%%U%z%%|%8%=%f%%4%2%p%%%%%%8%J%<%%%%H%%)%k%=%O%%>%@%%3%%%e%%%l%%8%%@%G%%O%Y%%<%%%%P%%O%N%%%%%%<%%%%
%%%%%%{%B%%%.%%%%%N%%%z%"%O%!%i%%-%J%y%%j%L%y%%%%-%Y%%%%%V%=%%=%%m%U%g%%%%%%(%V%%H%2%{%%%%%%%%%=%%U%%3%%#%%%%%^%U%%%,%%R%%O%%%1%%%%%i%%j%%'%%`%%	%%%%[%%%s%%$%)%%%%p%%z%%Q%t%%%%%.%%%%%%%%%%%o%%%P%*%%%%%/%%%%q%%%%%G%%G%J%%>%#%%%T%%z%k%%%x%%%,%%(%%%J%E%k%<%%;%;%D%%%%%"%\%4%%*%%%:%%%%B%%a%%5%o%%~%V%%%%%b%f%E%%%%%%%R%%w%%%%>%k%%T%V%e%%%%%%%%%%%B%-%%% %A%P%%%K%!%Z%%%%N%%%4%6%%x%z%B%% %%%%%%v%\%%O%%%^%%<%%%>%%%%%%V%%%P%*%%%6%P%F%%%%%%%%%%%%%E%%%A%%N%%%6%z%%T%%%%%%%%%B%N%%%{%A%2%%%U%%%%%%%%w%%G%%(%%%5%%%U%%C%%%=%}%%m%g%%v%%%%%%%%%G%4%p%%S%%%%6%?%?%%w%%%	%%%L% %e%`%%)%%%H%%%@%%%D%%7%%%%z%%[%t% %%%%T%%q%%%%%%%%%%%~%%%t%%%%%>%N%4%%%%v%0%%n%%,%_%%%0%\%+%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%P%%A%9%%{%r%%/%%%+%%%K%%)%K%%%{%%% %=%u%%%%%;%%%:% %%%k%e%`%%)%%%H%%%@%%%%%%}%%%%%%:% %%%%%%%%%{%%% %=%%K%9%<%l%%/%'%%%%R% %%%k%e%`%%%%%%%%z%% %%%%%%%%k% %%%%%%b%v%% %%B%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/Panel2.png__ __10760__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%1%f%%%% % %%%I%D%A%T%x%%%%{%X%T%%%%%%B%%%W%%;%%*%%%%b%^%%%a%c%%%a%% %%a%B%%%%b%%=%	%%E%%D%%%x%;%e%%Q%!%S%A%=%%%Q%%%%%%^%%L%	%L%q% %A%D%E%%+%%%%1%%%%;%%%c%z%?%O%O%%%%u%%%/%%k%%Z%%%%%% %%%.%4%l%%>%%=%>%%%%G%%%|%%%/%&%"%}%%%_%%%o%%% %%%^%{%% %%u%%%|%2%%/%%%%%H%%%%%M%%%x%%i%\%[%+%/%%Z%%I%$%%q%6%%i%b%G%%b%%%=%%%"%%(%%6%%P%%X%%%%%%%[%%%u%w%~%%%#%%h%1%%Q%n%%%%%%%w%%%%%^%%%#%%%%%%%%%%%J%e%R%R%%V%%%%r%o%3%%%^%%&%-%%l%`%h%4%%%~%b%%o%%%7%%%%T%%_%%:%:%%Q%%]%{%%6%o%%%,%U%%%e%I%%%|%%%?%%%%%%%%%%%%n%%%%%%%%%%%%o%G%%f%%%M%%%%%%%%%	%%%V%%%%%%h%%%%G%C%/%=%%%%%(%w%%%7%%=%%B%~%%%%%%%%%-%%Y%+%%%%%&%%%%%%o%%e%%%%%+%%%C%%%9%i%%%e%-%%%s%{%%%u%%%c%S%g%%%~%^%x%f%%%%%Z%%%%%p%%%%N%%O%n%%^%%3%%A%{%%%A%%;%P%3%%%%%%t%%%%G%%{%%%%%r%9%z%%%%@%%%%%%<%%%%%%%%Q%%+%*%%%%%%%%|%%%E%o%%%C%%6%%%%%&%%=%%%%
%%o%8%}%O%%%<%%l%%%%%%%%%%6%%%%%5%%%U%K%%%y%%%y%%%%%%%%%%%g%%%%o%W%%%H%B%%%%%%%%=%%L%%%%:%%%%%%m%%%%%%%%{%%%;%%%%%%t%%%9%%G%/%%%%%%%D%%%%%%t%t%%%%L%%%%%1%%b%f%U%%%%%%F%%%%%%&%n%x%j%%%%o%%%%o%A%y%%_%%<%%%%%E%~%% %%%>%%-%%Z%%%%%c%%$%X%|%%F%K%%.%y%u%%%C%%6%U%_%%M%%R%L%D%/%E%%%%%%%w%`%%%%%%%%%%%%%l%%%%%%%p%%]%%%%o%%%%s%%<%%%g%8%P%Q%i%%%%-%%]%?%%%G%?%]%"%%%%%/%+%*%f%-%%%%%/%%4%~%%%%%%%M%%%%9%K%?%%V%%%%%G%%%%%%%u%%%%%n%H%7%/%%%%f%%%%%\%%z%%%%%%%%%%%%%%%%%%Y%%%%$%&%I%%%%D%D%%%>%%S%p%%%6%t%%%E%%%J%%b%%%%%%%%%{%%%%%%J%%8%R%R%\%%%%o%N%%$%I%D%%%,%#%2%%7%3%"%j%%(%7%[%U%%%%6%%%%S%$%%L%L%%_%%%%z%%%%h%3%%%%%<%0%%v%%%%%%%%|%%$%%%%%%%%!%%d%%%%'%#%%%%%%%%%]%%%%%%%w%%%%}%% %%%%%>%%%%%%%%%M%%%%%%%%%%e%-%%%%%%%%%+%%%%%%%%o%%/%%_%%%%%O%%n%%^%@%%%}%%%%A%3%g%%%#%%%m%%%k%%%%%?%%X%%%\%<%z%%%%%%t%%%%3%C%6%%%%}%%%%%S%H%v%c%%%U%%%A%%%%%%%%%%%%#%%%%%%%(%H%:%4%e%^%b%%%|%%p%y%k%%%7%%%.%+%^%%)%L%O%%%%%%%%R%%%%%F%G%w%%%%%Y%{%%%d%e%%%n%H%%%%W%%^%%z%%%%%N%~%;%:%%%l%M%%%7%%r%%%%%%j%V%%%g%%k%%%%%%%)%% %%%%+%D%%%%%%%%%%_%%%%%%d%b%%%%%%[%7%%%q%7%.%%p%y%%%%O%N%%%%%%%%%%i%d%6%%%%%%*%%%%%W%U%|%%;%%%Z%%f%%%%%|%%%A%7%%%r%%%%%%%%u%%%^%%%%%w%7%%%G%%%:%I%%%z%%,%%%]%)%y%(%%%%x%%u%u%$%%%a%%S%+%%8%%%&%*%%%%%%%C%g%|%>%%%B%%%o%3%%%%%%+%%%%%%%$%I%r%%%%7%%%%,%
%%%%%%%%%%%+%%z%%%q%C%%%%$%%%Y%"%I%R%%%%u%>%%B%Y%t%;%%%j%%%%P%%-%%)%}%%%%%%+%%*%%%P%o%W%[%k%"%%%%%%%%%%Q%%%]%G%%g%%c%L%%+%Q%Q%%%K%W%%H%"%r%%%%%%%%6%}%%^%%%%%/%%U%%%%@%D%%%%%u%%i%%%n%W%L%%r%0%1%'%"%%%%\%*%%%0%6% %%%%b%%f%/%{%%%%%%{%%e%%%%[%U%%%W%%i%4%N%C%%%%%%`%%?%%C%?%%j%d%,%=%%%%O%%%]%<%a%m%%%%%%%%D%2%I%z%R%%%R%%%%%%%%K%%%%V%%%%v%_%U%P%%%%%%%g%,%%%%"%%%%y%}%V%%D%%%{%%N%%t%%%%%%a%D%D%?%o%%2%R%5%%%%}%%%%%i%G%%%{%%%%%N%%%\%%%%%~%%|%L%%%%%%}%s%%%A%a%%%%x%A%%%%%%V%%%#%%%%8%[%a%z%j%%%%Z%_%%%%%%%s%%r%%o%D%%%'%%%%%%%%%%%4%%%9%J%.%\%%=%%g%%3%v%%%%Z%%u%S%%%Z%~%%h%%%v%~%%%R%s%%%%~%s%#%4%%`%%%%<%=%o%j%%%%Y%%7%;%%%%%Q%'%%%]%%V%%%%%%%H%o%$%%<%%%%%%%%m%L%%.%%h%%%%%f%%^%D%D%%S%}%%k%O%%u%%%S%t%a%%%%4%r%Y%%c%%0%M%%%%_%Q%%%%,%%%%x%%%~%w%%5%%%3%%%J%%%N%O%%>%w%%t%%%k% %%%6%%%+%%%%J%%,%%r%%%%%%%u%t%%%%\%t%%%%=%%y%%%%%%%A%T%%%%%9%%
%|%%%%%%g%U%%%%%h%t%%%%%h%J%D%Y%%%%%%%%A%D%%.%=%%j%\%%%l%%:%%e%%	%%%%k%%6%%%S%U%%%%%%%%P%%%%&%%%%%%?%%%%%%%"%z%%%d%r%o%S%'%%.%=%{%t%%7%%%%Z%x%%%%"%Z%Z%|%g%R%o%%%%%%%%%<%%9%%5%%%%%%?%S%%m%r%%f%%%/%%%:%%%%W%|%D%D%D%%;%%%=%%g%(%%%%_%%%%k%%(%/%%%%/%%%%%%%%%%_%%%%%%%%%%%o%%%c%%%%&%%T%U%%%%4%s%f%%%%\%\%%%Y%~%Q%%1%%%%%%5%%^%%O%%%%%%>%%%%%%%%L%%%6%d%%;%%%%%%%^%}%%w%a%%v%0%%%%3%%\%V%%y%,%x%%8%%%j%%%%g%]%%<%g%N%?%%}%%%I%y%%%%%%~%?%%V%n%>%%%%%%#%%G%%%w%%f%%%%%%z%%+%%D%D%W%s%%%%%%r%z%%j%e%%e%%%%q%%%%%%%%%%%%%%%%%%%%L%%%%%%%Q%%%%%%%%%%/%`%%%%t%%L%%%C%%%'%Z%%%%%%%%%%%%%z%%u%"%%%-%%]%%%%Z%G%%;%%%u%q%%%%%X%#%i%%%{%%%9%%%%%p%%%k%E%%.%%y%%Z%\%N%%%%S%%y%%%%%%%$%%%%:%q%%%%%%%%%4%}%\%%%%%%%?%%{%t%%`%C%%%%%=%%%%%%r%6%%%Z%C%%%[%k%%%,%U%%u%%/%,%:%%%.%%%.%%%4%R%W%%%%%%|%%%%%W%*%%M%%%%%[%%T%M%%(%_%)%%%%L%%%%_%%&%%V%4%D%%%%C%G%T%+%%'%v%%h%%q%@%m%2%%%%%T%%%%n%%%%k%% %%P%~%%%\%%%L%%t%%%%:%%Q%n%%%(%%%%%%%%%%%%%}%+%%%%%j%%.%%%%%
%%S%%%%%B%%%G%V%%m%%%%%c%2%4%F%%;%:%%%%F%N%N%I%%%%%%%%%%%(%7%%%%%~%%@%%%%&%5%~%%U%%%M%D%D%%%%%=%%%F%%%%Z%%U%c%J%%y%@%[%%%%d%9%-%)%&%T%%N%%%%Y%%%-%]%U%v%*%%%%_%p%%7%%%%F%v%%%%%%%E%%C%%%S%d%U%%z%%%%%%%5%%w%]%%q%%%%%%(%/%a%M%%%O%%%%%%3%f%%3%%?%%%^%%%%%%Q%%a%D%D%%%%%%%
%)%v%I%\%%s%%T%"%%g%%%%%%%%%D%D%%N%%%^%%#%E%%%%%#%%K%%%%%'%%V%j%E%9%>%~%m%{%%C%p%%%o%%%%r%Z%|%%%T%r%%%Q%%Z%V%|%%{%%%%%%%%)%%%S%%%%%%i%[%%%X%J%_%%%%%M%x%/%;%%9%%%%%%%%%B%%P%%%7%q%l%%%%%%%%%%%%%.%]%%%%%%%%%}%9%%%%%%r%n%B%%%%y%%%%%%%R%%s%%%$%g%%%!%Z%%%u%{%O%_%%%%1%e%%%$%e%D%%o%t%:%S%%%U%%%4%%%u%%%v%0%%%l%P%%,%%&%l%%m%%%%%K%%%%%%%%%%%%%\%%%%%%%%%%%%%%%K%*%%z%%%%3%%,%%%%%%%(%d%_%N%%%\%y%%%%8%4%%%_%[%%%%%%%%%%%%%%%%%%%r%U%n%%%%q%%%t%%%%:%%Q%%%%(%%%@%%A%G%4%}%%%%%%%%%%%%Y%w%O%%a%(%%%M%%%4%>%%%%u%r%r%r%+%%%M%%%^%%q%:%>%%%%b%%T%%{%%F%C%%%J%h%%%F%^%u%u%%'%m%v%H%%%%j%%%%%%^%%%%	%%[%% %%%%%`%%%%%%Z%D%Y%%%j%%%%T%%3%W%%%*%%%%%#%%%%%%%%%	%A%%%%%%T%%-%%%,%g%~%2%t%%%%%%@%#%%%,%?%%u%p%Y%T%Z%z%%O%%%<%Y%%%%V%q%%%%%%%%%_%%%%%%%%%d%~%%%%%%%%%%%%%7%%l%%%%?%R%%%O%%E%Y%%3%%%%%%%~%h%%%%%}%K%%W%%:%}%%%%%C%%%%%%'%"%%K%%%c%?%%g%%%Y%+%+%%%p%%z%q%%%o%%[%%%%%A%%c%%%%h%%%%%%%%%%%%Q%%%g%%%%%%%I%;%"%%%%%%%A%%*%O%~%%%%n%%Z%3%%%a%%;%%%n%h%%-%:%%%%`%%g%%%?%%D%%{%%%%[%%%%f%%%%(%%y%(%i%%%%%%%)%I%'%V%{%%%%%%#%%%%j%H%-%4%B%%(%%*%%%%%%%%%%%,%%%%%'%%%f%l%8%7%%N%%%%5%@%k%%"%%%%%%m% %"%%w%&%c%%z%%%%s%%5%%@%%%%\%%4%l%%%&%?%%%@%;%8%%%:%%%%%u%%%%;%Y%%N%%8%D%%%%%%%I%%(%%%^%%%M%%%%%=%d%h%%%%+%#%%%%%%q%%%%%%%%%%j%%%%e%9%w%g%%%V%w%%%*%%%%%A%'%i%%%y%%g%5%=%S%%%&%%%%o%_%N%N%I%v%%%e%Y%%%2%%%}%@%+%%%%W%%%7%%,%%K%M%%%%%%%e%M%7%s%%S%%n%T%F%n%%%%%*%%%%%%%$%G%%%%d%]%%%%%%%%%%%q%R%%%%F%{%{%G%%%%%%%k%%Q%{%%~%Z%r%#%{%[%h%%%w%+%%$%%%_%%,%%%G%%%=%%%%-%%%%%%G%0%%4%%%%%%%%%%%%%+%%d%]%R%%%5%%%-%%i%%%%8%%$%x%0%.%%%%%%%%%%%%k%%F%%%%U%q%%%%%M%I%%P%%.%%D%%%%%%%%=%}%)%%%%%%%%%:%d%U%\%%%%%%%%%%%%M%%V%%%%/%%%Q%%%%%%d%%%%7%j%o%%%%%T%%T%%%%%u%J%]%#%%2%0%i%s%e%%b%%%%D%D%%9%%%%%I%%%9%%%f%%%%%%%#%%$%'%\%%%a%_%%%p%%%t%%%Q%%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%%2%0%%%e%u%:%%%%%%%%C%%%%%%%h%%s%%a%%%%%z%$% %%%%e%%%]%%F%%%%%%%(%%%@%%A%G%t%%}%e%5%%%(%%G%/%o%%%%%:%R%+%%O%-%r%%U%:%R%%%v%v%%c%%%%E%%*%%%%C%%%/%%%%%&%%2%% %%!%%%#%%e%%%%%%2%%%%%%%%%6%%%%%%%%%%d%=%%%4%%%V%Y%%%%%%-%:%%*%%%1%5%%%%%%6%%%#%%T%*%%{%%%%5%%%K%%n%%%8%%%M%%%%%%%%%%%%%%2%%%D%%t%%%%:%B%%%%%%%m%?%%%%%%e%%8%%%%C%%%%7%q%,%%L%%:%(%%+%%%%'%\%%%:%A%z%%%%%{%% %%%%%%]%,%%%-%t%A% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/TabPanel.png__ __9780__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%5%a%%%% % %%%I%D%A%T%x%%%%{%\%%%%%%% %*%%%%%%%%%%%%%;%"%%h%%%/%%%%y%%!%Y%Y%r%:%%!%%%%
%;%%%%%%_%*%%W%%%%%g%%%%%%%%"%%y%%%/%
%%j%%%%%%%%%,% %%|%~%%%%?%`%v%f%%%%b%%%%]%%\%n%6%%%q%K%b%%%%%%7%%%G%%%y%	%	%	%D%d%%%%%%%%:%%%%%%%% %<%%%%%<%%%%%%%$%%%>%E%%D%=%%f%%%%%%%V%k%#%%%=%m%%T%%%%%%
%z%%C%H%%;%%%%Q%%%%%%%%}%%%%%%%%%%%t%%%%%%8%|%%r%%%%'%o%T%6%%%%%%%y%n%%%%3%%%%g%d%d%t%h%%%%%:%%,%%%T%u% %%%&%%%%%a%Q%%%k%$%o%%-%%~%A%%%%|%U% %u%%%%%%%%%%M%Y%%%%)%s%%N%%7%w%6%z%%%%%%%5%w%%i%%,%4%%%%~%%%.%%%9%%%7%%!%%%%2%%%%%%w%%%X%o%%Q%%=%%%W%3%%J%Y%%%%|%%T%%x%%%%%%%%K%l%h%%%i%%5%y%%%%%{%c%%,%%k%;%%=%%%D%%!%%n%%%%%%%q%%v%t%%%C%%%t%%%%%%%%%%%s%%%%%%L%%%%%%%%%?%8%%%%%%v%(%~%%T%s%W%%%%%%%L%%%%%%%%%~%%%t%%Y%%%R%%H%%7%A%j%%%%%%%%%%/%%%%%%%%r%%%%%%%\%"%%%%%%/%^%%%%z%%%]%7%H%:%%%%%%%%%:%%%%%O%%%H%e%%%M%%%%^%Y%%%%%{%%%
%%%%%g%h%%% %%2%%%%%%%D%%7%3%%7%5%,%%%%`%%Y%%%%%%%6%%E%'%%o%Z%%%h%:%%%%%%%W%%%E%?%%%}%9%%%%%-%%l%%%%%%%%%_%%f%%(%%%%%1%%%%{%%%%%)%%%%%x%t% %%%%%%%%%%w%%T%-%%%%%7%~%|%~%%%%%Z%%T%>%o%}%%%%%%'%%m%%"%%g%%%%%%8%%$%m%%%/%%%~%%%A%%D%t%%z%1%%%G%D%%%%%%3%n%%%_%%%%S%/%%}%%%n%%I%{%q%%M%%i%%%%b%N%%%%%%%%%%%%%l%%]%%%^%}%%%%i%r%y%%%e%%%%%%%g%%%%%%%T%F%D%%%%l%,%%F%D%%%%N%%m%%%%%%-%%5%%Z%%%X%;%%%%%%%%%R%J%%%%%%D%U%g%.%|%t%%%%%%b%%C%%-%%%=%%%%%%#%y%%%M%y%w%%%&%%)%%%%^%%Y%%+%"%%%%9%4%%%%%%%%%%7%%%,%g%%Z%Z%)%%%v%%%%%f%%R%m%,%%{%%h%%%%!%-%%%%%A%%%s%%%%~%%%5%k%%%%y%%l%d%n%%>%m%%%%%%%%:%%a%#%%%%o%Q%v%%%%%%%@%%C%B%%%%H%%%%%Y%A%%%%%r%%k%;%%%?%%%%^%>%9%%%%k%%[%c%V%%%M%%#%f%%3%%o%i%%%J%%f%%J%_%%%/%%%%0%a%%%a%%w%%h%\%%%{%1%C%%%~%%%%%%o%%%%N%I%%Q%J%N%%%%%F%>%%%%%O%%_%o%%%%%%3%>%%H%V%;%%%%%H%%%.%#%%=%%%%%%%%O%%%%G%'%E%o%Y%%G%%%%&%<%A%%>%I%%%%9%%%Y%8%p%%%%s%%%%%5%g%/%%%c%%%%%Q%%%%%7%%%%%_%%W%%{%%%%%U%$%%%%%W%%U%%q%%%n%)%$%%v%%%C%$%s%O%%l%[%q%"%%%%G%^%N%%$%%A%%%5%m%4%%s%%x%%%S%g%b%?%%%%N%N%%%%#%%O%%%)%%*%I%}%%?%e%e%%%c%H%%e%%%%%%%%%m%g%W%o%%[%%%%%Z%%x%:%=%%<%%7%%%%%%%%{%D%%%%%%%%%m%)%%%e%%c%%%%%%%]%O%%|%%L%%B%%T%v%a%&%&%%z%%%u%%&%)%%2%%%%%%%%%%%%l%%Q%%%%%%%%%%%%%%%%%%H%%%%w%%%%%%%%y%.%%W%,%%%%%%%>%%%`%b%%%%%%%%%?%D%Q%%%%5%%%%%"%c%J%#%%%8%%%%J%%^%%0%$%e%%%M%%%.%%G%%%%	%%%%%%%%%%%$%%%%%(%*%9%L%%>%%%%%%S%%%%%%%%%%#%%%%	%A%%%%
%>%%#%%%\%%%%%K%D%%%9%%b%|%%%{%%%%/%%%%%K%%%i%%F%%]%%%%%%%%i%0%6%%%%%%%(%%d%%%[%%%%:%i%%% %3%%%%%%J%%%%%2%\%&%#%%%Q%%4%%%b%k%m%J%j%%%N%%R%)%%=%%%%h%%%%%%Q%C%%%%%p%%1%a%%D%7%%%%%\%%%"%%%G%%%%%% %%%{%%D%%%%%%z%F%^%]%%;%%%%q%?%%%8%E%b%c%h%A%D%%%%5%%%%X%%%%%%%c%T%%0%%%Y%C%%e%y%9%%W%%%%%%C%S%3%%%%5%g%O%%-%8%)%3%%g%c%%%%T% %%%=%%%J%%0%%%%2%>%/%%%%%%\%%%.%%o%%%%/%%%%c%%%%%%%"%"%%%^%%%&%%%/%i%%%%%+%_%_%%O%D%%%u%%%%S%O%%%F%D%%%g%%%x%h%t%%%S%%%7%o%%9%%Y%%%%%4%%N%%%&%W%%%%%%%%x%A%%\%'%M%X%%d%V%v%%%%%%%}%~%%%a%%%%%D%%%%%%\%u%%%%9%%%%%%N%6%%^%u%#%2%%i%%b%%%%#%%{%@%%%%%%%%1%%{%%%%5%u%%%%5%%%%o%%_%%%T%%%%G%%%%%% %%%\%%%%#%+%%%%p%%%%%m%%%%%V%%N%%%%%%%%%/%%%%M%-%%+%%%f%g%%r%I%g%%1%%V%%}%%%%%#%'%.%l%>%}%%%%c%%%%%{%%h%X%%%	%%%%U%%%%%?%%%%%A%%%#%_%%%%%%%%x%%d%%%%Y%;%^%%9%[%%%%%Q%%%%n%%%%%%%D%4%%%%%&%%;%%%%%/%%%%%%%%%%W%%%%%%%o%%%%2%%g%[%%%%%Q%%%L%D%D%t%%%%%l%%%%%%%%%%%%#%"%%%%[%%%~%%%%Q%%%-%%%%%%0%{%%%%%%%A%C%%%%%%%%%%]%%h%P%N%%%v%%%,%%%%%b%q%E%U%%%:%3%%-%%%%%0%%}%%V%O%%%%%]%%%9%%%%7%%>%%b%%% %k%+%}%%%%%%%C%%%%h%u%U%%%%%%%%%%%m%O%%%%{%%%%o%.%%%%M%L%%"%+%%%S%%%5%?%'%%!%"%%k%%R%2%G%G%%u%%%%%J%&%!%?%e%l%`%D%%%%%%%%?%N%%%%%%%O%u%=%%%N%%w% %%O%a%%N%%%%7%]%%%%?%%%%%%%%%%%%%%#%%=%%_%H%F%r%%%Q%y%%%]%r%%%%%%%%%%%7%%%%%%%%%%%Z%%0%%%%%r%%:%%N%%%#%>%%!%%?%X%A%%N%%%d%&%%%%%%G%%%}%%T%_%%%K%%%%,%%%%%%%%%B%%%%Q%%%%%%_%%,%%%%%%%%N%3%%%%A%D%D%U%%%.%%%%Y%%%%%%%P%%g%%%c%%x%%%q%%%%%]%%z%%]%%u%W%^%%%S%%3%5%%%%9%%Q%%%P%9%	%%%%%[%[%~%%%%%&%c%%m%%%%%%[%_%%?%%%%%%%%%%% %C%8%%%%%%%%%%%%%%=%%%%F%%?%%%%O%B%%%%%v%%%f%%%%%%%%%%%%i%5%%%%a%-%,%g%%Z%Z%%%%%%%%%%Z%%%%%%%%_%%%%%%%%%%%%%%%X%J%q%;%%b%J%%%H%*%j%%%%%%%%o%%?%%?%8%%%J%%%%%%%%%n%%]%+%~%X%%w%e%)%%%%%%%%+%%%%_%x%%%g%x%%C%%n%n%?%x%%i%%%a%%%%%:%%W%%R%%U%%W%K%%%?%%0%%~%%%n%>%%%%q%%1%%E%%R%>%%:%%%%%%%D%Z%]%{%%%f%)%%%%m%m%%%%%%O%%c%\%%%Q%|%Q%Q%%%8%%%%%%%{%L%k%%%z%%t%o%%%%m%%%;%T%%l%%X%Y%%%%%;%%%|%7%%%k%%K%b%%%$%"%Z%%4%V%1%%%%%%%%%%%T%%%H%%%%%%%D%%t%i%l%o%%D%[%%%l%k%k%%%%u%W%d%%<%%%%%%D%g%#%V%X%%4%V%Q%s%y%y%%W%%u%D%d%%<%j%%%%%%h%%%% %L%%%%%.%Y%%t%%%R%%%%%+%(%v%%2%%%%q%%o%%6%%m%d%%%%%%{%g%K%u%%%%%%R%%&%:%%9%%%%%Y%I%%%%%%P%%%%%%z%%5%%X%u%2%i%%M%%%%%%%%b%q%%%%1%%%%%y%%%%%N%%X%%%%-%Z%%y%%S%o%%%%T%%%%%%@%D%%h%%%%%%J%%u%W%%D%D%v%%%%%-%%%Q%,%8%%%y%%%%%%%%%%%<%%I%%%%%%c%%]%%%t%%%M%%%%S%i%V%\%%%5%%&%%Y%%%%%%%%.%%%%%%%%%%%%9%%%%'%6%~%%Y%J%*%%i%%%F%%%%%%y%#%{%O%%z%j%% %(%.%%%%_%.%x%%V%m%%%H%%w%/%%%%%=%%I%(%%%1%v%%%"%%%%%%%%%%;%L%%g%e%%%%%6%^%%%$%%%>%%%k%%%%%%W%%P%n%^%%_%x%l%%%%%%%%%%%%Y%I%?%V%%%%%%%v%%N%%9%=%%%(%%%%9%H%% %Q%%%?%%k%%%h%% %%O%l%%z%%z%%%%%%%%%%%%9%%%%%%R%>%%3%%=%%%%%%m%%(%%'%%u%p%%%%%N%%P%%+%b%%.%%-%3%%%}%x%%%2%%%%%`%%%%%%D%9%Q%Y%%4%z%e%%D%%%Y%I%-%%%%%-%%%%%<%%%]%%4%%%H%%P%%%P%N%%%%L%%,%%%%%%_%%%%%J%%%%%%%%%%%w%u%%U%%y%%%%%h%5%%%%|%7%%%m%%%%1%%}%%C%%q%%[%;%%(%9%%%%c%G%T%%%F%%%)%%P%%1%{%O%%%Z%B%d%%5%%%%%%%%m%%r%
%%!%%%%%%Y%K%%*%%k%%]%%%}%%%n%?%V%%%%%%%%!%%%% %{%r%%%%%;%_%%%%n%%@%g%8%%%%%Z%B%j%)%_%%%%)%%%%%n%n%O%%%U%I%l%%%%w%%%%	%%%T%%%_%%6%%%%m%1%E%%W%%%p%{%G%%%%'%%%O%G%{%%o%%W%$%%V%C%%(%%%"%Q%$%%%%%%'%%%%m%%%/%%E%%j%.%%%%%%%%%%<%]%T%%%~%%%%%J%~%U%%%%8%z%
%-%%%l%Q%$%%%%$%%v%]%%%A%	%%%@%%%%%%%%%b%U%%Z%%%%%%%%%j%/%%%%>%I%`%%O%|%j%%M%%%%S%%7%}%%6%%%D%%Y%q%%R%%g%%%7%~%%%%(%%%%k%w%M%%F%%X%9%j%[%%%%O%p%%%B%%%l%%%%%$%*%H%1%e%%%w%#%%%[%%%E%%%%S%%g%%%%%%%%%%C%[%%%+%C%%%Q%%%%%$%p%j%%%%%%%%%%O%%%%%%M%%%}%}%-%.%\%% %%%%%%%%%t%%%%%"%%%%;%w%&%%%%E%%%<%%o%S%m%% %%%%%G%}%%c%%t%%%.%%+%%a%%%5%0%%9%e%%%%%v%%%%%%%q%%@%%%%%W%0%*%*%n%%%%K%:%%%'%m%(%N%%l%m%%%%%%%?%%%+%%%H%%%@%%%%R%%&%%%p%=%x%%U%%%%%%%%%/%%%%%%%%%%%G%%%t%%v%?%%%%%%%%t%%%A%%%%%%%%%c%e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%@%%%%R%%&%%2%0%%%%	%%%L% %e%`%%)%%%H%%%0%h%%%%}%%W%%<%%3%C%%%%%R%%%%%%q% %t%Q%[%)%%%%%%%%@%%%X%%%@%%%%R%%&%%2%0%%%%%%%%%%%%E%%+%%%%D%%%%%%% %%*%%%'%%%%1% %<%%%%%%%%%K%M%V% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/VBox.png__ __7342__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%*%#%N%e%W%% % %%%I%D%A%T%x%%%%y%X%T%%%%%%%%E%%u%d%d%%q%G%%%%%x%u%%%%%%%4%%%2%%%v%[%\%n%	%%%%%K%%4%s%)%s%%%4%S%3%D%%L%)%%%5%%%e%W%%%%+%o%%?%%q%%H%G%%F%%%%%%%%%%%F%%s%8%g%%%(%%%%A%t%%%%5%%%@%%%P%s%%%%%b%b%b% %X%V%%9%q%%%Y%%C%%X%*%s%%%%i%X%%%%1%z%}%%W%%@%%%%%%&%%L%%%%%5%%%&%%%
%%%)%%%o%%%%d%%%%%%%N%%V%?%%o%[%%}%%%3%%%%%Z%%O%o%%%%%%%%o%%u%%%%n%%%%%%*%~%%M%%%;%%%%%L%%Y%%%%%%%%%%%%%-%J%h%%V%%%2%t%%)%[%%%v%%%%%%c%I%%%K%%
%L%_%%%v%&%%+%%%%%a%%7%f%)%=%S%S%V%%%q%%%.%%%%{%[%%%`%%$%%%%%%&%.%K%M%%%%?%a%%%%y%=%%%%C%%%%`%%_%=%t%;%%f%%%%%%%}%%a%%%%%%%f%u%%%%%%%%%%+%%%%a%3%g%m%%%v%n%c%l%%E%y%&%%)%h%M%R%D%8%2%c%%n%%%%%%%%7%%%E%%%%v%% % %%%%G%%R%_%%%%%%%>%%%*%:%%%}%%L%#%7%E%M%%%5%`%%{%%)%u%%%%8%%%%%O%%%%%%x%x%%%%J%%`%a%%%%%%%%1%%,%%%%%%%%%%%|%%d%~%%%%%%% %%%%%%8%z%%%%%%%%%%[%%{%%P%w%}%%%%%(%]%F%%%%%L%Y%
%%;%u%S%:%%%%%%J%%%%%%%b%%%%Y%%k%%%%'%[%%?%/%+%%l%*%C%%,%=%l%[%%\%%z%}%%q%%%%% %e%%%%%%V%%.%%%%%%5%%%%%%%%l%r%%2%%%%%%%T%=%s%%%Q%%v%w%%%%%%9%q%%{%-%-%%%%%q%%%%K%%(%7%,%% %%%%%%\%d%%2%%x%%%{%%%%}%h%%%G%Q%x%%%%I%K%C%%j%%%%%%%%% %F%%%%%R%=%1%o%%%1%%^%%%%%P%%%%m%z%%t%Y%~%%%^%%% %%%3%P%%T%?%A%8%%%%(%%%%%v%#%%/%%o%_%%P%A%%%'%%_%%7%u%%%.%(%H%%%%%2%%%%%%%C%%%%%<%%%%%%%%%%%%}%%%+%%3%%%%%J%{%%%H%y%i%%%%]%%l%%%J%%%o%S%%%%%^%%%%%%%w%%W%%%%%%%V%Z%q%%%%% %J%%$%b%L%?%g% %%%%,%>%%%Y%%%%%%~%[%e%E%%m%+%<%o%%%%%%%%%0%%/%%%s%%%%?%%%J%F%%%%`%%%f%S%^% %%%%%%%%%O%%%d%s%%%X%%%%%%]%s%(%%v%o%i%i%o%c%Y%y%%%%b%k%%%7%m%%\%E%	%%%%%N%%6%%z%t%{%Q%3%%%<%{%%%Y%%%%9%/%%%W%%%%t%%~%&%%%y%%c%%%%~%1%!%% %2%c%%%%%%%%%+%%0%?%%% %%%o%%%E%%C%%%3%t%%%%x%%%%\%[%t%%<%y%V%%r%%o%%F%%%s%%[%%%%~%%_%%|%%h%%%%%%%%%%N%N%%y%(%%%%%%#%%%%%%r% %%n%I%%{%d%%%%j%%%%x%%%%N%w%$%%%%%%%%%%%%=%%%%%'%%%+%%%%%(%%%%%%%n%%%i%!%\%%%%g%%%y%%%L%%%%%%n%5%T%k%%%%%W%%%s%%%%%{%g%%%%%%%%%%p%%%y%%%P%%_%%%%%%% %%%%%8%%%C%q%%%%%%%%%%%W%%=%%"%%*%%%%%%%?%5%G%%%%%%%%~%Z%%w%j%%%r%%%%%b%e%%O%%%%%%%%%z%%%%%%t%%%%%V%%%%W%%~%)%%%%%%%%}%%%%[%%%k%%%5%%B%%q%P%%r%%%p%%%%%J%S%6%%%%%%`%l%T%%%%)%%>%j%%`%%%%%%%%%r%%%%%%{%%T%J%%%%%%%%%%%%%(%%%N%]%%%\%w%%%%%%%E%%%%G%%%%%(%%\%%E%H%% %'%%%%%%%g%}%%T%o%%%%%%~%V%%%%s%r%%%%%%%% %-%=%%P%%%%%%%%%%%%%%]%%%{%%%!%Q%%@%%%E%'%~%V%%%a%%@%%%@%x%%u%%%S%%n%v%%%%-%)%%'%%%<%%%%%[%y%&%G%Q%%%%%%3%C%%{%%%V%%%%,%.%%%%%%%%%@%%%%%%\%%-%o%{%g% %%%%X%%%%%%
%%s%.%n%x%%a%J%%%%\%x%<%%%k%O%%%x%%%%%r%%%%c%%%%N%U%%5%s%%o%f%k%%%%%J%%v%R%:%%%%%%%D%%/%%%%%%%%7%
%%%/%%U%%%&%,%%%%4% % %%%G%%G%8%%$%%%%%B%d%%s%%C% %%%%%=%r%%%N%o%%%%%q%%Z%%%%0%S%%%%o%%%%t%O%%%%<%%%%3%%%%%%%r%>%%Q%;%y%%%%6%%%q%%%%%%%%%%%%I%%z%%%%%%[%;%3%%%|%j%%%%%h%%%%%5%%)%%%%%O%%2%~%7%%%%%%%U%G%%7%%%%%%%%%#%%%=%%%%%%%%%%%%%%%S%%O%%f%v%v%%+%%%%q%%%%%%n%-%%%%%%%%%%z%%%%%Y%%%x%%%%%%%I%K%F%%%%/%%%%%%1%%%%%o%Y%C%%<%%%%
%%%h%%%H%%%:%z%%v%f%Z%%%]%%	%%%7%>%%i%%+% %d%%%%%%%%k%%%%7%%W%%%%%%%?%%%%%% %!%%m% %%%T%%%>%%%%#%%{%%%%%C%G%%%%B%%?%%e%%%%%%%%%z%%a%c%%%Q%%%%%%%%%%%%%%E%%?%%i%U%%o%%%%%u%%%y%%%~%J%%%% %8%w%r%%h%%%%%%*%%?%%i%+%%s%%q%%m%%%i%%o%W%%O%n%Z%%%%%%(%_%%?%%%.%N%%%6%%%u%E%_%%%%%%%%%%%%-%%%%%}%%c%%%%S%%%}%~%%_%%%U%%%Q%%%%%%%%%_%8%% %p%n%s%%%%%%%%f%%G%%%%%%%%%%%c%%%%_%%%%+%|%%%%>%%%l%~%y%G%%/%%%%1%%p%D%i%n%%U%%%%'%%0%%%%N%a%%%%%%%%%%%%%v%i%% %%%%i%_%%%%%{%%Z%%% %%%/%%Z%
%%%%Y%M%%%%a%%%%%% %q%%%%%%%%8%%%%7%%%%r%v%_%%%%%%%%%~%%%%:%%|%%7%%%%%3%t%*% %%(%%%=%%c%% %%%%,%% %%%%%%%%%G%1%%%%%%%%z%%x%%%%%K%o%%%%%%%%%% % %'%{%S%%%%%8%%3%%%%%%n%%#%%%% %J%O%g%%p%%%:%%h%X%%u%w%%%%`%(%%%%%%%V%]%h%%%8%Q%%%`%%%[%g%%%%%%R%%%?%)%[%%%%;%%%*%U%s%%i%%8%%I%#%%%%%%%%%q%%\%%%%%B%%}%%%%%%%_%%%%o%_%R%R%%-%%%%p%%%%%>%N%T%5%%%%H%%%U%|%Y%%%`%m%%9%%%,%%%%%%%%%%)%%%%%_%]%+%n%%%%%%%I%W%%%b%%^%l%n%%%}%%g%x%%%J%%%~%P%s%%l%%Q%%t%%%:%%c%%2%d%R%%g%%%%|%&%%%%g%%%%%%%2%?%%L%w%#%%%S%%'%%k%%d%%%0%%%%%%%%%z%M%w%%%N%%,%v%%%n%%%%%%k%%+%%}%%%%c%%.%%%%%Q%%%%%%5%%%y% %	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%%%.%%%%]%u%%%%%%g%%r%%%%%%\%%R%^%%z%%%%A%% %%%%%%<%V%&%!%%2%	%%%I%%%L%B%%%%%%9%%k%%D%%%_%%N%%%%u%%%%%%%`%%%.%:%%v%%<%V%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%%%u%?%>%a%W%t%%.%%%%%1%%R%%%t%%%%Q%#%%%%z%%V%s%%%%%*%%3%%%y%%L%B%0%e%%%)%%%L%%%0%:%%%%s%2%%8%%n%%N%%[%%%@%%%%%%'%%%%{%%C%%%%	%%%~%%N%%@%@%%%o%%%Q%%E%'%D%%%%c%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%%%u%?%>%a%W%t%B%%9%F%B%%(%F%)%%t%:%s%%%%%%R%^%%%%\%% %j%$%%+%%%% %b%b%b%%=%%%%R%%%%c%%1%%5%%%%%%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/VBoxFlex.png__ __8330__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%	%%%%%F%% % %%%I%D%A%T%x%%%%y%\%T%%%%%%%D%%a%u%`% %%p%%A%!%1%%w%G%%%+%.%%e%%%v%%%7%%=%,%S%[%%%\%%y%%%%%%%%%^%Z%H%%%%%P%T%4%%%S%A%%T%%T%L%$%%%?%%q%f%X%%A%%%<%%%%%%%%%%}%q%8%g%%x%P%R%%%%%%%4%%u%% %A%!%Z%K%%%%%f%%%	%%%%%%#%%,%:%%%%%%% %%%%%%'%%C%W%V%q%5%
%%S%e%%%7%%%%%%]%%C%^%%%%A%%b%e%%F%%%X%%^%%b%%<%%%%%%%'%%%m%%~%%%%%%h%u%%M%&%V%w%D%D%%V%N%%%%%%%t%%%1%%/%^%%u%%%%%j%%%%t%1%%f%%N%%k%%%%%%%y%%U%%J%%R%%% %e%[%G%U%%O%%%q%%%%%%y%4%%%%%%3%%]%%%%-%U%%%:%K%%%%%%(%%%G%%%%%%%~%p%s%%%%%%%%f%.%+%_%H%%%%%q%*%%%u%%-%=%%%h%%%%%%J%%%%%%O%%%%%%%%(%%f%%%%%%%s%%%%%;%%%%%-%p%p%%@%%%j%C%z%%}%%%%%%o%%%H%%]%%v%%%%%%%l%W%T%G%%%%%.%%%g%%%%%%%%%%%%&% %@%%%s%%%%\%%%5%o%p%O%%{%s%]%:%6%9%%%i%%W%Z%%&%"%6%%%%%%%%%%%%$%#%%%%%%%%R%%%S%V%i%%9%u%%%%%%b%o%%%%V%%b%m%%^%%C%%h%N%%{%%%%%[%z%z%l%%%?%%%G%j%C%%%%%4% %%q%;%%p%%%%%%%%p%%%^%%%%%%%%%Z%=%%%p%%%%&%~%K%z%f%u%F%%k%%m%%%%/%A%%%U%%%%/%%%%%%%Q%%%9%%%%%%+%+%M%%%%%%%%%%%%%%%q%S%%%%%%q%,%
%s%%%V%%e%%%%%%%	%7%%%%%%.%%%N%X%%p%N%%%8%%%%%%%7%%%w%%%K%I%%:%6%k%z%`%%%%?%%%%%%%%%F%%%%O%:%}%%%%%%%%%%%=%%2%:%t%%%f%o%%|%%m%%%3%)%{%%%%%.%%{%f%%z%%d%%z%9%%%%%%J%%%%%%%%% %%M%%<%-%%d%%%%%a%_%]%-%~%%%%%%%6%l%%%%'%i%9%h%%%%%%%4%%%%%/%%n%%% %%g%d% %@%%A%%%D%:%%%)%s%%%%%%%}%%%%A%%%%%%%%%%%|%%%%%O%N%%%%%U%%%%4%%%%s%%%%%%%%%%%%%%%%%%o%%Q%%Z%%%r%%>%X%%v%%%T%%%%{%%+%y%%w%%%%%^%=%%%%%}%%%%I%%%a%-%_%l%m%%%Y%K%~%R%%%i%J%%C%%%?%%}%% %.%%%{%%%o%%%8%%%%@%%%$%%%S%%@%~%%%%%%N%%#%;%%%%%u%%z%%%%F%;%!%O%%%%v%%%%o%%%%%[%y%%%%%C%_%%%%}%%)%%%%%%K%%%%%%%k%=%m%%k%%%u%%%q%%:%%%`%%%h%S%T% %%V%Q%%+%%j%G%%G%%%%%%%%%%%%%N%%y%%7%%v%%%+%>%%'%%x%s%?%%D%%%%e%%%%j%\%%=%%%m%1%S%%w%%@%%%n%%%%\%%[%%%%%O%n%
% %%'%%%;%/%%%%6%%W%%f%%w%`%%)%%%j%%%i%a%%%v%u%D%%G%%%}%%%2%%%%%:%s% %%%%%%%%m% %p%n%%%%/%%%%y%i%% %%p%%%g%%%%%%H%g%%%%%%%%R%%%%%%'%%%%%%%%[%%n%%%%%%%%%?%S%%x%`%%%Y%%%z%w%%%%9%%%%%%{%Q%%K%{%%%%%%%o%/%%%%%]%U%%6%m%_%y%%%%%A%%%>%%%%M%%%%\%%~%%%%%%%%%%%%%%%%;%r%%Z%%%p%%%%%%%%:%%%%%%u%%%p%-%k%I%|%%%%%O%V%%y%w%%%Y%k%R%%^%%{%K%_%%k%%J%%n%%%x%j%%%B%@%%%;%%_%_%%%%	%%%"%%%A%%%%o%M%_%%%/%8%:%G%6%6%%%9%%%%%]%K%%Y%%%%%%n%%%%%%%%%%%%>%_%3%%%%%+%{%%
%k%9%%%%l%%%
%o%Y%%%%m%%%%S%%%%%s%u%p%p%r%%%%%Z%q%t%%%%%%:%-%%n%Q%%9%%%%%%%`%%%%%%%S%%%5%@%%%W%%5%%0%i%%%!%%%%G%l%K%%%%@%%'%{%y%%%%%%(%J%%%q%+%%%%%%%%%%%%%%%%%]%2% %%%%%%%%q%k%%%%B%%%%%%%%%8%%c%%E%g%%%%7%%%%0%%%)%% %$%%%%%%m%G%%O%
%n%%%%%_%%v%~%%%o%Z%%~%%%%%%%%%%%%%% %%d%Z%@%%F%%%}%%%%%L%%%S%%7%%o%:%%3%N%%9%:%%%%z%%%%%%-%%%j%% %m%B%%%)%%%v%u% %
%%o%O%%D%%w%%j%%%m%%O%f%%%%@%%%%%%%{%P%C%7%n%%%}%s%%+%<%%%z%%%P%%%%%n%%L%q%%%s%%%%>%%%d%%%%%P%#%N%%%%d%%%F%%%I%9%%X%%%Y%/%6%%%%%%I%%%W%%%C%%N%%%8%%%p%%%R%)%(%%b%%%%)%%%%%%%%%%,%%%%%%]%%% %%%%%%%%7%c%%%W%O%% %B%^%%%2%%%|%%%%_%\%%%%2%=%% %%-%_%%%1%%%%% %%%{%z%o%%%:%%M%%/%%%%3%%%%%%T%%/%p%0%%%%%%5%_%%%%h%%%.%W%%m%%%%%_%"% %\%%%%%]%%%%% %G%%r%%%%%>%%<%%%-%%%n%%%%%;%%%'%Z%%=%%%j%J%%%G%o%%%%j%%%%%%%%%s%%%%_%%%[%%%%%%q%s%%%%?%%%N%I%:%<%e%%%%%J%%%%%%%%U%%%n%v%%%u%%%%%%(%%7%%%%%%%S%%%%l%%%%W%%%V%%%%e% %~%#%z%>%g%<%%%%C%;%%%[%%7%%F%%%k%{%%%%%%%%%%E%(%%h%h%%.%%v%|%%%%a%%%I%%%%-%G%%%%%%%%j% %8%{%z%%%%h%{%%%%%%?%%%%i%[%?%%%%%%%%:%% %,%%!%%%!%%{%%4% %%%%h%%%K%%%8%%%	%%%5%%t%x%%%%%%i%%%%%%%%%%%%%%%%%c%%%%%%f%%%%%n%%%%%?%%%%%r%7%~%y%%$%\%%%%%%%\%%%%%%e%%%%%%%%%%%%%S%r%n%%%%%%X%%%%+%%%%O%U%%a%%V%P%% %%%%%%%%v%%%%k%?%%%%%y%H%%K%#%%%%%%m%%%%W%\%%%%U% %%%o%%%P%%%%%%4%Z%%%%%%%%%%w%%{%%%%m%X%%9%%%%%]%f%%:%w%6% % %}%%%%%%%}%%%%U%+%%%%%K%%%%%%(%%G%n%%8%%S%%%%N%%%%%%%%n%%%m%%%%%%%%%%4%%%%%r%@%%%M%V%%%9%%%%O%%,%t%u%G%R%%%>%%%7%'%}%o%%O%n%%e%%%.% %p%%%%M%%P%v%%%%% %%%%%w% %%%c%%%_%\%%%%%%%%b%%%%%%%%%%-%%{%%%%%%M%z%%r%%%^%h%<%v%F%%% %%K%%%%m%%%%;%R%%%%%.%%l%%%%%%%%w%%w%%%%%%%%7%%%b%%% %%%%%'%%%t%v%%%%?%%%\%>%%%%%%%(%,%%%\%%%%f%%%%%%}%%z%%c%(%%%e%X%O%% %%%%5%%%W%%%%y%_%%%%%V%%%%G%g% %%%%%o%%%}%%%W%%j%%%%%%s%%%%$%%%
%%%_%h%)%%8%%%g%0%<%%%%~%%`%e%%%%%%x%}%%v%%w%%%%%%6%%%%%%5%%%%X%g%%g%:%%%%_%[%%%%%%7%Q%%%%%z%%%%%p%%%%%v%%z%%%%%%%%T%%%%%%%%}%%%%o%%%U%%7%%%%O%%%o%7%%%%%%%%;%%j%%%%%?%%%%%%%Y%W%%&%/%%0%%%u%%%%8%%%%%F%%%%y%%%%%%%t%%t%%%,%e%%%%%2%%%?%%	%U%%3%h%5%s%+%%%%%%S%m%d%%%%%%%%%%+%%%%%D%z%F%)%%%^%S%-%%%%%-%%%%j%z%%%%z%M%%B%%%;%%9%V%%z%4%%p%%%%%%%%)%%y% %	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%L%o%%%%%%%%2%%j%>%%%%%%[%"%K%1%J%y%%%%%%#%%%%%%%%%%`%%T%u%%%`%j%+%%Z%%%%S%%%%%%,%%%j%%%|%%;%%%%%%`%%$%%%/%;%%%%%%%%%%[%%%r%%%Y%`%%W%%%%%8%%%=%I%`%%]%%%C%%%I%%%%%1%M%%%}%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%6%&%%%%%%%l%%%P%%%%(%e%%N%g%%q%%U%%Q%%%%%Z%j%%D%U%p%%0%M%%%% %C%%%%x%%S%[%%%%%%%Z%m%%C%%`%%W%V%k%%%%%>%%i%%	%%%I%%%%%%y%%P%%%%%% %%l%%%"%K%%%%\%w%%%%%%o%I%L%L%4%:%V%%%%%%%%%%N%%[%%p%%%%%i%_%%%%%%%%7%%%a%%2%%%%%%2%%%%%%%1%%%%>%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%%%%%%-%1%%1%%%	%Q%%%%%%%,%5%%%j%2%J%y%%%X%K%%%%
%%%%%%%%`%%T%u%%%`%j%+%%Z%%%%S%%%%%%,%%%j%%%%%%%<%%#%!%%2%	%%%$%%%
%%%?%r% %%%%?%P%d%%!%%%%n%a%:%%%%-%%%%F%%%%%^%%%%%%%%t%%%%%?%5%=%%+%%=%%%p%q%%[%L%%%%% %(%$%%%%%%%%%\%%%i%%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%%%}%%%e%%%|%%%=%	%a%%%%%%%j%%%+%%%6% %f%%%i%%a%%U%%%%k%W%K%%%%!%%%8%%%%%%%u%_% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/VButtonBox.png__ __9466__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%6%%%H%	% % %%1%I%D%A%T%x%%%%y%\%T%%%%%%A%4%%%A%%%T%@%%P%I%L%P%%E%1%)%E%I%%%,%%%%%%7%%%Z%\%%2%M%K%%%e%%%B%I%R%%%%%h%%J%%h%%%%%%% %.%0%%%%m%%%3%% %%#%%%%%%|%%%s%8%%%w%%%%;%%%%%?%'%%D%%n%%%%% %:%u%%1%%H%%j%o%%%i% %%u%%%%%a%%%%%%%%%@%d%%%%%%%%\%%%(%P%%W%}%K%M%%%%%%%%%%X%%%%%%%1%O%Z%%F%K%{%%%%b%%%%S%%&%%%_%[%W%%%%y%%%%%5%%%W%%%%%Y%%)%%%W%%.%%%/%%%%%%%W%%i%@%%%<%r%%%%;%G%D%D%%%%%%%O%%^%]%%g%%%U%%m%%%%%%%%W%L%%%%3%%S%%%%% %Y%:%#%%+%%r%u%Z%%%%%Q%%%%%(%%s%%%%v%%q%%%%%%n%n%n%%3%W%%4%%X%%%v%_%4%%%%%%<%%z%%%C%1%%%%%@%[%%>%%%%z%%%5%0%(%%F%%%%%%F%%%%%%%%P%7%%5%%{%%6%%%%%%%%%W%%i%n%y%`%%%I%k%%u%/%Z%:%%%%b%%%%5%)%=%%7%r%%%O%]%Z%%w%%%s%R%"%C%p%%%%7%%%%f%%%%1%%%%%%g%%%j%U%%%%}%%%%%g%%I%%%B%%%z%V%<%.%%%%%:%%%%%%%T%%%%%%n%%%}%H%%%%%%e%%%%%y%%7%Q%N%7%%u%%%t%%3%&%%%w%f%%%[%%%%%r%3%r%"%C%%\%Z%%%
%%%~%=%=%%=%%?%.%n%3%%%%-%Q%%
%%%%0%%s%%%z%%~%%v%/%%%%%K%Q%%_%[%P%%z%%%%5%%w%%%%%%%%%%%P%%%%t%%%%%X%Y%y%%%%%Q%%l%Z%%%%V%u%Y%%b%%%%9%%%%6%%%%%%M%%%+%%{%?%%%%7%%%%%4%v%%%%%{%'%%[%f%%%p%<%U%%Z%'%l%[%%%%l%%L%8%1%%%~%g%%%%#%6%t%%%%%P%%[%%Q%%%'%%%%%+%b%%P%%%D%%%% %%%%i%%%%}%k%|%i%%%^%%%%?%%%m%%%%x%A%%%%%%%%T%%%%%%%%C%%'%L%
%%o%,%^%%%%%%t%_%%%q%%%%6%=%{%6%%%P%%o%g%O%`%%%y%P%%%_% %\%Z%5%%p%^%%%%%%%%%%%%V%%%%%%=%7% %q%%%N%(%I%%%%%%%%%%%%%%C%%o%%%%s%%%1%%%%5%%3%?%%W%%%%o%%S%;%v%%%%%w%%%W%z%4%%%%%%%+%%%
%h%?%g%`%3%%%g%%?%\%%n%1%%G%l%k%%%9%0%?%%J%%%%%u%%%%%%d%(%%C%<%%%%%%%O%%]%%S%%%%%\%/%%%q%h%%
% %%%g%%%`%{% %%x%%%%g%%%%G%%;%%%%%%%%%/%T%%%5%w%J%%`%%%%%%%%%|%%%%%%0%%l%x%x%%C%j%%E%b%%%%?%%%%s%S%%L%%%%%K%%k%%%N%%m%%%%%%Z%{%%J%%%%V%%t%%3%~%d%J%%%%L%%P%%l%^%%%%z%%:%%U%%%%%%h%%%%Y%%%%{%%c%%%%n%(%%%%%?%%%%%% %%;%%%%%%%%%O%%n%%%% %%%%!%%g%%%%%-%z%%%%%%E%%%%%c%%L%
%%z%m%J%h%%%=%%% %6%%%%%3%
%v% %^%%%%%%%[%%G%%n%-%%V%%%%?%%y%%%%%%%c%@%h%%%H%G%%%%%%%%%%r%%%S%%%%%%%}% %-%#%z%%%|%%%u%<%%@%%%%%%K%f%%%j%%%9%%;%V%<%%G%%%1%%'%%e%%}%{%%%k%O%%%%%~%%%W%%%%%%!%%%r%%x%%G%S%%)%%%%%%p%%[%%W%%6%+%%%%%%%_%%%%%%#%=%l%w%%%s%%Q%%u%%%%%5%%%%%%%d%u%%%3%%%%-%%3%=%e%%%%s%%%%k%G%U%%s%%I%%%n%%%%%%%%%%%%%%o%%%J% %{%%P%%<%%%%%%%%%%%;%%H%%J%%/%;%%%%l%%%i%%%|%z%%%%%m%%%%%%%%%%%%%%%%%%-%:%%w%%%%_%M%l%%%^%%%T%%%]%%%%%k%u%%%s%%%%M%%p%%h%%%9%Y%=%%n%%R%%%[%%5%%i%B%%%}% %%%P%2%J%%%%%%P%%%%%m%W%%%%l%%p%%%Q%?%d%[%%`%"%%Y%%%%O%%C%Q%%%%h%l%b%r%%k%%]%T%%%%%Q%%%%%%%d% %
%r%%%%%y%%%%m%%%%9%G%%%%O%%w%K%%%%%%%%c%%%%%%%o% %%9%G% %%%=%%%%z%%%%%%%?%}%%%g%%%!%%B%%%%%>%P%`%%_%%	%%~%[%%@%%% %%%>%%%%%%%%%%%j%%g%b%H%d%|%'%%t%%%#%%J%%-%U%[%7%w% %%%f%w%%o%q%s%n%
%\%%%%~%%%%>%1%m%%%%%S%r%%
%
%%%%%%%%+%h%e%%%%~%|%%\%%%;%%%K%%%%%v%%q%I%%%%%%% %%%1%>%%-%%%%@%%x%C%o%%$%%f%%7%W%C%%'%%e%_%%%%%%%l%%%%k%%%%%+%%%N%%%%%%%%%%h%%X%)%%.%J%;%%F%%\%%%%\%%~%%%)%Z%6%/%%%%*%%%%%%%%G%%/%;%% %%%%%%%%c%%%%%%t%%%/%M%%%%}%%%%P%%%9%%%%%%G%%y%m%%{%7%%p%%%%%%%v%%%%Y%%%3%;%%P%r%%%%%%<%=%\%|%N%%%%%<%%%%% %p%r%[%%k%%%+%%<%%%Z%%%%W%%t%W%%%%%+%%u%%l%%%%%%%%%%%%%%%%x%%%%%%%%n%o%T%7%q%%H%%%%%V%%%%U%%%W%%7%%D%%%%%%%%_%%u%%%%r%%I%%%!%%%}%%%.%6%%%%%%%.%^%S%%%%t%[%y%b%%%J%L%%%%%%i%%%%%f%%9%%%g%%%'%%n%%b%%%>%8%%z%%o%%%%%e%%%k%:%%%v%*%}%%
%%%T%%-%%6%%%%9%?%t%b%%n%%%%%%[%%>%%l%%% %%%%~%%!%%%y%%%%?%_%%%%%}%<%%%{%%,%%u%%@%p%P%% %%%%%%% %%?%%%%%%%%c%7%<%%}%%%%M%%w%%%%% %%%%{%U%%%:%<%0%%%%%%`%?%%G%%i%S%9%B%%%% %%n%%%%%{%#%%%%%7%_%%9%%%%%%l%%%p%2%\%%%q%%%%%%%%m%%%=%u%%%E%s%%% %'%%%%%.%%]%U%%%%f%%F%<%%%M%0%n%%\%7%|%%w%%%%%%}%%%m%K%%%%%|%}%%i%%%%%%*%v%%%%%%%%Q%z%a%x%k%7%g%%&%%%%%^%%%d%`%%%%%~%%P%%l%%%I%%%%%%%%%%%%6% %%(%u%%%%%x%%~%~%w%I%2%%%+%%%%%%%k%%%n%%%%%%%{%d%%%%%%I%}%}%]%%%%%%y%b%W%%%u%%]%%%c%%|%9%%%%%%%%w%%+%%%U%:%%l%S%%%%%:%%_%%%}%%k%r%%%i%%%%%%%f%%:%%%%%E%%%%%a%%~%%%%d%%%%%q%N%%%%%%]%K%3%%%R%%%%%%%%|%%7%{%%%7%%%S%%f%>%%%0%e%P%% %%d%%%%%%%%b%%%}%Y%%%%m%%{%%z%%	%T%%%;%|%%%%M%%%q%%q%%%%% %%%%%%%?%%%%6%%%@%9%%%e%%.%-%%%%'%%%%}%%u%@%`%%k%%W%%%%x%%5%%w%z%x%%% %%%l%8%%%E%%%S%g%%%%~%D%w%%%>%%% %%%%%k%%%}%%g%%%%%^%%%l%%%C%%%%%%k%%%F%%%%D%%}%%%%%%%%[%[%5%%r%%%%s%~%%%U%~%C%%%%%%%g%%q%"%%F%b%%%%%%X%%%%%s%%3%%%%%)%n%%q%%G%%s%2%%>%%%%%%%%o%k%%%%%Z%%%%8%%n%%%%%|%%%%%'%%%%%x%%G%%%%x%%%%%%m%%%`%j%%n%t%%%T%%%%(%%%%%M%%W%%%=%%r%%%%;%<%j%(%.%%M%Y%%%%%[%%%%%%%%]%%%%%%%K%%%z%'%%%%g%%%%%%%2%?%%L%%%J%%;%W%%%k%%T%%%0%%%%%T%I%%%!%%\%% %%%%%*%%%%?%S%%%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%%%%p%k%%%.%%%%%.%"%"%%%/%V%%{%%%`%%)%%8%%g%%%%p%%Z%%:%%%C%0%%e%%%%%!%%%C%%k%Y%F%%%+%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%6%%%Y%%~%~%%~%~%%~%%%%{%,%w%%%l%2%Y%%\%G%c%M%~%%&%?%_%%%%%%%c%%%%%n%M%_%8%>%e%b%%%a%%%5%%%7%f%i%%Z%u%r%%%%g%U%%T%%S%c%y%%6%9%%l%"%%%%%%%%%>%%%%%%% %%%%W%%%W%%%%%%-%y%e%%%%-%%%%R%%%4%b%i%,%%%%%L%%%>%n%U%%%%%M%}%%'%%%%X%%%%q%t%b%0%e%%%%%%%%%%/%%E%%%%"%%%%%%%%%%%%|%M%%%%%P%%%%%%F%%%%{%%%%%%%%%U%%%{%z%%E%c%%%,%%%@%%,%W%N%0%L%%W%e%%	%%%I%%%%%% %H%\%%?%%w%%%)%%%%3%c%%%7%%%%%%%0%e%S%
%%%%%T%e%%%%O%J%%}%%%%%B%%%*%n%E%~%%%%%|%%`%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%%%%%+%W%%Y%%%%%%%%R%%%%0%%%%%X%@%%%%% %j%%8%W%&%!%%2%	%%%I%%%L%B%X%%%>%%%g%v%\%%%d%%n%%%q%%>%%%%}%%c%%)%s%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%%%%%%%%%%%b%S%%Z%s%%%%c%1%%'%j%%%U%|%R%~%<% %u%j%%T%%%E%F%%%W%%z%%U%'%'%$%$%%%%%%%%%%%%&%%/%%%%%%%%%0%%%%%/%
%k%3%%%%n%M%%%%%[%%%j%Q%%9%%%a%^%%%%%N%%%%W%%%%&%`%%%s%6%b%%L%%^%(%%O%X%%%2%%a%%%%%%%	%X%%Y%%%%%%%%R%%%%2%%%%U%%E%%%%%%@%m%%%%%%%%W%X%4%%6%%(%<%%%%;%$%%C%Z%f%f%f%%%%%%=%.%%%r%%%%%%%%%u%%%%T%%(%%X%%%0%/% %%%?%\%%H%%v%k%%%%%%[%%%%%%%%n%%%%%% %%~%Q%%%r%u%%%%%}%%G%%7%%%%%%%q%%%V%%%%%_%%%%*%n%E%R%%-%%%%%%%%i%%j%%%%%%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%,%%%5%%%%[%%%%%n%%%%%R%n%%K%%P%C%%%2%	%%%I%%%L%B%0%e%%%%%%q%%>%%%%}%&%%u%%%%%%%%%%3%%%H%%s%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%%T%%r%}%%~%%X%%%%0%%%8%Q%C%S%%r%}%Z%u%%%s%%%%%%%%%}%%d%3%?%%%%%%%	%	%%%J%p%%%{%=%K%%5%,%%%%.%*%-%%g%%B%%%%M%-%%%%%%%%5%%%7%f%%f%%%%}%%%%%%%R%%%%%%-%y%e%%%%-%%%%R%%%%%%%%{%%%%%%S%%%-%%%%%~%%%%!%%[%P%%%6%#%c%S%_%%	%%=%%%%q%%%%%
%%%S%%%%g%%T%^%%[%%:%%%-%T%k%%`%%9%^%a%%%%0%%|%%%%%%%[%%=%F%%%%%%%%%%%%%%%% %%%%%% %%%P%-%1%%%%%\%%%%O%%?%%%K%Z%% %0%l%%%|%%r%}%\%%%T%8%% %!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%a%%7%%%n%%%%%%%u%%%%%%r%%_%:%%%%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%%%.%_%%5%%8%%%%W%e%%%%%%i%%%=%%%%R%%%%g%%1%%%%% %,%%%J%%%%V% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/VisibleExample1.png__ __6134__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%%I%D%A%T%x%%%%y%X%T%%%%%%9%%%%%%%#%%%H% %%F%.%e%7%%%%K%%\%%1%%%%)%%%%1%{%%n%=%%x%}%,%%%%%z%%%%k%D%%k%%%%%<%%%E%%Q%s%%P%V%%%\%%%%%%%4%%%%;%~%%%%%%9%%;%%%%%%%%%J%^%%A%!%8%3%_%Z%h%%%"%}%#%%u%%L%%-%%%$%$%%%%%%%%%%:%%j%{%j%g%O%%%%%%%%%%%e%[%Q%U%E%%a%x%%%%s%%U%E%%%[%%%%%%B%%%%&%;%%%_%%%;%%t%%#%!%%%{%%c%%%/%%z%%%f%m%%{%%%%%%%%3%i%%%%%%%%%%%%%%%h%%	%u%}%%%8%Y%>%X%%%%%%5%k%%%%%Z%%%%Z%%%%%%%!%%%g%%s%g%*%*%]%_%%-%%|%E%<%%^%u%%%%%e%%[%%%%%i%%E%q%~%t%r%%%_%%%%%%l%%%i%%%%%,%\%%%-%%~%`%%%%|%K%%%%%0%|%P%%%2%%%%%%%w%%%?%%%^%%%%%%%%%%w%%,%%.%%X%Y%9%%%%%%%%%%%*%%%]%%%%`%<%@%%%_%%|%%%x%%%%%>%%o%N%,%:%4%%%w%^%>%%%t%%l%%%%%%%;%%%%%%%%%g%%%%9%%%%%%K%%k%%%u%%%%8%d%%%%%%3%%z%%%(%e%%;%W%%p%7%%/%%W%%%%%%7%%O%%%%%O%%H%%H%%%h%_%%%i%%%%1%\%a%%%%%%%%%%%%j%%B%,%%%o%{%f%%%&%#%%%%%%%%%%%%%%X%Z%E%U%=%%%{%%*%6%%%%%%%%^%%%%t%%%%%^%%%h%%%`%[%r%%%0%%%]%y%o%%	%%%%+%%%%%%_%d%%%l%e%%%%%%H%%%%%r%c%%%%%%%*%%%%%%%%%%$%%%%%%%%W%T%%g%Q%"%"%%%g%%%:%e%<%%%%_%O%%%y%\%v%b%%%y%&%%%%{%%%%=%+%T%%%,%%%%%%M%%%%%%e%%%}%%%%%e%'%?%%%%%L%%%%V%%%%%%%s%o%%+%A%C%]%%%&%W%1%%B%%%%%%%%%o%}%%%%w%%%%%%%v%*%%%%%%%%%%J%%%%%N%%q%%7%Y%'%%%^%%^%%%%%%%a%%"%'%w%l%%%%%Y%%%%%%%I%!%1%K%%>%%l%T%%%%%,%%%{%%%%%V%%%=%%M%%%%%%%%%%%%%%%%%%)%%%%:%%%%K%G%%%%%%.%%%%%d%[%%%%%z%%s%%%%n%%%%%%>%%%%n%%%G%%I%e%%%%%%%
%%%0%%%%%%%%%%%%%%^%Z%%&%%%%%%%%%f%3%G%%g%%%%W%%y%%%N%%%u%%Z%%M%p%%%%%%%%%%%%c%w%U%%E%4%%%%:%%%>%%\%%-%%N%%%"%%o%%%u%h%%G%%%;%%~%%%%%%h%L%%%7%~%%%%R%%%%Q%I%e%f%g%s%%%g%%%o%/%W%)%%Y%%4%%%[%D%b%%%%S%%%%%I%%%%q%@%%%%%%%%%%%W%{%%:%%%%%%%%%%%%%%)%%%%%%%%%x%%%6%3%%%%7%%k%2%%%%3%s%%%%-%=%%]%%t%F%%%%%%%%J%%%%%%}%N%%%p%%v%%a%%%%%N%%U%%s%Q%%m%5%!%.%%%W%\%3%%%%%%s%%%%/%%% %%/%-%[%D%1%%%%r%e%%%I%g%%%%%%%%%|%%D%d%4%%%*%%%e%%%_%%o%%%%z%!%}%%+%%%%%E%%q%%p%1%%%%%%%%v%%G%%%<%r%%%C%%%%k%%%%%%%W%%%%F%%?%!%%%e%%%%%%-%k%O%%_%%%]%%%%%/%%[%%%%%%%%j%%%/%+%%Y%W%%%%j%%g%%%%%%%]% %C%'%i%%%%%%%n%S%%%Y%p%%?%B%^%%(%h%x%6%%%x%%%d%f%%1%,%9%S%%%%x%%D%%7%7%>%%%%%%%%%%%%A%c%B%%%%%w%O%%%%	%%%%E%<%%%%%%{%%%%#%<%p%%%!%S%%v%s%%%%%X%%%%m%%%}%^%%%k%b%%u%%s%4%%%%%%Y%%b%%%%n%2%%%j%D%%%Q%7%%^%9%%Y%%%%y%%%%%t%%%%;%\%4%V%%%%%%%%%%%%Y%Z%~%e%\%%%%%%%%[%E%)%%%%%%I%%%S%w%|%l%%%&%j%%%/%%%%%)%>%0%y%Q%%%%6%%%%2%*%g%%%%%%%]%%%{%t%q%T%%+%%f%%%%)%"%"%%%i%%%%%%%,%9%%%.%%]%>%#%%%E%%%%%%%%%r%%%%%J%%%%,%Q%/%d%%%F%%%%(%+%%8%{%r%Z%`%H%D%%%%%K%%%%O%%Q%%%%?%@%[%x%B%%%%%%%>%%%j%D%%"%%%_%%w%%%%_%%Q%%n%F%%%_%_%%%%%%%%M%k%{%}%%?%%%%%2%%S%%c%C%%%%%%%%%O%%s%%^%%%%%%%s%o%%%%_%%%s%%%%]%%|%%p%%)%%%%%]%%\%3%R%
%3%%%%%%%'%%V%%%&% %%l%%q%%%%%%%/%,%Z%u%%f%;%M%%3%%%%-%%%z%M%%%x%%%%%%F%%%~%u%%%%;%%%%%%%[%%3%%.%%%{%{%m%5%%5%k%%X%t%%%%w%%%t%%%%%%%%?%%%V%%%%[%%%1%%%%+%%j%z%%%F%%%X%%%^%%%%%%%L%%%Z%7%%%%%!%%%%%w%%,%:%%I%%u%%%%%%%%S%%%{%%%%%%%%o%%%o%W%%c%%j%1%%%%`%Z%]%A%%|%o%E%[%%o%%%F%n%%6%J%W%%<%?%6%%T%%%%%%%=%j%%I%%E%%%b%%%u%a%o%.%d%%%%e%'%d%%>%%D%D%%4%e%d%%q%%d%%%%%%%%V%%-%%?%%:%%e%i%%N%g%%%
%%%%6%.%%H%%%(%m%%%%9%%%x%%%6%Z%b%%%V%%K%%%8%?%%%%%%N%%j%%n%T%%%%>%%?%d%%1%7%s%%%%$%%%%%G%%%%%%W%(%%"%%%%)%"%%%%%+%*%%%}%%%%%%%%%2%=%_%%l%%%S%#%%M%%M%J%%$%%%%+%%]%%%%%%%"%]%%%%%O%b%C%+%%X%%%%% %%S%]%%%%F%R%%j%%/%?%%G%G%*%"%%%~%%%%%%%%y%%%%%%%%
%O%%%%9%i%%%=%a%%V%%%D%%%	%%%%%%C%%_%%%+%%%%(%Z%o%e%%%%%%%%%<%!%+%~%q%%S%L%%(%%%%%%%%,%Z%!%"%"%%1%%%S%%%?%%%%&%-%%%%P%%%%(%X%f%%%%I%	%%?%%j%s%f%%%%%w%%<%%%%I%%%%%%?%%j%%%k%%%s%L%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%/%Z%%%%%%%%9%3%i%%%%;%~%%%%L%%>%>%f%%%%%%5%%j%[%%%%e%%%"%	%	%	%%=%%j%{%%%a%%:%{%%%.%%%%%%	%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/VisibleExample2.png__ __8200__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%
%"%3%%%%% % %%%I%D%A%T%x%%%%i%T%%%%%o%%%"%%%%%%%F%%%%%%h%%q%I%\%%%C%%h%%
%.%%%1%q%%Q%%z%%%%/%%%y%F%P%%%%%%5%%%%(%%%P%D%%%3%D%`%%%L%\%%F%c%%%%%%%%%%%}%%%%G%w%u%U%u%%|%T%u%%=%%e%9%Y%%@%%c%F%%%K% %%%%%%[%B%%'%%%% %`%%%\%%p%%%%!%%%%%%@%%%%%N%%%%%%%%%I%%%l%H%$%%%%%%L%b%%/%Q%"%%X%%K%%%G%%s%"%%%%%%%%%%%%V%%i%%-%+%%%K%%}%%%k%*%%%%-%"%%@%%Z%%8%w%%%%%%W%g%%%<%~%*%P%%%>%%z%%0%>%%\%.%O%I%I%%Q%%)%%%%%,%|%)%m%j%%%%%%%%y%d%%%%{%v%%%o%%_%%%F%%:%w%%M%%]%%%%%`%%Z%%X%%a%%:%%%%%%z%%%%7%%V%%%%m%d%%j%j%%%%%%%%%%%%O%k%n%%%;%%%%%%%%%%%^%/%g%i%%t%%%%%%%O%%%%%X%X%Z%%%8%%%%%%%S%%'%%%%%h%k%%%%%%%+%%%%%:%%l%%9%j%%%%%s%~%Z%%y%%%%%Y%%%%%%%z%%%%}%%%%~%%%%%%W%%%%r%J%e%%%%%%%5%%=%%%D%%%%C%%%V%%%%%%7%%%%%%R%M%%%%%N%%8%%w%[%O%%%l%%.%>%%% %%S%%%>%%%a%V%%%B%t%t%%%%%D%b%%%%%k%%=%z%{%g%%%r%%%y%%|%q%>%%%%%%Z%&%%8%%%<%%0%%%%F%M%%%%K%[%%%x%%'%k%d%%%6%%t%%m%r%%%%M%%%%s%V%%%%o%%%%%%%%+%%%x%&%%%I%%%o%8%%%c%n%v%%%%%%%z%%%%}%%%%%Y%% %%p%%m% % %%%%%%% %%%%%%2%%j%%%-%%%%%e%%w%.%/%X%%%3%F%%%%;%%|%T%(%%%%V%%%%?%A%%w%2%2%"%O%=%%%%;%%%%%P%%K%f%%%8%%)%/%T%%%%1%[%L%3%A%%]%%n%%E%%%%%%[%%F%L%%%M%B%%%k%Z%%%%%%%-%n%^%o%%%%%%%%%%%%%%f%%%%%%%v%!%%%%;%%%%%%%#%%%#%{%^%%%%9%%%^%P%%k%%%%%%%%%%%V%%S%%%%%h%%%C%%%%%%%%~%%%%7%z%%k%%%%#%f%%%%W%%}%%Y%%k%M%%%%W%%v%%%%:%y%%%%}%%%%=%%%m%%%%%U%`%%%%%6%%%%Z%%=%%%m%%%%%%o%c%2%%o%%_%%%%%%%%%%%[%V%%%4%,%4%:%%%1%%%%%%%v%%%%%%%%%%K%%%%%%%%%%%%%%l%%%Y%S%	%<%%%`%6%-%$%C%%m%%%K%_%p%%_%%%%%%%%%r%%%o%%z%%%%%X% %%%%]%%L%%2%%
%%l%%%%%%%\%V%%%%%%%%%%R%:%%p%u%%%%%%%P%%%%%%%%%%%%%% %z%%l%%]%v%%%%-%%_%g%%%u%%%%%%7%%%%%
%%%%L%%%%f%%%>%%%|%(%%%M%%%%%%%%%%%%%%%%f%,%m%b%%%=%%v%/%%%%%%%%%%7%o%d%k%%%%&%a%%%%W%%%%V%M%/%%>%%%<%q%%b%~%P%%%%%v%%P%%d%%0%%%%u%%d%%%%s%% %%e%%%%%%%N%%%%%%%%%%O%%%C%%G%o%%%.%J%~%%%%	%%%%%N%%N%=%%%%%%{%%%%%O%%%%c%%K%%%%%%%%j%%w%%%%@%%%%y%~%%G%%%%%%%%%%%%%%c%%&%%%%%5%%<%|%%>%%Q%%%%%%K%%%l%%\%%%%s%%
%!%`%%%%.%%%%b%%%%v%%~%%%?%;%U%X%u%k%%%|%% %%d%\%%%\%+%%% %%%t%%%/%%%[%% %%%%W%%%%^%#%;%v%%%?%%%r%%%%%w%u%%h%%R%%_%%%%G%t%%%%%c%%'%w%j%l%%%m%%%%%%%%x%9%%6%%%8%Y%%%%%%%)%k%%%Y%%F%T%%7%i%O%%%P%%4%%%%%%%G%%@%%%%c%%Z%%%6%n%%%%%F%2%%%%%\%.%%%%w%%%v%k%%%%%%%[%%%{%N%%	%%o%_%%%%%%%%%%3%%%%O%b%%O%O%X%%%%%t%%%%F%e%%%/%8%%,%%<%%%%%%%%%%%X%%4%% % %n%%%%v%%l%@%%%%%%%%j%z%%%%%C%%% %%%%%%%%%%%%%%%%%%t%%%+%%5%%%%%*%%L%%y%w%%%%%I%%}%%%%%%%}%%%Z%%%%%%%=%%%%V%b%%%%,%%u%%%%%%%]%%%%%V%%%%H%%%%%%%%%k%%%%E%%;%l%%}%R%%d%w%%%|%%%1%c%%*%<%%g%'%~%%%V%>%%%%%%Y%V%%'%%/%O%y%%%%_%]%%y%=%%%%%,%'%%O%e%%M%/%;%%%1%%*%%	%%V%%%%%%%%o%|%b%%%k%e%%T%%%%%%%.%s%%%^%%%%%%%%{%%_%%/%7%<%\%}%%%%%%^%%%%a%%%%%%%W%%%%%`%%%%%5%E%%%[%%^%%T%}%%W% %%\%.%h%%%%%%(%%%7%%T%%%%%%;%%%y%%=%j%%%+%%t%%%%9%%\%%0%	%%%%%3%%%T%%%%%7%)%<%<%%%+%%*%V%%%n%%%%%%~%%%%%%C%%%R%%%*%%r%%%%%%%%g%%!%%%%%%%F%%%%%%%%8%Q%k%%%Z%%%m%E%\%J%1%w%l%g%%%%%%%a%%%%%%% % %n%%%.%%%K%%%%#%%%%%%R%9%%a%.%%S%[%%%%%%F%%s%x%%%"%%X%Q%J%%%C%Y%|%'%%%~%Z%)%%<%)%%%6%%%%%%%%v%% %%%F%%L%%%%%%m%%%3%%%]%`%%%%%%,%% %`%%%%%%%%%% %%%%<%%H%%%%%3%R%%%K%%L%%%%%%%0%%A%%%M%%~%%m%W%%
%%;%5%%%%%m%%%%%%%%%%B%=%V%%%*%%M%%%%^%%*%'%!%(%5%%%g%%P%%%p%%P%B%%%%%G%%%%%X%%%%%%l%F%j%%%%%%%%r%'%%%(%%B%R%%%?%%%K%%%%s%f%;%3%%%%%)%%%%0%1%U%%%%%%t%U%%n%
%%;%%%%%%,%Y%% % %%<%n%C%%%%%%%%%%d%%%%4%%%(%%%%%%%"%L%%%%%%%6%<%<%%%% %%%=%j%%%%%%%D%%%%%%B%%%{%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%j%%.%%x%%%[%U%%% %%%%%7%%%%f%%%%E%%6%%:%%%r%%%%% %%%y%
%Z%%%%P%-%%k%%B%j%%B%j%%B%j%%B%j%%B%j%%"%>%%%z%k%%%%G%%%%%%%%%%q%'%%%%%9%N%%Q%%s%q%'%%<%%%%%%%%%Z% % %%5%%%%%%T%%:%,%)% %\%%G%_%%%[%a%%%p%%%%%%1%%o%%%%%Z%m%B%%%c%%S%o%%.%%%%	%%c%%%%'%.%%S%(%%%%%%%o%L%%S%s%%:%a%,%%%%%
%%% %%%D%%%@%%I%%Z%9%% %q%%%%r%%%%.%%%%S%%"%,%@%%%%%N%%%%%w%%1%%%%%%%_%%%%6%%%%2%%%(%n%%"%%x%e%%R%%%s%%%e%#%y%%%%%%J%%%%%#%%%%1%%%%%%%U%.%%%%V%3% %W%R%b%%%R%%%%%c%%%%%$%%%%%d%R% % %W%w%%+%%%%|%%%q%%}%I%e%%%%y%z%;%%%%%%%%O%R%x%%w%% % %%R%%%'%M%R%%%%%t%%%%%)%1%%%%%j%%%%%%%P%(%%%d%a%%f%H%|%%%c% %%8%5%%.%H%%%%g%%%%,%%%=%%%%&%%%%%y%*%F%%L%%%-%%%E%~%% %k%%%
%%2%N%m%%K%%%%%e%%%%*%=%%;%%%%%%j%'%%Y%%*%%%4%%%%C%%%[%U%,%%%%%%C%%%X%%%%>%%%l%%#%%%%%%R%%%R%%%R%%%R%%%%g%%;%%&%	%%%.%%0%B%%%%%%%L%%%P%j%%%%4%a%<%t%%E%%%E%%%E%%%E%%%%3%3%%R%%'%%R%%1%%R%%%9%%%-%%%-%%%-%%%-%%%-%%S%k%%%z%%W%%%\%~%%%%@%b%A%|%j%%L%%R%%(%%%E%%%U%%R%%2%+%2%w%x%T%%%%a%%S%%6%%%%%%%P%-%%% %%%%%%?%7%%%<%W%W%%%%V%%%z%%8%%d%%"%%%%%%{%E%% %N%%%Z%%%q%'%W%%%%%F%%1%V%%%7%	%%T%%%%W%%q%%%%d%k%%S%%%%%%
%%W%+%%J%=%N%%u%R%%r%%R%%^%A%%%% %L%%R%%L%\%%%@%!%[%%%%G%f%%%%
%|%U%%%%%%f%%^%%%%%%%d%%j%H%-%Z%H%-%Z%H%-%Z%H%-%Z%h%%%Z%h%%%Z%h%%%Z%%^%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%%%g%f%(%%%N%(%%%b%(%%%Q%s%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%%%%4%1%%4%%%%%%%D%%%%%%"%%%%%%%x%Q%r%m%K%%%q%%%F%%%z% %%q%%%%%x%%%7%%U%%%%T%k%%%z%E%%_%$%%%%%w%S%\%%%%S%%%1%%8%%%%I%%%%0%J%%%%%p%%%L%I%%%)%%y%
%%{%O%+%J%;%%P%$%%% %%	%%%E%%%g%%% %X%L%=%i%%%%%T%%*%M%%%/%%%k% %%^%+%|%L%=%%%O%%i%b%%i%%%%%%{%%%%%%d%%j%H%-%Z%H%-%Z%H%-%Z%H%-%Z%(%%%Z%(%%%Z%(%%%Z%%^%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%R%%%%%g%f%(%%%N%(%%%b%(%%%Q%s%H%-%Z%H%-%Z%H%-%Z%H%-%Z%H%-%Z%%%%d%1%%4%%%*%%%%%%S%%`%%%z%|%%%T%e%%R%%%%;%<%*%%%%%%%8%%j%#%L%L%%%%%0%%%%1%%\%%c%K%%%1%3%]%^%%%%Z%%c%%%%%=%%x%0%%%%F%%%z% %%%%%%%%*%U%i%<%%%l%%*%+%)%%%%%k%N%%%	%R%% %@%%%?%7%%%~%*%5%!%"%W%+%X%L%%^%%%1%)%i%%%:%/%%%%%B%b%%/%%%%)%b%%1%%%%%c%=%<%%%%%d%V%%%%Q%%S%k%%%z%R%%%%C%%%2%Q%5%%%-%%%-%%%-%%%-%%S%%-%%S%%-%%S%%-%t%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%E%%%%\%q%q%%%%%D%%%G%m%x%x%%%%A%%;%:%j%?%%9%%"%%%%%%h%%%%%%%s%7%%%%X%%%}%%%%B%%%%%~%%4%%	%>%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/VisibleExample3.png__ __5360__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%*%"%9%b%g%% % %
%,%I%D%A%T%x%%%%}%P%%%%%%%%%r%p%%%%%"%%%%%%=%%%M%%%%%%%%i%%h%%%%%q%%%V%k%F%#%%c%%%$%%%%#%1%%M%|%%%%c%l%%C%%:%%@%%%Q%|%J%%% %%%E%%*%%%q%p%%%)%%B% %%|%^%%%w%{%%%%q%o%v%o%%S%%:%u%\%%N%%%%v%"%%%k%@%k%%%%S%|%|%%%%%%%=%%%%%%%%%%%%%%%?%%%%%6%m%+%%%%5%L%%T%U%c%m%%%%%k%%U%U%%X%[%h%%%%b%G%%%%[%x%%%%~%$%D%8%%7%=%%%%%%%?%j%%%%%_%%%%Q%%%%%1%:%%F%,%%%/%O%+%(%%%%B%%j%%&%%s%%}%p%T%T%%%C%%%5%~%%%]%M%%%q%-%s%%H%%%%%%%<%%%K%%e%%K%3%%m%_%%%%W%%%w%}%%%%O%%%%%i%%E%q%{%a%j%%%%%%%%%%%%%P%V%y%%%u%%%r%%%%%%%-%%%%%%%A%Q%%%%%3%%$%%%%%%%,%{%i%%%#%%>%%%%%%`%%u%%%%%m%%x%%%%%%%:%T%*%%z%%%%%%|%%"%%w%g%%%%l%%%%%%%N%Z%u%5%m%%%5%%%M%Y%q%d%%w%%m%%%%=%%%%%W%%O%%3%%%%%X%%%%%%%%>%j%u%%%%%%%u%#%%G%%W%^%z%%%X%%%%%%%%%%R%%%j%9%%%%%%%%%=%R%$%S%%g%%0%_%%c%%&%%?%i%%%%%%%	%	%%7%%%%j%%B%l%%%%%%%%%F%%:%u%%%%%%q%|%%%%%%*%%%%%%%Q%q%8%%%%Q%%[%Q%%%s%}%p%S%%w%%6%%%y%%%%o%W%%%%t%0%%%A%%%F%%J%f%%%w%%%9%%%%e%%%%%C%$%5%%%%%)%%%\%^%{%%+%o%%%1%W%%%%%$%%{%%o%%%%o%C%%V%%%%%%%%%~%%|%%O%G%}%9%%%%q%%%%%d%Y%%%#%%n%%P%{%V%(%%%%%%%%%>%5%P%%%%W%%T%%>%c%%o%%%%%k%%*%%b%:%{%%%t%#%%%%2%%N%W%%%%%%%%b%%%%m%%%8%v%j%%%>%%%%%%%%%U%U%%%r%:%:%%%w%%%%%%A%%i%%h%O%g%%u%%%>%,%%%l%%%E%f%%%%%%%%%%%9%s%%%%%%%!%%+%%F%%%%%%%.%%3%b%_%%%%%%%S%%%%:%<%\%%o%H%%%W%p%`%%%9%%%o%%%}%%%1%f%%%%!%%'%x%%%%%%%%%%%"%%%%%P%%%%%?%%N%%%%^%%%%4%h%%,%%%-%y%%7%%%%8%}%%'%%y%%%%%%%C%%%%[%%o%N%%b%%i%%%%%%%S%O%C%%%%%%%%%W%%%)%q%%%y%%%%%[%9%n%N%N%.%N%%T%%h%%g%W%u%%%y%S%n%%%%j%%Z%%%%%%%C%%x%%K%%%%%9%v%f%%%%r%%]%b%f%f%%H%%%%%%%[%%%%%%E%%}%%=%%%f%I%P%?%?%%%%%%%]%%%%%U%%%%8% %%%K%D%%%%0%%%%%%:%%%R%w%%y%%%%%%%%%%7%_%)%P%%U%%%o%x%\%%%%7%%m%2%%%%3%%%Y%I%{%%L%F%%%Y%%q%o%9%%\%%%%e%%'%%_%H%%r%%%%%%%%%%E%U%%%J%%%&%%%%l%%%%%G%%%%%2%l%%%%%"%G%%e%%(%%%2%%%%%%|%y%A%%%t%%?%%%%%^%)%%%%
%%%%%t%%%%%%%E%%%%%%c%~%%I%D%%%n%%%%%%q%%%%%g%%%%%{%x%%q%]%%%%%%%%%%s%%1%%%%K%%2%N%.%x%%%%O%/%&%n%%%%%)%%%%%%%%%%%z%%J%y%%%%>%%%%(%%%%%%%j%'%O%|%%'%C%&%G%%%%o%%%n%S%%%5%x%%%B%f%%%=%z%6%%%%%%%%_%2%-%%T%p%S%D%|%%{%%%6%>%%%\%D%%%%%%\%>%`%\%h%%%l%% %%%x%%n%%%%H%'%7%%%%%%%%%"%%%M%%%%%N%%%0%%l%%%%%%%%g%%%%%h%%%9%Z%0%%%%%l%\%%Q%%\%7%%_%L%=%%#%/%%%%.%?%%5%A%D%%%%%%%v%%k%%%]%c%%%N%%G%%%s%7%D%d%E%I%%% %O%7%G%%%%%%%%%h%%%%%+%[%%}%b%%[%c%%3%g%%%%%%%c%S%%e%%s%%%%3%]%F%%:%%%%(%C%j%%%|%%|%%!%a%I%%%%S%%D%D%%%%7%%%%%%%T%%%%%%g%%M%_%6%z%%%%\%O%=%%%%3%%C%%%%J%%%(%#% %%%;%w%%%%v%9%{%f%`%H%%%%^%%7%n%=%%=%i%A%M%k%_%% %m%%	%%%%w%%%%%%%%%%\%%%%%2%v%5%%%S%%Q%%v%f%%%%^%%_%%%%%%%>%%%m%<%%f%%%%%S%%o%G%%%%%%%b%b%%%%%W%%%%%\%{%%%;%%%%S%u%%%?%%e%%%%%/%X%|%=%p%%z%R%%H%%O%%X%x%%f%%%}%\%V%%%%%%%%%G%%%%%%%%%K%5%%i%%%%%-%n%%%'%%p%%%%*%%]%%%%@%%7%%%%%%%u%^%%%%%%%X%%%%{%{%%5%%I%%2%%%F%%%5%W%%%%\%%%%%%_%%%%%%%%$%k%%%)%m%n%a%e%%%~%1%%%%%6%%b%%%-%%%%`%%6%m%%%%%%O%%x%Y%%c%+%%%%b%%V%%%%%%A%%%%%%%q%[%%%>%%d%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%L%%%i%a%1%-%,%%%%%%%%%%%b%Z%X%v%%O%*%%/%%%<%%%%%%e%'%"%%%%%=%%j%~%%%%C%[%{%%%"%%%%%n%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/axes_inner.png__ __6960__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%*%%%%z%8% % %%L%I%D%A%T%x%%%%y%X%U%u%%%%%%D%%%%%	%%%%"%%%$%(%)%%%8%n%%%%%%%%%X%Z%N%%%I%j%%%f%%%h%9%T%%$%%4%A%%%%%G%%p%%%d%_%%]%%%%%%\%%%+%% %%%%z%%%{%8%%s%~%%%%%%s%}%P%N%%P%%%%%%%%% %%%%%{%&%D%5%%%%	%%%%%%%%%u%2%D%%%W%%% %%%%%%t%%%m%%%%@%)%%%%%6%%%%[%%G%%%%:%%%
%%=%]%N%Z%%%%%%*%z%J%%$%%<%y%%%%~%l%P%%%%%W%<%%%%%L%%%%%j%%%%%`%%%3%%%%%#%%y%%%>%%	%%%&%%e%3%%w%%%%%%{%%3%%?%a%Q%\%%%R%4%%%g%H%%%%%%%~%%%%
%n%4%%}%*%K%%%%%%%%@%l%%/%5%%%6%%%t%M%Y%Q%%%A%a%%%%%r%4%%%j%%u%%%F%%%:%%%:%%%%%=%%%%:%o%%%%%%%<%%|%%%%%q%7%C%%%%%%T%%%%%<%j%%%%a%a%%f%V%x%%%t%%%%:%%M%%%%?%3%%%'%%3%%%%%%%n%C%%^%%Y%5%%<%%%M%%7%4%_%%%%%)%Q%c%w%l%%\%G%%_%%%,%s%[%%%%7%%%%%%%%%%%%%%%%O%%%;%%%o%%%%%v%%%l%%%%<%}%%f%%@%K%%%_%%E%2%%a%%%%%;%,%%%%%%%%"%%%2%%%%%~%%%%%7%/%%%%%%%%%%%%%%%4%%*%%%%Q%%^%>%%^%>%E%%u%%%U%%%%%%%%%1%R%%w%%%%%%%%%%S%%%%%F%&%%.%M%%Z%%%e%%-%|%%w%%!%%%%q%*%y%%%%i%%%%%%%%%%%%%%u%Q%%%%%%%b%%%%C%%n%U%%y%=%c%%[%%%%%%%%%%%-%%%,%%%%%y%%%+%r%+%%%%%4%%%%%%%%%%A%%E%%%%%%%%%`%%%)%%w%.%9%p%%%%%/%%{%%%N%%%%%% %%y%%%7%%!%u%%Z%L%%%%S%{%%-%%%v%%%%%%%!%%;%%%%n%j%%{%%%:% %%v%%%%%%%s%3%>%9%}%%%4%:%y%%%%+%%8%%%%%%;%%%%%%%%%#%v%%u%
%x%e%v%%S%%\%%(%N%%?%%%M%%%%#%G%%%%%%V%%%%d%u%%~%%E%%+% %%%%]%	%%l%% %7%3%%%%%%%%%a%%%%s%%%^%%%%+%%%%%%f%%(%%0%n%%%%5%/%%i%%%%%%f%%%j%%T%~%%%X%e%%%%%-%j%%%%%%%y%6%z%%%,%;%%%%%%%@%S%%%P%1%5%V%^%%4%)%3%&%q%%G%%%%%%%%/%^%%%%%1%%y%%%%%"%%%1%$%t%%g%%w%C%,%%%w%%%%%%%%3%%%m%%%%g%%%'%%`%%s%%%-%%N%%%%%%M%+%]%z%G%%%%%%<%%%%y%%%u% %%%%O%
%%%%d%%%%%%%%8%%-%%%.%%%%%%%;%#%#%a%%o%%%%%,%%%%%%%%%u%% %R%%%%	%%%c%%%%%%%%%%%%%%o%%8%%%>%%%<%%%%%d%%%%g% %+%%%]%%%A%c%%%5%%.%{%%%%%%1%l%s%%,%%N%
%T%%_%%%%%%%v%%i%%"%%%)%%_%^%%2%9%5%'%%%%%%?%%1%i%%%%%%%%>%%%%(%%%%%%?%*%%%`%%%%?%}%%%%W%%s%%%%%%;%%%\%%%%%'%%a%f%;%%%%%%%%%%P%]%?%%%%%3%%%o%C%e%%%%%%%%%J%%%%%%J%%%%%%%%%%%%%%%%%%%7%t%%%%%$%%%)%%M%%4%m%%%G%%%b%b%%%%%$%&%%%%F%%%%7%{%v%|%%u%%%%%_%%6%~%%%%Q%%%Y%A%	%j%E%%%%%%%%%i%%%%q%p%%%5% %p%%1%1%y%%%b%W%%%x%I%%%%n%%% %%M%%%&%w%d%%%%%~%;%%(%[%%%g%v%i%%%%n%M%&% %%%%9%8% %%	%%%c%%W%%%%%%%%%%% %%%O%%%%%%%%'%% %%%.%%%%%%%%%%%+%%%^%%[%l%%%%w%%l%%%r%r%%%%%%%%+%%S%%(%%c%%%%>%&%%%%%%%%%-%n%%
%%?%m%z%Y%7%% %F%%f%%(%Y%%%8%%7%%%%%%%}%%%f%%%%%%%%K%%v%%Q%%J%R%%N%J%|%4%?%%e%%%F%%M%%G%%%8%u%%%%G%l%%6%%R%5%2%5%U%%%%%%[%(%%F%%n%%M%%%%+%%%7%g%N%|%%u%j%%b%%%%%%%.%%%%%%%C%%%'%%%%K%%%%Y%%n%D%%l%%%z%y%%+% %%%%/%:%%%%L%*%3% %S%%6%~%%I%%%%%%%%z%%%<%4%%5% %%%%%%%%y%%%%@%%e%%%%%%;%%%%%*%%2%%r%8%%%F%%%%%V%%%{%%%%>%a%.%u%v%%%g%%W%%z%X%%%\%%%%%P%z%}%\%z%%\%%%%%%%%%%%%%%%%%k%]%%%%2%%o%a%a%%%%Q%%%z%w%%)%%6%%t%%%%w%A%%`%[%%v%%%s%%%X%%%%%O%%%%%B%%p%6%%%%}%p%[%%% %%@%}%%%%%%%>%o%%=%%%%u%m%%%%%%L%%%K%%=%%%%{%w%7% %C%|%% %P%%%%%%%%1%j%%o%D%b%%%%%%k%%5% %]%;%%%%%%%@%%%%%%\%%%%%%W%%^%e%%%%%%%9%k%%%8%%%%%]%% %%%%%%i%%f%%M%%,%/%g%% %%R%n%h%%%%*%%%%%u%%%%%%%%*%%%9%%%%%%%%%%O%%%%%s%v%%j% %m%[%%%9%%%v%l%%%B%%%D%o%D%t%%%%%%%%%3%%%%%%%%g%%%q%%%%0%%/%t%%%%%%%%[%~%%%%X%%%]%%%%%r%f%}%%^%!%~%[%%0%t%h%%%%~%%o%%%%%%% %%m%Z%1%%#%7%%(%y%%%y%0%x%%)%T%y%%%l%%%%4%>%:%%%%-%%%%%%%%.%t%x%#%l%%%%'%%%N%|%k%%E%%%)%%q%%_%[%;%w%%%%i%_%%%v%%m%?%t%i%`%%%%=%%d%%L%%%0%P%%7%M%9%%~%-%%=%j%%%%%A%% % %9%%%%o%%%O%%8%%%x% %J%%!%%%%m%f%M%%G%%%%f%v%%%%%%%^%%%%%c%f%%%%v% %%z%u%%%(%%%#%%%u%%-%%%%%%%%%% %
%%]%Y%s%%%]%`%%%%%%`%]%%%%%%j%%%%E%7%Z%%%N%T%%=%%%*%%%%%%%%%%%%%%%(%s%%%%%k%%z%"%%N%%%L%t%%%e%%w%%%[%%%\%%%%%%c%%%%%B%^%6%%%>%%%=%{%v%%%%L%%k%o%\%%`%T%%%%%%T%%%r%%%%%%%%%%h%%%%%w%%%%%%%%u%9%=%5%h%O%%W%\%W%%%f%%%N%w%%%%<%%%%%%S%%%%L%%%%%Q%%3%J%.%%%%%%%%%_%%Q%%%%r%j%V%a%%;%%P%%%%%b%%%%%%%c%j%%%%|%$%%%%%%%%%4%%%E%%%I%Y%%%%F%%%#%5% %%_%%(%%%`%%%@%%%\%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%%%(%%%(%%2%%%%0%(%%X%%%%%<%%j%%%%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%%%k%'%!%%%%I%%.%0%H%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%(%%%%(%%%%%T%%j%%%%c%%F%S%/%% %%%%.%0%H%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%%S%V%%E%Q%%z%%
%Q%m%%%{%%%h%%e%%D%%%%%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%I%%%L%B%0%e%%%)%%%L%%%`%%$%%S%&%!%%2%	%%%%%%%r%b%%%%%g%&%%%%)%%=%+%%L%B%(%%O%%%;%z%%9%y%%%g%B%T%C%%q%%%%%%W%e%%% %@%d%d%d%}%O%%%%%%%{%%%%%%%% %N%%%%U%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/axes_layout_example_1.png__ __7154__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%%%% % % %R%w%d%% % % %%t%I%M%E%%%%%%*%%%%z%8% % %%%I%D%A%T%x%%%%y%X%U%u%%%%%%)%%%,%.%,%%%%%)%(%%%R%#%
%%%`%c%:%%%%%%%%%8%%%%X%%f%%%M%%K%%%%8%%%%%j%%{%%%,%.%%=%%%h%e%2%%\%$%%%+%h%%%%%%%%%%%=%%+%%%%%s%%A%%%%d%% %%F%%O%%%%%%}%%z%&% %P%%%%%"%b%e%%s%%%%2%%% %%%E%Y%O% % %J%%*%%%%}%?%+%%3%%%%%1%%<%_%%%%%_%%%z%%%%%}%%%%;%%%?%%1%s%%%%S%2%%	%%%g%)%%E%%%%R%%%%%%%|%4%g%1%%%g%%{%}%o%%%%%%%%%V%%%%%%E%%%t%%%%/%%% %%%
%	%Y%%j%5%j%%%S%%%%%%%%%1%M%%%%#%%U%%%%W%%%%%%%%%%%%Z%_%%%%F%%%%!%%%%o%X%%V%%7%N%]%%Q%u%%%%%%%%%%g%%%%%w%%%/%%%\%%%%0%%%A%%5%%%%%%m%o%O%%y%'%m%n%%%%%%O%%%%%M%%%]%s%%%%-%j%%%n%}%%%%%}%_%5%%r%%%%%%%i%%%%%%%%g%W%%:%k%i%i%e%U%%k%/%%%;%u%%%l%s%%%%d%t%q%%/%|%%%%Y%'%%d%%_%%)%%Q%%%w%%%%%3%%%%4%s%%%%%%c%b%%%%5%%%$%%%%y%%F%%Z%%%%]%%%%%H%M%%}%%%`%%%%%%%G%f%%%%%%%%%t%%%%.%N%6%%%K%%%%]%%%b%R%%%\%%%.%M%L%7%:%%%%%j%%%%g%_%%%9%s%j%%%1%%D%%w%%.%%%%%%>% %%x%%%y%%%%#%%%M%%2%%7%%_%%N%\%Q%!%3%,%,%\%%y%%-%o%%|%%%u%y%[%%[%%%%W%%%%%%.%%%%U%%%%%o%%%7%%E%%%~%"%i%G%%%I%%%%}%%%%%{%%%%%%~%r%>%z%%%%%v%%%%%%$%i%%%%n%%%%/%W%'%5%%%%%%%%%,%%%G%%g%%%Y%%%j%%%%{%G%%z%%%%%P%%b%\%%7%I%%%P%%%%%:%%%H%F%b%%~%[%%%%%7%}%%%%%%b%%w%<%%%%8%O%%%%%%C%%f%M%%Z%%%%%W%%%i%%s%%%%%%%%
%%%%%%>%%u%%w%/%m%%%A%%$%%%%C%j%^%_%9%%%%N%%%k%%q%%%%%%%%%i%%%%<%%%i%%%M%%%?%%"%%%%%%+%%%%}%%D%%	%o%G%%%%%%$%%%%#%"%R%'%b%%[%%r%v%V%h%%1%n%%%%s%6%%%%e%%%B%~%<% %%%%%%%-%v%H%%o%-%m%+%V%%%%k%%%%n%6%q%~%e%%f%%w%%T%%t%%%%U%E%;%%%%b%%%%%F%%G%%%F%u%%%%C%%|%b%%%%L%%%N%%%D%d%%%%&%%%%%%%y%%%%[%1%%%%%%%%%%%|%%%%c%%%%0%%%%%%%m%%%u%%|%%%%%%%%z%%%%O%%%h%%w%&%'%%%%%%%%
%%%%#%i%1%%j%%%%\%%)%%%%9%%%#%d%%%%%%%;%F%N%%=%%%%i%%%%i%k%?%%%2%%s%%I%%%6%j%%K%!%%9%%=%%%%f%%Q%M%%%%% %n%=%%#%%g%F%%9%-%R%5%$%%%%4%%o%%*%%%v%%%%/%/%%%"%)%%[%%%%%)%%%%%A%%%%%a%%%=%"%"%?%F%%%Q%%%%%a%%%%%%%/%%%%%%X%%%%%%_%2%%%%%%%%%
%	%Y%%%-%%|%%%%%%%%=%,%%%f%%%T%%\%<%%f%U%%`%%P%%B%%%X%%v%%,%%%%,%%%q%3%%%O%%g%%%o%c%%%c%%%%%%o%%^%D%D%>%~%s%%%4%%A%%a%%%%%n%%v%%%u%k%%!%%%:%%%%%W%&%5%%%w%%%%%q%%	%%%%%%q%E%%%K%%\%%%%[%%%%v%%5%q%T%%%b%%%=%E%d%%%%y%%%%%%&%%%g%%%m%%N%%n% %"%n%%N%%n%%{%%%C%q%%%%%%%N%g%%%%"%%%A%?%q%%S%%*%"%g%%%J%%6%u%E%$%)%%%%%W%%%%i%%%U%%%%%%%%b%%%%%%%%%<%%r%w%%%}%+%j%R%H%%.%%N%9%4%}%%%%%V%w%n%%w%~%%q%h%%%%{%]%l%%%*%Z%%%%%-%%%a%[%%%,%o%%%J%%%%%%%%&%"%%%V%,%%i%E%g%%%q%%<%.%%%%%:%n%%%#%%=%2%%%c%%%%8%%%.%i%V%%%%c%%%%_%%%%%%%%y%%%%%Q%9%%%u%%7%%%%o%s%F%%%%%%L%o%%%o%%%-%%%%%%!%%%%%%~%y%%%%%%%.%>%%d%%u%%z%%%%%%!%%%v%%-%%Q%%c%%+%%/%9%k%%]%+%%%%%%E%%%<%%r%%%%=%L%V%%%%Z%^%=%%%%%W%3%%%%%%%%%F%?%g%o%Y%%J%y%W%g%k%%%%%w%%%1%%[%%%%%%%%%+%%%y%%k%%%9%%%%%9%%%k%d%%%L%%%%%G%D%%.%%% %G%&%4%%N%%%%o%%j%'%%%%L%%q%%}%i%H%%%f%%,%w%i%1%%e%`%B%%%%%%_%%%%%1%d%G%Z%%%?%%^%%%%%%%9%%%%&%"%n%}%:%%}%f%%%%j%%%%%N%%%%%%%%E%%%%'%r%c%G%%%%Y%%t%F%D%%%i%(%"%%|%%%H%%%{%%O%%%%%%%'%l%n%%%%%%%%E%%%%5%%q%%%%%%V%%%[%%%%%%%f%%%U%K%E%%~%%%}%j%W%%%^%%Z%%K%+%;%%~%%%%%%5%%%~%5%%w%m%%%%m%~%%1%%}%%%D%$%%%%4%%C%D%%c%%%%%%%%%%%a%%n%%0%m%%%%8%%%b%%%N%%%$%8%p%Y%%%%%%%0%%%%%"%"%%%r%%H%	%%%r%%-%^%z%B%%%)%f%%s%l%%%%%%c%%%%%%%%%%%%%)%%%|%%v%%%%C%O%%%3% %v%%%%N%%%%%%m%%{%"%"%%%n%%K%%_%%%i%W%O%%*%`%s%%%%%%%%%%%x%]%%%%%R%|%%i%)%%%4%%%%%%%%%%%-%%%%o%]%7%%I%%%=%%%1%%%%%%%R%%%e%1%/%%y%%%%b%[%%t%%9%%%%[%%_%%%S%%r%i%%%9%'%9%%%%F%%J%W%%%%9%%%%#%%%%7%%1%}%%%t%%%}%%Z%:%W%%=%%%%%%%Y%2%e%%O%%%%%u%%%%(%W%g%%%%^%%%%B%b%%%y%%%%!%5%e%%%9%#%%>%[%%%%,%~%f%%%\%4%%%%%%%%%%}%{%|%|%%C%%%{%%R%	%F%%.%%7%-%)%%s%d%%?%%%r%%%%%%%~%t%s%%%%% %%v%%%9%%%%%%j%_%S%%%%%%[%%z%&%%%%%%%%%%%%%%%K%%%%g%D%%%<%y%%%%%%S%#%%T%b%P%%%{%?%%%%Y%@%@%%c%]%%4%%%2%+%d%%/%%.%~%%% %O%%%%g%%%%J%!%!%%%%%%%%_%%%%%s%Y%%%(%%%y%%B%%|%!%%u%%%% %t%%%u%2%%6%%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%%%%%u%%%%% %%%%%% %%%D%$%2%2%%%%% %%%g%t%%%%%% % %%%%y%%.%%-%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/axes_layout_example_2.png__ __11380__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%%%% % % %R%w%d%% % % %%t%I%M%E%%%%%
%"%*%%%%F% % %%%I%D%A%T%x%%%%{%|%%%%%%%@% %%P%Y%%%!%%f%%%%P%%f%u%u%	%%%%%z%K%Z%X%s%l%<%]%%4%6%%T%d%%"%
%%%%%%%j%%%u%%%t%%%%%)%P%T%J%X%%,%Z%%(%^%"%N%%%%%%%N%%%%%%%c%%%I%6%%%%%<%%%[%_%%%%g%%%%%%%%<%%<%3%%%~%-%,% %%%%%%%%9%}%J%^%%+%%%%X%%l%%%d%%%y%s%%%%%% %=%%/%%% %%%%H%%%%%~%%%%%%%O%D%%%%%%%%%%%%%%%%v%%%%%%%%%%%%:%-%%%%%%%%%%%%_%K%%5%%%%t%|%%y%3%%%4%%]%%%o%_%g%%|%%%%%%/%%%{%%%%%;%%%%%%"% %8%
%I%%%%%%%%%%%%|%%%%%:%%K%%%%%y%g%%o%%%%%3%%n%%z%D%%%%%T%%%%%%W%%#%%%%C%%N%%%y%%O%%D%%t%%%%%%w%%%.%%g%%%%%O%=%k%%4%{%%2%%d%%%%P%P%|%%%%%%=%%%%!%%%%%%%%%%%&%<%%;%%%%%%%_%%%%f%%%W%%%p%%%%%%K%w%[%U%%%%%1%%%%K%%%v%%%Y%%%%%'%\%|%%%%%9%%%%<%%9%F%j%%%%%%%%%%%%%%%%k%%}%%U%:%o%%5%%%%%-%c%M%%%%%n%j%%-%%%i%%%Y%%%#%w%%%%u%%%%%K%u%!%%-%%1%%%.%%;%n%%%%%%%%%%%.%%%%%%/%m%%=%r%%%Y%%%%%%#%%%o%%v%l%%%%%%%1%%%%%%>%%%%%%%%%%%%D%L%%H%%%%%%%%%I%% %%K%%%%6%%v%%%%'%W%|%%x%%n%;%q%]%%%%%%%S%r%%c%%%[%%%%3%x%%W%%%C%%%%%%%C%b%%%e%%%z%%%%%%%%%%o%t%%4%%%&%g%L%%%|%%w%%~%%%r%C%`%%%%%%%%%z%W%%%%_%%x%F%J%%%%%%%+%%%%%%%%c%%%%%%%"%?%%%=%w%%%%%%%5%y%%%%%]%q%M%%|%%l%_%?%%%%%%%d%%%%%F%d%%H%$%t%U%%%%%\%%z%%%%%%%%?%%%%%%%\%%%%~%%%W%%}%%%%%\%%%%w%n%9%%%%%^%%%%%%:%~%%	%%%%%%j%%%%%%%<%$%%%%%y%c%%%%%%w%%'%r%%%%%%7%%%%%|%%%%%%%%s%%%[%%%	%^%%%%%%%%7%%%%f%%%%%|%?%[%|%%%%s%%%%%%%%%,%~%%%%%%%%o%%%%%%%%o%%%X%=%%%$%%<% %i%%5%%Z%%%v%%%C%%%%%%%%%%Y%%%%%k%N%%x%%%%%>%%%%F%%%q%%%%%A%%%j%C%%k%%%%%n%%%%N%%/%%a%h%%=%%}%"%%.%%$%K%D%%%%%%d%%%%%%%}%k%k%%M%-%x%u%%%%%%%1%%%%+%%%%%%%%;%%%%w%%'%%%%%}%%m%'%M%%%%{%>%%%%%n%v%%%%%H%%%%%r%%%%%%%i%%%'%%%%w%%_%%%U%%%%K%%%%'%%%%	%%%%l%%L%%x%%%%%%%%o%'%^%%"%w%%%2%%%U%7%%N%%&%{%j%%%%%9%g%%%9%%%%$%Y%%%]%<%a%%%%%%q%%%%&%"%%%%%%%%%%o%\%%%%%%e%%%%%%%%;%e%\%%g%%%%u%?%%%v%%%H%%%%%%%y%%%%%_%%]%%l%%v%{%%t%_%%%%%%%%#%%i%%5%%L%N%%%%	%%%&%O%;%%%%%%%%%'%%%%%?%%%N%%%%%%%%%c%%%;%%%|%-%%_%%r%|%%9%#%%%K%%%i%%u%%%Q%"%%%%%)%%%%%E%%%%%@%D%D%~%%%%%i%d%I%%3%]%%,%%]%%%%k%%%%"%%%o%%|%%}%%-%9%M%D%%%%%%9%%%%~%%%%/%/%%r%:%l%%%%%p%d%%%%%%%%%%%%%%%+%"%/%%%+%q%%%%%%D%%%\%%%%K%%o%>%U%D%%%%L%%>%S%%,%x%}%%%7%6%%%o%-%%%%%D%d%%%%2%%_%%%.%b%l%}%N%%<%W%%%%%%%%%%%"%r%n%%%%%o%+%%%%P%%%G%%%h%~%%%o%k%%%u%;%%%K%%d%%%%%%%7%%c%_%c%%%%%%%%%%%%\%%%%%%F%%7%`%%P%M%b%%%%%%%r%%%?%i%%%%w%%%%%Y%"%2%%%%%%%%%%"%%5%s%Q%%%%%%%%%#%%%%%)%%%%z%%%%%%%%U%%%z%+%%R%%%%~%%n%%%%%%%5%%W%5%%%%*%%%%{%%%%+%%#%%x%%%I%%%%%_%$%9%A%9%u%%%%%%M%O%U%%9%g%%%%%n%~%%%%%%)%%w%%%%%%O%%=%q%%%p%o%%%%%%%%%%s%%%%z%j%%%%t%%:%/%%8%M%%%%C%%%w%%%%%?%%%%%w%%%<%%%%w%%%%3%%%q%%%%%%%%%%%%%g%=%%%%%%%%t%\%%.%?%%%%%%0%%j%X%%M%%&%%t%i%p%%%L%%%'%"%%%<%%e%%%%%6%9%}%%%%%E%%%%%H%%%Y%%%%o%l%}%%%%%%%f%[%%%~%%g%%p%%%%%%^%h%j%%%%%%E%d%%%m%F%%;%?%%B%D%%%%%%%j%%8%G%s%U%2%*%'%%%%F%h%%^%%%%%"%%%%%%D%%%%%%%{%%$%%%%%%%%%-%%O%%9%%%%+%%%%%%%%,%y%5%%u%3% %%%%V%%%%%%H%%%e%%%Z%%:%%%%G%%"%2%a%%q%W%%|%|%N%%%%%%%%%%%%>%}%%%/%D%d%%%%%8%y%%	%%%%%%%s%%q%%%%-%%%D%4%%	%m%x%%C%%%%%%_%%%%%%%%%%*%4%%%%%%{%.%|%f%%%%%%%%s%%Z%5%%%]%%%%%"%"%%%%%I%<%O%%k%%%%%v%y%%N%%%%%^%%%%%%%%D%^%,%%%5%%%|%%a%%%%%p%%%W%_%u%%%%%v%%%X%%q%%%%%%x%~%%%"%"%%%%C%%~%%i%%%%%%?%%%t%%%%%7%.%%6%%%%%%%%~%%3%%%%D%v%n%%%=%%4%%%%.%%.%%%;%%%'%g%%%%%`%%%%%%c%%%?%%%%%%%/%%%%?%%%%%K%%'%%%o%8%%%%%S%%%%%%%%.%%Y%%g%%,%%:%N%%%%&%%v%%%>%}%J%^%|%Y%m%%%%v%%Z%%:%n%%%%%%%%h%%e%%%%%%%6%]%%%%%%%%^%%H%%%U%%B%%~%%%E%%%%%+%/%%%%%%%%%%y%s%%%%%h%|%%%%%_%s%_%[%[%%u%%%#%j%%z%%R%%%%_%4%%%%%:%%}%%%%%O%%~%%s%%/%~%}%%%%%%%%%%7%f%%%O%%0%%%%"%%%%x%.%%% %%%%%%%%%G%%W%+%S%%(%-%\%%Y%<%%%%%%%%%S%%%%%*%(%x%%%_%i%%/%%1%c%F%%%?%%%%%
%%%?%>%%}%#% %}%N%%%L%%%]%%%%%%%%%6%A%%%%%%%:%%T%%%%%	%%%	%%%%X%%	%$%q%%P%%%D%%%%%%J%%%%%%%~%%%G% %S%%%%D%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%3%u%%X%k%D%%%%%[%%%R%	%%u%%%^%y%%%p%t%t%%%%q%%%[%x%3%%%%v%%%e%/%%%%%%	%%%%%b%l%%#%%t%%R%]%% %%%%(%%%%%-%%%%c%%%%%/%S%]%%l%D%% %%"%%@%'%%4%G%% %=%B%%%P%%A%%@%y%%%#%%,%%4%R%]%% %%%#%%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%%%%%%]%_%%N%%z%%%D%%7%(%%%X%\%%z%% %C%z%	%%%%%%%F%4%%]%%%%u%x%%%%.%%%F%%#%%Z%)%%%N%%%6%C%%!%%%%%f%%,%v%%%%x%%;%%%}%N%E%%%%4%%)%"%%Y%%%+%o%7%%)%S%%A%%t%%i%%%I%%%"%"%%%%%1%%2%%g%%%%%%-%%9%%%%%%%F%% %A%%$%%*%%%%S%%%u%%^%1%!%T%Y%L%%)%% %%%%%%)%%f%%2%%h%h%%3%%d%'%%4%M%%4%-%%%%s%%%% %%P%/%%%%e%I%%s%d%%X%,%%%%%6%t%% %C%:%I%%%K%%/%%%%2%%%W%%w%K%y%U%%%%%%B%%Y%%v%%g%%%v%%%%n%%%H%%% %I%%%+%%%%%H%=%%%%%(%%u%%'%P%%%%%%%~%G%I%u%%%%d%%%X%+%%S%t%%%.%%%%%%%%%%a%%;%5%/%D%%t%%%%%%%%r%%%h%^%%X%%%H%u%%%%4%%%%B%o%p%%%%%%&%%/%z%%`%%,%%4%%-%%	%G%%%%%%%%%%%%%%% %z%%}%&%%Y%%%%%%%d%,%D%%%C%%	%2%%"%%%)%%%%%% %z%%e%=%2%%"%%%-%%%#%s%%j%%z%%%%%%%q%x%!%b%E%%%%%%%B%%M%%)%z%%%%d%!%"% %%%%2%%"%%%%%%%%%%%"%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%%%n%%%K%%%%%%%%n%%8%J%%%%%%=%d%e%%q% %!%%%%)%%%5%%%%z%%y%%u%%%%%%%5%B%k%%%%%%%5%%%Y%%d%%@%%%%%%%%%.%%q%%%u%%6%w%%7%%%6%0%s%%%%L%%%,%%4%%%e%Z%_%$%%%e%A%%%%%%4%%%%%%%%%%+%o%7%F%:%o% %u%X%%d%%@%P%B%%%%{%%T%%%%8%%%L%%%n%l%3%%%%%%%%U%%j%%%%%%%%%%%%%i%%%%%2%t%%6%A%&%%@%%%%%%E%Y%"%"%N%%J%%%%%%%b%%X%,%%%%.%t%%N%A%%%%%%8%%%t%6%#%k%%;%%%S%%%%*%%8%%`%%%|%%%%%:%%	%W%%%%%%%^%%,%%%%%"%%%'%%(%%%%%o%%;%%%G%%%%[%p%%j%%%%]%w%x%%%A%%+%%1%%?%%t%%%%5%{%%%]%w%%%u%%%r%%C%%%d%X%%N%N%_%%W%/%%%"%R%%4%%%@%%9%%*%%%D%%%%%X%2%E%/%%%%%%%@%%%.%%%%%%%%%%%o%Y%E%%%"%k%k%%Q%%.%%8%% %%%;%M%%%@%%%d% %%G%%%P%%A%%@%y%%%`%%%%C%S%]%%:%E%%%%l%%%%T%%%N%%d%%)%y%y%%%%%t%% %%L%a%h%i%g%%%`%
%C%K%;%#%% %S%%Z%%%A%%%%%%%%2%%%%%v%F%%%%0%%%3%%%0%%%%%%d%%)%%-%%% %%L%a%h%i%g%%%`%
%C%K%;%#%% %S%%Z%%%A%%%%%%%%2%%%%%v%F%%%%0%%%3%%%0%%%%%%d%%)%%-%%% %%L%a%h%i%g%%%`%
%C%K%;%#%% %S%%Z%%%A%%%%%%%%2%%%%%v%F%%%%0%%%3%%%0%%%%%Y%%d%M%%%%%]%w%%%%p%%%"%U%%%]%7% %R%%%%%Y%%d%a%%%%%%%%%%%<%%%N%%U%%%,%%	%0%%%%%Y%%d%u%%%%+%%]%"%%,%^%%%l%N%%%
%/%%%%t%[%U%%`%%C%K%;%%*%%"%%%2%)%;%S%D%D%2%s%r%%%%H%%F%M%%%%\%1%%%%%#%%%%%l%4%%%%%y%%l%%3%%e% %P%%}%%%%j%%%%E%Y%]%%%4%M%%4%%
%%%%%T%%%,%%/%%%%%]%%%%b%%U%%@%)%V%%%%%%%%%%%%%$%%q%%%C%w%%%d%%G%w%%Y%%%%%%%%%|%%%%%:%%/%%%%j%;%%%%%Q%#%%%h%%[%J%%F%%%l%% %s%%%#%s%%j%%%%]%w%x%%%A%%+%%1%%w%%T%7%Y%V%%%%%>%%%9%2%%%%%%n%r%%%%;%^%%%%%e%%%!%%4%/%%%t%%%%%%%%%o%j%%f%U%e%!%)%%%%%%S%%9%k%	%X%%%%}%%A%%t%%%%>%% %%%`%a%%%%2% %%%%%d%%%%%%%0%[%Q%%%%N%X%%%G%%d%H%+%,%%%%%Z%"%%8%}%5%^%%@%%%H%i%%8%%0%%"%g%W%e%%S%c%%3%%%%%%%}%%C%K% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%#%% %(%% %%%<%%%%%%2% %%%2%%%%K%%%%%%%%%y%%%*%%%%x%*%*%%#%`%]%%%%S%%s%k%%#%%%%%%%:%%^%%w%%%%%%%5%%%%O%a%u%%%% %%%% %%%%%\%Y%%%%g%%Z%w%`%s%%.%W%x%s%%%%8%%p%A%%w%%{%K%C%%U%%%P%%U%A%%i%%%I%%%"%"%%%%+%o%7%%%p%9%%%%%%%%4%6%%,%%%@%%`%%'%%G%%%%%k%C%%%%% %%%.%%"%%%%%I%A%%%w%v%%%i%"%%%%%%
%%%%+%%"%%%%r%Y%%Z%%%7%F%%%H%%%9%%%y%%%%%%-%}%%%E%%;%c% %%9%%%Z%%%%[%%%%D%$%\%U%%%%j%%%%T%-%%%/%% %]%%n%h%%%%x%%%=% %"%%A%%%%%%;%*%r%v%U%%e%%%%B%"%!%%%%%%7%%%%j% %L%%r%%%%3%%%%%%%%%%%%%d%% %%%%Z%%P%%A%%@%y%%% %%%d% %%G%%%P%%A%%@%y%%% %%%d%H%7%%%%%"%%%^%%S%q%%D%%!%%p%%%%% %C%:%%N%%}%%%%G%%%%w%*%V%%A%%$%%%%%B%%%%q%%b%%0%G%%t%%%%%(%%%i%%;%%%M%%-%%^%%S%q%%D%%!%%p%%%>%%%%% %%%d% %%G%%%P%%A%%@%y%%% %%%d% %%G%%%P%%A%%@%y%%% %%%d% %%G%%%P%%A%%@%y%%% %%%*%%%{%% % %$%c%% %%%%% %%%}%%%%%%%%%%%%%%%&%%%}%% % %t%%6%A%% %=%%%%%%P%%%	%@%2%%%%a%D%S%]%% %%%%%%%%%% %)%%%Y%%%%%%N%%h%h%%%%% %%-%%%Y%%%%%@%%%3%%%B%%^%%%%G%%T%%%%%%%%*%%%%E%%J%%%`%@%%%%%4%%t%%%%%%'%%%1%%%a%D%%%%4%;%/%R%%w%%%R%]%%l%%%A%%%%.%u%%%%%%%9%%%W%%r%%%B%]%/%%%%%S%]%	%l%%%A%%%%.%u%%%%%%g%%v%e%Y%_%Z%%e%/%%%%%%	%%%%%b%% %C%%%%!%%%$%>%G%V%X%%%%=%A%%%%f%%h%%B%%)%(%%P%/%2%{%E%%0%%%%%%%%7%%%%%_%%%%%J%%8%%%%%#%%%%%4%f%%%Y%%^%%%%%%8%:%%%%t%%t%%%%%^%z%x%}%Y%%%%=%%y%#%%9%%%%i%x%%R%%%%%;%*%r%v%U%%e%%s%y%h%e%%[%w%%%%,%'%%%%%%%%O%%%%%%%"%2%x%%%%%%%%C%%%%%:%%%%%%%6%6%%%%%%%%%S%%%%%T%[%[%k%%%%% %t%% %%%<%%%%%%2% %%#%%%v%%%%Q%%#%%%6%%%%Q%}% %A%%$%J%%%F%%%%
%%d%@%%4%%m%T%%@%%%%%8%p%0%%%%%S%m%V%%%%Z%X%%%%%%%%e%%%%%% %%9%-%?%?%?%%5% %%Q%%%%%"%%x%'%@%b% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/axes_layout_example_3.png__ __44614__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%%%% % % %R%w%d%% % % %%t%I%M%E%%%%%	%%%f%%% % % % % %I%D%A%T%x%%%%y%%l%U%u%%%[%k%%}%%%%%/%\%%d%%%%%8%\%5%
%%%%%y%E%A%%5%%%%%|%%%%%%%&%j%^%_%%%%3%%%%%%%&%%%%%&%1%a%p% %%%%1%1%%%%S%% %%x%%%%%%%%>%%%%%%%}%%%%%{%%%O%%N%U%%s%%T%%%%%%%%k%%%n%%%%H%$%2%%%%%_%% %N%~%%)%%}%%%%H%$%r%0%%%%o% %`%%%%%%%M%%%H%$%%9%x%x%%/% %%%D%%%%%%%g%%%%?%%-%%% %j%%%%%%%%%%=%%%%c%%%%k%%%%%\%%h%%%%%%%%%X%V%~%S%%%X%V%%%U%~%5%K%%-%%%%%6%%%%%'%%%&%%V%o%%%O%%%k%%x%@%%k%%%%%%z%E%%H%$%r%%,%#%d%+%p%%%=%%%v%%%%O%%%%%%%t%A%%H%d%r%%%Q%3%%%%%3%%%%%k%%h%%%%%%%x%%p%T%%%%%%%}%%%%=%%%%z%%%w%%%%%%%%#%%%%%%%%%%%%%n%%C%9%%f%%B%F%D%%g%?%%%%}%%%\%%%%;%%%%%%%%U%%;%!%\%%%%%%%|%%%%%3%W%%%%>%%%%r%%%%%%%%%%%F%]%Z%$%%%x%%%S%%=%%%%%%%%4%%%%y%%%Z%%%%%y%%%%%r%D%w%%]%/%z%%%_%y%%%%%%%_%%%W%y%%+%_%%%O%%%%W%%%%%%%%%%%%%%%%%%%%%6%%%%%%%%%?%%%%%%%D%&%%%%9%u%%%.%}%d%)%%w%d%%S%%%;%%%#%%%%'%}%%%#%w%&%%}%%%%g%%%%%7%%X%%%K%%%%%%%%9%%	%%%%%%%%%%%%o%%%;%%U%%%|%%%%}%%%%%}%"%%%%%%%%%$%}%%%%%r%%%%%%5%q%+%	%%1%%y%%%w%g%%%%_%%%u%%%;%%%3%r%%%%>%%g%%%f%%%g%~%%%G%%%%%%%%t%%%%%c%%r%%%%%%%%%%%%o%>%%%]%%%=%o%%%%~%%%?%|%%N%%%O%%%%%O%>%%g%%%%%%%o%%%%%%%%%%?%x%%%%[%>%%%%%%%%W%%%%%%%_%}% %n%%%1%%>%%%%%@%|%%%%8%%%% %|%%%g%>%%%%%x%%;%%%[%%%%%?%%G%%%}%%%%:%%7%}%p%%%%%%%%%%K%g%.%%%%%%%%%%%%%E%%%%%%%%%%%%%N%=%%%w%%%%%%%%5%%%%%%%%}%%%%%%5%%~%%%%;%N%9%%;%%~%%%?%A%?%%%K%%%%{%~%%%%%%%%%'%%}%%K%v%%s%%w%%o%%%%_%%%%y%%n%%%w%_%w%%O%%% %'%%%%/%}%%%%%%}%%^%%%W%=%%|%%o%}%%%/%z%%2%%<%D%"%%%Z%%%%%=%d%%%%%%%%3%%%%w%%%C%%%]%%'%=%%%%%w%%%%%%%%y%P%B%%%=%%%%%%%%%%%%%v%%G%%v%%%%#%%%%c%%%%%%%%|%%%_%%%w%%y%%+%k%%%s%%%^%{%%7%%%%%%%%%o%%2%%=%%%_%s%%c%^%%%7%=%%%x%%%%|%%%%%%W%?%%m%%%%%_%%%S%%%7%n%%%%%_%|%%%u%%%%%u%
%n%%%%%z%%o%%%%~%%	%%%%%x%%%%?%%%%%%%%%%%%%%%%%W%<%%%+%%%%%%%%w%%;%%~%%[%~%%%e%^%%%%%%%7%?%%%%<%%%K%%%m%%{%%9%%%%%%r%%%%%%^%% % %%y%%%%%n%%%%_%<%%%%%3%%%~%%Q%%%%o%%%%%}%%%>%y%%%%%%%%% %|%%-%%%%%]%%%%]%|%%%%%o%]%%%O%%%%%%%?%%%%%5%%-%G%"%%%Z%%V%%P%[%F%%%%%G%>%%O%%%%%%%%%x%%%%%%%<%%x%%{%%%z%m%F%%%%%%Y%;%;%%%%%%^%%%#%%%%%%%_%%%%o%%%%%#%%% %%%%%%%%%|%%e%%?%%%%%O%%%'%%%%%%%%%.%%%%%%%%%%A% %%;%%>%%<%%]%x%%%~%%%%~%%%%%o%%%%%%c%%%%%%%%%%%%%%s%%p%"%%O%|%%%%%%|%%I%%%%^%%%%%%k%%%%% %p%%1%;%%}%%=%/%z%%%>%%%/%~%%%%%%%%_%%%%G%>%%Y%%%%=%z%%%%%%%%%%%%%%%%%%%x%+%%%%r%%J%%?%%}%%%%%/%%%%]%t%%%%%D%%6%%%%o%(%%X%F%%%%%%~%%%%%%%%%%%"%%%%>%%%+%%>%%%v%%]%%K%P%%S%k%%N%%%%%%%%]%%%%9%%%%/%|%%%%%%'%%%%%'%%%L%%%}%%%K%_%%%%%%%W%%%%%%/%%%%o%}%%%o%%r%x%%%%\%%%%%%*%%%?%%%]%%%%%%=%%Y%%%%o%%%%%%#%;%%)%o%|%%%%%%%}%%%%=%/%z%%_%%%%%+%/%}%%Y%o%y%%g%%%%%'%W%%%%%%%%v%%Q%%%U%%%%%%p%_%%%%%%%%%%%=%%%%%%%+%%%%l%%%%X%3%M%%2%%%%?%%%g%?%%%%|%%o%%%%%%%~%%p%%O%t%%Q%s%%1%G%%^%%%)%%%%%%%%%%%%w%%%{%%~%}%%K%%|%0%%%.%{%K%%%%%N%z%%%/%%%%'%>%%% %/%%%%%%/%%%%.%%%'%%%G%%~%%%%%%%%q%%%%%%%%~%%%#%%%%#%%%%7%%%%%%/%w%%%%%%%%%%>%%%%%%%%w%%D%%%%%_% %%%%%%G%V%O%<%f%G%y%U%8%%%%A%%%%_%%&%%%G%%%%%%%%>%%+%n%%%%c%%%@% %%%%%%%7%U%%'%%:%%%+%_%%u%%}%%%%%%%~%%[%+%%%%l%6%!%o%%%%%%`%I%h%y%%%%%{%%%%%%%%%%%_%%k%%%%%%%%%%%%%?%%%%%%%%?%%%%]%%%f%%% %=%%%% %|%%%%%% % %%_%%%%.%~%%%%%%%%%%%c%q%%o%%%%%%%e%?%%%%%%%%%%%%s%%W%%%%_%%%%[%%%&% %%7%%%%%%%%.%%B%%o%^%w%%%>%%%1%%G%]%r%%%%>%%%%%O%<%%%7%%%r%%%%%%%_%>%%%%}%%%%%%%%W%%%%%>%%c%%x%%%>%%%%% %n%%%{%%%%%%%%%%o%%%%%}%%i%%%%%%%q%{%#%_%%_%%%%|%%%_%{%$%%%%%%5%%%%%%%%%%%s%%%%%|%*%%o%~%%%_%%G%%%%W%%%%%%~%%=%%%%%Y%%%%%%u%%%%d%%%%%}%%%%!%%|%%s%/%~%%%%a%%%%%%%n%i%R%l%5%i%2%%%%7%%%%S%B%Y%m%%4%%h%%%%%%%%{%%%%%%%+%~%%%%%X%%%%%%b%%@%%%N%%D%b%%#%^%%'%%%%h%|%%%%%%%%^%%%%%%%w%%'%%_%%%%%%%_%{%%%%\%s%%%%_%O%Q%:%%%%%%%%%%%%%%}%%%%%%N%u%%%%%%%c%%% %/%%%%%R%%%%%%%|%%%?%%%%%%H%d%%%7%+%h%%%?%%%j%V%5%E%%%w%}%%5%%%%%%%%+%m%%%%%%}%%%%%%#%%%%%g%%%%%%%Q%M%V%%%d%%}%g%~%%;%E%"%%-%%%>%%%%*%%%Y%%/%%%D%%%%!%%%%%}%%%#%%%%%%7%2%%%%Y%%%%2%#%%e%%%%N%%%z%%%%T%%%4%%2%%%C%l%$%%m%%v%%{%%%%L%%%%%%#%W%%~%:%%%m% %%%%%%<%%k%%!%%<%%%%%x%8%%%%%%%x%%%%w%%%q%O%-%j%%%|%%%;%%%w%%p%%%S%%%U%%"%%%%%%,%%%x%%%%Y%%%o%%%\%%%=%%%E%"%%%'%
%Y%$%%%z%%%E%"%%%'%
%Y%$%%%z%b%%E%$%r% %%:%%C%V%Y%%0%%%b%%%V%w%%%%%%%%j%%%%%%%%%%%%%%%%w%%%%%l%V%Y%%%8%%m%%%%i%%]% %:%%H%$%%%%B%%%D%%%(%d%%H%d%%%B%%%D%%%(%d%%H%d%%%B%%%D%%%(%d%%H%d%%%u%d%%%%%k%%S%%Z%%%b%%%%S%3%%w%6%%%%%6%F%%%v%%%#%[%%v%l%%%%%%%%j%%v%%%%u%%o%i%l%/%%%%w%%%%Y%+%v%%%%%%c%%%-%%	%'%%%p%%%%%%D%%%%%m%%j%%"%"%U%%%%%%p%S%%(%%%P%%%M%1%A%%j%%%P%o%%p%%\%%%%%!%
%%T%%%!%k%%Z%%%%;%T%5%%Y%d%;%%%l%%X%%B%%@%%!%Z%%%v% %
%%t%%(%%%T%%%%%%%p%l%%%%%&%
%%D%%%%q%.%l%%%K%%	%%F%-%%l%U%%%M%(%+%$%%%%:%%D%%f%%%%%%
%k%%%x%%X%s%%%%%%q%%b%+%%%%{%j%I%%Y%c%I%%%%%%9%%%%%H%%%h%%%%%%%%%{%N%o%%v%%h%%%%%%%{%[%}%%%%%%:%%%%Y%%v%(%%%%%%%%%%%%%%%p%@%%%&%%%%-%%%%e%%%D%%%%g%%D%%j%X%M%%l%%%1%%%l%%%%%m%%%I%%%7%%w%%%%%;%6%%u%#%%%%%
%%&%%%%%C%%~%%h%%"%S%M%%%%%%C%%q%%h%%l%Y%b%%l%d%%%B%%%%t%"%%5%%h%%l%%q%J%S%d%z%%B%%%L%N%%%%%%%U%%%%}%%%T%%%%l%.%%%%%k%%E%a%+%%2%{%g%%@%%%%%^%%%%Z%%%#%%%%p%%%%%%]%{%n%k%%%g%v%%%%%%%%%%%%%%%%%%E%}%%%\%%%%%%E%!%[%%V%3%%{%b%%%%%%#%
%%Z%%%!%%8%%$%G%%%9%%%E%%%(%d%k%%%D%%%(%%Z%%%%%!%Z%%%%%%%%%o%-%%%%%K%%Y%%%%%%% %%%D%%%%%%%~%% %%w%%%w%=%%%E%%%%%c%Q%%%%u%%%;%%%#%G%%$%%%#%D%	%%t%f%%%%%%%%%b%%%M%)%%h%%;%%%%%%%%%%%%?%v%%%L%&%%%%%%?%%%%%I%%l%%%8%%%%Y%d%%%B%6%%I%%%=%i%%U%%V%[%%;%f%%%:%&%%P%%:%%%]%w%6%j%P%G%%%]%%v%%%m%%L%A%%%%y%%%^%{%%j%e%%=%%%%%c%_%%%]%%%%m%O%%%{%G%%[%t%%@%%%%,%[%%6%%*%%%9%%q%%%Y%d%r%%9%%%%%%%&%Z%%%r%d%K%%%Y%%%$%%%%%%%%l%%V%%
%%%%3%%%Y%d%S%%%B%v%%%%H%M%%5%%l%.%%T%%%R%"%%%r%d%M%b%%Y%d%s%%^%B%%%%%)%%k%Y%%{%4%F%%%%"%d%%V%%o%%%L%%%q%%%%,%%%l%q%!%[%9%%%v%%%L%%x%%%%%%X%U%%%j%%%V%h%%%%%%W%,%%%S%%v%k%%%%V%%%%%%o%l%%%}%j%L%%%%%_%7%%%%%%%%%%%_%%%% %&%%%b%%%%k%x%%E%%%%%%%%B%b%%j%>%V%I%,%%%l%%%%%%J%%%%r%6%=%%%%s%d%%%%%%Y%d%%%%G%%&%%+%.%;%%{%%%%%T%%N%%%x%%%j%%"%%u%b%"%%%%%%%%%M%%%L%%%8%#%%~%L%%#%;%8%%Y%%%%
%m%<%%%#%k%%%4%E%%%%p%d%%%t%M%%%%9%%&%q%J%S%d%%%&%G%%%%%c%%l%%%%%G%k%%Y%C%&%%%%q%%u%Z%f%m%%U%f%%%%%%1%%%l%\%7%.%%%v%l%%2%%%j%%%%%:%%1%}%%%%Z%#%G%%%%%e%%^%%l%M%6%R%H%%%%]%%l%g%6%%%%_%%%%]%%%%%B%%[%v%%.%%%%K%%t%G%v%%%w%4%+%3%%%,%e%Z%r%d%h%|%}%%%1%Z%%%%3%%B%%C%%%%t%%p%?%%5%d%i%%r%$%r%@%L%%%m%%`%%%%~%%%%%%%%e%%%f%%%l%%%v%%Y%%%%%%e%/%/%%%%C%g%%%%%%%%%e%%'%f%%c%%W%%%4%E%%%(%d%%%&%%%%%%O%#%%%P%@%%%%%%%%%%[%%s%F%d%%%%B%6%%%%V%s%%+%%p%&%%%%%%@%%%<%%(%%%%G%%m%%%%T%%g%D%6%%m%-%d%%%%%%C%%%G%%Y% %%,%`% %%0%P%4%n%{%%n%%<%%]%%%%Y%%%%%0%%%%!%%'%[%%%l%%%%G%X%%%k%%S%+%%%w%u%'%%%%%%F%;%3% %{%F%%%\%%%%%/%%%.%%%g%%:%%%%%m%%%%.%%%%%W%S%G%V%?%%h%%%h%%R% %i%%m%%m%%Q%%3%h%p%p%%%%%%%~%%B%%%%%0%%j%Z%%%%%,%<%%X%%%H%+%%
%%% %%p%%#%)%%%Z%%)%D%%~%%k%H%%%%
%l%%%r%%s%d%k%x%y%%%%% %%%%@%R%%%%%%[%%%%`%%%%1%1%%%S%<%%)%%!%l%k%G%6%!%%%E%%%	%:%%(%%%%i%%%1%%,%%%%%%2%%%%%Z%%%%l%k%!%%%V%%%v%%c%%=%%%%%*%%%%%%%%%/%%%%%%%N%%%%%-%@%%%%e%%%%P%~%%%%%%I%%%%%%%A%%%%#%K%%%%%Z%%%%%&%%D%%%%%l%s%%Z%n%L%%%l%K%T%%%%K%%Q%F%%%%%%)%s%%g%%%5%;%/%j%Y%d%%%%%%%%t%6%%%%%p%%%i%%X%%%%f%%%%U%5%%4%.%(%%%%%%%x%%%g%b%%N%m%%w%%)%K%[%%x%%%%%:%%E%G%%%w%%%1%%o%%%%
%/%2%%(%+%%%%%%%%%%%f%%N%_%x%%%%m%f%v%%r%%%%%%n%k%G%%%%%%[%!%G%v%%]%P%%Y%%%%%S%%4%8%%F%%?%%%l%%d%%%%%%%%E%%%m%%%6%%%)%%%%%%%%%]%%
%%%%%%%%#%
%%L%%#%S%%@%8%%6%*%3%%%E%%%L%2%%%%m%L%%l%S%l%%%;%%y%%%%%%A%%Z%%%#%c%n%%S%%%%,%%%%%)%;%%%L%Y%d%B%%%%l%%$%f%%%A%N%!%%%%%k%5%%,%%,%`%%I%%%%%%%% %R%9%/%Y%b%%@%k%`%%6%%c%Y%%~%% %%?%%%]%L%5%%U%%%%|%c%%%%%%%e%%%%[%%%%>%%%b%%0%@%%%G%%,%%%j%%%%K%%C%Q%%%%Y%%%%%%%%Z%%A%	%?%%%%%%%%%>%%%m%:%%S%%%7%%%E%!%[%3%%%%n%%,%%g%%"%'%%
%%h%%%!%%R%%%s%%%%s%%Z%%V%%C%&%
%%%%.%%%%!%%F%%L%%%[%%%}%%%%%,%%%%%%%%%%%%A%^%x%*%9%%%%%T%*%%%%]%%%%D%%n%7%%>%q%%%#%%y%k%9%%%#%% %%B%%%Z%% %(%a%&%%X%d%%%%B%v%%*%3%i%%%%%p%%%%E%%%%U%7%%P%%%%u%%%v%%%%%%1%%,%%z%%4%%%%%%j%:%2% %D% %%%%%%%%%%%%%%
%9%%%%%(%%%%P%l%Q%%X%%n%s%U%%E%%%%%%%%%%$%G%%%%%%%%-%%%%%%i%.%%U%%%%%f%%%%:%%%%%%;%%]%%%%%m%k%!%;%8%&%%%X%_%%E%%#%%%!%%V%%t%A%%j%G%%n%%%%~%%%M%%%%{% %%\%%%%y%%P%%%H%%B%%%%%%P%%%%{%%%%%E%%%%%%b%%%%%%%%%%%%%q%(%%G%%#%%%X%%e%-%%%\%%%%%%%n%%%%t%%%%\%%%%%-%%%.%%%!%X%%#%d%%%%6%x%%}%b%)%F%d%%%%%l%%%%%%%%x%%%%M%%}%8%%%D%@%%%;%V%%~%%%%%n%%%%%%%%s%%`%0%%%%D%%%	%%%P%%%$%J%%%2%%b%2% %%!%!%%%3%%%%%%%%m%-%d%+%%%%%%+%%%B%j%%@%%%%%<%%@%{%T%%%%V%%%)%%%%d%0%%%%%%%%%T%U%%h%%%% %%_%%b%$%%%%%%|%>%S%%%F%%%%Z%%p%(%}%%6%%%>%%%%[%%%%%6%i%7%J%.%%%%%v%%%%t%%%n%%%%t%%4%a%%%*%%%z%`%,%%t%%0%%%`%%%%2%%F%f%%%%%|%%%%%F%%%m%%%%%%%%%% %/%~%%%%%A%%(%%%|%%%%%%%%%%%%N%%%i%w%:%%%9%_%%%%e%"%b%
%v%% %
%*%%%M%%%%!%%%%9%c%d%%%%%%H%% %%%%%%%}%%u%U%%%%9%%|%%%%%% %%p%%%%%%	%-%%%%%%i%%n%%[%%v%%%m%w%%%N%%%%%n%%6%d%%%%!%%o%	%	%%%%a%%%%2%%#%%x%%1%U%%Y%l%X%%%T%%%#%%*%3%%%%%^%`%%=%H%-%%@%%%%%%%%K%h%1%Z%%r%%%%%v%%%n%w%%%%u%%I%%%`%&%f%b%"%f%r%%%%D%J%T%%%r%~%"%%@%
%%8%%% %\%%%e%d%%%%%[%%g%%%r%d%+%T%X%%6%%Z%%@%l%%h%%%%%J%%%^%s%%l%w%6%%%%%%e%5%%%%%%%%%-%L%%d%%%%,%%J%u%d%+%<%%8%%l%%
%f%g%%%%%%%%%%v%%%%%%2%%>%%p%%%%R%%%%7%@%%%f%%%%p%k%%V%;%k%W%q%%i%%h%'%d%%2%e%%\%6%%%%r%%%a%%%w%%%-%%%1%0%\%%5%%%%g%N%=%%O%r%%U%,%2%%l%#%G%%)%%%%%%d%%0%M%%%0%%%%@%%y%%#%%%`%%%%"%3%%%\%%N%%)%%:%m%t%%d%%%!%%1%%%%%0%%%%%%%%%2%%%A%%d%%%%%%%7%H%	%%.%%%w%+%%%%%%%B%%{%%%z%%%[%%X%y%%q%%%:%K%%]%%%%%%<%%%Y%/%%%a%%%U%r%%P%x%%w%%%2%%%%%%l%%%Y%;%%%I%%%A%;%A%;%E%j%%%%#%%S%%%%%%L%P%.%'%$%-%%%`%%%[%%S%%%%M%Y%k%C%%r%$%%2%%.%d%%w%%h%
%%%%5%%$%^%+%K%%4%%%.%x%^%%%r%%%% %%P%%>%%a%X%`%%%a%d%%%%%2%%,%s%Y%%%Z%I%%J%%%B%;%A%;%A%b%%%r%%r%d%p%
%%%%]%%)%+%%%2%b%%%%6%%%[%$%%s%%J%%%%%%%%%?%%%%:%%%C%%%%%%%%%%%v%%%%H%%D%%!%%% %%0%%%%%S%%%%E%%R%%e%%%%%%b%%%N%%N%%%%%%%%%"%%%*%%%%%*%!%c%%%% %%6%`%*%%+%	%%%%%%%%%>%%-%%u%D%&%%%O%%%%h%%%D%%Z%%p%T%%%%%%2%N%R%%2%%%%%+%'%r%%a%%%c%%%%,%2%%$%%%%%%k%%%%%`%%%f%{%%%,%5%H%%V%%%V%C%%+%Y%%m%%%%B%%%%%]%%6%%2%e%%%<%b%%%O%"%%%D%8%%%&%%%%%%,%S%%#%;%%y%G%%Z%&%I%%%%1%%%8%0%%%%%w%%N%%%)%R%
%%%"%I%L%%%V%%f%%%%;%%%c%%%%A%;%%%%$%%F%a%%%2%%p%%]%2%C%	%%%D%K%%2%%,%%%%%Z%,%%Z%8%%%h%%%]%%%2%%~%L%%%%&%%%2%%%%%%%%%%%%%%%N%%$%%%D%%0%1%%%%%%^%%%?%%%%%%p%$%%\%%.%%%e%%%%\%%s%3%%%u%%@%%%%%H%%Z%% %%2%%\%%%%%4%% %*%%g%)%h%Y%%.%%2%e%@%%x%%c%%%%%%c%r%%i%%%%%f%%%%%%~%d%%%%%b%%%%%U%%5%%%%%Q%%%%%3%f%)%%]%%%%%%k%%%%%%l%%%%%%%0%%1%%%[%%%%%%%+%%%%b%9%%%%%%f%%%%%%%%%%L%%%%L%l%T%%%%%|%%%B%%%%K%8%I%%%P%P%%%%Y%t%%%%p%%.%`%%%%#%% %%%*%%%.%$%%%%%q%%%%%%%`%%1%%%&%m%%%%%%%W%d%%%|%!%;% %%.%%%(%j%{%%O%?%%%%i%%b%`%%%%%%%%A%>%o%%:%%%%s%h%Q%X%[%%%!%%%!%l%[%%T%%%3%%B%%%{%%%%%
%%j%%%y%% %%J% %%%%%%%e%%%`%%%%%%%L%6%%c%%D%%%%B%%r%,%%%g%%$%^%%%#%;%%%3%%t%w%%%I%%I%%%%j%u%6%O%L% %3%%"%%+%)%|%%%g%%R%%%%c%%P%i%%v%%a%n%n%%%a%_%i%%%%%X%_%%%`%%V%q%e%%}%%U%%%(%%0%%%f%%%0%%%%T%%%g%%A%%_%%%%%"%%e%Y%w%!%%%%;%%%%%%5%n%%e%%%-%%%s%:%%%%%v%%%%.%I%%%M%%%%v%%X%%%%C%Y%`%%%%%%a%p%%C%%%	%2%%%%v%%]%%%%a%n%%;%f%%%%%e%%{%~%%%%#%3%u%%%%%n%d%e%,%%T%%J%u%#%%%J%%B%h%%e%%%!%%E%b%%%/%%%F%,%%N%l%%#%%o%%%%%%%1%w%%%;%m%i%%%K%5%I%|%%%d%L%Y%%%
%V%"%O%D%%,%
%%%%%%%%l%%%%%%%%%%%%%9%%%%%%.%%% %%%%T%%%X%%%4%B%K%%%%%%%+%%%%%%	%%e%%%%%%%2%%%%6%%%k%?%%%n%%%y%%-%%%%%[%%%%J%%%%%%%^%:%l%%%%%K%%$%%% %%`%%%%b% %%%%=%,%%g%%%>%}%%q%)%Z%%%#%%%!%g%%:%r%%%%A%%b%;%f%1%7%%%1%%%%%!%%%
%% %d%R%
%Y%%%%K%_%%%%%%)%%[%%%
%R%P%C%%%% %%%%%%%)%%X%%%%%B%%%9%2%z%%%0%%%\%%~%%;%c%%K%%#%%%%g%S%:% %%%=%X%%B%%
%V%5%%%A%%%
%z%	%2%[%:%2%k%a%%%%%g%%%%h%n%%v%%b%%,%%%0%%%%%%%%%E%(%%P%%%*%P%%% %(%[%%s%Y%%%Z%,%%B%%f%)%Q%i%%%%%%%,%%0%2%%%%%%%%%m%%%%%%%%%u%%%%"%a%%%Z%%%S%c%%F%a%%%d%T%%`%%%`%%%%(%%%%%%w%]%%%c%S%%%2%%%a%%%#%g%%9%2%%n%%%%a%%%%A%%%%`%%
%X%%+%p%e%%%2%G%V%%%-%%R%%%%%%,%%%%$%U%%K%`%%&%-%%%%%O%%W%}%%X%%%%%_%%)%%3%%6%%%%t%j%%%%%%%%%g%%%,%%S%6%n%%%f%M%%%%%<%%%%%%%J%%%%0%%%%F%j%%0%%%l%%%%%%O%%%%Z%%6%%z%%%A%%n%%%d%%%%%l%%%o%%g%%P%`%A%&%%%%v%%%$%
%Q%e%%%%V%%%%%%Z%d%a%%%#%k%)%%%%%%%%%%%%e%+%%J%V%v%L%%%%t%d%%%h%%b%~%%z%%%%%2%%_%	%%%$%e%h%%%#%0%%%`%%D%%%_%Q%%_%%%t%%%L%*%Q%%%%%b%%%.%A%%% %)%%%%%%%%Y%%=%(%%P%%%B%%%%L%J%%%%%%%@%%>%%%@%%%%w%%I%%%%J%k%%%%%'%%%%%>%%%%%%,%%%%%%%%%%%%%%%%%+%%%B%F%U%v%%r%d%e%%%%%%%%%%%%%6%%%`%	%%5%%}%%%n% % % % %I%D%A%T%%)%p%g%%%a%[%%%%%%%g%%%%H%%X%E%J%d%%%'%2%J%%%J%%\%% %%D%J%%%%X%%X%H%% %%@%%D%%(%X%%(%%%%%A%%%e%%Z%8%%%%%c%3%7%%s%3%f%n%%C%v%%P%9%$%%%%C%%%!%%%%u%P%%%%%%%%%U%%c%%
%%e%%i%%%%a%%%%2%%%L%A%%%%n%%{%%%%%%G%%%%%%%%%%6%l%k%!%%%%
%%%%	%%%%%%d%%%%j%H%Y%%%T%%%%+%(%%1%#%%%%%T%H%%F%!%%%%O%%%%%~%%%%%C%f%`%]%p%d%%%%%%%%%%%<%7%%s%%%%%%@%%%%%v%%C%%%V%%(%r%%%%j%%%%%%B%%R%%t%A%%%%#%%,%U%%2%%m%%P%%8%E%%=%%%%&%+%%>%l%k%!%[%o%%%o%%q%e%%f%%%% %%%%C%D%%%A%D%%%%%%(%%%z%%%%^%%%%%*%%o%%d%%%%A%%"%s%H%%\%B%%%Z%%%%%%3%%%%%%1%c%v%% %u%I%W%%#%%%y%(%%%B%%%&%P%Q%%P% %U%Q%%%e%%%J%%%%e%t%	%%7%%%%o%%%%%4%%%%%%%%%]%%%%%%M%%%%~%x%%%{%%7%%%"%%%B%%^%%%%o%%%%%%%%%+%%%Z%%C%I%%~%%P%%%%)%%+%%%%%$%%%R%U%#%d%U%%%=%L%%%%%v%,%A%f%a%%l%%g%%Z%2%%%%%C%\%i%%f%%%%%(% %T%%,%%%p%%+%%%E%%%%!%|%%%Z%%%a%%%%h%Y%G%F%6%%@%+%%e%%S%/%%% %O%%j%%f%H%Y%k%-%;%%m%%%%%%%%:%%%%n%%U%D%%g%[%%%%%;%O%%%%j%:%%V%-%o%P%
%%%%%%%+%% %B%*%%6% %d%% %D%I%%%P%!%_%%2%#%j%{%%%%%%Y%%%%&%T%U%%%%%%%%%%%%%%P%% %U%%%9%%/%o%N%%%%%%%%U%^%_%%j%%%R%%%4%L%%2% %%%%%d%%%%)%%2%%%%q%%e%[%%%%)%%<%:%:%%%e%[%%%z%%%/%%%%%%%b%u%%%%%%,%%R%C%
%%%%&%%
%h%%+%!%%%%%%%%W%%>%v%m%%_%%%%%%%%p%%%%%v%m%%g%f%z%f%n%%%f%)%M%+%!%%@%%9%%(%%J%%p%d%N%%%Q%%%7%%%%I%%T%%%%r%%B%%J%%%%%%%%%#%	%%%%%d%%z%%y%%_%%7%?%%%d%&% %B%<%h%%%%Y%:%%%M%%j%%%%%3%%%l%t%%%%%e%]%7%%%%7%%%%5%e%%%^%%%%%%%%q%%%M%%%e%e%%%%V%%%'%0%3%%:%W%S%o%v%%*%>%%m%-%d%%%%%%`%%H%%%Q%%%%%%\%%%%%%%%W%%%P%%%%I%	%%%%%%J%#%j%%%a%%m%%t%%%h%%%H%%l%B%%#%K%%%u%%L%%%%<%;%c%%f%%n%% % %_%%%%%%%%-%8%%%%B% %%`%4%%l%4%B%%%3%% %%4%8%%g%%P%%%%% %%%%%X%%%[%K%%%%U%1%%%r%%%B%%%%K%%%c%%j%%%N%r%%%1%%e%%+%%Q%%e%%%%%<%!%l%%%%%%T%5%%%4%%%}%%%o%g%f%%%J%;%%%c%6%l%t%;%%%%%%%%%%.%%]%%%% %%%%r%P%%*%B%%%N%Q%%%%*%5%%%%%%%%%~% %
%%%%&%%%%%%%d%%% %%(%+%%'%%%Z%c%%&%[%*%%%%%$%%%%l%m%#%%z%%%e%R%%U%%U%S%%%k%G%%`%%%%B%)%d%%%M%%%%%x%%%	%2%x%%K%P% %3%=%%{%%2%d%)%%0%%2%!%%%f%%%u%m%%c%%=%%%%~%%a%%%%
%%-%r%p%%.%%d%%%%%i%(%%%%U%%t%i%%%|%w%
%H%%%%(%%% %U%R%%%T%%%%%%%c%,%%%%%%c%o%%%%k%%	%o%.%q%%r%%%%B%%%*%%%%)%%%e%	%%%%%i%#%G%%e%%Q%X%T%%#%5%7%<%%J% %X%%%%3%<%%%%f%%C%%B%%!%K%%%z%%%%l%%c%%]%%%%%%%w%%%U%%%%e%%%0%%B%K%+%p%%%%%*%%%z%%R%=%p%I%R%%Y%V%=%0%B%%%j%%K%%%d%`%%%%%$%L%j%%%%%1%j%%8%N%%%S%6%%9%%2%%|%!%%%%%%.%%%%%%%%%%%%m%-%d%k%%%%}%%%%%t%%`%A%%
%%%%%%%%%C%%%X%%P%V%%!%%.%4%%%P%%%r%f%3%=%%%%2%d%%%%%P%%2%%9%%%%-%3%%%%v%%%H%%	%2% %%%:%^%%%%W%'%p%%%h%(%]%c%(%J%!%#%%j%5%%%%%%P%%o%%7%%%(%)%X%%D%H%%E%%%%%C%%%%%%%%q%%/%]%%%p%%%%%%%2%J%%%%%%+%%%~%,%
%%Z%%T%%%t%%%i%%%T%%"%%%e%R%%b%%B%C%E%%(%%%%%%%@%P%%%%z%%%~%%'%%%%%%c%%%%%%%l%J%%%%%%%u%m%%c%K%;%V%%Y%%%N%U%%%R%1%*%B%%L%%%!%k%%%C%%%%L%#%G%V%	%Y%%%z%%8%%z%%\%%h%%a%%%%Q%%%%%%%%%%l%S%%%%#%%%%%%%%5%%t%%%%W%%%%2%]%%x%i%%%g%T%Y%%`%i%j%!%%2%%S%%%%%%
%L%%E%%0%% %%%O%%s%%%^%%%c%i%i%%%%%%m%%m%%m%;%m%%%r%%%%%S%,%`%+%S%%/%%Y%r%c%%%%X%%K%B%%%*%% %%*%M%%%=%%`%%%%9%%%B% %%U%%?%U%%%%e%%%l%%%U%t%%%%%%,%%Z%N%2%%%%%&%%%*%%%%D%%&%%:%%"%%!%%%U%%%-%{%$%B%%%n%T%%%.%%%%%%%F%%x%%%+%U%%W%N%%%+%%}%d%%%f%S%%%6%%M%%:%%Z%%l%%i%%%%%I%9%'%)%%%%%%s%%/%%b%I%,%%#%M%H%%!%%%C%S% %%U%7%8%P%%T%5%%%%`%	%%%%%Q%6%%V%%
%[%5%%%%X%X%k%%%x%%%%%%v%%%o%<%%%%%%%%%X%%%%%%%=%%%%%T%w%%%2%.%%%|%%*%%,%%J%%h%Y%c%Z%N%	%g%%%R%@%%%%T%%%%%%%C%N%%%%%Y%t%{%%%%2%$%%%1%%!%%%%%%%V%%2%N%j%;%%%,%,%(%%%v%%-%%K%e%%%%a%o%I%%%b%R%*%W%9%)%%%%y%%@%%I%%<%A%%%%%%+%%%%%*%+%%%	%%%%%(%y%%]%%%R%%S%%#%[%% %v%%%_%F%v%%%%%%%%}%%N%%%%%%%%%%%%;%%%K%%%%%B%%w%%_%%w%%B%%c%%%%{%g%%p%v%%"%%%b%%%%%B%v%0%%O%%)%%a%\%C%%%%%o%T%%%a%%%{%%%%P%%%%
%	%%1%%%%%%j%%%%%
%A%<%%%%%%g%%u%%%%%%%%%%8%%m%%l%{%%%%u%%%%2%m%%%%%%S%%*%r%b%%,%%%%0%+%%%R%%R%%%%%*% %U%.%%%e%%T%%%R%%*%%%%9%%3%%%%%%%5%F%%%B%%
%%a%%c%`%%%L%%%%%%-%'%%m%-%d%%%#%%%%%%%%%h%`%0%%r%&%(%%%%@%=%%%%%%%U%%]% %U%x%Q%*%E%%L%P%%%H%%%%%y%%g%%<%%S%K%;%%B%%%Z%%%%%%%%%v%%v%%l%%@%%h%5%T%,%%~%<%%%"%D%%%%%9%%o%%[%%%E%I%%*%%B%V%%%%S%Q%%%%%%`%O%\%%<%%%*%%%%%% %*%%<%#%%%%%!%%R%%%0%%%%I%p%%%%%%%%[%%o%p%#%%%%%%%%%%%%%%{%%&%T%%%%.%%%%+%%L%%%%A%%P%%%%%h%Z%%	%%%E%X%D%%
%%%H%U%%*%E%%'%^%%k%%%y%O%%F%%6%%6%%6%B%%%%`%%%%%	%*%V%%%%%%2%%	%%%<%%%)%+%%4%g%.%%%%%%K%%R%f%%%b%%B%%_%
%%%%d%*%!%3%>%h%%A%%r%p%A%%%R%%
%%%+%%%%%%r%d%%%%`%%,%8%%L%y%%Y%%%%d%%%%%%%%%"%%P%%%1%#%%`%%A%>%%%%%%S%%,%%%%(%%I%%Z%%!%%2%%D% %%%w%D%%0%3%%%.%e%m%%%H%2%X%K%%%%Y%%%%%%!%%$%%%z%%!%K% %%%[%%b%Y%%2%.%r%2%%%%%%x%%%	%%%%a%%%%%%%%0%9%%%L%%.%%%%%%%%% %d%%%B%%%%% %#%%%\%%%%%%%%%R%w%<%%i%%%b%%%%d%%%l%y%%%W%%%h%%U%%%*%%%\%%%J%G%V%%%%%%%%N%%<%E%k%%%%%%S%b%%
%%%%%%w%%:%}%%%l%%%%6%%k%%%%%Z%%%%%m%u%*%;%%%L%Y%%H%%%j%o%]%4%C%%%\%0%%%%%%%Q%K%"%e%V%%0%%P%%%%T%%%%%A%%%3%%%%R%%r%%B%M%^%%4%O%%%=%%'%%%%%e%+%%%9%%%%!%%g%|%f%x%%%%%$%%%%l%%H%g%U%%V%%
%%C%%%*%$%U%W%%%(%%% %%%E%%T%N%%%*%%%D%U%%%%%%U%V%%w%%D%%g%%%%%l%%d%	%V%l%Z%X%K%%%-%w%%%%%%%%q%%c%u%h%%%%3%%%%)%%%%&%'%%%%%%8%%Z%*%%!%K%%S%.%I%%x%Z%N%%%%%g%%%+%%%K%S%F%%D%%q%%V%%`%%n%%%%%%J%%f%%;%%%%r%%%%B%%T%%%%%E%%G%%D%%H%%%%+%%%% %P%%d%P%%J%%%%%%#%e%%%%%%%}%%%%%M%%%%%%%a%=%Y%%%;%%X%%q%%%Z%%%j%%3%@%%Z%%9%%T%%%%f%%,%%%a%s%*%%%%%P%%%%F%%
%I%
%P%%%%%L%%*%%%)%%=%%B%K%%%0%%r%%%%'%%%%%%%%%q%%%%!%X%%%%s%%t%%%%t%%%%%%C%%I%f%[%%Y%`%%%	%;% %%%%%J%%%%4%%P%%d% %%%%2%%,%%4%i%A%% %%%{%%/%%~%%%{%%2%u%)%%T%%Q%%%`%%%%u%]%g%:%%u%l%%%%@%%%W%v% %%%%%%.%s%p%%3%%)%%s%%%%%L%,%%%I%%%%T%1%%
%3%3%%%Y%%%%%L%%%%Q%K%%%%%%Y%%]%2%%%2%%a%1%L%V%%%%l%%%d%h%y%m%%%%%%+%%%%%%%]%%%%1%%%%%b%%%l%%%m%%%%%%%K%b%%% %%%%%5%%q%I%Q%j%Y%%h%&%T%B% %%%W%%V%%%%%k%%%K%%>%%%%i%%`%3%c%3%2%%%%%!%s%%%o%%%5%]%%%!%%i%h%Y%%%<%%%%%%@%!%%A%%r%%%M%N%% %%0%%%H%%s%%%%%%%%x%% %3%%%%#%B%%% %%%%P%~%%%A%>%x%%J%%<%%%%A%%%J%%L%%<%%%e%1%%%d%%%%-%H%%z%%%b%%%%%%M%W%%%^%%x%Q%)%%V%%%%%I%_%~%E%%%%%%K%%%p%)%%%%e%%%%%%%q%3%6%%%%%c%%%%d%%%%%%-%%Z%%r%5%%%%%d%?%%X%.%%%A%%J%%
%% %%%l%A%%%%%g%% %/%!%%G%e%%%%%%e%%%%%%z%%2%%%%%%%%%%%%%_%%%%%%%%1%%%d%%%%%%~%-%B%r%%%%%%l%:%%%%%%f%U%\%%%k%%#%n%~%%%%8%%q%%a%%%%%S%Q%K%%%G%%%%%%%%}%%v%%%%%4%%%`%a%%%%%%%b%%#%%%%
%#%`%/%v%%%A%C%%W%%1%$%%%Q%%%)%@%%%%%%%%R%%%/%%%%%%%%g%%%x%&%%P%%%,%S%#%p%b%%%%%%%-%%Z%n%%%%%m%%%%%G%%%G%%Z%5%%%%%%o%f%p%%Q%&%%R%%e%N%%d%j%R%x%K%j%%e%v%,%3%%o%\%%]%%m%S%%%%5%n%%B%%%C%%a%%%%%8%%%%%%%%%L%%%#%+%B%%%%%<%%%S%%%%g%%r%%%l%%%%3%%%%%%%%#%%<%,%%%%%%?%%	%%%%%C%%I%f%"%%l%%%%%%%%%%%g%%%	%k%R%% %x%%@%%6%%l%%%%%G%% %%~%%%%c%\%%#%%b%%%I%%%%%%o%%%%%c%%%%%%a%%%%%%%%%%%%%Q%%X%-%a%%`%%%%%
%3%%%%%%%%R%%%%4%%P%~%%D%%%%2%%%b%%%%%%%E%9%p%%%l%A%%%>%t%%e%#%F%%0%[%$%%%%i%M%2%1%%%d%6%_%%v%%%%%%E%w%%%%%%&%R%4%b%L%%I%`%%%*%e%%%%%%%%%%%%%q%%&%%%%%$%%%%m%%%L%%2%%%%%%%%%,%,%j%R%n%{%%%%%%%%%-%%%l%
%%%%A%%%%%%%L%%%%%%%Z%J%%-%p%%%%=%%h%T%=%q%i%%%%%%!%%%5%a%%:%%S%$%2%%%%\%b%h%9%%l%%%%-%%,%a%%V%%%%P%%%8%K%`%L%H%%%%%e%]%N%%%%L%%%%:%%-%{%K%%%%%%g%l%%%%%>%q%H%%%%v%%%%%%-%%V%%%_%%%P%%%)%%%%\%%W%_%@%%%%%2%%%%&%%%!%%a%%%'%%J%%
%<%% %f%5%%%<%%U%.%+%S%V%E%%e%%Y%h%%f%X%%%(%9%%S%%%%%%z%}%%%C%%-%'%%-%"%d%t%%%%%%%%%%%%/%S%f%%%	%L%%%}%%%%7%I%%%t%%	%q%%6%e%o%%%m%v%`%l%+%%%%%%7%%t%	%%j%%%%c%%%%Q%S%%%%d%?%%P%1%%%Q%x%x%%2%%%%%l%A%%%%%%%P%%	%^%9%%%I%9%%%f%e%%'%%i%%%%%2%%%%%%%%%%%%U%%%%%%-%%Z%%m%%q%%%=%%%%%G%%%%%Z%%%%%%%%5%/%%%}%%%c%%%%%%%i%%%	%%
%%%%%e%%%{%~%%w%|%;%%r%%%%%%)%%%%%[%%%%9%%:%%%%%%%'%%Q%i%%j%%s%%%%%g%b%%%%%L%%%%L%%E%%%!%%?%%%U%%%%\%D%%%k%)%|%R%%%z%%*%G%F%%%% %%%!%%%%!%%%Z%%%%%%%L%%%Q%%%$%%%%%%%%%%%-%'%%i%%%i%%%Q%%@%%!%%{%D%%u%%%a%%%%%J%)%S%%b%%%%%%%q%%%:%e%h%i%%@%%%H%%%A% %%%%%%q%S%%%%%%%h%%%%%%%%d%%i%b%%<%
%(%'%%%%a%%%T%%%B%h%Y%;%%%P%%%B%V%%
%%s%%<%%3%%%%%%%%E%%%%l%%%%%%L%%%M%%%%%%%%%%%%v%\%%%%J%%R%T%v%%%1%b%%%%%%%%%%%%,%u%%%5%%%K%%%%%%%%h% %^%%%%%T%%%%%P%M%%%%%H%%m%%%%B%V%%k%%%z%%%]%J%%%_%V%%r%%z%%@%}%%%%%e%%%%%S%%0%%%a%U%V%%%%%%%%%1%%B%V%%b%n%%%%%_%%/%;%;%%%%\%%r%
%N%%S%%%X%%%L%%1%%k%\%%%%%%%%T%&%%z%U%)%%2%%%%R%%%%%%p%%%P%u%%%B%r%%%%%%%
%2%%%%Q%K%_%	%Y%%%%%@%%%%%2%<%K%u%%%J%U%%[%%%%%%%2%%$%%%*%%)%%V%$%	%=%%<%%%%%%#%%%%%%%%%%{%%%%n%%%,%%%%%%%%%m%K%%R%%%%X%C%%%5%b%%%%%=%k%%%u%%%%%%m%|%P%% %%%%%%%%%%%%%%%b%%%%%G%&%Z%	%Y%%%%%%%Q%K%%%%#% %!%%%%%L%9%j%	%.%%B%h%%Q%
%%@%%%%#%
%%%%%B%d%%%%X%a%%d%%%E%%%%%% %U%%%K%w% %%W%%|%%%%%%%7%%l%%v%%%8%$%L%%r%"%j%Y%%!%c%%%%%%%s%]%%z%%v%%	%B%%a%t%%%Y%k%%i%%%%	%%%%%%"%%%l%S%%%% %%k%%U%%^%K%G%%%%%%%%G%%A%%%%%%%%%b%%%%%%i%%%%%B%%%%%%%%%%I%H%%
%%*%%l%A%%.%%%|%%~%%%%%%D%%%%/%d%X%u%5%%^%%r%L%%%%%;%%%v%t%L%%%%%%"%%%$%%D%%%%G%f%%u%%%%%f%\%%%m%%%J%%%%%%0%%%%$%l%%%%%%%%%%b%%%%%E%%Z%*%%%F%-%e%$%%%!%%%z%F%%D%%%)%%%%9%%0%{%%%% %%P%%%%%`%%H%
%%%%I%%%A% %%%l%`%%%%S%%%?%2%!%L%%%%%S%m%%%%_%%%h%%v%j%%%%N%%%%%%X%%%%0%Y%c%\%%\%%%%%]%g%%%%%%%t%%%.%%%%%%<%h% %%%e%%%%%%%%%%J%u%%l% %%U%<%%B%%"%e%%%%Z%r%S%%%%P%%2%%%%%%P%S%%Z%%G%5%%% %%J%%%^%%U%U%Y%%%%d%%%a%%%%%%Y%T%%M%%%1%%[%{%q%|%s%%]%%n%[%%%%%%A%%%%%%%%%%%,%%%p%%%%%%%`%)%%'%d%%Z%k%6%;%{%m%2%%q%%%%%t%%%%%R%%u%%%%a%o%%Y%c%]%%%%u%=%%%%u%%%l%% %%%%%'%%%%C%%%%P%#%%%!%%%%%T%
%E%%#%%%%%h%%c%%Q%h%%b%%%%%%%%W%k%%%%%(%%%%%%%%%%%%%!%A%%$%%%Z%%s%g% %"%l%C%%%%%%9%X%G%%9%W%%x%%%o%*%%Y%%%S%)%d%%%%f%%%5%%]%%f%;%%%L%%Q%f%5%5%%%%%%1%%-%%5%%Z%%%q%e%/%%%C%%%-%%%%\%`%%%W%%l%~%%%%%%%%y%% %~%%%%y%%.%%%%%j%%c%%%%f%5%%(%%%%% %B%X%E%%%t%u%e%F%%%T%6%%E%%e%B%%e%Z%%
%%%%!%%%%%%e%%%%%%%z%%%t%%%%%D%%X%%p%%%l%%&%3%u%Z%%%%%%v%%%q%%Q%%%3%H%%%#%%b%U%%%5%j%%%}%%%!%%o%m%'%E%%%%%%%%%e%%?% %%%%%%i%%Z%%%%%%%%%%%%%%%%%A%%V%%%%%/%	%-%C%%%%%_%%D%)%%%%d%%%0%^%%+%%%^%%+%%%%r%U%R%%%Q%%% %U%%%%Q%(%+%% %@%X%%8%%%%%,%%X%%%%%%%5%z%%%G%%q%%%%A%%%%%{%d%g%%%i%S%;%%V%%I%%I%%.%U%%%I%%$%%%%$%%%%%%%%%Z%%M%%%%%%%%%%%%T%l%%%o%!%A%%:%M%6%%%%;%%% %s%%%%.%%%%%%%%!%%%&%C%$%%%C%%!%%%%%%%%%%%%%r%%\%!%%%%%x%o%%7%%Y%%E%%x%R%O%%%%%%%%r%$%^%%W%%%%f%Z%
%A%%j%%f%%%%,%=%%%K%%%%%}%G%%i%g%%%Y%%^%%2%%%%7%%%%%%%%%%%%%%%N%%%"%%%%$%F%%%%Q%%Z%%%%%%%%m%[%%v%%%"%I%%%-%%h%3%%%%%%%%%%|%%Z%b%%%%%G%1%%2%P%%W%%%%E%e%%r%%\%Q% %
%%x%%%%%%e%Q%%%%%\%a%X% %%%%%%%E%%%%%%%%z%h%e%%P%%W%+%%%+%%U% %%/%%-%3%%-%h%%r%U%%%%E%V%%%%2% %z%%% %%3%7%D%%V%%%a%%p%3%m%;%%%%%%Q%%I%b%9%1%%%%%%Z%j%%q%h%q%%%%u%%%S%%%%%V%%,%Y%%%3%%>%%%%#%%%%%"%%y%%}%%%p%%%!%d% %7%P%-%%%"%%%%
%%!%%P%%%B%%%%%%% %%%6%%% %%O%%%%%T%H%<%D%%%#%&%%!%%%B%%%L%=%P%%z%%%%*%%,%%%%	%F%%e%%|%%%'%%%%%%%%%v%"%[%%%#%d%%%%e%%%e%%%O%%%%%I%%J%%N%%%-%%%3%%%%%%%%V%%c%l%{%%%	%%%6%E%%T%9%%%E%%%%+%%%W%%%%%%%*%a%%%%%%*%C%%\%Q%(%%%y%%/%%!%L%H%%%%%F%F%-%%%$%5%*%%%j%a%Y%%%%A%%%7%*%%%%	%%%%l%a%%&%B%%%%%%%%)%S%%%%%U%t%%%,%Y%%%?%%%D%V%f%%	%% %%|%"%%Y%6%s%%%%%~%%v%*%%%%%'%%%%p%%%%%%%%#%%%%%%%%%J%%%$%	%%*%%%%%%%h%j%C%%j%-%%@%%%|%%%%%%%%%%%%%
%%%%r%A%%4%$%+%%%%%%%%%%%%%%%T%H%%H%%D%*%%%%%%%%%%(%%%z%-%%%+%%r%%%%<%%%a%%%%-%K%S%%%L%%%%%%s%%~%%%%~%%Q%%%%F%M%%%%]%%%%%%^%%%%%e%Y%e%%%%%%%=%%%%%W%%%2%u%d%%a%s%%Y%%%%%%%^%J%%T%%%%%%%B%^%,%a%u%%%B%\%%%d%{%%%%%q%%%%%,%E%% %M%%
%%%G%%%%Q%%%%%)%%S%%%%%.%$%%%x%%%%"%W%%*%%a%%%%%%%%1%%%%y%O%%K%%
%%%%%^%J%%%%%*%%%d%%"%M%5%%%%S%x%%"%%2%B%%%%+%-%+%;%%B%<%(%%2%%^%>%S%%%%%-%+%d%%<%k%f%{%%%%%%^%%%%g%	%Z%)%%R%r%f%%%%%%%Z%%%%%%%%%%%-%%)%|%%N%%&%H%R%d%%7%%%%%%%Q%!%%_%H%%%%%<%x%%%<%%%R%%%%%%%%%%%%%%"%W%%a%C%%%%%Q%h%%c%%%%$%%%A%%Y%K%!%%%%%%%%G%%%*%,%^%%%%%%%%%e%%P%%Y%X%%%J%%i%%%%%%;%p%B%s%%%%c%?%%%%%%%,%%%%%%?%k%%%%n%%z%%%%d%)%%%%%%2%%	%v%%@%%%%%c%%#%%'%%g%%O%%	%|%%Z%%)%%%Z%%2%%%%S%v%/%p%%%%r%%%%%%%%%%%}%%%%%:%%%%%%%%%a%%r%%<%$%[%(%%%T%%%B%F%%%\%E%%%%#%%%%%%H%)%%%%O%^%%D%T%%t%d%%Y%C%%%x%y%%%:%K%%-%%X%%%%%.%a%%i%%%,%%Y%=%[%_%%%a%%%%4%%%%%s%%i%i%%%%%4%%,%%4%%%%3%>%1%l%Y%%%%%v%]%r%=%r%%`%%%L%%J%%	%8%A%% %%%%%%e%%*%%%%%%%%%%%c%<%%<%O%%%7%%~%P%%1%)%%%%%%h%N%!%%%\%]%%%%%%@%%%%%%%%x%%%%(%%"%%%%%S%%%%V%% %p%%%%%D%%%`%%%%0%%%%]%J%%%%3%e%%%%%%3%e%%%/%% %%N%%%m%%o%%j%%%%%~%l%[%%Y%`%}%%%%z%%9%G%%%%%%n%K%[%N%S%%T%L%%U%k%%%%d%Y%%%E%0%e%p%%%G%%%%d%%d%%>%,%%%%'%H%%%%Z%4%%W%Z%&%%%[%%%%%3%%%%%%+%u%%t%d%%{%%V%%%%9%%%%E%s%%\%%%%V%S%$%m%1%%%T%@%%%P%Y%t%%R%@%%%%%%;%%%z%a%%%4%%%U%%%!%%,%%%%%L%%`%%d%T%%%%2%%`%%%"%%%%%%%%
%n%%%%F%B%%%%f%%%S%8%j%g%P%1%%%%J%4%3%%%9%#%%%Y%X%K%%%B%L%X%?%%%%%%d%%d%%%%%%A%+%;%f%%$%y%%%%%%y%`%P%	%%"%-%%%%%}%\%%%J%%%%`%%*%%
%%C%%M%p%d%9%0%%)%C%K%u%C%%%%%|%%9%%%%P%%%#%%e%A%%
%J%%V%%5%%%%%%%%%% %%\%z%%g%%%%%	%%%3%F%%%%C%%Z%%%%%p%%%%?%r%%l%%)%J%%%^%%%%%%%%%L% % %%%I%D%A%T%%%%%%%%?%%%%p%%%%%%%j%%%,%%4%%%%.%%%%K%%%%%$%b%%	%I%b%R%u%%%%\%%\%P%1%v%%%f%%%%%k%%%U%h%%%%Q%%%%J%%%%%%%b%^%%%-%C%%	%;%%%s%%%%%%%-%%)%%-%%%%%%%%%Y%r%%%%0%%0%%`%)%X%<%{%%%%%	%I%b%%%b%%%%[%/%F%%%%%%'%-%H%%R%%%%%E%%%|%%e%%%3%%%I%e%%8%%%E%%%%H%d%%%^%%%F%/%%)%=%%%%%x%?%%%^%%%%v%%D%o%%3%}%d%%%%%%%%%%%%3%b%-%[%%%%%j%%%2%%%%%%p%%%%%%%k%L%%%p%%%p%%%%%%;%V%%=%%%%/%%%%R%%J%,%%K%%y%%>%%<%H%%%
%%%%%%t%d%%	%%%%%%%^%s%%%%%g%x%%B%)%%%%r%d%%*%k%%%%%%|%%%%r%!% %%R%%T%%%%l%4%%_%j%Y%%&%%%%%%%[%%%%%%c%%%%%%%z%{%%%%%%+%%%5%i%%l%%%H%%%f%%%%%X%t%%%%%%6%%2% %z%%K%%%%%)%%}%%%!%%%%%#%%F%%%%.%%%%2%%%9%8%%%%1%l%K%9%%q%0%V%%y%%g%%%%.%%%%:%%:%%%/%u%@%%%%%%)% %%%%%%%h%%?%%%A%%@%0%/%%g%%%%%y%%%"%%%%%%x%o%Q%%%9%%&%'%%%%%%%(%X%s%%%% %%%%% %%%%K%%%%%%%%-%i%A%%^%%%%?%/%%%%%%%%c%%4%Y%%%%%/%3%P%%%h%%0%%J%.%%%{%%%%%l%G%%%%5%%%%%%I%%|%%b%%%%%%%=%%%%%%%i%%%*%%%&%p%	%9%%%b%l%%X%1%&%%%%c%%%%k%%%p%-%%%\%%%	%%%%%6%%%%%%%%%%9%g%.%%{%8%(% %\%%%%@%P%%%%%%!%%%%%%%%%%%%!%%%k%%F%?%@%%%%%%%1%J%4%%%H%%%%%%Q%%%%% %%%C%%z%%%$%%%%p%^%%}%%^%%%%%%%%L%%%%%%%%_%%I%%%<%%n%;%%%%%^%{%m%% %%%2%e%I%H%%	%Y%%g%%f%%%%z%Z%6%$%%U%/%V%L%%%%%%%%
%m%d%H%R%%L%U%%%%$%%%%b%L%%%%%%J%%2%%%%%d%3%H%M%%%%%%%%b%%{%%%-%~%U%%%}%%%%}%%G%f%;%%"%j%%%B%%r%-%%%)%s%%%E%%%}%%%%%%%-%%%i%%y%%4%%%%%1%%%%]%%k%%%w%%%%%\%%%%%%w%0%%%%%%%b%%%%#%B%%D%%v%%%h%%%!%1%J%%%%%%Q%%%%C%3% %%K%%%#%B%%R%i%%
%h%%%F%@%%F%%%t%h%%%V%{%9%2%%0%%%a%(%%Q%%%,%%,%%l%%r%%j%b%L%%[%%%%L%$%@%a%%%%%%%%%:%2%%!%%%%%%z%%%,%%%%%%%_%#%%%p%m%%%%4%%%L%b%%L%Y%h%%%%%Q%%%9%K%q%Q%%%%U%%%%%%y%X%U%,%%k%D%y%w%%G%%%%%%%%%%%b%%.%#%% %%%O%%%	%1%%%%)%%%L%%%;%%%%A%b%%f% %q%W%%]%i%v%%% %% %%% %2%@%%%%%%%%%%%%%%%%%*%%%%%%%u%%%%%%%%l%a%#%%J%%%9%%J%6%%6%%1%K%%%%%%%%%%%%%T%G%%%#%%%%%%%%-%%G%%%%%%%'%%~%%%%P%S%%%%%%%%$%%s%.%%%Y%%%B%%%%V%%W%k%%%%%e%h%B%%"%%A%%%%W%%%]%%%%;%%_%z%%.%]%%%%%%%%%%%A%%U%3%%,%D%H%%%$%%%L%%1%%H%%C%%%%H%%%f%w%%%%c%G%V%z%N%%"%%q%%?%%%5%%I%%%r%H%d%%*%Z%+%%%;%G%f%%%%%r%%k%%&%%D%r%%*%j%b%%%%%%[%<%T%%D%%%R%J%%X%%%%%%%@%_%%%c%%%%_%%O%%%%%%%%%/%%k%%%k%Y%%4%%%a%8%%r%%%%x%-%%%%%%%%%%%%%%%%y%%%w%%r%%"%%%%%%% %% %4%%%!%R%%%%E%%%A%%%H%%$%1%"%^%%%%@%%%%z%%%`%"%,%c%!%% %w%B%v%%[%b%y%%%M%%%%P%%H%1%*%%%%#%%%6%"%G%%%%@%%%%%j%%%@%	%%/%d%%%%%%4%1%#%%%N%%%%%S%%%%O%?%#%?%%%%%%%'%1%%%%%;%"%%'%%%%g%w%.% %%M%%N%%q%%?%%%%%%c%%%%%%%%'%k%#%%i%%%F%J%%%%%6%A%c%%&%%%4%%i%.%G%%M%%%%%P%%[%%%H%m%%=%%%a%%%%%%%%Z%%%%%K%%%%-%-%%Z%%G%f%V%B%%%*%%%T%X%R%%%%%%U%%Q%%I%%,%%g%%R%)%%%%}%%%%%%%%%~%%%%%%%%%%%%%%%%%%%%O%g%E%%%%%%%%%%o%|%%%%?% %4%@%%E%%P%%L%%%%%1%%%%%!%%%`% %%%%{%5%X%=%!%K%%%%%%%%%%"%%%$%"%%%&%%%C%A%%,%%Z%%%%%%%%R%%&%%0%%%%%%%R%=%1%%P%%%f%B%%A%%M%%>%%W%%%%e%%%&% %%%%%
%0%A%%%i%K%%@%%5%%G%N%>%%g%6%%%%G%%L%%%%%%%o%^%%2%%%{%%%%S%6%M%%%%%G%%_%%%%%%%%%U%%%%%%%%%X%%x%-%%	%%%I% %v%%%%%,%F%k%%%%%%	%%%%@%%b%%%#%%%%%%%%C%N%Z%%%u%%d%{%D%J%H%%%%%8%%N%%J%%%%u%%%`%-%%%f%%9%h%
%%%Z%%%t%%%%J%5%Y%`%%%%%%%%%W%f%%%%%/%t%q%e%(%{%%%2%i%%s%.%%k%%U%%%B%%%%%%)%%%%%9%%3%%%%%%%%%%%%%	%%D%%%%%%8%5%%%N%%%%I%%%%%%%%%%X%%%%N%%%
%Y%Q%1%+%%%%%%V%%%%C%%a%J%%z%%I%%%V%%%R%%o%~%%%_%%%o%%%w%%%x%%d%%&%;%-%%%L%%U%'%%%s%%%%!%%%-%;%%%%%%%%E%X%%%E%%%%,%%%%%%%%%(%%l% %D%"%%%!%%%/%%%l%%%M%h%S%g%%J%%%a%%%v%%b%%9%k%%%#%%%%%a%%K%!%%%%%%%%}%%%%k%%%%%%%%%r%y%%%a%;%%"%%C%%%]%%z%%%U% %"%r%v%%;%%7%%{%%s%E%%h%%%C%%i%1%t%*%%%%L%%2%d%C%%L%Y%%o%1%%%%%6%e%%%v%%I%X%	%-%%%2%e%%%%U%l%4%q%d%,%j%5%%%%%B%%%%%<%%%r%%o%%%%E%%%%%[%%%%%s%8%%%/%%%%%%7%%%%:%%%%%% %%%%$%%"%%%I%P%%%H%%%%e%%1%V%-%+%%d%%v%%J%%e%h%h%G%h%G%H%%%Y%D%2%$%%%%!%m%%%d%%e%%e%%%o%%F%%$%%%Z%%_%)%%%e%]%%%%%%g%%%E%8%%{%1%%%e%%v% %%%%%h%%%D%%W%%%Y%%3%%%p%d%%(%a%%%%f%8%%%%+%%Q%%c%9%%%`%!%%%J%Q%%%%%%%%%%S%%%{%-%%R%%(%%%%C%U%%%%L%Y%%%%%%%i%e%3%%%&%%%%G%%n%%3%#%%N%)%%%%~%%'%{%%o%%E%a%%%%%%%%%%8%%%%R%% %<%%%%%3% %%%%%r%%%%%V%%%J%`%%&%Q%%%6%B%%"%[%O%%%J%%%%%%%%%'%9%%!%0%%%m%'%%%%%%<%%%%%%q%D%%%%q%%Y%%%8%%Z%%S%%%W%%%%O%%%!%%}%Z%%D%%%%>%%%%l%%%%X%%%B%%%%%M%A%%%N%%L%J%t%i%#%d%"%%%n%%%Q%%%%2%%E%h%%%	%%%%$%%!%t%%%%%%%%m%F%*%%%%6%%%%%%%Y%%.%%v%%e%%%%	%%%%%%"%%%{%%%F%+%}%%%%I%%G%%%{%%%Y%%%:%W%%%%z%%%%%%4%6%]%G%%%%%%%L%%w%%%%%%%R%{%Y%%+%%;%%%Z%%%%Y%%%%%0%%r%%%O%%%W%%%+%v%,%%%%"%%Q%%%Y%%%% %%F%w%%%*%%%"%%%%%,%%	%v%%:%D%f%%-%%%5%$%E%2%%%%B%%-%%f%d%&%%Y%6%%W%%S%B%%%%%	%d%%%\%[%%%%%%%%0%%%%@%%u%E%%D%^%B%~%r%u%%p%%%%%Y%%%,%%%%3%%\%%%`%%f%%.%%%1%
%%%!%*%%"%%%%%%%%F%{%%%@%% %%@%%e%X%%F%%m%%%%%9%L%%%%%%~%%R%3%%%%1%%2%S%Z%Q%%T%v%%%f%C%3%%r%b%n%%
%%%l%%%%%I%%%%%z%%%p%%%%%%%k%W%%:%U%n%%%%H%%%%5%;%%t%%z%%%'%|%%V%%%%%D%`%%%%%%%%%%M%%%D%H%%D%X%%[%%%%a%%%#%%%%v%%%%L%-%*%%%%%%%#%3%%%d%%Q%q%d%%%`%%%	%%0%%%%%%%h%#%%
%s%
%%>%*%%r%@%D%~%%%%%%%9%%l%@%%%%P%G%=%%:%%%%g%)%%%=%%=%4%%%N%%%%%Z%%(%Z%%L%%%1%`% %K%%%$%%n%%n%#%%%%%H%	%%!%g%Z%%v%%2%5%%4%%%U%%%%%H%E%-%.%%%%%%%%%s%/%f%%%%%m%%C%%% %%%o%z% %%Y%d%%s%d%%Y%%5%;%%%%#%m%4%n%%#%%%%d%%5%C%%%%I%4%A%%$%B%%%%M%J% %%6%%%%M%5%%%Z%$%%%%Z%f%I%%i%%%%%%4%#%@%d%p%%%%%!%+%-%%%%%<%%?%%%%a%%%,%%%%%%%%%%F%6%&%d%%%%%%)%O%%%%0%%%%W%%%%%%%%M%Y%Q%1%$%%%4%w%B%% %%2%b%U%4%%%%%%%9%@%%I%a%%%%2%-%%d%%%%)%c%%%3%%i%R%%Z%%%J%%%%%'%%%%%%}%%+%o%%%%s%%%	%Y%?%%%:%-%%i%u%(%;%%%l%h%%%%C%%%m%K%%%d%%%4%h%%% %"%6%&%%%%%
%%b%%%Z%%%%,%Y%q%d%E%%4%S%%%%m%o%%%%%X%%%$%;%G%v%%%%%{%F%g%%%%%%%9%%s%%Z%%%X%%c%|%D%O%%%%%7%%%%?%%%@%%%@%%%%o%/%j%b%%9% %%%f%%"%%"%d%%b%%%'%%%%%%%%%%%Q%%d%-%%%)%!%%%%%1%%[%%%z%%%%%%%%%%%=%%%%<%%%%%%]%%V%%%%/%%%%%s%%%=%&%%%m%%%%7%%<%o%/%%}%'%9%%u%d%%%|%%%%%%%%@%)%%D%
%%%%%%(%%%i%%%6%%1%	% %%%L%%b%-%%`%P%%%%2%{%%%%%%%X%z%%R%&%%%9%%%%%%[%%~%"%>%x%%%j%%%-%%%%%%%%_%%%%%%%%%%%%%Q%%%%%!%%O%i%m%"%k%%%"%`%%%%,%%%@%%D%Z%%K%4%%%!%%L%!%%D%+%%%%%%%%%%B%A%%%%7%%%	%G%%%%%%%%[%%%%%e%3%%%%k%_%g%%%%S%%%f%%%%%P%)%%%2%Y%h%%%%a%&%%%X%%1%%%%-%R%%*%H%%%%`%4%P%a%%%%%%L%(%i%]%]%%%#%c%%m%%P%|%%c%%?%%8%7%R%%%%/%%%l%&%%%%%%%%%%%l%%%%o%%%%%%%[%%|%%A%%P%%% %%k%L%%%%$%%0%S%%%%%8%2%%%U%4%%
%%%S%%$%{%%%%%%%%?%n%m%%%%%%s%N%%%%#%%%%%4%%=%%%0%6%f%%%`%%%% %(%%%9%%]%q%%l%%%%b%%%%e%U%1%%%%J%d%%%g%%%%{%%/%%%%%^%%c%u%%%%"%%Q%%%I%%%'%%n%%%%%%%_%/%%%H%%%%A%% %%% %%%B%%%%P%%@%	%)%]%h%%c%%%A%%N%%%%T%<%%%%%%;%O%e%%%%%%%s%V%%E%%%}%s%a%%%f%6%4%)%)%%%%%P%n%%"%%Q%%%%	%!%]%%H%%%%b%&%R%%A%X%Y%7% %%%2%q%%r%%%%%%%%%I%t%%%%%%%%8%[%%E%%%}%%%%%%%%%]%o%%%%A%%U%4%%%D%(%%%%%F%1%%b%%%%)%3%E%%5%%R%-%%%%.%%e%A%%%%%_%=%d%%%%x%%x%%%%k%%%%%\%,%z%5%Y%7%%%G%6%%%K%%#%%_%%<%%%%%%%%0%%%E%%G%v%Z%%%%%H%%%e%P%M%D%%B%%b%E%%%0%A%%T%q%B%%%%H% % %&%$%a%%%.%%%%%%%%%R%%%%%,%%+%%3%%%l%%:%%%%L%%E%%%% %!%%1%%%%%%%%X%%%%%=%C% %%j%%%P%j%!%%%%%o%}%z%}%*%6%%%%,%%%~%%^%%V%%%q%%Z%%%%%%/%%/%d%% %%@%%a%%0%%%%%R%%(% %%"%!%%%L%a%%T%%%%%@%%#%%%%k%%b%3%W%k%b%%%%%%%%V%%%B%%%%%k%%3%9%%%b%B%%`%%!%%&%%%%J%]%c%%%	%%2% %R%%)%!%
%%%%H%	%*%%%n%c%%%f%-%%%%%L%q%% %%{%%f%%%9%%%%%%>%3%%o%%%l%%%%%Z%%%w%O%%?%%%E%%J%%%c%%%%*%%#%+%=%%%X%%%,%T%!%%B%%%% %<%%%%%Q%%%%%]%%%%K%%%y%%%-%%%%%%%%U%%r%k%%%%%%$%@%%@%%%@%%%%	%%4%Z%d%%%%%%%`%%%/%%N%%%%%%`%%%f%%E%%%3%%%%!%%%%%%%%%%?%`%]%i%>%H%%%&%%J%]%%)% %E%%P%%%:%8%%%%9%%%%#%% %%%~%	%%@%6%%9%%%#%d%+%%%^%a%%%d%u%%%@%
%L%D%%%`%%%`%%%%	%%%`%%%%#%/%%?%%%%%3%%%%%%>%p%>%%%g%=%t%%%%o%%5%b%%%%\%%%}%-%o%<%r%%%%%%%@%u%d%k%%r%^%Q%%Y%%%%%3%%P%%%%%%8%%I%c%%=%%%Y%%i%%%%%>%%%%%%%%<%#%%%%8%%A%%%%b%%%%-%P%@%f%% %%%%F%)%%%&%b%%I%%%)%@%%%o%%%%a%O%%%%`%%3%%%%%%'%J%%%f%%6%%%5%G%&%%%%%%%	%M%
%A%r%t%%%%%z%%*%v%%-%%%%d%%%%d%C%%%D%6%%%q%%K%%%%%y%r%%%@%0%C%%@%%Z%\%F%a%%%%m%g%l%%%%%%%S%%0%_%%%%%%%%y%%%M%%h%<%x%s%Y%2%%%!%L%%%%4%%%%3%%?%%%T%l%E%Q%%%%v%%%v%%%Y%`%%5%;%%%%%?%(%W%%%%%d%%%%~%%%%z%%%F%%%P%%:%q%!%;%%%%~%'%%%g%%%%?%%a%-%4%%%%w%%%.%d%'%%`%%%c%k%%%%%S%%%0%%%z%"%%9%%%%%&%%%7%{%(%%%`%%%;%%%%;%%q%e%n%c%%%%%%%/%%c%%.%%%%%%%%,%\%%N%%%%%]%%%%%%%b%%Z%p%!%[%	%%%f%%%k%S%+%%]%%%%%B%6%%%U%%%%%%,%7%b%%%e%%6%%&%%b%%%p%!%%O%_%%0%%%j%%%%%%%%%r%%%%U%v%.% %.%d%S%%%6%O%%%+%%f%g%v%"%r%%%%%E%%%l%%-%j%%4%>%%%%%8%%%%%%8%%k%v%f%-%%%l%%%%u%s%<%k%%%%%%%%%%%%%%%%%%%%%w%%S%%c%%%%%%s%}%A%c%%%3%N%%B%%%%d%%V%g%%N%w%Z%%q%6%%%%%X%%%i%%Y%%U%L%k%8%%%p%!%%$%3%%%%d%%%m%9%%	%%%C%X%u%%%8%%\%%)%%%%%B%6%%}%R%%%e%q%%r%%%%6%=% %%q%%%%B%%8%%%%%%%8%%%.%%%%'%%%%A%v%%%V%a%%%%m%4%%%%b%G%%%%%%%n%g%{%q%!%%%%%Z%%q%V%%%%%%%z%\%%%%%z%\%%%%%z%\%%%%%z%\%%%%%z%|%%%q%.%0%K%%q%=%%%%%%%%%%%%6%%%w%%#%%%%#%s%%g%%q%!%s%%g%%q%!%s%%%p%%%~%9%%a%%
%%%2%%s%d%%s%%%%%%%%i%%o%%g%%w%%#%s%%g%%q%!%s%%g%%q%!%s%%g%%%%%%8% %%K%%%%%%1%%%%Z%%%%%%%q%%;%2%%q%%%%2%%q%%%%2%%q%%%%2%%q%%%%2%%9%%l%|%-%%%6%:%%/%%~%v%%2%%Y%%[%%%%%%3%%%%%%%_%%%8%%g%+%%%%%%%%~%%3%%%8%%%%%%%%%%%3%%:%%%.%q%%%%%%%%%%%z%% %%<%%%%%%8%%s%|%%%/%|%%%%%8%%s%"%%%?%%X%]%%%'%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/axes_outer.png__ __9680__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % %%%%% % % %%%%% % % %%t%I%M%E%%%%%%*%%%%z%8% % %%%I%D%A%T%x%%%%{%\%T%u%%%%%A%%r%Q%F%.%"%%*%%"%%b%y%%%%p%%\%5%M%M%P%#%J%%%%%'%}%,%[%%%%%%%%%%V%F%%S%%%%Z%j%j%%e%%%%%+%S%%5%%!%%'%%%P%h%i%%%%%%U%%%%%%?%>%%%%0%g%~%%%%%?%%~%%%%%%%N%%@%t%%%_%%`%%`%H%%%%%	%%%K%J%J%%`%o%z%q%:%%%v%%%%%%k%%%%%%%%%%3%%%%%H%%n%%t%%%%v%%5%3%%5%%%%h%k%% %%Y%%S%s%%%%%%%$%%"%f%M%%%|%[%%%}%%%%9%%J%%6%%%%O%w%%#%%;%f%&%%-%%%o%%%%+%%=%%}%%%_%%%!%%%%%%%%%a%a%a%G%%%i%S%%%k%w%%%^%L%k%5%%%(%w%q%p%%%%5%%%%%J%%%o%.%Y%%"%%%,%%+%%s%%%%k%%'%k%%%4%%%$%%%%3%%%%%%%O%%w%X%%%K%%%%%%K%%S%%p%u%s%o%Y%c%6%%%(%w%%%w%%%%Z%}%%%%%]%%%P%%%!%w%%%%F%%{%%%j%%}%%%%%%W%%W%?%%k%g%3%-%%%%%%>%^%%%%%%%Z%x%%2%6%l%%%%%/%%%^%H%%%%%U%%<%%%j%%c%%%%%%%%%%y% %%e%i%%%%%%%%/%{%%%L%%%_%%%%l%K%T%%%o%%a%%%.%i%%%(%;%%	%w%
%~%%%%%%?%%%%%E%%%%]%Q%%%%%%%<%4%%%%`%%$%O%x%%%4%t%%G%%%%%&%M%%%\%%o%S%y%%%%%%%%~%%d%%?%%V%M%K%-%%d%%%%>%}%%c%%%%S%%%E%G%r%%f%%%%%%%%%%%k%%l%]%%V%%p%u%%p%%i%u%K%r%%%%,%%%y%%%%%I%]%%g%v%%%%%5%%%c%%%%%:%;%T%%p%%%t%%v%%%%%%#%%%m%%%_%%%(%%%%%%%%%~%M%0%%%%0%r%%A%%%%=%%]%q%%%%%Y%%i%O%%%%j%%%>%%1%%%q% %f%]%R%R%%%c%%%[%%z%%%%%%%%%%%]%%m%%$%%%%{%%%S%}%%z%%m%%%%%%%8%%5%j%%%%%,%L%%%%%%:%:%f%%% %|%^%z%%%%%%%%%%4%%%%;%%f%%e%'%%K%%%%%%%%"%%o%Y%%%Y%%%5%G%%%V%%c%6%%t%	%J%O%%%*%@%%2%q%]%%%i%q%i%%%%%% %%%y%|%^%m%%K%?%;%%%|%%%%{%"%%%7%%@%% %x%%.%%%%%%=%%}%%%%%%%_%%%%%d%%%i%%%c%%%s%~%%%!%%%%%%_%*%\%z%%%%,%%%n%%%%?%z%_%%%a%.%5%?%%T%%%%K%%a%%O%S%%%%s%%%^%%%%%7%%+%%*%%~%%%%%%%+%U%%_%%z%%%%{%%	%W%%\%%Q%%%%% %~%%%$%%%% % %?%W%%%%%v%%L%%@%]%%%^%%%%%)%%%%=%}%%%%%~%%%%%%%%%|%%f%%%%%=%%%%%%%C%%"%9%v%%%r%u%h%%%%]%%%%%9%%y%%%%%%%%%%%%%%%/%Z%%9%%g%G%%%6%%%%%%x%t%%%%t%%%t%%%%%7%)%%K%%%~%%^%%^%^%%9%%%%%%%d%%k%%%I%~%a%I%%%%%6%%%T% %(%.%%Y%%[%d%%%O%%f%%%{%R%%% %%p%%%%%%%%p%%%m%s%%%>%%%%%%%7%.%%c%%%%u%%%%%%%%e%u%%%%%%%S%E%%%%%%;%%%%3%%m%%%%%%>%%0%%>%%%%%%%%%%X%%+%z%%%%%V%%%%%%_%%%@%Y%%%%?%&%%%%%%%%%%c%%p%>%%%u%%%%%%%%s%%%%%!%%%%y%%%p%Q%>%2%%A%'%z%%[%%%r%%d%%%7%%Z%~%%%=%%%%%-%%%%%%%%%%%%%W%%%%%%x%%%%%%%_%%<%%%%g%%%%%%+%p%%%;%%%v%#%%7%%%-%%V%p%%p%x%%%%%%%>%)%%%%G%%1%%%%%%%k%%%%%Y%%%%%%-%}%%%.%%%o%\%%%%r%%%%%%%%_%u%%W%%%N%=%%p%%%$%9%%%%%%%Q%d%%%%%n%%%%%%E%%%%%%%/%%%%%%%f%%g%%>%%_%'%I%c%%%%%0%3%%d%f%M%%%%%%%@%%9%%|%$%J%v%%%Q%{%J%%C%%%%%%0%1%%%%%%%}%=%k%%%%c%%%%%J%%%`%%B% %%%%7%%%@%^%%%=%?%>%4%%%%%%E%%%i%%a%%}%^%%%U%%% %%>%!%%%B%P%%%%%C%W%Z%%%X%%w% %y%%e%%%%%x%R%%%%%%% %@%%%%%%&%%%U%)%\%%%%L%%^%%%%g%w%%z%n%%%n%%%%%%%T%%%_%V%&%I%%%1%T%%%%%%%%%v%%0%%n%*%%%%%%u%%%%%F%%%D%%%%%%%%}%%W%v%s%t%%n%%V%%%%%%%y%8%u%v%s%%%%(%%%%%%%E%%%%)%%%%i%c%%e%M%%%%%%%%2%%%[%}%q%~%%%%%%%%%Q%%%q%%%M%%/%_%j%0%%%%%%%_%%%@%9%c%%9%%%%%%L%-%%K%%%%%%%%%%%%% %p%%%%%d%f%%%%>%%%%{%%%I%%%% %%%%F%%v%%%r%%%%9%%%%%*%%%^%T%_% %}%4%%%%%%9%m%a%%%%%%%%%%7%%%%%%9%7%j%%1%%7%6%%%%l%%%%o%%y%p%%%%%%%%5%%%7%%7%%%% %%r%%%%/%%*%%%~%%%4%%%3%%:%v%%t%%%%%%%%%%%%%v%%%%Y%%%%%%>%%%m%%%%%q%5%%%7%%%%%%%%%Y%%%v%-%%V%%%%%t%%% %%g%F%%i%%%%%%T%!%%%%%S%%x%%%%r%r% %%%q%3%%j%%%%% %%%%f%E%%%}%{%%m%%%%\%%%%5%q%%%-%%%M%%%%%`%D%P%% %%A%^% %N%%*%%%%_%%N%%%%M%%%%m%%%%r% %%%% %%%n% %%
%Z%%%%%%% %%%^%%%/%%
%%0%%?%%%(%>%%%%&%y%x% %n%N%u%%%%%N%%P%o%%%%%%H%%{%%@%%g%B%%<%>%%%% %%%q%n%%%%~%%%%%%%,%%k%[%%r%%%%%%%%%%%%W%%%%
%%%%%%%=%}%%%%v%%d%%`%%%V%%%3%?% %H%%|%e%% %%^%%%%~%{%m%%%w%&%%?%%%%%*%%%%&%%%%%%%X%%%%%%%F%%t%%%%%%%]%%1%}%%[%}%%&%%%%%%%^%% %(%%%%"%D%%%t%%%%%9%%%%A%%%%T%%x%%%%%,%+%a%%P%s%3%N%%%%s%%{%%w%%%%%%%%%v%5%%%%?%Z%=%%%%/%%%%m%%%x%%%g%_%0%m%%%%O%%%%%<%%%b%%I%%%%%\%?%%@%i%%%%%%z%%%%%%F%%%%%%\%%%u%g%%%w%%%
%
%%%%%%%%7%%%%%	%%%% %%%%{%%,%% %%%|%%%%%%%%%%%%%%]%%%%%%@%%3%%%\%8%%%%%%%!%n%%L%%%%%%%J%% %%%%n%%[%%%%%%%z%%%%%%%%)%%%n%H%%%%D%%%q%%[%%%p%w%%%%%%%u%%t%%+%%%Z%%%%%%%%%%%%%%D%%%%^%;%X%%%D%%G%%%|%%.%;%;%%%%#%m%j%_%7%q%}%%k%%%'%2%-%i%%w%J%y%%%C%%7%&%%;%/%%|%u%]%%%%%%%%%d%%t%O%k%n%%X%%%w%%V%%%f%%%n%0%%%k%%s%%8%q%%%%%%Y%%%%%%%E%Q%.%%t%%%F%$%%%%%%%{%1%%e%>%%L%%%F%Q%>%%%%%%%5%V%%T%%%%%h%%%%N%%N%:%%%%%]%9%W%%3%%%*%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%%%l%H%%U%%`%I%%%=%y%%%%%Y%%%u%%D%%%-%%%%H%%j%r%~%\%%F%%-%%%%|%g%e%%%Z%%1%-%%O%%%%%E%%%*%%%^%%%%%%Y%%l%Q%n%%J%% %P%]%%%%A%%%%V%%%)%%%%c%%%%x%_%%%%(%% %%e%%%%%}%^%1%i%z%%7%I%d%	%%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%%(%%d%%*%T%*%%%%%9%%%X%%%A%d%%A%%%%Y%%%(%%R%%%%%%%%%%M%%)%9%M%%%I%%,%%%0%%%F%%%$%j%X%$%%l%%%(%%d%%F%%%	%%%%%%I%=%x%k%R%%%%%%U%%%W%%%8%%-%%%%l%%%(%%
%%%%%% %%%%o%%T%%%	%%M%%%%%%%j%%%{%%%M%%%%u%%%%J%%%%%P%%%%-%~%%%%&%%l%L%%(%%%%%%&%%%%F%%%%5%%.%%%%I%%i%_%D%f%%%e%C%a%>%%%%R%%%%2%%%%U%Y%%%%%%%%f%%%%%g%%%%%%%%9% %t%%%%q%%%%%%%:%A%%i%K%f%	% %C%%%T%f%%l%%%Z%$%%%%q%%%%T% %%%%%%%%%%%%%%(%%%%%J%%%%	%R%%%%%X%%]%y%k%%%%%%%:%%	%z%c%B%%E%%%c%}%d%%b%%%1%r%u%%%%%%%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%%*%D%%7%P%%f%%%%=%"%K%%U%!%
%%%%D%l%%%%z%%F%$%.%b%%3%%1%%%%3%'%;%5%b%%%%B%%%%.%!%X%m%%A%%%%%%%>%d%%%%%%%%&%%e%_%I%%V%%%%H%%X%9%%%(%%%%%%%]%%%%%z%%>%#%>%5%%L%m%`%V%%"%%%/%%%%%Q%J% %P%%%%%.%l%r%%%%%%%d%%%%%%h%%x%%%%%\%%%b%%%%%%%]%j%%%%%5%%%%U%!%
%%%%%X%S%%(%%e%%%d%%1%%*%D%A%%%f%%%%[%D%m%%g%0%H%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%B%%%:% % %C%z%l%%%%%C%%%:%5%%%%h%e%%%Q%%X%%%%%%%5%1%%e%u%R%%%?%%%V%D%%G%h%%%%%%d%*%%% %%%%[%%%<%E%%%%Y%L%%%>%C%%%%	%q%%Z%e%j%/%r%E%9%'%=%k%J%M%-%%f%%%%Y%%%_%%%%]%%d%<%k%l%%l%%%%%U%%R%V%'%'%;%%%%
%%J%%%,%%b%S%4%K%%%%%R%V%'%8%A%o%%%%h%7%j%%%%7%&%p%%L%%%%[%Y%%%%%%c%Y%% %%Z%%w%%+%%6%%3%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%%%e%H%%U%%%%%i%%%%U%!%*%'%E%%%?%%%%%%%%%%%%f%%%%Y%%L%%%t%%S%5%%c%L%_%%%%[%%9%\%X%"%k%7%%Z%#%S%%(%%J%}%Z%L%%7%%%%%v%%%%<%%H%%2%d%n%H%%l%%%[%%%%d%%%!%3%R%%%%%%i%Z%b%G%%$%V%%!%%%%f%%!%3%R%%%5%%%f%%%%1%Y%%,%%%%%%%%%%k%%%Y%%,%%% %C%%%%%%D%6% %O%%(%]%%%-%%%(%%k%%%e%%%%%%<%%%%	%F%}%%%u%%l%%%`%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%e%%%%L%%%1%%%%%"%%&%%%%Z%	%)%"%%%+%%%%%"%%2%%%%j%	%)%%%%I%R%{%w%%n%!%%G%%%>%%%%%%%%%Q%%~%%%`%%(%%%F%%%%:%,%%%%%%%"%%*%%%%%%%"%%2%%%%f%K%H%%%%%c%e%3%%%%%l%%%7%%:%%%v%k%%n%H%%U%%%(%T%%%%%F%%!%=%V%%T%X%=%%%v%B%%%%/%)%%%%%%%z%%Q%%f%%%%%r%R%4%%%%m%%%Q%%%%%%%%.%{%%%%%%=%%%%2%#%U%%%%q%%%%%i%%(%w%%	%%%%%%8%?%b%B%%%%]%%+%x%/%%%%i%1%~%2%n%%%%%%%P%%%e%%%r%d%f%%%%^%%K%%,%%%%Q%n%'%%%|%`%B%%Q%%7%%%%%5%%%%X%~%%{%%%%%%I%%%4%x%}%%% %u%%%%%%%%%%v%B%%%%x%%%% %%%N%h%%v%%%%%%%%%%%)%%%%;%%%%0%:%%%%%%%%(%%%%%E%)%%^%%]%%%Q%)% %S%%%L%%%%%N%%%%%9%%%%%%%N%%%%?%D%m%p%%%9% %;%w%%%%%%%%%%%L%%`%%I%%%2%	%%Q%&%A%0%%$%%F%%%%(%% %%%%%n%8%%%%x%V%&%A%%%H%J%J%j%%n%%%)%)%4%4%%%%@%$%%%%%r%%g%%%%J% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example1.png__ __3734__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%%*%%%%J%% % %%%I%D%A%T%x%%%%y%P%%u%%%%%%%C%`%%V%%D%%%%Q%s%U%<%
%%2%%%J%%%%4%%%%%*%%%%4%%m%%%%%t%%l%L%%%%%%0%S%%%%%%%Q%%%G%%%@%q%%%%d%%c%%u%q%%x%% %%%%5%%%<%%<%%%%%%%g%%%%u%%(%%%%%%%J%"%%%;%%%g%%%%h%4%%%%%r%%%c%%:%%p%&%R%s%O% %%%%v%%%1%%%%,%B%%!%	%%%U%%.%%!%I%%%B%H%%e%%&%%%%%%%B%%s%%%%6%O%k%%%5%%!%$%%%M%O%%%%%%I%%%%K%%%u%Y%i%%%%K%k%X%O%%%8%%%3%%%% %%:%%=%%k%%O%%%%%%e%%%h%B%O%%	%%%%%l%0%%R%S%S%Y%%O%Y%%%%%b%%e%%%%Z%%%%%o%%%%%%%Z%%Y% %% %%'%%%I%%%%%%%1%%%%F%#%%h%9%%%%%{%=%%\%#%%j%%%V%%,%%/%s%,%4%5%}%p%h%m%%%%:%%%h%%J%%%%%%%%N%-%%%%%%|%h%p%k%%%%%%}%%%%%>%%?%\%%M%%9%2%Y%%|%%L%%%%%%+%w%%%7%%%%%:%4%%%6%%%%%%W%%4%%%A%%%C%|%o%%u%K%O%%%Q%%b%%%%i%%%%%h%,%%%x%M%=%9%u%%W%%%%%%I%%%(%k%%%%%%%,%%@%d%% %;%%%%u%%%%%%%%%%P%%p%9%%P%%%%I%%%%%%E%%%%%r%q%%/%+%%%%%n%	%%%%%]%%V%%R%p%%%%(%%%
% %%%%%%z%F%%%%r%@%%%%%%_%%+%$%%%+%%%%%B%%%Z%%%%%Y%%%%D%R%%e%%i%%%%c%%-%%
%N%L%%%%%0%v%A%_%%%%%m%%N%p%%+%4%%%%%j%%C%%G%%%%%3%%h%e%%%%y%%%%%8%%%+%%%%M%%%Q%%%I%%%%U%%%%l%%%&%<%%F%%%%%%%%$%!%%C%%%%B%H%%%%%3%c%%E%}%%%M%%%X%c%%%&%%%%%%r%%c%X%%%%%g%b%%)%%%;%%%d%I%%%}%%-%p%R%%%%t%-%9%!%%%%%U%%%%p%%V%%n%H%%	%%%%%6%=%%%%%`%%I%%U%m%:%H%U%%%]%{%%%o%%%%%n%*%w%7%%*%%%B%%%%%h%%%%%%x%%g%%Z%~%%%&%%%%O%D%%s%%%%%,%%%%%%%;%%%3%-%%%%%%%%%%%%$%%%%%%
%"%*%%b%E%%%%"%"%%%%p%$%%%%%%%~%%%c%=%%%%v%f%% %%%%%2%%O%%(%%Q%V%%%%%%%%%/%%%u%U%%x%%%Z%A%&%%%p%%%]%]%%%=%%%?%%%%%"%
%h%3%y%%%%%%s%%%%%|%%%:%%%q%q%%W%]%4%/%%%=%%%'%z%%O%B%D%D%Y%%7%%%_%6%/%%E%%%}%n%%%%
%%%%c%l%O%k%%%%%%z%%%%s%%%%%m%%%%!%%%%g%%%%%.%%%U%%%%%J%1%c%G%I%%%%]%%%%%%x%8%%%%%>%%(%%%%%`%=%6%%%b%{%%I%J%%%h%%%%%[%s%%%%K%D%%6%%%%&%"%%%%(%\%O%d%:%%%%%%%%N%]%%%%%%1%%g%%%k%%W%!%%w%%%%%%z%"%|%%N%%%%%%Q%%%%%;%%:%%%h%%%P%j%%%%%>%p%%%%-%%^%%%%%%%%%%%%%%%h%"%%%%%%%%%%%2%%%D%%%E%]%%%%%%?%6%v%%%%%%%%Z%%E%%%[%V%%%
%%%g%b%C%~%%9%%%%%%%I%1%?%%%%l%-%%%%y%6%%%%%%U%e%%%%%%a%[%%w%+%%L%%J%
%%%%t%%m%s%1%f%%%\%W%H%R%%"%"%2%%%%%m%%%%x%*%%%%%%%/%%u%%%%}%%_%%%%V%%%>%%%O%%%-%%%%%k%%%d%%T%%%%%%%%%t%%G%S%t%%%@%%%%P%%%%w%V%%<%%%%%%%i%&%%%%%%%%%%1%%%d%]%%%%%%%-%%%W%%6%%%%^%%%%I%%o%%(%[%%%%Z%%%"%%<%v%%%%%%W%q%%%%>%%%V%#%%%%1%%5%%g%`%"%2%%%%%f%4%%%%t%%%%%f%[%%%%%%%8%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%)%m%W%%J%%%k%%%D%p%%%6%%%%%%%%%%8%%1%p%%%%%%8%%%%N%D%%v%,%B% %% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example2.png__ __4646__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%.%%%%_% % %%%I%D%A%T%x%%%%}%P%%%%%%%o%9%%g%%A%4%%4%r%%X%1%%c%%%%%%h%[%%%%H%,%%%a%%%%!%%S%j%%	%%%'%%%R%%h%J%b%%2%
%%C%%M%)%!%%/%%%F%%%h%%%F%%P%%%%h%*%F%%%%=%%;%%%%%%%%%%q%%%%%%%%%%%%'%j%N%V%%%j%/%g%%%!%%%c%c%%{%&%%%2%3%3%%H%%\%%%_%G%%u%2%%L%%%% %8%%%%%%%%%%k%%B%%I%H%%%%%%%%%$%	%!%%d%Y%6%%%%c%%%z%Y%H%]%%%%%%j%%n%%v%%B%%:%[%u%O%%P%%%%%%%z%%%%%%_%%?%%%%%%%.%%%%%%8%%%%a%?%x%t%U%%%7%%^%%t%%F%%M%%%%%a%%%%%z%}%Y%Y%%k%%%%%%%[%Q%F%Y%c%D%%%%;%%%%g%S%%%z%%%h%%%%%%%z%*%%%%%+%%%%%%e%%6%%!%%%%%G%W%%%%%%5%%%%%%W%%%U%9%%%Z%%%%%V%%%y%8%U%%%i%4%%O%%%%o%%%p%%%%;%(%%%%%%%%%z%%1%/%%%%%%\%n%(%%9%%%%%>%%h%Q%%%%%%[%%%{%I%%%%%%%%%%%%%%%%%y%%/%n%r%h%%%%%%C%C%<%%%%7%% %y%r%%O%%h%%*%%%%>%K%%%%%8%%%9%%%%T%M%%%%%%%%%%%% %v%%%%]%%%,%%%%%F%%%U%%%)%%%%F%H%R%%v%d%%%%%%%%%+%%z%k%%o%%%%%%%%%%f%%%%%k%m%%F%Q%x%T%%%]%%;%K%4%f%%%m%%%%%%
%7%=%%%D%D%%%%F%f%%Y%%%=%%?%9%%%y%%%%%%%%%i%%%%%%Z%%%%%^%X%r%8%%%%%%%%h%%%0%i%%%X%%%,%%X%.%v%;%%q%4%^%%%a%%%%%3%%%%%%%o%V%%%4%%%%%%%%%m%$%<%%%%x%&%%'%%>%%%%%%"%"%:%\%%%%	%q%0%f%%%B%%I%
%[%%{%I%%%%7%K%%t%`%r%z%f%%5%%m%~%%%f%%I%%%%%%%:%%%%%G%~%%R%E%%4%x%%o%%%.%H%^%9%%%%%H%%[%%%,%H%%%9%%)%%%R%}% %%%%`%%%%%%%G%C%%%p%%2%L%%%%%%1%%%:%%%%%%%~%%%%"%r%%>%%%%%%%%_%e%~%P%%+%%%~%A%%%5%o%%@%D%%%%_%8%%%t%d%I%r%%%%%%Y%T%%%%%%%%%L%%%%%%%%~%.%%%%%%U%%%%(%l%%%%%%%%%%%% %<%%%L%%%g%
%%%4%}%~%%%%%n%6%%k%n%%%[%7%%%%%~%%h%%%{%%%%%% %%%$%%%%H%O%%Q%%%%%%l%s%=%%E%%y%a%%%%%%%%%%%%f%u%{%%%%%D%n%8%%,%?%8%%%3%o%G%;%%%"%"%%%%}%%%:%e%9%l%%\%%%(%5%_%%%g%%%X%%%t%%%%%%%%'%%=%%|% %%v%%V%%G%%%%%%%%%%%%%'%]%%%%%%j%%_%%%%%%%!%%%%%%,%:%%%%%%4%%%o%x%%a%%=%%%%%I%%Q%%+%%l%%%%4%%%%%O%%%%(%d%%%%h%"%%%%%%%%%%%%%~%5%%%%8%%%%%n%%%%%T%v%%%%%%k%W%O%%%%%=%<%%%%%%%%%%%%i%|%%%m%%-%9%%B%D%k%/%_%%5%<%x%%%%%%%%%%%$%"%%%%%%%L%U%T%%%%D%]%b%%)%%r%%%%%%%%%%%%.%T%%%%%%:%%|%%d%%8%1%%d%z%%_%%%C%D%t%%X%%%%%%%%%6%U%%%%%p%L%%H%%%%?%%%%%%%%o%n%%%%%%H%\%%5%%%V%%Q%%9%w%%M%%%%%%%c%K%%N%%%%%'%N%%%%r%%%%%%%%%%%(%%%%O%%K%%>%V%j%%%%%%y%%/%%%%+%N%%u%R%%{%%I%%%%i%%%z%I%%%%b%%_%%t%m%C%i%%%%%n%%%%%%%%%%%%%{%3%%B%%%%%%%%%%j%%}%%%[%%n%%%%>%%%7%%%%%%%E%%'%%%%%%=%%%%%%%%%c%%k%6%%%-%J%%%y%8%%%H%&%%1%%m%4%%%%p%H%%%o%%^%o%%%%%	%%% %%%?%%r%p%L%%%%S%%`%%c%4%.%r%%%%&%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%v%%G%#%%%%D%%E%%?%%
%L%%%%%%%%%&%Y%%,%%%%%%%%5%U%=%%%\%%%h%%%t%%%%-%_%~%%j%<%4%%8%%u%%w%j%c%]%m%%%&%Y%%X%%%%%%Y%:%%%%%Z%%%X%!%d%%%%%~%%% %%%a%g%%%%%%%C%F%|%J%%%e%a%a%%I%%M%%	%%.%*%%%%%%V%%%,%e%%%U%a%}%%%\%_%%%D%o%%%%O%_%%%%%%1%d%%k%%E%F%%i%%3%%%%%%1%%%l%%.%%%%%4%e%%%%a%%y%%W%%%7%%%%%%V%-%5%?%%%%%%b%4%%O%%-%%%c%	%%%%%M%%y%_%	%%%%%%d%w%g%w%%d%4%%N%%%B%%'%%%%%)%o%%%%%%%E%%%%9%%R%o%%j%%%%%%%%%%s%%%%.%%R%4%%%%%Q%%%%%%`%4%Q%%%%%Z%]%n%I%%,%%r%E%Y%%%#%%;%%%%%z%;%B%%f%%%%f%(%%%%-%%B%P%x%r%Z%j%P%%v%#%%^%N%%%%Q%%%(%%%%%T%%%C%Q%%%%%%%%%%Z%7%7%^%;%H%%%%.%d%S%%7%%b%D%%%%%c%c%%%y%R%%%%=%`%-%/%/%%%%\%y%%%%}%%%%%%%%%w%	%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%C%4%%%h%%%% %%%%6%D%%l%%%%%%%!%%`%%%w%%%%%%%%%T%%Y%%D%%%%%k%%%D%l%%Q%%%0%@%%p%L%%l%%"%%%%%%i%%3%%%&%M%%%9%%%%?%%%%4%7%%z%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example3.png__ __4972__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%.%%%%_% % %	%j%I%D%A%T%x%%%%}%P%%%%%%%%%%;%% %%%%%%C%%h%%-%T%%%%h%S%%%%x%%D%,%%	%%F%%%o%	%%F%%+%N%%%R%%h%J%b%%2%
%%K%%M%)%!%%.%%%F%%%h%%'%%p%(%E%%I%4%%%q%%%%%%%%%%x%%%%%<%{%%%%%%}%w%%%%%e%5%%%%`%%%%%T%%%%I%a%C%%%%%%%%D%%%&%%%%%!%m%%%%a%%% %%G%a%9%%%E%Y%}%{%%%%%%`%%-%%%%	%%%%c%%%l%%e%%e%Z%%%%%%g%%%a%%%]%V%%%%L%%%%%@%%P%%%%%%)%%%%%%%%%g%%%%%\%%+%%%"%%+%2%%%A%%%%J%%%%%%%%%n%%%A%%%%%?%%%~%a%%V%[%R%R%%%%%%%%%Z%%Z%%8%B%%%%%%X%%%	%%i%%%%%%%%+%%%%|%G%%%%%o%%%%%%%%a%%%%%t%B%U%%%%e%%x%%?%%:%]%o%%%%%`%k%%%%%%e%%%p%V%%%A%%%|%.%%W%%%8%%%S%%%%%=%?%%}%%}%%%2%l%I%%7%%%%%n%(%%?%%%%%}%z%%%%%>%%%v%%"%%%%M%%%%%f%%%%%t%%{%h%%%%%%%%%b%|%%%Q%%?%'%v%%%%G%%%%%)%4%&%%9%>%%_%&%%%S%Z%%v%%%%%%V%5%%%%%%%%%%X%U%%%%}%%{%8%%%k%%N%%%%%.%U%%&%1%%s%h%% %%%%%9%3%%%%%%]%%%Z%%%%%}%%%%%g%<%%%%%%%l%%%E%%`%%%]%%;%O%4%q%%%=%%%%Y%%y%;%%%h%"%%%%%%%~%%%%`%%%.%i%j%%%%%G%&%m%<%K%%%y%:%I%m%%w%%%+%+%%%%%%n%%%%%O%%b%%%%%%%%%%d%%U%%C%%%%%%%%%%%%%t%%,%%S%^%%%t%q%%%%%M%!%%%s%b%%.%%y%_%%%%%%%i%%!%"%%c%%k%%%c%G%%%~%%%%%%%%V%%.%%%[%%%%%%%0%j%%%9%%%f%%E%%9%%%g%/%%N%R%%%%%~%%%F%%%%%O%%%%%%B%%G%%%%%j%%
%%%%%n%I%%!%%%@%2%%%Q%%%%%%%%^%%%q%%X%%%%N%%'%%%%%{%7%%%:%z%%
%t%%%%%y%	%s%%%d%^%%%%%%7%F%l%%%%-%i%%1%%%%W%%%|%r%%%%%X%e%%%%,%Z%^%%%%%%%%%F%G%%%%%%/%%b%D%t%%%%+%%D%D%%0%w%I%%%%%%%%%%%%%0%%%%L%"%%%%%N%%%%%%%z%%%6%v%%%%3%U%%%%%w%q%%%t%t%w%g%$%%%%%7%%%%%%%*%%%%%%%H%5%%%5%k%%%%[%%%%%{%k%}%{%%%%%%%z%^%*%%Y%%%%%%%?%	%%%%%%%%%N%*%%%]%%_%%l%%V%%%%%%%a%M%%%%%%j%N%%^%%R%%%%%%%%%%<%%%0%%%Y%9%%%%C%%y%%%%%:%%%%%`%k%%%%<%e%%G%%<%T%E%T%%E%5%%5%%%%{%%%H%s%d%%z%F%j%%%%%%%%W%%%h%%%g%'%%D%%%*%%%"%%H%%%%4%%%%%%j%%u%k%%"%%8%%%%F%k%!%%%%%%%v% %|%%%%%%%B%D%O%%%\%8%%+%P%5%l%%%%%M%%%%%%%-%D%%%%%%%|%%;%;%u%%\%%%%Z%%C%D%%P%%r%%%%r%_%%%i%t%I%F%%%z%%i%%%I%I%y%%%a%%\%%%%k%h%N%%i%%%%d%%%:%)%%%%%#%"%%r%%n%Y%%G%%%M%s%%%%%_%K%%%%%[%%%%b%%>%%%T%%%%%%%%%%%%%%%R%b%$%%/%^%s%%%a%D%D%$%%%%%%%%%%t%S%%:%%%x%.%#%h%{%%%%%%%%%%%%E%%%.%%%%%X%A%v%%%%%z%%n%q%]%%%%o%%%%%%o%o%%5%}%?%7%%%%%7%%%w%>%E%%p%%%m%%%%%%%%@%-%%%Z%f%V%]%%N%N%o%\%7%%%%%w%%Y%%%J%%%%t%%%%%d%U%h%.%]%%%%%%%%%%%%Z%d%B%%%%@%%:%%%D%~%%P%%%%%D%"%%%p%%C%%?%K%0%%%%%%M%%%n%O%%b%%%|%z%%%%%%%W%%%n%]%%j%%%i%\%<%p%%%~%7%%7%,%{%C%%%\%*%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%%U%h%D%c%V%\%%O%%%'%:%%(%%/%&%%%%e%%E%%\%%%%%%%%%%}%%;%8%%%7%D%%>%7%%}%-%i%%%%p%y%%<%%h%%%%-%%.%%%%%%F%%#%%%6%%%v%*%p%%%%-%%%%%%r%%%%7%%%V%%%%\%%%j%0%T%o%%%J%%%%^%4%X%%%%%%%%%%8%%%T%%%%%%%R%%%d%%>%9%2%.%}%%T%%%6%%%1%7%Z%%]%%r%%I%%M%%6%%%%@%%X%%%_%%5%%$%%%f%%%%%%R%%%%[%%%%1%U%%%3%k%/%5%%%%%l%%%}%r%%z%D%P%%%:%2%Y%/%7%%1%%%%%5%%%%%%%R%%%%%%%%S%B%r%%-%%C%A%p%%*%%%<%%%%%%% %!%%%r%%e%L%%%%%}%%%%%%a%&%%%%)%!%%%%%h%S%%%%%%%%0%%%	%%%%c%l%%6%%%:%%%%%%%%H%%%9%w%%N%%%:%X%%!%%%[%%%%%R%%m%v%%%%9%=%u%%%%:%%%%%`%%%%%Y%%%m%%e%y%:%%%o%%;%(%%i%,%-%%%%% %"%"%%%H%=%%%%j%M%f%Q%%(%%b%y%I%%%@%e%w%%%-%%%%h%%%%4%$%%l%%%%%v%%}%%O%%T%'%K%%%%%p%%H%%%%%%%%N%%%%4%D%D%%%%%%%%%%%%%%%%%%%%%%%y%q%%z%%T%K%%d%%%%U%%%%%%%%d%=%%^%%]%%%l%%%%S%%b%S%X%M%u%%%I%a%%%%%%n%V%%%%Q%Z%Z%Z%R%R%%%%%%%n%%%%%%%%%W%%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%n%%%p%C%h%%%B%%%%%%%% %7%%%%!%4%%%%%%%?%\%H%T%8%$%M%y% %%7%d%u%%%V%%%%v%<%%%%%%%%%%%%%%c%%%% %%%%%%n%%%%6%c%%%%n%%%%%%%%%%%%%T%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example4.png__ __5146__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%.%%%%_% % %	%%I%D%A%T%x%%%%%T%S%%%%%%%%%7%%K%%%`%!%%2%%Z%%F%&%6%%Z%]%%%;%%S%G%%A%9%%%%%%_%-%%T%%%O%%V%%%%%%%%Q%%%%%%%%@%
%%%%%R%%,%p%4%%e%(%x%Z%%%j%%%%%%%%%%%d%>%%%%%7%%%%>%I%%%%%M%%%%%% %%j%%%%)%%%I%S%%%%%%%2%3%3%%@%"%L%|%%%S%%Z%%q%$%%p%%@%%%%|%%g%K%%l%[%%c%%q%%3%%%L%m%%8%%c%%1%%%6%%2%%2%.%a%%f%\%%%%%0%[%m%%M%[%%%8%%%Y%#%%B%%%%%%%\%%e%j%K%z%%%%%#%%%%%%%Z%%q%(%"%%%C%%O%%J%%%%%%%%w%%%%%G%%%%%X%%%J%%%h%4%%%_%}%%%%[%%z%%C%%%%%3%%%%%%%%q%%o%%%k%%w%$%%%%%I%%%R%%%%H%/%%k%C%%%%%`%%%%%o%%%%%%%j%p%%%%%%}%%%E%N%U%%6%%%%%%
%%%D%%%\%l% %%?%t%%]%%N%w%%@%x%~%%%A%}%%%2%l%Y%%%%D%>%%n%%,%\%x%%%z%%^%%%`%%_%%%%%%%n%}%%d%%%%%%%%-%=%%%%%%%%%%%%%%<%y%<%(%%%]%w%r%%%%%x%t%%%Q%u%%_%%W%)%{%>%%%V%%Y%r%<%%%%%%%%%%%%%%U%%H%%%O%s%%{% %S%%%%%%%
%%%5%%%%C%%8%.%H%>%1%%%%%(%r%v%u%%%%%%%y%%-%s%%%%%%%%t%%v%%S%%%H%%e% %p%%%%%%%%%%%%f%5%%%z%6%%% %^%~%%S%f%%Y%%%%%%%%%%#%%%%%%%%%%%%T%%q%%%3%%%>%%%f%%%i%%%Z%>%+%%%/%%V%b%+%S%n%L%%%v%%%%%%O%%*%%_%%%%%%\%S%z%%%%%%%%w%%%%%%%%%<%%%%%%%=%C%%%%^%% % %'%%%%%%%G%M%%%1%%q%%[%%%N%X%%%\%%%%%%%(%h%.%%=%%%6%%I%%y%]%%%.%%K%%%%S%%}%%%%%%%%O%%W%$%l%%%-%%%%%%a%:%%b%%%C%z%%%%%%% %%%%%N%~%%%%%>%n%%z%%%!%%%%]%&%N%%%%%%%F%%;%{%%s%p%%%%y%%p%%%=%D%%%%%%%7%%%|%%3%%%%%% %%%%%%%f%8%%:%A%j%%%%%%+%%%%(%_%%d%~%c%\%%% %N%%%%k%% %%%%%Z%% % %%%%U%%%%%% %%%%%c%%%%{%8%%%%%%%%%%%v%%M%/%%%%%%%y%%v%%%%A%n%%%%%%%%x%`%%s%%e%%]%%"%|%%%%z%%M%% %%%%%[%%%% %}%a%%4%%%%]%!%%*%'%'%l%%%%%=%~%%%%%%%_%	% % %%%%%%%I%h%%%_%%]%%n%%%"%%3%%c%%%5%}%%%x%%%?%{%n%%K%m%%%%%%%%^%%%%%8%_%W%%%g%/%/%%%}%%%`%%%%%%%%/%%%%%%%%H%%%%%:%%1%%%%{%%|%O%s%l%%|%V%f%%%%f%%%%%u% %0%c%%%%y% %%\%%%%	%%%q%l%%%%%%g%[%%%7%%G%%q%%%%%%%f%G%%%+%s%%%@%%%%[%%%%% %%%%%x%%O%%l%%%%%%%%%%%%%% %%%%%E%%%F%%%X%%%%%%%%% %h%%%%n%%%%%j%%J%u%%A%}%C%o%0%.%2%=%5%%(%%+%L%W%%%%v%=%%%0%N%%%%%%%%F%%%o%Q% % %%%4%%H%%d%%%q%n%k%m%%%%%%4%b%l%K%U%%A%%%%a%s%%%%S%%%%9%%%%%%%%%#%8%|%%%%%%% % %~%%%%%=%?%%<%%%^%%%%%%9%a%;%-%?%%%{%q%%?%%%r%%%y%%%%#%%%%%%%%%%%%%%:%)%7%%%%%?%4%m%%%)%k%%a%%%%%]%%%%w%?%D%%%%%}%
%{%D%%v%%~%%%%H%/%%%%%%e%%l%%%%p%%%%l%%%K%%R%%u%%%%2%g%U%h%%\%%9%%G%%]%%%%G%%V%D%B%C%%%!%}%%%%%%%%%%%% %<% %%%,%C%%p%%%%%"%%H%%%5%%%%f%%%~%x%r%%?%K%%~%%i%$%p%%%M%D%%4%n%^%%r%%%%%%%%%{%h%%%S%e%d%0%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%"%4%%!%/%1%%/%%%%W%h%%%%%%%%%%<%o%j%%P%%%W%e%%e%%%%%b%=%C%R%3%%%%%%%%U%%%5%%@%M%%q%+%Y%5%%%%=%%2%%R%%%%%%%\%P%%%%%%%%%%%%%%U%%%%%6%%%a%%%[%%%%%%4%6%v%%t%u%[%%b%%%%%%%%%d%%%P%s%	%%%%%^%%%%%<%W%%%o%%K%4%%]%_%%%w%%%J%%%4%%6%-%&%1%{%%%H%%7%%%%0%N%%u%b%%%%%S%V%F%%%K%%%%E%I%e%*%]%I%%%%%u%%R%%%%%f%% %c%%%%f%7%\%i%%%%H%%%)%6%%5%% %%%m%Z%%%?%,%%O%%%%%%%%l%%%%J%e%v%%%%%%%%%%%%%%%%%v%%%$%<%}%%q%%%%*%]%%N%W%%%[%f%%s%%d%%%%%%%%%%%%%%%%#%R%%%w%%%%%q%r%y%,%%d%*%0%%y%%%%%%%'%%%%&%%U%0%%%L%U%%%&%%b%%J%%% %@%%%%x%%%%4%%%%y%%j%%|%G%h%%%%	%%%%%%%%%%*%%?%%%j%%%%g%%%&%%%%%b%%%y%C%^%%|%G%h%e%%Z%:%%%e%%%%Y%%%;%%%%%%%R%m%D%H%0% % %h%u%%%s%8%&%%+%s%%j%x%%%%4%%%C%%%-%g%g%v%%%7%%%%%%R%t%%%%{%%\%%a%%%%%N%%% %%%V%]%%%!%m%Z%%<%M%h%&%%%+%%%i%B%J%%_%%|%'%(%_%O%V%% %@%p%h%%6%6%&%	%*%>%y%<%\%%0%&%	%*%?%]%%%%%1%r%%%%Z%%x%C%%%%t%%%%T%~%%%@%+%%)%L%*%%%%U%%F%x%%L%%%@%%%%%U%%%%w%V%_%W%3%i%J%%p%%!%%%(%%%%%%%%%%h%4%T%%]%	%5%%%	%+%>%Z%Z%Q%Q%A%g%%	%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%u%%?%%%G%K%%J%%%%%Q%%C%%"%4%*%%j%%%%%%<%%,%B%#%%%a%B%%F%c%%%&%%%%%%%.%%8%%6%k%%%%%%8%%%%%y%%@%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example5.png__ __5210__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%.%%%%_% % %	%%I%D%A%T%x%%%%}%P%%g%%%%%%%%%y%%-%1%Z%H%%%X%%%%%%`%j%%z%z%b%O%%%%%A%%b%%%%%%%'%%%%S%%%9%%h%%%%%Q%%_%%%%G%%@%
%%j%E%%R%=%%%(%%%P%p%Z%%%%%%%%%%%%%%$%%%%%<%%%g%%y%6%%%>%%%%5%6%%%!%%{%3%%m%	% %L%%%m%%%%%%%%% %%a%%%%%%k%c%%3%%%% %%|%$%%%?%Y%%o%%Z%%c%%c%%%7%g%(%3%%q%%c%%q%%%~%%%%~%	%%2%%%%%`%%%j%M%6%%%%%%%%r%%%r%%%%z%%q%%%%,%1%%%?%%%%%y%%W%%%E%%%%%f% %%?%z%&%#%%%%S%W%%%%c%%%=%%%%%%%%U%*%U%e%e%%%j%%%?%8%b%%V%%Z%%%%q%%%%|%"%%%%%t%%%%p%%%%%%%,%|%G%R%r%%%%%%R%%%%%0%%F%%_%6%%%%W%%%p%%%%%%n%%|%o%a%]%b%k%Q%S%%%f%%%:%%E%%q%%H%|%_%%%%%%%%%%%%%%/%%%>%%%m%%%[%%%%{%Q%%%%*%%,%8%f%a%{%%]%%%p%a%@%%%=%%%%f%y%%%%	%i%3%%%%#%%%%%w%%%>%1%%C%%t%O%%8%%%%%%%x%%%%%%%%F%%%0% %%%%%%%%Q%%^%|%,%%%%%%%%+%%#%%%%%*%%%%O%% %G% %C%%%)%%%)%
%%%%%%%%C%%8%.%D%>%!%%%%%/%v%u%%%%%%%%%%%s%%%%%%%%v%%z%%G%%%H%#%d% %p%%%"%%%y%'%%%%z%g%%%%|%>%%% %^%%`%c%V%%U%%%C%y%?%%%l%|%+%%N%%%%%<%%%%%4%%~%%%%%%:%%%v%%%%%%%?%-%N%%'%%V%b%-%C%n%%%%V%%%%%%_%%*%.%P%%%%%%Z%W%v%%%%%%%(%O%%%%%%%%%%=%%%A%^%%%%%I%%j%% %%%%%%%c%%%%}%%%%%%-%%W%%%.%Q%o%%%~%t%v%Z%V%4%%%%%%a%%%"%%%%%s%%6%%%%%%_%%Q%%%%Z%%%%%%%%O%%%c%%%%%6%\%%%j%%%%%%%%% %%%%%I%%%%%%%,%_%%:%z%%w%%%%	%% %8%d%%%%#%=%]%}%<%9%%%%%%%%%%^%"%%_%m%a%@%%[%%%%%%K%;%w%N%% %%%%W%N%o%%%\%%(%%%%%%+%%>%%%X%%b%%`%|%%% %N%%%%+%% %%%%%V%% % %%%%%%%%%% %%v%%%1%%f%%=%%	%D%B%%%%%s%%%%%%*%%%%%%%q%%~%%%S%!%%%%%%%%%x%`%%%%g%%%]%"%%=%%%z%%%% %d%%_%[%%%%+%A%%E%%%%w%6%%%%%%%%m%%%%%E%%_%%]%%%J% % %%q%o%%%]%-%B%9%t%%%%%%K%z%E%,%g%8%%%%k%%&%>%%%%x%%%%W%:%%%4%%%#%%%%I%o%%1%%%%Q%%>%>%%%{%l%%%%%%%%%%{%^%%%+%Z%=%%%Q%2%%%/%%`%%%%%%S%%G%%%%%3%%"%V%%%%%x%%V%% %%%=%?%%%%%%%1%Q% %%%G%%%%<%#%%L%%%%y%%%%%%%%m%%%%J%%%%%@%%%%%%%%% %%%%%h%%_%%l%D%%%%%%%%%%%%]% %%%%%%%%F%%%%%\%%%%%% % %%V%%j%%%%%^%%W%+%%i%:%%%V%%~%%i%i%i%%%%a%%R%%%w%%a%n%%~%%%%%%%!%-%%%%%% %%z%%e%y%%%%%%s%;%%S%%%%4%%%c%]%%L%%1%%%%%%%w%W%%%7%%%%&%d%%%V%H%%%%%%.%%7%% % %%}%%%%%~%%x%F%=%%%%%%%r%%w%%%%%%%%Q%%%}%%]%~%%%
%%% %O%%%%%8%%%W%%%%%%0%%%n%%%t%~%{%%%%%y%
%%w%w%%%V%%%%%%%%%i%%c%%%%%%%%P%j%%X%t%E%8%=%%}%%%%%K%%%e%K%d%P%*%%%%%%%%1%%B%s%%%%E%<%%%%~%%%%[%%	%%}%?%%%%O%h%N%%$%%%%%%%%%h%%%7%4%%%g%	%%%%=%%%d%o%%T%%%9%[%%%%O%O%%%%%%w%%%m%%%7%L%%j%%%i%<%|%%x%%%A%%%%%%% %{%%%h%%%K%e%%a%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%
%%A%%%%4%%%%%%%%%p%%O%|%%%%%%%5%%I%%:%%7%%%%<%%%d%%g%%Y%U%%%%%K%_%x%%%(%%w%+%%5%%%%&%%%%'%%.%[%%%%:%%u%%%i%%9%%%%%%n%m%%%%%%%%%%%%~%%$%%%%*%%%%%.%%%%%^%%:%#%%%%%[%%m%%%%7%%%%%%w%%%%L% %%#%%%`%f%%%%%R%%(%%%u%%I%%%%%%%%%o%%\%%!%]%%I%%M%%%-%%%%t%<%%+%%%r%%T%%
%%%#%;%3%[%%%%%%%%%%*%m%i%
%%o%%%M%_%%%%%%% % %%d%1%/%%j%%%&%%u%%%%S%l%%:%2%0%3%%%%%%%%%%%%%%%%%%%%%%T%%T%%I%O%%
%%,%%m%/%%%%Y%%%%j%K%#%2%V%%%%y%%%v%i%%%)%y%%%%e%L%%%%i%8%%%`%%%%%|%M%A%F%d%%%%N%%%]%Q%%\%%%%Y%
%3%w%~%%%%d%~%%%%i%5%)%s%%%1%6%C%%r%%E%%i%%R%.%% %%%)%/%\%%%%K%%%/%<%_%%U%%=%%%%%%%%%%T%}%%%%[%U%%h%%<%;%%%%t%%%-%%9%w%%6%%%%%O%%o%%%.%V%K%%%%%%%%H%%%%g%%%M%{%U%%&%r%\%(% % %h%%:%%p%%%%%+%%%%x%%%k%*%%f%%I%%-%g%'%6%%%%%O%%%%j%%'%1%%%H%]%%a%%%k%9%%1%N%%<%k%%v%%%%X%y%%P%L%)%%R%0%%%%%%%%%%P%%%%% %%%%%M%\%l%2%T%}%%d%%f%A%l%2%T%%%%%-%K%b%%%B%-%%%%:%%%%+%%%%d%A%%%@%#%%!%L%*%%4%%Q%%%%#%L%%%%2% %<%%%%
%%% %k%l%%%8%9%Z%%%%P%%%]%b%
%
%r%%%%*%+%+%%%%%% %{%C%h%%p%%%%#%e%U%U%U%t%E%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%%%%%Q%h%%Z%%%#%\%r%%%%%.%M%q%%f%8%%G%%%}%B%%R%%%%%c%%%%%%%{%%O%h%%%0%L%%%h%L%C%%$% %%%%e%%f%%g%%f%%%i%%6%%'%%%E%7%%@%%%%g% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example6.png__ __5178__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%.%%%%_% % %	%%I%D%A%T%x%%%%}%P%%%%%%%%%%;%%&%%%%%%C%%h%%-%W%1%%%%M%%b%%%%%%%&%%%%2%%%%%%1%F%%%6%H%4%%)%%%%(%%/%e%4%%%s%p%%%5%"%5%D%+%=%%=%%%(%8%%%b%4%n%%%%<%`%9%%9%%%%%>%%0%%%%%%%%%%>%%w%%%%%%%%%%%7%e% %0%y%j%%%+%A%%C%V%V%% %%%%o%%y%%%%%%%q%t%%h%%%Y%%%l%i%%m%%B%%!%%a%L%%%%4%!%%%%B%%c%%6%-%2%%2%%a%9%M%%%%%-%%%%>%%%Y%%a%%%%9%E%%%%%%%%%%e%%%%]%%_%%G%T%w%%%%%l%E%h%X%%%%%%?%y%*%#%%%%3%%n%%%'%Q%A%#%%%%%%_%Y%%V%k%%Z%%%_%}%%%%[%%[%Y%%%%%%w%%c%%/%%%%%V%%%%%%7%D%%%|%G%R%r%%%%%%%%L%l%h%%!%%%%%\%W%%%%X%<%%%O%%n%%%~%%%%I%-%j%%%%E%R%%%%%%%%%%%% %%A%%%{%n%]%%%%%%%%C%%N%%u%%%%o%%%z%4%%%]%%%%%z%%^%%%p%q%@%%%}%%%%!%%t%4%x%|%%,%%%%%%%%%w%%s%>%1%s%C%:%%O%%:%%%%F%n%%x%%p%s%%%z%%%%%0% %%%%%%d%%%%.%=%%_%"%%%%{%%D%}%l%z%%"%%%%C%%i%%%%2%%%%%%%%%%%I%%X%%%a%%%v%R%%;%q%;%Y%%%%!%%%%%%%%[%%%%=%%#%%%%~%%N%%@%+%%G%(% %%F%%e%%)%%N%%%U%t%/%j%)%%%l%n%% %%%%%%%%%-%G%%~%q%U%%%F%%%=%>%u%%E%%%%%i%%i%%%%%%9%%%f%%%%%%Z%?%+%N%8% %%V%d%+%s%n%%%%6%%%%%%_%%:%.%P%%%%%%Z%[%v%%%%%%%%O%%%%%%%%F%%=%%%A%^%%}%C%%%%% % % %%*%6%\% %B%N%D%%%%%%0%%%%%I%\%%%R%%%%%%%h%h%)%%3%%%v%%I%%%%%%-%%O%c%%%%%%V%%%%Y%%%'%%%%%%C%%%%%%v%%%%%%%%~%%%%%% %%%%%)%%%%%%%%%%:%v%%%%G%%I%S% %8%d%%%%%=%]%}%<%%x% %%B%%%%%%^%%%_%M%a%@%%%%[%%%%%%w%% % %%%%%%n%7%%^%%(%%%%%%%%%%%X%%b%y%c%|%%% %%%%%5%%%%%%V%%% %%%%%%%%%`%B%%%%%%1%%f%%<%%%%B%%%%%%[%_%%%n%%=%%"%%%%%P%7%%%%%%%`%_%W%o%o%%%%%x%%%I%%.%%%%%%z%%% % %%%%%%p%%% %C%Q%%<%%%M%%!%%*%7%7%|%%e%~%z%%%W%/%%%%%|%'% % %%%?%%%%f%~%:%t%%2%%%%1%%B%%%%1%%%%%%%%7%%%%_%%R%%%%%%%%%%%%v%%%%.%%%%%%%y%@%V%%%%^%%v%%%%%%%%%c%~%%% %0%|%Y%%%%%%%%%%%%?%%%%%X%]%%%%%%%=% %%\%%%%% %%%f%%D%%p%_%%%%%p%V%%%%%{%%%%%g%X%%H%%%%8%*%%%M%%%%{%w%n%_%<%%g% %x%b%%%%%~%a%%Q%%%.%2%/%&%~%%%%/%v% %%%%%%O%%%%%%%t%M%L%B%g%C%% %@%%v%%%c%-%%%P%%Q%i%%%%%%%i%%%i%i%%%%a%%V%%%%%`%~%%i%%%%4%%%>%-%%/%%%% %%~%%y%e%%'%%%M%K%%%R%%%%8%%%b%[%%%%b%l%%%[%%%%%%e%o%%%%m%%<%%%%%%%+%7%]%%f%% % %p%%%%%%%q%%9%%%%%%%^%%%%%%s%%%%D%%%%-%w%%%%+%,%?%%<%U%Z%%%%@%%G%e%%%:%)%g%%o%%%%%%%%%%%%@%%%%%;%;%*%z%%"%~%|%%P%%%F%%%%%%%%%i%e%&%%%p%z%N%%%Q%.%%W%%%%%%%%j%%%%%%%%%Q%%%z%]%%$%%%r%}%?%O%v%%%%%%%%%%%%%3%%%%%%c%8%% %8% %%%%%%%%%%%/%1%%%%V%%+%g%%y%%%%i%%%Y%%%%%%%%%2%%%%x%%%%S%%%%%g%%%%W%%%!%%%%P%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%6%d%%%%%I%%%%%%%"%#%'%%%W%%%%o%%8%%%-%%%%%%3%k%m%j%k%%n%%%%%3%%%%u%o%%%%%I%%%%%l%%V%%k%%h%;%%{%%U%N%%%%%%S%_%%%,%%%%'%%%%%%%%%%%%%%%%^%%U%%w%%%x%m%F%D%i%S%S%%^%_%%%1%n%%g%%>%U%q%%%	%%W%U%
%	%%l%%%d%%%%y%J%B%8%c%~%%)%%%%%%%-%W%%7%%%t%%%I%9%{%%%%%#%%%%%%%'%%%%%m%e%g%f%%%%9%%P%%\%%%%%H%U%%%]%%k%%5%%5%% %%Q%%%0%%%j%%%%%[%%Q%n%%%%c%H%C%%K%%e%%%%%%%t%%%r%B%%%%%Q%%r%%%%%%%%%%m%-%%%%Y%%%%%K%#%2%%%v%%y%%%w%%%%)%y%%%%'%D%%%%E%%+%8%H%%%3%%%.%%%L%]%6%%y%%2%%%%l%%%f%)%%^%%Q%%%S%%%% %%^%%2%O%I%%!%%%)%'%%%K%]%%X%9% %%"%L%u%%%=%/%x%j%%.%p%\%%v%v%g%X%% %O%%%%%k%%5%5%u%%%%%%%%%%%%d%h%%|%%8%/%	%%%%%%%%a%U%%%9%%E%\%%%%%%%8%h%J%%%%%2%]%%%P% % %%%%`%u%t%&%g%U%y%%%%%q%%%%9%a%%%%%/%%%%%%%c%%%z%%%#%e%U%%%%Q%%%%d%%%k%%M%Q%%#%%K%%%%%%%)%%%J%B%@%%%%%%%%%%%)%*% % %%%%%%%&%C%%'%%G%%%%&%C%%%+%%%%,%%%%[%i%%%3%%%	%%I%%%%%%:% %%%%%U%m%%%%Q%8%%*%%%R%%%%%%.%I%i%-%%%%%v%%%h%%%C%%%3%]%4%F%*%%%%%%%Z%%%%%%%U%%%	%+%9%V%V%Y%Y%%g%%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%%p%%%2%%2%%%%%%%_%%%%%G%h%%j%%%%p%%%%%s%V%e%%G%h%%%0%%%u%8%%A%%d% %%%%%%2%%p%B%f%%%%%%%0%%?%%-%%@%N%%%\% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example_tab.png__ __7138__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%{%T%T%%%%%%<%%%%%%%%&%%%%B%5%i%Z%0%P%p%k%c%%P%I%j%$%h%%%%F%%%(%=%I%%m%}%%% %%%5%%'%%j%%%%%%R%%%G%y%%%j%%c%%%B%%O%%E%%e%=%%i%c%%%%%%%%%%;%p%W%X%%}%%%3%w%%%%%r%?%%%%%{%%%%1%% %\%f%Y%f%%7%%)%S%c%%;%%%3%%%%%%-%o%|%%%%A%%%%$%T%%% %%y%x%%n%|%c%n%Q%%j%a%%1%%S%Y%~%%%i%%T%*%%c%%%%i%%.%%/%K%%%4%S%%%%%%%j%%%%=%%%R%%%k%H%D%%R%%%%%%%%%%%v%%%%%o%%%%%%=%3%%%%%%%4%%%6%%%%%%%?%u%%%%_%%)%%%%%%%%%Y%%%%%%%%_%%%%~%%E%.%e%%%4%%~%%%%
%{%T%%%%%%%%/%%^%%p%%%?%%%%{%%%%%R%%%%%0%%%%%`%%%%1%%#%%D%%%%%%%%%%X%%p%7%%%%z%%%%q%8%%%%%%%%%% %~%=%%%/%|%%%R%%%%!%%{%%%%y%%%%%\%%}%s%%%%%G%%%%%}%O%?%]%2%G%%%%%%%\%r%=%t%b%%%%%%%%%#%}%K%%%%%%%%%v%%%r%%`%h%%/%%%5%R%%%
%%%%%B%M%%z%%%%n%%M%^%%%%%%S%K%]%
%%%%_%%%n%% %%R%%%%%%%%%%Z%*%z%Z%\%%%8%%%+%%%w%i%%J%%*%E%i%G%0%%%{%|%F%%%|%n%%%%p%%%%%%%m%%%x%%%%?%%%%%4%%% %.%%k% %b%%O%%&%%w%%j%%%%7%%%%%%%%9%]%%%-%%%|%%|%b%%O%#%%%%%%%1%%%%.%%,%%.%%%%g%O%D%f%/%%%%%B%%%=%%;%%%J%%%%7%%%>%%8%%f%%%%0%]%J%%.%%% %`%%%%%%%%%%>%%%%=%%%%_%%%e%%#%%%%%%%%%O%%%% %%8%%%c%0%v%0%%%C%%1%%*%,%w%%%%%O%{%%%%%%-%%%E%K%%%3%%%a%%%x%%%%%9%g%%K%%p%%%%W%%%B%^%%%W%%%%Y%%%%%%%%%%% %%%%%=%"%{%%%;%@%N%.%%%b%%6%}%%%%%+%}%%M%P%%%%o%T%%%C%'%%%z%%(%%%%T%%%x%1%% %%%%~%N%%_%M%%:%%%%/%%%%%w%%% %%%%_%%%%%%%g%%j%%e%%{%%%%%Y%{%%%P%%%S%%%% %'%%%W%% %\%%U%n%%% %%%<%%z%%O%v%%%%%G% %%%6%3%}%^%%d%%H%%V%%%%/%%%%%f%%%%%%/%%|%|%%%%S%%#%}%%%%%%3%p%0%%%9%%E%%%%4%v%%%Z%%:%%%%%%%%+%%%%j%%%E%%%j%M%%%%%%E%%J%%%%%%%%g%%%%%% %@%]%a%%%%%%%a%%%W%=%%%%%"%\%%%%%v%k%z%%y%%%r%%%%>%?%%%@%q%%%7%%%%%%%{%%%;%B%%%3%z%%%%%%%%%%K%%%1%_%{%t%%%%%%%%%%4%%w%%%%m%%]%%m%[%%%;%%%9%%%%%t%/%%%%%%%%%%%%%?%%:%>%%%%9%%`%%%	%%?%h%%%%%F%%%%%%7%%%6%W%%%%%%%#%%%g%W%%w%%%`%%%1%%%%%%~%G%%X%/%o%?%U%j%a%%%%N% %/%_%%:%%%%;%G%%v%%%%O%7%%%%@%K%%%%%%%%%%i%%i%%M%i%%%M%%,%%,%_%%'%%K%%%5%O%%%%%O%%l%%y%g%%%s%f%y%%[%%%%%%%%%X%%%%c%-%{%%N%/%%e%#%%O%%%%Y%%%%%%G%%%%%%2%%%%*%/%%%X%%%_%%1%2%%|%z%%K%%%% %%w%n%%%%8%%%A%%%%%%%%n%%n%%>%%%%%%?%w%}%%>%%%%c%%S%%'%%%%O%%
%%U%<%%%A%%[%|%'%]%%%t%%%%#%m%%M%%%%%k%%%r%%%%%%%7%%%%0%%%%{%%%%%%%%F%%3%7%%f%%%%%%%%r%$%%O%t%:%%[%%%%%-%.%I%s%%%%A%<%B%q%%%%%%Q%%H%C%%%%%%M%%S%%%%+%%O%%%%%>%\%w%i%F%%%q%%%%%%%%F%%%%C%B%%%%%%%%#%%>%%%%O%N%t%t%t%%%Z%%%R%%%i%+%@%%}%%%-%%%;%%%%\%%%%%%b%E%%%%%%%%=%C%1%Z%k%x%%v%%%&%l%%%3%t%%%9%%%%,%%%%%&%$%%%%L%%9%%%%@%%{%k%o%o%%%p%\%e%%%%%%q%!%!%~%C%V%%%%+%%%z%3%L%%%%%%%M%%%f%%%%%#%3%o%^%%%%%%%%%%%z%`%%D%%%#%%%%%%%{%%Z%%B%%%%%F%%{%O%N%%%%%%G%%%%%%x%%%%%%j%%&%%9%o%8%%_%%%%%%%%%%%r%~%%T%%%%%% %%%%%%%L%%r%%%%%I%%U%%%%%%{%%4%%%k%%%%%% %%/%%\%%%%%%%% %%=%%T%F%%%1%n%%%_%V%3%1%#%^%=%%3%%y%%%%%k%1%M%%3%`%E%%h%%%%W%%%D%%%Q%%=%%%%%%%E%o%%H%%T%%c%%%1%n%X%+%%)%%%%@%3%%h%%a%m%:%%%%%8%%% %%3%%s%%%k%S%H%%+%%`%%;%j%>%%%%%%%%%%%%%%}%%%%%%3%%Z%%,%1%%<%2%%_%>%U%X%%%%%%%%%%%%%c%%f%% %%%%8%%%%%%%%s%[%%F%J%% %%v%%&%%>%% %%%%U%	% %%a%%%%%X%%%o%%%s%U%%s%%#%%%^%l%%%%\%J%%i%%%% %%Y%S%v%v%%S%+%%%\%9%?%%%%%9%%%%J%;%f%<%%.%+%k%2%j%%%%%%<%Y%Y%%%%U%%u%%%%%%%b%%%%V%%%%%%%%%%Z%%%%%@%w%E%k%2%V%%%T%%%%%J%c%%%X%%/%8%b%%%%%%%g%s%+%;%%%Y%(% % %n%*%%%4%5%%+%#%6%/%%%l%_%%%T%I%J%A%I%%%%(%%%%%}%c%%1%X%z%	%%%%Y%F%J%u%a%%%v%%8%%%]%%%\%_%%3%#%[%%%%%%4% %W%%%I%{%%E%%% %%%	%%%%%%%-%%%%%+%%%,%Q%%%% %U%%I%R%&% %`%f%n%e%%%%%%%%%R%`%% %%%h%E%%%H%%~%E%%%%	%:%=%%%%%?%V%U%%%*%%%%%p%%*%5%i%{%%%`%%S%%%?%%%%%4%%%7%%%/%%%%%Z%4%%%%%%P%%%e%O%%%%%%%%%%%%%%2%I%%O% %%t%%i%,%%2%%%%Q%b%%%%%%%%%%%%y%3%-%%%%2%%%%%%[%%%G%6%G%%%%;%f%%%%%%k%%M%%d%k%%%P%% %c%'%N%A%%{%F%%%%%%s%%%%:%%%-%7%W%%n%%%%%%c%%%%%%%N%%)%%7%c%g%Y%%S%%% %%%?%%%%%%%0%%%m%/%O%%%V%%W%-%%M%%%G%N%%%%%W%%#%,%%%%S%%v%~%%%%S%c%p%%%%L%%%%%%%%s%8%%%%% %L%%%%%%%%% %<%%%%A%i%r%%%%%%G%%%%%%#%y%%%%g%%,%}%z%%% %%/%%%%9%%%&%!%%%%$%%%%%z% %`%%%/%%%&%I%% %%/%k%%i%r%X%%%%%%j%%%%[%%~%}%%f%u%g%%S%%%%%%p%%%%v%%A%%%%~%%%r%,%%]%%
%m%%,%%x%%n%%F%%%z%%%9%B%%%%[%%9%K%%%%%w%%W%T%T%%%%(%;%%-%%%%1%% %T%%,%Y%%%\%%~%R%j%%%%%*%n%%%%%%%%R%%%{%f%%%% %p%%%v%%%%%%%%%s%%o%%%%%%E%%%%%%%%%%y%G%x%%%F%%%%%%!%%%%o%%%%i%<%%%%!%%%%a%%%.%O%%%%/%%N%%>%%Y%f%%`%%%%%y%#%C%%%%%%%A%%%N%%u%%%%%}%%%%]%N%%%%u%L%'%%%^%%%@%%K%%%%%%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%%%%%%%E%Z%%%%%%%%%g%%%y%%%L%%[%%%%2%%Y%%%g%%.%%q%%%% %@%%&%%%%%%%%%%%%
%%z%%%.%!%B%%%%f%%%%%=%%%6%b%%H%c%%~%V%%c%%T%%%%%4%%^%%%%%%%5%%U%U%%I%%6%m%%%%%M%%%v%%%%%%%^%n%*%Z%%%6%O%n%%%%%+%%%^%%]%%%%g%%H%S%%%$%%j%%j%%%%8%%`%,%%%%6%%%&%n%%|%3%s%%%%% %%%x%%%I%%%%N%%%,%r%%s%%%Z%%t%6%%%%%3%%%%<%%a% %%%%%%%v%%%X%%%%%%c%	%:%%%s%&%%*%I%% %%%%g%%%%%%%%m%j%2%%%%o%%n%%0%%%&%%'%%%%%%g% %X%%%%%%N%%%V%%%%4%!%% %P%e%4%%%n%%F%J%%%%%%%M%o%%+%%%%%q%%%>%=%%%\%%%%%%8%%%Y%%T%%N%%%"%q%%^%^%w%+%,%"%%*%%%i%1%*%~%w%o%d%%#%I%%Q%%c%%K%%%%%%%K%:%%4%%%z%<%%"%%%x%%%%F%%%%%F%%%%%-%%%%%#%a%%%%%%%%P%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%H%%B%%%%%%%!%%!%i%%a%%%%Q%%%a%%%%%B%x%
%%%%%t%%%%%A%t%%F%~%%%A%%%%i%%a%%%%%%%v%%%'%%f%%%1%%1%%%%%%%%%%%v%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/basics_example_vbox.png__ __5236__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %u%%% % % %{%%%% % % %%t%I%M%E%%%%%
%"%.%%%%_% % %	%%I%D%A%T%x%%%%}%P%%g%%%%%%%%%y%%-%1%Z%%b%9%%Z%%%9%%%%%%%%%%%G%%%2%%z%%%%[%K%O%*%%%%%%r%%%%%'%%% %%%%=%%b%%%%%%%%z%r%%%%%C%%i%%'%V%%%%%%%,%%'%%0%%%g%%f%7%%O%%I%%e%%%&%%%4%6%%%B%V%{%3%%m%% %L%%%=%%=%A%%!%+%+%% %d%%%%%:%=%%%A%%%%%% %%#%%%%d%i%%m%%B%%!%%a%%%%%4%!%%%%B%%c%%6%.%2%%2%%!%%&%L%%%%-%%%%%%%%A%%%%E%%E%%%%q%%%}%%%%%i%%%%%%>%%%;%O%v%%`%{%%%%H%h%%%%%g%2%%o%o%>%s%%%%{%v%%%%-%%%%%+%%%%%%J%%%_%%%%%[%%[%	%Q%%%%%;%%%%%S%%%u%+%`%%%%%7%D%%%%%I%%%2%%%%L%+%%k%C%C%%%%p%%%%R%_%%%%I%^%%l%r%%%%%%m%%%E%M%S%%%%%%%%
%%%L%%%B%\%%% %l%%=%%n%%%`%x%q%%%!%}%%p%%%<%%%%%%%%V%.%Z%t%%%%>%%j%U%%%%%%%~%%w%%%%%%%%&%%%%-%%%%%w%%%>%1%s%C%:%%O%%:%%%%F%n%%x%%p%s%%%z%%%%%0% %%%%%%%%Q%%]%z%"%%%%%%%%'%%#%%%%%% %%%/%s%?%{% %S%%%i%%%i%J%%%5%%%%C%C%%&%%%%%N%%N%%%%{%%%v%%{%%=%%%%z%q%%%%%y%%_%%%-%%
%%%
% %%%r%%`%%%%%c%%=%%Z%%w%?%%%% %%~%%9%%%,%t%%%%%]%U%5%%%%g%%O%%|%%%%%|%%k%\%v%%%k%k%N%E%%%%q%%%%%O%%%%%%%%%%%%%%M%%C%%%%%%%%T%%%%%%%%%%%%k%%2%%S%%%%%%%%%%o%%%b%%W%%e%h%b%%:%%% %%T%%%%@%%%%%%%B%%&%t%%%5%%%4%[%*%v%%%%%%%%%%{%%|%%a%<%%1%%%%%%%i%,%\%;%%%7%j%%%1%%%%4%%2%q%%t%h%;%q%@%%%.%%Y%%%%%%'%>%7%`%% %H%%p%0%v%%s%?%%%%q%+%7%%%%%<%%%m%%%%%%%%%h%O%W%%O%%% %%%/%?%f%~%%%%%W%[%%%%V%%%%a%%%%%3% %@%%n%%%%%%%%$%%%V%%%t%U%%%%%%C%%7%%%% %p%%%%_%% %%%%m%%:% % %%]%%%%%o%%&%%Y%%$% %:%%%%%%3%%H%h%%%:%w%a%%%%;%%%%%%%%[%%%'%^%>%%%%%%%%%M%%%%%%%2%%%%%%%S%%^%/%w%%%@%1%%%%%%%%%/%%%G%%%%'%%_%%%%%%%O%%_%%%%%E%%%	% % %4%%%%%%%%%]%%L%%.%%%G%%%g%%%%%5%%%%x%%l%<%w%~%%+%%%%%%%c%?%+%|%%%e%%%%|%%%%%s%%%Y%}%%k%z%I%%%%%%%%%6%%%y%%%@%%E%%L%0%%%%x%J%%%9%~%%%%%%%%%%%%Z%% %%\%%%%% %%%f%%D%%p%%%%%%%%%s%m%%>%%'%%%3%%?%v%%
%%%J%V%%%%%%%;%%/%%%% %<%5%%w%%D%%0%%%@%%%%%%%%%%%;%%`%%%%%'%%%v%w%3%;%]%%%%%% % %%Z%%f%%%%%^%%%%4%i%%%M%%%%%%%%%%%0%]%%%%%%0%?%%8%[%~%d%%Y%%%%%%%G%% %\%?%%%2%%%%%%%%%%%o%%%%%%-%U%%%%%%%B%%%%W%%%%% %%%%%%%%%;%r%%%%%%% % %%%^%%%%%%%%%%%%q%%%%%]%%%%%%$%%%=%o%%%%>%[%!%%%%T%i%%%%%T%%%%%:%)%7%%%%%8%4%%%%-%o%%~%%%%%%w%v%T%%>%D%%%%%}%:%&%Q%}%%%%%%%%%%%3%%%9%m%%G%%4%]%%n%0%[%B%%R%%%v%]%%0%%%%
%%%%"%'%%%%%%<%%%%%H%h%%%1%%%f%%9%S%%8%R%%p%%% %%%c%8%%%%e%	%H%%Z%%%%%%4%%%%%%%%%^%,%%j%%%i%<%|%%T%=%%%%%%%*%C%C%	%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%N%%%%%%%%%n%%%/%2%p%%%q%5%%I%%%%3%M%%%-%%&%;%<%%%%%%%%C%% %%%%%u%6%7%w%%%%%%%'%%%%%4%%%%%q%5%%%%<%%{%%H%$%%%%%y%J%B%8%C%~%%q%%%/%J%%?%%z%%x%S%%V%%%%%%%%H%.%0%p%%%(%%%E%%%%%%%i%e%g%f%%;%%%%%%r%%%8%%\%%+%M%%%%5%%$%%%m%z%,%%%%%%%%k%%%%%X%%~%%J%%S%%/%=%%%%d%E%h%[%%%%%B%]%%N%W%%%%%x%\%%%%%S%%+%M%%+%%%%%Q%h%%m%%%7%%$%%%%%%%%%%A%%M%%%$%%%Y%%%%-%%%%*%V%% %%%S%]%%*%%%j%%I% %4%%X%%%%%%%%%%%B%%V%U%%%%%
% % %Z%%%%%%%Y%U%^%y%%%q%\%M%e%%%0%y%_%%I%%]%%4%%%M%%e%%%%%%N%%%!% %O%L%M%	%H%`%w%%%%%% % %%%E%h%%b%%%%%'%#%%%b%%%%%%%o%[%%%%%%4%r%%%%%%%%%%%%S%%%/%%%%%%%,%$%T%P%%[%U%U%%%%%%X%Y%U%U%%%%O%h%%`%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%%%%%c%e%%W%%!%$%d%%%%%%A%R%`%%%%%%%%%%%%%F%%%`%%%d%%%%%%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%N%%%%%%%q%%%%%%%_%%%%%<%4% %%Q%5%%%x%m%F%D%i%s%s%%N%%%%)%.%%%%%%H% %4%B%%%%!%%%j%~%g%% %%%%y%i%N%%%V%%%;%%	%%%%U%#%L%8%%% %#%2%u%%x%%>%%%&%%%%W%%%%%%%%%%%R%:%%%%%@%h%%%c%%%%%%%%%%.%%%%<%1% %%%%%j%%g%%O%%%%%$%%%%%%C%R%5%%t%A%%%@%%%%g%U%%%%i%%v%~%T%#%	%%F%%%`%%%4%%0%4%%%%%Q%%% %j%%%D%%C%%%a%h%%5%%%%%U%#%%5%%%%%a%%%4%0%%%%%`%%%d%%%%%%%C%%%a%h%%5%%%%%%A%%0%4%%%%%Q%%% %j%N%%%%%%% %u%%%%8%%%%%%%%%%%%\%]%f%%%U%#%J%!%%%M%8%%	%%F%%>%U%#%%r%%_%5%B%"%$%%%%%%a%(%%g%%8%(%%% %N%`%%%F%%5%%%%%%%%N%?%%%@%h%%%c%%%%y%%%5%r%&%%%%Q%%i%%%%Z%N%F%L%p%%%F%X%5%% %%[%5%%(%%%V%%%%%%%%#%%N%>%%%%%h% %X%5%%%%%%%%%A%%0%4%%%%%Q%%% %j%%%D%%C%%%a%%%D%%%F% %j%f%%%O%%#%%?%%% %j%2% %%%%%%n% %G%B%f%%%=%%}%@%%%%%%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_BorderLayout.png__ __778__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%#%+%W%q%W%A% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%%%%	%%0%%%%W%%%%%	%%%	%%U%\%%y%%*%(%%I%
%%%%%%%G%%%.%%2%3%C%]%%Z%c%^%?%%^%)%%%%%%,%%%F%%%x%%F%D%\%%F%%%.%%%%}%%1%%@%% %%%%%%%%%o%%%%%%e%%%%%{%g%%u%%%m%%%%%M%f%%%3%%(%%%%%%%%% %%
% %@%% %%% %@%% %%% %@%%%%% %@%%%%%% %%%%P% %%%%(%% %%%%@%% %%
% %@%% %%% %@%%%%_%%8%%%%#%%=%e%f%z%%%%R%%-%%%%%%e%%%%8%%%`%%~%f%%%%1% %%%%@%%f%%?%%%%e%'%`%%%%@%w%%%=%%]%]%6%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_BoxPanel.png__ __1018__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%s%e%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%
%4%%;%L%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%s%I%D%A%T%x%%%%%m%% %%%%b%%D%z%%1%k%<%%@%%%%%k%t%%.%%X%%%%A%%T%%a%%X%M%%%%%%%$%%~%z%%%%%Q%!%%%i%%%^%%%I%%%9%%%%%%c%%%N%S%%j%%~%%%Q%]%%%%%%%%Y%%1%%%%%"%%%%9%m%%m%8%K%:%-%%Q%%%%
%%R%*%%%1%%9%%%%%%%I%%t%P%%?%%%%%%,%%r%%%%%%%k%%%%%%%%%%%e%x%%%%%F%8%%6%-%%%%p%5%%%h%%%%%'%?%%N%%s%%M%5%%;%S%%%4%%N%%%%%;%(%]%%%u%%j%%c%%%%%%%%%o%#%%Z%Z%[%%%%%j%%%#%%%%`%%I%"%%]%%{%%%k%m%e%%%%%%h%_%%%]%%p%G%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%w%%%%%%%%F%%%%%&%%v%%%%%%%%c%D%$%m%%%%%%S%,%Z%%d%r%%_%%Q%%%%%C%B% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_CardPanel.png__ __842__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%s%e%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%+%%%.%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%%I%D%A%T%x%%%%%%%0%%@%%%%%%,%b%O%%L%a%%%%%%%%%6%`%%S%%.%G%%%%A%%W%C%(%%%%%%%c%k%m%%3%%V%%_%%%K%)%%%%"%5%%<%_%%%%%M%J%i%^%%%%%%%%%k%Q%%%%=%M%h%%%%%%a%%6%%%%%r%)%e%%%%%%%A%~%%%%l%7%%%%%%%%%%l%7%%D%+%r%%]%%y%%?%%/%%%%r%%%%*%%)%%D%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%p%%%%%%%%O%p%%Q%j%%%%R%,%p%g%%8%%%%v%%%%%u%o%%y%p%'%%>%%[%%%%%%*%%%%e%%l%%%%%8%%%5%w%%%% %G%%I%%5%%J%^%%%%%S%%%%%@% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_Grid.png__ __850__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%3%1%%%_%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%%I%D%A%T%x%%%%%q%%0%%%%%%C%%%%
%R%l%*%%Z%q%#%%C%%%$%7%$%%1%%%%/%%%%/%x%%%%%%%%Z%k%%%%%?%%%%%%%m%%%'%%%%f%%%x%%F%D%|%%}%%$%%%-%z%%%5%%%%%B%%%@%% %%%%% %%%%% %%%%?%%%%%%%%%%j%%G%%%5%%%%%%%%|%%%%%k%%l%G%%%5%%H%;%%%%(% %%%%(% %%%%%P% %%%8%g%.%%S%%%k%Z%2%3%%%o%K%)%E%	%%+%a%7%%%%%%R%%1%%%%1% %%%%% %%%%% %%%%% %%%%% %%%%% %%%%%%%:%r%%%%%%%|%%w%&%%%&%%%%.%%@%%%%%%6%q%%%x%%%%%%%%c%%%W%%%%:%%%%F%%%%%j%C%%%7%@% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_GridFlex.png__ __1314__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%&%%%+%%w% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%%I%D%A%T%x%%%%[%n%% %%E%%%m%%k%%%%%6%%0%[%i%%B%?%*%T%%%	%%0%%%%(%%%9%%%x%%%%%%%%%%%%^%%%%%%%%%%0%%%7%%i%%%%%%%%%%%?%%n%%e%>%%%%%V%M%%%%%1%O% %% % %%%@%%@% %%%%%% %%`%o%z%%%%%%%%m%%%`%%o%%*%%=%C%%%!%|%%%%%}%%l%F%%%>%%%f%%%`%% %%r%K%%v%%%%^%x%%%%%%0%%%%'%%%%h%K%%%n%"%%%%%F%a%%%%D%%M%%%7%%%%%%>%#%%%%%%%K%%-%%%%?%s%%!%%;%%%%%%s%N%%s%%%%%x%w%%%4%%C%C%x%%%%R%%%c%T%%%%9%0%@%%%%v%m%%A%i%%%d%"%k%%r%%i%%X%%%%%%Z% %%Z%_%%%%%%%=%%%%D%Q%i%%%K%%%%%&%%J%%%u%F%%%'%%R%%X%%%%%%%b%P%7%E%%%%%%@%S%L%%%%R%5%%^%[%%j%z%%%6%%n%=%%j%I%D%T%5%%%%%%%8%%]%8%%%-%%f%[%%%%%%%%m%%#%Z%%%,%%%%@% %%%%%% %% %% % %%%@%%@% %%%%%% %%`%%*%Z%T%j%%%%%%%%%%3%%%%%%%%%%%%%%%%%@%%&%r%%%%%%'%%%%%%A%%%[%%\%%%%%%/%g%%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_HBox.png__ __610__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%s%e%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%0%%%%%c% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%%%%%%0%%%@%+%%%%E%%d%%L% %%%E%%B%@%%>%%\%%%%X%=%n%%o%%y%%I%D%%%%%%9%%%%1%6%%%U%%?%%+%%=%%%v%%X%%8%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%|%%Z%~%%T%%e%%i%%%Z%%C%%%V%y%%%%%"%#%I%(%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_HBoxFlex.png__ __944__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%$%%%x%$%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%/%I%D%A%T%x%%%%%m%%@%%@%%%h%%H%j%q%%I%%%%%%P%%%%%%%$%%9%0%(%%%%%a%%4%%A%2%n%c%%%%U%f%F%%_%%%%%%/%%%%i%%J%n%%%%%%%%%Q%f%%o%%%%%a%o%O%%%%%% %@%% %%% %@%%%%% %@%%%%%% %%%%P% %%%%(%% %%%%%%%%%%%%%U%%%%Z%%%%%%k%%8%%%k%@%?%%Z%+%5%%%*%%r%
%%%Y%i%%{%E%%[%'%%%%%%%O%%!%N%1%%%%%k%%%Y%%%%!%\%b%%g%%5%V%f%F%f%n%%%%\%%%%%[%%[%%%s%%%%%w%k% %W%P%{%% %%-%%P% %%%%(%% %%%%@%% %%
% %@%% %%% %@%%%%% %@%%%%%%%]%%#%%~%z%x%%%%%%8%?%%%b%%%%3%%%%%%	%%D%m%%F%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_HButtonBox.png__ __718__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%/%(%0%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%%%%%% %%@%%s%%%%%	%2%l%&%8%V%%"%%%%%%%N%\%%%_%Y%.%@%z%%%
%%%%%%%%%%%%/%3%%%%% %%%%%% %%%%P% %%%%(%% %%%%@%% %%
% %@%% %%% %@%%%%%%|%%%%%%K%&%%%)%%%%%%x%%%%%?%%%T%%[%%%@%% %%% %@%%n%"%%%%W%%L%%e%%%%%%c%%%W%;%K%%%%% %@%%%%%% %%%%P% %%%%(%% %%%%@%% %%
% %@%% %%% %%%j%c%%%7%`%%%7%%%+%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_Panel.png__ __856__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%s%e%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%
%%#%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%"%I%D%A%T%x%%%%%%%0%%%a%@%%%%%%t%%%v%%%%*%]%$%=%%%%%%%%5%%%%%%%%a%%s%	%m%%%%&%%%n%8%U%%6%%%%%%%%%m%%%%%%c%%I%v%%%`%`%G%^%%%%%%%V%%Y%%%%%g%%g%%%%8%%x%%%O%%%V%%D%%%%%%%}%?%%W%'%s%%:%%%%%%%(%7%%p%%%%%S%h%%f%&%"%%%%%3%M%%%G%%_%%%%Z%]%%%%:%V%%T%%.%%O%%%%%J%I%?%%%%%%%%^%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%%%X%%{%%%%W%2%%%%W%l%%{%%%%%`%U%%%%Q%%%%W%%h%U%R%%1%^%%%r%x%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_TabPanel.png__ __840__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%s%e%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%!%*%%D%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%%I%D%A%T%x%%%%%	%%0%%%%(%%@%<%%5%<%%L%%%3%%G%\%H%%%%x%% %.%`%%%%A%J%%%%%%%;%%!%|%<%%/%%%%%%E%H%%%%%%v%r%%4%B%%,%%%%%%q%%%%%%1%%%%%%4%m%%%(%%%%%s%y%%%	%%7%k%%%e%%%%%%U%U%9%%v%%%%=%b%b%%X% %%%%$%I%%%%%i%
%g%%%%N%.%#%%%Z%%%/%%%%%Q%J%%%9%%M%K%%{%%>%%%'%%%%2%]%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%%0%`%%%%%%%&%/%%%>%%%%%%%%%P%%%%Z%)%%V%%%%%%i%%%%o%%s%%p%%B%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_VBox.png__ __686__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%0%9%%%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%%%%%%!%%%%%%%%%*%%X%+%%V%l%%%g%%G%$%%%%%"%%3%@%t%%%{%%%%Z%k%9%%%%W%k%%%&%I%)%%% %^%%%`%%\%%%%%%%%v%>%%%% %@%% %%
% %@%% %%% %@%%%%% %@%%%%%% %%%%P% %%%%(%% %%%%[%/%#%%%%%%%\%%%%	%%%%Z%s%%%%%D%%%%% %%
% %@%% %%% %@%% %%% %@%%%%% %@%%%%%% %%%%P% %%%%(%%%%%%% %%9%%%l%%%%%%w%%!%S%%%G%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_VBoxFlex.png__ __980__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%%M%%d%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %%A%I%D%A%T%x%%%%%m%%@%%E%%?%%m%8%%%%S%l%% %%%%B%%%	%B%%%q%$%?%G%%%%W%%#%%%%L%%%i%*%%j%%%:%%%%%a%%>%%%%%%'%r%#%^%U%}%%V%U%%M%%d%~%%k%{%%z%%p%%%@%% %%%%@%% %%
% %@%% %%% %@%%%%% %@%%%%%% %%%%%S%%%T%G%%{%%Z%k%%Z%%F%%%%%%%%t%%t%%%%%%%%I%%9%%%%g%%g%%%o%%%%%.%%%>%%%%%k%o%f%%%|%h%:%%%%%H%%%%%v%%a%%%N%[%_%%5%%%)%;%%&%%%%%%%%%%%K%%%I%%%%\%o%c%~%z%%%%1%q%C%d%%1%%/%v%
%%%S%%%%%[%%%x%%%%p%6%% %%%%@%% %%%%@%% %%
% %@%% %%% %@%%%%% %@%%%%%%%{%%%% %%%9%%%%%%%%>% %%X%d%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bigicon_VButtonBox.png__ __654__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %P% % % %P%%% % % %%s%e%% % % %%s%R%G%B% %%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%y%%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%x%%%%%	%%0%%%P%%x%%%%	%:%l%'%%V%%"%%%%%5%8%%%K%N%6%<%%X%?%%%#%%I%U%%%g%%p%f%>%b%% %%%%%%%%%%%%%%%%%%>%m%%%%%%o%%%;%%#%%5%%_%%}%%%%%%%%%%%i%%%<%%%%%%%i%%A%y%%,%%%%%%%+%%%%%V%%%%#%%%%%%%l%%R%%%4%0%0%0%0%0%0%0%0%0%0%0%0%0%0%0%0%%%%%j%%%O%3%r%%%%%%)%	%%%%n% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/bookicon.gif__ __342__ -->
%G%I%F%8%9%a%% %% %% % % % % %%%%%%%d%c%d%%%%%%%%%%%% %%f% %%8% %%3% %z%)% %%%%%%%%%% % % %!%%%% % %% %,% % % % %% %% % %%X%%%%%%%%%%%%v%%%%%G%2%%%V%%%%%%
%%%"%%%7%%<%%O%% %,%%%%@%%(%.%%%$%n%I%%<%%%%%%%%w%%%%%%x%M%%E%%1%&%%%%%%%%%-%%x%]%%% %;
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/demoBrowser1.png__ __533316__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % % %%%% % % %p%H%%P% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%:%R%S%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % % % %I%D%A%T%x%% %%%2%%%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % %6%T%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%5% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %%%% %% % % % %% % %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %.%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % %%%!% %k%*%% %|%%% % % % % %%%5% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %t%s%q% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %7%"%% %f%I%% %%
%% % % % % % % % % % % %% %a%f%J% %y%l%J% %j%M%%% % % % % % % % % % % % % % %,%2% %%%d% %w%%{% %w%M%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%j% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%'%,% %%'%+% %;%%% %%%% %F%%% %%%% % % % % %{%%q% %%%%% %b%%% % % %% %6%D%9% %D%*%% %%%% %%% % % % % % % % % % % % % % %<%J%=% %;% %% %%%% %%%$% %%%% %%%%% %%%% %%%% %m%U%#% %%%% %% % % % %%% %e%f%D% %%%% %%%"% %%%% %
%%% %%%'% %,%%% %%%% %)%A%+% %%%% %R%:%% %%%% %&% %% %
%*%/% % %%% %%%% %%)%1% %8%%
% %%%% %%%% %%%% %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %5%4%2% %a%d%j% % % % % %j%h%d% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%9%C% %5%%% %2%e%t% %!%%% %%%%% % %%% %P%%% % % % % % % % % %5%0%% %%%% %r%l%J% %j%M%%% %%%% % % %% %h%{%[% %G%% % % % % % % % % % %%*%2% %%r%5% % %%% %%%H% %3%@%6% %y%S%.% %%%% %~%%N% %I%>%4% %K%%% %% % % % % % % % %%% %%%% %%{%D% %1%=%4% %t%Q%,% %%8%9% %%M%% %%%% %%~%A% %%%6%8% %`%P%,% %h%U%.% %U%U%B% %.%<%+% %%Z%'% %%%% %%
%&% %%h%/% %%%% %%s%?% %0%:%1% %o%L%*% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % % % % % % % % %5%4%2% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%%% %2%%% %"%%% %%%% %%%% %*%%	% % % % % %%%% %D%4%% %%% % %j%M%%% %%%n% %%%% %%% % % % % % % % % % % % % % % %
%% %% %% %%%% %%S%% % % % % %%%% %%%% %%%% %%v%5% %%%% % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % %%%% %R%E%% %%%% %[%/%% %%%% %a%%% %7%P%K% %o%N%% %% %% %%%% %,%d%% % % % % %%%% %%y%%%l% % % % %I%D%A%T%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %j%h%d% %j%h%d% %a%d%j% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%
%% %%q%% %%% % %D%%% %%%% %%
%% % % % % %%s%% %b%g%D% %D%% % %%%% %%%% %L%7%-% %%%% %%%% %%%% %%%% % %%% %%%*% %\%j%G% %%%% %%%% %%%% % % % % %%%% %_%%% %%%% %%%% % %%% %%%% %>%,%
% %c%%% %%%(% %%%% %%%% %r%%>% %Y%,%
% %^%%% %%%% %%%% %%%% %%%% %%%% %K%%	% %%%% %%%% %%;%1% %W%_%@% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %6%T%% %%%% % % % % % % % % %|%a%% %%%% %%%% % % % % % % % % %
%$%j% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %4%@%6% %%%% %%%% %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %0%0%0% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %.%%% %%%% %% % % % % % % % % % % % %%%5% % % % % % % % % %%% % % % %% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%^% % % %^% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % %%% %x%r%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % %%%% %% % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %m%%%6% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% %% %% %(%C%V% %B%,%% % % % % % % % % % % % % % % % % % % % % %5%0%% %%%% %
%%% %%%% %%%% %%%% %%%% %&%%% %/%D%% %%% % %<%%% %%K%B% %% % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %!%%% %%%% %%%% %%% % %%%% %%%% %%%% %y%%i% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %C%4%% % % % % % %%% %%%% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % %%"%3% %%%% %	%
%,% % % % % %%%% %% % % %%%% %(%.%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %D%-%% %%%% %% % % %%%% %% % % % %%% %Y%`%d% %M%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %(%% % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %%4%(% % % % % %/%+%% %%% % % %%% %%+%'% %%%% %H%'%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%+%% %%% % % %%% %% % % % %%% %%%% %%%% %#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %>%X%O% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %L%X%O% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%5%%C% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % % % % % % % % % % %%&%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %5%J%[% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% % % % % % % % % %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% % % % % %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % % % % % %%%% %_%s%% %%%% %%%% %_%s%% %%%% %%%% %_%s%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %\%?%,% %D%N%T% %D%N%T% %\%?%,% % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%&%?% %%%% %%%% %/%9%?% %%%% % % % % %%%% %0%9%@% % % % % % % % % %%%% %0%9%@% %_%s%% %%%% %%%% %_%s%% % % % % %%%% %%%% %%%% %%%% % % % % %%%% %/%9%?% %%%% %%%% %0%9%@% % % % % %%%% %0%9%@% %/%9%?% %%%% % % % % %_%s%% %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %5%J%[% %%% % %%%% %/%9%?% % % % % %%%% % % % % % % % % %%%% %_%r%% % % % % %%%% % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %q%T%A% %%%% % % % % % % % % % % % % %%%% % % % % %0%:%@% %%%% % % % % %0%:%@% %%%% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %{%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %_%r%% % % % % % % % % %_%s%% %_%r%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % %0%9%@% %_%s%% %/%9%?% %0%9%@% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%9%?% %%%% %0%:%@% % % % % % % % % %_%s%% %_%r%% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%:%@% % % % % % % % % %0%:%@% % % % % % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%^%k% %{%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% %/%9%?% %0%:%@% %%%% %/%9%?% %/%9%?% %0%:%@% %%%% %/%9%?% %_%s%% %%%% %/%9%?% %/%9%?% %%%% %0%:%@% %_%s%% %%%% %_%r%% % % % % % % % % %/%9%?% % % % % %/%9%?% % % % % %%%% %_%s%% % % % % % % % % % % % % %/%9%?% % % % % %%%% %_%s%% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%:%@% % % % % % % % % %/%9%?% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% %0%:%@% % % % % %0%:%@% % % % % % % % % % % % % %/%9%?% %0%:%@% %%%% %0%9%@% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %%%1%;% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %0%:%@% %0%9%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %<%%%Z% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% % %3%%%%% % % % % % % % % % % % %J%5%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %J%5%$% % %n%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % %+%t%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%>%\%A% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %n%%Y%% % % % %I%D%A%T% % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%D%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%$%%\% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%4%%9% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %>%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%q%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %?%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % %%%o%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%=%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%r% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%2%-%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %p%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%r%6%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%H%v%;% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %d%%C%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%m%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%M%%z% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %e%o%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%Y%H%	% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%%U%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %F%%;%I% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%F% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %i%Y%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%%%% % %%}%I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%J%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %*%(%$% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%%w%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/demoBrowser2.png__ __533316__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % % %%%% % % %p%H%%P% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%#%%%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % % % %I%D%A%T%x%% %%%2%%%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % %6%T%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%5% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %%%% %% % % % %% % %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %.%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % %%%!% %k%*%% %|%%% % % % % %%%5% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %t%s%q% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %7%"%% %f%I%% %%
%% % % % % % % % % % % %% %a%f%J% %y%l%J% %j%M%%% % % % % % % % % % % % % % %,%2% %%%d% %w%%{% %w%M%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%j% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%'%,% %%'%+% %;%%% %%%% %F%%% %%%% % % % % %{%%q% %%%%% %b%%% % % %% %6%D%9% %D%*%% %%%% %%% % % % % % % % % % % % % % %<%J%=% %;% %% %%%% %%%$% %%%% %%%%% %%%% %%%% %m%U%#% %%%% %% % % % %%% %e%f%D% %%%% %%%"% %%%% %
%%% %%%'% %,%%% %%%% %)%A%+% %%%% %R%:%% %%%% %&% %% %
%*%/% % %%% %%%% %%)%1% %8%%
% %%%% %%%% %%%% %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %5%4%2% %a%d%j% % % % % %j%h%d% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%9%C% %5%%% %2%e%t% %!%%% %%%%% % %%% %P%%% % % % % % % % % %5%0%% %%%% %r%l%J% %j%M%%% %%%% % % %% %h%{%[% %G%% % % % % % % % % % %%*%2% %%r%5% % %%% %%%H% %3%@%6% %y%S%.% %%%% %~%%N% %I%>%4% %K%%% %% % % % % % % % %%% %%%% %%{%D% %1%=%4% %t%Q%,% %%8%9% %%M%% %%%% %%~%A% %%%6%8% %`%P%,% %h%U%.% %U%U%B% %.%<%+% %%Z%'% %%%% %%
%&% %%h%/% %%%% %%s%?% %0%:%1% %o%L%*% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % % % % % % % % %5%4%2% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%%% %2%%% %"%%% %%%% %%%% %*%%	% % % % % %%%% %D%4%% %%% % %j%M%%% %%%n% %%%% %%% % % % % % % % % % % % % % % %
%% %% %% %%%% %%S%% % % % % %%%% %%%% %%%% %%v%5% %%%% % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % %%%% %R%E%% %%%% %[%/%% %%%% %a%%% %7%P%K% %o%N%% %% %% %%%% %,%d%% % % % % %%%% %%y%%%l% % % % %I%D%A%T%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %j%h%d% %j%h%d% %a%d%j% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%
%% %%q%% %%% % %D%%% %%%% %%
%% % % % % %%s%% %b%g%D% %D%% % %%%% %%%% %L%7%-% %%%% %%%% %%%% %%%% % %%% %%%*% %\%j%G% %%%% %%%% %%%% % % % % %%%% %_%%% %%%% %%%% % %%% %%%% %>%,%
% %c%%% %%%(% %%%% %%%% %r%%>% %Y%,%
% %^%%% %%%% %%%% %%%% %%%% %%%% %K%%	% %%%% %%%% %%;%1% %W%_%@% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %6%T%% %%%% % % % % % % % % %|%a%% %%%% %%%% % % % % % % % % %
%$%j% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %4%@%6% %%%% %%%% %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %0%0%0% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %.%%% %%%% %% % % % % % % % % % % % %%%5% % % % % % % % % %%% % % % %% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%^% % % %^% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % %%% %x%r%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % %%%% %% % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %m%%%6% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% %% %% %(%C%V% %B%,%% % % % % % % % % % % % % % % % % % % % % %5%0%% %%%% %
%%% %%%% %%%% %%%% %%%% %&%%% %/%D%% %%% % %<%%% %%K%B% %% % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %!%%% %%%% %%%% %%% % %%%% %%%% %%%% %y%%i% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %C%4%% % % % % % %%% %%%% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % %%"%3% %%%% %	%
%,% % % % % %%%% %% % % %%%% %(%.%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %D%-%% %%%% %% % % %%%% %% % % % %%% %Y%`%d% %M%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %(%% % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %%4%(% % % % % %/%+%% %%% % % %%% %%+%'% %%%% %H%'%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%+%% %%% % % %%% %% % % % %%% %%%% %%%% %#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %>%X%O% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %L%X%O% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%5%%C% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % % % % % % % % % % %%&%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %5%J%[% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% % % % % % % % % %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% % % % % %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % % % % % %%%% %_%s%% %%%% %%%% %_%s%% %%%% %%%% %_%s%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %\%?%,% %D%N%T% %D%N%T% %\%?%,% % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%&%?% %%%% %%%% %/%9%?% %%%% % % % % %%%% %0%9%@% % % % % % % % % %%%% %0%9%@% %_%s%% %%%% %%%% %_%s%% % % % % %%%% %%%% %%%% %%%% % % % % %%%% %/%9%?% %%%% %%%% %0%9%@% % % % % %%%% %0%9%@% %/%9%?% %%%% % % % % %_%s%% %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %5%J%[% %%% % %%%% %/%9%?% % % % % %%%% % % % % % % % % %%%% %_%r%% % % % % %%%% % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %q%T%A% %%%% % % % % % % % % % % % % %%%% % % % % %0%:%@% %%%% % % % % %0%:%@% %%%% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %{%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %_%r%% % % % % % % % % %_%s%% %_%r%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % %0%9%@% %_%s%% %/%9%?% %0%9%@% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%9%?% %%%% %0%:%@% % % % % % % % % %_%s%% %_%r%% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%:%@% % % % % % % % % %0%:%@% % % % % % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%^%k% %{%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% %/%9%?% %0%:%@% %%%% %/%9%?% %/%9%?% %0%:%@% %%%% %/%9%?% %_%s%% %%%% %/%9%?% %/%9%?% %%%% %0%:%@% %_%s%% %%%% %_%r%% % % % % % % % % %/%9%?% % % % % %/%9%?% % % % % %%%% %_%s%% % % % % % % % % % % % % %/%9%?% % % % % %%%% %_%s%% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%:%@% % % % % % % % % %/%9%?% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% %0%:%@% % % % % %0%:%@% % % % % % % % % % % % % %/%9%?% %0%:%@% %%%% %0%9%@% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %%%1%;% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %0%:%@% %0%9%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %<%%%Z% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% % %3%%%%% % % % % % % % % % % % %J%5%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %J%5%$% % %n%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %e%d%b% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %e%V%/% %{%n%K% % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%'%,% %%%R% %%%Z% %$%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%(% %%^%(% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%^% %-%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %G%K%$% %%{%% %%%% %%%% %%%J% %% %% %%%% %%t%0% %% %% %%%% %%%% %J%C%"% %%%% %%%% %%%% %%%X% %%%% %%%% %L%/%% %%% % %%%% %%%% %h%n%S% %%%% %%%% %%%*% %%%% %t%x%0% %%%$% %'%%% %%%% %%%% %1%E%G% %]%%% %%%% %%%% %k%7%	% %%%% %%%% %F%%% %%%% %~%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % %%c%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % %%%% %%% % %%%% %%%% %6% % % %%%% %%%% %%%% % %%% %%%% %%%% %6% % % %%2%+% %%%% %%%% %%%% %%%&% %3%%% %%%% % % % % %%%% %5%5%% %%%% % % % % % % %% %	%% % % %%% %%%% %%%% %%%% %%%% %% % % %/%(%% %<%4%% %%%% %[%%% %N%:%$% %%% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %}%%R% %%%% %%%% %"%>%C% %b%%% %%% % %1%% % % % % % % % % % % % % % %P%M%B% %5%%% %%% % %0%%% % %#%"% %%%% %%&%-% %7%%% %% % % %M%'%% %%%% %=%3%!% %%%% %(%!%% %%%% %v%s%?% %% %% % % % % % % % % % % % % % % % % %-%%% %% %% %%
%% %%%% %w%z%J% %%%% %%%% %A%% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %i%{%% % % % % % % % % %d%s%% % % % % % % % % %v%% % % % %% % % % % %u%% % %%E% % %v%%% % % % % %w%% % % % %% % % % % % % % % %% % % % % %% % % % % % % % % %%%% % % % % % % % % % % % % %% % % % % % % % % % % % % % % %%%% %v%% % % % %% % % % % %% % % % % % % %i%% % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %{%n%K% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%}% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %v%x%|% % % % % % % % % % % % % % % % % % % % % % % % % %*%(%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%/%/% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %w%%% %%% % % % % % % % % % % % % % % %%% %%%% %%%2% %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %o%%% %%%% % %%% %i%u%% %G%S%;% %%%"% %8% %% % %;%8% % % % % %%%% %%y%y% %%%
% %Y%S%B% %%%% %G%c%m% %P%@%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %,%H%]% %P%@%"% % % % % %%%% % % % % % % % % %%%% %%% % %%%% %%%% %,%H%]% %P%@%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %q%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %A%R%% %%y%y% %p%g%i% %%%% % % % % % %%% %%%% %%%% % % % % % % % % %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%#%H% %%%H% % % % % % % % % %.%)% % % % % % %%%% % % % % % % % % %3%k%3% % % % % % %c%L% % % % % % % % % %.%)% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%}%k% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%\% %%%% %%%% %%%% %%%%f% %%%% %^%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%0% %%e%e% % % % % %%%% %
% % % %%%% %%$%% %l%k%e% %%%% %@%.%% %%H%]% %8% %% %%% % %3%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %	%%%]% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%/%?% % %%% %%%
% %%%% % % %% % % % % %
%%% %%%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % %@% % % % % % % % % % % % % % % % % %Q%u%% % % % % % % % % % % %3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%u% %y%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % %% %%%% % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%+%/% %%%% %%%% %%%%Y% %%%% %K%k%U% %%%% %
%%% %%% % %l%u%c% %% % % % %%% %%%% %%%% %% %% %%%P% % %%% %%%% %G%%% %%%% %%*%9% %%%%% %%% % %%%!% % % % % %%%% %%%% %#%%% %%%% %%%%Y% %%%% %%% % %%
%% %%6%3% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%&% %w%%% %H%.%% %%%% %%%% %%%% % % % % % % %% %%% % % %%% %l%u%c% %% % % % % % % % % % % % % % % %#%G%R% %o%G%% %%% % %%%% %?%F%P% %%%% %% % % %%%% %%%% %%u%l% %%% % % % % % %%&%.% %J%@%?% %%%% %%%% %%%% % %%% %l%u%c% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %n%%%+% % % % %I%D%A%T% % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %I%%% %q%%q% %%%Q% %% %% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%l%f% %%%% %?%*%9% %% % % %%%% %#%%% %y%%% %%% % % % % % % %%
% %%%% %A%%% %q%%q% %%%Q% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %%%% %%y%y% %%%
% %Y%S%B% %%%% %%%% %% %% %%%% %% % % % %%% %%%q% %%%Y% %4% %% %%%% %%%%Q% %%%% %%%% %%%% %Q%0%% %%%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %%%% %%% % %%%% %%%% % % % % %#%G%R% %o%G%% %%% % % % % % % %%% %l%u%% %%%% %%%% %%%% %%%% %,%8%M% %V%T%D% %J%@%?% %	% % % %%%% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%,%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%% %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % %%% %%%q% %%%5% %I%%% %q%%q% %%%Q% %
%%% %%%% %%%% %% % % %F%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %}%%% % % %% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %%%% %%y%y% %%%
% %Y%S%B% %%%% %%%% %% %% %%%% %% % % % %%% %%%q% %%%Y% %4% %% %%%% %%%%Q% %%%% %%%% %%%% %Q%0%% %%%% %%%% %%*%9% %u%U%F% % % %% %%%% %\%D% % %%%% %% %% % % %% %8%%% %%% % %3%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %%%% %%% % %%%% %%%% % % % % %#%G%R% %o%G%% %%% % % % % % % %%% %l%u%% %%%% %%%% %%%% %%%% %,%8%M% %V%T%D% %J%@%?% %	% % % %%%% %% % % %%%% % % % % % %%% %%%% % % %% %)%.%#% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%%:%%% % % % %I%D%A%T%% %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % %%% %%%q% %%%5% %I%%% %q%%q% %%%Q% %
%%% %%%% %%%% %% % % %F%*%9% %% % % %%%% % % % % % %%#% %%%% % % % % % % % % % % % % % % % % %%%% %(%#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % %>% % % %c%L% % % % % % % % % %.%)%;% % % % % % % %3% % % % % % % % % %[%s%y% % % % % % % % % % % %6% %6% % % % % % % % % %.% % % % % %P%6%C% % % % % % % % % %F% % % % % % % % % % % % % %% %&%'%% %%%% %.%% % %e%% % % % %% %%%'% %Y%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %6%D%W% % % % % % % % % % % % % % % %% %Y%W%D% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %r%^%% %% %% %%%j% %%o%% %% %% %]%[%$% %%%% %Y%[%3% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %#%G%R% %o%G%% %%%% %%T%p% %p%T%% %%%.% %J%@%?% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%% % % % % % % % % % %%,% %%%% %%%% %,% %
% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % % % % % % %3% % % % % %3%%% % % % % % % % % %%%)% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%%Y% %G%%% %%%% %%%% %U%"%% %%%% %%%%Y% %j%a%6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%s% %&%% % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%/% %I%%% %q%%q% %0%'%a% %\%%% %q%%% %%% % %U%"%% %q%%q% %0%'%a% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%h% %% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%}%% % % % % % % % % % % % % %6% % % % % % % %%%% %% %% %%"%Y% %6%a%6% %6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %#%@%P% %%@%P% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %q%%% %p%i%y% %%% % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % %%%% %q%%% %p%i%y% %%% % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %w%%c% %%%% %r%p%% %%%% %w%%R% %%%% %^%%% %%%j% %%%% %%%
% %Y%S%B% %%%% %G%S%;% %%%% %%%% %%%% %7%n%g% %%%% %%%% %%%P% % % % % % % % % %%%% %% %% %w%%c% %%%% %%% % %8% %% % %;%8% %%}%% %G%c%]% %%%% %8%m%>% %%y%y% %%%% %%%s% %%q%% %%%% %7%n%g% %%%% %%%
% %Y%c%u% %.%%% % %%% %%%% %%%% %K%c%% %%%% %%%% %%%P% %y%m%% %G%S%;% %%%% %%%% %0%%% %%J%y% %%%% %% %% %w%%R% %%v%% %% %% %%%P% %%%% %%%% %%%% %7%v%% %P%#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %>%Y%r% %>% %% %%g%p% %-%p%U% %3%S%g% %;% %% %%% % %,%H%]% %8% %% %%%% %%% % %.%%% %%%% %,%H%]% %P%@% % %%%% %%4%T% %%[%3% % %%% %% %% % %%% %%% % % % % % % % % % %>%Y%r% %>% %% %%g%p% %-%p%U% % % %% %%%% %	% % % %,%H%]% %P%@%3% %%%M% %H%8%% %%%% % %%% %%%% %%4%T% %%[%3% %%%% %%% % %.%%% %%%% % % %% % %%&% %w%k%e% %%%% % %%% % % %% % %%% %%% % %,%H%]% %P%@% % %%%"% %3%%% %K%[%2% %%%% %%T%p% %e% %% %%% % %#%G%R% %[% %% %%% % % %%% %%4%T% %%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %q%%% %%%% %%	%% %%%% %%%% %,%% % % % % % % % % % %%+%B% %(% %% %%%% %%
%% % % % % % % % % % %%"% %%%% %%q%{% %%%% %%%% % %%% %%% % % % % % % % % % %%%% %q%%% %%%% %%%"% %%%% %%%% % % % % % % % % % % % % % % % % % % %% %%%% % %%% %%%#% %%%% %%q%{% %%%(% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % %% %%%% % %%% %%% % % % % % % % % % % % % % % % % % % % % % % %%,% %%%% %%%% %,%% % % % % % % % % % % % % % % %%"% %%%% %%q%{% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%7%T% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% %_%_%_% % % % % % % % % % %%% %%% % %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%3% %k%[% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % %% %t%_%k% %% % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %]%S%g% %%y%y% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % %%% %%q%{% %%y%g% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %q%e%g% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %?%N%<% %%%% %%%% %%%% %%%% %%*%9% %%%% %%% % %%%% %%%% % %%\% %=%%% %%%% %%*%9% %%%% %%% % %l%u%c% %% % % % % % % % % %% %%%% %%%% %%%% %%%%Y% %%%% %[%%|% %%%% %Y%Q%P% %%%% %%%% %%%Y% %j%a%6% % % % % %%%% %5%G%v% %P%@%#% %%%% %K%k%U% %%%% %
%%% %%% % %I%-%% %%%% %%%% %%%% %%%\% %P%%% %%%% %%%% %a%-%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %9%/%% %%%% %5%S%A% %%%% %%/%9% %%%% %% % % %%%% % %%% %l%u%c% %%%% %c%%% %%%% %%%% %% % % %%%% % %%% %l%u%c% %% % % % % % % %8%R%f% %%%% %%%% %%%% %%%% %%%% %R%F%% %%%% %%*%R% %#% %#% %!%%$% %%%% %%%% % % % % % %%% %%%% %-% %% %{%%% % % % % % % %% %%% % % %%% %l%u%c% %3%8%6% %J%R%I% %%%% %
% % % %%%% %%%% %w%%% %%|%a% %%%% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%4%2% %%%% %% %% %%%% %2%4%% %G%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % %G%*%9% %% % % %%%% % % % % % % % % % % % % % % % % %%%% %%y%% %%%%.% %I%%% %q%%q% %%%Q% %%>%[% %%%% %S%G%!% % % % % %%%% %.%+%*% %%%% % % % % % %%% %i%g%p% %%%% %%%% %% %% %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%
% %%%% %8%#%% %%y%% %q%%% %?%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%-% %r%Y%>% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%P%k% %@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%T%	%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % %%%o%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%=%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%r% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%2%-%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %p%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%r%6%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%H%v%;% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %d%%C%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%m%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%M%%z% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %e%o%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%Y%H%	% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%%U%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %G%%%X% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %o%l%f% %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %*%(%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%$%"% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %9%%V%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % %% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % %%%% %%%% % %%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% %	%%% %%%% %%%% %%%% %%%% %% % % % % % % % % % % %%%% %%% % %%%% %%%% %%% % %%%% %%%% % %%% %%%% %%%% %%%% %%% % %%%% %%%% % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %0%%% %%% % % % % % %%-%*% %=%C%:% %%%% %\%h%W% %%%% %%%% %6%R%N% %% % % %%%% %%%% %%%% %%%% %%%J% %+%%% %%%% %%%% %%%% %%%% %%%% %%%% %.%>%4% %%%% %%%.% %0%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %c%X%O% %%%% % % % % %=%E%V% %L%-%% %%%% %%%% %%%	% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % % % % % %%%$% %<%%%% %%%% %%%% % % % % % % % % % % % % %=%E%V% %L%-%% %%%% %%%% %%%% %%%% %%%% %%% % % % % % % %%% %%%% %%%2% %&%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%[% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%,%'% %% % % %&%,%'% %%%(% %%%% %%%% %j%I%+% %%%%% %%%% %%6%2% %[%% % % % % % % %%% %-%%% % %&%6%4% %%%% %M%[%d% %%%% %% % % % % % % % % % % %&%;%F% %&%;% % % % % % %%%% %%%"% %=%"%8% %%%% %%%% %j%I%+% %%% % %%% % %%%% %-%9%C% %%%% %%%1% %R%!%% %2%!%Z% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % %-%&%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %J%H%D% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %-%&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%$%"% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%%%% % %%}%I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%J%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %*%(%$% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %A%%%%3%3%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/demoBrowser3.png__ __533316__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % % %%%% % % %p%H%%P% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%%d%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % % % %I%D%A%T%x%% %%%2%%%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % %6%T%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%5% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %%%% %% % % % %% % %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %.%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % %%%!% %k%*%% %|%%% % % % % %%%5% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %t%s%q% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %7%"%% %f%I%% %%
%% % % % % % % % % % % %% %a%f%J% %y%l%J% %j%M%%% % % % % % % % % % % % % % %,%2% %%%d% %w%%{% %w%M%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%j% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%'%,% %%'%+% %;%%% %%%% %F%%% %%%% % % % % %{%%q% %%%%% %b%%% % % %% %6%D%9% %D%*%% %%%% %%% % % % % % % % % % % % % % %<%J%=% %;% %% %%%% %%%$% %%%% %%%%% %%%% %%%% %m%U%#% %%%% %% % % % %%% %e%f%D% %%%% %%%"% %%%% %
%%% %%%'% %,%%% %%%% %)%A%+% %%%% %R%:%% %%%% %&% %% %
%*%/% % %%% %%%% %%)%1% %8%%
% %%%% %%%% %%%% %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %5%4%2% %a%d%j% % % % % %j%h%d% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%9%C% %5%%% %2%e%t% %!%%% %%%%% % %%% %P%%% % % % % % % % % %5%0%% %%%% %r%l%J% %j%M%%% %%%% % % %% %h%{%[% %G%% % % % % % % % % % %%*%2% %%r%5% % %%% %%%H% %3%@%6% %y%S%.% %%%% %~%%N% %I%>%4% %K%%% %% % % % % % % % %%% %%%% %%{%D% %1%=%4% %t%Q%,% %%8%9% %%M%% %%%% %%~%A% %%%6%8% %`%P%,% %h%U%.% %U%U%B% %.%<%+% %%Z%'% %%%% %%
%&% %%h%/% %%%% %%s%?% %0%:%1% %o%L%*% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % % % % % % % % %5%4%2% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%%% %2%%% %"%%% %%%% %%%% %*%%	% % % % % %%%% %D%4%% %%% % %j%M%%% %%%n% %%%% %%% % % % % % % % % % % % % % % %
%% %% %% %%%% %%S%% % % % % %%%% %%%% %%%% %%v%5% %%%% % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % %%%% %R%E%% %%%% %[%/%% %%%% %a%%% %7%P%K% %o%N%% %% %% %%%% %,%d%% % % % % %%%% %%y%%%l% % % % %I%D%A%T%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %j%h%d% %j%h%d% %a%d%j% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%
%% %%q%% %%% % %D%%% %%%% %%
%% % % % % %%s%% %b%g%D% %D%% % %%%% %%%% %L%7%-% %%%% %%%% %%%% %%%% % %%% %%%*% %\%j%G% %%%% %%%% %%%% % % % % %%%% %_%%% %%%% %%%% % %%% %%%% %>%,%
% %c%%% %%%(% %%%% %%%% %r%%>% %Y%,%
% %^%%% %%%% %%%% %%%% %%%% %%%% %K%%	% %%%% %%%% %%;%1% %W%_%@% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %6%T%% %%%% % % % % % % % % %|%a%% %%%% %%%% % % % % % % % % %
%$%j% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %4%@%6% %%%% %%%% %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %0%0%0% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %.%%% %%%% %% % % % % % % % % % % % %%%5% % % % % % % % % %%% % % % %% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%^% % % %^% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % %%% %x%r%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % %%%% %% % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %m%%%6% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% %% %% %(%C%V% %B%,%% % % % % % % % % % % % % % % % % % % % % %5%0%% %%%% %
%%% %%%% %%%% %%%% %%%% %&%%% %/%D%% %%% % %<%%% %%K%B% %% % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %!%%% %%%% %%%% %%% % %%%% %%%% %%%% %y%%i% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %C%4%% % % % % % %%% %%%% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % %%"%3% %%%% %	%
%,% % % % % %%%% %% % % %%%% %(%.%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %D%-%% %%%% %% % % %%%% %% % % % %%% %Y%`%d% %M%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %(%% % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %%4%(% % % % % %/%+%% %%% % % %%% %%+%'% %%%% %H%'%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%+%% %%% % % %%% %% % % % %%% %%%% %%%% %#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %>%X%O% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %L%X%O% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%5%%C% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % % % % % % % % % % %%&%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %5%J%[% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% % % % % % % % % %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% % % % % %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % % % % % %%%% %_%s%% %%%% %%%% %_%s%% %%%% %%%% %_%s%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %\%?%,% %D%N%T% %D%N%T% %\%?%,% % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%&%?% %%%% %%%% %/%9%?% %%%% % % % % %%%% %0%9%@% % % % % % % % % %%%% %0%9%@% %_%s%% %%%% %%%% %_%s%% % % % % %%%% %%%% %%%% %%%% % % % % %%%% %/%9%?% %%%% %%%% %0%9%@% % % % % %%%% %0%9%@% %/%9%?% %%%% % % % % %_%s%% %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %5%J%[% %%% % %%%% %/%9%?% % % % % %%%% % % % % % % % % %%%% %_%r%% % % % % %%%% % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %q%T%A% %%%% % % % % % % % % % % % % %%%% % % % % %0%:%@% %%%% % % % % %0%:%@% %%%% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %{%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %_%r%% % % % % % % % % %_%s%% %_%r%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % %0%9%@% %_%s%% %/%9%?% %0%9%@% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%9%?% %%%% %0%:%@% % % % % % % % % %_%s%% %_%r%% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%:%@% % % % % % % % % %0%:%@% % % % % % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%^%k% %{%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% %/%9%?% %0%:%@% %%%% %/%9%?% %/%9%?% %0%:%@% %%%% %/%9%?% %_%s%% %%%% %/%9%?% %/%9%?% %%%% %0%:%@% %_%s%% %%%% %_%r%% % % % % % % % % %/%9%?% % % % % %/%9%?% % % % % %%%% %_%s%% % % % % % % % % % % % % %/%9%?% % % % % %%%% %_%s%% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%:%@% % % % % % % % % %/%9%?% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% %0%:%@% % % % % %0%:%@% % % % % % % % % % % % % %/%9%?% %0%:%@% %%%% %0%9%@% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %%%1%;% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %0%:%@% %0%9%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %<%%%Z% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% % %3%%%%% % % % % % % % % % % % %J%5%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %J%5%$% % %n%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %e%d%b% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %e%V%/% %{%n%K% % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%'%,% %%%R% %%%Z% %$%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%(% %%^%(% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%^% %-%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %G%K%$% %%{%% %%%% %%%% %%%J% %% %% %%%% %%t%0% %% %% %%%% %%%% %J%C%"% %%%% %%%% %%%% %%%X% %%%% %%%% %L%/%% %%% % %%%% %%%% %h%n%S% %%%% %%%% %%%*% %%%% %t%x%0% %%%$% %'%%% %%%% %%%% %1%E%G% %]%%% %%%% %%%% %k%7%	% %%%% %%%% %F%%% %%%% %~%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % %%c%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % %%%% %%% % %%%% %%%% %6% % % %%%% %%%% %%%% % %%% %%%% %%%% %6% % % %%2%+% %%%% %%%% %%%% %%%&% %3%%% %%%% % % % % %%%% %5%5%% %%%% % % % % % % %% %	%% % % %%% %%%% %%%% %%%% %%%% %% % % %/%(%% %<%4%% %%%% %[%%% %N%:%$% %%% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %}%%R% %%%% %%%% %"%>%C% %b%%% %%% % %1%% % % % % % % % % % % % % % %P%M%B% %5%%% %%% % %0%%% % %#%"% %%%% %%&%-% %7%%% %% % % %M%'%% %%%% %=%3%!% %%%% %(%!%% %%%% %v%s%?% %% %% % % % % % % % % % % % % % % % % %-%%% %% %% %%
%% %%%% %w%z%J% %%%% %%%% %A%% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %i%{%% % % % % % % % % %d%s%% % % % % % % % % %v%% % % % %% % % % % %u%% % %%E% % %v%%% % % % % %w%% % % % %% % % % % % % % % %% % % % % %% % % % % % % % % %%%% % % % % % % % % % % % % %% % % % % % % % % % % % % % % %%%% %v%% % % % %% % % % % %% % % % % % % %i%% % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %{%n%K% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%}% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %v%x%|% % % % % % % % % % % % % % % % % % % % % % % % % %*%(%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%/%/% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %w%%% %%% % % % % % % % % % % % % % % %%% %%%% %%%2% %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %o%%% %%%% % %%% %i%u%% %G%S%;% %%%"% %8% %% % %;%8% % % % % %%%% %%y%y% %%%
% %Y%S%B% %%%% %G%c%m% %P%@%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %4%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %,%H%]% %P%@%"% % % % % %%%% % % % % % % % % %%%% %%% % %%%% %%%% %,%H%]% %P%@%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%K% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %A%R%% %%y%y% %p%g%i% %%%% % % % % % %%% %%%% %%%% % % % % % % % % %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %r%x%e% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%#%H% %%%H% % % % % % % % % %.%)% % % % % % %%%% % % % % % % % % %3%k%3% % % % % % %c%L% % % % % % % % % %.%)% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %% % % % % % % % % % % % % % %%%% %%%% %?%?%?% %@%@%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %4%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%}%k% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %4%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%\% %%%% %%%% %%%% %%%%f% %%%% %^%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%0% %%e%e% % % % % %%%% %
% % % %%%% %%$%% %l%k%e% %%%% %@%.%% %%H%]% %8% %% %%% % %3%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%@% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%/%?% % %%% %%%
% %%%% % % %% % % % % %
%%% %%%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % %@% % % % % % % % % % % % % % % % % %Q%u%% % % % % % % % % % % %3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%u% %y%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % %% %%%% % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%+%/% %%%% %%%% %%%%Y% %%%% %K%k%U% %%%% %
%%% %%% % %l%u%c% %% % % % %%% %%%% %%%% %% %% %%%P% % %%% %%%% %G%%% %%%% %%*%9% %%%%% %%% % %%%!% % % % % %%%% %%%% %#%%% %%%% %%%%Y% %%%% %%% % %%
%% %%6%3% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%&% %w%%% %H%.%% %%%% %%%% %%%% % % % % % % %% %%% % % %%% %l%u%c% %% % % % % % % % % % % % % % % %#%G%R% %o%G%% %%% % %%%% %?%F%P% %%%% %% % % %%%% %%%% %%u%l% %%% % % % % % %%&%.% %J%@%?% %%%% %%%% %%%% % %%% %l%u%c% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %n%%%+% % % % %I%D%A%T% % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %I%%% %q%%q% %%%Q% %% %% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%l%f% %%%% %?%*%9% %% % % %%%% %#%%% %y%%% %%% % % % % % % %%
% %%%% %A%%% %q%%q% %%%Q% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %% % % % % % % % % % % % %%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % % % % % %6%a%j% %6% % % % % % % % % %.% %>% % % % % % % % % % % % % % % % % % % % %%3% %l%k%3% % % % % % % % % % % %3% % % % % %3% % % % % %C% % % % % %>% % % % % % % % % % % %H% % % % % % % % % % % % %%)% %%%)% % % % % %>% % % % % % % % % %.% % % % % %[%k%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %f%Q%% %%%% %i%P%(% % % % % %%%% %'%Z%g% %%%% %% %b% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%-% %%"%-% %%%% % % % % % % % % % % % % %
%%% % %%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %C%h%Y% %%%% % %%% % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%$% % % % % % % % % % %%%% %G%b%d% %%%% %#%% % % % % % % % % % %%%% %@%@%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %%%% %%y%y% %%%
% %Y%S%B% %%%% %%%% %% %% %%%% %% % % % %%% %%%q% %%%Y% %4% %% %%%% %%%%Q% %%%% %%%% %%%% %Q%0%% %%%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %W%?%%% %%%% %\%h%(% %%%% %%%,% %&%'%% %%%% %.%M%Y% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %%%% %%% % %%%% %%%% % % % % %#%G%R% %o%G%% %%% % % % % % % %%% %l%u%% %%%% %%%% %%%% %%%% %,%8%M% %V%T%D% %J%@%?% %	% % % %%%% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%4%>% %j%h%M% %% % % %%%2% %&%%% % %%% %j%h%d% %<%&%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%% %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % %%% %%%q% %%%5% %I%%% %q%%q% %%%Q% %
%%% %%%% %%%% %% % % %F%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % %>% % % %c%L% % % % % % % % % %.%)%;% % % % % % % %3% % % % % % % % % %[%s%y% % % % % % % % % % % %6% %6% % % % % % % % % %.% % % % % %P%6%C% % % % % % % % % %F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %}%%% % % %% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %%%% %%y%y% %%%
% %Y%S%B% %%%% %%%% %% %% %%%% %% % % % %%% %%%q% %%%Y% %4% %% %%%% %%%%Q% %%%% %%%% %%%% %Q%0%% %%%% %%%% %%*%9% %u%U%F% % % %% %%%% %\%D% % %%%% %% %% % % %% %8%%% %%% % %3%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %%%% %%% % %%%% %%%% % % % % %#%G%R% %o%G%% %%% % % % % % % %%% %l%u%% %%%% %%%% %%%% %%%% %,%8%M% %V%T%D% %J%@%?% %	% % % %%%% %% % % %%%% % % % % % %%% %%%% % % %% %)%.%#% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%%h%%9% % % % %I%D%A%T%% %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % %%% %%%q% %%%5% %I%%% %q%%q% %%%Q% %
%%% %%%% %%%% %% % % %F%*%9% %% % % %%%% % % % % % %%#% %%%% % % % % % % % % % % % % % % % % %%%% %(%#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % %>% % % %c%L% % % % % % % % % %.%)%;% % % % % % % %3% % % % % % % % % %[%s%y% % % % % % % % % % % %6% %6% % % % % % % % % %.% % % % % %P%6%C% % % % % % % % % %F% % % % % % % % % % % % % %% %&%'%% %%%% %.%% % %e%% % % % %% %%%'% %Y%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %6%D%W% % % % % % % % % % % % % % % %% %Y%W%D% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %6%h%s% %B%%% % % % % %%%% %%%% %%% % %w%%d% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~%_% %%%% % % % % % % % % %%%% %N%h%d% %3%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %=%%% %@%%% %r%^%{% %^%^%}% %%%% %{%g%p% %p%g%{% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % %%,%"% %%%% %%%% %%% % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %#%G%R% %o%G%% %%%% %%T%p% %p%T%% %%%.% %J%@%?% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % % % %%%% %U%n%j% %=%%% %%% % % % % % % % % % %%%% %@%@%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%% % % % % % % % % % %%,% %%%% %%%% %,% %
% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%v%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %#%R%4% %%%% %%%% %8%H%% %%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % % % % % % %3% % % % % %3%%% % % % % % % % % %%%)% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %_%l%}% % % % % % % % % % % %2% %% % % % %%L% %%,% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%%Y% %G%%% %%%% %%%% %U%"%% %%%% %%%%Y% %j%a%6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%s% %&%% % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%/% %I%%% %q%%q% %0%'%a% %\%%% %q%%% %%% % %U%"%% %q%%q% %0%'%a% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%	%"% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%}%% % % % % % % % % % % % % %6% % % % % % % %%%% %% %% %%"%Y% %6%a%6% %6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %#%@%P% %%@%P% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %q%%% %p%i%y% %%% % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % %%%% %q%%% %p%i%y% %%% % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %w%%c% %%%% %r%p%% %%%% %w%%R% %%%% %^%%% %%%j% %%%% %%%
% %Y%S%B% %%%% %G%S%;% %%%% %%%% %%%% %7%n%g% %%%% %%%% %%%P% % % % % % % % % %%%% %% %% %w%%c% %%%% %%% % %8% %% % %;%8% %%}%% %G%c%]% %%%% %8%m%>% %%y%y% %%%% %%%s% %%q%% %%%% %7%n%g% %%%% %%%
% %Y%c%u% %.%%% % %%% %%%% %%%% %K%c%% %%%% %%%% %%%P% %y%m%% %G%S%;% %%%% %%%% %0%%% %%J%y% %%%% %% %% %w%%R% %%v%% %% %% %%%P% %%%% %%%% %%%% %7%v%% %P%#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %6%h%s% %B%%% % % % % %%%% %%%% %%%% %k%%% %4%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %>%Y%r% %>% %% %%g%p% %-%p%U% %3%S%g% %;% %% %%% % %,%H%]% %8% %% %%%% %%% % %.%%% %%%% %,%H%]% %P%@% % %%%% %%4%T% %%[%3% % %%% %% %% % %%% %%% % % % % % % % % % %>%Y%r% %>% %% %%g%p% %-%p%U% % % %% %%%% %	% % % %,%H%]% %P%@%3% %%%M% %H%8%% %%%% % %%% %%%% %%4%T% %%[%3% %%%% %%% % %.%%% %%%% % % %% % %%&% %w%k%e% %%%% % %%% % % %% % %%% %%% % %,%H%]% %P%@% % %%%"% %3%%% %K%[%2% %%%% %%T%p% %e% %% %%% % %#%G%R% %[% %% %%% % % %%% %%4%T% %%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~% % %%%% %B%n%@% % % % % %5%A%M% %/%-%% %%%% %4%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %q%%% %%%% %%	%% %%%% %%%% %,%% % % % % % % % % % %%+%B% %(% %% %%%% %%
%% % % % % % % % % % %%"% %%%% %%q%{% %%%% %%%% % %%% %%% % % % % % % % % % %%%% %q%%% %%%% %%%"% %%%% %%%% % % % % % % % % % % % % % % % % % % %% %%%% % %%% %%%#% %%%% %%q%{% %%%(% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % %% %%%% % %%% %%% % % % % % % % % % % % % % % % % % % % % % % %%,% %%%% %%%% %,%% % % % % % % % % % % % % % % %%"% %%%% %%q%{% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % % % % % %%%% %K%Y%F% % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %+%%y%X% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% %_%_%_% % % % % % % % % % %%% %%% % %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %e%h% % %%%% %e%n%@% % % % % % % % % %%%% %o%a%i% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%3% %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %#%R%4% %%%% %%%% % % %% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %_%l%}% % % % % % % % % % % %2% %% % % % % %% %b%m%V% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % %% %t%_%k% %% % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %]%S%g% %%y%y% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % %%% %%q%{% %%y%g% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %q%e%g% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %?%N%<% %%%% %%%% %%%% %%%% %%*%9% %%%% %%% % %%%% %%%% % %%\% %=%%% %%%% %%*%9% %%%% %%% % %l%u%c% %% % % % % % % % % %% %%%% %%%% %%%% %%%%Y% %%%% %[%%|% %%%% %Y%Q%P% %%%% %%%% %%%Y% %j%a%6% % % % % %%%% %5%G%v% %P%@%#% %%%% %K%k%U% %%%% %
%%% %%% % %I%-%% %%%% %%%% %%%% %%%\% %P%%% %%%% %%%% %a%-%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %9%/%% %%%% %5%S%A% %%%% %%/%9% %%%% %% % % %%%% % %%% %l%u%c% %%%% %c%%% %%%% %%%% %% % % %%%% % %%% %l%u%c% %% % % % % % % %8%R%f% %%%% %%%% %%%% %%%% %%%% %R%F%% %%%% %%*%R% %#% %#% %!%%$% %%%% %%%% % % % % % %%% %%%% %-% %% %{%%% % % % % % % %% %%% % % %%% %l%u%c% %3%8%6% %J%R%I% %%%% %
% % % %%%% %%%% %w%%% %%|%a% %%%% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%4%2% %%%% %% %% %%%% %2%4%% %G%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % %G%*%9% %% % % %%%% % % % % % % % % % % % % % % % % %%%% %%y%% %%%%.% %I%%% %q%%q% %%%Q% %%>%[% %%%% %S%G%!% % % % % %%%% %.%+%*% %%%% % % % % % %%% %i%g%p% %%%% %%%% %% %% %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%
% %%%% %8%#%% %%y%% %q%%% %?%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %>%%S%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%-% %r%Y%>% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%P%k% %@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %% % % % % % % % % % % % % %% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%(%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %\%F%% %%%% % % % % % % % % %%%% %%.%P% %5%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%-% %%"%-% %%%% % % % % % % % % %%%% % %%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %#%4%P% %%%% %%% % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%$% % % % % % % % % % %6%%% %% % % % % %	% %%% % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %W%?%%% %%%% %[%P%(% %%%% %%%% %4%V%[% %%%% %%%%=% %*%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%4%>% %j%4% % % % % % % %%2% %% % % % % % % %J%Z%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%S%H%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % %%%o%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%=%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%|%% %%%% % % % % % % % % % %%% %p%|%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~%_% %%%% % % % % % % % % %%%% %U%j%j% %j%Z%F% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % % % %C%n%h% %C% % % %%%% %%% % %%% % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %6%h%s% %%%% %%%,% %%%% %%%% %%%"% %c%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %_%l%}% % % % % % % % % % % %2% %% % % %&%U%[% %<% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%2%-%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%|%% %%%% % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~%_% %%%% % % % % % % % % % % %% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % %%%% %*%=%A% % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % %% %%%% %%#%% %%%% %K%%6% %%% % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %p%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%[%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %6%h%s% %%%% %%%,% %|%%% % %%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %_%l%}% % % % % % % % % % % %2% %% % % % % % % % %%'% %h%h% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%`% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %% % % % % % % % % % % % %%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %\%F%% %%%% % % % % % % % % %%%% %V%b%d% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%-% %%"%-% %%%% % % % % % % % % %&%:%8% %%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%Q% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%:%F% %3%%% %%% % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%$% % % % % % % % % % %%%% %'%A%6% %%%% %% % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %W%?%%% %%%% %[%P%(% %%%% %%%% %/%-%% %%%% %%,%=% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%4%>% %j%4% % % % % % % %%2% %% % % % % %$% %j%h%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%h% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %% % % % % % % % % % % % %%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%F% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %\%F%% %%%% % % % % % % % % %%%% %8%[%d% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%-% %%"%-% %%%% % % % % % % % % %R%f%m% %#%% % %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%4%[% %#%% % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%$% % % % % % % % % % %%%% %%"%R% %W%:%% % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %W%?%%% %%%% %[%P%(% %%%% %%%% %%%% %%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%4%>% %j%4% % % % % % % %%2% %% % % %&%P%d% %B% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%Y%H%	% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%|%% %%%% % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~%_% %%%% % % % % % % % % %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % %%!%1% %b%J%:% % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %#%R%4% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %_%l%}% % % % % % % % % % % %2% %% % % % % % % % %%'% %h%h% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %d%?%%S% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%%U%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %8%X% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %/%"%% %/%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %k%i%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%i%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%i%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%i%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%i%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %^%%u%4% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %o%l%f% %%%% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %"%$%% %%%% %%%% %[%% % % % % % %5%4%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %*%P%W% %%%% %'%?%R% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% %R%h%d% % % % % % % % % %%%% %%%% %%
%% %%l%Z% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%
%% %%l%Z% % % % % % % %% %%%% %%%% %%.%[% %f%G%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %6%h%s% %B%%% % % % % % % % % %%%% %%%% %v%h%6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%
%% %%l%Z% % % % % % % % % %%%% %%%% %% %N% %a%N%*% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %6%h%s% %B%%% % % % % %%%% %%%% %%% % %w%%d% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %v%h%6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %*%(%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %\%p%p% %%%% %%% % %"%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %\%p%p% %%%% %%% % %"%% % % %%% %$%U%d% %<%&%% %%%% % %G%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~% % %%%% %B%n%@% % % % % % % %% %%%% %% %8% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %\%p%p% %%%% %%% % %"%% % % %%% %%%>% %p%n%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%7% %x%~% % %%%% %B%n%@% % % % % %%%% %N%h%g% %%%% %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%$%"% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %	%%% %%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %	%%% %%% % % %% % % %%% %<%% % %%%% %"%N%P% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % %%%% %*%=%A% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %	%%% %%% % % %% % % %%% %%%% %%%% %%.%[% %f%G%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%
% % %%% %%%% % % % % % % % % %%,%"% %%%% %% %% %D%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%!%1% %b%%
% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %	%%% %%% % %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %	%%% %%% % %%%% %%% % % % % % % % % % %%%% %%"%@% %W%&%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % %% %%%% %%#%% %%%% %K%%6% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %	%%% %%% % %%%% %%% % % % % % % %%% %/%(%A% %j%Z%#% %%%% % % %$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % % % %%%% %U%t%j% %%%% %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%R%"% %%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%R%"% %%%% %%%% %%% % %%%% %&%%% %%%% %;%:% % %%%% %R%A%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %6%h%s% %%%% %%%,% %|%%% % %%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%R%"% %%%% %%%% %%% % %%%% %4%0%8% %'%%% %%%% %%4%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%% %%%% %6%h%s% %%%% %%%,% %8%H%% %%%% %%%% %w%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%y%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %J%H%D% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % %% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % %%%% %%%% % %%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% %	%%% %%%% %%%% %%%% %%%% %% % % % % % % % % % % %%%% %%% % %%%% %%%% %%% % %%%% %%%% % %%% %%%% %%%% %%%% %%% % %%%% %%%% % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %0%%% %%% % % % % % %%-%*% %=%C%:% %%%% %\%h%W% %%%% %%%% %6%R%N% %% % % %%%% %%%% %%%% %%%% %%%J% %+%%% %%%% %%%% %%%% %%%% %%%% %%%% %.%>%4% %%%% %%%.% %0%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %c%X%O% %%%% % % % % %=%E%V% %L%-%% %%%% %%%% %%%	% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % % % % % %%%$% %<%%%% %%%% %%%% % % % % % % % % % % % % %=%E%V% %L%-%% %%%% %%%% %%%% %%%% %%%% %%% % % % % % % %%% %%%% %%%2% %&%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%,%'% %% % % %&%,%'% %%%(% %%%% %%%% %j%I%+% %%%%% %%%% %%6%2% %[%% % % % % % % %%% %-%%% % %&%6%4% %%%% %M%[%d% %%%% %% % % % % % % % % % % %&%;%F% %&%;% % % % % % %%%% %%%"% %=%"%8% %%%% %%%% %j%I%+% %%% % %%% % %%%% %-%9%C% %%%% %%%1% %R%!%% %2%!%Z% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % %-%&%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %J%H%D% %%%% %%%% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %-%&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%$%"% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%%%% % %%}%I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%J%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %*%(%$% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%|%F%%%%h%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/demoBrowser4.png__ __533316__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % % %%%% % % %p%H%%P% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%<%F%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % % % %I%D%A%T%x%% %%%2%%%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % %6%T%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%5% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %%%% %% % % % %% % %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %.%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % %%%!% %k%*%% %|%%% % % % % %%%5% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %t%s%q% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% %N%)%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %&%J%p% % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %7%"%% %f%I%% %%
%% % % % % % % % % % % %% %a%f%J% %y%l%J% %j%M%%% % % % % % % % % % % % % % %,%2% %%%d% %w%%{% %w%M%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%j% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%'%,% %%'%+% %;%%% %%%% %F%%% %%%% % % % % %{%%q% %%%%% %b%%% % % %% %6%D%9% %D%*%% %%%% %%% % % % % % % % % % % % % % %<%J%=% %;% %% %%%% %%%$% %%%% %%%%% %%%% %%%% %m%U%#% %%%% %% % % % %%% %e%f%D% %%%% %%%"% %%%% %
%%% %%%'% %,%%% %%%% %)%A%+% %%%% %R%:%% %%%% %&% %% %
%*%/% % %%% %%%% %%)%1% %8%%
% %%%% %%%% %%%% %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %5%4%2% %a%d%j% % % % % %j%h%d% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%9%C% %5%%% %2%e%t% %!%%% %%%%% % %%% %P%%% % % % % % % % % %5%0%% %%%% %r%l%J% %j%M%%% %%%% % % %% %h%{%[% %G%% % % % % % % % % % %%*%2% %%r%5% % %%% %%%H% %3%@%6% %y%S%.% %%%% %~%%N% %I%>%4% %K%%% %% % % % % % % % %%% %%%% %%{%D% %1%=%4% %t%Q%,% %%8%9% %%M%% %%%% %%~%A% %%%6%8% %`%P%,% %h%U%.% %U%U%B% %.%<%+% %%Z%'% %%%% %%
%&% %%h%/% %%%% %%s%?% %0%:%1% %o%L%*% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % % % % % % % % %5%4%2% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%%% %2%%% %"%%% %%%% %%%% %*%%	% % % % % %%%% %D%4%% %%% % %j%M%%% %%%n% %%%% %%% % % % % % % % % % % % % % % %
%% %% %% %%%% %%S%% % % % % %%%% %%%% %%%% %%v%5% %%%% % % % % % % % % % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % % % % % %%%% %R%E%% %%%% %[%/%% %%%% %a%%% %7%P%K% %o%N%% %% %% %%%% %,%d%% % % % % %%%% %%y%%%l% % % % %I%D%A%T%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %j%h%d% %j%h%d% %a%d%j% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% %%%% %%
%% %%q%% %%% % %D%%% %%%% %%
%% % % % % %%s%% %b%g%D% %D%% % %%%% %%%% %L%7%-% %%%% %%%% %%%% %%%% % %%% %%%*% %\%j%G% %%%% %%%% %%%% % % % % %%%% %_%%% %%%% %%%% % %%% %%%% %>%,%
% %c%%% %%%(% %%%% %%%% %r%%>% %Y%,%
% %^%%% %%%% %%%% %%%% %%%% %%%% %K%%	% %%%% %%%% %%;%1% %W%_%@% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %6%T%% %%%% % % % % % % % % %|%a%% %%%% %%%% % % % % % % % % %
%$%j% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% % %% % %% %% % %% % %%%% %% % % % %%% %4%@%6% %%%% %%%% %%%% %% %% % %% % %%%% %%%% % %% % %% % % %%%% % %%% %% % % %%%% % %% % %% %% %%% % % %%% %% %% % %% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %%%% %% %% % %% % %%% % %% %% % %%% %% % % %%%% % %%% %% % % %%% % % %%% %% %% %%% % % %%% %% % % %%%% % %% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % % %% % %%%% %% %% % %% % %%%% %% % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %% %% %%% % % %%% %% %% %%% % % %% % %% %% %%%% % %% % %% %% % %% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% % % % % %%%% %%% % % % %% %%% % % %%% %% %% % %% % %%% % %% %% % %%% %%% % %% %% % %% % %%%% %% % % % %%% %%%% %%% % % %%% %% % % %%%% % %% % %% %% %%%% % %% % %% % % %%%% % %%% % % % % %%%% %%% % % % %% %%% % %%%% % % %% %%% % %%% % % % %% %%%% %%% % % % %% %%% % %%%% % % % % %%%% %%%% % % % % %%% % %%%% % % %% %%% % %%%% % % % % % %%% %%% % %% %% % %%% %%% % %% % % % %%% %%%% %% % % % %%% %%% % %% %% % %% % %% %% %%%% % %% % %% %% %%% % % %%% %% % % %%%% % %%% %% % % %%% % % %%% % % %% %%% % %%%% % % % % %%%% %%% % % % %% %%%% %%% % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %0%0%0% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %V%z%% %.%%% %%%% %% % % % % % % % % % % % %%%5% % % % % % % % % %%% % % % %% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%J%p% %&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%^% % % %^% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % %%% %x%r%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % %%%% %% % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %m%%%6% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% %% %% %(%C%V% %B%,%% % % % % % % % % % % % % % % % % % % % % %5%0%% %%%% %
%%% %%%% %%%% %%%% %%%% %&%%% %/%D%% %%% % %<%%% %%K%B% %% % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %!%%% %%%% %%%% %%% % %%%% %%%% %%%% %y%%i% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %C%4%% % % % % % %%% %%%% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % %%"%3% %%%% %	%
%,% % % % % %%%% %% % % %%%% %(%.%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % %.%C%P% %j%h%d% %D%-%% %%%% %% % % %%%% %% % % % %%% %Y%`%d% %M%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %(%% % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %%4%(% % % % % %/%+%% %%% % % %%% %%+%'% %%%% %H%'%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%+%% %%% % % %%% %% % % % %%% %%%% %%%% %#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %5%4%2% %j%h%d% % % % % % % % % % % % % % % % % % % % % %%%%%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %>%X%O% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %L%X%O% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %R%5%%C% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % % % % % % %%%% % %'%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%	% %%%% %5%J%[% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% % % % % % % % % %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% % % % % %%%% % % % % %%%% %%%% %%%% % % % % %%%% %%%% %%%% % % % % % % % % %%%% %_%s%% %_%s%% %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% % % % % %%%% %_%s%% %_%s%% %%%% %%%% % % % % %%%% %%%% %%%% %q%T%A% % % % % %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % %%%% % % % % % % % % %%%% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% % % % % %%%% %%%% % % % % %%%% %%%% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %\%?%,% %D%N%T% %D%N%T% %\%?%,% % % % % % % % % % % % % % % % % %%%%%%%%% %%%% % %'%@% %%%% %%%% %/%9%?% %%%% % % % % %%%% %0%9%@% % % % % % % % % %%%% %0%9%@% %_%s%% %%%% %%%% %_%s%% % % % % %%%% %%%% %%%% %%%% % % % % %%%% %/%9%?% %%%% %%%% %0%9%@% % % % % %%%% %0%9%@% %/%9%?% %%%% % % % % %_%s%% %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%	% %%%% %5%J%[% %%% % %%%% %/%9%?% % % % % %%%% % % % % % % % % %%%% %_%r%% % % % % %%%% % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %q%T%A% %%%% % % % % % % % % % % % % %%%% % % % % %_%s%% %q%T%A% %%%% %%%% %%%% %%%% %%%% %%%% %0%9%@% % % % % %%%% %%%% %%%% % % % % %_%s%% %%%% %%%% % % % % % % % % % % % % %_%s%% % % % % %%%% % % % % %_%s%% %%%% %_%s%% %%%% %%%% %%%% %%%% %_%s%% %%%% % % % % % % % % % % % % %_%s%% %%%% %%%% %0%9%@% % % % % %_%s%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %q%T%A% %0%9%@% %/%9%?% %%%% % % % % %_%s%% %%%% % % % % %_%s%% %%%% % % % % % % % % %_%s%% %%%% %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %{%%% % %%% %%%	% %%%% %% % % % % % % % % % % % % % % % % % % % %_%s%% %%%% % % % % %_%s%% %_%r%% % % % % % % % % %_%s%% %_%r%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %_%s%% % % % % % % % % % % % % % % % % % % % % % % % % %0%9%@% %_%s%% %/%9%?% %0%9%@% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %/%9%?% %%%% %0%:%@% % % % % % % % % %_%s%% %_%r%% %0%:%@% %%%% %/%9%?% % % % % %/%9%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %_%s%% %_%s%% %%%% % % % % % % % % % % % % %0%9%@% % % % % % % % % %0%9%@% %_%s%% %/%9%?% %0%9%@% % % % % % % % % % % % % % % % % % % % % % % % % %/%9%?% % % % % % % % % % % % % %%%% %_%s%% %_%s%% %%%% % % % % %%%% % % % % %0%9%@% % % % % % % % % % % % % % % % % %/%9%?% % % % % % % % % % % % % % % % % %0%9%@% %_%s%% %/%9%?% % % % % % % % % %_%s%% %_%s%% % % % % % % % % %/%9%?% % % % % %0%9%@% % % % % %0%9%@% % % % % %0%:%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%^%k% %{%%% % % % % % % % % % % % % % % % % %%u%t%r%%%%% %%%% % %% % %%%% %%%% %/%9%?% %H%W%`% %%%% %%% % %%% % %H%W%`% %%%% %%% % %H%W%`% %%%% %%% % %%% % %%%% %%% % %0%:%@% %%%% %G%V%_% %%% % % % % % % % % % % % % % %%% % %%% % %%%% %H%W%`% % % % % %%% % %%% % % % % % %%% % %%%% %_%s%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%	%% %%%% %%%%.% %%% % %%% % % % % % %%% % % % % % %H%W%`% %%%% %%% % %%% % % % % % %0%:%@% % % % % %0%:%@% % % % % %%% % %%% % % % % % %H%W%`% %%%% %%% % % % % % %%% % % % % % %%% % %%%% %%%% %_%s%% %%%% %%%% %_%s%% % % % % %%% % % % % % %%% % %%%% %H%W%`% % % % % %%% % % % % % %%% % %%%% %H%W%`% % % % % % % % % %%% % %%% % %%% % %%% % %%%% %%%% %_%s%% % % % % % % % % %%% % %%% % %%% % % % % % %%% % % % % % % % % % %%% % %%% % %%%% %H%W%`% % % % % %%%% %H%W%`% % % % % % % % % %%% % % % % % % % % % %%% % % % % % %%% % %%% % %%% % % % % % %%% % %%% % % % % % %%% % %%%% %_%s%% % % % % %%% % % % % % %%% % %%% % %%%% %H%W%`% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%% % % % % % % %%% %%	%% %%%% %%%%%%%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%	% %%%% %%%1%;% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %/%9%?% %0%9%@% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %0%9%@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%6%f%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%%	% %%%% % %3%%%%% % % % % % % % % % % % %K%6%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%6%%% % %o%e% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %K%6%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %e%d%b% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %@%@%@% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %y%y%y% %p%g%{% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %q%e%g% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %o%%% %%%% % %%% %{%o%% %% %% %w%%R% %%%% %%%% %0%%% %%B%_% %%%% %%%% %w%%R% %%%% %%y%y% %%%
% %I%@%5% %%%% %%%% %;%Z%% %.%%% %%%% %%%% %%%Y% %%%% %K%k%U% %%%% %
%%% %%% % %I%-%% %%%% %%%% %%%% %%%\% %P%%% %%%% %%%% %a%-%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % %%l%%d% % % % %I%D%A%T% % % % % % % % % % % % % % % % % %%%% %%%% %%T%p% %p%T%% %%% % %#%=%T% %G%4%3% %b%u%o% %%%% %3%S%g% %p%T%% %%% % %%%% %%% % %%%% %%%8% %>%%% %%%P% %.%%% % % % % %!%%$% %%%% %%%% % % % % % % %% %%% % % %%% %l%u%c% %3%8%6% %J%R%I% %%%% %
% % % %%%% %%%% %w%%% %%|%a% %%%% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %A%R%% %%y%y% %%%% %b%x%v% %%%% %%
%% %l%w% % %%% % % % % % % % % % % % % % %%%% %%%% %w%% % %%+%B% %(%%% %%%% %%%% %%%Q% %Q% %% %%%7% %H%#%% %%%% %.%+%*% %%%% %?% %% %%%% %% %!% %% % % % % % % % % % % % % % % %%%% %%%
% %%%% %8%#%% %%y%% %%
% % %Q%*%9% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%	% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%%% % % % % % % % % % % % % % % % % %%%% %%%% %`%`%`% %%%% %%%% %%%	% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%3% %k%[% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %*%(%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%/%/% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %w%%% %%% % % % % % % % % % % % % % % %%% %%%% %%%2% %k%[%3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %o%%% %%%% % %%% %i%u%% %G%S%;% %%%"% %8% %% % %;%8% % % % % %%%% %%y%y% %%%
% %Y%S%B% %%%% %G%c%m% %P%@%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %,%H%]% %P%@%"% % % % % %%%% % % % % % % % % %%%% %%% % %%%% %%%% %,%H%]% %P%@%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %*%3%%s% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %A%R%% %%y%y% %p%g%i% %%%% % % % % % %%% %%%% %%%% % % % % % % % % %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%#%H% %%%H% % % % % % % % % %.%)% % % % % % %%%% % % % % % % % % %3%k%3% % % % % % %c%L% % % % % % % % % %.%)% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%}%k% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%\% %%%% %%%% %%%% %%%%f% %%%% %^%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%0% %%e%e% % % % % %%%% %
% % % %%%% %%$%% %l%k%e% %%%% %@%.%% %%H%]% %8% %% %%% % %3%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %	%%%]% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%/%?% % %%% %%%
% %%%% % % %% % % % % %
%%% %%%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % %@% % % % % % % % % % % % % % % % % %Q%u%% % % % % % % % % % % %3% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %% % % %% % % %% % % %% % % %$% % % %% % % %"%4%2% %j%h%d% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%u% %y%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % %% %%%% % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %o%d%j% %%d%j% %%%% %% % % %S% % % %1% % % %% % % %-% % % %% % % %% % % %%%% %%d%j% %y%d%j% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%+%/% %%%% %%%% %%%%Y% %%%% %K%k%U% %%%% %
%%% %%% % %l%u%c% %% % % % %%% %%%% %%%% %% %% %%%P% % %%% %%%% %G%%% %%%% %%*%9% %%%%% %%% % %%%!% % % % % %%%% %%%% %#%%% %%%% %%%%Y% %%%% %%% % %%
%% %%6%3% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%d%j% %#% % % %(% % % %% % % %% % % %% % % %% % % %Z% % % %% % % %(% % % %% % % %&% % % %% % % %%%% %{%d%j% %%4%2% %j%h%d% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%&% %w%%% %H%.%% %%%% %%%% %%%% % % % % % % %% %%% % % %%% %l%u%c% %% % % % % % % % % % % % % % % %#%G%R% %o%G%% %%% % %%%% %?%F%P% %%%% %% % % %%%% %%%% %%u%l% %%% % % % % % %%&%.% %J%@%?% %%%% %%%% %%%% % %%% %l%u%c% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%d%j% %% % % %% % % %% % % %% % % %% % % %<% %!%%@%% % % % %I%D%A%T% % %U% % % %% % % %% % % %%%% % %% % % %=% % % %% % % %b% % % %% % % %g% % % %%%% %%d%j% %|%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %I%%% %q%%q% %%%Q% %% %% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%l%f% %%%% %?%*%9% %% % % %%%% %#%%% %y%%% %%% % % % % % % %%
% %%%% %A%%% %q%%q% %%%Q% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %p%d%j% %"% % % %&% % % %*% % % %/% % % %3% % % %
% % % %% % % %% % % %<% % % %% % % %>% % % %% % % %% % % %% % % %% % % %% % % %d% % % %% % % %%%% %J%0%8% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%	% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%	% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%d%j% %%%% %% % % %% % % %% % % %% % % %% % % %% % % %>% % % %% % % %% % % %% % % % % % % %% % % %>% % % %% % % % % % % %	% % % %% % % %C% % % %% % % %H% % % %% % % %@% % % %
%h%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %%%% %% % % %3% % % %'% % % %,% % % %.% % % %2% % % %% % % %% % % %%%% %"%%% %%%% %%%% %A%%% %%%% %%%% %% % % %% % % %% % % %% % % %% % % %% % % %0% % % %% % % %%%% %a%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %
% % % %% % % %% % % %% % % %% % % %% % % %% % % %X%%% %=%%% %%%% %%%% %)%%% %
%	%	% %%%% %&%%% %%%% %%%% %]% % % %3% % % %% % % %% % % %% % % %% % % %X% % % %% % % %_%%% %%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %k%d%j% %% % % % % % % %% % % %% % % %% % % %% % % %% % % %% % % %%%% %%%% %I%%% %%
%
% %%%% %.%%% %+%%% %%%% %1%%% %%%% %%%% % % % % %(% % % %% % % %% % % %% % % %% % % %*% % % %% % % %=%%% %%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %%%% %%y%y% %%%
% %Y%S%B% %%%% %%%% %% %% %%%% %% % % % %%% %%%q% %%%Y% %4% %% %%%% %%%%Q% %%%% %%%% %%%% %Q%0%% %%%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %% % % %% % % %&% % % %% % % %% % % %% % % %%%% %L%	%	% %%%% %% % % %-%%% %g%%% %%%% %%%% %8%%% %%%% %%%% %%%% %% % % %%%% %% % % %6% % % %% % % %% % % %% % % %1% % % %% % % %%%% %X%0%8% %s%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %%%% %%% % %%%% %%%% % % % % %#%G%R% %o%G%% %%% % % % % % % %%% %l%u%% %%%% %%%% %%%% %%%% %,%8%M% %V%T%D% %J%@%?% %	% % % %%%% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %%%% %8%%% %o%'%'% %#%%% %%%% %<%%% %%%% %%%% %%%% %4%	%	% %%%% %,%%% % % % % %% % % % % % % %.% % % %% % % %% % % %.% % % %% % % %% % % %[% % % %r%d%j% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%P%H%|% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%% %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % %%% %%%q% %%%5% %I%%% %q%%q% %%%Q% %
%%% %%%% %%%% %% % % %F%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %
% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %%%% %$%%% %
%
%
% %%%% %%%% %L%*%*% %%E%E% %&%%% %%%% %%%% %8%%% %%%% %%%% %%%% %%%% %% % % %% % % % % % % %@% % % %% % % %% % % %% % % %% % % %3% % % %x% % % %%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % %>% % % %c%L% % % % % % % % % %.%)%;% % % % % % % %3% % % % % % % % % %[%s%y% % % % % % % % % % % %6% %6% % % % % % % % % %.% % % % % %P%6%C% % % % % % % % % %F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %% % % %% % % %% % % %.% % % %% % % %% % % %	%%% %%%% %%
%
% %l% % % %%%% %%%% % %%% %?%%% %B%!%!% %%%% %6%%% %%%% %4%	%	% %%%% %W%%% %{% % % %% % % %% % % %j% % % %l% % % %[% % % %% % % %% % % %% % % %\% % % %% % % %a%d%j% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %	% % % %-% % % %% % % %% % % % % % % %% % % %%%% %)%%% %%%% %%%% %%%% %%V%V% %%a%a% % %%% %%%% %%@%@% %%%% %%%% %%%% %3%%% %%%% %X%%% %% % % % % % % %% % % %c% % % %x% % % %4% % % %% % % %2% % % %% % % %>% % % %%%% %%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % %
% % % %% % % %% % % %% % % %% % % %% % % %% % % %%%% %%%% %%%% %%%% %%%% %%%% % %%% %@%2%2% %@%&%&% %%%% %A%%% %?%%% %%%% %%%% %%%% %%%% % %%% %/% % % %% % % % % % % %5% % % %% % % %% % % %% % % %% % % %6% % % %3% % % %g%%% %%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% %%%% % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %}%%% % % %% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %% % % %% % % % % % % % % % % %% % % %
% % % %C%%% %L%%% %U%%% %+%%% %%J%J% %%]%]% % %%% %%%% %%%% % %%% %%D%D% %%%% %%%% %9%%% %%%% %%%% %%%% %%%% %% % % % % % % % % % % %% % % %% % % %% % % %<% % % % % % % %% % % %g% % % %% % % %4%%% %?%0%8% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %%%% %%y%y% %%%
% %Y%S%B% %%%% %%%% %% %% %%%% %% % % % %%% %%%q% %%%Y% %4% %% %%%% %%%%Q% %%%% %%%% %%%% %Q%0%% %%%% %%%% %%*%9% %u%U%F% % % %% %%%% %\%D% % %%%% %% %% % % %% %8%%% %%% % %3%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %% % % % % % % %% % % %% % % %% % % %% % % %%%% %%%% %%%% %B%%% %%%% %@%%% %@%1%1% %@%D%D% % %%% %A%k%k% % %%% %%8%8% %%%% %%%% %b%%% %%%% %%%% %w%%% %%%% %%%% % % % % %% % % %4% % % %% % % %l% % % %4% % % %% % % %g% % % % % % % %% % % %!% % % %%d%j% %<%h%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% % % % % %%%% %%% % %%%% %%%% % % % % %#%G%R% %o%G%% %%% % % % % % % %%% %l%u%% %%%% %%%% %%%% %%%% %,%8%M% %V%T%D% %J%@%?% %	% % % %%%% %% % % %%%% % % % % % %%% %%%% % % %% %)%.%#% % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %,% % % %% % % %% % % %% % % %
% % % %% % % %% % % %% % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %@%4%4% %%D%D% %%%% % %%% %B%%% %%%% %?%%% %<%%% %%%% %%%% %% % % % % % % % % % % %% % % %% % % % % % % %% % % %% % % %% % % %?% % % %%% % %%% % %<%% % %.%%% %%j%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%_%%_%d% % % % %I%D%A%T%% %%+%B% %(% %% %%%% %%
%% % % % % % % % % % % % % % % % % % % % % % %%% %%%q% %%%5% %I%%% %q%%q% %%%Q% %
%%% %%%% %%%% %% % % %F%*%9% %% % % %%%% % % % % % %%#% %%%% % % % % % % % % % % % % % % % % %%%% %(%#%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %% % % %% % % %.% % % %% % % % % % % %% % % %% % % %%%% %%%% %%%% %%<%<% %@%$%$% %%n%n% %%u%u% %%p%p% % %%% %%%% %%%% %?%%% % %	%	% %%%% %;%	%	% %%%% %=%%% %% % % %:%%% %9%%% %% % % %j% % % % % % % %5% % % %% % % %% % % %% % % %<% % % %9% % % %%% % %% % % %o%% % %%% % %c%%% %a%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % %>% % % %c%L% % % % % % % % % %.%)%;% % % % % % % %3% % % % % % % % % %[%s%y% % % % % % % % % % % %6% %6% % % % % % % % % %.% % % % % %P%6%C% % % % % % % % % %F% % % % % % % % % % % % % %% %&%'%% %%%% %.%% % %e%% % % % %% %%%'% %Y%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % %% % % %% % % %>% % % %% % % %% % % % % % % % % % % %% % % %f%%% %%%% %-%%% % %%% %%\%\% %%%% %%u%u% % %%% %@%.%.% %@%v%v% %%%% % %%% %%%% %%%% %%%% %E%%% %%%% %%%% % % % % %8%%% % % % % %% % % %i% % % %% % % %% % % %p% % % % % % % %% % % %8% % % %q% % % %%% % %n%% % %%% % %%% % %g%%% %Z%6%8% %<%b%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %6%D%W% % % % % % % % % % % % % % % %% %Y%W%D% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %+% % % %% % % %(% % % %% % % %0% % % % % % % %% % % %-% % % %F% % % %% % % %%%% %%%% %%%% %%%% %%%% % %%% % %%% % %%% % %%% %%%% %?%%% %%%%%% %%%% %%%% %%%% % %%% % % % % % % % % % % % % %8% % % %% % % %h% % % %% % % % % % % % % % % % % % % %8% % % %% % % %% % % %%% % %%% % %%% % %b%% % %6%
% % %=%% % %%%% %%%% %j%h%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % %% % % %% % % %% % % %% % % %% % % %C% % % %% % % %
%%% %%%% %:%%% %%%% %%%% %%%% %%%% %%%% %%m%m% % %%% % %%% %?%%% %%%% %%%% %%%% %r%%% %%%% % %%% % % % % % % % % %%%% % % % % %% % % %% % % %t% % % %% % % %% % % %% % % % %% % %%% % %r%% % %9%% % %q%% % % % % % %%% % %m%% % %% % % %%% % %%% % %%%% %,%%% %j%h%d% %5%4%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %%q%q% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % %% % % %% % % %,% % % %% % % %9% % % % % % % %% % % % % % % %)%%% %%%% %%%% %%4%4% %%P%P% % %%% % % % % % %%% % %%% % %%% %@%%% % %%% %}%%% %s%%% %%%% %% % % %<%%% % % % % % % % % % % % % %8% % % %% % % %% % % %% % % %%% % %%% % %p%% % %p%
% % %9%% % %8%% % %r%% % %%% % %% % % %:%% % %%% % %%% % %;%% % %%% % %;%% % %%%% % %%%% %%%j% %Z%<%8% %a%d%j% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % %% %x%S%g% %m%%% %+% %% %r%^%% %% %% %%%j% %%o%% %% %% %]%[%$% %%%% %Y%[%3% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %% % % %!% % % %% % % %% % % %% % % % % % % % % % % %% % % %%%% %%%% %%%% %n%!%!% %%%% % %%% % % % % %%n%n% %%%% %?%(%(% %%%% % %%% %%%% % %%% %%%% %%%% %%%% %%%% %u%%% %%%% % % % % % % % % %% % % %% % % %6%
% % %n%% % % %% % % % % % % % % % % %% % % % % % %%% % %% % % %%% % %;%	% % %%% % %:%
% % %%% % %%% % %4%
% % %%% % %
%% % %%% % %b%% % %*%%% %%%% %%% % %,%%% %S%% % %% %2% %5%4%2% %5%4%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %% % %]%o%H% %%%% %+%Y%% %#%G%R% %[% %% %%%% %%T%p% %e% %% %%%.% %J%@% % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % %% % % %% % % %% % % %6% % % %% % % %@% % % %% % % %% % % %X%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %?%%% %%<%<% % %%% %~%%% %%%% %w%%% %%%% %7%%% %%%% %%%% % % % % % % % % %% % % %n% % % %% % % %%% % % % % % %% % % %% % % %% % % %%% % %%%% %%%% %%% % %%%% %%% % %%%% %%% % %s%#%% %7%% % %%% % %1%% % %% % % %%% % %%% % % % % % %%% % %%% % %\%% % %%% % %%%% %%%% %%% % %% % % %%)%2% %%*%2% %5%4%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %+%>%a% %.%%% %%%% % % % % % % % % % %%,% %%%% %%%% %,% %
% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %t%N%%=% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % %% % % %1% % % %% % % %% % % %% % % %% % % %I% % % %%%% %%%% %2%%% %%%% % %%% %%%% % %%% %%%% %%%% % %%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %p%%% % % % % % % % % %% % % %7% % % %6%% % % % % % %%% % %% % % %% % % %% % % %%% % %v%%% %;%%% %{%2%% %z%$%% %{%$%% %<%%% %%%% %9%% % %%% % %%% % %% % % %%% % %% % % %%% % %%% % %`%% % %]%% % %\%% % %[%% % %% % % %Z%% % %Z%% % %#%%% %%%% %a%d%j% %,%0%8% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%k%e% % % % % %P%s%% % % % % % % % % % % %3% % % % % %3%%% % % % % % % % % %%%)% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %0% % % %% % % %%%% %%%% %<%%% %%%% %%%% %%}%}% % %%% % %%% % %%% % %%% % %%% %%%% %%%% %%%% %o%%% %%%% %%%% %%%% % % % % % % % % % % % % %% % % %m% % % %%% % %7% % % %o%% % %%%% %9%% % %%% % %t%%% %%%% %%%% %	%
%
% %%%% %G%%% %%%% %<%%% %%%% %%%% %%%% %%% % %1%% % %c%% % %%% % %%% % %%% % %% % % %%% % %%% % % % % % %|%% % %,%% % %,%
% % %% % % % % % % %%% % %%%% %%% % %%% % %?%]%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %% % % %% % % %% % % %% % % %% % % %% % % %$% % % %% % % % % % % %%%% %%%% %%%% %?%%% % %	%	% % %%% % %%% % %%% %%H%H% %A%%% %%%% %%%% %t%%% %%%% %%%% %%%% %=% % % %% % % %%%% % % % % % % % % % % % % %% % % %6%% % %n%% % %%% % %%%% % %%% %r%%% %%% % %%%% %%%%% %%%% %%%% %%%% %%%% %% %% %%%% %7%%% %%% % %f%% % %0%% % %%% % %% % % %%% % %%% % %%% % %%% % %X%% % %W%% % %% % % %% % % %*%% % %% % % % % % % %%% % %,%% % %%% % %-%% % %%%% %%F%8% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %$%% % % % % % % % % % %% % % %% % % %.% % % %% % % %% % % %"% % % %"% % % %% % % %% % % %.% % % %%%% %+%%% %@%%% % %%% %%%% %@%<%<% %%%% %%%% %@%%% %%%% % %%% %%%% %8%%% %%%% %w%%% %%%% %%%% %n% % % %% % % % % % % %6% % % %% % % %%% % %7%% % %n%%% %%% % %%% % %%%% %%%% %%%% %%%% %%%% % %%% % %%% %%%% %?%%%% %y%%% %%%% %%% % %%% % %%% % %%% % %%% % %,%% % %%% % %X%% % %% % % %%% % %% % % %%% % % %% % %}%% % %+%% % % % % % %Y%% % %%% % %Y%!% % %%% % %%% % %%% % %%l%j% %%,%2% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %K%k%e% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %,%% % %&%% % %)%:% % %%% % %% % % %#% % % %% % % %S% % % %% % % %6% % % %% % % %0% % % % % % % %&% % % %% % % %%%% %%%% %1%%% % %%% %@%)%)% %%%% % %%% % %%% %%K%K% % %%% %%%% %z%%% %%%% %%%% %% % % % %%% %%%% %n%%% %%%% %l% % % %% % % %% % % %l% % % % % % % %%% % %%%% % %%% %q%%% %%%% %%%% %%:%% %%%% % %%% %%f%A% % %%% % %%% %@% %% %%%% %%%% %1%%% %g%%% %.%% % %^%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %S%% % % % % % %% % % %R%
% % %%% % %% % % %%% % %%% % % % % % %%% % %.%	% % %%% % %%%% %[%9%8% %p%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%%Y% %G%%% %%%% %%%% %U%"%% %%%% %%%%Y% %j%a%6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% % %%% % %%% % %	%% % %%% % %%% % %%% % %% % % %5% % % %% % % %% % % %% % % %% % % %C% % % %% % % %% % % %% % % %(% % % %%%% %H%%% %%%% % %%% % %%% %?%:%:% %%%% %%Y%Y% % %%% % %%% % %%% %%%% %%%% %{%%% %%%% %%%% % %%% %%%% %8%% % %%% % % % % % % % % % %% % % % % % % % %% % %l%%% %]%%% % % % % %%%% %%%% %%	%% % %%% % %%% % % %"% % %%% %%i%F% %%x%% %2%	%% %%%% %,%%% %.%% % %\%% % %%% % %%% % %%% % %%% % %%% % %}%% % %%% % %% % % %%% % % % % % %'%	% % %%% % %*%% % %% % % %% % % %% % % %Z%% % %%% % %%% % %%% % %%% % %0%	% % %%m%j% %:%_%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%s% %&%% % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %C%E%8% %%~%j% % %%% %n%R% % %O%;% % %R%=% % %V%A% % %%% % %%% % %%% % %.%"% % % % % % %% % % %% % % % % % % %2% % % %% % % %% % % %% % % %% % % %% % % %% % % %\%%% %%%% %%%% % %%% %%%% % %%% %?%:%:% %%%% % %%% % %%% %?%%% %%%% %=%%% %%%% %%%% %%%% %n%%% % % % % % % % % % % % % % % % % % % % % %% % % %5%
% % % %% % %%%% %7%%% %%%% %%%% %%%% % %%% % %%% % %%% % %%!% % %%% %%%% %%%% %%%% %b%(% % %,%% % %%% % %%% % %%% % %%% % %%% % %N%"% % %(%% % %%% % %% % % %%% % %%% % %%% % %%% % %'%% % %P%% % %R%% % %T%% % %U%% % %% % % %,%% % %%% % %\%% % %_%% % %a%% % %%% % %%%% %a%d%j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%/% %I%%% %q%%q% %0%'%a% %\%%% %q%%% %%% % %U%"%% %q%%q% %0%'%a% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %.%%%p% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %"%% % %S%;% % %'%% % %%% % %%% % %%% % %%% % %%% % %,%"% % %W%B% % %%% % %%% % % % % % %% % % %% % % %% % % %% % % %Z% % % %% % % %?% % % %% % % %% % % %Z% % % % %%% %e%%% %%%% %K%%% % %4%4% %@%6%6% % %%% %%%% %%%% % %%% % %%% %~%%% %z%%% %r%%% %%%% %p%%% %%%% % % % % %% % % %%% % % %% % % % % % %5% % % %%% % %l%
% % %6%%% %%%% %%%% %%
%	% %T%%% %%%% % %%% %%%% % %%% % %%% %?%%% %5%%% %-%%% %%%% %%% % %%% % %%% % %%% % %R%#% % %%% % %%% % %%% % %%% % % %% % %N%% % % % % % %% % % %%% % %%% % %% % % %%% % %%% % %% % % %% % % %% % % %%% % %% % % %%% % %3%	% % %2%	% % %2%	% % %/%%% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %[%}%% % % % % % % % % % % % % %6% % % % % % % %%%% %% %% %%"%Y% %6%a%6% %6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %"%% % %.%% % %%% % %%% % %%% % %Q%>% % %%% % %%% % %+% % % %V%@% % %%% % %%% % %%% % %-%"% % % % % % %%% % %&%% % %% % % %% % % %% % % %C% % % %% % % %"% % % %(% % % %% % % % % % % % % % % %;%%% %%%% %%X%X% % %%% % %%% %@%&%&% %%%% %?%%% %@%%% %%%% %>%%% %%%% %%%% %o%% % %%% % %m%% % %%% % %6%% % %%% % % % % % % % % % %6%
% % % %% % %%% % %6%%% %%% % %F%%% %@%#%
% %%X%/% % %8%8% % %%% %%%l% % %%% %%%% %%%% %%%% %%% % %%% % %%% % %~%-% % %%% % %%% % %%% % %%% % %#%% % %H%% % %% % % %%% % %%% % %%% % % % % % %%% % %%% % %+%% % %Q%% % %%% % %%% % %% % % %%% % %]%% % %%% % %%% % %%% % %% % % %%% % %.%%% %%4%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % %% % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %o%b%=% %6%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%|%j% % %% % %D%4% % %I%6% % %%% % %%% % %%% % %%% % %`%% % %S%>% % %% % % %%% % %%% % %% % % %%% % %%% % %%% % %&%% % % % % % %% % % %% % % %% % % % % % % %% % % %'% % % %%% % %6%% % % % % % %% % % %%%% %%%% %%C%C% %%%% %%*%*% % %%% %%%% %?%"%% %%%% %@%
%% %%%% %>%%% %%%% %:%%% % % %% %%% % %%% % %%% % % % % % % % % % % % % % % %% % %% % % %%% % %6%% % %%%% %%%% %%% % % %%% % %"%!% % %%1% % % %% % %%% % %%% %%%% %%%% %%%% %%% % %U%+% % %%% % %%% % %%% % %%% % %I%% % %%% % %%% % %%% % %%% % % %% % %% % % %L%% % %%% % %%% % %N%
% % %%% % %% % % %% % % %% % % %%% % %%% % %% % % %%% % %2%	% % %6%
% % %%% % %h%% % %0%
% % %%v%j% %5%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %o% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%v%j% %%%% %<%2% % %%% % %'%% % %%% % %%% % %%% % %%% % %%% % %%}% % %%% % %%% % %%% % %%% % % % % % %-%"% % %%% % %%% % % % % % % % % % % %% % %%% % %#% % % %% % % %% % % %%% % %S%% % %%% % %U%% % % % % % %%%% %%%% % %%% %?%'%'% %%%% %@%4%4% %%%% %%%%% %@%%% %%%% %}%%% %%%% %t%%% %%%% %5%%% %%% % %7%	% % %%% % % %% % % % % % %6%
% % %% % % %%% % %l%% % % % % % %%%% %z%%% %%%% %%%% % %%% %%3%_% % % %% %%v%% %%%% %%%% %%%% %%<% % %%% % %%% % %%% % %%% % %H%% % %%% % %%% % %%% % %%% % % %% % %E%% % %% % % %%% % %% % % %%% % %%% % %%% % %%% % %% % % %%% % %% % % %%% % %/%% % %%% % %% % % %g%% % %%% % %%% % %i%% % %%% % %3%	% % %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %4%Z%H% %%m%J% %%%X% %$%% % % % % % % % % % %%%(% %%^%(% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %E%/%% % % % % % % % % % % % % % % % % % % % % %%%(% %%^%(% % % % % %4%Z%H% %%m%J% %%%X% %$%% % % % % % % % % % % % % % % % % % % % % % %X%j%T% %z%M%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %h%w%P% % % % % %h%w%P% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %E%/%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %y%x%j% %$%%% %%% % %%% % %)%% % %%% % %%% % %%% % %%% % %%% % %U%?% % %%% % %%% % %%% % %.%"% % %Y%C% % %Z%D% % %%% % %%% % %% % % % % % % % % % % %&%% % %% % % %% % % % % % % %% % % %#%% % % % % % %T%% % %%% % %%%% %2% % % %%%% % %%% %@%%% % %%% %%%% %%Q%F% % %%% % %%% %%%% %%%% %9%%% %%%% %r%% % %W%%% %p%% % %7%% % %%% % % % % % % % % % %5%
% % %%% % %k%% % %%% % % % %% %7%%% %%%% %A%%% %@%9%% %%%_% %%%% %%%% %%9%% %d%-%% %^%)%% %,%% % %%% % %%% % %%% % %$%% % %E%% % %%% % %%% % %%% % %A% % % %"%% % % %
% % %%% % %%% % %%% % %%% % %%% % %r%% % %P%% % %R%% % %S%% % %V%% % %X%% % %.%% % %_%% % %c%% % %e%% % %%% % %%% % %%% % %6%
% % %6%% % %%% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%	%% %% %% %%p%% %%%(% %%%0% %%%% %%%% %2%C%6% %%7%3% %s%w%% %x%y%D% %%%% %%%% %%i%/% %%%% %2%%% %A%W%D% %%%% %%%% %;%Q%6% %%%% %r%%% % % % % % % % % %%	%% %% %% %%p%% %%%(% %%R% % %% %&% % %%% %t%o%6% %%%% %G%?%% %%%% %%%X% %%%% %s%k%% %l%%J% %%%% %%%% %;%Q%6% %%%% %%%% %%%% % %%% %j%m%J% %%%*%% %%%% %%y%D% %%%% %r%%% %%%6% %%%% %\%J%% %% %% %%%% %%%% %2%C%<% %% %% %%%% %%o%1% %% %% %r%%% %D%.%% %A%W%D% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%j% %%% % %%% % %$%% % %%% % %%% % %%% % %%% % %%% % %*%% % %%% % %%% % %V%A% % %%% % %%% % %%% % %%% % %%% % %%e% % %% % % % % % % %%% % % % % % %%% % %<%% % %%% % %>%% % %%% % %K%% % %% % % %% % % %-%% % %%% % %%%% %%%% %%%% %%%% %%%% %?%3%%% %%%% %%%% % %%% %%%% %9%%% %%%% %5%% % % % %% %9%% % %%% % %%% % %%)% % %%% % %k%% % %%% % % % % % %%% % %6%% % %6%%% %%% % %x%4%% %%%% % %%% % %%% %%%\% % %%% %%%% %%%% %%%% %%% % %%% % %K%*% % %%% % %%% % %%% % %%% % %B% % % %%% % %%% % %!%% % %%% % %$%% % %C%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %% % % %% % % %%% % %%% % %% % % %%% % %h%% % %%% % %%% % %%% % %i%% % %5%
% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% %% %{%%_% %%%% %%%% %% %.% %6% % % %%%% %% %&% %N%L%*% %%%% %%%% %%%% %%%% %%% % %2%]%(% %%%% %v%%% %%%% %5%%% % %%% %/%% % % % % % % % % % %%%% %% %% %{%%_% %%%% % % %% %%%% %% % % %%%% %%%% %%%(% %%%% %%%7%% % %%% %.%2%% %%%% %v%%% % %?%?% %Y%%% %%%% %%%% % % %% % %%% %%%% %H%w%P% % %
%% %%%% % %%% %/%% % %%%% %%% % %3%%% %%%(% %%%% %k%r%:% %%%% %% %.% %6% % % %%%% %% %&% %/%% % % %%% %%%% %v%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %%%% %(%!% % %%% % %i%N% % %%% % %%% % %%% % %%% % %%% % %}%]% % %%% % %%% % %%% % %%% % %%% % % % % % %%% % %Z%C% % %X%C% % %%% % % % % % %%% % %%% % %L%	% % %%% % %%% % %0%% % %%% % %%% % % %% % % %%% % %%% % %% % % %b%% % %%%% %%%% %%%% %%%% %?%+%% %@%%% %@%0%% %%%% %?%%% %%%% %;%	%% %%% % %%%% %%% % %9%% % %%% % %% % % %% % % %%% % %k%% % % % % % %6%% % % % % % % % % % %%% % %8%%% %%%% % %%% %%%% %?%%% %%%% %;%%% %%%% %%%% %%% % %w%;% % %%% % %%% % %%% % %%% % %b%+% % %%% % %%% % %%% % %%% % %>%% % %%% % %%% % %%% % %%% % %K%	% % %P%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %k%% % %% % % %%% % %8%% % %6%
% % %%% % %f%% % %% % % %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %L%l%T% %I%%% %%%% %%%% %l%M%B% %5%%% %%% % %1%% % % % % % %%%% %%5%J% %%%% %%%% % % % % % % % % % %%% %%)%0% %z%%1% %%%% %%%% %%%% %%
% % % % % % % % % % %L%l%T% %I%%% %%%% %%%% %Y%]%P% %O%%	% %%%% % % % % % % % % % % % % %% %% %%%% %%%% %	%%% %%(%K% %z%%1% %%%% %% %% %%%% %%%% % % % % % % % % % % % % % % % % %% %% %%%% %%%% %%
% % % % % % % % % % % % % % % % % % % % % % % %%% %"%>%B% %b%%% %%% % %1%% % % % % % % % % % % %%% %%)%0% %z%%1% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %v%u%j% %(%%% %%% % %%% % %J%5% % %%% % %%% % %%% % %%% % %%% % %T%?% % %%% % %%% % %%% % % %% % %W%A% % %%% % %%% % %%d% % %%% % %%% % % % % % % % % % %N%% % % % % % % % % % % %% % % % % % %% % % % %% % %%% % %	%% % %/%% % %%% % %[%% % %%% % %.%% % %%%% %%%% %G%% % %@%%% % %%% % %%% %?%%% %%%% %%%%% % % % %I%D%A%T%:%%% %%%% %8%%% %%%% %%% % %p%
% % %% % % %%% % % % % % %m%% % %%% % %6%
% % %5%% % %%% % %6%% % %%%% %%5%% %%%% %%?%% %%%% % %%% %%%% %%$%% %X%1%% %%% % %%% % %%% % %%% % %%% % %%% % %^%(% % %%% % %%% % % %% % %%% % % %% % %%% % %E%% % %%% % %%% % %*%% % %)%% % %%% % %%% % %%% % %%% % %%% % %%% % %3%% % %%% % %;%% % %% % % %%% % %% % % %%% % %m%
% % % % % % %7%
% % %%% % %%% % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%	% %%%% %%%% %%%% % % % % % % % % %%%% %z%R%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %o%b%=% %6%4%2% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%	% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %v%u%j% %%%% %%% % %%% % %J%5% % %%% % %%% % %%% % %%% % %%% % %*% % % %U%?% % %%% % %%% % %%% % %%% % %%% % %%% % %Y%B% % %% % % % % % % % % % % % % % % % % % % %P%|% % %&%% % %%% % %&%% % %%% % %%% % %%% % %&%% % %%% % %%% % %/%% % %2%% % %%% % %%%% %%%% %%	%% %%%% %%%% %z%%
% %%%% %%%% %s%%% %%%% % %%% %8%%% %%% % %9%% % %%% % %6%
% % %X%% % %m%% % %%% % %%% % %%% % %%% % % % % % %l%% % %%%% %
%	%	% %%L%% %%z%% %%%% % %%% %%f%% %B%%% %%%% %%% % %%% % %%% % %?% % % %%% % %%% % %%% % %%% % %%% % %%% % %]%% % %%% % %%% % %%% % %%% % %K%% % %% % % %%% % %% % % %%% % %% % % %% % % %%% % %a%% % %%% % %%% % %% % % %%% % %% % % %%% % %9%% % %% % % %6%
% % %%% % %%% % %%% % %%$%2% %r%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% %%%% %% % % % % % % % % % % % % % % % % % % % %%%6% %%%_% % % % % % % % % % % % % % % % % %A%O% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%% % %%% % %$%% % %%% % %%% % %O%;% % %%% % %%% % %|%]% % %%% % %%% % %% % % %%% % % %% % %% % % %%% % %X%B% % %% % % % % % % %%% % %% % % %%% % %%% % %S%>% % %%% % %%
% % % %% % % % % % %%% % %'%% % %% % % %!%% % %%% % %%% % %%% % %^%% % %%%% %%%% %m%%% %3%%% %%%% %w%%% %%%% %%$%% %%%% %4%%% %%% % %%% % %8%% % %7%% % %% % % %X%% % %%;% % %%% % %%% % % %% % %6%% % %%% % %6%% % %%% % %m%%% % % %% %%%% %%\%% %%%% %8%%% %%%% %%%% %%% % %%% % %e%2% % %%% % %%% % %%% % %9%% % %%% % %%% % %%% % % %
% % %%% % %$%% % %&%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %3%% % %%% % %%% % %5%% % %8%% % %% % % %%% % %%% % %q%% % %% % % %%% % %7%
% % %% % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %v%u%j% %!%% % %&%% % %/%% % %&%% % %%% % %%% % %%% % %%% % %%% % % %% % % % % % %T%?% % %%% % %%% % %%% % %%% % %%b% % %%% % %%% % %% % % %% % % %% % % %%% % %'%% % %%% % % % % % % % % % % %% % %%% % %!%% % %% % % %% % % %%% % %#%% % %.%% % %
%% % %%% % %%% % %%% % %%%% %%%% %%%% %%%% %% %% %%%% %% % % %o%% % %4%
% % %%% % %%% % %% % % %7%% % %8%% % %%% % %6%% % %Z%% % %m%% % % % % % %6%% % % %% % %l%#% % %%%% %%%% %%%% % %$%-% %%W%% %%%% %%%% %y%D% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %>%% % %%% % %%% % %%% % %$%% % %%% % %%% % %% % % %%% % %\%% % %%% % %%% % %e%
% % %% % % %%% % %=%% % %%% % %%% % %8%% % %% % % %:%% % %%% % % % % % %o%% % %%% % %i%% % %%% % %%% % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % %% %t%_%k% %% % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %]%S%g% %%y%y% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % %%% %%q%{% %%y%g% %%%% % % % % % % % % % % % % % % % % % % % % % %%% %q%e%g% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %w%u%j% %N%@% % %@%4% % %%% % %#%% % %%% % %%% % %%% % %%% % %%% % %R%>% % %% % % %%% % % % % % % %% % % % % % %%% % %*% % % %%% % %)% % % %U%@% % %V%?% % %)%% % %&%% % %v%X% % %F%4% % %%% % %&%% % % % % % %%% % % %% % %%% % %%% % %% % % %%% % %"%% % % % % % % % % % %% % % %%% % %%% % %%%% %%%% %%%% %1%%% %%%% %h%% % %h%% % %%% % %X%% % %i%% % %i%% % %%% % %%% % %2%% % %%% % %[%% % %%R% % %%% % %%% % %7%% % %% % % %%% % %%%% %%%% % % % % % % %% %%%% %%%% %|%F% % %%% % %%% % %6%% % %% % % %%% % %%% % %%% % %%% % %%% % %"%% % %%% % %%% % %M%
% % %r%% % %R%% % %z%% % %S%% % %T%% % %% % % %z%% % %%% % %5%% % %% % % %%% % %%% % %% % % %:%% % %p%% % %%% % %%% % %:%% % %% % % %% % % %%% % %m%% % %%% % %0%% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %?%N%<% %%%% %%%% %%%% %%%% %%*%9% %%%% %%% % %%%% %%%% % %%\% %=%%% %%%% %%*%9% %%%% %%% % %l%u%c% %% % % % % % % % % %% %%%% %%%% %%%% %%%%Y% %%%% %[%%|% %%%% %Y%Q%P% %%%% %%%% %%%Y% %j%a%6% % % % % %%%% %5%G%v% %P%@%#% %%%% %K%k%U% %%%% %
%%% %%% % %I%-%% %%%% %%%% %%%% %%%\% %P%%% %%%% %%%% %a%-%% %%%% %%*%9% %u%U%F% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %E%9% % %%	% % %%% % %%%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %% % % % %% % %%% % %% % % %%% % %+% % % %%% % %T%@% % % %% % %%% % %%% % %%%% % %%% % %%% % %%% % %%% % %%% % % % % % %%% % %/%% % %%% % %%% % %% % % % % % % % % % % %%% % %*%% % %%% % %[%% % %%% % %%% % %%% % %f%% % %%% % %% % % %% % % %%% % %%*% % %%% % %% % % %f%% % %%% % %%% % %9%% % %2%% % %%% % %5%% % %%% % %m%(% % %7%% % %%% % %	%%% %A%E%,% %%%4% %%e%% %e%T%% %%%% %%% % %=%(% % %%% % %%% % %% % % %%% % % %% % %%% % %%
% % %$%
% % %%% % %)%% % %%% % %%% % %3%
% % %% % % %%% % %%% % %%% % %3%% % %c%% % %%% % %%% % %%% % %n%% % %%% % %% % % %%% % %%% % %%#% % %%% % %%% % %8%
% % %% % % %% % % %%% % %%% % %\%% % %%% % %%<%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %9%/%% %%%% %`%s%A% %%%% %%7%`% %%%u% %%%$% %%%% % %%% %l%k%c% %%%% %K%s%h% %%%% %%%% %%%$% %%%% % %%% %l%k%c% %% % % % % % % %8%R%f% %k%[%% %%%% %%%% %%%% %%%% %L%F%% %%%% %%*%R% %#% %!% %%%$% %%%% %J%/%% % % % % % %%% %%%% %%%% %{%%% %*%% % % % %% %%% % %
%%% %l%k%c% %%%% %J%% % %%%% %
% % % %%%% %%%% %w%%% %% % % %%u%]% %%%$% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %%%% %%% % %%% % %%% % %%%% % %%% % %%% % %%% % %Q%E% % %%% % %y%\% % %% % % %%% % %%% % %%% % %%% % %%% % %%`% % % %% % %%% % %%% % %% % % %%% % %$%% % %%% % %8%"% % %%% % %&%% % %%% % %&%% % %%% % %%% % %% % % %%	% % %%% % %%% % %%% % %+%% % %%% % %W%% % %%% % %% % % %%% % %%% % %%*% % %%% % %%% % %%% % %%% % %c%% % %%% % %_%% % %%% % %b%% % %0%% % % % % % %%% % %%% % %-%% % %%% % %j%.% % % %% % %%% % %p%1% % %%%% %%%% % %(%% %}%o%% %%%% %$%% % %%% % %%% % %%% % %%% % % % % % %!%
% % %E%% % %%% % %%% % %)%% % %Z%% % %%% % %% % % %%% % %%% % % % % % %%% % %1%% % %c%	% % %%% % %% % % %% % % %j%% % %%% % %%% % %=%% % %%% % %;%% % %t%% % %% % % %;%% % %%% % %%% % %4%	% % %%% % %%
% % %2%% % %%% % %(%% % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%4%2% %%%% %% %% %%%% %2%4%% %G%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % %G%*%9% %% % % %%%% % % % % % % % % % % % % % % % % %%%% %%y%% %%%%.% %I%%% %q%%q% %%%Q% %%>%[% %%%% %S%G%!% % % % % %%%% %.%+%*% %%%% % % % % % %%% %i%g%p% %%%% %%%% %% %% %%%% %% % % % % % % % % % % % % % % % % % % %%%% %%%
% %%%% %8%#%% %%y%% %q%%% %?%*%9% %% % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %2%)% % %%% % %%% % %$%% % %F%=% % %H%;% % %J%=% % %M%>% % % %% % % %% % % %% % % % % % % % % % % % % % % % % % %%% % %)%% % %%% % %%% % %%% % %P%=% % %'%% % %L%4% % %%% % %%% % %%% % % %% % %&%% % %%% % %%% % %%% % %%% % %%% % %%% % %%
% % %%	% % %E%% % %% % % %%% % %%% % %% % % %% % % %%% % %*%% % %%% % %+%% % %]%% % %%% % %%'% % %%% % %%% % %%% % %%% % %%% % %%% % %S%% % %&%% % %%% % %j%% % %%% % %%% % %%% % %7%% % %%% % %%%% % %%% % %%% %N% %% %%%% %%	% % %%% % %%% % %%% % %$%% % % % % % %%% % %%% % %%% % %%% % %1%	% % %%% % %%% % %%% % %%% % %%% % %5%% % %5%% % %%% % %	%% % %	% % % %%% % %	%% % %
%% % %=%% % %%% % %% % % %<%%% %;%%% %%% % % % % % %%% % %6%
% % %%% % %%% % %%
% % %0%% % %.%% % %%%%y%% % % % %I%D%A%T%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%%%%% %%%% %%%	% %%%% %%%% %_%_%_% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%-% %r%Y%>% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%%% %%%	% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %a%d%j% %%%% %%% % %A%5% % %
%% % %%% % %H%;% % %%% % %%% % %%% % %%% % %%% % %R%=% % %%% % %%% % %%% % %%% % %%% % %)%% % %% % % %%% % %%% % %%% % %%% % %!%% % %;%(% % %%% % %%% % % %% % % % % % %&%% % %%% % %%% % %%% % %%
% % %%% % %@%% % %
%% % %%% % %%% % %+%
% % %%% % %%% % %%% % %%% % %.%% % %Z%% % %%% % %%% % % % % % %/%% % %% % % %% % % %% % % %%% % %[%% % %%% % %%% % %%% % %)%
% % %%% % %%% % %%% % % % % % % % % % %8%% % %%% % %%% % %%
% % %%% % %%% % % % % % % % % % %N%% % %%% % %P%% % %*%% % %% % % %%% % %%% % %% % % %%% % %% % % %%% % %%% % %`%% % %% % % %% % % %% % % %%% % %%% % %6%% % %8%% % %%%% %%%% %%	%% %r%%% %%%% %%%% %p%%% %%%% %%% % %% % % %%% % %%% % %%% % %e%% % %%% % %%% % %%% % %%% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%P%k% %@% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %Y%H% % %%% % %%% % %%% % %H%;% % % % % % %% % % %%% % %%% % %%% % %)%% % %%% % %% % % %%% % %*%% % %R%>% % %%% % %Q%=% % %%% % %%% % %%% % %%% % %l%K% % %%% % %%% % %%% % %% % % %%% % % %% % % % % % %%% % %-%% % %%% % %%% % %% % % % % % % % % % % %%% % %L%% % %%% % %%% % %O%% % %%% % %%% % %%% % %%% % %% % % %%% % %-%% % %%% % % % % % %[%% % %%% % %Z%% % %%% % %% % % %V%% % %%% % %T%% % %% % % %%% % %T%% % %%% % %P%% % %%% % % % % % %%% % %%% % %%% % %%% % %% % % %% % % %% % % % % % % %%% % %3%
% % %% % % %% % % %%% % %%% % %%% % %^%% % %%% % %c%% % %% % % %%% % %%% % %% % % %%% % %r%%% %%% % %%% % %	%%% %%*%% %%%% %%%% %%%% %H%%% %%%% %o%% % %% % % %%% % %%% % %3%% % %%% % %%% % %%% % %%% % %%% % %Q%#% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %%% % %%% % %%% % % % % % %%% % %%% % %%% % %%% % %)%!% % %'% % % %O%7% % %%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %:%)% % %%% % %%% % %%%% % %%% % %%% % %%% % %%
% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %T%% % %%% % %% % % %U%% % %%% % %%!% % %% % % % % % % % % % % %%% % %%% % %%% % % % % % %% % % % % % % %%% % %%% % %% % % %% % % %%% % %%% % %%% % %[%% % % % % % %% % % % % % % %%% % %	%% % %% % % %% % % %% % % %%% % %% % % %%% % %0%	% % %%% % %e%% % %%% % %% % % %% % % %h%% % %%% % %i%
% % %% % % %%%% %%%% %%%% %%	%% %I%!%
% %%%% %%+%% %%	%	% % %%% % % %% % %%% %A%%% %%%% %%%% %%% % %%% % %g%% % %% % % %%% % %%% % %%% % %%% % %Q%#% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%% % %%% % %%% % %%% % %%% % %&%% % %E%8% % %%% % %%% % %%% % %%% % %%% % % % % % % % % % %%% % % %% % % % % % %%% % %%% % %%% % %%% % %$%% % %#%% % %?%+% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %-%% % %%% % %%% % %9%% % %%% % %$%% % %%% % %b%!% % %%% % %%% % %%% % %%% % %%% % %% % % %% % % %% % % %%% % %%% % %% % % %%% % %% % % % % % % %%!% % %% % % % % % % %% % % %% % % %%% % %Y%% % %% % % % % % % %% % % %%% % %%% % %% % % %%% % %% % % %%% % %% % % %%% % %-%	% % %% % % %%% % % % % % %d%% % %%% % %%% % %c%% % %%% % %%% % %% % % %%% % %%%% %p%%% %%%% %r%%% %%%% %%%% %%;%% %%%% % %%% %%%% %%%% %@%%% % %%% % %%% % %%% % %%% %|%%
% %z%%% %h%% % %d%% % %%% % %% % % %%% % %%% % %%% % %%% % %!%% % %%6%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %9%5% % %%% % %%% % %%% % %%%% % % %% % %"%% % % % % % % %% % % % % % %%% % %L%>% % %%% % %P%;% % %%% % %%% % % % % % % % % % %%% % %u%Q% % %%% % %%% % %%% % %%% % %%% % %%% % %8%"% % %%% % %%% % %(%% % %%% % %%% % %%% % %%
% % %%% % %%% % %%% % %%% % % %% % %% % % %C%% % %%% % %%% % %p%% % %%% % %% % % %%% % %%% % %*%% % %%% % %,%% % %-%% % %% % % %% % % %% % % % % % % % % % % %% % % %%% % %[%% % %% % % % %% % %%% % % % % % % % % % %%% % %%	% % %% % % % % % % %%% % %`%% % %%% % %% % % %2%
% % %% % % %% % % %% % % %% % % %6%
% % %%% % %6%
% % %%% % %%%% %%%% %%%% %%%% %%%% %b%%% %%K%'% % %%% % %%% % %%% % %%% %@%%% %%%% %@%%% % %%% % %%% %%%% %%%% %%%% %%% % %%% % %%% % %%% % %% % % %+%% % %%% % %%% % %%% % %%% % %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % %%% % %%% % %<%1% % %
%	% % %%% % % %% % %% % % % %% % %%% % %%% % %%% % %%% % %%% % % % % % %O%<% % %% % % % %% % %%% % %%% % %%% % %%% % %%% % %!%% % %>%&% % %%% % %%% % %%% % %F%&% % %%% % %%
% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % %B%% % % %% % % %% % %%% % %#%% % %%% % %K%% % %%% % %%% % %%% % %Q%% % %%% % %%% % %%% % %%% % %%% % %%% % % % % % %% % % %% % % %%% % %%% % %%% % % % % % %^%% % % % % % %% % % %%% % %_%% % %% % % %%% % % % % % %% % % %5%
% % %%% % %8%% % %% % % %%% % %% % % %%%% %;%%% %%%% %A%%% %%%% %%%% %%%% %>%#%% %% %% % %%% %%%% % %J%I% % %%% % %%% % %%% % %%% % %%% %?%%% %%%% %=%%% %%%% %%%% %p%%% %%%% %%%% %%%% %%% % %%% % %%% % %'%
% % %w%% % %{%5% % %%% % %%%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %%% % %0%'% % %% % % % %% % %@%3% % %%% % %H%:% % %%% % %%% % %%% % %(%!% % %&%% % %M%8% % %% % % %%% % %%% % % %% % % %% % %%% % %%% % %"%% % %E%0% % %%% % %%% % %%% % % %% % %P%2% % %%% % %%% % %0%% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %J%% % %% % % %% % % %% % % %%% % %%% % %%% % %% % % %)%
% % %+%
% % %%% % %-%
% % %-%% % %% % % %% % % %%% % %%% % %\%% % %%% % %% % % %% % % % %% % %% % % %%% % %%% % %% % % %% % % %%% % %% % % %%% % %%% % %%% % %%%% %%%% %%% % %%%% %%%% %%%
% %h%%% %%I%*% %%%% % %%% % %%% % %%% % %%% %%m%% %%%% %%r%D% % %%% % %%% % %%% % %%% %=%%% %@%%% %4%%% %m%%% %%%% %%%% %%%% %%% % %%% % %+%% % %%% % %%% % %%% % %(%% % %%% % %%% % %y%X%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%&% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %% % % %%% % %%% % %%% % %%% % % % % % %%% % %%% % %J%<% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %#%% % %I%1% % %%% % %%% % %C%.% % %%% % %<%%% % % %% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %Z%+% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %% % % %%% % %R%% % %% % % %% % % % %% % % %% % %%% % %X%% % %%% % %%% % %% % % % % % % % % % % %%% % %% % % %% % % %%% % %% % % %%% % %%% % %% % % %% % % %%% % %%%% %%%% %%% % %%% % %j%%% %:%%% %%%% %@%%% %%.%% %%%% %%%% %%%% %%C%D% % %(%'% % %"%#% % %%% % %%% % % %% % %%% % %%% % %%% % %%% % %%% %%%% %%%% %%%% %4%%% %f%%% %%%% %% % % %%% % %%% % %%% % %%% % %$%	% % %%% % %(%% % %%% % %L%!% % %%% % %%#%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%% % % % % % %%% % %%% % %%% % % % % % %%% % %%% % %g%R% % %%% % %%% % %%% % %% % % %K%<% % %%% % %M%9% % %%% % % % % % %L%9% % %K%8% % %%% % %!%% % %%% % %%% % %%% % %B%0% % %%% % %%% % %%% % %7%% % %% % % %%% % %%% % %6%% % %%% % %%% % %%% % %%% % % % % % %>%% % %%% % %%% % %f%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %)%
% % %+%
% % % % % % %% % % %%% % % %% % % %% % %%% % %%% % % % % % %%% % %%% % %% % % %%% % %% % % %% % % %%% % %%% % %%%% %%%% %%%% %%%% %7%%% %v%&%% %%%% %%0%% %%%% % %%% % %%% % %%% % %%% % %%% % %E%E% % %%% % %%% % %%% % %%% % %%% % %%% %?%%% %%%% %%%% %%%% %3%%% %\%!%% %%%% %%%% %%% % %%% % %% % % %%% % %% % % %\%% % %l%% % %%% % %R%,% % %%% % %%% % %%% % %%% % %{%%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %&%#% % %%% % % %% % % % % % %%% % %A%<% % %%% % %%% % %$%% % %%% % %%% % % %% % % % % % %%% % %%% % %K%9% % % % % % %%% % %%% % % %% % %%% % %%% % %D%/% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %% % % %%% % %%% % %%	% % %%% % %%% % %<%% % % % % % %% % % %%% % % %% % %% % % %C%% % %%% % %%% % %%% % %%%% % %)%% % %%% % %%% % %%% % %% % % %%% % %%% % %% % % %%% % %% % % %%% % %%% % %%% % %%% % %% % % %_%% % %%% % %%%% %%% % %f%%% %%%% %%%% %%%% %%%% %	%%% %	%%% %%%% %%%% % %%% % %%% % %%% % %%% % %
%% %%m%Y% %%%% %%h%S% % %%% % %%% % %%% %%%% %%%% %%%% %%%% %%:%
% %%%% %%%% %%%% %%%% %.%% % %%% % %.%% % %% % % %%% % %%% % %%% % %'%% % %O%$% % %%% % %%% % %%% % %%% % %%$%2% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%#% % % % % % %(%$% % %%% % %%% % %=%5% % %%% % %%% % %%% % %"%% % %%% % %%% % %%% % %%% % %n%[% % %%% % %%% % % % % % % % % % %%% % %%% % %%% % %H%2% % %%% % %% % % %%% % % %% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % % % % % % %% % %%% % %B%% % %% % % %%% % %%% % %%% % %%% % %L%% % %% % % %% % % %&%% % %)%% % %%% % %)%% % %,%% % %% % % %%% % %%% % %%% % % % % % %Y%% % %%% % %% % % % %%% % %%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%	%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% %%%% %%%% %%%% %%%% %9%%% %c%%% %%%% %%%% %%%% %%%% %%% % %%% % %%% % %*%% % %%% % %&%
% % %%% % %%% % %+%% % %%% % %M% % % %%% % %%% % %%% % %%% % %%% % %%%% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %&%#% % %% % % % %% % %/%)% % %%% % %%% % %%% % %?%9% % %%% % %%% % % % % % %I%;% % %%% % % %% % %$%"% % %%% % %$%% % % %% % %%% % %H%6% % %%% % %%% % %D%-% % %%% % %%% % % %% % %?%)% % %%% % %%% % %%% % %:%!% % %%% % % %% % %%% % %%% % %V%.% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %% % % % %% % %%% % % % % % % % % % % %% % % %% % %%% % %S%% % %%% % %%% % %%% % % % % % %% % % %%% % %%% % % % % % %%% % %%% % % % % % % %% % %.%%% %%%% %6%%% % %%% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %*%%% %^%%% %%%% %%%% %%%% %%%% %%%% %%%% %%% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %*%% % %S%% % %%% % %%% % %%% % %%% % %%% % %%% % %A%/% % %%%	% %!%/%% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%% % % % % % %%% % %(%'% % %%% % % %% % %%% % %%% % %%% % %%% % % %% % %$%% % %%% % %%% % % % % % %#%% % %%% % %%% % %%% % %H%7% % % %% % % % % % %G%7% % %%% % % %% % % %% % %!%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %% % % %:%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %$%% % %"%% % %%% % % % % % % % % % % % % % %%% % %% % % %%% % %% % % %%% % % %% % %% % % %%% % %%% % %%% % %% % % %%% % %%%% %% % % %%% % %,%% % %%%% %-%% % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % %8%%% %V%%% %%%% %%%% %%%% %"%%% %%%% %%%% %%%% %%%% %%% % %% % % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %)%% % %S%%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%
% % %%% % %w%%% %b%=%% %l%%% %a%d%j% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%% % %&%#% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %C%:% % %%% % %#%% % %%% % %% % % % % % % %% % % %#%% % %%% % %H%7% % %%% % % % % % %%% % %%% % %"%% % %%% % %A%'% % %%% % %%% % %%% % %%% % %=%'% % %%% % %%% % %9%% % %%% % %:%% % % % % % % % % % % % % % %%% % %@% % % %% % % %%% % %%% % %%% % %%% % %#%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %% % % %%% % %% % % %%% % %%% % %%% % %% % % %% % % %% %% %%%% %% % % %%% % %%%% %%%% %% %% %%% % %% % % %d%"%% %%%% %U% %% %%%% %% %% % % %% %%%% % %%% % % %% %%%% %%% % %% %% %%% % %%% % %% % % %%% % %% % % %%% % %%% % %%% % %%% % %%	% % %*%% % %(%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %!% % %%% % %%% % %%% % %a%%% %R%e%% %%% % %%%% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %0%#%y%}% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % %%%o%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %'%0%	% %%%% %9%5% % %%% % %'%'% % %%% % %8%1% % %%% % %%% % %%% % %@%7% % %%% % %F%6% % %%% % %%% % %%% % %$%% % %G%=% % %%% % %H%4% % %%% % %%% % %%% % %%% % %E%2% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % % % % %%% % % %% % % % % % %%% % %%% % %%% % % %% % %% % % % %% % %C%% % %%% % %%% % %%% % %%% % %%% % % %% % %J%% % %%% % %% % % %%% % %%% % %% % % %%% % %O% % % %% % % %%% % %%% % %% % % %%% % %%% % %%% % %U%%% %%% % %% %% %%%% %% %% %%%% %%%% %%%% %%%% %% % % % % % % % %% % % %% % % % % % %X%% % %%% % %Z%% % %% % % %% % % %% % % %%% % %%% % %%% % %%% % %*%% % %Q% % % %%% % %%% % %%% % %N%"% % %%% % %% % % %%% % %%% % %%% % %B%*% % %%% % %%% % %%% % %V%[%% %%%% %%%% %%%% %%% % %%%% % % %t% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%)% %% %% % % % % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %@%:% % %%% % %E%9% % %%% % %G%9% % %%% % %%% % %G%<% % %%% % %F%2% % %%% % %%% % %#%% % %%% % %D%0% % %%% % %%% % %%% % %>%'% % %%% % %% % % %%% % %%% % %%% % %%% % % %% % % %% % %%% % % % % % % % % % %%% % %%% % % %% % % %% % % %% % %%% % % % % % %% % % % %% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %% % % %%% % %% % % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %% % % %% % % %% %% %%%% % %% % %(%% % %%% % %,%% % % % % % %%% % %%% % % % % % % % % % % % % % %%% % %%% % % % % % %%% % %% % % %%
% % % %% % %(%% % %Q%$% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %c%2% % %%% % %%% % %%% % %V%[%% %%
%% %%%% %%% % %(%5%% %&%3%'% %%%% %%%% %5%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %%% % % % % % %%% % %)%&% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %C%6% % %%% % %%% % %%% % %%% % %F%:% % %%% % %%% % %#%% % % % % % % % % % % %% % % %% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %;%&% % %;%%% % %<%,% % % %% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %"%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %'%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %O%-% % %O%-% % %P%#% % %O%#% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %"%% % %@%(% % %%% % %%% % %%% % %%% % % %% % %%% % %W%k%% %%%% %%%% %%% % %	%%% %%%% %%%|% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % % % % %%%% % % % % %%% % %%% % %A%>% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %% % % %% % % % %% % %%% % %%% % % % % % % % % % %% % % %%% % %!%% % %B%/% % %%% % %%% % %%% % %%% % % % % % %%% % %% % % %% % % % % % % % % % % %<%!% % %<%#% % %<%&% % % %% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %!%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %N%-% % %'%% % %O%"% % %N%"% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %B%0% % %%% % %%% % %%% % %%% % %%% % %%% % %Q%V%% %%% % %U%j%% %%% % %,%6%
% %%%% %%%% %%% % %A%h%(% %% %% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %5%9%% %%%% %&%#% % %% % % %%% % %-%,% % %%% % %9%1% % %%% % %%% % %%% % %%% % %%% % %%% % %E%8% % %%% % %%% % %%% % %E%8% % %%% % % %% % %%% % %!%% % %"%% % %%% % %A%,% % %%% % %!%% % %%% % %%% % %%% % %<%$% % %% % % % %% % %%% % % % % % %%% % %;%% % % % % % %%% % %%% % %%% % %% % % %%% % %>%$% % %%% % % % % % %% % % %%% % %%% % %%% % %% % % %% % % %#%% % %%%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % % % % % % % % %% % % %%% % %%% % % % % % % % % % % %% % % %% % % % % % % % % % %%% % %$%% % %K%% % % % % % % % % % % % % % %% % % %%% % %%% % %%% % %% % % %%% % %%% % %% % % %% % % %%% % %%% % %%% % %%% % %%% % % %% % %C%*% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % %%% % %%`%% %%%% %%%% %Y%m%% %%%% %Q%k%% %%%% %(%6%% %%%% %@%f%'% %%%% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %%%% %%%% %%%% %&%#% % %%% % %%% % %%% % %%% % %%% % %%% % %>%6% % %%% % %%% % %!%% % %%% % %E%6% % %%% % %D%7% % %%% % % % % % % % % % %D%;% % %%% % %%% % %!%% % % %% % %% % % % % % % %% % % % %% % %%% % %%% % %%% % %%% % %<%%% % %%% % % %% % % % % % % % % % % % % % %%% % % % % % % % % % % %% % %%% % %=%"% % %%% % %%% % %% % % %%% % %@%% % %% % % %%% % %%% % %%% % %% % % %%% % %%% % %%% % % %% % %% % % %J%,% % % %% % %%% % %% % % %%% % %G%%% % %% % % % %% % %%% % %% % % % % % % %% % % %%% % %"%% % %%% % %% % % % % % % % % % % % % % % %%% % %"%% % %%% % %% % % % %% % %% % % %% % % %%% % %#%% % %%% % %%% % %D%7% % %%% % %%% % %%% % %%% % %%% % %%% % %%#% % % % % % %%% % %%% % %$%*%% %%%% %X%s%% %%%% %%%% % %% % %%%% %Q%k%% %%%% %%% % %%%% %!%4%% %%j%|% %%j%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %#%&%% %%%% % %#% % %%% % %%% % %%% % %%% % %%% % %:%3% % %%% % %%% % %%% % % % % % %A%:% % %%% % %%% % %%% % %% % % %% % % %% % % %% % % %!%% % %%% % %%% % %%% % %B%,% % %%% % %%% % %%% % % %% % % %% % %%% % %% % % %%% % % %% % %%% % %%% % %%% % %% % % % % % % %%% % %%% % %>%"% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % % % % % %%% % %C%"% % %%% % %% % % %%% % %% % % % %% % %%% % %%% % %%% % %% % % % % % % %% % % % %% % %% % % %%% % %%% % %%% % %% % % %% % % %%% % % %% % % % % % %%% % %G%% % %%% % %% % % %%% % %%% % % %% % %%% % %% % % %A%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %Y%H% % % % % % %%% % %A%A% % %%%% %%%% %%
%	% %%%% %/%9%% %{%\%% %w%%,% %%% % % % %% %)%6%% %%%% % % %% %?%e%&% % %2%% %%%% %5%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%d% % % % %I%D%A%T% % %5%4%2% %#%!%1% % % %% %%%% %%%% %'%"%% %%% % %%% % %%% % %%% % %%% % %:%0% % % % % % %% % % %%% % %%% % %%% % %!%!% % %%% % %"%% % %#%% % % % % % %% % % %%% % % %% % %"%% % % % % % %%% % %%% % %@%,% % %%% % %@%,% % %%% % % % % % % % % % %>%*% % %%% % %%% % %%% % %%% % % %% % % %% % %%% % % % % % %% % % %%% % % % % % %% % % %% % % %% % % %%% % %%% % %% % % %% % % %%% % %% % % %% % % %% % % %%% % %%% % %%% % %% % % % % % % %% % % %% % % % %% % %%% % %%% % % % % % % % % % % % % % %% % % %% % % %%% % %G%% % %%% % %% % % % %% % %%% % %% % % %%% % %%% % %%% % %%% % % % % % %D%5% % %% % % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %g%g% % %%%% %A%X%% %%% % %-%8%
% %%%% %%% % %&%7%% %%%% %)%6%% %(%6%% % % %% %"%6%% %A%i%'% %%%% %A%i%&% %%%% %|%%~% %%m%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %X%U%c% %%%m% % % % % %"%'%% %%%% %'%"%% %%% % %%% % %6%9% % %%% % %%% % %%% % %!%% % % % % % %%% % %%% % %%% % %!%% % %%% % %%% % %"%% % %"%% % %%% % %C%6% % % % % % % % % % %C%6% % %%% % %%% % %%% % %?%+% % % %% % % % % % % %% % % %% % % % % % % %% % %%% % %%% % % % % % %% % % %%% % %%% % %%% % % %% % % %% % % % % % % % % % %>%"% % %%% % %%% % %%% % %% % % %% % % % %% % %%% % %%% % %%% % %%% % %%% % % % % % %% % % % % % % %% % % %% % % %%% % %%% % % %% % %% % % % % % % % % % % % % % % %%% % %%% % %%% % % % % % %%% % % %% % %% % % %"%% % % %% % %A%)% % %% % % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %<%7% % %%% % % % % % %%% % %%% % %%% % %%% % %%%
% %%%% %%%% %Z%s%% %%%% %1%<%% %%%% %S%p%#% % %% % %%%% %%%% % % % % %C%l%5% %%% % %C%k%(% %%%% %%%% %4%%)% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%0% %%%% % % % % %"%'%% %%%% %'%"%% %%% % %%% % %%% % %2%6% % %%% % %%% % % %% % %%% % %?%8% % %%% % %%% % %%% % % %% % %%% % %%% % % % % % %% % % %%% % % % % % % % % % % % % % %A%5% % %%% % %%% % % %% % %%% % %%% % %%% % %%% % %>%*% % %%% % %% % % % %% % %% % % %%% % %%% % %;%)% % % %% % % %% % %% % % % % % % %%% % %%% % %%% % % % % % %% % % % %% % %%% % % % % % % % % % %%% % %%% % % % % % % % % % % % % % % % % % %% % % % % % % %%% % %%% % % % % % % % % % %%% % % % % % %%% % %%% % %%% % %B%4% % % % % % % % % % % % % % % % % % %% % % %%% % %%% % %% % % %% % % % % % % %%% % %%% % %<%&% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %#%)% % %E%E% % %%% % %J%Z%% %%% % %%%% %,%<%% %%%% %[%q%% %%%% %%%% %%% % %% % % %)%7%% %(%7%% %%[%% %5%k%% % %%% %%% % %B%j%'% % % %% %%%% %%%% % % %d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %X%U%c% %%%l% % % % % % % % % %"%'%% %%%% %;%:%% %%% % %%% % % % % % %%% % %%% % %%% % % %% % %%% % % % % % %%% % %%% % %%% % %%% % %%% % %!%% % %%% % %"%% % %!%% % % % % % % %% % %%% % %B%6% % % %% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % % %% % % %% % %%% % %% % % % % % % % % % % % % % % % %% % %%% % % % % % %;%)% % % % % % %<%(% % % % % % % % % % %%% % %%% % % % % % % % % % %%% % %;%'% % %% % % % %% % %% % % %% % % % % % % % % % % %%% % %=%'% % % %% % %% % % % % % % % % % % % % % % %%% % %?%'% % %%% % %% % % % %% % % % % % % % % % %%% % %>%&% % %%% % %% % % % %% % %% % % %%% % %%% % %%	% % %=%<% % %% % % %%% % %%% % %%% % %%% % %$%*% % %&%&% % %%% % %q%%% %%%% %%%% %,%?%% %0%:%% %%%% %%% % %% %% %*%8%% % % % % % % % % %%% % % %%% %#%7%% %%%% %!%5%% %!%5%% %% % % %%%% %%%% %%3%% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%0% %%%% % % % % % % % % %%%% %%%% %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %B%<% % %%% % %%% % %%% % % %% % % %% % % % % % % %% % %%% % %%% % %!%% % %@%3% % % %% % %%% % %%% % %%% % %%% % % %% % % % % % % % % % % % % % % %% % % % % % %%% % %%% % %%% % % % % % %% % % %% % % %% % % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %Z%O% % %<%1% % %%% % % %% % %%% % %%% % %?%K% % %%% % %*%*% % %%%% %&%0%
% %%%% %%%% %,%?%% %%%% %%%% %%% % %%%% %'%9%% % %% % %%%% %%% % % %% % %%% % %% %% %E%n%)% %%% % %%%% %%%% % %% % %%5%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %%%q% %%%% %#%&%% % % % % %#%&%% %%%% %%%% %.%.% % % % % % % % % % %%% % %6%6% % %%% % %%% % %%% % %>%7% % %% % % %%% % %@%8% % %%% % %%% % %!%% % %!%% % %%% % %%% % %%% % %A%4% % % % % % %% % % %%% % % % % % %%% % % %% % %!%% % % %% % %%% % %% % % %%% % %%% % %%% % % % % % %%% % %%% % % % % % % % % % % % % % %%% % %%% % % % % % % % % % %% % % % % % % % %% % %%% % %%% % %%% % % %% % % % % % % % % % % % % % %% % % %%% % %=%&% % %%% % % % % % % % % % % % % % % % % % % % % % %%% % %%% % %% % % %%% % %%% % % % % % % %
% % %%% % %%#% % %;%(% % % % % % % % % % % %% % %%% % % %% % %%% % %%% % %%% % %^%d% % %%% % %%% % %%
%% %%%% %.%4%% %%%% %%%% % %%% %1%;%% %%%% %%%% % % % % %% %
% %*%9%% % %% % %*%7%% %%%% %)%7%% %%%% %F%o%6% %%% % %"%7%% %"%6%% %%%% %%%% %4%h%% %%5%% %%% % %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%!%/% %%%% %%%% %% % % % % % % %%%% %%%% %%%% %2%0%% %%% % %4%4% % %%% % %%% % %8%8% % %%% % %%% % %%% % % % % % %%% % %%% % %%% % %%% % % % % % % %% % % %% % % %% % %%% % % % % % % %% % % %% % % %% % % % % % %% % % %%% % % %% % %%% % %%% % %?%2% % %%% % %% % % %;%1% % %%% % %%% % % % % % %% % % % %% % %%% % %%% % %% % % % % % % %%% % %%% % % %% % %% % % %% % % %% % % % %% % % % % % % % % % % % % % % %% % %%% % %%% % % % % % % % % % %%% % %%% % % % % % % % % % %%% % %%% % % %% % %%% % %;%)% % % % % % %%% % %%% % %%% % % % % % % % % % % % % % %%% % % % % % %%% % %!%&% % %B%5% % %%% % %	%	% % %%% % %%% % %x%%% %%%% %	%
%% %	%
%% % %%% %0%;%% %%% % %/%:%
% %%%% %%%% %Q%q%% %%% % % % % % % % % % %T%p%% %%%% %% %% % % %% %% %% % %% % %%%% %E%m%)% %%%% %%%% %%0%% %%4%% %%i%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %[%U%`% %%%q% %%&%
% %%%% %#% % % % % % % % % % % %!%$%% %%%% %	%%% %%% % %%% % %%% % % % % % % % % % %9%9% % %%% % %%% % %%% % % %% % %!%% % %% % % %%% % % %% % %%% % %B%:% % % %% % %% % % %% % % %%% % %%% % %%% % %%% % %@%4% % %%% % % % % % %%% % %%% % % %% % %%% % %%% % % %% % % %% % %% % % %% % % % %% % %%% % %;%0% % % % % % % % % % %%% % %%% % % % % % %% % %%%0%% % % % %I%D%A%T% %%% % % %% % % % % % % % % % % % % % % % % % % % % % %%% % %%% % % % % % % % % % %%% % %:%(% % % % % % % % % % % %% % %;%0% % % %% % % % % % % % % % % % % % %%% % %<%1% % % % % % % % % % %%% % % %% % %%% % %_%_% % %%% % %%% % %%% % %'%'% % %%%% %#%,%	% %%%/%% %%%% %%%% %%%% %-%?%% %%%% %3%?%% %%% % % % % % %%%% %'%9%% %%%% %*%8%% %% % % % % % % % % % % %%%% %#%8%% %%%% %E%o%)% %%%% % %% % %% %% %% %% %%% % %%%% %%1%% %9%f%,% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%v%% %%%t% %%%% %%% % %%%% %%%% % % % % %#%%%% %%% % %%% % %%%% %%% % % % % % % % % % %%% % %%% % %Y%Y% % %%% % %%% % %%% % %%% % %A%8% % %%% % %% % % %% % % %% % % % %% % %% % % %#%% % %!%% % % %% % %%% % %%% % % % % % %%% % % %% % %%% % %% % % % %% % %%% % % % % % % %% % %% % % %% % % % %% % %%% % %%% % % % % % % %% % % %% % % %% % %% % % % % % % %%% % %;%0% % % % % % % % % % % % % % % % % % % % % % %%% % %;%0% % % % % % %% % % % % % % % % % % % %% % %%% % %%% % % %% % %% % % % % % % % % % % % % % % % % % % %%% % %%% % %%% % %A%E% % %%% % %d%d% % %%% % %%% % %%% % %%%% %'%7%
% %P%B%% %%	%% %%%% %%%% %+%=%% %\%v%% %%%% %%%% %%%% % %% % %%%% %U%r% % %% % % %%%% %%%% %T%q%% %% % % %%%% %@%p%8% %%%% %#%8%% %%%% %E%n%)% %% %% %%%% %%8%% %%4%% %%%% %%%% %%%% %%%% %j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%/% %%%% %%%% %% %% %%%% %#%&%% % % % % %%%% %%&%% %%%% %%%% % %%% %%% % %%% % %%% % %%% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % % %% % % %% % % %% % % %% % %%% % %% % % % %% % % % % % %D%?% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %?%3% % % % % % %% % % %%% % % %% % %%% % %%% % % %% % % % % % % % % % %%% % %% % % % % % % %%% % %%% % % % % % % % % % % % % % % % % % % % % % %%% % %%% % % %% % % % % % % % % % % % % % % % % % %%% % %<%1% % %%% % %%% % % % % % %%% % %%% % %%% % %^%X% % %%% % %%% % %%% % %%% % %
%
% % %%% % %%%% %#%-%
% %)%/%% %3%:%% %
%
%% %%%% % % % % %-%@%% %1%<%% %%%% % % % % %1%;%% %%%% %#%8%% %V%s%% %%%% % %% % %*%9%% %*%8%% %%%% %+%8%% %%8%#% % % % % %%%% %%%% %F%p%)% %%%% %#%7%% %%%% %6%m%7% %%%% %%6%% %%%% % %%% %%0%% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %p%w%n% % % %% %%%% %%%% %%%% %&%&% % % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%% % %%% % % % % % %%% % %%% % %%% % %?%?% % %%% % %%% % %%% % % % % % % %% % %% % % %D%<% % %% % % %%% % %D%C% % %% % % %%% % %%% % %&%"% % %$%"% % %%% % %%% % %A%=% % %%% % %%% % %%% % % % % % %%% % %%% % %%% % % % % % % % % % %%% % %%% % %% % % % %% % %% % % %% % % % %% % % % % % %%% % % % % % % % % % %%% % %% % % % % % % % % % % %%	% % % % % % % % % % %%% % %%% % % %% % %C%.% % %%% % %%% % %% % % %%% % %	%	% % %%% % %%% % %%% % %%% % %%%
% %K%_%
% %%
%% %%% % %%%% %%%% %%%% %-%;%% %%%% %%%% %3%?%% % %%% % %% % %%%% %'%9%% %%%% %+%9%% % % % % % % % % % % % % % % % % %+%8%% %%% % %F%q%% % %% % % % % % %%%% %%%% %F%p%)% %%%% %% %% % %% % % %% % % %% % %%5%% %%%% %%%% %%%% %j% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %8%C%?% %% % % % % % % %%&%
% %%%% %% %% %%% % %%%% % % % % %%%% %%%% %%%% %%%% %%%% %:%:% % %%% % %%% % %%% % %%% % %%% % %A%A% % %%% % %%% % %%% % % % % % %%% % % % % % %%% % % %% % %E%@% % %% % % % %% % % %% % %%% % %%% % %%% % %%% % %E%@% % % % % % %%% % %%% % %%% % %%% % %A%=% % % % % % % % % % %%% % %%% % %%% % % % % % %%% % %%% % % % % % % % % % %C%F% % % % % % % % % % %%% % %A%=% % %%% % %% % % %% % % % %% % % % % % %%% % %B%>% % %%% % %%% % %%% % %%% % %%% % %)%&% % %%% % %%%% %%%% %(%*%% %&%1%% %R%^%% %	%
%% %	%
%% %%%% %%%% %7%J%% %f%%% %%%% %%%% %%%% %%%% %%%% %%%% %R%s%!% % %%% %*%9%% %%%% %U%r%% % %% % % %% % %%%% %%%% %G%r%% %%%% %$%8%% %"%8%% % %% % %%%% %%%% %%%% % %8%% %%%% %%5%% % %% % % %% % %%7%% %%b%% %H%%y% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %q%w%n% %%&%% %%%% %%&%% %%%% %%%% %%% % %%%% % %% % % % %% %%% % %'%4%	% %%%% %%%% %%%% %%%% %>%>% % % % % % %%% % %%% % %%% % % % % % % % % % %%% % %D%D% % % % % % %% % % %F%F% % %%% % % % % % % %% % % %% % % % % % %F%A% % %%% % %%% % % % % % % % % % % % % % %% % % %%% % %%%#% % %%% % %#% % % % %% % %'%%% % %'%$% % %%% % %%% % %%% % %C%>% % %%% % %%% % % % % % % % % % % % % % %%% % %%% % %%% % %%% % %%% % %%% % % % % % %%% % %%% % %%% % %%% % %%% % % %	%% %%%% %,%8%% %U%D%% %%% % %%% % %%%% %%%% %%%% %%%% %%	%% %4%@%% %6%@%% %C%M%% %%%% %%%% %% %% %m%%$% %%{%% %R%t%!% %S%s%% %%% % %%% % % % % % %V%r%% %%%% %T%q%% %%%% %% %% %#%8%% % % %% %G%q%*% %%%% %%%% %"%8%% % %% % %%%% %% %% %%9%% %%%% %%%% %=%l%/% %%% % %%%% %N%%% %%%% %"%%&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %%%% % %%% %%%% %%%% %%&%	% %%%% %%%% %%% % %%%% %%% % %%% % %%%% %.%5%% %%% % %%%% %%%% %%%% %%%% %%% % %"%"% % %%% % % % % % % % % % %%% % %%% % %%% % %%% % %H%H% % %%% % % % % % % % % % % % % % %%% % %%%% %%%% %%%% %%%% %% % % % %% % %$%"% % %(%&% % %%% % %)%%% % % %% % % % % % % %% % % %% % %%% % %%% % %%% % % %% % %%% % % %% % %%% % % % % % %%% % %%% % %%% % %%% % %%% % % %%% %%%% %%%% %%%% %R%b%% %%% % %%% % %%% % %%%% %8%;%% %%%% %%% % %%%% %%%% %%%% %%%
% %v%%,% %%%	% %%%% %%%% %%%% %9%@%% %% %% %%%% %%%% %b%%/% %%~%% %+%%,% %% %% % % % % % %% % %% % % %U%r%% %%%% %%8%$% %$%9%% % %% % %% %% % % % % %#%8%% %%%% %%%% %F%q%*% %%%% %?%p%4% %%%% %%8%% %%8%% %%%% %<%l%/% %%% % %%%% %%5%"% %%%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%$% %%%% %%%% %% % % % % % % %%%% %%%% %%%% %%%% %%%% %%%% % % %% %%%% % %%% % % %% %1%8%% %%% % %%%% %%%% %%%% %%%% %%%% %#%#% % %$%$% % %%% % %%% % %%% % %%% % %%% % %%% % % % % % % % % % %K%K% % %%%% %G%J%% % %% % % % % % % % % % % %% % %%%% %%%% %%%% %%%% % %% % % % % % %%%% % % % % % % % % %%% % %%% % %%% % % %% % %%%% % %% % %% % % %%%% %%%% %'%*%% %O%<%% %%% % %%% % %%% % %%%% %T%Z%% %%%% %%% % %%%% %%%% %
%%% %%% % %%%% %%%% %%%% %8%=%% %C%K%% %%%<% %% %% %% %% %% %% %B%@%
% %%%% %%%% %% %% %`%~%-% %%%% %%%% %a%~%(% %%%% %V%r%% % % % % %% % % % % %% %%%% %%9%$% %%%% %$%9%% % %% % %% % % %%% % % % %% %#%8%% %#%8%% %%%% %%9% % % %% % %% %% %3%%%% % % % %I%D%A%T%% %% % %%% %>%n%0% %%%% %%%% %%% % %%3%% %%3% % %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %m%w%q% %%%% %%%% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% %,%2%% %% %% % %%% %%% % %%% % %%%% %%%% %%!%% %%% % %%% % %%%% %%%% %%%% %%%% %%% % %%%%% % %%% % %%% % %%% % % % % % % % % % %%% % %%% % %%% % %%% % % % % % % % % % %)%,%% %)%,%% %%%% %J%N%% %%% % % %%% % % %% % % % % %%%% %%%% %L%Q%% %%% % %%% % % % % % %%% % % %% % %%%% %Q%V%% %%% % %%%% %%% % %%%% %%% % %%%% %%%% %%%% %%%% %%%% %%
%% %%%% %O%\%3% %a%h%*% %	% %% %% %% %% %% %%%% %% %'% % % %% %% %% %%%% %%%% %% %% %/%?%% %.%?%% %%%% %%%% %%%% %,%:%% %%%% %%%% %+%8%% %%%% %%%% %G%r%2% %% % % %$%9%% %%%% %G%r%*% % %% % %%% % % % % % %%% % %%%% %%9% % %%%% %%8%% % % % % %%%% % %%% %%% % %%7%% %%%% %%% % %%%% %%%b%=% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %8%C%?% %%&%% %%%% %%%% %%%% %%%% % % % % %% % % %%&%% %%%% %%%% %%%% %%%% %%%% %%%% %6%>%% %%% % %%%% %%%% % % % % %%!%% % %#%% %%% % %%%% %%%% %%%% %%% % %% %% %%%% %%% % %N%N% % %%% % %%% % %%% % %%%% %%% % %%% % % %% % %%%% %P%U%% %%% % %%% % %%% % %%% % % %% % %% %% %%%% %	%
% % %%% % %%% % %%%% %%% % % %% % %%%% %%%% %%% % %%%% %%%% %%%% %%%% %%%% %%%% %
%%% %=%=%% %\%d%!% %	%%% %%%% %T%A%]% % % %% % % %
% % % %% % % %% %?%?%/% %%%% %%%% %% %% %-%?%% %`%%5% %% %% %%%% %,%<%% %%%% %%%% %%%% %%%% %,%:%% %%%% %%%% %%:%% %G%r%% % % % % %% % % % % % % %H%r%+% %%%% %G%r%*% % % % % % %% % %%%% %% %
% % %9%% % %8%% %%%% %>%p%1% % %% % % %% % % % %% %%%% %%7%,% %%%% %%/%% %%%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %m%w%q% %%%% %%&%% %%%% %%%% %%%% % % % % %%%% %%% % % %+%% %%%% %%%% %%%% %%%% %%% % %6%<%% %% %% % % %% %%%% %% % % % % % % %% % % % % % % % %$%% %#%'%% %%% % %%%	% %%%% %%% % %%%% %%%% %%%% %%% % %%% % %% %% %%% % % %% % %%%% %%% % %%% % % % % % % %% % %T%Z%% %% %% %%% % %%%% %
%
%% %%%% %%% % %%%% %%% % %%%% %%%% %%%% %%%% %%
%% %%%% %6%>%% %x%_%% %%%% %%%L% %% %% % % %% % % %% % % %% %A%?%,% %%%% %@%@%$% % % %% % % %% %%%% % % %% %%%% %%%[% %% %% %% %% %% %% %% %% %b%%(% %%~%% %]%z%%% %%%% %%%% %%%% %%%% %%%% %%%@%#% %%%% %%%% %% %% % % % % % % % % % %% % %H%r%+% %%%% %F%r%+% %%%% %%%
% % %8%% % % % % %%% % %?%q%2% %%%% %>%p%1% %% %% %%%% %
%7%-% %%4%!% %%%% %%/%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %t%{%m% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%% % %#%7%% %%%% %%% % %	%%% %%% % %<%D%% %% % % %%%% %@%I%	% %%% % %%% % %%% % %%%% %%% % %%% % %F%P%	% %%% % %H%S%
% %%% % %%% % %%%% %%% % % %% % %%%% %A%Y%% % %%% %%% % %%% % %%%% %%% % % %% % %%%% %%%
% %%%% %%%% %U%t%% %%%% %%%% %%%% %p%%0% %%%% %%%% %% %% %% %% % % %% %
% %% %% %Y% % % %% % % %
% % % %% % % %% %@%@%% %%%~% %%%% % % %% % % %% %%%K% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %%%% %/%>%% %%%% %-%;%% %%%% %% %% %L%w%>% %% % % % % % % %%%% %$%:%% %% %% % %% % % % %% %%% % % % % % %G%s%+% %%%% %%9% % % %9%% % % % % % % %% %%% % %%% % %?%q%2% %%%% %?%o%1% %%%% %%m%#% %%%% %(%k%C% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %T%B%T% %%%% %%%% % %&%% %%%% %%%% %%%% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %*%8%% %%%% %%% % %%%% %%%% %%%% %%%% %%%% %@%I%
% %% % % % % % % % %% % %%% % %%% % %%%% %%%*%% %%% % %%%% %%% % %%% % %%%% %%% % %%% % %%%% %%%% %%%% %%%% %R%d%% %%%% %%%% %%%% %Y%l%% %%%	% %%%% %%%% %	%%% %	%%% %%%% %-%%3% %% %% % % %% % % %% % % %% % % %	% % % %% % % %$% % % %% % % %% %%%% % % %% % % %% %%%% %%%% % % %% % % %% % % %% %% %% %t%%;% %%%% %j%%2% %% %% %% %% %%%% % %%% %/%<%% %p%F%% % %=% % %N%y%@% %%%% %% % % %% % % % % %% %P%z%2% %%%% %E%q%*% % %%% % % %% %% % % % %%% %%%% %%:%!% %%%% %!%:%% %%% % % % %% % % %% % % % % % % % % %@%q%1% %%%% %
%7%7% % %% % % %%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %_%U%\% %%%% %% %% %%%% %%&%% % % % % %%%% %%%% %%%% %%%% %%%% %%%1%% %%% % %%%% %%%% %%%% % %%% %% % % %0%A%% %%%% %%%% %,%F%% %%%% %%% % %%% % %%%% %%% % %$%*%% %%%% %I%T%
% %%% % %%% % %%% % %%%% %%% % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %
%%% %%%% %%%% %%	%% %%%% %	% %% % % %% %% %% %% %:% % % %% % % %% % % %% % % %% %%%% %%%% % % %% % % % % % % %% %%%v% % % %% % % %% % % %% % % %% % % %% % % %% %% %% %% %% %% %% % % %% %% %% %% %% %% % % %%%% %%%% %%%% %r%%V% %%%% %%%% % % %% %%% % %% % % % % %% % %%% %P%{%4% %%%% %F%q%*% % %%% %%%% %%%% %A%t%6% % % % % % %:%% %%%% %A%r%2% %%% % % %%% %%%% %%% % %%%% % %8%8% %%%% %%5%"% % % %% %% % % %&%g%@% %%%% %%%% % %}% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%&%% %%%% %%&%% %%%% %%&%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%% % %%% % %%% % %%% % %%% % %6%I%% %%%% %%%% %%% % %%%% %%%% %%%% %%% % %%%% %%% % %%%% %%%% %%%% %%% % %%%% %%%% %%%% %%%% %.%9%% %2%;%% %%	%% %	%%% %%%% %%%% %%%% %% %% %%%% % % %
% % % %
% %%%% % % %% % % %% % % %% % % %% % % % % %%%% % % % % %%%}% % % %% % % %% % % %% % % %% % % %% %%%U% %%%% %%%K% % % %% %% %% %% %% %% %% %j%%3% %%%% %2%?%% %%%% %"%?%#% %I%%1% %%%% %%%% %,%@%% %%%% %'%=%% % %%% %%%% %% %% %%%% % %% % %*%?%% %%%% %%%% %%9% % %A%t%%% % %% % % % %% %% % % %B%s%3% %%%% %A%s%2% %%% % % %% % %%%% %% % % %%8%"% % % % % %%%% %%3% % %% % % %%%% % %%% %%R%>% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %p%%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%[%%a% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % %&%&% %%%% %%%% %%&%% %%%% %%%% %% % % % % % % % % % % %%%% %%)%% %%% % %%%% %%%% %%%% %%%% %/%@%% %%% % %%% % %%% % %%%% %%% % %%% % %% % % %% %% % % % % %%(%
% %%*%
% %>%S%% %%%% %%%% %%%% %%% % %%%% %%%% %%%% %E%c%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %% %% %%%b% % % %% % % %% % % %% %%%y% % % %	% % % %% % % %% % % %% % % %% %%%t% %%%y% %%%o% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %% %% %% %% %%%% %%%% %% %% %% %% %%%% %Y%%H% %% %% %% %% %%%% %%%% %-%D%% %%%% %+%A%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %%:%!% % %:%% % % %% % % % % %% %% % %%% % % % % %!%:%% %%%% % %9%% %%%% %%%% %%p%#% % %%% %%6%"% %%%% %%3% % %%% % %%%	% %%%% %+%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %&%&% % % % % %%%% %%%% %%%% %%&%% %%% % %%%% %% %% %%&%% %%%% %%%% %%% % %%%% %%%
% %%%% %%%% %%%% %%%% %%%% %%$%	% % % % % % % % % % %% % % % %% %%% % % %% % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % %% % %%%% %*%7%% %3%?%% %
%%	% %%%% %%%% %o%%<% %% %% %% %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % % % % % % % % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %A%A%% %6%@%(% %% %% %1%?%#% %]%%:% %% %% %% %% %%%% %% %% %% %% %% %% %% %% %% %% %%%% %X%%<% %%%% %S%}%6% %% %% %%%% %%%% %%%% %I%~%F% % % %% %%%% %!%:%% % % %% %%%% %%% % %%%% % %%% %!%:%% %%%% %%%% %%%% % %q%R% %%%% % % % % % % %% %%6%!% %%%% %%%% %%1%&% %%%% %+%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % %;%9% % %%% %%&%"% %%%% %%9% % %%%% %%%% % %9%% % % % % %%%% %% %% %%'%% %%% % %%% % %%%% %%%% %%%% %$%8%% %%%% %% % % % %@%% %%%% %%% % %%%% %%%% %%%% %%)%
% %%%% %%)%
% % % % % % %% % %% % % % % % % % % %% % %% % %%% % %%%% %%%% %%%% % % % % % % % % %% %% %%%% %%%% %% %% %% %% %% %% %% %% %% %% % % %% % % %% %%%V% %%%% %%%g% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %%%% % % %% %% %% %% %% %% %% %s%%k% %% %% %p%%U% %% %% %% %% %% %% %% %% %% %% %8%?%*% %%%% %/%@%!% %% %% %% %% %% %% %% %% %% %% %Z%%=% %%%% %%%% %%%% %L%%I% % % % % %% %% %%%% %R%%C% %%>%% %c%%M% %%%% %%%% % %% % % % % % % % % % % % % % %%%% %%9%/% % %% % % % %% % % % % %%% % %%6%"% %%%% %%%% %%[%K% %%%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %%% % %%% % %9%9% % %%% % % % % %%%% %%9% % %%%% %%%% %%&%% %%&%% % % % % %%%% %%%% %%%% %%% % %%%% %%%% %%%% %%%% %%% % %%%% %(%B%% %%%% %%%% %%%% %%%% %%%% %%%% %%*%% %%%% %%%% %%%% %%% % %%% % %E%]%% % % % % % % %% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %% %% %% %% %% %% %% %% %% % % % % %% % % %% % % %% % % %% %%%% % % % % % % %% % % %% % % %% %%%% % % %% %%%v% % % %% % % %% % % %% %% %% %% %% %% %% %
% %
% %% %% %% %% %% %% %% %% %% %% %<%@%.% %%%% %8%@%)% %% %% %% %% %% %% %% %% %%%% %%%% %% %% %&%@%% %(%@%!% %% % % % % %% %% %% %%%% %% % % %T%%E% %%%% %!%9%% % % % % %% % % %% %% %%%% %% % % % %s%#% %%%% %%7%"% % %% % %%%% % %%% %%%% %%4%!% %%%% %%%% %%%% %5%F%V% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %"%&% % % % % % %%% % %%% %%%% %% %% %%%% %%%% %%%% %%%% %%&%% % % % % %%&%% %%%% %%%% %%% % %%% % %"%6%% %%%% %%%% % %% % %%% % %%%% %%%% %%% % %%%% %%%% %%%%% %%&%% %1%N%% %%%% %%% % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %	%%% %
%%% %%%% %%%% %%%% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %%%% %% %% %%%o% % % %% % % %% % % %% % % %% %?%?%% % % % % % % %% % % %% % % %% % % %% %% %% %% %% %%%i% %%%% %z%%^% %% %% %% %% %% %% %% %% %% %% %<%?%.% %%%% %2%@%$% %% %% %%%% %% %	% %*%?%#% %X%%6% %% %% %%%% %0%@%)% %% %% %% %% %% %% %% %% %% %% %+%@%$% %%A%% % %% % % %:%% % % %% %%%% %%9%.% %%8%#% %%%% %%8%#% %%%% %%6%"% %%% % % %%% %%%% %%%% %%%% %%%% %*%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %%% % % % % % %&%&% % % % % % % % % %%%% %% %% %%%% %% %% %%%% %%&%% %%%% %% %% %%&%% % % %% %%&%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %% % %%%% %% % % %%%% %%%% % %%% % %%% % %% % % %%% % %%% %8%Y%!% %%%% %%0%% % %2%% %%%% %%%% %%%% %%%% %%%% %	%	%% %%%% %E%z%B% %
%%	% %% %
% %
% %
% %
% %
% %
% %
% %	% %	% %% %% %}%%a% % % %% % % %% % % % % % % %% % % %% %@%@%:% %%%% %@%@%<% % % % % % % % % % % %% % % %% % % %% %% %% %% %% %% %
% %% %% %% %% %% %% %% %% %% %% %@%@%2% %S%A%|% %4%%.% %% %% %g%%f% %% %% %% %% %% %% %% %% %4%?%,% %%%% %+%@%$% %% %% %% %% %% %% %% %% %% %% %{%%e% %%{%% %% %% %%%% %!%s%R% %%%% %%%% % %%% %%7%#% %%%% %%5%!% % %%% %%%% %%%% %%.%!% %%%% %%%% %s%>%E% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %!%&% % %%% % % % % % %%% %% %% %% %% %% %% %%%% %%%% %%%% % % %% %%&%% % % % % %%%% %%%% %%%% %%%% % %% % %%-%% %%%% %%%% %%%% %%%% %%% % %%$%% %%%%% %%%% % %%% %%%% % % %% %% % % %%%% % %% % % %%% % %%% % %%% % %% % %%%% %;%^%$% %%%% %%% % % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% % % %% % % % % % % %% % % %% % % %% % % %% % % %% % % % % % % %% % % %% % % %% % % %% % % %% % % %
% %% %% %% %% %%%% %% %% %% %
% %% %% %t%%n% %% %% %8%@%1% %% %% %% %% %% %% %% %% %% %% %7%@%0% %%%% %3%@%,% %% %% %% %% %% %% %% %% %% %% %%%% %%%% %%%% %+%s%R% %%%% %%%% % %%% %%%% %%%% %%6%"% %%%% %%%% %%%% %%0%#% %%%% % %%% % %%% %5%P%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%m%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %%% % %%% % % % % % %&%&% %%%% %%9%2% %%%% %%%% %%%% %%%% %%&%% % % % % %%&%% %%%% %%%% %%%% %%%	% % % %% %% %% %%%	% %%%% %%8%% %%%% %%%% %%%% %%% % %%%% %%&%% % %%% %%%% %%%% % %% % % %% % % %% % % %%% % %%% %%%% %%%% %% % % %%% % %%%% %%%% %%%% %%%% %%%% %"%5%% %%%% %%%% %%	%% %%%% %% %% %% %% %% %% %% %% %% %% %% %% %
% % % %% %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %A%A%b% %@%@%D% % % % % %%%% %% %% %% %% %% %% %% %% %%%% %J%@%C% %% %% %% %% %% %% %% %% %% %% %% %% %g%%Z% %%%% %]%%O% %% %% %% %% %%%% %% %	% %%?%7% %S%%% %%%J% %*%q%G% %%%% %%%% % %%% %%%% %%%% %%5%!% %%%% % %3%3% %%/%#% %%%% %%%% %%%% %_%D%D% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %2%9% % %%% % %%% % % % % % % % % % %&%&% %%%% %%%% %% %% %%%% %%%% %%%% %%%% %%%% % % % % %%&%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %%%% %%"%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%% % %%%% %%,%% %%.%% %% %% % %% % %% % % %%% % %%%% %%%% %%%% %%%% %%%% %M%r%5% %%%% %%%% %%%% %%%% %%%% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% % % % % % % % % %% %?%?%8% %%%% % % %% %%%% % % % % % % %
% % % % % % % % % %%%% % % %% %%%% % % % % % % %% %% %% %% %% %% %% % % %% %E%?%H% %%%% %=%@%6% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %%%% %% %% %C%%y% %% %% %% %% %% %% %<%%Y% %%%% %*%p%E% % %% % %%%% %%%% % %%% %%%% %%%% %&%b%V% %%%% %%%% %%%% %)%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %%% % %2%9% % %%% % %*%&% % % % % % % % % %%%% %%&%!% %%%% %%%% %%%% %%9%'% %%%% % %%% % % % % % % % % %%%% %%%% %%%% %%%% %%%	% %%%% %%%% %%%% % %%% %%%% % %% % % % %% %% %% %%#%% %(%H%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %% %% %%%% %% %% %% %% %% %% %% %% %% %% %% %% %% %% % % %% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % %% % % %% % % %% % % %% % % %% %@%@%J% %%%% %@%@%H% %% %% %% %% %% %% %% %% %% %% %%%% %% %% %c%A%% %p%%% %% %% %% %% %% %% %% %% %% %% %8%%U% %%%R% %)%m%D% %%%% % %%% %%% % %%%% %%i%Z% %'%b%% %%%% %%[%D% %%%% %%|%% %t%r%v% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %%% % % % % % % % % % %%% % %&%&% % % % % %% %% %% % % % %%% %%%% %%%% %%%% %%%% %%% % %%%% %% % % % % % % % % % % %%%% %%%% %%%% %%%% % %%% %%%% %%!%% %%% % %%%% %%%% %%%% %%"%% %%%% %%%% % %%% % %%% % %% % %%&%% %%*%% %%%% %0%U%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %4%d%4% %%%% %%%% %%%% %%%% %	%
%	% %
%%	% %
% %
% %% %% %Z%%Z% %% %% %% %% %% %% %% %% %% %
% % % %
% % % %	% % % %% %@%@%@% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % %% %?%?%B% %%%% %@%@%<% %% %% %% %% %%%% %% %% %%%?%5% %L%%S% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %%%% %6%}%R% %%%% %)%l%D% %%%% %%%% %%g%S% %%%% %%%% %%%% %%%% %%%% %%r%v% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % %%% % % % % % % % % % %%% % %%% % % % % % %&%&% %%%% %% % % %%%% %% %% %%%% %%&% % %%%% %%%% %%%% %% %% %%&%% % % % % %%%% %%%
% %
%%% %%,%% %%%% %%%% %	%%% %% %% %%$%% %%%% %)%H% % %%%% %% % % % %% % % %%% % %% % % %% % % % %% %%%% %%%% % % % % % %%% % % %% % % % % %% % % % % %% %%%% %%%% %%%% %% % % %% %% %% % % % % % % % % % % % %%% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %@%@%@% %%%% % % % % %%%% %% %% %b%%% %% %% %% %% %% %% %J%%g% %%%% %A%%]% %% %% %% %% %%%% %%%% %%%% %/%t%K% %%J%% %%%% %%%% %%f%Q% %%%% %%%% %%%% %%%% %%%% % %%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % %%% % %%% % %!% % % % % % % %%% % %%% % %% % % % % % %%%% %%%% %%%% %%%% % % % % %% %% %%%% %%%% % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %	%%% %%%% %%%% %%%% %%%% %%%% %%%% %'%F%% % % %% %%%% % %%% % %%% %%%% %%%% %0%U%%% %%%% % % %% % % %% % %%% % %%% % % % % %%%% %%%% %%%% %%%% % %% % % %% % % %%% % %% % % % % % % % % % %%%% %% %% % % %% % % %% %% %% %% %% %% %% %% %% %% %% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%% %=%?%?% %t%%% %% % % %% % % %% %% %% %% %% %% %% %% %% %% %% %% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%d%L% %%%% %%%% %%%% %%%% % %%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % %'%9% % %%% % %!%&% % % % % % %!%&% % %%% % % % % % %%% %%%% %%%% %%%% %%%% % % % % %%&%"% %%%% %% %% %%%% %%&%% %%%% %%%% %%%% %%=%"% %%%% %%%% % %% % %%% % %%%% %%%% %%% % %%<%%% %%%% %%%% %%%% %%%% %%%% %%(%% %%%% %%%% %%%% % % %% % % %% % % % % %%%% %% % % %%% % %%%% %%%% %%% % %% %% %%%% %%%% %% %% %%%% %%%% %%%% %%%% %%% % %% % % %% % % %% %% %% %% %% %% %	% %% % % %% % % %% % % %% % % % % % % % % % % % % % % % % % % % % % % % % %?%?%?% %%%% % % % % %%%% % % % % % % % % %?%?%?% %%%% % % % % %%%% %|%%% %,%@%@% %% % % %% %% %% %% %% %% %% %% %% %% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%4%/% %%4%.% %%%% %%%% %%%% %%%% %%%% %%%% %&%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%t%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %	%% % %%% % % % % % % % % % %%% % %%% % %(%&% % %%% %% %% %%%% % % % % %% %% % %%% %%&%"% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%%
% %%%% % %%% % %%% % %% % % % % % %%%% %%%% %%=%"% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%,%% %%-%% % % %% % % % % %%%% %%%% %% %% % %%% %%% % %%%% %%% % %%%% %%%% %%%% %%%% %%	%% %%%% %% %% %% %% %% %% %% %% %% %% %z%%h% %%%|% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % % % % % % % % % % % % %% % % %% % % %% % % %% % % %% %% %% %% %% %% %% %% %% %% %%%% %/%v%J% %%|%% %/%t%J% %%%% %%%% %%3%.% %%g%T% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %j%x%v% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %%%% % % % % % % % % % %%% % %%%&% % %%% % %%% % %%% % %%% % %% % % %%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %%%% %%%% %%%% % % % % %	%&%% %%%% %%%% %%%% %%0%% %%% % %%%% %%% % %%%% % % % % % %% % %%%% %%%% %%% % %%%% %%#%% % %J%)% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% %
% %% %% %% %% %% %% %% %% %%%% %% %% %@%?%?% %k%%% %
% % % %% % % %% % % %% % % % % % % % % % % %@%@%@% % % % % %% % % %% % % %% % % %% % % %% % % %% %% %% %% %% %% %% %% %% %% %% %% %%%% %%%% %%%% %%%% %%%% %%% % %%3%,% %%e%S% %%%% %%%% %%%% %%a%I% %%5%h% %%N%;% %%%% %%%% %%%% %%x%v% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% % % % % % % % % % %%&% % %%% % %% % % %!%&% % % % % % %%&% % %%% % %&% % % %%% %%%% %% % % %%%% % %%% %%%% %	%%% %%&%"% %%%% %%%% %%&%% %%%% %%&%% %%%% %%%% %%%% %%% % %%%% %%%% %%%% % %%% % %%% % %%% %%%% % %%% % %%% %%%% %%%% %%%% %%%% %%%% %%$%% %%(%% %%%% %%%% %%%% %%V%3% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %!%c%F% %%%% %%%% %%	%% %	%	%	% %	%%
% %%%
% %% %% %% %% %% %% %P%%j% %% %% %% %% %% %% %
% %% %% %% %% % % %% % % %% % % %% % % %% % % %% % % %% %% %% %% %% %% %% %% %% %% %>%%[% %%%y% %@%%[% %%%% %%%% %%%% %%%% %%%% %%%% %%2%,% %%e%M% %%%% %%%% %%%% %%%% %%%% % %%% % % % % %%%% %%
%% %%%% %%%~% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%[%Q% %%%% % % % % % % % % % %%&% % %%% % %!% % % % % % % % % % % %%% % %%% % %(%&% % %%% %%%% %%%% %%&%"% %%9%5% %%%% % %&% % %%%% % %%% %%%% %%%% %% % % % % % % %%%% %%$%% %%%% %%%% %%%% %%%% %%%% %%%% %%!%% %%% % % % % % %% % % %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%	%% %%%
% %
%%	% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %% %%%% %%%% %%%% %%%% %%%% %%4%'% %%`%S% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %(%(% %.%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % %%% % %%% % % % % % % % % % %%% % %%% % %%% % %%% % % % % % %%&% % %%% % %%% % %%% %%&%&% %%%% %%%% %%%% %% %% %%%% %%&%% %%&%% %%% % %%%% %% %% %%&%% %%%% %%%% %%%% %%%% %
%+%!% %%%% %%%% %%%% %%%% %%%% %%!%% %%%% %%%% %%% % %%% % %%% % %%% % %%% % %%% % % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% %% %% %% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%%&% %%]%Q% %%%% %%%% %%%% %%%% %%%% %
%+% % %%%% %
%,%!% % %%% %%%% %%%% %%%% % %% % %%%% %\%%% %j%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% % % % % % %% % % % % % % % % % % % % % % %%&% % %%% % %%% % % % % % % % % % %!%&% % %%% % %%% % % % % % %&%&% %%%% %%%% %%%% %%&%(% %%%% %%%
% % % % % %%&%% % % % % %%%% %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%%% %%'%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %&%X%0% %%%% %*%_%6% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % %% % %% % %#%j%<% %%x%% %%;%'% %%%% %%%% %%%% %%%% %%l%S% % %%% %%%% %%%% %%(%% %%%% %%%% %%%% %%%% % %%% %%%% %
%&%% %%%% %% %% %%%% %%% % %	%E%=% %%%% %%%% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%R%>% %%%% % %%% % %%&% % %%&% % %%% % %%&% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% %%9%:% %%%% %%%% %%&%#% %%%% %%%% %%%% %%%% %%&%% % % % % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%8%)% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %% % %$%Q%.% %%%% %%% % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%% % % %%% % % % % %%%% %%%% % %% % %%%% %%#%$% %%U%K% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% %%>%7% %%%% %%%% %d%2%5% %j%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %%%}% %%%% % %% % % %%% % %% % % % % % % % % % % %%% % %% % % %%% % %%% % %!%&% % %%% % %% % % %%% % %%% % %%% %%!%&% %%%% %%%% %%9%5% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% % % % % %% %% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%D%8% %%%% %%%% %%%% % %%% %%%%%N%% % % % %I%D%A%T%% % %%% %%%% % %%% %%%% %%%% %%% % % %% % %% %% %%%% % %%% %%% % % %%% %%%% %%%% %%%% %%a%J% %%%% % %%% %%% % % % %% %%%% % % % % %%%% %%&%% %%%% %%%% % %%% %%% % % %%% % %%% % % % % %%V%A% %%%% %%X%A% %%%% %%%% %%%% % %%% %%%% % % %% %%7%5% %%%% %%%% %d%3%6% %j%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%]%Q% %a%o%}% % %%&% % %%% % %%% % %%% % %%% % %%&% % %%% % %%&% % %%% % %%% % %%% % %!%&% % %%% % %%% % %% % % %%% % %5%9% %% % % %%%% %% % % % %&%&% %%%% %%%% %% %% %%&%% % % % % %%&%% % % % % % % % % %%%% %%%% %%%% %%%% % %% % %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%D%2% %%%% %%%% %%%% % %%% %%%% % %%% %%%% %%M%>% %%%% % %%% % %%% %%%% %%%% %%%% % %%% %%%% %%U%@% % % % % %%%% % % % % % %% % %%%% % %%% % %% % %% %% %%%% %%%% %%%% % %%% % %%% % %%% %%%% % %%% %%%% % %%% %%%% %%%% %%% % %%%% %%F%>% %%%% %%%% %%%% %%%% %d%4%6% %j%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %a%z%% % %%&% % %%% % %% % % %%% % %%% % % % % % % % % % %%% % %%% % %%% % %%% % %% % % %!%&% % %%% % %%% % %%% % %% % % %%% %%#%&% %%%% %%%% %%&%#% %% % % %%%% %%%% %%%% %%%% % % % % %%%% %%%% % % % % % %%% %%%% %%%% %%%% % %%% %%3%'% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % %% % %%%% % %%% % %%% %%%% %%%% %%%% %%%% % %%% % % % % % % % % % % % % % % % % % %% % % %%% % %%% %%%% %%%% % %%% %%%% % %%% %%%% %%%% %%%% % %%% %%%% %%%% %%g%[% %%%% %%%% %%%% %%%% %%%% %d%6%8% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%p% %%%% %%%% % %%% % %%&% % %%% % %%% % %%% % %%% % % % % % %%&% % %%% % %%&% % %%% % %% % % %% % % % % % % %%&% % %%% % %%% % % % % %%!%(% %%%% %%%% %%% % %%&%%% %%%% % %%% %% %% % % % % %%&%% % % % % % %%% %%%% %%"%% %%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% % %%% % %%% %%%% % %% % %%%% % %%% % %%% %%%% %%%% % % % % %% %% % % % % % % % % % % % % % %% % % % % % % %% % %%%% %%%% %%%% % %%% %%%% %%% % %%#%% %%7%:% %%%% %%%% %
%R%H% %%%% %%%% %%%% %2%%% %2%% % %j%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%4%2% %a%d%j% %%%% % %
%% % %%% % %%9% % %%% % %%% % %% % % %% % % %%% % % % % % %%&% % % % % % % % % % %%% % %%% % %%% % % % % % % %&% % %%% % %%% %%%% %%"%'% % %%% %%%% %%&%#% %%%% % % % % %%%% %% %% %% %% % % % % % % % % % %%% %%%% %%#%% % %%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% % %%% % %%% %%%% %%%% %%>%.% %%%% %%%% %%%% %%%% % %%% % %%% % %%% % %%% %%%% % %%% %%%% %%%% % % %% %%%% % % % % % % % % % % % % % % %% %%%% % % % % %%%% %%%% %%@%8% %%%% % %%% %%%% %%%% %%%% % %%% %%%% %%%% %e%<%>% %5%S%V% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %a%d%j% % %%% % %%% % %%&% % %% % % %%% % % % % % %%% % %%% % %%% % %% % % %%% % %%&% % %%% % %%&% % % % % % %%% % %%% % %%% % %%% % %%% % %%% %%%% %%%% % %$%&% %%%% % % % % % %&%&% %% % % %%%% %%%% %% %% % % % % %%&%!% % %%% %%%% % %%% %%	%	% %%%% %%%%!% % %%% %%%% %%%% %%%% % %%% %%%% %%%% % %%% %%%% %%%% % % % % % %%% % %%% % %%% %%%% % %%% % %% % %%%% %%%% %%%% %%?%8% % %%% % % %% % %% % % % % % %%%% % % % % %%%% %%,%'% %%%% %%%% %%%% %%%% %%%% %%%% %3% % % %j%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %a%d%j% %%%% % %%% % %%% % %%% % %%&% % %%% % % %&% % % % % % %%% % %%% % %%% % %%% % % %% % % % % % % % % % %%% % %%&% % %%% % %%% % %% % % % % % % %%&% % %%% %%%% % %%% %%%% %%%%%% %%%% % % % % % %&%%% % % % % %%%% % % % % %% %% %% % % %%%% %%%% %%%% % % % % % %% % %%%% %% %% % %%% % %%% %%%% % %%%% %%%% %%*%%% % % %% % % % % % % %% % %%% % %%% % %%% %%%% %%%% %%.%(% %%%% %%%% % %%% % %%% %%%% % %%% % %% % %%%% %%%% %%%% % %%% %%%% % % % % % %%,% %5%!%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% %%% % % %% % % %%% % %	%% % %% % % %%% % %%% % % % % % % % % % %#%9% % %%% % %% % % %%% % %%% % %%% % % % % % % % % % %%% % %%&% % % % % % %%&% % %%% % %%% % % % % %%%% %% % % % % % % %%%% % % % % %%&%$% % % % % %% %% %% % % %% %% %%%% %%%% % % % % %% %% % % % % % % % % % % % % %%%% %%%% %%%% %%)%$% %%%% % % % % % % % % % % % % % % % % % % % % % %%% % %%% %%%% %%%% %%%% %%%% % %%% %%%% % %% % %%%% %%%% % %*%a% % % %% % %%% % %=%% % %)%% % %%% % %%% %j%h%?% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%X% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % % % % %%%% %%%% %%%% % %%% % %%&% % %%% % %%% % %%% % %%% % % % % % % % % % %%% % %%% % % % % % % % % % % % % % %%&% % %%% % %%% % % % % % %/%L% % % % % % % % % % %%% % %%&% % %%% % %%% % % % % %%%% % %%% % %%% % %%% % %%% % %%&% % %%% % %%% %%%% % % % % % % % % % % % % %%%% % %%% % %%% %%%% % % % % % % % % % % % % % %%% % % % % % % % % % % % % % % % % % % % % %%%% % %;%_% % %%% % % % % % %%% % %*%a% % %B%a% % %%% % %*%_% % % % % % %%% % % % % % %%% % %%% % %%% %5%4%q% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% % % % % % % % % %%%% % % % % %%%% % %%% % %%% % % % % % % % % % %%&% % %
%% % % % % % %%% % % % % % %%% % %%% % % % % % % % % % % % % % %%% % %% % % % % % % % % % % %%% % %%'% % %%,% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%%K% % %%% % %%'% % %%% % %%% % %%% % %%% % %%+% % %b%% % %%% % %%% % %4%\% % %%% % %%% % %%% % %%/% % %%% % %% % % %*%`% % %*%`% % %% % % % % % % %%% % %%.% % %%/% % %%% % %%+% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% % % % % %j%h%d% % % % % %%%% % % % % %%%% % %%% % % % % % %%% % % % % % %% % % %%&% % %%&% % %% % % %%% % %%&% % % % % % % % % % % % % % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %% % % %% % % %%D% % %%% % %%% % % % % % %%&% % %+%M% % %%% % %%% % %%% % %%% % %0%U% % % % % % % % % % % % % % % %% % %%% % %%% % %%% % %
%0% % %!%^% % % %% % %%% % % %% % % %% % % %% % %%% % %%-% % %%.% % %%% % %%*% % %%% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% % % % % %j%h%d% % % % % % % % % %%%% % % % % %%%% % %%% % %%% % %	%% % %% % % %%% % %	%% % % % % % %% % % %% % % % % % % %%% % %
%% % %%% % %%/% % %%% % %%% % %%7% % %%% % %%% % %%% % %%% % % % % % %% % % %% % % %% % % % % % % % % % % %% % % %%% % % % % % % % % % % %% % % % % % %%% % %%% % %%% % %
%/% % %%\% % %%% % %%.% % %%% % %% % % % %% % %%% % %%% % %%0% % %%% % %%% % % %% % % %% % %%% % %%*% %j%`%:% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% % % % % %j%h%d% % % % % %%%% %%%% %%%% % %%% % %% % % %%&% % % % % % % % % % % % % % %%% % %%&% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % % % % % % %% % %%% % %% % % % % % % % % % % % % % % %% % % %% % % %%% % %%% % %%% % %%% % %%.% % %%,% % %%Y% % %%% % % %% % %%% % %%% % %% % % %%% % %%% % % %% % %%% % %%/% % %%% % % %% % %%% % %%% % %%X% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% % % % % %%%% %%%% %%%% % %%% % %%% % %% % % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % % % % %% % % % % % % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%T% % %%% % %%U% % %%% % %%% % %%% % % %% % %%% % % %% % % % % % % %% % %%% % %%% % %)%^% % %%% % %*%_% % % % % % %%% % %(%\% % %%% % %%,% % %%*% % %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%4%2% %%%>% %%%% %%%% % %%% % % % % % %%% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%I% % %%% % %%% % %%K% % %%% % %%% % %%% % % %% % %%% % % % % % % % % % %%% % %%% % %% % % % %% % %%-% % %%% % %%/% % %% % % % % % % % % % % %%% % % % % % %%% % %%% % %%-% % %% % % %%% % %%% %5%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %5%6%U% % %%% % %%% % %%% % %%% % % %% % %%% % %%(% % %%% % %%/% % %%4% % %%5% % %%8% % %
%% % %%=% % %%A% % %%% % %%% % % %% % %%% % %%% % %%% % % %% % %% % % % %% % % %% % % %% % % %% % %%% % %%% % %%% % %%,% % %%% % %%% % %%% % % %% % %%% % % %% % %%% % % % % % %%Z% % %%,% % % %% % %%% % %%N% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%:% %%%% % % %% % %%% % %%% % %%% % % %% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % % %% % %%% % %%% % %%% % % % % % % %% % % %% % %%% % % %% % % % % % % %% % % %% % %%% % %%% % %%% % %%\% % % % % % %%% % %%% % % %% % % %% %5%-%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%% % %%%% %%%% % %%% % %%% % %% % % %%% % %%% % %%% % %%% % %%% % % %% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % % %% % % %% % %%% % %%% % % %% % % %% % %%% % % % % % %% % % %% % % %%% % %%% % %% % % %	%.% % %%.% % %%\% % % %% % % % % % % %% % %%% % %%)% % %%% %5%-%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%4%2% %a%i%}% %%%% % %%9% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%B% % %%% % % %% % %%% % % %% % %%% % % %% % % %% % % %% % %%% % % %% % % %% % % %% % %%% % %%% % %% % % %%% % %%% % %%% % %% % % %%% % % %% % % % % % % % % % %%% % %%% % %%Q% % %%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % %	%&% % %%% % %%% % %
%$% % %%	% % %%% % %%% % %%3% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % % %% % %%% % %%% % %%% % %%% % %%V% % %%% % %%% % %% % % % %% % % %% % %%% % %%% % %%% % %%% % %%+% % % %% % % %% % %%% %5%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%`%6% %5%.%% %a%f%}% % %
%% % % % % % %%% % %%% % %% % % %%% % %%% % %%% % %
%8% % %%% % % %% % %%B% % %%% % %%% % %%% % % % % % %%K% % %%% % %%% % %% % % %%R% % %%% % % % % % %%% % % %% % %%% % % %% % % %% % % %% % % %% % %%% % %%)% % %%% % % %% % %%% %5%Q%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%2%% %j%h%d% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % % %% % %%% % %%% % % %% % %%% % % %% % %%% % % %% % %%% % % %% % %%% % %%% % % %% % %%% % % %% % % %% % % %% % %%% % %%V% % %%% % % %% % % %% % %%% % %%% % %%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%h%`%/% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%d%>% %%%% %%%% % %% % % %%% % %%% % % %% % %%% % %%% % %%% % %% % % %%% % %%% % % % % % % % % % % % % % %%% % %%% % % %% % % % % % %%% % %%% % %%% % %%% % %%% % %%U% % %%% % % % % % % %% % % %% % % %% % % %% % %%% % %%% % % %% %5%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%p% %5%2%% % %%% % %%&% % %% % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%D% % %%% % %%% % % %% % % % % % % %% % %%% % % %% % %%% % %%% % % %% % % %% % % %% % %%% % %%% % %%% % %%!% % % %$% % % %% %5%4%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %5%3%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%% % %%% % %%% % % %% % %%% % % %% % %%% % %%% % % %% % %%% % % %% % %%% % % %% % % %% % %%% % %%% % %%% % %%% % %%% % %%% % % %D% % % %% % % %% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%% % % % % % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % %%% % % %% % %%G% % %% % % % %% % % %% % %%% % %%% % %%% % %%% % %%% % % %&% % % %"% % % %F% % % %% % % %% % % %% % % %% %j%h%B% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%R% %5%4% % %a%d%j% % %%&% % % % % % %%% % % %% % % %% % % %/% % %%% % %%% % % %% % %%9% % % %% % %%% % % %% % % %% % %%% % % %$% % % %>% % % %% % % %C% % % %% % % % % % % %% % % %% % % %% % % % % % % %% %5%4%% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% % %%% % %%% % % % % % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %<% % % %% % % %>% % % %?% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %5%2%% % %%% % %%% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %?% % % %% % % %% % % %% %%%Z% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%F%%#% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %5%4%!% % %%% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %5%4%% %%%\% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %a%d%% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %5%4%	% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %5%4%2% %%%% %j%h%&% % % %% % % %% % % %)% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %5%4%	% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %%%% %j%h%E% % % %% % % % % % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %%%`% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %%%% %j%h%&% % % %% % % %% % % %% % % %% % % %% % % %% % % %% % % %% %j%h%S% %%%% %5%4%2% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %j%h%d% %j%h%d% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%y%`% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %G%%%X% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %o%l%f% %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% %o%l%f% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % %*%(%$% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%$%"% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %
%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %9%%V%% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % % % % % % % % % % %%% %%%% % % % % % % % % % % % % % % % % % % %% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %%% % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % % % % % %%%% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % %% %%%% %%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% % %%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % %%%% %% % % %%%% %% % % %%%% %%%% % %%% %%%% %%%% %%%% % % % % % % % % %%%% %%%% %	%%% %%%% %%%% %%%% %%%% %% % % % %%% %%%% %j%a%P% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %% % % % %%% %%%% %%%% %%%% %%%% %%%% %%%% %% % % % %%% %%%% %j%a%P% %%%% %%%% %% %% %%%% %%%% %%%% %%%% %%%% %	%%% %%%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% % % % % % %%% %%%% % %%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %%%% %%%% %%%% %%%% %%%% %%%% % %%% %%%% %0%%% %%% % % % % % %%-%*% %=%C%:% %%%% %\%h%W% %%%% %%%% %6%R%N% %% % % % %%(% %%
%% %%%% %%%% %%%% %5%R%W% %%%% % %%% %=%R%P% %%%% %%%% %% % % %%%% %%%% %6%R%N% %%%% %%%% %?%a%d% %%%% %%%% %% %% %%%% % % % % % % % % % %%(% %%
%% %%%% %%%% %%%% %%%% %%%% %%%% %6%R%N% %+%-%*% %=%C%:% %%%% %% %% %%%% %%%% %?%a%d% %%%% %%%% %% % % %%%% % % % % % % % % %%%% %%%% %% % % %%%% %% %% %%%% %%%% %6%R%N% %%%% %.%>%4% %%% % %%%% %%%% %\%h%W% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % %%% %c%h%d% %D%-%% % % % % %=%E%V% %c%a%V% %6%%% % % % % %%%	% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % % % % % % %%% % %%H% %`%h%T% %%%% % % %% %%% % % % % % % %%% %%%% % %%% %%%$% %c%h%d% %c%I%1% % %%% %%% % % % % % % % % % % % % % %%%% %%%% %T%Z%I% %%%% % % % % % % % % % %%% % %%H% %`%h%T% %%%% % %%% %%%% %%% % % %%% %%% % % % % % % % % % %%%% %T%Z%I% %%%% % % % % % % % % %%%% %%%$% %c%h%d% %c%I%1% % % % % % % % % %.%C%P% %j%a%P% %% % % %%%% %T%Z%I% %%%% % %%% %%% % % %%% %%%% %%%% %%%% %% % % % % % % % % % % % % % % % % % % % % %%%T%,% % % % %I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%u%t%r%%%%% %%%% %%	%% %%%% %%%% % % % % %%%% %% % % %%$%0% %%%% %%%% %H%2%#% % %%% %%%% %%%/% %G%/%% % % % % % % % % % %%
% %>%0%% %%%% %F%Y%]% %%% % %%%% %% % % % %%% %%%% %%%% %?%M%[% %%%% %%%% %9%Q%W% %%%% %%%% %% %% %8%3%% %%%% %%1%A% %%%% %%%% %% % % %5%?%,% %%%% %%%.% %=%%% %%%% %9%"%% %%!%% %%%% %%%% %%%% %%%% %?%M%[% %+%"%% %%%% %:%<%'% %%%% %%%% %% % % % %%
% %/%%% %%%% %9%"%% %?%J%1% %%%% %%%.% %G%7%% %%%% %%1%A% %%%% % % % % % %%
% %%%
% % %%
% %/%%% %%%% %9%"%% %%!%% %%%% %% % % %%%% %%%
% %%%
% %:%4%% %%%% %F%Y%]% %%%% %%%% %%%% %%%% %%%% %%%% %%%$%"% %%%% %%	%% %%%% % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%	%% %%%% %%%%%%%%% %%%% %%%	% %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %%% % %-%&%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%,%(% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%% %J%H%D% %%%% %%%	% %%%% %@%@%@% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%	% %%%% %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%% %-%&% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %&%,%(% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % % % % % %%%$%"% %%%$%"% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%% % %%}%I%D%A%T% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%J%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %% % % % % % % % % % % % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %% % % % % % % % %%%	% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % %*%(%$% %%%% %%%	% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% % % % % % % % % %%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%% %%%%%%2%H%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/demoicon.gif__ __428__ -->
%G%I%F%8%9%a%% %% %% % % % % %%%%%%%R%U%J%%% %%%J%%%R%%%Z%%%%%%%%%%%%%%%%%%%%% %%%%%%9%%%B%%%%%%J%%%J%B%<%%%%%%%%%%%%%% % % % % % % % % % % % % % % % % % %!%%%% % %% %,% % % % %% %% % %%S%`%&%%Y%E%%%%%%%%U%%%%d%K%%X%Q%%%$%%%%%i%%%%%P%g%%L%%
%B%A%%|%U%"%%%a%%L%9%
%%B%%U%r%%*%%%%D%h%%\%%7%	%%%%%%%%~%%%%%+%!% %;
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/deploy.png__ __29836__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%E%%% % % %k%8%s%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%)%%%%S%
% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % % % %I%D%A%T%x%%%%}%\%%%%%%%%%%m%B%J%%%M%%"%5%%r%j%%%%%%%l%%r%e%%-%%%-%]%%-%M%%r%%%f%f%%%%%%%%S%%e%%J%%%%d%*%%%f%%%%1%o%%%P%%8%\%%?%%%%%9%p%%7%
%%~%>%%%\%%%%%%%^%%9%%%%%%s%%]%%%L%D%D%D%%%%I%%%%@%%%%5%%"%"%%h%M%%>%%%%j% %%w%l%%%%%H%%%%!%%%%%%Y%%	%?%%y%r%%7%b%%%%% %%%%%%%0%(%%d%8%%r%%V%i%^%O%%,%%%m%Z%u%%{%%%%%%%%S%%%%_%]%%%%%%%}%%?%o%%%%%}%L%*%%%e%%%%%K%%U%%_%%%W%%%<%%%%%%%O%|%;%~%\%%%%%?%>%%_%%%O%U%%%z%|%U%|%N%%%%\%%/%%%%%[%%5%8%~%<%%%%%=%%%%%%%%}%%?%?%%%%%7%%d%%]%%%m%%V%j%%G%%%e%%%%%%%4%%J%%%
%%%%%%%[%%3%?%%z%%%%M%%%%%%%m%k%%%%a%%X%%n%]%%%%%%%u%%%%z%%.%%%%o%%L%|%%=%%\%%%%%%%%%l%%#%F%D%%%%%%%%,%_%]%g%%%%z%%$%%%/%%%W%%F%:%%%6%=%%q%K%`%.%%K%{%%%%%x%?%%~%%%l%%%%%%%%%U%%X%%N%%%%%f%%%2%5%%"%R%/%z%%%%v%%]%%%%k%%j%%j%-%/%	%%E%%%\%%u%;%%%;%%%
%7%%<%%%%%(%6%%/%%%%%H%%%%%W%%%%O%o%\%%%%E%%%%>%%%z%+%q%%a%%%%%%%%`%%%~%2%%8%O%%%n%%%%%%%%%%\%D%%Y%1%%%M%%%P%%
%k%%%%?%%D%p%P%)%%%W%%9%%%%%f%%%C%%K%J%%%%$%;%%0%%%%%%%%o%%%%g%%|%7%%%%/%%%%,%d%%E%%%w%%%O%v%%%%%%%%%Y%%%%~%%[%%%q%%#%K%D%%%%*%l%|%%%\%%%;%v%%%c%%9%%%o%%%%j%A%%%D%%%%v%%:%%%%%%o%%o%%%%% %%%%%%%%%%<%v%%%U%]%%l%]%%c%%%%%~%%%%%%b%%%%1%%%%%%%T%s%%k%%}%%J%6%%%f%%?%%%%%%[%%%%%%%%%;%h%%%%%%R%%%%%%%%g%%%%?%%%%%%%%%y%v%%%%o%b%%%7%%%%%%=%%%%%P%%s%%c%%|%)%% %|%%%%`%%%%%_%%}%I%%%%%5%`%%%%%)%.%7%%%J%%%%%%%%%%%%?%%%<%%#%%%%%M%g%%]%k%%%%o%%W%b%=%%%%%%%%f%%\%%%|%%%%%=%%%[%%%4%{%%;%%y%%(% %W%?%% %%%m%%|%,%g%E%2%%%u%\%%2%%i%%%%%6%_%B%%%j%o%%o%%%%n%7%%e%@%%(%%%%h%%%&%%
%%%%%%%[%5%'%%%%,%%%m%%%%%G%s%%%%F%%%k%{%Q%%%5%%%%X%v%N%%%%%%%%^%O%r%%%%%5%%%%t%v%%%>%%a%%%% %j%%%%%%%>%#%%>%[%%m%x%%%%%%%o%%%_%<%%%q%%%.%9%%%%{%%%%%~%?%%E%4%%%%%8%/%Q%v%>%%%%~%%%%%%%d%%%%%%%%S%7%%%%%%1%%U%#%I%%r%%%%K%%%%C%%q%%%%A%%8%f%'%]%%%%o%%2%l%%%%%D%%%%(%x%%w%%I%%`%%3%F%%%%%%%%9%r%%-%%%^%E%%%%%%%%%[%%%%%`%%%%%h%[%?%%%%9%%%%:%%%%%7%%%!%"%M%%%%%%8%%%%y%U%%%%%%%%&%%y%%%4%o%{%	%%%>%H%%%#%%<%%%%%%%i%%D% %%e%%%%%:%%%%V%%%%%%%C%G%%%%%%%S%8%%%%N%N%%e%%%%%%%%%%%%]%/%s%%%@%%U%%%L%%%%7%%%n%%%:%%%X%%%/% %%%%>%"%%%w%)%%%'%%w%%%%%%v%%l%%%J%m%_%{%%%D%%Q%%%%%%%%%%#% %%%#%\%%<%%%:%%%w%%%%%%%%%X%%a%/% %%%]%%%%l%7%%l%%%_% %>%%%%%%%c%%%%%F%%%J%%%%%%%%%%J%J%%h%%%b%k%%f%%%f%%%%-%%%w%_%%5%%%m%Z%%%M%%f%%%%Y%m%%Z%%%%$%%9%%%%%U%%Y%%% %%%%u%N%;%%%Y%%}%1%%%%!%%b%G%%z%%%%2%%%%%%#%%%%%%%`%y%%3%%%%%%%%%%W%%%%%%%%t%$%%%%Q%%%^%S%s%%%V%%J%%%%,%6%,%J%&%w%%n%%%%%>%}%%%U%%%9%%%a%%[%q%i%%%.%i%%%%f%%%%%%%l%*%m%%u%!%'%h%%p%%{%%\%s%+%%%%%d%%%%%%%b%%%T%%/%o%%%j%%%%%a%%*%%%%_%%M%%#%%V%%%%%%V%%%%U%+%_%%%%%%%%%X%%%%c%%%%[%%%%`%%%e%%V%%%8%%%%%%%%%%;%{%e%f%%%%%%%Y%%%% %%^%%]%g%%%%%_%n%%f%7%%%~%%%/%H%<%%%%%V%1%%j%]%%%%%e%E%%%%%4%%%%%1%%%p%{%%7%D%^%%%N%%-%%%%9%%%%%l%%%}%%%U%%.%%%%%%%%%%K%r%Q%7%%%%%%%%%%^%%%o%%% %%%%%%%X%v%%3%%?%%%%%%%%%%%c%%/%Q%%H%%9%%%%%%%%R%%%%U%%K%%b%l%%%Y%q%%%|%%%%%v%%%%%%3%%%%%%o%%%%%%%%%%%%x%%%\%%w%$%i%%%%%/%%3%%%r%%v%%%R%q%'%%}%x%=%q%%%%%%%f%%w%w%}%%%%%b%%%F%%%[%%%%}%
%%%{%%<%%;%c%o%a%%%[% %%%"%%%%%%%%%%0%%-%o%%%%%%%]%%%%^%}%%:%%%%%%%%@%%I%Y%3%%^%%%%%%%#%%c%s%Z%%j%F%%%%L%%%%%%%;%%% %%L%%%%%%%%)%_%E%%?%%8%%q%%c%%:%%%%%%%5%%@%%%N%%\%%%%t%%/%f%>%%%%%%%%%%%%%%%%@%c%}%%q%c%%@%%;%%%%%'%y%%%%%n%%%Z%-%%%1%Y%u%%%%%%;%%W%%K%%i%%%2%%m%\%
%%N%%!%%%%i%%W%%%%%4% %%%%4%%%@%k%%o%%%%2%%3%%%9%s%%%|%]%%%%(%U%%Q%S%%%|%]%%%%%%%J%:%[%%%[%%%%3%(%%?%%G%%%%%%%%%3%c%%%%%%%%N%%%v%~%%%%%%%%%%%%%%6%%%.%_%%%%q%%%*%1%%%%%%%?%%D%%%0%%%"%"%%%%O%%o%*%%%/%%L%%%%!%%}%m%%%%%%i%p%*%%%W%%L%%%%H%%%%%/%r%~%%h%%D%D%D%%&%"%"%%P%%%%Q%%%%%%%%%%V%%%c%+%8%d%%%%%%%%%%%%a%S%>%%%%%%y%(%%*%%%C%+%x%%%%^%%c%%%@%%%'%I%%6%'%%%!%%O%%3%7%%%%%%%%r%%%%%%u%%%%u%%%A%%%%0%_%h%%%%%%%%b%[%%m%+%?%^%M%s%+%%]%%3%%%%%%%)%%%%%%%%%%%%%c%%d%%%%%%%l%%|%%%%%'%F%%%%%%m%>%%%%6%%%%O%R%%%}%%0%:%%%%%]%%%%%%C%+%%8%j%0%%%m%d%%%%%Y%*%%%%U%%%L%%%t%%%%%%M%% %%%r%%%r%%%%%;%]%%S%%%@%%Z%%%%%%%%^%Y%%%;%%>%%f%%%%R%%)%%%%%g%%>%}%&%?%%7%%G%>%%%}%%%%q%o%%A%r%%m%|%%%%%%%%%%m%%g%%%%r%%0%&%%w%%%U%%%_%%}%%%N%c%Y%%%%%%%R%e%_%% %%%%%v%%%%%%%M%%%z%>%%z%%%I%%%%%%[%%%;%v%%K%s%*%%%%}%u%h%%%<%6%%%%%%Z%4%%k%%:%a%?%%%.%;%t%%;%%%%%%%%%	%%%a%% %"%%%%}%,%m%%%{%%%%%%%-%%%%%%%t%3%%%%%%%%%%%%s%%%<%%%x%%%%%%%%%M% %%%%%%%%%\%%%%%%%Q%%%%%F%v%e%l%b%%%a%|%%b%J%%_%%*%%%%
%r%%%2%g%%L%z%,%r%%%%C%%^%\%:%r%%%%0%$%%%>%%%%%%%Y%%A%%]%%%%%%%%%%%%7%%+%%	%%%%%/%%<%%%%%%%c%%%%~%y%%%%%\%>%L%z%%%%%%%%o%%%Y%%}%/%%"%%%%m%% %%%%%%%%%%%%=%%%%%%%%%%%%C%+%x%%%%%i%%%%%%%%%%%%%%%%%!%%%%X%.%%w%%%%%%%%\%4%%%%z%%F%a%%%%|%%%0%%%%%.%t%%6%%%k%%p%%4%%%%%%%%X%%%%%K%%v%%N%%z%|%W%%s%g%%%%u%%^%%%% %_%|%%p%%,%%%l%%<%%%o%%%:%%%%%%x%%%%h%%_%5%S%%%|%%%%@%%%
%%r%%%p%%{%y%%%%%%2%q%%%%L%]%%~%4%%%`%o%%3%<%w%m%=%%n%%L%~%%o%%[%?%"%s%S% %%%%t%%%%%%%%A%%%%B%:%_%%%?%%%%%%%%%a%;%|%%?%]% %n%%%#%]%%%%m%%%%%%>%%%%%q%%`%&%%%%7%%?%%%%%%%8%L%%%O%F%%%M%%t%%%%%%%}%%%6%%{%Y%%%%%~%%%A%%9%h%%%%%r%s%%%%%F%G%%%%!%%c%%7%%%%%r%%%o%%%%%%%%%%%%%%%-%%~%%%%l%%%`%w%%%%%7%%%%%9%%%%%%%%%{%%%%V%0%%%j%%!%%%u%3%%r%%q%%%%%M%%@%%7%%%%y%%%%%%%y%
%%%\%W%%7%%%%~%=%%%u%%%C%%Y%%-%%%%% %%3%6%%%%%9%%%s%?%%y%c%U%%%{%%7%%%%%%l%c%%o%%%0%%L%d%g%z%$%%%%z%%q%%%%%`%%p%%%k%%%%%S%%%%%%%%%%%%;%#%%p%%%%%%k%%%y%{%n%%%%Y%.%%%%I%%V%%%%%%3%=%%g%%%%%%%%%%%%w%%%%%9%%9%%W%Z%%%%%%%}%)%%%%M%%X%?%!%%%R%%6%&%%%%%/%c%U%%}%7%M%%%%{%%%)%%%%%%%
%}%q%%%%q%%%%%8%%}%5%%%`%%%%%%5%<%%}%%%%%%r%%%%>%%/%%%c%%%"%%%%%%*%v%%%t%%v%%4%%%%%%%%%%%%z%%%%%%%w%% %%%%u%%r%|%w%%~%%E%%%%o%;%%%d%%p%%%K%%}%%%%%Z%%%\%%*%^%S%%`%%%a%%%%U%%0%q%%`%z%%E%%%z%
%%%A%<%%%/%<%%(%%>%%%%<%0%d%%%J%%s%%N%c%%%% %%%%.%C%%[%V%w%%%<%%%%o%%x%%%%%%1%%%Y%%%%.%%%%%u%%w%%q%%%%%6%%%N%%p%%%%%~%%%%[%%c%%%%%s%%%I%?%[%%%%k%%%%%%%%%%%}%}%%3%%0%%%/%%&%%y%n%%%"%%%j%%e%%%_%%%~%%x%%e%%%6%%%\%%i%_%%%T%%%x%%%^%%3%%%%%%}%%x%.%%%%"%%%%%%%%?%%<%%%%%#%%c%-%%3%%%%%v%t%%%%k%%%I%d%}%%%%%%C%%%i%%%S%.%%*%%%%%%%M%f%%%%k%%%%R%E%%%e%%}%%%%4%N%%%%%_%%]%%%~%%%%%Z%%s%%%%%%%%%%%%I%K%K%%%R%%V%
%%&%Q%%b%%u%a%v%% %%f%%%%z%%%<%%%%%%%o%%%'%%%n%%%%%%%%%?%%%%%%)%%%%%%R%%%%&%S%%%%%E%D%%%P%%%%%B%M%D%D%D%%&%"%"%%P%%%%Q%%%%%B%M%D%D%D%%&%"%"%%P%%%%%%j%?%&%+%0%0%P%%$%"%R%C%V%%U%%%%B%%%%%%j%%D%D%%0%l%%0%%%:%%%%%%%%%%%5%%V%%%l%%%%o%%0%%%	%%,%#%%j%%%%%%d%%%`%%%T%%%%%^%%%V%%%%S%%%O%%%7%%%%%'%%%n%%%%%%-%"%%Z%m%>%%%%%%%%%S%P%%:%%W%)%k%%%%%%L%%% %%w%%2%%7%#%%2%%%,% %#%0%%%P%%#%%%%d%)%/%%%%:%%%%%~%%%%s%\%%%%%A%%%G%%%%%?%<%%%%%%2%<%%%%&%g%%n%&%%%%%%%%
%s%%k%(%D%%q%%%w%`%%%Z%}%V%j%%%%%n%w%!%%%b%,%[%%%%%%V%q%w%O%%%%%&%%l%0%%F%%A%!%A%4%%	%&%0% %%%%%h%%%%%%%%%%%%t%%,%%%%%%9%%%a%%%%%%%t%
%%j%%%%i%b%%%%K%%%%%%J%%h%k%r%%G%%%%W%?%%m%% %B%%%%%m%%%%3%%%G%=%%g%%%%y%%u%%%%.%%%%s%%0%|%d%?%~%%%3%%%%%%%h%%%3%%%"%	%l%%%%%%)%-%%%%6%%%y%H% %%%%%%.%%5%j%%%%b%%%%%e%&%%%%
%%%R%%V%+%%%g%%%%%O%%%%`%%/%%%%K%%%;%%%w%%m%]%8%%%s%%%6%%7%;%M%%%M%%z%%%%%%9%%A%%%%%%%%o%>%%%%@%%%%%%%f%-%%%%%%%%%%%Q%D%%%%V%F%%%%%Z%_%%O%.%k%%%}%%%%%W%%4%m%%%%>%%s%E%%%%l%%%%%%%%%`%%%%,%%%%5%%f%>%%%?%d%c%%9%A%%6%%3%%%%d%%%%%%%%q%%%%%%%%v%S%%'%[%N%9%%%%w%%%%l%?%%%%k%0%%%%%%%%%W%%%%%%%%%%%#%%%%%%4%%/%%%%%%%;%%A%a%%%D%w%:%%y%.%%%-%%.%%%%%%%%=%%%%%%%L%f%%7%%g%%%%%4%Z%/%%%%%%p%%%5%%|%%%%3%%%%%%%%?%%%%m%%	%%C%%N%%D%u%l%G%%%m%h%%%%%V%n%a%%%o%%%%%%%%%T%%%%%%%'%%%%%%%%%%S%D%X%%%%%%%%3%r%P%W%b%%h%A%I%%%%>%%%%%%%%%%%%%%t%,%j%%-%%%%%%%%%%%%%%	%%n%I%%%@%%t%%K%%v%Q%%%%%i%!%%%/%%Y%%%y%%"%%%%y%%t%}%%%?%%%%H%c%%%%g%}%%%T%%N%%G%%%H%%%%%%%%%%%q%<%%$%%g%%%%M%6%%%%%%%%%%@% %%%%<%%t%}%%%'%%%#%%%%%%R%f%%%%%%%w%%%%%%%:%^%%%%%%%%R%6%%%f%%A%%%%M%%%Q%/%c%%W%%X%Z%%
%%%%%%%p%%%"%%%z%%%%E%%b%r%%l%	%?%%f%s%}%%p%%Y%%h%u%%'%%%%%%7%%!%%%;%%%%0%%%%%p%%%\%%%7%%(%%>%%%)%L%%%6%}%J%Z%%%%?%{%Z%n%
%i%%+%%=%%%}%%]%%%q%%%%X%4%%e%^%O%%%%%r%>%%X%o%%%n%%%%%%f%%2%%%%%%%%B%%%%%e%%%%V%a%%u%i%S%%%%%%%%\%%%%W%%?%.%b%%%E%%%w%%%g%_%%%z%%%%%%%M%%%G%%L%%%%6%%%%%%%%%%%%%%%'%S%%%%%%g%`%%%%F%%o%%%%%%%%N%%b%%Z%%%%%%%%%%%%%r%%%%%X%%V%%N%%:%%u%%%%+%%?%%a%%%%%%%%T%j%%%%%%'%%%v%%%%%%%i%m%%s%%N%%%]%.%%%%%@%%%%	%%Q%%%H%c%J%%%%%%%%%%%i%&%i%L%%%%%M%%%]%*%%%% %%w%%%%%%5%%c%%D%%:%~%~%i%%%%_%%%.%%%Z%t%3%%%%a%>%%%~%%n%%%%%%%%f%%%%%%%%%%9%%r%%%%%%%%%W%%%%%e%%%%%U%i%%%%%%z%r%c%%"%&%>%%%u%%%%%i%S%%p%%4%^%%%%%m%z%%%%%@%%%%a%S%%%@%%J%%%%z%r%%D%%%%%o%%i%z%%0%%4%%Z%%%%%S%\%b%%%%J%q%I%)%%%%V%%%%%i%%%%%J%J%J%)%.%%%%%%%6%%\%%%%%%%%I%d%%%%%-%n%N%I%%9%%~%%!%%%%%%W%%b%%%i%v%%% %_%~%%%%%%i%%&%%F%%r%e%%0% %%%?%%%3%%%%>%%%%%i%%"%%%%%p%%%)%%V%+%m%Z%%%%%%m%%_%%1%%%G%%%e%%%%%%%/%%%{%~%B%%%%%q%r%%%%+%o%%%K%b%^%%%%%%0%%%%%y%P% %-%%%%V%%%J%O%b%%m%Y%<%%j%%T%%J%%c%%M%%Y%%%a%:%%%m%%v%%8%%,%z%%M%%%%%%'%7%%%%%g%%%%:%b%%7%=%%%u%%%%x%%%%%%%%%%{%%%c%%%Y%%%5%%%%%%%%%f%%c%=%y%%%4%%%%%z%_%A%%%%%%%f%%:%s%%%%f%A%%"%^%%%%.%m%z%<%U%%%F% %~%%%y%%%%}%X%N%D%.%X%%%%h% %V%k%%%%2%J%%e%%%%%%K%%%%%%%%%%% %0%%%%%5%%%%d%%%%%%%%%%%%?%%&%/%%%B%[%%%%u%	%%%%%%%%u%5%j%%%%_%%%%k%%%v%s%%%~%%2%g%%~%%^%%J%%%%%%%%%?%%%%%%%%%%%%%%%%%x%%o%%<%%%{%%%%%%%% %h%%%%%%%s%%`%=%y%%%%/%7%%%%%%%%%%%%%%%%v%<%e%F%	%%%~%B%%M%%9%`%%%%%%%V%W%G%c%%+%%%z%%_%%%%%%=%Y%i%%%%%%]%G%0%n%%*%%%%%{%T%<%%%,%%%4%G%%%~%%r%]%}%o%%%4%%`%%i%%%%%e%-%%%S%%%%%[%i%%C%-% %%%%%%R%%%[%)%%%C%t%%h%%%8%@%%B%%%a%%%%%$%%%%%%:%V%%%8%{%%0%_%n%%$%u%%>%%V%+%V%%%S%%%%%%$%%
%%9%%%n%%%%%3%%%%%.%%%%P%+%:%u%%%%%%%;%A%%%%%%%i%_%%%%|%F%g%#%%%%.%%%*%%8%%,%%%m%%w%;%%%E%Q%%%p%Y%%%%t%%%t%%%%Z%%+%%%%a%^%K%%I%X%%/%%%%2%V%O%%U%9%H%%V%1%%%%%o%%%%|%%%j%%%%%5%n%%]%%%%q%%j%%%%j%%%%,%%%%%%%%%%%L%?%%%%:%%%%%c%D%%^%@%D%%r%%%D%%%%-%%L%%%%@%+%+%%Y%[%%f% %%a%2%f%`%0%%t%)%!%$%$%%%%O%%u%%$%K%%%%?%o%|%J%%%%%%)%%s%%%%%%%v%m%0%%%(%%Z%%9%%r%Z%%%%%j%%u%% %n%%%%2%%%%%%%v%m%%u%%%u%%%%%%%%%%%%%%%u%O%%R%%b%%	%%%}%(%%%%%L%%'%v%%%%%%=%%%%g%%%U%%%%%%n%%<%%% %%x%f%%X%%%%%%%%%i%!%%%T%S%a%W%Z%n%2%%%x%%%%%5%%%%3%%%[%%%%%%%%=%%X%%%%t%u%%:%{%Y%O%%t%%%%%%%c%%7%-%<%%%%%B%%%%%%%"%%%%U%g%V%%B%%Y%]%%%=%^%%%%%?%(%8%%%=%%%%y%%%%-%%4%B%%%}%#%%=%]%@%%%@%%%%%%g%j%%M%=%:%%%%%%%%%%%u%%%d%%%%%Y%%%%%%%%%u%y%%B%C%%%l%[%L%i%q%a%%%%%+%c%%%%%@%%%s%%%%%%%%e%%%%%A%d%%%	%i%%%N%%%%%2%%%k%!%c%%a%.%%%%%%%4%%%%%T%[%%%%%g%i%S%0%^%%Y%~%%P%D%%%%%%k%%1%Y%%%O%'%-%-%%%%%%%)%%%?%.%b%%%%5%Z%%%%%%%F%%%|%%%B%k%k%%:%]%%e%%^%%%%%%S%d%'%n%%e%%%[%%q%4%%%%%.%%%%3%%-%%%%c%%%j%%%%%c%%@%i%%Y%%?%%e%%%C%%%%%	%?%%%Y%P%%L%%%%%%%%%`%%j%%%%%%%%% %%%%%%=%%[%%%'%%~%%%%%%%h%u%g%%a%0%%~%%%%M%%%%|%s%s%n%h%%%%%%%%%S%p%%%c%G%~%`%%w%%%%%%%G%%%u%%%%%%%u%%P%6%n%%%%u%%%%%%%n%%5%%~%%%%%%%R%r%%%
%O%%%%%%y%%f%%C%%%%%%%%Z%%?%%C%%W%%i%%V%%%%%%%%g%%&%%4%Z%"%%%_%%%%R%%6%A%%j%%D%%+%%% %%%]%K%%Y%%.%y%g%%X%%J%%Q%%%%%6%%%%%%%%%%G%(%%%y%%[%%*%%_%%%%%%{%%j% %%%%:%%E%%%%`%%j%%>%m%%%%u%%e%%%t%b%%%o%~%%%%B%J%D%%%a%%%G%8%M%:%%%%%%F%J%D%.%%U%}%c%%4%%P%%x%%%%%H%C%%%%E%D%D%%&%"%"%%P%%%%Q%%%%%(%%D%D%D%%&%"%"%%%T%%%%%e%+%4%*%@%%h%}%%%%%%%%%%%P%%6%%%%z%@%v%%%%%%;%%%]%%%%%@%%[%%%%g%%%4%%P%%%%%%%%4%%P%C%%&%"%"%M%&%%P%%%%H%%	%5%%~%%%%U%j%"%"%"%%.%%%X%%%%%%%%%%%%%%m%/%%%%%u%d%%%%E%%%%T%%5%%j%%%{%i%I%Q%%%;%%%%'%%%U%%-%%^%%%%%I%D%%	%W%j%%%%%%%%%%y%%}%%%%%x%%%5%%T%u%%%\%%P%%%%%%%{%%%%%%%-%%%%w%%%%%%%%%%%%*%%%%%%5%%}%Y%%%%%%+%"%r%%%Z%}%%%%%J%%%%%8%%%%f%%%%i%%%%%%s%g%%%%%%l%T%w%j%z%%%%%%*%>%%%%% %%4%]%%&%"%%%%X%%%%%P%*%%%%%%o%%o%%%%%%U%u%%%T%%%%%"%"%%o%%%g%%S%q%%%%%U%%^%%|%%%"%%%R%%%N%%*%%%%%%C%D%%%%%%<%%W%%i%F%o%%%%%)%%%%%%U%%B%N%D%.%%J%%%O%%%%%q%%\%\%x%
%0%)%.%<%%6%%%%%%%z%%%%P%%M%%%<%%%%%%%%W%D%%%	%%z%%~%%%%%%%%%%%%t%%%u%%h%(%%%%c%%%%%%%,%% %%%%Z%%%G%%%%%(%%D%D%.%@%%&%%%:%%%Q%%%R%%%%%%j%%%%%%Q%%&%"%"%%%B%M%%%%%4%%J%M% %%Z%%y%y%%+%%%K%%%%%i%%~%>%n%%B%%*%=%.%%%%%%Z%%!%"%%%%%%%%% %%%%%4%%
%5%%%Q%%%%%(%%D%D%D%%j%"%"%"%M%8%%%]%%3%%%%y%d%q%%%%%%T%%K%%y%%s%f%%%%l%% %j%%d%%M%h%%%%G%%n%%4%;%1%%%%%%%%%%#%%%x%~%%!%%%}%	%%G%%n%s%%%%%%%%%%)%%u%=%%%%(%"%"%~%%Z%y%%t%%%%%%%%t%%8%%~%t%%%%&%%%m%n%D%%%,%H%%a%5%6%%^%%z%w%%%%%X%p%%#%%%%E%D%%%%%}%%%%*%V%%%%%%%%%%}%%%p%%%%%%%%2%s%V%u%%%e%A%%o%l%?%w%%D%t%v%%%%%% % %%%I%D%A%T%%%%%%%%O%%J%%a%%\%%%%U%u%u%%%z%E%D%%%%%%Z%%~%%%q%%%%%d%%%%]%%%%%%%%}%%e%%%{%%%_%%%%:%%X%%%%%%%%%|%`%%K%L%%`%b%%|%%%%%%2%%%%%'%%f%%%O%%b%%1%%a%w%%s%f%%m%+%Q%c%'%%%%p%%%%%x%c%%q%%e%%%U%j%%%%%%%f%%:%%%~%%%%%%a%%%3%{%%U%%%%%%0%%%T%W%%U%8%%%%%%%%;%l%U%%%%L%\%Q%>%%%{%%h%%=%-%"%%P%%%R%F%%%e%F%%%y%%c%%9%N%9%~%%%%%%%%% %%n%F%%%%%%%n%%?%%%S%^%M%%%%%%%%%%%%[%!%-%%%%%%>%G%D%D%%Z%m%%%%>%%}%%%%V%%f%%%N%D%G%%%%1%z%%%%%%%%/%%b%%%%T%%%%\%%%]%%%%^%}%%%{%%f%%%%+%"%"%"%%%%%g%>%X%%%%%4%}%L%%%%4%%
%5%%%Q%%%%%(%%D%D%D%%j%"%"%"%
%5%%%%H%T%%;%%%%%%4%*%"%"%%J%M%D%D%D%%&%"%"%%P%%%%Q%%%%%B%M%D%D%D%%&%"%"%R%%%%%%%{%K%%%%J%%%%%%%L%>%%%#%%|%%U% %%%%%%%%%5%%"%"%%%+%5%%@%%%W%%%V%%%r%v%;%n%%%%%'%v%%%%% %%%%%5%%"%"%%0%C%-%8%8%%%-%[%:%%%%%% %^%z%q%<%Q%%J%(%%0%%%~%%%l%"%"%%0%C%-%(%(%%%%-%%U%Z%R%%=%d%?%%D%%%%,%Y%%%r%%Z%%%[%%%%%%%>%W%l%%%%%%%d%,%%%=%%%"%"%%%%5%%%%%"%g%%%%%?% %%%%%%%8%%%%%%%]%%9%%%%%%m%?%%%%%%%%%%%%%%%%%6%-%%%%;%%T%%i%I%)%y%%%b%%%%%%%+%5%g%(%%%%%V%%P%x%%%%'%%%~%"%%%#%G%x%%%w%%~%"%%%3%%l%X%%%%.%U%%%%0%%%%<%%%%%%%K%%+%%U%%%%\%%%%%%%%%%%%=%%e%+%g%%V%%%%%%-%$%%%%]%?%%%%%^%m%%%%%F%X%X%%%.%%%%%%%D%%-%%%%%T%%&%%%O%]%o%!%%%%%a%%%%%%\%%%%%t%'%*%{%1%%%%$%O%-%%%%%%%E%m%%%%%%%%m%?%[%%%%%%%%6%%%m%p%o%%%x%T%%%"%"%R%%%%%n%%9%n%%%%!%%%%%%%#%%r%%%_%%e%%%%+%5%%\%%%%I%%%%W%P%	%%%{%y%%Y%Y%%f%%S%%%%@%j%&%=%%%%%%%%1%O%%%%W%%s%%%K%%%e%%%d%%%t%[%c%%%%%%%%%%L%%>%%%%%w%d%%%%3%%#%%%%Q%%%I%%%%%N%[%I%L%%%I%%%%%%D%Y%%%%%%R%%%M%%%%%*%%%%%!%%%S%%U%l%%%K%%%:%%5%%%%@%%%%%K%%%%%%%%%9%+%%"%o%+%%%O%f%%\%%%R%>%% %%%g%%#%%b%'%%j%%%%F%%%%D%% %%%g%%r%.%%%%%M%%%5%%7%%p%%%%%`%\%%%%%%%%%1%2%)%%%%`%%%%%%{%%%&%%6%%L%w%%%%%%|%%%O%c%%i%2%d%%%%%T%%%%%%U%U%%(%"%"%N%u%%%%%=%2%%%{%e%%%%%I%%%% %%%6%%%%%v%%%%%S%%%_%%%%%%n%%]%*%%%%%%%%|%T%w%b%R%%`%%%%%D%%%5%%t%%f%%%%%x%F%g%%%t%%%%%%%0%%%%%t%s%=%%%%%C%%+%%%%%m%%%%%W%j%%%[%%9%%%%%%b%%%F%D%%6%"%%n%W%%%,%%%%B%Z%%%%%%%~%8%%%%%%%%%e%%%%%%%k%j%Q%%%I%%%%%%%+%%%%%V%%%4%%J%7%9%%%a%~%B%%%=%%%%%%Q%%%%%W%%%%O%%%M%%h%X%%%z%D%%%j%j%%%%%%%%%%&%d%%%%%%%:%%%%%%J%-%r%%%J%J%J%%&%%%%%%{%%%%[%7%%m%%%%%%%R%3%%!%L%O%Y%C%x%l%8%%%%%$%%%%3%%r%{%l%8%a%.%%%%%U%%%%r%I%%%%A%%~%%5%%I%%9%%H%%%%%%%%-%o%%<%R%a%%%(%%%%W%% %#%
%%;%L%%%%l%%%%%,%%%%Y%%m%%%%%%%2%6%%%%%d%%%%%%%%Y%%%%%%I%%%Y%7%%%%]%C%+%%E%%%%%K%%>%'%.%%%%%%H%%%k%%%%%%W%%%%V%w%%%%%%%%&%"%"%R%%%4%%%0%%]%%%%%4%%P%{%%%K%%%%%F%T%D%D%%F%%%%c%"%"%r%!%%%%E%D%D%%&%"%"%%P%%%%Q%%%%%(%%D%D%D%%&%"%"%%P%%%%Q%%%%%\%%P%3%-%%I%%k%G%X%X%;%%%%i%D%+%%%%%%%	%k%%%%%m%%%%{%%%j%K%r%%%%m%H%%%%g%D%D%%%%%P%H%F%^%>%y%%%%%\%%|%a%%.%%*%%o%%1%m%L% %s%3%%%%(%$%%%P%%%%%	%%%%;%%\%}%%%%%%
%5%%%%%%%%%b%V%%%j%2%_%v%i%D%%%t%i%%%7%W%W%)%;%%L%%t%%r%]%V%%%%H%%	%5%W%Q%V%b%*%V%:%%%8%[%%%%%%%S%t%%$%'%%%%%%\%K%%%%%%?%;%%%%n%%y%%%}%i%%%4%`%%%6%%%A%%%%%%s%;%%X%%J%%%%%%`%%%%%6%%%%%%%U%j%%%S%D%D%%R%%%%3%?%%J%%%E%>%%'%]%%%%%%%R%%%1%'%%%%b%%%i%%%%_%	%%`%Y%3%%%%%%b%[%.%c%n% %c%%%c%D%%%d%R%0%k%%]%%J%*%&%%`%/%%T%%%*%%%%&%%%N%%%%%%%%+%%%%\%a%%P%%%%%%%%%%3%J%%%Q%H%%%%%%R%%W%
%=%%%)%"%"%>%%%/%	%M%%%%6%<%%%s%B%!%%K%
%%6%%L%K% %%%3%?%<%%e%%b%,%X%!%%%%(% %+%	%	%%%%%%%%%P%%%8%{%%%_%L%%%`%%O%/%&%n%d%1%c%%%3%c%H%	%%k%%%%`%1%d%%z%i%%%]%%Y%U%%%*%%%%P%R%%%[%%%%%%%%%%O%D%%/%%%%f%^%%%%%R%D%%%T%j%%%$%%%%%@%,%%%s%T%@%%%g%%R%%k%L%q%%%%%f%%%%%L%G%H%y%k%%%%L%K%(%%%%3%:%%Q%E%%R%/%%m%%%%"%"%R%%%f%g%D%%%$%%%%%o%%%%%%%%%%%\%Q%T%%%r%%i%%%&%%3%%0%0%%2%%G%%%f%Z%0%%%%m%7%p%%%%J%%S%%%%i%%%%[%]%%%]%"%"%R%{%%%s%%%%3%d%%m%C%l%x%[%%f%%b%z%F%!%%%%%%R%%l%%]%%:%%%%%%+%&%%%%%%U%4%Q%%%d%N%
%%%<%+%`%x%%%%%%%%r%!%O%%%9%O%%&%$%%%y%%V%U%?%u%%Q%D%%%%%%2%6%%%%%d%%%% %D%F%%%k%%%%9%%?%%s%%%%%f%L%% %%%%
%%%b%%%%@%D%%%\%%% %>%X%%%%%%:%%%%7%%$%%%%V%%%:%a%e%%%A%D%%/%%%5%#%%%%%E%%%f%%%%%]%!%%!%%%%%>%%X%D%D%%j%"%"%"%
%5%%%%%%%%%B%M%D%D%%j%"%"%"%
%5%%%%%%%%%B%M%D%D%%%%(%2%o%%,%%%%%4%
%?%%7%%%P%%%%_%k%%D%D%%Q%%%o%%%%:%%(%"%"%M%%B%M%D%D%%j%"%"%"%
%5%%%%%%%%H%=%%%%%}%&%>%%4%%,%%<%%%%f%%o%%%%%%%%%%l%%%z%%%%%%%%%_%>%}%%%%%}%%]%%%m%Z%%%%<%%%%6%%<%%9%3%_%X%E%%Q%%%%%%%q%%=%%%%%%%%%%%%%a%%%%%%%%%%%[%%%=%%g%%%m%4%%%%M%%|%%%%%%%%C%%%X%%%%%j%%^%%%%k%%/%%%o%a%%%%t%8%%%3%_%X%%%%%p%%%%%%P%%5%%%%t%%%%%%%%%*%"%%9%%%%9%%@%t%%%%g%:%%)%/%>%%%%%Q%)%P%\%%%%%%y%6%%%%%%D%%b%%-%%3%%o%%%%%%%{%%%;%n%%%"%%%Y%%%%%N%%;%%	%%T%%%%{%%%%=%%:%%%W%%%%%%%%%z%%%%%%%%%%%^%%~%U%%j%%>%v%%D%t%v%%%>%%%%%P%-%9%%%%J%%%/%^%%q%%%X%V%%&%%u%%,%%%[%%}%%o%%i%%%%!%"%%8%D%%%%L%\%%%I%%%%%=%%%%<%%%-%%%z%%P%%%}%%%%z%%%%%<%%%%f%%l%%{%%%%8%#%%%%%%%% %%`%%%%%%%J%%%S%\%^%%?%%%%W%%L%%Z%%l%1%*%%G%%%%%%%%%%j%%%%%z%i%%%%c%%%%r%`%%z%%%W%%r%o%{%%l%%%%3%%|%%b%%m%%%%G%%m%s%y%%?%%%%%o%%%%%_%%%%%%u%%}%4%%%%%W%c%%%L%%B%% %%j%\%=%%%s%l%?%k%_%%%%%%%%%%:%%T%%%%%W%%)%%%%%"%%D%B%%%}%%%%r%5%%O%%%&%%;%%%%%y%$%%%%o%%%D%%%G%*%,%%^%%x%x%%%%%%%%%j%%%H%%<%%;%x%%%%%%%g%g%%V%%`%p%%+%}%%(%#%%#%%%%#%%%%%%s%%%:%%s%%%6%%%%m%%W%%%%%%%m%%%w%%l%%%%%%2%%%%%q%%%o%%%%%%[%l%%%%g%%%7%T%%%%%%%c%%a%%U%%6%%N%%%%`%%%%Q%%%&%K%%q%%R%%:%%T%%K%_%N%?%z%;%%X%%%@%D%%H%%%%F%%%%%2%%%%B%%%>%%%X%%%8%^%d%%/%
%%,%%-%%%U%a%%%%*%%%y%z%%%f%%%%%:%%%%{%%%%V%%%%m%%%%~%3%%%%%%^%%(%?%%%%%%G%k%;%%%%%%%~%%%%%%%%>%%<%%%%%M%%%q%%%%c%Y%%%-%"%%%%%%%%%%.%%c%%"%%8%%x%$%7%%%E%%<%%%%}%9%%	%%%k%%%t%%%<%"%%3% %%%%%%%%%%%%l%%%6%%%U%%%5%%l%%Q%%.%%%%%%%%%%%%%g%_%%%o%]%%%%%%%G%9%b%V%%%%s%]%%}%%%%%4%%%f%%%%%%%W%m%%%V%%%%%%%%X%%t%%%%%%%[%D%%q%%%%:%K%%M%%%%%%%%>%%}%%%%V%%f%%%N%D%G%U%S%%%%%%%p%%3%_%X%%%'%%%%%%%;%%%%Y%%%y%%%%%%%%w%0%q%%V%%l%9%%%%^%%%%%%%%%%v%3%%%5%%%w%]%%a%%%%%#%<%%%q%%%v%%%%%%%9%%%u%%%%%%;%%%%%a%x%t%%%%%%%%%%%%%W%m%%%%%^%%q%%k%%y%(%%%%%2%%%k%%%%X%G%%%=%%%%%/%%-%"%%%%+%c%%%%%@%v%%%%@%%%%k%T%%^%%%%:%%q%]%Q%D%%%%_%=%%%%%%%%%c%%D%D%%%h%%!%%%v%Z%%%O%%D%D%%%*%5%%%Q%%%%%(%%D%D%D%%j%"%"%"%U%%t%%%%%%;%"%"%"%%%D%D%D%%j%"%"%"%
%5%%%%%%%%(%%D%D%D%%j%"%"%"%
%5%%%%%%%%%%%%P%%%W%%%%H%c%%%}%K%F%`%%&%e%e%e%%%%%:%%%:%t%%@%h%h%%F%Y%D%D%%O%%%[%2%%k%%%%6%%%%%8%%%%z%%%E%%%%+%-%%*%N%D%D%%\%%%%%B%%%%O%%%%Y%=%%%%%%%j%%%%2%%V%+%]%%%&%"%"%%R%%%%d%n%%%D%%s%J%%s%3%%0%!%Z%%(%"%"%%!%%L%%%%y%`%%V%x%%/%%%%%%%%~%.%%%%%F%%%M%%.%]%*%W%l%	%s%%X%r%7%%%a%%%i%t%%%%%U%v%"%"%R%%Z%%%X%V%V%%%%p%%%6%%%%%%W%%f%%%W%%%%%%%%%|%%b%7%%%%%g%%%%%%b%%X%%^%y%T%w%b%*%T%r%%a%a%%%%%%%H%%%v%c%%%%9%%>%-%%%%d%,%%Y%a%%%%w%L%%?%%\%_%b%2%%%%%%<%%e%^%s%=%S%%%%1%u%%%W%%"%"%%%+%%%%2%8%s%%%)%)%\%%%7%%/%p%x%%t%%%?%~%%%%)%)%<%%%%%%M%_%%%%%<%%%%z%%%%%%%<%%:%%%%%s%%l%%<%)%%%%%%%1%%%O%%%A%s%=%%%%D%L%J%%K%%%X%%%%%%N%%%U%%+%u%%{%%%#%%%%i%Z%X%|%%%H%%#%%%a%%H%%3%-%%%%-%@%%%-%%%F%%j%%%%%%P%%%%'%%%% %%%B%%V%+%9%9%9%%%%%6%|%%%g%%S%%%%d%>%%%%%%%%%%j%%1%L%b%L%8%%%M%g%%%%%%d%%%%%e%N%%%%%%M%%%5%%%%%%%%%%%A%%%d%%%%%%m%%|%o%_%D%D%.%%Z%%~%%Z%%P%T%T%%7%j%E%E%U%%+%,%,%t%%%%%4%]%%\%2%%%%%%K%B%%^%,%%%%%%%%%%%%%3%#%?%%%%%%	%%%%>%%%%%%}%%~%%%i%%%V%V%V%%@%q%q%%m%B%A%A%%%\%C%%*%F%%%%%%%%i%%%%%N%L%%$%%%%>%%i%I%f%j%%%%%%%%%%&%d%%%n%n%%f%%%$%5%i%$%C%%%%%(%%%V%%%i%%"%*%%%T%h%%%%%u%`%%%\%%%>%%h%%%%%%%3%g%%%%%%%>%%%%1%d%%%s%%%%%%%%K%%%1%%%c%%	%s%%%%%%%&%%%%<%c%%%%.%%%n%%&%%%%%a%%a%%%D%b%%%m%%&%%%%%%]%#%%%%%%%%%%{%%%%%%%%%j%%%%+%%%%%%%L%%%t%;%%%=%%%K%%%%%%%%	%%%&%%%%%%%%%%%P%%y%%%}%}%%*%%%y%y%%%%%%F%%j%%n%^%%G%)%%)%3%%X%1%m%%e%e%%?%%v%%s%%%%%%%%2%6%l%%%%%%%%%%=% %"%"%%(%%:%t%%%%7%Y%%v%-%%%%%y%%%%/%e%%%%%%"%"%%p%B%-%4%4%%^%%z%%%}%{%%%%|%^%%y%%%t%%%A%{%@%D%D%%N%%9%%%K%%.%%M%%%%%%%%%"%"%%P%%%%Q%%%%%(%%D%D%D%%j%"%"%%P%%%%Q%%%%%(%%D%D%D%.%h%%%%%$%%%#%,%%%a%S%%%[%.%%9%%
%%=%%m%:%%%%%%%%v%L%]%o%V%9%o%M%%P%%u%^%(%%%6%%%i%C%%E%%%&%"%
%%%K%(%$%#%/%%%%%%%`%0%%H%N%l%G%X%%%%i%%1%m%L% %s%3%%%%(%$%%%P%j%%%%%%%%%%6%%%%%Z%'%%V%%%%%2%%%N%%%w%%%	%:%%E%D%%V%%%%Y%I%1%I%%%V%W%_%%%%H%&%V%%G%%%]%%%%E%%%k%%,%{%a%t%%%%c%F%t%%%%%%%h%%%%%e%%%%%%f%%%
%%%%%%%@%%
%%~%%0%<%6%%%%%%%%U%i%%%%%%%%0%%F%%b%t%b%s%%J%%%4%%%)%%%%r%%%%i%%%f%%-%$%=%%%%%%%%U%M%%S%%%%%%%%%%-%%%b%%s%z%;%%%%`%%S%%%%%%%%F%b%r%@%%e%]%%%%%%%%+%5%%%K%D%D%%V%%L%3%%%%%
%(%n%d%1%%+%%m%/%%%`%%I%%'%?%%%y%%%$%%%V%%%n%%%Q%%%%B%%%%9%%%%%%R%%%%d%%c%%%%|%*%%%%%%%$%+%)%%%)%1%%X%%%%%3%?%%%8%%%m%%%P%%%%'%?%%%}%~%%m%%%,%%%%%%%%%%%%7%%{%N%y%%%%%%%V%%%@%%L%%%%%%%%%%%"%r%%k%V%%k%%%z%%%%D%%%4%&%%%%B%%&%%%%B%%%U%%%%%%~%%%%L%%%%%%2%%%K%%9%b%%e%L%x%+%R%%
%%2%%%`%K%%%5%%$%%,%%%%%%O%(%%A%%%%%%%%%a%%%%%'%%}%%%%%I%%%%%%%%m%%p%%T%%%%*%%%%%%`%%%%%%V%%%%%d%%q%%%b%%%%%%p%}%@%)%3%%O%%%W%%%%%%%}%f% %%3%%%%%%%%%%~%%D%D%%j%u%%v%%1%%$%%S%p%y%)%%S%%%K%%I%-%%q%$%;%-%%v%%,%%%t%%D%%%%%%%%+%%%%%%%%%%%y%%%%%%%%%j%2%>%
%%%%%~%%%c%[%D%%3%%%%%R%%%%+%,%%%%L%j%R%%%@%%w%%D%D%.%r%u%{%%1%;%%%)%%8%%)%%%s%
%%%b%%%<%6%%I%@%B%R%1%	%%%%y%%%%%5%%%c%%%s%%p%%%_%
%%%%6%%>%i%%)%%F%%X%%%a%t%%%%%%%%%%%%%%2%%%r%%%%%I%)%%%%R%%%I%%%%%F%%%S%,%q%[%%%%%b%%%%%%R%%&%"%%;%c%W%%&%%W%%%%%%%%%%%%U%g%%%%%%%Y%R%%h%n%A%_%?%%%k%F%%3%c%H%%%e%%4%%l%7%%%9%%%h%%9%%%4%}%%%=% %|%%|%5%i%i%i%u%T%%%%%%%
%I%%0%%U%%%%%a%%o%%%%%\%%%"%r%%%u%%%%E%,%%/%*%%0%%%F%%%%%%%%%(%%%%E%D%D%%&%"%"%%P%%%%Q%%%%%(%%D%D%D%%&%"%"%%P%%%%Q%%%%%(%%D%D%D%%j%"%"%%P%%%%Q%%%%%(%%D%D%D%%j%"%"%%P%%%%Q%%%%%(%%D%D%D%%j%"%"%"%
%5%%%Q%%%%%(%%D%D%D%%j%"%"%"%
%5%%%Q%%%%%(%%D%D%D%%j%"%"%"%
%5%%%%%%%%(%%D%D%D%%j%"%"%"%
%5%%%%%%%%(%%D%D%D%%j%"%"%"%
%5%%%%%%%%%B%M%D%D%%j%"%"%"%
%5%%%%%%%%%B%M%D%D%%j%"%"%"%
%5%%%%%%%%%B%M%D%D%D%%&%"%"%
%5%%%%%%%%%B%M%D%D%D%%&%"%"%
%5%%%%%%%%%B%M%D%D%D%%&%"%"%%P%%%%%%%%%B%M%D%D%D%%&%"%"%%%f%%'%%Z%%h%T%D%D%D%%%%%%B%M%D%D%D%%&%"%"%%P%%%%%%%%%B%M%D%D%D%%&%"%"%%P%%%%%%%%%B%M%D%D%%<%%%w%%B%M%D%D%%F%%M%%>%]%%&%"%"%M%3%%%j%"%"%%h%%%%%%%P%%%%%%h%%%&%"%"%M%&%%t%M%M%D%D%%l%%)%%D%D%%%%%%%%%H%%	%4%]%S%%%%&%%h%%%&%"%"%M%6%%%j%"%"%%h%%%%5%5%c%W%%&%%W%%%%%%Y%%)%"%"%%%%%W%%%%%J%M%D%D%%%f%%%s%%"%"%"%%%%%%o%j%%D%D%%)%%%%q%v%%%%\%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/greenarrowicon.gif__ __290__ -->
%G%I%F%8%9%a%% %% %% % % % % %%%%0%=%;% %A%%%%<%T%x%/%%%%%%%%%% % % % % % % % % % % % % % % % % % % % % %!%%%% % %% %,% % % % %% %% % %%>%%%I%+%%%j%a%L%%%@%%%%%c%9%%h%%%%%%j%8%%D%&%%E%%%%%%%%%%B%%%x%%%%%% %j%%`%%U%%$%%%Z%"% %;
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/guide1.png__ __40746__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%/%%% % % %%/%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%0%`%1%r%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % % % %I%D%A%T%x%%%%y%|%T%%%%%%	%Q%%T%%m%+%	%
%%k%-%%%H%%%%%%_%%%@%%%@%%%R%%%%%%%%-%%%x%%%u%A%%%%W%k%%.%V%%%%%~%%&%.%)%%2%%K%D%%m%"% %	%%%%%%%d%%%%Y%2%3%%%$%%%%%z%>%%%%-%g%%3%%;%%s%]%%%%%e%% % % %%%%5%{%%%%%%%%C%%% % % %%%%%%H%%#%%J%%%%%%V%% % %@%%$%%	% % % %`%%d%%%%%%%%%%C%%%%%%%g%%%;%^%%q%_%2%<%^%%u%%%1%%%%^%s%%%%%%%%%%%%%%7%%%9%x%%%%%%%%_%G%?%%%%%%%j%y%%%:%%,%L%%u%%%%y%%%%%o%%A%%%c%i%%%%w%%h%%%%%%%%'%%%%%%%%:%%%%%%%%%%%%%%%%%%%:%%%%%%%%%%%%%%%.%%>%%`%%%%%m%%%%%%%%%%G%%%%%G%%%%Q%%%%Q%|%%%%%%%`%%>%%l%]%=%%%j%h%%%%%%%%%%%?%u%J%%%.%I%%~%%%%%%%%%%% % %%%%%D%%t%=%W%%%v%%2%%%%%%>%Q%%{%%%w%%A%%%%K%%%}%P%%%%w%%%%{%2%%%%%%%%%% % %%%O%%w%%%w%s%s%s%U%\%\%%%%%?%%!%"%%%%N%X%A%%%%=%5%|%%%%%i%X%o%%%I%%%/%%%%%z%%[%%T%?%%%k%=%%r%%%4%^%%N%%%%s% % % %"% %%%%E%%6%G%%%#%=%%%%h%%%%%%%]%%!%u%%%I%%R%%%%%%%%%%%%%%%_%%%%%%%%[%c%%H%%^%%%%2%}%%R%-%%%^%%%l%%[%c%%%%}%%%Z%?%%"%I%%%%%%%G%%%%% % %q%%%=%#%%%%T%V%%%t%%%%%%a%C%%|%V%%%%)%%%%%7%%%%]%%~%W%$%%q%%%_%%%%%%%J%%%[%5%1%Y%%%%;%%%%%%%C%E%a%/%%5%%%%^%%%%%%%%%%%%%%%e%L%%M%%%%*%I%%%%%%%%%%%F%%f%O%%H%:%%%n%%%U%%%{%U%%%"%%%%I%}%%%Z%%z% % %%a%C%%o%p%%%x%%%%%x%B%%%%%%I%v%{%%%M%%e%%%d%o%j%%d%%o%?%]%%+%%{%N%%w%'%%%%%Z%%%%%%%%%%%%%%%%^%%7%%x%@%%%%%%Q%c%%%^%%%}%%%~%%a%k%_%%%%%%_%W%_%I%%%S%%-%I%%<%%%G%%%%% % %%V%%%%%%%%t%%3%%%%%%%f%{%C%h%% %%%%%%%K%%%%5%%%%%%%%m%/%J%%%%f%%*%W%%)%S%%%%%%G%%{%%~%%%%k%%p%%i%%%`%%~%%%:%z%%%T%%?%%%%%%%%%t%%r%%S%?%T%%%%W%%T%%W%u%%}%%f%%|%\%%s%%/%%1%%%%b%~%s%%%%%%%%%%R%I%%%C%%%%%%%%%%%%%t%%h%%%%%o%I%%~%%%%%%%%%;%P%%%c%^%Q%%%7%i%G%%%^%%%%%]%%%k%*%S%/%<%s%%%5%%&%%f%{%%%%%g%%%%o%K%%%%%%%%%%"%=%%%%%%%w%%%%%% % %H%%P%%
%%m%	%%%%=%%%/%%%K%%%%%~%%%%^%?%=%/%%%N%%>%%%=%z%%%%%%%%\%%v%%%%%%%%%}%%%%%%x%%%%%Z%%%%%b%%%%%%E%%%%%%%%%U%%%~%%%%%0%3%%h%%%%%%%%%%%w%%%%%%.%%^%O%%%-%I%%%1%]%%J%%%%%=%%%g%%%%%%%%=%%%%%%;%%^%%}%%s%%%%=%%%T%%%%%[%%%o%%K%%%%%%%4%%%l%%%%%%%%%%%<%%y%%%%%7%%%B%%%%w%%}%%_%%N%% % %:%V%%%5%%J%m%%%%%o%%%%%w%U%r%%Y%%%^%|%%=%%%%%%%%%%%I%%%%S%j%4%%O%%}%%%%|%%%%M%%%%%%.%I%z%%%2%%%%%%~%%=%%4%%%%%s%%%x%%%H%%-%%%%[%%%%%%%d%J%?%%%k%%>%%?%6%%%6%U%j%%%\%]%z%M%%%=%T%%%%|%%G%%J%%H%%%%%b%>%%%?%%x%%m%}%?%%%~%[%%%f%%.%%T% % %%%x%V%C%=%%%G%,%%%M%%%%Y%%%%&%5%5%5%%%%Q%%%%U%c%c%%%%%4%%%%j%4%%%%%O%j%?%%%O%%%%d%%%%v%%%%%G%4%p%%c%P%%%%%%n%%%/%%%%%%%%%%]%/%%$%W%%L%x%E%y%%%%% % %%%B%=%%%%7%%%=%4%o%%v%%%%<%%%%g%%%%Y%M%I%%%8%%%%%r%%%{%%1%5%5%:%*%%M%%N%%%>%%{%H%%%8%*%%%!%%r%%%%%%%_%%x%F%%%%%f%%%+%%~%%%F%%%-%%{%%%1%%>%%%%t%%%%%%%%%~%T%%%%G%%%%G%c%V%;%%u%]%n%V%%i%%6%%%$%%%%%%%9%%%o%%%%}%%o%t%%|%%%%8%L%%%{%%>%w%,%[%Z%
%{%+% % %%H%%%%c%u%%%%%m%%%"%j%o%%%%%%%%q%q%w%%%%%%%%%%P%v%%%=%;%%%K%G%>%?%%}%%5%:%q%%A%2%M%%%%%%<%%g%%%%i%?%%%c%?%%%%%%%%%%%%K%%%%%%%%%%%%?%%?%_%%%%%%%%%%%%%%V%%%%%%%%%^%%v%?%%E%%e%\%]%%%9%%%%%%%%%%l%%%<%<%%%%%%B%G%%U%%%%%s%%%%%^%%%"%I%%%%%%N%/%%%s%%%%%&%%%%%m%%%}%%%%%%%_%%g%%f%%%$%>%<% % %%% %%	%%%%%=%4%%d%%%%%%%%W%%%%n%%%/%$%I%%%%%=%%%%%u%%%%%%%i%|%%_%]%?%S%w%%%t%%%%%%M%%%R%%%%L%}%%;%G%%J%w%%%%G%%%%%%%%$%%1%%%F%%Z%w%%%%8%%o%H%f%%K%%%%%{%"%%C%%%_%j%%%|%%|%%e%e%%x%%q%n%%%?%%%%9%R%%e%m%3%%%%J%r%%V%%%%%?%%a%%*%{%%%%%%%%%%=%%U%%m%%x%%/%J%}%%%%M%%%?%O%%%!%%)%z%%h%%%%~%O%%%%I%%%	% % %D%(% %F%%w%%%%x%%m%j%R%c%S%%%%?%R%c%c%%%%%%?%M%M%%%%%;%%)%*%%%%b%%%%%j%%%%%&%%%<%c%%%%W%>%%U%%%%%T%%%%)%-%?%#%v%%A%z%%%	%%%}%%s%%%%s%z%%%
% % %%%%%d%F%%%#%=%%6%%%%o%%%%7%%l%%D%%]%%%.%%%U%%%%J%%)%%%%$%I%%Q%%%%%%y%r%w%%%%%Y%%%%%%%%%%%%W%4%x%%%[%V%H%%e%%~%2%t%%%%% % % %m%%%%k%%%G%z%:%m%%%%W%%U%S%%%%	%%%%%I%%% % %%%%%6%t%%%%z%h%%S%c%%b%%a%%% % % % %% %%%h%
%[%% %%%%%%%%k%I%l%% % % %%D%% % %@%%% % % %%% % % % %%%c%%l%%%%%U%c%%%%%%%F%%~%o%%% % %%% %j%%l%%%%l%%{%%<%%%]%_%%%
%%-%%9%[%E%5%%C%%Y%%%%%%%%%%o%%%*%%9%[%k%w%%>%%X%%%%%o%%L%%%%%3%c%]%m%\%%Z%%&% % %%J%n%%+%s%%i%%%1%J%%%$%%%%%/%%%%0%O%%%%1%z%j%%%u%a%%%%%%%%%%v%%%R%%%%%%V%%j%%%1%%%%S%%%&%o%y%%%%A%%%%%%m%|%%% %%%%%%C%%%%%%w%%%3%p%%3%%%:%%q%%M%%%%%+%%%%%Z%%%"%%U%%H%%%%%%
%g%%)%%v%%%%%%%%%}%%%%%%[%u%%Y%O%%
%%%%'%%%4%%%U%%%H%%Y%7%%E%%%1%%l%=%%%U%%%%a%%e%%%f%o%%S%9%v%%%%6%l%%{%%Z%%`%%%]%%(%T%1%%%%%}%%	%=%%Q%%u%m%c% % %%% %%%%%%%%%%~%%%;%%%M%%4%m%%6%U%V%%i%%+%%%%%%%C%%%<%g%n%%%%M%%%%H%%%t%%c%%%{%%%^%%%%<%%%%%-%%%%%%)%!%%:%%%4%%%%%D%w%%%Z%%_%%%%%%%[%%%%S%%%%%b%]%>%E%z%%\%%%j%%%(%5%%o%\%%%%%%(%s%%%e%%
%^%%)%%H%%%%%%%%;%%/%*%/%%%S%n%%%%%^%%l%%%j%M%{%l%g%% %%%m%%"%%%6%%%%%q%% %%p%a%%%q%n%%g%%%%%;%%%%%%#%&%%%%%%%%{%%%%%%%%%O%F%%%% % %%D%a%%%7%k%6%%%%%9%x%@%%j%%%%%%%%%%%B%%a%%%%a%%<%%%%%%%%%%%K%%%%^%%_%5%Y%%%%%%6%%z%%%c%t%%%%%%V%%%4%]%;%%%%y%a%%%r%@%%%%%%%%f%%F%%%%R%%m%%G%5%% %%%%{%%%%j%M%%%W%R%%&%%m%%%%%%%K%%}%R%%%%m%%%%.%G%%%%%[%%k%%%%%%%%+%%%%%%%%%?%%%%%%o%=%%O%N%%%%x%%%r%%%C%R%%O%% %%%%%0%%c%"%2%%L%G%%,%%%%%r%%%a%x%%=%%%%5%}%%7%j%w%j%o%U%%%$%e%%F%V%%i%G%%t%%5%c%"%%B%%5%%%m%z%*%%h%%T%%%%%7%%s%%U%>%%:%a%%%A%%%%L%%%6%=%2%p%%%i%%#%%F%r%%k%%%Z% % % %%"%{%%%^%%u%y%%"%=%_%%%%%N%%%%K%%%%%%j%%%%%%%J%%%=%%%%5%i%*%%}%%.%%f%P%%%3%%%;%W%z%%9%}%x%%`%%:%%%%%%%7%%%%%%%B%%%%%O%%%%o%%%%%%9%%Z%%%%%%%%%)%9%%%%%Z%l%%%l%%%%%%%%%|%r%%%%x%]%%%#%S%%%Z%%%%j%G%%%%%%%T%%z%V%H%% %@%H%"%Z%%5%%A%%%%y%%%%a%J%w%%%0%*%%%%4%j%%"%%%%U%%%c%%g%e%%%%i%%
%$%%%2%%%%%$%%%c%5%m%J%%%%\%%%%%%%%1%+%G%S%%%]%%%%%L%I%%-%%J%#%%s%%)%M%%T%z%%%}%%%%%%%%%%%%i%%%%%k%%%R%%k%d%N%%%%%%%%>%%;%Y%%%%$%%%%%%%5%j%%%%%%%6%%%n%%%%%%%j%%%%%%%%%%%%%%%%S%%F%%%%%%%{%%8%% % % %a%%%W%V%%%W%%%%w%%y%%%%A%%;%%%%%%%%]%$%%b%{%r%%*% % %"%%h%%f%%%%%%"%%%%%%%%%%%-%%%%%%y%%e%Y%%-%%%7%W%k%%%m%%%%x%%~%%-%%%%% %%%%%(% % % %b%%U%%M%b%S% % % %%
%%Q% % % %%D%% % %p%%h%1%X%%h%%f%%
% % % %"%.%o%%%%A%%%%%g%+%% % % %%|%%%'%%%% % % % %%%#%
% % % %%h%"%+%%%Y%W%%%%% %%%%%%%m%	%%%Z%%%R%%%%%%o%%%.%%%!%I%Z%%%%%%%%%0%%%%%%%%L%S%%|%y%%%v%%%%:%Y%%%n%%%%%%%%%%%%%%x%%%%%>%%%%%m%%%%%O%?%%T%?%%1%%7%"%%%%%R%%%%%%%%%%f%J%%%|%z%y%L%%%%%%Z%%h%%#%=%#%;%j%%>%~%%%%%9%E%%{%%%%
%%D%%%%%%%%%"%%u%%%%%%l%%%%%%%%T%%%%%}%%%%%%%%t%%%l%}%%%%I%%%%?%%M%#%2%%%s%%%o%~%%%%i%%%%%$%%4%M%w%%%%%%-%%3%M%S%%%%%%%%%Q%{%%%%{%X%W%%%%%%%%%h%%%{%%<%%%%%%x%l%%%g%%V%%I%%%u%n%%%%%y%%%?%%%S%%%%%%%u%%%%H%%z%%%%%^%-%V%%n%%%%_%%%A%%%n%%%%K%I%%%%|%%%%%%%i%%%%%%%%%%%J%N%N%%%%%i%q%%%%%%%%%%k%%%$%%%%%%%l%
%%%%>%7%}%%%%m%%%%?%%%%%%%l%z%%%%%%%O%%6%S%%%%*%,%/%o%%%%}%T%%%%%%%@%%%%-%3%%\%%%%%%?%%r%%g%d%%0%%0%j%%~%%%%%%%%%=%%%%%%%%%F%%%@%%%%w%U%B%/%%%%%y%%4%I%%%%_%%%%%f%d%%%%}%%%%%%%d%%%%{%%%%%%%t%%%%-%Z%%%%%7%%%%8%)%)%I%%%%:%%%%t%%%%%%%.%P%%n%%%%G%%%%%C%=%{%%T%%%=%u%%%i%5%4%8%%%%%u%Q%{%%%%%D%;%%s%%}%%%%%%%H%%%c%%r%a%F%%^%X%[%%%%O%%:%%%]%%%%%%S%%%]%%%%$%%0%T%W%W%%%%&%u%%%U%G%%%Q%%.%]%%%s%g%%%j%q%%%%%%%%J%%%%%%%>%%%%%%[%%%%%%%n%y%%%j%l%l%T%C%C%%%%%t%%%)%m%%%[%;%%%A%%%%%%%%i%K%%	%%%%%%?%V%x%|%%%%7%w%%%%%%%%%%%%}%%%%m%%%%%U%X%X%%%%|%%%P%%n%%%%N%%%%3%%B%%i%%%)%S%S%G%M%%%[%%%%g%G%*%%%[%%V%%%0%%m%}%%%%%2%%&%?%%%%%%%%%C%%%%%%d%%%%%%%%2%E%%U%E%%%%%%%%%n%V%%=%Y%M%f%%%%%%%%%%%B%z%%%i%%%%%E%%%m%w%u%%7%%%%%%%%%%% %%%k%%%%Z%%u%%|%I%%F%M%%%%%%%I%%%%S%%.%]%d%%%%?%%|%%%v%%s%%9%:%~%%%%%?%%N%%%%%%%%5%l%%%%%%%%%%%+%%%$%}%t%%%%%H%%%%1%%%%%%%%%A%%%%%W%k%%5%%%%%o%%%%%%%%W%%/%%%%%'%N%%%%%^%$%%%%%%%%%V%}%}%%v%%%_%w%u%%%o%l%%%%%%%%%%5%%%%%%%W%%%%%0%%W%%t%i%E%h%%,%,%%%%%%%%%W%%%C%%%-%[%+%%%%%%X%%%%%%%n%%%E%%F%v%&%6%)%%%%%v%%%%b%%
%%X%%%c%%%V%%%%%%%%5%}%%L%3%S%%a%k%W%%%%@%]%\%%%%%%%%%%%%%P%%Q%%%%%]%%%%%%%%5%%%]%z%%%]%%}%v%%%f%%%%2%%%%%%D%%C%%%%E%[%u%j%u%%%%%%?%%%%%%%e%%%%%f%%%[%%%+%%i%%%%i%%%.%n%%%%%%#%%%%V%%%^%%%%%V%%V%%%%%%%%!%]%0%%%v%%%N%%:%y%%%%%B%M%%%%%\%%c%%%E%%%%%_%%%%n%%v%$%%R%'%{%%%%%t%%%%R%.%<%/%%%%%%%%%%%*%%%%F%%f%d%%%)%%%~%%%%%t%%8%r%%%%%9%%%%%%&%w%%%%%%%{%v%o%%%%$%}%p%%
%u%N%%%%%N%%%[%%%{%%J%%%%)%%%d%%)%}%%%D%E%%q%%%5%f%%%q%%%I%%:%u%J%g%%}%%%%P%c%c%%N%%<%%%%;%%%%%%%%%%%%%%%%%%%%o%%u%V%r%X%%%%%{%%a%%N%%	%%F%=%%%%
%Y%%%8%%%e%+%%%\%%e%i%%!%%%%%%%%%%%Z%s%%%%5%%%%%%%k%Z%%x%%V%%%.%[%%%%r%3%%%%%_%~%%%%%=%{%%x%%B%%%%t%w%%u%%%5%%i%%%%%%%%%%I%%%%%z%%%[%%i%%%%%%%%%%7%.%%%%%%%%%D%%<%%H%'%~%2%%}%%%%%%%G%s%%%%%%%;%%%%%%	%%%%%%%%#%%%%m%%%%%%%f%]%%%%-%%%m%	%%%B%%+%%%"%t%t%%%M%%\%%s%:%%%%%%%{%%%$%)%%%%%%o%E%T%=%%%%%h%{%%%g%%%K%.%%D%v%%%%%%%%%?%?%%%%%%%%u%%%%I%%?%n%j%o%%%%%%%^%%%~%%%%u%%%%_%%%%:%%%%|%%k%%_%%%%%0%%%^%3%X%%T%V%^%%%%%J%'%N%%P%%.%]%t%%%I%%>%%%|%%%%%%_%%%%%%%g%E%%%%\%%%%%%l%-%%%%%%%%3%%%V%H%+%l%%x%%u%%%~%%F%%p%%%%%%l%+%%Y%^%.%[%%%%r%%E%e%4%%%%%%P%%%v%W%,%_%k%%%%%%%9%%%_%%%h%T%E%%d%%'%'%%%%%%%;%I%%%%2%%%%%%M%%%x%%%%%%:%v%%%%'%m%%%%8%S%%%%%%%%%-%%
%2%}%%o%%
%%%%%H%%%%C%%x%O%%%%%%%a%%%o%%1%%%[%y%%6%%m%%Q%% %%,%%z%%D%[%%%%h%%%:%U%%%W%u%u%u%%%%7%"%2%]%%%%@%%%z%%%F%=%%%%%%s%%%%#%G%%%%%A%%h%%T%W%'%u%%.%u%%n%%%%N%k%%%%%%]%%%%g%u%%%%%C%r%%%!%;%+%]%%%%%%%c%J%J%J%%%n%W%S%S%S%L%%	%%%g%%%P%%%%o%8%%X%%q%%%?%%%%C%%%%^%%i%%%%%m%%%%+%%%Q%c%c%c%%%e%%9%%I%%l%%%%%e%y%z%s%%&%I%%%O%%]%%%%%%%%%%Z%+%l%R%%
%)%3%?%%%F%#%Y%%%%%%%%/%%t%%j%%}%%2%3%3%e%%%%%%%%%%%%%6%?%%%a%#%%4%M%%>%]%%%%%J%%d%W%%%%4%N%%%%I%I%I%%%a%%%%:%v%%%%%%%]%%%%%%%9%%%%3%-%%z%%%!%G%%P%%%:%%%%%%M%%%?%%%t%%?%o%%%o%%%7%G%<%%x%%%^%J%%%%%%%[%%%w%Z%u%%J%%*%_%%m%%%%%%%%~%\%%'%%%%%N%%%]%Y%%%%d%%%%'%%%"%%%q%%%%%%J%%%%Z%s%%9%%h%%%%5%b%x%%%_%u%u%%%%:%%U%w%u%%,%%%%%]%%%%%%n%%%%;%%%~%%%%%%%%%%%d%e%\%%%m%%%%0%5%5%5%E%}%%%%%%%%9%%%B%%%R%%D%%q%%r%%4%2%%0%%%%%%r%G%(%5%%%%0%%%%~%%v%|%%C%%%%I%W%N%%1%%q%%&%_%%%p%%%%%%%%%%}%%%%%%%M%M%%2%%a%%%%%B%M%%%R%a%y%%%2%%N%E%%%<%%o%%%%*%%*%+%%d%d%d%%}%<%%N%5%%T%%%%%%%%%%%u%N%J%R%%%%t%N%%d%u%2%%d%6%%%s%%%T%S%%%%%%Z%%%%7%%%%%% %%%>%%%%"%X%%%%?%%$%]%2%%%%%%%Z%%%%%%%%t%%%}%%}%%%%%:%t%%+%%%%%%%%s%%C%G%%Y%%%%%%u%%%%5%%%%%N%u%%6%V%%%%w%%>%:%l%%%%%%%%%Q%%%%%%%%%%%}%|%}%+%%%%%%%a%%%;%%y%n%%%%%%%%%]%%%%%S%%%'%Z%W%/%u%W%%%%%U%%%:%%^%%i%%^%%O%%w%_%%%I%%u%%%G%B%%%%%%%%%%%%i%D%%%%%A%J%.%%%%x%%%4%P%E%4%R%%&%%%1%%%]%%%%%%%%m%%"%%%%%%|%%%;%%=%+%%%%Y%% %%|%%r%%%9%S%%%=%%%%%%[%%j%%%%}%%]%a%%%%U%%8%$%%[%%%%G%%%%%%%%K%%(%k%z%%%%%%%%_%e%E%%W%%]%%!%y%%%%%s%%%:%%t%R%%%'%T%%P%%s%%,%C%%%!%5%%v%u%R%%%M%%v%%%D%%~%v%\%%%%#%%%%%%D%%%%P%%%%p%*%%5%%%%%%%%%%%T%%8%%k%%%%%%7%%%.%%m%%L%%%%%K%%.%^%A%%3%l%D%;%t%H%%%%T%%(%%%%#%G%t%j%%%%%%%:%]%t%%t%%%^%%%%t%%Q%%w%;%%R%%g%%%u%-%%%%%%%%R%*%%%%%%%`%%{%%V%I%%%%%%%%%%%%%~%%%~%v%%%%%%%d%%%%R%%%%%Y%%%%%N%%%%q%%%%%%Q%q%%%%%%%%$%E%u%t%%%?%L%%%}%%[%%%%9%T%%%"%Z%X%X%%%%%%%l%Z%%%%6%=%%B%%%%%%%%%%%%%y%y%y%%%%%%%%%%C%%%x%>%%
%%M%%m%%%%O%4%%%%/%%%%$%%%%%%%%%%%%%%:%=%C%j%4%%%)%S%%O%%V%]%%A%u%6%%%%d%W%%%$%#%%%%t%%%c%%%%O%%%!%?%%%?%%%7%6%p%%%Q%%%%%%@%%\%%%%X%%%8%%%.%%%%%%%% %%%F%%s%c%%%%%K%%%%%%%g%x%j%j%j%%%%%[%|%Q%{%V%%%%%p%C%E%%%}%u%D%u%%+%T%W%%%%%%X%%%%i%%@%G%%%%%%%%?%%%%%%%%%%%h%9%%%%3%S%G%%"%%%-%%Z%%%%%J%N%%{%%%%y%e%x%%%<%%%s%d%%%[%%%%%%%V%6%%%]%%%<%%%o%(%%%%%%c%%%%*%%%T%D%=%%%%%%%%%%%=%{%j%%o%%%%%%*%%*%e%f%:%%,%)%%%%m%%	%-%+%%%%u%%H%%+%%%Y%%F%%'%N%%)%4%%%%%%}%]%%3%%%%Q%%i%%%%>%R%%%%d%{%%%%%t%%Y%I%:%%%%%%%%%%%G%%%%% %%%%?%%%%%&%%6%%%%O%%%%e%%%u%%%%%%D%%%K%%%3%%%%%%'%%%~%G%%%%%%%%%%T%%%%_%%%%%%%%%%%%%{%Y%%t%%%%%%%%%%%%%%%o%]%,%%%H%%%%%%U%Q%]%%k%%D%E%%%%=%%%%%4%E%%"%%t%%%%%%]%z%%%%%%%8%%%E%%%%_%%%o%%%0%%m%%%G%C%%%%p%%v%%%Q%W%%%7%%%%<%L%%~%%a%4%%%%P%%%g%_%%%%|%]%6%%9%t%%V%%v%%%;%%h%~%~%~%%%%h%M%%>%%.%%%4%\%%%%%)%%V%+%3%3%?%j%W%V%j%2%%d%o%%%%d%%%%.%{%r%%%}%%S%%f%'%%%E%)%%% %A%%%?%%9%O%%d%w%%O%5%%P%3%%}%D%%%$%u%K%M%%%o%%%%%%%%s%%W%j%O%%%W%%;%%%s%%%k%W%%%g%\%#%%]%%+%%%%3%4%:%%7%%%c%%%%%%%z%J%%%}% %i%D%D%g%%%%h%(%%;%%<%%%z%%R%%%%%%%%U%E%%%%%j%%;%_%%%%%%k%%#%2%%%%%%%%]%%%%W%y%%%%%%2%%%F%%%%%=%j%>%:%%%%%{%% %%*%%C%%%%%%%%%C%%%%%%N%%%%@%%%%%%%%%3%%%l%%%x%%%S%%%%L%}%v%%%%%5%%/%c%%%%\%%%% %%%%%%%%-%%%C%^%%;%%%%%{%%j%%%%%%%%K%%%%%%%c%j%l%l%%7%%%8%]%R%C%C%%%%p%%f%(%%}%D%S%%%q%%%%%t%N%%^%I%%%v%E%%*%%%%%%s%t%%%%F%|%%%%%%"%s%%%%%%%%L%}%P%%%N%%>%%%C%%%%6%%%%%>%%%W%D%v%%%f%%@%%%%^%%%%%o% %R%%F%%G%:%%%%%u%	%%%%%%%u%%%%%%%-%]%Z%~%%%w% % % % %I%D%A%T%\%%%%%%%%K%%v%%l%M%%C%%3%%%%k%%%%S%%%%%%%%%|%+%%%%%%%@%%%%Z%%%	%%%%<%%%w%%>%%%3%%%N%%:%%%%?%%d%%%h%%	%%o%%!%u%9%%G%S%%%%$%%%#%%>%%%%%%%%%<%%%;%%%%#%%%>%v%%%*%F%%%%%%%=%:%%v%%V%%h%%%d%%%?%%%%+%%%%%n%%%m%z%]%%%O%%%1%%%P%f%f%%G% %]%%%>%%I%%%%%d%O%m%%%%%1%@%%%m%%%D%%%%%`%|%%e%%%%%%%%%7%%r%%~%q%%W%%%%%G%q%%%%_%%/%%%%%%%P%0%:%b%%%%a%q%%%q%%%%%%C%5%%%%m%%%%%%Q%=%{%%%%u%%%%%w%n%%%%t%% %%%A%&%V%%{%%%h%J%%%%%/%%%%E%[%%E%G%%G%%%%%%u%%%%%%e% %p%f%H%b%% % % %% %
% % % %%(% % % %%M%F%e%E%%y%%%%z%%%%%% % % %%%%%%U%R%R%B%E%% % % %%H%%%P%% % %%H%%%7%:%x%%%%%%%J% % % %%8%%%%%%% % % % %%%%%% % %%%%l%%%%+%% % %%M%I%I%I%T%%%l%%%%%w%%%%%%% %%%o%%%D%%%%%%%z%%%%%%%z%%%%%% %*%I%W%%%%%%Y%%`%A%%%	%% % % %h%%H%%%%j%W%%%5%{%n%L%V%%%%%A%S% % % %%\%%+%%#%F%%%%%u%%%9% % % %%%D%%%%%%%E%m%%>%%%%w%% % %%%%%% % % %%%p%%n%%D%% % %%V%%%5%%F%4%%~%%%%%%%%y%W% % % %%%%%%~%%%%$%%%A%%% % %8%%B%h%%a%4%*%%%5%%C%%i%%%C%%x%% % % %:%%p%%%%)%j%}%D%%%% % %%% %J%%% % %%e%A%%0%
% % %%@%b%r%%y%%%% % %$%%%%%$%f%%%%%% % %$%%p%N%Z%%%A%%0%
% % %%%%-%]%%%%%%%%%%r%%O%L%%%d%%%%G%%}%F%% % %%H%4%B%%%%%%i%%2%%%}%%*%(% % %@%b%
%'%%%%"%%:%%%%%2%r%% % % %q%E%%"%%% %J%%P% % %%%%%%%h%%%%g%%%*%
% % %%%%%"%J%%%% % %%%%V%E%4%%%o%%%%%%%%%@%%R%%%%%%%#%~%.%%n%%%o%%%:%%%3%B%H%%%-%%%%%%?%%	%5%j%%%%y%%F%%%%%%%z%%%%G%%I%%%(%o%%%3%r%%%%%%%%Z%%t%1%;%*% % %%D%%"%J%%%%%%%S%%a%3%%% %%V%%M%E%4%o%%h%}%%I%%%%%h%%}%%%\% %g%%%"%.%*%%%%%%Q%8%%Q%%%%\% %g%%%"%.%*%%%G%%%%/%%%%%%%E%z%%%H%%
%^%y%L%y%%F%%%%%4%%%%%%%%% %%%P%%%y% %%%%%%]%%T%Y%Q%%%+%%T%%%&%%p%%% %%@%%%Z%% %%H%%%%%%5%%f%+%=%#%%%%%M%%%%9%%%'%%%%%%^%% %@%,%$%%%%%%n%%%%%}%|%%%n%l%%`%%>%%%>%2%k%7%%%%%j%%%%%%%z%d%`%%%%5%H%%%%i%%t%%%m%%%%%%M%Z%%|%}%%a%%f%%l%%X%%K%%%n%}%9% % %%(%(%(%%0%%%%%%h%%%I%%%%%%%Q%%C%%%%%%%_%%%%%E%%5%p%%%%l%%%%+%%N%5%%%%6%%%%%%%G%%%%V%% %%%G%%%%^%%%S%%%%R%j%Y%%%*%-%%%%%)%%%%%% % %%%%%D%%7%%%%v%%%<%%c%,%%%%"%5%%%-%%^%B%%%i%%%%%%%%%1%%%%%v%G%%X%%p%%%%%-%>%%l%%x%B%W%%.%=%%k%%%%%z%d%%s%%N%%%%%z%j%|%%%{%r% %f%%% %%%%>%%%,%%%a%<%%%J%%%%%%%%%W%%%}%%%6%%)%9%%b%%R%y%%%m%%%)%%%%%"%%%%%h%%f%%%e%%% %b%"%Z%}%D%	%%%%s%0%%Y%%I%3%f%n%T%%i%%4%k%U%4%s%%%j%\%%%%%^%%%%>%=%?%k%X%%%%8%%%Y%%%%%%%%%%%%%%%E%%%%U%z%%u%{%%#%(%{%%%q%-%G%%%:%%J%V%%%%%%%%l%]%%%4%U%e%%%$%W%%%c%5%%~%%%%t%%?%%%%E%u%% %%h%%Z%%h%%%`%%%O%%%H%[%%_%%%%)%%%%%%R%Q%%c%%/%I%%%%%%6%%N%i%%$%3%%%%%W%%G%I%S%%%%O%F%/%%%o%%%:%%%%%v%W%%%%&%%%0%M%%%z%L%%%%{%9%%%%%%%%%%%%z%j%%%m%%%{%+%%t%%%%%%t%%%|%}%%%%/%u%%N%%%%%%%%%% %%I%%G%%%%.%%(%g%%%%%%U%p%%%%`%%%%%x%o%v%%%1%%%%%%}%<%s%r%5%,%E%%%$%%%%%%]%%5%u%U%i%%C%%%%%%%j%%%%v%%G%E%%%`%% % %`%%%%"%0%%p%X%%%,%%%j%o%%%%%:%V%O%U%%i%%+%%4%%y%h%%%%%%'%%%%%%% % %%_%%%G%%%?%>%%%%%>%|%X%%%%%%%h%)%%%%I%)%%A%B%}%%8%)%%%}%%%%%%z%%b%%j%%%%%%%%P%%%%%%%%4%M%K%%T%%%~%%%%%%U%%s%g%%%%%%%w%%o%% % %%(%%%%%%%%%w%l%6%%%O%%%;%%%%F%%X%M%%%%i%%W%K%9%%5%5%%%%n%%%
%f%%%%%%%s%%i%%%^%% %%%p%%%G%t%%%m%%%%%%%%%%%t%%F%%%6%?%%|%{%%%1%%?%%.%%%8%%=%%%T%C%f%%%% % %%&%n%%#%%,%X%%%%%[%y%W%#%%8%%%V%%r%w%%*%%%}%4%E%y%%%%%%p%j%%A%2%^%%%%%p%Y%%%%{%P%%% %%V%%%%_%% % %%[%	%%G%4%+%+%%%m%%% % % %%8%%%Z%%Y%Y%Y%*%/%/%w%%%%%%%%%W%V%%%'%% % %%S%B%%G%4%%%%%%J%%%%s%%k%%%%%%%%'%%x%-% % % %%/%%%#%%%%F%B%(%%%%
% % %%%%%#%%%%%.%U%U%U%1%%% % % %8%$%L%%Q%W%%%%%%`%%%n%%%%%'%%%%V%*%%%%%% % %$%%%%#%j%%%b%r%:%%X%%6%%T%x%%5%{%.%{%p%%%%%%%7%%%% %%Y%%%%%%%%%=%|%%p%%=%1%}%%%%%%%h%%%%%%:%%z% % %%L%%~%%%%{%%%%$%*%%%%%Q%.%%	% % %%%%%%%y% % % %$%%%%%% % % %:%%h%%%'%%% % % %(%*%% % % %%%%Q% % % %X%%%(% % % %,%%7%W%V%%%%T%%%% % %%%%%<%%%%%1%[%%X%%% % % %%%%%%%%%c%%B%c%9%/% % % %%%7%W%V%
%6%%H%%<%%%%y%% % % %p%%%%J% % % %%9%F%%% % %%%q%3%j%%%%%q%&%%;%%%#%7%7%W%%%.%f%'%% %%%%%%%#%%%%%@%|%%%0% % %m%%1%%%% % %@%%%%T%E%t%%%%5%w%%\%U%W%W%K%%%%%%x%%b%%%%%%%%%%%%%W%V%%%% % % %%!%.%%#%%%c%n%%%%%j%%%9%R%%%%%%W%%X%%%[%%F%$%%%%%%k%%%%%%_%?%%g%d%%F%% % %%%%%%1%7%O%V%Z%Z%%2%3%3%%%%%~%%G%%%%%	%%&%D%,%%%%%%%%%O%%4%g%%%%%`%%D%%% % % %g%%%%%%%`%%%%%%!%t%%%%%^%%%%%J%%F%%%%%`%%
%%%%%%I%%% % %%C%%%G%t%%%%%9%r%%%%*%I%%%O%%%%P%%X%%"%%!%t%%%	%%D%%% % %%S%%%#%%% %Z%]%]%%>%%%%%p%%%%[%#%%8%=%+%%%!%t%%%9%^%]%%:%2%%f%%f%d%d%+%%%3%[%E%5%f%h%%%%Q%5%A%%%%2%/%%%%a%%t%=%o%% %%%%a%%%%%%X%U%U%%%>%=%C%h%f%f%f%%%%C%%%%-%%%%%%L%%W%%%%%M%%%{%%%z%%%W%[%o%z%R%%%%%%%>%%w%% % %$%%%%%%%f%% %%%%%%%4%%%9%2%"%%\%%f%%%%%9%Z%%%%%G%%%%%%%%%N%%%U%%L%G%%%q%%%%9%c%]%%%/%%%%%%9%%{%%%%%M%%%%%%%%%%%%@%%%=%%H%o%%.%%%_%%%%%%%%A%%f%%%%%a%%l%%%G%%%%%%k%[%%% % %D%M%%W%D%%/%^%,%%%%%\%%%<%U%U%U%)%-%-%M%7%%p%%%%%#%2%%%%L%w%%%%%:%%%%[%%%^%%%%^%%%Q%%%%\%%/%|%%%%z%i%%%%%M%%w%-%%%U%%%+%%%%4%j%%#%%^%}%%%%%2%%^%%%%<%%%%%-%%%%%\%%%%Q%J%%&%-%\%%%g%v%m%k%%%%%k%w%%%% % % %f%%%Z%%%A%A%%%h%a%a%%%J%%%%J%%%%K%%~% %b%%&%3%3%%%Z%%H%%%.%r%%%V%%+%%R%%6%%}%i%J%v%%t%%%J%_%(%i%%r%U%V%,%%$%%5%%r%r%5%,%E%%z%%o%N%%%%J%C%R%}%&%%%%%%!%%%%%%%%~%% %%%%%0%O%%%S%%!%)%S%%N%%%7%j%%%%H%%%#%%l%%,%% % %%%%8%%%%%%%%%%3%g%%W%%%%%%"%v%B%%%%j%%]%%%}%%G%%%%%%n%%%%%%G%8%t%1%k%<%_%p%P%{%K%%%%%%%z%%b%%%%%%%%%J%_%%%M%]%%M%%%%2%%%%%%D%%%% % %%_%%\%Y%i%%%%%%%~%-%Y%%%=%:%~%%%%%%%%X%%%%w%%<%%(%%%%I%)%%A%B%}%%%%%%%Q%%n%U%%%%@%Z%%n%%%%?%%%D%%W%%%m%-%M%%%%I%%%%%P%J%%%_%%%%%%%%%%w%%o%% % %%(%%%5%%%%K%%%%%%O%%%u%%%%:%V%%%d%k%%%%R%%d%M%%q%%%%%%%Y%7%+%=%%%%%y%%%%%#%H%%)%%z%v%%p%T%S%%%%%`%~%J%%%%K%g%j%%,%i%%%%%%,%%%%%%%%%%%%%K%5%|%*%% % % %%$%L%E%%%%%O%-%%%%%%%T%y%%%%)%%[%^%%<%%%%%%%%%K%%%%b%l%%e%%?%%L%%[%Q%%{%%%<%o%k%%R%U%%%%>%%%% % %%V%%9%%(% % % %%K%%%G%% % % %%%%Q% % % %X%%%(% % % %,%%7%%%%6%l%%%J%%r%^%%% % %%%q%1%j%>%7%7%7%f%+%%%y%%.% % % %%%E%E%%%%8%f%%-%%%%%e%K%%[%%%%m%%%%q%%%%%%Q%%% %%D%%7%%%%%j%#%%8%%%% % % %%c%%<% % % %,%%%y% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%D%%"%%%%%%;%%%S%% % % %%%%%%%?%%%%%%K%I%I%Q%m%m%%%%%%W%%v%%%i%%%%%Z%%%W%\%%%% % %%N%q%s%%%%
%%B%C%%%%%%%U%W%W%%%% % %% %%%%%%%R%J%J%%%%%%%%s%%%%%%%q%%%m%=%%% % %@%%%b%%|%m%%A%%%%%%%%%%B%Q%^%n%%j%%%<% % % %%.%%%%%%%%
%;%d%%%L%%%2%#%%<%#%u%	%%%%%%%%%%|% %%!%7%7%W%#%F%%%%w%%h%% %%e%%%%%%	%%G%%%%*%%%B%#%%F%#%%4%%3%(%%%%O%%@%	% %%%p%%k%%6%l%n%%4%J%J%J%%%%	%q%%Q%%C%%V%U%G%% % %%Y%q%{%%Q%%%%%m%y%]%8%<%+%%%%%%?%% % % %2%%%%%?%%%#%%
%N%%% % %%[%q%%G%%%%8%%i%z%%%%%% % % %%%%%Q%%% % % %t%l%%%%&%%i%%%Y%%Q%3%2%%%%%%%%%3%%%%%%% %%%P%%e%%6%=%%%%%m% % %%8%%b%%<%,%%3%O%[%v%m%S%e%E%%v%%L%S%%%%%%%<%%%J%%%%%%%%%W%%%}%%%6% % %H%%	%q%e%%%%%%>%%.%%%%%%p%%f%%%f%:%%%%%%U%%%%<%%%%%%%%9%%{%%%g%%%%%!%%%U%Q%u%%o%%%Z%%{%p%%%*%]%%Q%%\%%%]%%g%9%%r%%%%-%%%%%%%%>%%%]%U%%G%9%%% % %V%%"%%%%%%%%=%%%!%m%%~%%%%%k%%.%_%%P%%%%%j%%%o%%v%%Z%%%%J%%W%:%K%%i%%@%G%X%%%%E%A%%e%%%4%%%y%%%3%O%[%%8%E%%%n%/%%%%%M%Z%%0%M%%%%%r%9%V%I%%%j%e%9% % %@%%P%%E%`%%%%%j%%%7%F%%%^%%%%+%-%%%%%%%{%+%%*%/%%p%<%%%%a%)%%%K%}%s%%%%%%%<%%%%%%k%%%-%g%5%%0%2%u%%%2%%u%%/%%%s%%%,%% % %%%*%%%%#%%V%z%%K%%%%[%%%e%%%%S%%e%%%%<%%_%5%S%%%%z%x%G%%%%@%A%%y%~% % % %%%%%%\%%%%%X%%%C%*%%%%I%)%%A%B%}%%%%%%%Q%%n%U%%%c%%T%%X%%%%%%%%J%)%!%L%%v%%%%%i%Z%%%Z%%%%(%%%%%*%%%%%i%%v%%%U%%%;%%%% %%x%%%%%%%%%%
%%r%^%%%%:%V%%%d%k%%%%R%%d%M%%q%%%%%%%Y%7%+%=%%%%%y%%%%%#%H%%)%%.%%%%%%w%%%%%!%%!%%%%R%z%%%%%%5%K%%%d%%%-%%%h%%%%4%j%%0%%t%%R%%%5%%w% % %%%%%%R%q%q%q%%B%h%,%%%%%%%%%%%r%w%%*%%%}%4%E%y%%%%%%%%t%R%%%|%%%y%U%%%%,%%%%%{%+%%t%%%%%m%%_%%%%%%%%r% % %%%%%+%+%E%%J%J%%%%c%9%/% % % %%%%\%Y%	% % % %1%%%y% % % %X%%%%% % %%%q%%G%%%%?%*% % %H%T%q%1%j%%j%{%>%%%%%%%%R%K%%%S%Q%% %%D%F%E%%)%3%3%%M%%%%%%%%Y%%~%}%%~%%T%Y%Q%f%%2%/%[%%%%%U%%a%%%%%N%%%@%G%Y%% % %%%%Q%%%%L%U%U%%{%% % %@%%%u%E%4%=%#%;%%%%%B%%%%9%q%b%%{%% % %@%%%%"%%%%-%%4%%%%%%Z%i%i%i%-%%%%p%y%%%%%%:%g%%Z%g% %e%'%% % %%E%%%%%%%%%%%f%S%Z%Z%%%k%l%6%[%%%%%;% % %@%%$%D%%Q%W%%%%%J%%%%k%%%=%+%%k%%%	%{%>%%U% % %%%K%%Q%%%!%%7%%z%%T%*%% % % %%!%!%*%%%%3%Z%!%%=%}%D%% % %%%%%%V%W%W%%Z%%l%%k%B%	%%%Y%%d%%{%% % %@%%%%"%Z%Y%Q%%j%%%`%%%
%%%%%N%%%%v%%%;%% % %@%(%%%"%%%+%%q%%% % % %v%%%%S%{%%%%9%y%(% % %@%%%%%%%W%\%j%%%%% % %%T%%%%&%%i%% % %%L%%*%%%Q% % % %%%n%E%% %
% % %%%P%%% % %%%%%%% % %%%q%3%j%%h%%%%%t%,%%% % % %%%%<%%%%%1%[%%X%%% % % %%%E%E%%%%8%f%!%4%%%% % %@%`%q%s%e%%`%%6%%<%%%%r%^% % % %%%Q%% % % %%%%%% % %`%	%*%% % % %%%%Q% % % %X%"%n%%#%j%%%%%%~%%%%%=%	% % %%%%f%%%%k%r%o%%%w%{%%%%M%%W%%%w%%%Y%#%I%%%g%%%%%%%%%%&%N%%%%%*%%%%%%% % % %%q%]%%%9%r%d%%%'%-%-%M%6%%-%&%%/%%%t%%%;%%%%%7%n%4%%3%% %b%%%f%%%`%%V%D%]%2%3%3%c%%D%%%%#%I%*%(%(%P%A%A%%%s%%%;%%%F%%%%%% % %%%%;%%%%%%%%%%%Q%Y%%%%#%:%w%%\%%%%%%{%=%%x%%b%%%;%%%x%%\%%%%
%
%t%%%%%x%%%%H%%S% % %%3%Q%%*%%%%5%%
%%%!%t%%%%a%%O% % % %X%'%%G%%G%%%%%y%h%%%%O% % %%%%%>%%%%%y% % %%%J%%+%+%%%%%%%% % % %%/%Z%W%V%%x%E%%%%%%%H%%%%%<% % %@%l%%u%%%%%4%%%%%d%C%x%%%%%%%%'%%%% % %%(%n%%%%%%C%6%%-%f%'%%%%%j%%%%%% % %@%x%%%"%%%K%t%%+%%@%I%%% % %%%%%%%U%V%%%'% % % %%X%B%%%% % %@%%%%%y%%(% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%q%s%e%%%%%c%%%%%% % % %%%%%%%%%%l%%c%9%/% % % %%%%%%-%.%.%%Y%%%%% % % %%X%%\%Y%)%%%"%%%p%|%,%%% % %%%%/%%a%%%J% % % %%%Q%% % % %%%%%% % %%%%%%%%%%%$%%0%d%%%%q%%%%%%%%%%%z%%%%%%%%%%%%%%%2%%% % %%%%%Q%%%%%%n%%%%%%%'%%%Y%Y%=%%%o%e%E%%%3%%%-% % % %"%/%n%+%%%d%%f%%+%%R%%L%3%M%%%%%%%%%K%$%I%?%%=%%E%%%u%%%%_%?%%=%%%% % % %%q%]%%%%9%s%%%%%%%%s%%%%%%%6%"% % % %%'%!%G%%%F%%%%%%%%%%_%?%%V%%%%%[%%,%Y%%%=%% % % %D%q%s%%y%%%%e%%Q%%>%%%Q%%%r%%>%%=%T%^%~%X%6%%M%%%X%%%%*%%% % %%(%K%%>%%%>%%% %*%I%%%%^%%%%%%%%%%]%%%%c%%&%L%`%%% % %%%%%#%%%%%%B%Z%%%%i%-%F%%%%3%x%%%% % % %%]%\%W%D%%)%/%?%%%m%%i%%p%%%%F%%g% %u%%%2%
% % %%%%;%%%%%%g%%%u%z%Q%%%%%#%%k%%%	%Z%%v%%%% % %@%%%%%h%s%%P%%%%%~%$%N%%%
%%%O% % %%%K%%>%%%Q%%<%%%=%x%)%+%+%+%%%P%%%%%*%% % % %%%%%#%%
%%V%%"%
% % %%y%q%[%%u%%%u%%'%%%%%%%%{%%%P%Q%%% % %%%%%%%%%%%%o%%%P%%%R%%% % %%%%%%%o%%%%%%%%F%%%%%z%% % % %%%%%%%&%^%Y%Q%%%%%m%%% % % %b%#%Z%%%$%6%-% % % %%%V%E%% %
% % %%%%%%%D%% % %%%%%#%Z%%a%s%%V%:%%%% % %%%q%1%j%>%7%7%7%f%+%%%y%% % % %%%%%%%%%,%%%r%^% % % %%,%n%%#%%%%'%y%%%%%% % % %%%%%% % %`%	%F%%% % %%%q%{%e%%%%%%%g%=%%#%o%%h%>%$% %%%}%%Y%%=%%%%%O%%%n%%X%e%E%%^%%\%%%w%\%%%%W%%!%h%%m%%%z% % %%%%%%%%%%%%%%Q%Y%%%%%%%%%%(%%%%%%_%?%w%+%I%s%%%i%5%a%% % % %~%%u%E%%%%C%U%U%U%%%%%~%u%u%%%,%Y%%~%%%L%%%]%%j%H%% % %%%%v%%%%%%K%d%%%%?%%'%N%%%<%%3%%%%%%%%[%%%=%%%%~%% % % %%%%%%]%%%]%%'%%%%	%%&%%%8%%%%%%J%%%v%%H%%%%v%I%%%u%I%^%a%t%%%$%m%y%%%z%% % % %%'%!%F%%%%%%%x%%%%%_%Y%Q%%%%%?%%%-%%%%%%Q%i%%k%I%%%%]%%%&%i%%%$%w%%%%>%A%%%%0%%%% %@%%%%D%%%%%>%%Q%?%4%%%'%t%%%%Z%%f%M%T%%3%%%G%%<%z%T%%}%z%'%B%(%%%0%%%% % %:%%%E%B%_%Y%i%%%5%%%p%x%%%%<%D%%%%%%u%%%6%%% % % %%%%>%%1%%%%o%%|%(%|%%%{%%%%%%%%%v%*%% % % %%%%W%V%Z%%d%%
%%%%%%%%%r%x%~%%%C%[%^%k%.%%%%% % % %%O%%%%u%%%l%^%%%P%%%5%%g%%%_%%%%%G%%_%{%%%%=%{%%%%%%4%%~% % %%%%%	%%%%%[%%%=%%%%%=%C%%%%H%%%%&%M%%%I%%T%%@%%%%n%%S%%%%U%%i%%%%%%%%%% %h%%;%#%%%#%%%5%%%%9%s%%%%%%%%%%{%%%*%x% %%+%%%%o%j%%P%S%%%v%T%D%%%1%%%?%%+% % %%P%1%j%^%%%%%%i%%%N%%%%%
%%%t%%%%%)%%%% % % %%M%%%%_%%v%m%%7%B%%Q%%%~%_%%%%%%9% % % %%O%%%%%%%%%%;%-%% % % %%W%\%%%%(%%q%% % %%R%B%%%% % %@%%%V%%Q%%(% % % %%%"%
% % % %K%%%%%%%%c%%%%%% % % %%%%Q%%%%%1%[%%X%%% % % %%%%%%e%K%%%N% % % %%a%%#%
% % % %K%0%j%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%V%E%4%%M%%X%%%%%%%%P%%%%|%H% % %1%%%%%{%0%%%h%%0%J%%%%A%%h%%f%%% %%%%%m%%%,%)%)%%%%%G%% % % %%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%D%%*%%%l%%%%6%l%f%=%X%%%%%%%C%% %%%w%%%%%%V%D%%%Q%%h%%%%E%%6%%% % %$%x%%h%%%`%I%I%I%T%%%>%% % % %%%}%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%z% %%9% % %%%I%D%A%T%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%U%%M%f%%%V%%a%3%%%z%%%7%n%4%%% %@%%%%%%%%%"%%(%%%D%;%x%%(%%%%% % % %%3%E%[%%%K%J%J%%%%%%% % %%%%%#%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%U%%M%f%%%%+%(%(%`%#% % %:%%h%U%D%	%%@%%%%`%%% %%%%%,%%%%p%+%%%%% %
%%%0%%%%%i%&%%%,%@%$%%l%%\% %m%%\%$%%%%G%% % % %1%%%y%%%(%%%%%`%=%X%%%%%`%=%%%%Q% % % %X%%Q%%@%%I%%>%>% %%%%%E%(%%5%%%%_%% %%\% %g%%%"%Z%%%9%4%% % %%%%#%
% % % %K%0%j%% % % %%%"%
% % % %K%P%%% % %%%%%U%%5%*%+%%%%^%t%&%%%% % % %%%%%D%e%%%%.%%h%%-%%%Y%%%%%%%%%)%%%q%%;%D%%f%=%X%%%%%`%=%X%%%%%X%%h%%Q%%%% % %%%%%% % %%%%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%"%
% % % %K%P%%% % %%%%%U%%%%% % % %	%%%%%n%E%4%P%%%"%
% % %%@%%%%%%% %L%%Q% % % %%%}%D%% % %`%	%*%% % % %%%%Q% % % %X%%%(% % % %,%A%E%% % % %%%V%E%%%%(%3%[%{%%%h%%%%l%% % % %I%%%.%%h%%-%%%Y%%%%%%%T%D%% % %%%}%D%% % %`%	%%%% % %%%T%D%% % %`%	%*%% % % %%%%Q% % % %X%%%&%C%i%%%%(%%M%% % %%%%;%%%%%%%%>%O%%% % %@%%D%%%%%%% % %%%%%% % % % %%% % %%%A%%Q% % % %%K%%%%%%.%n%%t%%%% % %%]%%%%%%P%%(% % % %"%%F%%%B%	%% % % %%;%%%%B%	%% % % %%H%%%%%% % % %a%%D%% % %@%%% % %%%%%%% % %%U%%%,% %%% % % %%%%%>%,%%%e%%i%%f%e%E%%?%%%%1%b%%%%]%i%i%i%i%i%i%i%i%%n%%%5%%%)%(%(%0%G%%%a%%D%%%%%%a%%%i%i%i%i%i%i%i%%)%%%%k%%%%%%P%7%,%;%=%-%-%-%-%-%-%m%%W%F%	%%	%%D%%%i%i%i%i%i%i%i%%%"%J%%%@%A%%%%C%E%%%%%%%%6%Q%*%%%%L%%h%%%%%#%F%%%%%%%%%%%%%%^%%%%g%%%q%%D%]%o%%%Q%Z%Z%Z%Z%Z%Z%%D%%%%%%%%8%%%%o%%%Q%Z%Z%Z%Z%Z%Z%%%P%%m%K%%% %J%E%%%%%%%%%%%(%}%D%%%%%%%%%%%G%% %%%y%Z%Z%Z%Z%Z%Z%Z%Z%F%%s%%Q%*%%%%%%%%%%G%% %%%%h%i%i%i%i%i%i%i%	%%T%D%i%i%i%i%i%i%i%i%%%%D%%%%B%%%"%J%K%K%K%K%K%K%%o%m%%%% %%%%%%j%%%%%%%%%%%%6%^%%p%s%M%%%%Q%Y%Q%f%^%5%`%%%}%%m%% % % %%V%%a%%J%J%J%%%% % % %%%%% % % % %%% % %%%%%%%%%0%%%% %!%%%%%%%%%%;%%%6%%-%%%g%%%%%%%%%%%*%k%%i%%%%%%A%%%%%.%+%T%D%(%w%E%%%Z%%%%)%B%%%%H%-%%%%%m%%K%Y%%W%%%
%{%%%k%H%n%%F%%/%%%b%F%%%%%/%f%%%L%f%%I%%%%%%J%;%%%%9%y%%%s%%s%%g%"%%%|%%6%[%p%"%j%%%B%%!%%%%%%%%D%>%f%%%%%y%B%%!%%%R%%%%%B%%!%%%&%%%F%N%%%%%%$%e%%%A%%!%%%7%7%z%P%%%A%%%%%%;%%<%%%%8%%%$%%%e%%%E%%%%%%D%t%i%P%5%%%%o%%%K%% %%%6%&%%%%B%%%%l%%%~%%%%%%%%%%F%%%%%%%%%v%%%%|%%8%%%D%%{%%%%n%%%<%%W%%%%m%L%%d%%%^%%<%%%[%%%%%%%}%M%%&%%%%%%O%%%%%%%%%W%>%%X%%%%%%%%w%%%%>%#%%%%%%c%%W%%%%%%J%.%%%%%%b%%\%6%m%%_%N%;%,%%+%v%%v%?%%%[%U%%%S%%7%%	%% %%E%H%%y%%s%%+%%%h%%%%%(%%a%%$%%%%%%%P%"%%%%?%%O%%%%%%%%E%%%%%%%% %%%V%%%%%O%%%<%%%%%%%=%%%%%%%%%%D%%}%%%9%/%%!%%%%%s%%%%m%L%%~%%O%7%%%%%@%%Z%%s%N%u%N%%%%e%%%%%%K%%i%x%%%S%_%%b%%\%!%%%%%w%%`%>%%=%% %Y%%%<%%%%%M%%%%`%%k%%%%%"%%:%%%%%%%%%%q%%u%_%%%k%%%%%3%S%%.%%%+%%'%%2%%z%%+%%z%%%%%D%l%\%u%%%%u%%%1%%%%N%l%%%2%%~%~%i%*%%%%%V%%%;%%%k%%%'%G%%!%%%%`%%%%%%%k%%%%%%%p%K%%9%}%%%%%%%%:%%%%%|%%,%K%X%~%%%f%$%%v%W%K%%J%a%%%%%!%%Y%%S%3%n%%%%%%%%v%%N%%&%%%%%%%v%%%%%y%%%%%%%%;%%%
%%f%%$%G%M%:%>%%j%_%N%%%+%+%n%j%c%%%z%]%%%%%%%%%%%%%%u%l%%w%%s%{%%%%5%\%u%d%W%:%C%/%{%%%U%U%%^%O%p%%%%%%%%%%W%J%.%{%}%%'%o%%%[%%t%1%%~%)%%Q%%w%%{%%1%%%%%~%%%%%w%%%F%G% %u%%Q%%~%%%%%>%j%%%>%%{%%p%%%%%l%*%%%>%%%%4%%%V%q%%%6%&%;%%%%H%%v%%%<%]%%k%t%%%R%2%%-%%b%%P%%%%%O%{%%%%k%7%v%%}%%%/%%P%%%%(%Z%%%%%%%;%)%%
%%b%%%%%%%%%%%?%%c%!%c%q%c%%I%B%%%%E%%%%w%%%%%%e%y%%o%_%%%%h%%J%%
%%%%%O%%*%x%g%%%@%%%%c%%m%c%&%U%3%%}%%%%%%G%_%r%r%%%j%5%~%o%7%%%%%d%I%%%%%%S%u%%%C%%&%:%/%%V%%,%K%X%%%%%%%%%I%%%:% %%%%K%%t%z%%%Q%z%%V%%Z%Q%{%]%%\%%%*%D%^%%%n%%%%t%I%l%%%\%)%%%$%W%0%%%%f%%%X%%%%|%%G%%k%6%%%%w%1%%{%%%%D%%%%,%%%%p%$%%n%%% %(%%%f%%%%%%%%%%%%%%%$%Q%%B%%)%%b%%%%%%%%%%%%%%%%%H%z%%]%%%8%%%%p%H%%:%%%%%A%%x%%q%m%e%%%X%%%%%%%%f%%%%%%%%C%%%l%'%%%%%%%l%%%%%%v%%%%%!%%%%f%%%%%%%%%M%%)%%%O%)%%%%%O%%<%%%%%%t%%%7%j%%%%%%B%%5%,%%%%%%%%%%%%%+%%{%%%O%%%u%o%%%S%%{%%%%%t%?%%%+%o%c%%%%G%k%%%v%
%%%b%%% %;%%%%%%%#%k%%%%h%%_%%%%%%%%%%B%%5%%q%%o%%%%%-%m%%}%%%Q%%%j%%%%g%H%%<%%f%%%;%%%U%%%%%%%%%%%%}%%	%!%%T%8%%Q%%y%%%%%n%g%	%%-%%o%3%%%%%%
%%%%%d%%%%%%%%%%%%6%q%%G%%p%%i%#%Y%q%%B%%%%%%%%~%%%%%"%%w%6%%%%+%:%%%%%_%%%%% %4%%%n%%#%%6%&%]%-%%G%%%%v%%%1%%p%%%z%%%V%%R%%8%%%%%]%%5%%%6%a%N%%%%H%%%w%%%
%%%8%%%%%~%;%;%m%%%%%%%%W%%%%%&%M%%R%%m%(%U%%f%%}%%%D%%%%%%%%%%,%E%%/%+%%E%% %%A%%g%%2%X%Q%U%%%H% %%|%%X%H%%%\%@%%%%%;%%%%%%O%%%/%%%%%%"%|%%%%p%V%c%H%%%l%%%%1%%%%:%%%Q%%%c%+%%%%T%%>%%8%%p%%w%%%%%%%U%G%f%%%%l%%%\%%%1%%4%%%%/%%%%f%%%%/%%%%%e%	%%p%%#%%0%%%>%%~%%c%%U%%%%%:%N%.%%3%%%%%x%%%%Z%G%%%%Y%%%%%K%R%%%%%%[%%h%[%%%K%.%%%%%%l%%k%%6%%%%%3%%%%
%%%%%%%%%h%%U%%`%%%&%%%G%%%-%O%%%y%%%%%%%j%%%%%0%4%[%%%A%(%%%j%A%0%%%9%V%%#%k%%%%h%A%%F%%%%%%%%%%%%%@%%|%T%s%h%%%B%N%%%;%%u%d%|%% %%%9%%%%Q%%%%Z%$%%v%|%[%%%%%%%%%V%_%8%%%%%1%z%%J%4%%%%%x%%%%%%%I%W%%>%h%>%{%%%%%%%0%%%%%V%%%%%i%%%|%%%%%m%c%%[%%J%%%%%&%%%%%x%%%%%%%V%%%*%%%1%%% %%g%%7%%%%x%%%%%c%%+%q%h% %%>%5%%%%u%o%?%%%%%#%W%%%f%^%%%%j%%Z%M%%%%%E%%%%%%%/%%%3%%%u%_%%+%%%%%}%%#%%%%V%6%m%i%%%x%Q%%%%%%%%%%%%%%%%%T%%~%%%%%%%>%*%%%Q%%%R%,%f%%%T%>%%c%%%|%%)%%R%%1%%%%%%%+%%%%%.%%^%%b%#%%%%O%k%%)%%%%3%%%y%s%%%Y%)%%%*%%%%@%%a%%=%*%!%%%%Q%%J%%%_%%/%%%%%%%%K%%%a%4%%%%%P%}%%U%%g%m%#%%%2%V%D%	%!%%c%%%Q%B%{%"%%%
%V%D%	%!%%%B%%%%%%J%_%|%y%%3%E%%!%%%%>%%%%%%%%%%O%%!%%%>%%%%%%%%y%B%%!%%%%D%%%B%%!%%0%%%%%%B%%!%%L%%% %O%%<%%L%%B%%!%%%%"%%%}%[%%4%%B%%!%%%r%%%%%%%-%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/guide2.png__ __15594__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%6% % %%%%% % % %%)%<%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%-%%%%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %G%I%M%P%W%%%% % %%%I%D%A%T%x%%%%%|%W%%a%%%%A%%%Z%%%V%H%%2%%%m%E%%9%5%%%%%%,%%X%%%)%%%%%X%%%%%%j%%%%%C%%%%%%%%U%%%%v%%l%%%+%%%"%%b%%%z%%%D%%:%%%%%%\%%%%o%%%$%%%%%|%>%%y%x%r%%%%9%'%%%%+%%%7%%%%%R% % %%r%%/%%R%%&%%q%'%%j%4% %%%%%7%%%$%%%I%%%%%%% % %{%%%%?%9%e%%%%%%"%)%R%t%%%0%%%t%%%%0%%%k%7%L%%%S%d%%Y%E%%%t%%%%x%m%%%%%%o%%%[%%%%%%%m%%%%}%%_%%%%u%W%%%%c%%%%%#%%%%%%%%%%%%;%%%%%%w%%%%%$%E%%%	%%%%%%%'%%%%%r%/%s%%%%%y%%%%%/%}%}%%V%%%c%>%/%%%%%{%%f%[%T%~%%%\%s%%%s%%%-%%%%%%%%%%%%'%%%%%%%%%%%~%%^%%%m%%w%%v%%-%g%%%%%%%%G%*%*%s%%%%4%o%%%%s%%%_%%S%% %{%%%\%[%%`%%%%%%%%%%%M%Q%%9%%S%%%%%{%(%%%<%0%c%%=%(%3%%r%@%%%%%%%%%%%}%%%L%%I%%%%%%s%%%L% %%%%%%m%%%;%r%%m%O%%m%y%%~%}%%%%O%|%:%%%%%%%%%%%v%%%%Q%%%%8%x%%n%%%%%%%%%%%<%%%Q%%%%%3%%%%%o%%%W%%%%%%%% %%Z%w%%V%f%%%%%%R%%%%%%%%%%O%=%+%%%%D%%%%%%%%K%r%%%%%%%~%9%%%%|%%%%%%k%o%%%%x%%%_%%a%_%%%W%%%%E%%%m%%%>%a%T%%%,%I%%%1% %%a%%%%%|%%%%e%%c%M%S%c%{%%%i%j%l%%%%%v%H%%%}%%%%c%%%%%]%%%%%%%%%%s%%%%%%%|%h%~%%%"%%%T%%I%%%%%%%;%%%%%%^%?%%%s%r%k%%%%%%%%%T%>%%%%%%4%%%C%%%%\%%?%%%-%5%%%7%%y%F%%%%%%%c%%%d%e%>%w%%%%R%%%%%%%%%_%>%n%%%%%s%%%%M%V%$%%%%%I%%%%Y%%%<%%%f%%Q%%%%%%%%%$%%%%%%9%#%%;%.%k%%%%s%%%i%<%%%4%%%%c%c%%.%%w%%%%%%%%%%%7%%%u%W%%%%%<%%%%3%%%s%%%%s%%%Y%9%%%'%d%%w%%%%o%%%%%%7%%%%7%%%%%%"%%%X%%%%%%y%%%%%%5%%%%%%%%%%%%%,%%w%q%9%j%%%%%%_%%i%%%1%%S%y%%%%%%{%g%%%%%%%%%(%%P%%%W%%O%a%%%y%\%%&%y%%%%%_%>%%f%%%s%%%%%W%%%%|%%%%%%%z%3%9%%%%%Z%%q%%%2%-%c%%/%?%v%%%
%?%% %%%u%%%m%%%.%%%%%'%e%%]%%%%%%%%%o%P%%%%?%s%%%%'%G%%%A%%%u%%{%%%y%%{%%$%%$%%%%A%%%%'%%8%(%}%6%y%%%%>%>%%|%%%%z%~%%g%%%%G%c%%%t%%f%%%%=%8%%%%%`%J%%%%%%%%%%N%%%%%%9%*%%>%%%$%%%%%%%q%%%%%d%%%%I%g%g%%V%%%%%k%%%%%%%%%%%i%%%%%%%%%^%[%%%%y%%%U%%%W%.%%%%%%%}%%%%%%G%%%%%%%%%%%%%%%%%%%%.%%R%R%%)%r%%%%%%%%%%%%g%%%@%%%%%O%%b%%?%%%9%%%%%|%%%%O%%$%%%%%%%%%%%Y%>%%t%%%%%8%?%4% %%'%G%%%%%%%%%q%%$%%%k%V%e%%%?%%%%%%%%%o%%%%%'%%{%%~%%%%w%%%%%%%%%O%~%%N%%%?%%V%~%o%%%Y%%%%9%%%!%%-%c%%%%'%I%%%%%%%%%%%[%%%%%%%%T%%%%%R%%/%%%?%%%%%d%%%Q%~%q%%E%%%%7%+%%%:%5%%%z%e%F%%%f%%d%%%%%%%.%%%H%%%%%U%%=%v%%%%%%%%%O%% %%2%&%:%%%%Q%%%%%%7%[%%x%%%~%%%%%%%%%I%%K%%C%2%%%%%=%%]%%%%%%%%%%g%%%%%%%%1%I%%%7%%%1%U%%%%w%%%%w%%y%%%%s%%%_%%%%%:%%%%&%%%%%|%%%%%%%%%%%%%u%%%O%~%%;%%%%%%%%S%%%%M%%%%[%%%%%*%%}%%6%7%%0%3%7%%%~%%%%%r%Z%%v%%%M%%%5%y%%%3%3%%%%s%%7%%%%%%%%W%%Q%%^%%%%%E%I%N%H%%c%%%m%}%%%%%%%%?% %l%j%[%%|%%%%%%%%%l%%}%%%s%%%%%%%%%g%%%%u%r%%%%n%%%6%%%%%%%%%%Z%?%/%%%%%%]%%?%K%%d%@%%%%%s%%%5%Y%z%o%%%?%%%%%%%%%%y%9%%%R%%_%%%2%%%L%%%%%%%y%%%%%%~%%%%%%m%%%%%%%p%I%N%%%%%%%a%>%%%/%%%%p%%7%^%t%%%%3%f%L%%%P%E%R%%%%%%%%%t%;%%w%%%n%%O%%%%%%%%?%%k%%%%%%%%%%%s%~%%%%4%w%%%%%%o%%%%R%u%%%%%s%%%%%%%%%%% % %%U%w%%1%%%%%%e%m%%v%%8%l%%%%Y%%%%]%%%'%k%%%[%%/%%%%%%%;%%3%%{%%%%%%%%%%l%%U%/%,%M%%%K%w%%%%%%%%%%v%%%~%G%/%%%a%%%%o%%i% %%%\%g%%%%%l%G%%a%%%c%>%%%% %%u%6%
%%g%%L%0%"% %{%%%V%>%%}%S%%C% % %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%%%3%%z%%%%%%=%X%m%m%m%f%%%%@% % %l%%%%%%1%%{%%%%%%% %z%-%%%%%J%%%f%%%%%n%%%<%%%K%;%v%%%=%%%R%%`%%%%%%j%%e%%%%Y%%%%%%%%%o%~%H%% % %l%%%*%%%%%%%%%o%8%%3%s%U%%%#%0%3%%%%%%%%% % %l%%}%Z%^%%S%I%J%-%%%%G%k%%|%%%%%z%N%&%%o%%%m%G%q%%'%%7%%_%j%~%%%%k%%%%|%%w%3%i%a%%%%%]%_%C%%.%%0%=%#%%N%o%%%:%%/%%B%%%,%%%k%%%%C%%%%%%U%-%%%I%R%3%(%%I%%%%%y%9%%%$%%%%y%%%%%r%%L%x%=%%6%% %%%%%%%Q%5%%%%%%%%%%%%I%e%Q%%%*%%%3%%_%%%%z%E%%%%%%C%%%%%%~%%%%%[%%%%R%%%%m%#% %;%%f%%%%6%%%%%%%%%n%%%?%%&%%%E%J%+%%%%%\%%%%V%T%%&%%%%%1%_%%)%E%%g%g%V%%%A%%%%%m%%>% %v%%%%%/%{%]%%%%%%%%%%%%H%%%5%%%%%b%%%s%s%r%%&%G%%%w%]%%%%%%%%9%%%9%%%s%%%]%%c%%%a%%%%L%%%%%%%d%%%%%%%m%I%R%%%%%%%%%%%3%b%%%%(%%%5%c%+%R%j%%%;%% %e%%%/%%%%d%%%G%l%:%%%(%%%3%%%%P%%%%x%%%%%%s%%%%e%%%%%%N%%%%K%%M%%%%%%%;%%%%%I%%%%%%m%3%%%Y%%D%%%W%d%%%Y%%%%%;%+%k%%v%o%% %%{%%%%%Z%o%%.%%<%%%&%m%%R%K%%\%V%~%%%%%%7%%%%.%%W%s%%%a%%v%%p%%%%%o%
%%%%%%%d%%%%%T%%%%%%%|%%m%z%r%%=%[%:%%%%%%[%%%% %%%%%%%%.%%^%t%[%%9%k%Q%%%%V%%%1%7%%%%]%o%%^%N%%5%%%j%%Q%%%%%Z%%%%7%:%-%%%%%%%{%%%%^%3%-%%%>%!%%%M%%>%'%%-%%%%%%%%%%0%o%%%%%%% %%+%a%%1%6%.%~%9%%_%s%N%%%%%%%%M%n%%S%~%%%%%%Y%%%%%%%%%%%-%%%%%%%%%%-%%%%%%=%E%q%R%%O%h%%%$%%%%f% %`%%%%%%%%x%%i%%z%%6%$%U%i%%%%i%t%%%1%%%U%'%%[%%/%V%%d%%%%%%t%%%}%A%%%a%%%n%%b%%%%]%7%%%%.%%W%>%%C%%}%%%%_%%%%%`%%%%%%%}%c%w%%%F%%z%%%%W%%%l%t%%n%%%%3%x%%%%%i%%%k%%%%k%=%%W%%e%e%%i%8%:%%+%%^%_%%*%%%%%w%%-%%%%%%S%U%a%G% %%%%%%%M%Q%9%:%%N%%%%C%%M%j%.%%%%%%%s%U%%%<%&%%%%>%%f%Z%%%%%t%%t%%F%%%[%>%%s%J%Q%$%]%%/%%G%%%%%2%b%r%%%k%%%%%>%'%%^%{%E%%%%%%%%%%b%%#%M% %%>%%6%[%%%%%)%%Y%3%e%%%%%7%%1%%6%%]%%%-%%%%%i%t%%%%%%6%%%y%%%%%z%%r%%%%%+%%%%%O%%$%+%%%%%%g%%f%%%%%%/%%%S%%w%q%%m%r%%}%%%X%%Y%%$%%%3%2%%%C%c%%H%%%%%\%1%%<%}%%%R%&%%%{%%%%%%d%%%%+%%5%%R%%R%%%%%%%/%%%%;%%%%r%%%%~%%%}%c%%~%%%%%"%%%%5%%'%%%L%%%-%%6%%%%|%%%%%7%%9%;%%%E%%%%%%%%%%%+%3%w%%%]%=%%%%Y%%%?%%$%%%%9%%%c%%h%W%%6%#%%%%i%%%6%%%%%I%V%%%#%=%%%1%%%%%%%y%s%%l%%%q%n%R%%%%%%%o%)%%%%%%%%Y%%%?%%E%U%F%%3%#%'%%m%%%%z%%%%s%V%e%m%%%i%Z%%-%%%&%;%F%%%%9%%%%%O%F%f%%3%3%%%@%r%%-%%r%u%e%%z%%%%%X%%r%%%~%(%%%$%U%%P%%&%%%%~%O%,%%%%e%%%%d%%%d%%%%%%%%F%%%K%S%?%%|%%%%%%%a%%%%%%%%%%%%%%%Y%%%;%%K%%5%%%%%%n%u%1%'%%x%%%%%%%h%^%i%%O%%/%%%%%%%>%8%2%/%%%6%9%%%%%a%%=%v%%%%%%%4%*%C%%%%%%%%l%%C%%%G%%%%%:%'%M%%%%%7%%X%%%%%%[%%%%%%%}%%%%%9%%%Q%%%%%%%%%%%%%%%%%%R%[%k%d%I%%%%y%%j%S%;%7%%%%9%/%%%n%]%%.%n%u%-%%\%%)%3%%%%m%%%b%R%}%%%W%%%%P%b%%%%%Q%%6%#%w%<%R%%%%%@%O%%%J%n%s%%
%a%%}%f%%%%%%C%%%%%%{%:%%_%%%I%-%%L%j%%q%%%%%%%%%%{%%%%%%%%%,%%%:%%%M%%%%%%%J%%%%%%o%r%W%% %%k%%x%%%{%%%%%%%7%@%%%;%%%%%%%o%%%%w%x%%%g%%%%%%%%m%5%\%%%%7%v%%%% % %%%%% %%% %%%% %%6% % %%% %%6% % %%% %@%% % %l%%%%%%%%x%%%%C%%%%%%% %%%m%%-%%%<%%%/%3%% %%j%N%E%% %%% %@%% % %%% % %a%% %%% % %a%%S%%%%%%!%%%%%q%y%%4%%z%%%%%L%s%%%C%%U%*%%%%%%%8%% %%%%%L%%%%+%%%%1%/%%;%:%%%%%%%%%%Z%R%%G%F%}%-%%n%i%]%-%%%R%g%% %%%%%%A%9%=%I%%%%%#%0%%R%K%%\%V%>%%R%%%p%%e%%%%%/%~%5%%M%%V%~%l%%%%%o%B%M%N%)%%%%%%%%%%-%Y%x%%%<%%0%=%#%>%?%?%%j%%%\%%%%%%o%%%%%%3%i%%%%%%%P%w%%% %%%a%%%j%%%%%%n%%#%g%-%*%%q%Y%=%'%%%t%%%%I%%/%%%%%y%a%%%L%%%%%%%%%%1%%%?%%%%%%u%%E%%%%f%Z%N%%%%%_%%%%%%g%%%%%%r%%M%G%%%%+%6%%%%%%%[%%% %%%%M%%%%%%\%%%9%%%%%%%%%M%c%%%%#%%%4%+%%*%%%%5%%%V%%$%%S%U%%r%^%k%%d%%%O%E%m%O%x%%%%%Z%%%%%I%%>%%1%k%%%W%3%%u%%%%% %%V%%%+%%%%(%H%e%Q%%%*%5%w%|%%%Y%%%T%%%)%*%G%g%n%%%%%%%%%.%%%%%%y%+%%%%%%x%C%x%%%%%% %%>%%%v%%%W%%%l%t%%n%%%%3%x%%%%%i%%%k%%%%k%%%l%%-%+%%H%%%%X%%%%%T%1%(%%%%%)%%V%%%%%%%%%% %;%R%%%%%%%%s%%%%\%8%%%%%%L%%i%%%1%W%%%%c%2%x%H%%%k%%e%%%%I%w%O%%4%L%%%%%%?%%8%o%E%N%)%%%%%%%%%%p%Y%F%L%N%%}%m%%%%%%%%k%%%%%%%%3%%%%%H%% %%O%%M%Q%9%:%s%%t%%%)%S%%%f%%%s%+%2%n%N%c%%m%:%{%%%T%d%%%Y%%%%i%t%%%%%%N%%%%%L%m%%%%t%%%%%%[%%z%:%%% %%{%%%0% % %l% % %%% %%%% %%%%v%%%%%%%.% %%%%M%m%m%%%% %z%G%%%%u%%%% %v%9%%% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% %%%% %%% %%%h%%%%%%N%<%%%%%j%k%k%%-%/% %%%%z%%%g%%%%f%%%e%%%%^%%%(% %@%% % %%% % %a%% % %l% % %a%%g%*%5%?%%I%C%%3%%%%%,%h%.%%l%9%%=%%%R%i%%%%T%Z%%%[%%%q%% %%6%%%%%%%W%d%M%S%c%^%%w%t%%%%%%%%%%%%6%%%%Z%%%%%Z%%%%%%% %a%%U%%%r%z%%R%%C%%G%`%J%%%,%%%|%t%%<%%%%%%%-%%^%%j%%%<%%%%%U%%[%%%%%R%%%%%i%[%%%%[%%%%%y%%a%z%F%|%~%~%%%6%=%%%^%%%/%%l%;%J%%%f%%%;%s%{%%Q%%%n%% %%%%%%%<%%%%%%%G%%Z%T%>%%%z%N%%%%%%%%%^%N%%5%+%%%%9%%8%%%%#%1%%%3%b%h%9%~%%%5%}%%%*%%%%{%%%%^%3%-%%%>%!%%%M%%>%'%%-%%%%%%%%%W%l%%%%%%%%%% %@%/%%%%%q%%%%%%s%R%%%S%+%%k%%%%%%{%G%2%%i%V%%U%%%%k%j%3%%"%I%%%%%%%%%%%:%%%%%%h%y%5%O%%%%)%%%2%|%B%c%%%%%f%P%%%o%a%;% %%%%%W%n%u%%Q%%%%h%%U%j%%%%%%%!%%J%R%T%%%%%%)%5%?%%K%G%]%%%%%%%V%%%%=%Y%%%%8%9%%%% %%}%z%%%%%%%9%%%%%%%%g%%%U%%%%%%%V%%%%^%%%%[%V%%%%%3%%%%%u%%b%P%N%o%=%%S%*%%%%%%S%U%%%% %v%%%%%%)%*%G%%%	%%%p%%%I%%%%X%%%%c%%%%%%d%%%%'%%L%%%%%%%%%i%%%%C%%%%:%q%%%%R%%I%%%K%%Q%9%%%%%%%,%%%%%%%%%%%^%%%C%%%/%g%\%e%%%%&% %`%%
%%%r%t%%%%%%S%%4%f%%%M%%V%d%%%%%%t%%F%%%%%9%%:%_%W%%%.%%%%%%%%M%%%%%Y%%%%%%5%c%%%%t%%% %@%%x%%a% %@%% % %%% % %a%% %%e%;%%%%%%%%]% %`%%%%%%Z%#%% %%%%%=%%%#%% %%r%%%% %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %=%%%% %%L%%%%%%%%%[%%%%%%%%%%%o%%%%%%5% % %l% %%^%%%%%%%%%a%%%W%s%*%
%%%@%%%T%%%%%^%%%(%%6% %%%S%Q% %l% %z%%%%@%% %%%N%E%%%%%5%%%%a%%%k%8%%%%%^%d%%%e%%%}%Z%W%%%%% %l%%%%%%%%%i%]%%%%o%%%a%/%r%%'%%%%%O%%%%y%?%%Q%S%%t%Q%%7%@%%%%:%%%%%%z%%%%%%%%%%%z%%.%%%%d%O%%%%%o%% %%[%%% %%%p%*%%%%%%%%%%%|%%%%%%o%%%i%@%%%%=%%%%%%%%c%%%%%=%%%u%C%%%%%z%%%9%%%C%%%%%%M%%%R%%%%%%,%}%T%% %%%%A%%%y%%%@%%%[%Q%%%q%%0%%%%n%^%%%(%R%%%q%v%%%%%%%?%/%o%%:%%+%%%%%%%y%%c%%%%r%%+%%%%%)%%F%G%o%%s%v%%%g%%o%%%%%Y%%]%%%%%%%R%%]%0%8%%%%%%l%w%%%%{%i%n%?%%%%%%W%2%%%%%%%o%%%%%%%%%%%%%%%g%%%%%%%%%%%%%%%%1%n%z%T%%%n%^%%%%%%%%h%K%g%%%L%%%K%S%%%%I%%%%%I%%%%%_%%%)%%V%u%%%%%=%e%%H%%G%4%%%%%%=%i%%o%%%%%%%%d%e%%o%%%%%}%%%<%%\%%%%.%I%S%%o%%s%%%M%%w%|%~%}%K%)%%}%%%n%%F%/%%%%%+%%%%%%%=%%%%N%E%%%}%%g%%^%%%?%%%%%A%%#%%=%.%%f%%%%$%%W%^%%%%%L%}%f%F%%%H%n%%e%^%%%,%%%u%%%%%%I%R%%%%K%%T%e%@%%%4%%O%%=%%(%+%%%u%X%N%%I%k%%%[%%%o%V%%%%%,%%%%%%]%%[%w%E%%%}%%-%%%|%%*%%%%%a%%=%S%{%W%%%%%%%!%.%J%O%_%%%%%%w%4%%r%k%%%%5%'%%x%%%%%%%%%%%v%%5%%%%%S%%%%g%%f%% %%%v%%n%%%%%%%%m%%A%%%%%%k%%%r%*%%%k%%%%%%%K%r%%V%%z%%%1%%%s%%%%7%%X%t%y%%%%5%?%%%%%%%g%%O%E%%%}%%%%%%o%i%=%e%5%c%d%%A%%%%#%6%%<%%F%%%q%%%%%d%%%%%e%Y%%.%I%%!%R%%%8%S%f%%%%+%[%%%%T%%%%U%)%u%r%{%%%%%$%+%%%%%}%%%%%%%%7%%%%%%%%%N%%%%s%%=%%%/%%%%%R%&%%%%n%F%%D%%%W%e%%=%K%7%%m%s%%%%?%%%R%%%3%%%^%[%;%%%;%%%%%%_%%%|%%%%8%%% %%%%%%c%%%u%%A% %%%%%z%%%%:%% %%%%6%%%/%>%%%A%`%%%`%%%%%%}%%%%%%%% %%%%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% % %%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %%% % %l% % %%% %%%% %%6% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% %%%}%%%=%%`%%2%%%>%%W%%|%%%%%%%%%%% %%O%+%
%%%%%z%%%n%%% %%}%%%%{%?%%%% %l%%%%;%w%d%^%|%%%%%%%%]%Q% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% % %l% % %a%% % %l% % %%% %%%% %%% %%%% %%6% % %%% %@%% % %%% %@%% % %%% % %a%% %%% % %a%% % %l% % %%% %%%% %z%%%I%r%%%7%%	% %`%%W%%y%%%%%% % %%%%%5%^%%%%8%u%Z% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/header.png__ __17920__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%	% % % %>%%% % % %.%%%% % % %%t%I%M%E%%%%%	%%)%+%%%% % % % %I%D%A%T%x%%%}%y%%%%%%S%u%%%%%%%%f%m%%f%%?%%%!%%%% %H%%b%&%%c%%%P%T%%%%%1%q%%%i%%%%.%%%%%F%%%L%\%B%%c%%%8%%%%?%%%%f%%E%%%%%~%o%%%:%%%%V%%%%%%}%{%%%%%%:%u%%%%%}%%%%g%%%!%%%p%p%% %%%b%%{%%%~%%t%K%"%%%S%%%_%_%.%%%%%m%j%%%%%T%b%i%%%E%L%%%F%%%T%b%%%%%%%%%%4%7%%%%%%%M%%%	%%%%!%r%%%%%%+%%%%f%%%%%%%G%a%%s%%%Q% %%E%%h%%:%%%v%0%%z%%Y%%%%A%%%%~%d%T%%%%M%%>%%n%%%%%%%%n%%U%E%%%P%%%
%%%z%[%%%K%%%%?%%%%%%%%%Y%{%F%%A%s%%L%%&%T%C%o%%%%%n%%V%%%h%%%%%-%%%%%A%U%%%%8%8% %8%%%%	%,%%%h%*%(%L%%%9%%%%
%%%%%A%%R%%% %F%%#%g%9%T%B%%&%%%%%|%%%%G%%`%%%%>%%D%V%%%%%%%%%%%%%%%%%p%%7%0%%%%n%%p%"%%%%e%%o%%% %T%b%%G%%o%%9%{%%%T%b%m%%%7%0%_%%%%`%,%%%O%%*%m%P%r%%%%
%N%%%2%h%%%5%%0%%%%%%%;%%G%~%p%%%Q%(%%%%%%%%%%%%%%%%I%%%%`%%%%%%.%%r%%x%%%%t%%%y%%%%%%%=%D%v%S%%&%%%%%%%!%%%%%y%%G%A% %%u%S%%o%%-%%%%%%<%%%%% %%%%%%%%_%%x%%%[%%o%%%%%%%%x%%X%%%%%X%%K%%o%`%I%%%%%l% %%%%d%\%J%%%%%P%E%%%k%V%%%%%%%U%%%<%%%%*%%%%%g%%%%%%%%'%%#%%m%%(%%% %%%%%%c%
%-%%	%%%~%%%%M%%%%%%%T%B%%%8%%%%;%o%`%%%%%%%%%%g%%%*%%P%%S%r%%D%%7%%%%%	%%%%%%%&%%%#%%%A%G%%%%%H%%J%%%%%%%%%%%c%%%%9%%%%%X%@%%%k%%%_%S%%%%%%%C%%%%$%'%:%%F%5%:%%%%%%%%}%%%F%%%%%u%d%B%%d%%%d%"%%M%F%G%%%%3%%%R%%%%%{%~%%?%%%%%%I%%%%z%H%%%Q%%D%}%%%%%s%%%Q%%%%%%*%%%o%%X%%%%%%%%%%8%W%%%H%%%%u%J%%%%%%C%%%.%%%%%c%%%2%%%%%%~%%%%%	%%%%%%%%g%G%%X%%~%m%?%%?%\%;%,%C%%%%%%i%%%%%%%%E%R%%%P%V%M%%%%%%%%%-%+%%%P%%%%%%%%1%]%%%%H%%%w%G%%%%%%*%%%%D%n%%%%% %%%%v%% %B%%h%z%%%A%%%$%[%%T%m%%_%,%o% %D%%%t%%%`%%)%%% %Y%b%%%%%%%%%t%^%f%v%%Y%%%%9%K%%l%%%m%%%%%N%%
%C%/%%%%D%l%D%%%%u%%%%t%C%%%T%T%V%%%%%d%t%%0%%%P%G%)%J%%%O%%E%%G%%%%%l%6%%%%%%%% %%C%%%V%W%V%V%%%%%P%%%%^%J%D%%%H%%(%%%D%%7%p%%%0%Y%%%%%h%Q%%`%%%#%o% %;%%f%%Y%%%%J%%o%p%%%%%%%u%J%%%%*%%Y%%B%%%%%%q%%%%%1%7%%%>%G%%%%%/%%%%%%%o%%%%%%Q%*%%O%J%j%%%5%%%#%%G%%%%%H%&%%:%r%p%%%p%8%%%%%b%%%h%w%%%%%%X%b%%%%Q%%M%%@%%K%T%B%p%%%Q%%%%?%%%%%%a%0%%2%%%%\%%%%%%%%5%o% %%^%%%%%%%%%y%%%%%x%%1%%j%%%%%%Q%%l%]%8%%V%%%%%%%k%%r%(%(%H%%z%%5%%'%A%"%%%*%]%%%%%%%?%%l%o%u%P%,%%U%D%;%%}%a%%%t%%]%W%]%)%I%%%z%#%%[%%%%%K%%%!%E%I%4%t%h%-%%%%%%V%% %C%%%%%V%%%x%8%%%L%%o%%%%%<%%o%%%%%%%%%%L%%]%%%%%%x%%%%%h%Y%%%%%%%I%%8%r%H%%T%%%%%%%7%%%%%4%%%c%]%%%%]%%%%8%L%%@%%%P%$%~%%h% %%%%%%8%%%%p%%%%H%%%^%B%J%%%J%%%H%%P%^%%%%*%!%%m%%(%%V%% %v%e%%)%%%% %%%@%%%%%%3%%%%4%%%3%k%C%;%o%%k%%%%%X%% %k%%,%U%Y%2%[%K%%y%C%%%7%%;%	%%H%%y%%5%3%%y%%%4% %%*%%%P%%|%2%%%%%%%%L%*%Y%%% % %6%6%B%M%%%5%(%%%m%%%%k%%%|%%"%G%%%%%j%]%]%%%t%%%%%%*%%U%%%%E%9%Q%W%% %%P%%c%%%%%5%}%%%%%%%%%%%%%:%q%^%%-%u%%%%%,%o%r%/%%{%%%%V%%%%%%%-%%%%%%%w%%M%k%%L%^%^%%%%/%U%%f%%%%%%'%z%%%%u%J%E%%%%G%%%x%%% %~%%%%%}%% %%%%%%s%%%%%%l%%%%%%M%z%%S%b%M%%%%%]%%%%%%%%%
%%%%%%n%c%%%%_%%*%J%%%%%y%%%F%%%%N%%%%i%4%1%%q%(%%H% %%o%%%%%%%Q%%%%%%,%e%|%>%%%%*%\%7%%f%%w%%I%%3% %%D%.%Q%	%%3%%%l%%r%h%]%1%I%\%%%%~%%+%%/%7%s%%%%}%%% %%%%9%%%y%%%%%%%%n%%%(%P%%%%%%M% %%%%$%%_%%1%%%_%%%% %% %[%%%%%%u%J%0%W%R%B%%%%%B%y%C%%:%%t%%%;%%%%%%W%% %%Z%3%%%%%%%%%A%,%%%%%%^%/%%N%<%%%Q%%m%(%x%.%%%b%%%%%%A%%M%%%%%%%%U%%%(%%%Y%%f%%%%y%%%%%%L%%%%%%5%%%)%%%% %"%%%%%%l%Z%%%%c%%A%;%;%%%%%z%%%%%
%%%l%Y%v%%%%%%y%%g%%Q%%%%0%8%q%%%S%%%%t%%d%u%]%s%)%z%%%%h%Z%%%j%%%%%%%#% %%%e%e%]%%%T%%%%0%m%%&%%%%%X%%F%%%%C%%%4%%%2%%&%%%%-%%%%o%@%%%a%u%%%%%%9%}%%%%8%%g%%s%%%%%%%%%1%j%^%%%%%#%%%%5%%4%s%%p%"%%%2%%%%q%%'%%0%%%%%%%%%%%x%%%V%i%y%%%%%%%%%u%J%%7%p%%%
%%)%%^%%k%%%%%%%4%-%%g%'%%y%h%]%%j%%r%N%%N% %h%;%%%%%%Z%;%O%I%%%%%o%%%%4%%Z%%y%J%n%%!%%%%%l%%%%%%%%7%%%f%%%%o%0%%%%%%%]%K%%$%e%%l%%%%;%%%R%U%%%%N%%%H%%%%%$%e%%%%%%%%%l%%`%%%%%%Y%%%%%%%%q%'%%[%%Y%%%P%%%%M%%4%%0%s%%%%%%%%w%,%Y%1%%%%'%;%v%%%D%`%%N%!%%%%%%%p%%`%k%`%%%%%%|%K%%%%%5%%%%%%%%%%%%%%%%%o%?%%%%%%2%k%%8%L%%)%T%%%%%%/%|%%-%r%%%%%Y%%%%%A%%%x%%%w%%%%Y%%%K%%%v%%%L%%6%%%%%_%\%%$%%%w%%%%'%g%%y%%%G%%%%%'% %p%%%%o%%L%%o%%%%%%%~%%%%%_%%%%%F%%%d%%J%%%%%%D%8%(%2%%t%V%%%%%L%%%%%%%L%%%(%%l%2%%/%+%+%W%U%U%Q%%+%%%%d%2%%H%%%%%%%%%r%U%Q%b%%%P%E%%%%R%%h%%%c%%%,%K%%D%%:%<%D%%L%%%%`%%%q%-%%`%%%P%%%%%%f%Y%r%G%%%%%u%%%%%%%f%%G%%[%W%L%%W%%*%%%%%%h%i%%Z%7%%%%q%%h%n%(%g%^%|%%%I%1%%e%%%R%%%%[%%N%%%%%d%%%%%%7%%P%~%%c%%z%~%%%e%%%%%%%%Y%*%%%%B%%%%%%%%"%O%]%\%%%%?%%y%%\%%f%%%%%%%%%m%%%%=%%%%%L%%%%%%%%%U%%%%%%%%%%%~%%%%%U%-%%%%,%%%%)%7%%%%+%s%%%%x%%%%%<%%%q%%6%%%%%%%%%%?%}%h%%%%%%%%%%%%%%%%%M%%V%2%5%%%%(%%%%%%s%H%%%d%>%%%%%9%%%%%%F%%*%*%%%~%%%+%S%S%?%B%%E%%%%%%%%*%Y%%%%A%:%i%%%% %%%%d%%%%E%_%%%%%%%%%f%%
%%%%%%%o%%$%j%%%%%i%V%%%+%%\%%Y%%o%%%%%L%%%s%M%0%Z%%%%p%%`%#%%(%%7%l%%%%%0%h%x%%%%x%!%%%%&%%%%%k%%%%k%%%%%&%%t%%=%%%%V%%@%%`%%%%n%%%%%%%y%%%g%%%%%t%%I%,%o%x%%%M%%l%t%m%z%%%%%k%%%:%S%S%%u%%%%%%3%W%o%%%_%]%%%%?%.%%K%%%%%%7%%%%w%%%`%d%$%%%%s%%%%%d%%%@%% %%%%%d%%%%I%%)%9%%%%`%<%K%%%%0%%%R%%%(%%T%%%%%2%%,%&%i%b%"%%%%%"%%L%%%5%%%%V%D%%%7%%%*%J%6%.%%`%0%%%%m%M%%%%%%%%r%%
%%%%w%|%%{%:%e%%%%%*%
%%7%%%%d%6%%%%%%%%%%%8%%~%e%C%+%`%6%%%%R%%	%%&%%%%%%^%Y%%%%z%%%%z%%%M%3%%% %%%%%?%/%5%%%%{%%%y%%D%%%v%?%p%%)%7%S%%%]%%|%~%%%%%L%%%%h%%%%+%?%%%%&%%\%%%%<%%%w%% %%_%z%%%%%%%%%%%)%=%%%Y% %%%%%?%-%%G%%%u%%%%%% %%%%G%%Z%%%%%0%o%%j%%%%%%%%%%%%%%%%%w%n%%%-%%%%%9%%%%%W%/%%r%%%'%%%%{%%%%%%\% %%u%%%/%%%W%o%%%G%%*%A%%9%%%%%%%%%%%d%%%%P%E%%%%A%%/% %%U%%%o%%%%)%%%%%8% %)%%J%%%%% %*%%h%%B%H%e%%(%%%f%c%%%%%%%%%%t%*%%%%%j%%$%%%%%Z%A%%%%%%d%"%&%h%}%%%%%Q%%d%2%%%%%%%]%%%%%%0%%%E%%%]%{%%%%%%d%%%%%%%,%{%%F%l%%B%%%(%%%%+%%w%%%%%;%%j%%q%%d%%%'%%t%%%%U%%>%m%^%%s%%'%T%%%n%%%%>%7%]%p%%%%%N%%%%4%%1%~%%%n%Z%%%z%%f%%%z%%W%%%a%%%%s%!%%%%%%o%K%'%%E%%%0%n%%[%%9%%%:%%%%%%%]%%,%%s%%%%%%%%e%.%%0%%7%%%y%%x%"%g%U%%%%k%%8%2%%%y%%%%>%%%w%=%%t%%5%%%%h%%u%J% %.%%%{%%l%H%%$%M%:%%%%%%x%%%?%%%%%+%[%%%%%%%!%*%%=%%%i%Z%%%[%%%%%%I%<%%%%%%%%?%<%%%%9%?%%%%%%%%+%%%%X%%G%%%%%]%%%M%%%g%W%=%v%%%%%%m%%s% %%%7%^%X%%%&%%%%%%%%%7%G%%%%%%%%%d%%%%%%%%d%R%%E%%%%%$%%	%	%%%*%%%%%%%
%Q%%r%-%O%:%e%.%%@%W%G%W%e%Z%%%%%%%%%%%Q% %d%%%%9%%%%%Q%q%\%%%(%%%%%%N%%%%%%J%%-%T%%%F%%r%%y%%]%%%%%h%x%G%M%%&%%%%%v%3%%N%%!%%%%%i%Z%%%%%t%%%[%%%%%%%`%%%f%%%%x%%%M%%%<%%W%%d%%D%%%%N%i%%%%%y%%%%[%%w%%%Z%%%7%L%%%%%%t%~%%E%%%0%I%%%S%%%l%%%/%%~%%%%{%%%%%G%%7%%%7%`%%%%%/%%%%)%M%Y%%%%%^%%%%%%%%%%k%&% %%%%K%[%h%%K%o%%v%J%P%w%%%:%<%%%{%~%%%%_%l%%%%%;%%%%p%<%%%%%%%/%%%%%%%%%%%%x%% %p%%C%w%7%%]%%o%`%%%%o%(%9%o%%%%%X%d%H%%%r%%%l%%%f%%%w%%$%R%m%u%%]%%B%g%%%`%Y%"%%	%k%%%F%%L%e%u%%%O%%i%%%r%?%%P%E%%%M%%i%%{%e%)%%N%%%%+%%%7%%r%Y%2%%%%=%%%%%%%%8%%%%e%!%]%%%%%8%%%%d%*%N%%%%J%%%%%r%{%%s%%%B%%A%%%%X%%%A%%%X%x%%F%%P%%%%%%%2%%%%%%%%S%%%%%9%[%O%%*%%3%%%%#%%%% %%%%%Z%t%%\%U%;%%H%%% %%I%s%%;%%%%%%m%%%(%%%!%%%"%W%%?%G%%*%4%?%%%%%%%%%%%>%%y%%N%I%%%%N%%%o%8%%%g%%%%%`%%%0%c%%%x%%	% %%n%%%%4%%%n%%%%%%%[%%%%%%V%%%0%%%%%b%%%%G%%%%S%#%i%f%%%B%%%%%%6%%% %%%%% %0%%%%%%H%G%%4%%%%m%%K%x%_%%%
%S%"%%%!%%O%%%.%%%/%K%R%*%%%%% %%%V% %i%%$%%;%%C%%%%%%%%!%%%%%%S%I%%3%%%%%%N%%d%z%O%% %%%*% %%%%%%U%	%9%%%%%%%4%1%%%%%%%I%%%a%%%%8%%l%1%%%9%j%%'%%%%%%%w%%Q%%B%%f%%&%O%%I%g%%%%%%%%%c%%%%%f%%X%%%G%r%
%%%%%Z%`%%%%%%%7%%%%%%%]%%%%%_%%$%%%%%%%V%l%%%}%%%	%%%g%+%}%%1%u%%%%[%T%!% %%%6%%%%%@%`%%%%%%%%N%q%%%0%u%%i%%% %D%%%%%%%%A%%L%%6%%%X%U%%0%%'%%%%b%%%u%U%%%5%%;%N%%%%%^%?%}%%% %%K%%%%y%!%%%%%%p%%7%%%%%]%o%%%%%%%%%%9%%%%%%%%|%%l%6%%%%%%%%p%U%2%%%%%%%%%%%%%%%%X%%%%~%%%=%J%%E%R%]%%%%T%%%#%%%%%%9%o%x%u%E%*%%%f%e% %%u%a%%%%%%%%%%%%%%Q%%(%z%%%%%%A%%%q%%'%%L%(%%!%N%_%%%1%%%P%%5%a%A%%%%%%B%Y%~%%%%_%%m%0%<%'%n%%%~%%%%f%%%n%%%%Q%%%D%O%%#%%%w%%%A%7%%%%%=%%_%%x%%%%%%%%%%%%H%V%5%%,%%y%%M%%%%% %%(%%%%%D%%%%<%%$%U%%j%%v%v%_%t%%%%%f% %%%%*%%%7%%%%%%%%o%%%%9%c%%%%j%%%%)%%%&%Y%r%%%%%%%% %r%"%%%%%%%G%6%4%%%6%d%%H%"%e%Z%J%T%$%o%%3%%x%_%%%C% % %%%%@%%%%%%%0%n%%% %%%%N%%a% %@%%%%%%%%%D%% %I%&%	%%,%%%%%F%%%n%%%@%q%0%8%%q%%%?%t%,%%%%%%%@%%%%.%%%%%%k%b%%%H%%G%%%%A%%w%6%%%3%m%%%M%%%)%%%%%X%% %j%%%O%w%%	%s%%%%o%%%k%%}%%%%O%%%%%%%%%%O%%;%!%%%%%%%"%%%%%%%%%m%_%t%%%%%%N%)%%%%%%G%%%%V%%%6%%%0%!%%%=%{%%v%*%B%%U%l%%o%%t%%%%%%%%4%w%%%%T%%%%
%%%%g%{%%%%H%%G%{%%%8%?%O%%%%(%4%%`%%%%%%%y%%
%%3%%%\%%%%Q%!%%F%%M%%%%%A%'%%%%%A%`%%)%T%%^%%%%%&%%%%%%v%%%x%%j%#% %%%%5%%%%6%%$%E%%%	%%%%%%x%w%%%U%n%t%%%;%%%%%S%'%%)%%7%|%%m%%t%%I% %,%%)%m%%%%%%f%S%%,%!%c%F%M%%>%%%%m%%%#%r%%%f%%%%~%D%%L%<%%.%%%%%%%}%% %%t%%|%<%%%%l%%%%%%%x%%%7%0%%%%%P%%}%%%%e%%-%%*%%%%%%%%%%%-%%%%%%%%%}%%%8%%%x%%J%/%%=%%%z%%%a%0%%%;%%1%%%%%5%%%%%?%n%Z%%%%%c%%%%%%a%+%)%D%%u%J%%o%%%	% %#%%%/%%%%%%f%%%% %%%+%%%%%%%M%%%D%%L%%%<%%%%%%;%%%%%^%%%[%%%%i%%%%%%%%%%:%%%L%%%%7%%%m%%%%%%C%e%%%%%%%%k%%_%%%%y%%-%%%%%o%=%E%%%<%u%j%U%%\%%%%%?%%o%% %,%%q%%%%{%i%%%%r%%o%7%6%?%y%%%%%J%%%%%%h%G%%%%%%%%,%6%%%%%%%%u%J%%%H%h%]%1%I%%%o%%%%%g%H%%%%%%%+%%
%%%%%0%%%%%%%U%%%%P%%%!%9%%`%`%v%?%%%%%p%d%q%%f%%%B%%\%%4%%%%%%%%%%%w%%<%z%%%%s%%N%`%%%!%%%%+%%/%n%%?%%7%A%Q%T%B%%8%%;%_%E%%f% %%%}%%%%%%%%%	%!%%%%W%%%E%%_%0%k%%$%%%%a%%%%%%%{%%l%%%%7%o%%*%%%%%%%r%*%%B%%a%g%%%%%%%%%%%/%%%%%%Y%%!%%%r%%%%%%%u%%%x%*%%%U%%%%%%% %%%;%%N%O%G%%%%_%z%r%%%l%%%%G%g%%%%1%y%%%%%%%+%%%.%%%%%%%R%%%%N%%%C%%+%%%%%%E%D%%%:%\%W%H%%T%2%n%I%%%%5%N%<%%%Q%%%V%f%%W%%%%%%8%P%%%B%%	%%%G%%T%% %%%a%p%%%U%%6%%%%0%%	%%%B%e%q%2%q%%%%%%d%j%%l%%%Y%%%%%%%%%Q%#%%%%$%V%%%%]%0%%"%%%%%a%%%%%%%%G%%%%z%r%%E%%%%o%h%%%%%%%%$%% %%`%%%%%%%%q% %%%%%%%V%~%%%%M% %%%%%%}%%%%%%%}%%\%7%D%%%7%%B%%g%%%|%%%&%%%%%%M%%%%e%%Y%%%[%%%%%%)%%%%%%7%.%%%%E%O%%x%%w%%%%~%%%%%O% %@%L%%%%%|%g%%%%%%%%%%{%%%O% %%%%%{%%%%%%W%%%%%%u%%%|%%%%w%%%r%%-%d%%7%X%%%5%%`%%%{%%%%%%%%d%x%C%%%%H%%1%I%I%%%^%%%u%,%%%%%C%%%%T%%h%w%%%%C%e%I%%%%%%%%%(%%%}%%m%%%%z%J%2%%%&%%%%%%i%%%%D%%B%%%E%%%f%%%x%%%%q%%%W%%E%% %-%%P%h%%|%G%%%#%`%%%%{%I%%"%K%^%}%%%%%%6%%%%P%%%%%%}%%n%%k%^%%%;%%k%%%%%%%%%U%%%%%%%f%k%%%%J%^%%)%%q%%%%E%O%w%%%%q%%C%%%%%%%%Z%%%%s%h%z%%C%%=%%%%%\%z%%%%Y%o%?%;%% %p%E%%%{%%n%:%%%?%%%%%%%%%%=%O%	%%u%%%k%%%%%O%%%%%h%.%%%_%%%%% %%%%%%%%%/%%%7%%%J%%y%%%%%.%A%%%%7%%%%s%%%	%%%%%{%w%%%*%S%%%%%%%F%%%%%%%%%%e%%!%%"%%%%'%b%%%'%%J%_%U%E%9%|%%M%%%%K%T%Z%%%%%i%%;%%%%%%%%i%Z%%%:%9%%%%%%%%%^%]%%%%%%%_%%x%%<%%%%%%%%%%i%^%%%
%%%p%%%%n%%\%%s%]%%%%%k%2%:%%C%%[%&%%%%L%%A%%%%r%y%C%%C%%%%%%%%~%1%%%q%%Q%%%%%%%?%
%N%%%% %%?%%}%%%`%%%%%1%%%%%%%|%%%%%i%;%,%%%%%%%%^%s%%%%%%%%%%c%%%%%%%%%%%F%%%%%%%l%\%%n%%%%%%?%%%%%%%%%/% %/%?%%%%9%%%%%%\%U%<%%%%%%{%%%Q%%%%%%%%@%2%%%Q%?%T%%%%%%*%%%%%C%%m%'%%M%%%u%%%d%%%%%H%%%%%%
%%%%%%%%:%%%%%%*%(%V%U%%%g%%}%%I%%%%%%%v%3%8%O%^%%%%%%(%%%M%%%%%+%4%%S%%[%%%4%%7%9%%%r%	%&%k%^%)%%x%%%%u%%%%%V%B%%%%%2%%%K% %%%%H%l%%%U%s%%%% %!%s%%%%5%%-%%%%p%%l%@%%%%6%%%?%%d%%=%%%{%^%%%z%%%%%U%%%d%U%	%%%q%%%9%l%$%9%%%%%%%%l%z%%%%%%%d%%%%k%%|%%%%?%%h%<%%H%I%%v%y%%7%%i%W%%?%9%%% %%d%:%%%!%9%%%u%w%%% %%%%%%%t%%v%%%7%%g%.%%%%%V%}%%%%%%%%%%%%~%^%%%3%u%%%`%C%%%%%O%[%S%%%(%%%%p%]%%%%%%%%%%%R%i%9%%%;%%%^%$%+%K%%%%%%7%9%z%%%-%%%t%F%%%%%5%t%%%%%%%j%l%r%%%%K%%c%%%S%%(%%%%%D%%%G%%{%%%%b%O%%%%%P%%U%%%%N%1%%A%&%%M%-%z%,%%%C%%%%%D%%l%%%%%)%%%%%W%[%%=%<%%I%}%%%7%%d%%%5%% %%%"%]%%%%%[%W%%@%_%;%;%%%|%~%%%.%K%%%%%%%4%%%&%%%X%%%<%T%%X%%m%%%a%%%U%%%n%%%%)%'%%%@%%%%c%%%%w%%E%%%I%R%f%X%%(%.%Q%	%%%S%%[%8%%%t%%%J%%l%%%%7%P%-%%%6%%v%6%3%o%p%%%%%%z%%4%%%D%%%L%"% %%%'%%v%Y%4%%[%%o%p%%@%%9%%%%E%%{%_%%6%t%6%%d%i%%%%E%%%%%v%%%%A%F%R%;%%%R%%%s%%%%:%T%%0%F%f%%%%%%
%V%G%%5%%%%%D%%d%}%%E%:%%%I%%3%%%L%w%%%h%2%%%%%C%%U%%%H%M%%%%% %%%c%%n%%%%K%T%B%p%%%%%W%%%~%Y%%%%%%%%%%%z%y%%%*%0%_%%V%Y%%*%!%%L%\%%7%h%o%.%%%8%%Z%%(%%%%%%%0%%%t% %%a%x%L%L%%j%%%%/%%%s%X%Y%%%6%%w%%%M%%%%%%%%W%%_%%0%%^%%%%%"%%%u%%'%%%%%j%%%%%%e%%
% %b%c%#%%t%]%]%%%(%%v%y%%%&%%%g%)%2%%%.%%%%V%W%%*%k%*%B%%%%.%\%E%F%%%%%%%%%u%%%5%%~%l%j%o%%o%G%%$%J%%%%%%%%%%%}%J%}%%%%%%%%%%%%%%o%`%%%%*%%R%%;%o%%%%%%%D%%%%z%%%]%y%%%%%%h%%,%Z%N%]%E%%%7%%:%% %%%%+%]%.%&%%%H%% %u%P%%%%%~%%<%|%d%%%%e%%%#%%%%k%u%%%%b%%% %}%q%%%%[%%%%%%U%=%%%%%%$%%% %%%%p%%0%.%Q%i%%m%C%%%b%%%w%%%%5%%F%%}%J%%%%t%X%}%%V%%X%%o%%%/%(%% %%o%p%t%%%%%%%7%%%s%X%%%K%%%%%%@%%%%%%a%%%%%%%~%%%=%%G%%%%v%x%@%%%%%%% %%%%%>%%M%a%%
%%<%%M%%%Q%U%%%%%%%Q%f%% %R%%% % %%%I%D%A%T%%h%R%%%%%%<%J%%o%%G%%%%%%%L%V%%%7%%]%u%:%%%6%n%%%%%%,%"%%%%%%%%%%%%%%%%7%0%J%}%`%y%%%W%%7%%%9%%%%%%@%%%%%%9%t%%i%%%%%%v%%f%%%%%%%%7%p%%%%U%%%%%%M%%%%%%i%%%%x%%%G%%%%%%,%%%%%%u%J%%1%%%%%%%%%%4%%%p%%%[%%%%7%8%o%%(%%%%%%%%%%%%F%%%%%%v%%9%%~%%%%%%%%;%m%%v%~%%%%b%%)%Y%F%C%5%%%%%%%%%c%_%%c%%5%%%%'%%i%%%%)%%%%% %%%`%%%*%%t%Z%%E%%%	%%"%%$%Y%%%)%}%%A%(%%%%%%%z%y%C%%y%%%:%%%%%%%% %/%o%p%^%%%%%w%%%%x%%;%%V%%%%%%%%%E%;%%%%%%%u%%%%L%&%%%%`%y%%%N%%%%%%r%%%%%&%%%%%r%U%U%%E%%%%%.%B%%%%:%%.%
%%e%)%%%W%%%%%%~%%%%%%%%B%%%%`%%b%z%J%%x%%U%%1%% %%*%% %%%b%y%%K%[%%k%%y%%%9%%Q%%%%S%%%c%s%%%%A%8%Q%x%C%%%X%M%%V%%E%%%%%%%u%%%%X%4%%%%%%*%G%#%]%%%%~%%%%H%,%%%%%%o%%%j%4%%U%Y%%%5%%=%K%%m%%G%~%%%%U%%y%%%%%E%%%L%%%%%%%%%P%%=%%7%%%%%%%%y%C%%%E%%%%%>%O%	%'%%o%%%%%%-%y%x%%%%%%%%1%%%O%%5%%%%%%%%%6%p%p%p%p%p%X%%m%%%%%%%%%6%p%p%p%p%p%X%%m%%%%%%%%%6%p%p%p%p%p%X%%m%%%%%%%%%6%p%p%p%p%p%X%%m%%%%%%%%%6%p%p%p%p%p%X%%m%%%%%%%%%6%p%p%p%p%p%X%%m%%%%%%%%%%%%%4%%%%/% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/headerBG.png__ __336__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %>%%% % % %%7%%p% % % %	%p%H%Y%s% % %%% % %%%%%(%J%% % % %%t%I%M%E%%%%%
%%:%%%O%% % % %G%I%D%A%T%x%%c%%w%%1%%)%%%%%/%%i%%%%%%6%%%%%%%q%%%%%4%j%%h%~%%M%K%%6%%%%%%%%%i%3%I%%%%@%"%%%0%%%Z%% %1%%g%I%%A%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/help_ex.png__ __6660__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%%a% % % %	%p%H%Y%s% % %%% % %%%% %%%% % %
%O%i%C%C%P%P%h%o%t%o%s%h%o%p% %I%C%C% %p%r%o%f%i%l%e% % %x%%%S%g%T%S%%%=%%%%B%K%%%%K%o%R%%% %R%B%%%%%&%*%!%	%%J%%!%%%%Q%%%E%E%%%%%%%%%%%%Q%,%%%
%%%%!%%%%%%%%%%{%%k%%%%%%%%%>%%%%%%%%%%%%H%3%Q%5%%%%B%%%%%%%%%%.%@%%
%$%p% %%%%d%!%s%%#%% %%~%<%<%+%"%%%% %%x%%%% %%M%%%0%%%%%%B%%\%%%%%%t%%8%K%%%% %@%z%%B%% %@%F%%%%%&%S% %%% %`%%c%b%% %P%-% %`%'%%%% %%%%%{%% %[%%!%%%%% % %%e%%D% %h%;% %%%V%%E% %X%0% %%f%K%%9% %%-% %0%I%W%f%H% %%% %%%%%% %%% %0%Q%%%)% %%{% %`%%#%#%x% %%% %%F%%W%<%%+%%%%*% % %x%%%<%%$%9%E%%[%%-%q%%W%W%.%%(%%I%%+%%6%a%%a%%@%.%%y%%%2%%4%%%%% % %%%%%%%%%x%%%%%%6%%%%_%-%%%%%"%b%b%%%%%%p%@% % %%t%~%%%,%/%%%%;%%%m%%%%%%%h%^%%%u%%%f%%%@%% %%%%W%%p%%~%<%<%E%%%%%%%%%%J%%B%[%a%%W%}%%g%%_%%W%%l%%~%<%%%%%%%$%%2%]%%G%%%%%%%L%%%%%	%%b%%%%G%%%%%%%%"%%I%b%%X%*%%%Q%%q%%D%%%%2%%"%%B%%)%%%%%%d%%%,%%%>%%5% %%j%>%%{%%-%%]%c%%%K%'%%X%t%%%% % %%%o%%%(%%%%h%%%%w%%%?%%G%%%% %%f%I%%q% % %^%D%$%.%T%%%?%%% % %D%%%*%%A%%%%%,%%%%%%%%%%`%6%%B%$%%%B%%B%
%d%%%r%`%)%%%B%(%%%%%*%`%/%%@%%4%%Q%h%%%p%%.%%U%%%=%p%%%a%%%%(%%%	%%A%%%%a%!%%%%b%%X%#%%%%%%%!%%H%%%%$% %%%%Q%"%K%%5%H%1%R%%T% %U%H%%%=%r%%9%%\%F%%%;%% %2%%%%%G%1%%%%Q%=%%%%C%%%7%%%F%%%%d%t%1%%%%%%%r%%%=%%6%%%%%h%%%%>%C%%0%%%%%3%%l%0%.%%%B%%8%,%	%%c%%%"%%%%%%%V%%%%%%c%%%w%%%%E%%	%6%%w%B% %a%%A%H%X%L%X%N%%H%% %%$%4%%%	%7%	%%%Q%%'%"%%%K%%&%%%%%%b%2%1%%X%H%,%#%%%%%/%%{%%C%%7%$%%%C%2%'%%%%I%%%T%%%%F%%n%R%#%%,%%%4%H%%#%%%%d%k%%%9%%,% %+%%%%%%%%3%%%%!%%[%
%%b%@%q%%%S%%(%R%%j%J%%%%%4%%%e%%2%A%U%%%R%%%%T%%5%%Z%B%%%%R%%Q%%%%4%u%%9%%%%I%K%%%%%%%h%%h%%i%%%t%%%%%%N%%%W%%%%G%%%%%%w%%%%%%%%g%(%%%%%%g%%w%%%%L%%%%%%%T%0%7%1%%%%%%%o%U%X%*%%*%|%%%%
%%J%%&%%%*%/%T%%%%%%%%U%%U%%T%%%^%S%}%%F%U%3%S%%%	%%%%U%%%P%%S%%S%g%%;%%%%g%%o%T%?%%~%Y%%%%Y%%L%%O%C%%Q%%%_%%%% %%c%%%x%,%!%k%%%%u%%5%%&%%%%|%v%*%%%%%%%=%%%%9%C%3%J%3%W%%R%%%f%?%%%%q%%%t%N%	%%(%%%%~%%%%%)%%)%%%4%L%%1%e%\%k%%%%%X%%H%%Q%%G%%%6%%%%%%%E%%Y%%%%A%%J%'%\%'%G%g%%%%%%S%%S%%%
%%%M%=%:%%%.%%k%%%%%D%w%%n%%%%%%^%%%L%o%%%y%%%%%}%/%%T%%m%%%%G%%X%%%%$%%%%%%<%%5%q%o%<%%/%%%%Q%C%]%%@%C%%a%%a%%%%%%%<%%%F%%F%%%i%%\%%$%%m%%m%%%&%%&%!%&%K%M%%M%%%R%M%%%)%%;%L%;%L%%%%%%%%%5%%=%1%%2%%%%%%%%%`%Z%x%Z%,%%%%%e%I%%%Z%%Y%%%%n%%Z%9%Y%%X%U%Z%]%%F%%%%%%%%%%%%%%N%%N%%%%g%%%%%%%%%%%%%%%%%m%%}%a%g%b%%g%%%%%%%%%}%%}%%%=%%%%%%%%Z%%~%s%%r%%:%V%:%%%%%%?%}%%%%%/%g%X%%%%%3%%%%%)%%i%%S%%%G%g%%g%%s%%%%%%K%%%.%%>%.%%%%%%%%J%t%%q%]%%z%%%%%%%%%%%%%6%%i%%%%%%4%%)%%Y%3%s%%%%C%%Q%%%?%%%%0%k%%%~%O%C%O%%g%%%#%/%c%/%%W%%%%%%w%%%a%%%>%%>%r%%%>%%<%7%%2%%Y%_%%7%%%%%%O%%o%%_%%%C%%#%%d%%z%%% %%%%%%g%%%%A%%[%%%%z%|%!%%%?%:%%e%%%%%A%%%%A%%A%%%%%%%%!%h%%%%%!%%%%%%%i%%%P%~%%%%%a%%a%%%~%%'%%%%W%%?%%p%%X%%%1%%5%w%%%C%s%%D%%D%%D%%%g%1%O%9%%-%J%5%*%>%%.%j%<%%7%%4%%?%%.%f%Y%%%X%%X%I%l%K%%9%.%*%%6%n%l%%%%%%%%%%%%{%%%/%%]%p%y%%%%%%%%%.%%,%:%%@%L%%N%8%%%A%%*%%%%%%%%w%%%%
%y%%%%g%"%/%%6%%%%C%\%*%%N%%H%*%M%z%%%%%5%y%$%%3%%,%%%%'%%%%L%%L%%%:%%%%v% %m%2%=%:%%1%%%%%q%B%%!%M%%%g%%g%%f%v%%%e%%%%%n%%%/%%%%%k%%%%%Y%-%
%%B%%%T%Z%(%%*%%%g%e%W%f%%%%%9%%%%+%%%%%%%%7%%%%%%%%%%%%%%K%W%-%%X%%%%j%9%%<%q%y%%
%%%%+%%V%%%<%%%%*%m%%O%%%W%%%~%%&%z%M%k%%^%%%%%%%k%%%U%
%%%}%%%%%]%O%X%/%Y%%%a%%%%%>%%%%%%%%%%%%(%%x%%%%o%%%%%%%%%%%d%%f%%f%%%%-%%[%%%%%%%%n%%%%%%%V%%%%%E%%/%%%(%%%%%C%%%%<%%%e%%%%%;%?%T%%T%%T%%T%6%%%%%a%%%n%%%%{%%%4%%%%[%%%%>%%%%U%%U%M%%f%%e%%I%%%%?%%%%%%%%m%]%%N%m%q%%%%%%%%#%%%%%%%%%=%T%R%%%+%%G%%%%%%%%w%-%%6%%U%%%%%#%p%D%y%%%%	%%%%%:%%v%%{%%%%%%v%%g%%/%j%B%%%%F%%S%%%[%b%[%%O%%>%%%%%z%%G%%%%%4%<%Y%y%J%%T%%i%%%%%%g%%%%%%%}%~%.%%%`%%%%{%%c%%%j%%o%%%%t%%%E%%%%;%%;%%\%%%t%%%%%%W%%W%%%:%_%m%%t%%<%%%%O%%%%%%%%\%k%%%z%%%{%f%%%%%7%%%%%y%%%%%%%9%=%%%%z%o%%%%%%%%~%r%'%%%%%%w%'%%%%O%%_%%@%%A%%C%%%%?%[%%%%%%%j%%w%%%%%G%%%%%%%%%%%C%%%%%%%%%%%8%>%9%9%%?%r%%%%%C%%d%%&%%%%%%%%%%/%~%%%%%%%%%%%%%%%m%|%%%%%%%%%%%%%%%x%3%1%^%%V%%%%w%%w%%%%%%O%%|% %%(%%h%%%%S%%%%%%%%%%%%%%c%3%-%% % % %%g%A%M%A% % %%%|%%Q%% % % % %c%H%R%M% % %z%%% % %%% % %%% % %%% % %u%0% % %%`% % %:%% % %%o%%_%%F% % %%%I%D%A%T%x%%%%%K%T%Q%%%%%%;%s%g%%%	%%
%E%Z%%%%%%E%%T%%D%_% %I%%%R%% %
%"%p%%.%%Z%%A%%%%%%%%F%%X%%%%%%b%t%%%%I%I%%%%%%;%o%%%%%k%%%%%%%%x%%%s%%%P%%:%%W%;%%%%s%%%%%%h%L%%%'%%%%%%%%A% %L%<%$%C%%=%D%Z%%%%j%%$%%\%%%d%<%%%%%%%f%%Z%%%%L%%%%%Y%G%%%E%%%%%%%%"%%%%%%;% %o%%%%%%e%t%%%%%q%%%%4%%0%0%%%%%%`%u%C%S%%%-%%%%j%%&%`%T%3%u% %%y%%_%%%=%	%%%%%%%)%%%%%%%%%#%@%%7%@%t%N%%%%S%%{%%%%+%%k%%k%P%r%%%%%%%%%:%%%f%&%%%Z%%8%%%%%%%%y%%i%%g%=%%1%%%%%%g%%%%%%%j%h%%D%%%%H%?%%%S%H%%%D%%%%%%7%%%_%%k%%#% %;%%O%>%%%#%%,%%%\%s%%%%%%%%k%%%%%%%Q% %%=%B%E%%%%%t%%i%6%g%%%@%%%s%,%<%%b%%%%%%%%%O%%%?%%w%%%6%%% %%[%1%%h%%%*%[%%%%%	%%7%%%%%%7%%-%v%%%%%L%g%%%%%%%	%8%<%%%%%\%I%%%%%%%A%@%e%'%s%:%	%%%% %%]%[%)%i%%	%%%%a%i%W%%.%l%%%% %J%%{%%%%%%d%H%%%%X%%%%%_%%%%s%E%%%%J%p%%%n%%%%% %4%%%%%%^%}% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/help_fx.png__ __95202__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%%a% % % %%s%B%I%T%%%%%|%%d%% % % %	%p%H%Y%s% % %%% % %%%%%%~%% % % %%t%E%X%t%S%o%f%t%w%a%r%e% %A%d%o%b%e% %F%i%r%e%w%o%r%k%s%O%%%N% % % %%p%r%V%W%x%%%%%%%0%%%%U%%F%%%%T%%%8%%N%%% %%^%%@%]%2%%%%8%%%%]%%o%&%%%%%%Y%%%Y%,%K%]%%%X%%%%%%2%%%%%&%%:%9%%%%%% % % % % % % % % %%%%%%%%t%%%z%%8%%%%%%%%%%Q%w%%%4%9%%%%m%%n%%%%^%%%%%%^%%$%m%%%%%%%Q%%%%%%%w%%%%%%x%t%j%%N%n%%%%%%% % % % % % % % % % % %%%%[%b%'%K%M%%?%% % % %H%m%k%B%F%%%%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %)%%3%% % %7%K%m%k%T%S%x%%%}%Y%w%%F%%.%:%%'%%-%%q%%+%%%%h%%{%%%O%I%%%%G%Q%%%%%%%%e%%y%%%A%"%%%c%%e%Y%%[%%%%%%0%%%%8%H%	%$%[%E%%0%%%%%%%v%%%%%w%%o%^%%%%%%%%%%%F%%%%%%b%%%%%%V%%%%%%5%;%?%%%o%%%W%\%%<%%%7%z%s%v%p%8%%r%%%%7%-%c%6%t%%.%%%%%g%%%g%6%8%:%%%%%%%%%%%%%%%5%O%{%%%%%%%>%]%h%o%g%%'%%P%%%j%%A%%%% %%%%%%%%%%w%:%%S%%%%%w%%%%%=%%%%%%%c%h%%%%l%v%g%]%g%%v%r%%T%%%P%%=%%%%%T%%%%%%%%%p%D%;%%%%%?%%%%7%:%%@%%9%%%%r%%g%%9%|%%c%>%%%%;%%%%l%U%c%%;%%/%n%%P%%x%%%%I%E%%6%%P%%\%%X%%
%!%%_%*%d%%m%m%%%^%%%%%%[%(%]%%#%%L%V%%%~%K%%%e%a%%X%`%%%]%%.%%%7%P%w%%M%3%%%%%i%%6%%%%6%%%%%%%%%f%l%L%%4%:%%%%%%%%%%%%6%%%%9%%%%*%%%%%r%p%
%%%.%l%%%%%%L% %%%%%%z%%0%%j%%%%%%%	%'%&%4%%;%%M%% %%%%e%%)%i%%%%%I%%6%%
%%%A%%k%%.%%%>%%%v%%?%^%h%% %%% %%%0%}%%%m%m%%%>%%%I%n%%U%b%%%%b%%%%U%%%n%%~%%%%%%% %%_%%%%A%%%e%%%%v%%%6%%%`%%t%%%[%%%%-%%%%%%%a%%%G%%[%e%%g%%}%+%%%%%%%t%%%%F%%%%%o%%E%c% %%l%%%;%%A%%%p%%A%%% %O%%%%d%.%%%%%%%%%%V%h%%2%}%%%%%%%%M%%%i%0%4%%%%%%4%
%B%%T%%B%%a%%G%%%%%@%[%J%%%%+%%%%M%~%%B%6%#%d%3%B%%%%% %J%W%%%>%%K%%Q%O%%g%l%%%f%%\%%%e%%%%%M%%%%t%%K%%%]%%%	%a%%`%=%%`%%%f%%%%>%M%%%%%\%%%V%%%%%.%%%%%%%%%%%%%%Y%%%%%>%%k%b%%%%A%%%%P%%%`%%<%%%%%8%%%%%%%T%%%l% %%%%%%g%%%e%(%K%%%+%%i%t%%%%%%%%%%{%K%!%%_%%p%%g%%%W%%%% %%U%%%%%q%l%%%%u%%%r%D%%%D%%5%%%c%e%O%%h%%C%%+%%%%J%x%m%%:%%o%%%%%>%;%%%%P%%%%%%%a%%w%+%%%%F%%%%%Y%%%j%%%%%"%%%%>%)%%]%6%%%%%%%%%%l%h%#%%%%K%U%%% %%%x%%%%J% %d%%%%>%%t%+%%%6%%#%/%%%P%-%%u%%%H%%%%%Y%I%%%%+%e%%
%%%j%%%B%%%:%%%L%5%%;%%%%u%%Z%%%%!%F%o%%Q%% %%7%%%~%%%A%%%.%%%%U%%%%%%%%M%`%A%x%%S%A%^%x%0%%D%%%b%v%%%%%A%%%%%>%t%%%*%%%@%%v%%%@%%%v%l%%%%%%%%R%%%%%W%+%K%%%]%%W%%%Z%4%n%%%%%%%%%%G%r%@%%%*%%%M%B%%%
%X%O%%%%%%%	% %%%[%<%%%%%x%p%H%p%%%%%%%%%%>%%K%C%\%%A%V%{%v%4%S%%%%g%%%%%=%%%%%;%|%1%%%i%a%%.%%%%%%%]%%%%%6%$%y%q%%%%%%%%%%%%E%%2%%%%%%%,%%%%%{%h%%%K%c%%%%%%%-%#%%-%[%D%%%%%0%%%x%5%%`%M%%X%S%%&%%h%%0%%%%%%%%%%d%%%%Y%n%%%%%%x%%b%%%H%%%G%%%%%%J%%%%I%%d%%%a%%%p%,%%%%%%%%%%%k%%^%\%%%b%%%%I%%%h%t%%%7%%D%%%%% %%q%%d%%M%G%4%`%%>%%%"%%D%%%C%%R%W%g%T%%-%v%b%%`%%%%%%%5%%%%)%%%@%%%%O%%g%%%%%^%%3%n%k%%%%T%%,%%%e%%Q%%%E%%W%j%%h%%%q%%j%>%`%P%%%%%%%%%%7%%%\%*%%%%%R%_%n%$%l%%%%9%%%%%%%S%4%h%%.%%%%P%%q%%%%%t%E%%%R%%2%%g%d%%%%1%J%%_%{%i%z%%7%%%%%t%[%%=%M%%%%%%T%%%%A%S%%	%q%%%%)%A%W%L%%e%w%Y%W%9%%+%`%%q%`%%%L%%\%F%%%%%g%H%%%%%%%%%%!%%%%g%[% %%f%D%=%%j%%	%L%%%l%%%%0%%0%%4%3%%?%%.%%`%(%%%p%%8%%%%%Q%%%%G%1%Q%\%%X%'%o%^%%-%k%j%%'%%%o%%%%%O%%%%`%%C%%e%%%%%%%%%/%%%g%i%%%d%%w%%% %%1%%	%M%%%d%%u%?%%%%%C%%1%+%P%%%V%E%T%%%o%%%%%%z%%%`%%%%Z%*%P%%%Z%%m%1%%k%%%]%(%%%%v%%%%%8%%P% %.%%#%%%_%%%%a%P%h%%\%a%N%
%q%%4%b%%%"%3%%%2%%%%%%b%l%M%%%%%%%T%%%%%%%%@%%I%%%%%e%%%%X%%%%%%%E%|%%`%% %%%%%%m%%%%%%%%$%%%%%%%\%%%%(%n%Q%p%%%t%?%t%%	%@%%u%%"%%{%I%j%8%%%%J%%%%%%%G%?%%%%.%%V%o%%F%%)%%P%%%%%%%%p%%$%O%%%c%%0%%L%%L%%K%%%%3%Z%l%%%C%=%%%%A%a%g%'%%%U%x%H%%~%%%%%1%:%9%%%%%i%L%_%%%%R%%m%q%%%%%%%2%%G%%%%"%%%%% %%f%%%X%%%%*%e%%%%%%d%U%%c%(%h%%%%%%%9%y%+%%.%M%%v%%,%%r%%d%6%%[%y%R%%%^%>%%%c%q%!%W%J%%8%%s%B%%?%%%%%<%%%l%%%%%%%%%z%2%=%%@%U%%%*%%i%0%%%G%W%J%%(%%L%%%%%Y%%%g%%5% %%U%1%N%%%%%%*%L%%%%q%%%%U%G%%%:%M%%C%%=%
%B%F%%%]%
%B%H%%%>%_%1%_%%%4%%%$%;%u%%%%B%8%&%5%s%%L%(%%%O%%%I%3%%i%A%%%D%%%%%x%a%%%_%%%m%%%|%%:%%E%B%*%%u%[%%c%3%%%n%	%+%%T%r%c%C%%%%%%%%%0%c%r%%%!%%%J%%J%%%M%a%R%d%%%%Z%%A%%%%%K%%%l%J%%%N%j%%0%&%<%%%%&%K%%%%v%*%)%%%%%%>%o%%%/%%%%%%-%f%%%%%)%%%%H%%O%v%%%%#%[%%%|%p%9%d%%%%%9%%e%C%&%%%S%%%% %%%+%%A%%+%%3%q%%.%%>%-%%%%D%i%%%%w%2%8%%0%%1%o%_%% %%^%@%%%%%%%%%%%%% %%%Y%%4%%%K%%%%%%%%t%z%Q%p%%%%%%%%%%%%D%%R%#%L%%%%"%%%J%%O%1%%%G%z% %l%R%%%$%m%%%%%%%}%J%%d%%@%%%%%Z%%%4%p%%%.%g%%%%t%A%%%M%n%U%G%[%%%%%%%%i%3%4%M%o%(%%%%%%%%!%%%f%%%%^%<%N%%%%%f%%%%`%`%%%.%% %%%%%%%<%%%E%*%%%{%%%B%%g%+%%%i%_% %s%&%}%#%O%%%%%%t%0%%%j%[% %%)%l%%"%j%%[%	%%%%%%%L%	%%N%%;%%L%%K%~%%% %{%%%%%%%%%%i%%F%%%%%%%d%%Z%[%%J%%%%%l%F%%P%Z%%p%%|%;%%%d%%%[%1%%%%%%6%%0%J%c%H%%U%%%%%C%%%|%7%%%%%%%.%%s%%%%Z%%%%%%%%%%%%%%H%%o%%%%b%C%%9%%\%%%%}%%%%%s%i%%J%%%%%%%t%%%T%%%%%%%O%%%%%%%@%%h%%N%%%%%%%N%%%[%6%%%q%%Y%%%w%}%%%%%%I%%%%%.%b%+%%}%%%%%%%%	%%,%%F%%%%%%%%%|%%%=%%%%%G%%%%\%w%%%9%%%~%|%h%%%%%~%q%%'%5%)%^%s%%Z%S%%I%%7%	%%%%E%%%=%^%% %%%%%%b%%S%%%%%'%%2%Q%C%=%%W%%%%q%%%%% %%%.%%%%>%%%%	%,%}%~%%J%%~%f%%*%=%%%%_%%%W%X%%%%y%%%%%%%%%%X%%E%^%%%%w%?%%%%r%%
%%%U%)%^%S%M%n%&%%%%%V%F%n%[%B%n%C%@%%%%%`%%/%%%%B%%%%9%+%%O%5%%%,%Q%%%h%%%>%
%{%"%%%%o%%%%~%,%%%%%e%%U%%%%%%j%%U%%%,%%+%%%]%%x%I%}%Q%%%Y%%}%n%%%%^%%%%H%#%%%%%{%E%%%%%Q%%%%R%%W%%%%%%k%i%U%%%%%H%/%%%%%%%`%%Y%%%j%%j%%%Z%%%%H%%O%%L%B%<%%%D%%%R%%W%%V%%%%%%U%F%Z%O%%%%%Z%%%%o%q%%%%%%j%%%%=%%%%%%%%%,%#%%%%,%%4%%%1%%%%%%L%%a%%%%V%%%%r%%j%9%%%%F%8%%%%%O%%%%%Q%%<% %%j%%%l%%2%%%2%%b%%^%R%%%t%%%E%%%R%%W%%%%%5%%%U%e%%=%%%%%%%(%%%%u%g%%u%%$%%%%%D%%6%C%5%%j%c%%G%%x%C%%%`%%6%P%%%%,%%%Z%#%u%%%%%%%%%%%%7%3%%%J%|%%%Y%g%%}%
%`%%j%%%%% %%% %a%%%%%r%E%+%H%0%%'%%Q%S%%.%%%%%U%%h%%%Z%%%%%%%%%%%%%%%C%[%%%%r%%d%%%%%%K%!%%
%%%%b%%}%J%%%}%%U%%T%%%%%%%%%%%%f%%%%%%%%^%L%%z%O%%4%W%%%X%%%K%>%)%%%%k%w%R%%%%Q%%%%R%%%%%%%%C%%%%;%%%%R%%Z%U%%%b%%Y%%@%%%%%t%J%%Y%_%Q%N%%'%%%t%%F%%X%%H%%A%%%+%n%%%J%%%%%%%g%%%1%h%%%%%%%%%%%i%%?%%%:%Y%%%%%%y%%%Z%%.%%Q%N%!%%%P%%q%h%z%%%%%a%z%%5%%%%>%%%%q%%%%%%%%%f%%%N%%%%f%%%O%%%-%*%%%%%%%K%)%6%b%n%)%%%%p%%%%%%j%M%%e%5%u%%%%a%'%%O%%%%T%;%%m%z%%T%o%*%o%d%%O%%%d%^%%%i%%%%%H%%#%%d%2%%%%%p%S%%f%3%M%%%%v%C%v%%#%%n%6%e%%%S%l%<%%%%)%6%_%8%%%%%%%%%n%%%%%%%y%K%%%K%%%G%%%%D%n%q%%u%S%%C%%&%%%(%K%%b%%%%%O%S%1%%%%4%%%%c%s%%%%X%%9%%%%%M%%%%%%%%]%%r%%%%%K%%%%j%%A%d%F%%#%%%%'%%%!%%%%%#%%%%%%%%%%%`%t%%T%%%%%%J%%%%%%%%%{%%7%{%%%%%%T%%%%%%c%%%%k%z%Z%g%0%/%6%%W%%%%%l%o%%\%%%v%%%%s%R%%=%%%%%%%%%0%%C%%7%%%%%%%%%h%-%%m%j%:%%6%4%C%%%>%{%%%?%%%	%%M%%%%Z%P%%%_%%%l%%_%%j%%%4%>%v%%%%%%H%%%%)%%%7%%%%%Q%l%%%%%%J%{%#%%%%[%$%%%=%%j%%%%o%%3%%%%6%5%[%j%%C%]%%%G%v%;%%%%%%%%@%%%%%_%k%%%P%%%%%%%R%%%%M%u%d%#%%%%%%%%N%%%%%,%#%q%%%%%%N%>%B%%%W%%%*%%+%J%%r%(%%%*%%%6%%%@%s%%%{%>%M%%%!%\%%%%^%%%%%Q%_%
%%I%%%Y%x%%n%%%%%%%%%%%%%%%'%1%%%	%e%%%%%:%%%d%%%Z%:%%%%=%%%%%%%0%%K%%J%%+%%%%%%q%%%#%%%%%%%%%%%%%%W%%%R%}%%%%%%%c%%i%%1%%%^%%%%]%%E%%%%K%G%%:%%%%(%%n%%-%W%%%%=%%%w%%h%E%%%%%%%%[%%Y%%t%%%%W%%%%%3%s%g%x%J%%p%|%*%8%%
%%%%%%%C%%%%%%%%%%%%;%%@%%%%%%%%%%%%%U%%%%%I%%.%a%[%\%%%`%%%^%g%(%%%8%%%%1%%%%%%%%C%%%%%f%%%%l%%%\%%s%%%5%;%/%%%%%%%%%%%%%?%%%5%~%O%]%%%E%9%%%9%%%%%%k%%^%"%g%o%%%%'%%%%%%%%2%t%%f%%%%k%%%%z%%%%%%k%%.%%%z%%%5%C%%%]%3%%%%%%`%%%I%;%~%%k%%%c%%%%%r%%U%s%t%%%5%G%%%%%/%:%%%5%C%%f%h%%f%%%%k%%%%%%%%%%%%%%%%;%%%w%5%;%%%\%%%%%#%%%%%%'%%%%%s%%y%W%%s%%%5%;%/%%%%,%%w%w%%%%%%%%k%%%9%{%%%}%?%3%%%
%C%%%w%5%C%%%]%3%%*%%%~%e%%%%%%3%%j%%%%%f%%e%2%%}%%%%+%%]%g%%%%]%s%t%%%%%%%W%%%]%a%%:%%%f%%%%k%%%=%C%%`%/%%b%%%%%%%E%%%%%%%h%%%N%%.%%%a%%l%%%%o%J%%%%0%%V%%%%%%%o%(%x%2%8%*%/%%;%%/%?%%5%%I%%%%%%%	%-%%W%%m%%%m%'%t%%%%=%%%%%%%u%b%%%%}%%%%%%%%i%%%%%%<%"%%O%%%%%t%/%%%%7%%P%h%%%F%%%r%/%%%M%I%~%%%%%%P%g%%%%%%%D%%%
%%'%%%O%T%%t%o%9%%%%%)%0%t%%%%`%%!%\%%%%%%g%h%%u%k%%%%%f%%%%%N%%%I%%%%$%%%%&%z%%6%I%%%%%6%1%%s%%%.%%.%~%%%%[%%%%0%%k%@%m%%%w%J%%m%%%%%%%%%%>%%t%0%%%%%%%%^%5%%%%%%%p%%.%%%%%%a%%%%K%%2%%%%%%U%%4%%%%B%%%%%%%o%%%%%I%%%%r%d%%%}%%%%4%W%%*%_% %J%%%%%%%%%%%%Q%b%m%h%P%W%^%7%%z%%i%%d%%%C%%%%d%%Z%%%%n%%%v%L%%~%%&%%%'%-%B%%.%%%t%K%b%%%K%%%$%%%%%%%e%%%%%Z%o%%h%%f%%L%%%3%%%W%%%K%D%_%%%%%%_%]%%%%%%%i%f%%g%J%%%%%%%%{%%%%	%%%%%%%%%X%%%%%%%%i%%%.%%4%%%%C%c%%%%	%h%%<%~%i%%%%%%%8%%%%%t%V%b%%%#%%$%~%%%%%%%2%%]%%%i%%%9%%%%b%%%%%%%6%%%%`%%'%X% %%'%p%%%%2%%!%G%%%M%2%[%%l%%A%%%%x%M%H%%%%%%%d%~%%%I%h%%9%j%9%%P%N%%%t%e%%F%9%%%%X%Y%#%%%-%%%I%%%.%%%%%%%%Z%{%%7%%%%%%F%&%%%g%%%%%%%%%%3%%%7%B%%%G%%%%%%%j%t%%X%%%%%%%%%%K%8%%8%U%{%%%%?%J%u%%M%%%%%E%%%$%%%%%%%%4%u%%%u%O%%Q%%%)%%J%i%%%}%%-%%U%%%%%%J%E%4%J%F%#%%b%R%%%%%%%[%%%%k%%%%%%%%%%5%H%%%3%.%%9%%>%%%<%%r%%R%|%o%%.%W%a%%U%%Z%%%%C%%'%%%n%%%u%k%%%C%%%j%%%%%f%%%%%%%%%%e%}%%]%%%5%%a%1%%%i%8%%2%%%%j%3%%,%%%%v%A%%%%%%%%%?%%]%%%%%%%j%_%q%1%%%%%%[%%%L%%%%%%%%%%%<%%%@%W%%z%%e%% %%%Y%N%%%%^%%%-%Z%%%%%2%%%%+%%	%%%0%(%o%-%%;%D%%w%%3%%4%%D%%m%S%I%%%%%%%"%%_%%%%h%N%
%Q%%%r%%j%%%z%T%q%#%6%%%%%I%*%s%/%+%r%%%W%9%%?%%%H%%%%9%4%%%%%%<%%%%%0%%$%d%8%%%1%%%%%%]%$%%%%%J%%%7%m%%%o%i%%p%&%J%j%%:%w%%%%%L%%%%T%%]%I%j%%%%%>%%i%%%%>%%(%%%r%&%@%%Q%%O%%,%%%%d%%%%%4%?%%%O%4%h%%%L%%%Q%%%%%
%%<%%%%%%%I%Y%%%#%%%V%|%%%%J%%%(%%%z%%K%=%%%%%%%%x%%%%%b%%G%%I%%%%&%%%e%8%?%%2%%%W%%%:%%%4%%%%%~%%S%%%%%r%%%%%%x%%2%B%0%%%%u%;%%%E%%%q%7%i%%%"%%7%%%%%%%%%%% %%(%%%%:%d%%Q%%>%!%%%%%o%	%%%%%%%%%%|%%-%L%%%%R%%%7%%%%6%%_%}%%:%%%%g%K%3%O%%P%%%%%%&%%%Y%%x%%	%%%$%;%%%%K%%%%O%%%%%m%%%%l%M%%S%%i%%w%%%]%%&%%%%%y%8%%,%%3%|%%%[%%%%%n%:%+%%%,%i%f%k%%%%%%O%%%m%%Z%%%%q%P%%%%%5%%%q%%%%% %%%I%%%1%i%%O%#%%%%%a%%%%%%%G%%u%Y%.%x%%<%r%%<%%.%%l%%o%%{%o%%4%/%+%%]%'%m%%%%%%*%%%q%%F%%%3%|%%%%%q%%"%,%q%|%%%%%v%%w%N%
%%%%h%%%%%(%%%%%%%o%%%?%%%'%%%%%%6%O%j%I%%%-%r%%.%)%3%%]%%%%%%%y%:%e%%%%%%%%%%o%k%N%%A%n%%%%%%c%Y%D%%O%%%%(%%%k%%%<%%%}%0%%%%%f%%%%%E%%%%f%$%>%%%%%%%%%%8%%"%z%q%%%U%v%%^%%%%%%"%%'%o%-%%i%%%%%y%0%K%%%>%%%i%>%%%%%%|%%A%9%%s%B%s%%%9%%X%w%%|%%%%%r%/%%%%%%%%S%%%#%|%M%%q%=%a%s%%%M%k%%%%u%%l%%%%%X%x%5%>%%K%w%%%p%%%%X%%%N%y%%'%Q%%+%%%"%%%b%%4%Y%%}%%%%&%s%%%%^%%P%%%%%u%%%%%%%S%%Z%i%%%%!%%%%%[%%"%%W%%%4%%%#%%V%%%%%%*%%y%%c%%%%%%%%%%%;%j%%%%%w%B%%G%%%%%z%%%%M%&%^%%z%%%%%%%L%<%%b%%%%%%%%%%{%K%%%%%!%X%%%%V%%%%%%%%%%<%%%%%%%y%%w%%8%w%%+%%%%j%-%%_%%%%%f%~%%%%%%=%L%%%%%%{%?%g%%%-%%%%|%%Q%%%;%%$%]%G%=%%%%%'%4%%%"%%%!%%7%i%V%%%%%%%%:%	%%%%%%]%%l%%%2%%%Q%]%%.%%m%%@%%%%% %+%.%X%/%9% %%s%E%%%F%%%%%%%%%%%}%%%%%%%<%%%|%,%%L%O%%%@%?%\%b%%\%I%%%%%%%e%%!%%%%%%%~%|%I%%{%1%%*%%X%%%%%%%%%%%s%%%%g%%%%%M%w%%%%%%%%%%%g%}%%%%%Y%%%J%%!%%%^%G%%%%}%l%%%%>%K%%%%N%%7%p%%Q%%%%%>%%%%%%%%F%%7%%%a%%v%%%%%%%s%,%f%%%%%%_%%%%%%%B%{%%%%%%%% %%i%7%f%%%%9%?%%%%.%F%%p%%%%%%M%%%X%>%=%o%b%t%%_%%%f%{%%%%%%%%o%a%%h%%%%%%d%%C% %%%`%%%X%%'%%%%w%@%B%%%%%%p%%%w%v%v%%%N%%
%%N%3%%=%{%x%%>%%%1%%i%%%%%%K%%%%r%1%%%%%%X%%%%>%.%%{%%u%%%%%%%%G%%B%%%%%%%%%#%%%%%%G%%I%`%%9%%%%v%%%%%W%%~%;%r%%%%%%O%r%0%b%%%%=%%J%%N%%%%%g%%%%%%%c%j%%h%H%%%#%%8%%%%%%%p%%m%v%r%l%]%%%%%%%%
%%%%%%T%@%%%%A%}%%%%@%%{%'%%X%%v%%%r%%%t%q%l%(%T%%%%%%'%=%%%l%%%B%%l%%%%(%o%%%%%%%%%#%.%p%%%%%%%%%L%%E%%%A%%%H%=%%p%%D%<%%a%J%%%%Z%%|%%%'%%%%%4%%%%c%%%%%%~%%%%%%%%%|%%7%%%I%%%D%%y%	%%%%%%%%%%%#%%%c%%%;%%%%%%I%$%%G%%I%%%%%%q%%%%^%k%6%{%q%%%%%w%%%%%%%%%%&%?%-%%W%%p%%v%%%b%%%%%%%%%%%}%%%%%3%%9%?%_%%Q%%%%w%M%%s%%%}%k%j%%%>%%b%%C%%Q%%F%%% %#%%*%n%A%/%	%%l%%%%%%?%=%%%%?%}%E%%%%%&%%%%d%%l%%%%%%3%%%%k%%%%3%%%%%v%%]%%%%/%t%%%%%:%;%%%%%.%\%v%%%%3%{%1%<%f%"%%%%%%%m%%%%=%%%%Y%r%%%%%% %%%%%%%%%9%%M%%%%%3%<%y%w%%%[%%?%@%&%p%%%%%7%h%r%%5%%%v%/%.%b%/%@%%%}%c%p%c% %%%%!%T%@%%%%"%%%%4%%%%g%%%!%6%%{%|%%]%%{%%%%Y%%%%%%%%]%d%r%(%%$%%n%%9%%%'%%%l%
%%C%b%%n%%%%%%%t%O%x%%%%%i%%%l%<%%#%>%%%%%%%%%8%%%V%%`%%@%k%O%u%P%1%(%%<%M%%%%%%#%U%%%%%&%%%B%%%%
%%J%A%}%G%%%%%%z%A%%c%\%%%B%%%[%b%%/%%%%%3%6%%%h%A%%%e%%%%%%i%%6%%%%6%%%%%%%%%f%l%L%%4%:%%%%%%%%%%%%6%%%%9%%%7%o%<%s%%Q%%%6%%8%;%%%P%%%g%%%h%%
%?%m%-%%g%%L%8%1%%i%%Y%h%%%%%4%-%%M%I%%%%%N%%%(%v%%B%g%%%%%%8%%%%%]%%%%%%%%%h%%%%%%%%%%%J%,%u%%Z%l%%5%%%%%-%%o%%0%%%%%%0%d%"%%%%%%o%K%%%%%4%%%%%9%l%n%%?%%%%%G%h%s%%%U%%%%o%%%%5%%%%%{%%%%%% %A%%%%%%7%%"%%%%d%%d%%Q%%2%V%%%%%'%%%-%N%%%q%%%q%z%O%%`%%%b%%>%%g%U%%j%%%%%%4%%%%C%%`%h%%%%y%%T%%%%%%%%%W%%-%%%J%%%%%h%%&%?%%!%%%%%!%%V%z%t% %%^%%%%%%'%%3%6%%d%3%L%.%%%2%L%%%%%%i%%%%%&%%%%%%%%%g%%%u%3%l%x%%%%% %Q%}%.%@%m%+%%%h%l%%%h%r%K%%%`%%%F%%b%%,%F%%%%%%5%1%%%%%%
%l%(%%a%0%n%%)%%?%4%^%%%%%%%7%f%%%w%%%%8%k%%,%C%Y%j%%\%%L%%S%%%-%%%.%%E%%%%%p%%%p%&%%%%%%U%%%%%q%l%%%%u%%%r%D%%%D%%5%%%c%e%O%%h%%C%%+%%%%J%x%m%%:%1%g%"%%%%h%	%%t%%%%F%o%X%%%
%%%%%%"%p%~%V%%%%r%?%#%%%%%%O%J%c%%M%%%%%=%F%n%% %%%%%%%R%%%*%@%%%^%%%%8%@%%% %%c%I%%%h%i%%1%%%%%%"%_%%%%%p%j%
%%%%j%)%%R%%%%%%v%%!%M%@%c%%}%%%f%z%g%%z%%%R%%c%%8%%%%j%x%%(%%6%L%%O%% %
%Q%%@%%%*%%E%%%O%%%&%% %<%%% %/%<%%%%%i%1%%Y%P%%%%W%%t%
%%%%z%%%Y%%Q%%%%n%%c%+%%F%7%%0%%%n%-%%%Z%Y%"%%%
%%2%'%%%q%S%t%%n%%m%%%%<%%%N%%%%A%%%%%%%%%*%(%`%%o%%H%%%%%#%%%%%%%%%r%%%A%7%%%%%%%%W%q%%%%%%%%%%%%%5%t%%m%%q%%%_%%h%}%Z%%%%A%4%|%%@%v%%%%g%%%I%^%%G%{%%%%A%k%3%Z%%F%%L%e%L%)%%%%%Y%%%C%%%%%F%%%$%%%%e%q%%P%:%Z%%%%%y%%a%~%%%j%
%%%%%%%M%%%%a%%K%3%J%%-%%%%%%%%%@%7%9%%%%V%%%%%%>%%f%%%3%%%%5%%%%%4%%%>%%%X%X%)%%%}%%%%%%Z%%%%%%%7%%F%%:%3%%%%%%5%%%%%% %%a%%5%%G%%%%%%O%%%8%%2%%%%%%%%w%%%%*%%7%h%,%&%!%A%%g%s%n%%%+%P%t%%%S%%%`%%C%%%%%%%%?%a%%V%%%,%%%%=%-%%%R%%@%%%%%W%%%%b%%%%e%%%%%e%%%%%2%%%%%	%%%%x%%%(%%%%%%%%%%K%%%8%T%A%%9%Z%%%%h%r%\%%S%F%%%%%\%4%F%%%k%/%M%%%&%7%r%%%n%%%%	%<%%%x%%*%r%b%%%%%j%%%:%%%t%%%X%v%%u%%%%%%%%V%%%%%e%$%%%%x%%4%%%%/%%%%%%%l%%x%%%%m%F%%%%F%%%%k%%%%?%%%%%I%3%%%C%%B%%%%%`%%5%;%%%%%Q%%%%G%1%Q%%%%%y%Y%%%%	%% %4%%y%:%l%J%>%e%`%%%q%%u%%9%%R%/%%%%%%%F%%%A%%%i%%!%%%%%l%$%4%%V%%A%%%\%%%S%%e%%%@%1%T%[%%Q%-%d%%%%%%R%%U%p%%5%N%%j%%@%m%Z%j%e%%%%%-%&%v%%L%%%%%%%%%8%C%%%%%@%%~%a%%%%A%%%p%%9%)%%%%%1%%%%%v%%%%%C% %%%5%=%%%J%%J%R%Y%%%J%Z% %% %%&%5%%%Z%%%%G%,%V%}%G%%%
%%N%%%A%0%%%%%%%%	%%%%%>%H%%5%%G%%%%N%%7%P%%%%%%%~%%%%%%%%D%%%%%)%%%F%%%%e%%w%_%%%'%q%%%%%%m%%(%5%%%%%%;%%q%%%%%%%%|%%%%%i%%%z%i%%4%t%F%%%%c%%%%8%(%%%%%%
%%)%%%%8%\%4%F%'%%?%%0%<%%%k%%%U%%%-%%q%%%%%V%%%h%%%@%%%%%%%%%% %%%X%S%%%%z%%%%%%}%%%-%%%~%%%9%'%o%e%%%%%N%%%S%%%%F%q%+%O%j%?%%%%V%~%,%.%%J%)%%%z%N%%%%%?%%%%w%%%<%~% %?%%%`%C%O%%g%%%*%%T%%0%%%%%%T%L%%%x%3%1%%%%f%%%%%%%0%T%%8%%%G%`%j%%0%%%j%%%#%%V%%%%%4%%%%%%(%%%u%#%w%)%%!%I%#%%|%%|%E%%%l%%%%%%%/%
%%%%%%2%%P%%>%%%'%%%%%%%%A%%6%2%%%%%|%M%~%z%%%%E%o%%B%%%n%%u%l%&%%%-%a%%%J%n%l%%%%%%U%%%%f%L%%|%1%%5%R%i%R%%%%)%L%%l%%%A%%<%H%~%%1%=%%$%S%%%%%%%%%	%%w%b%%%%%%%%J%J%%%}%%%%%%%K%%%%%%t%%Y%1%%%D%%%<%,%R%%%%%#%%i%%k%C%%%I%_%{%K%9%%e%C%&%%%S%%%% %%%+%%A%%+%%3%q%%.%%>%-%%%%D%i%%%%w%2%8%%0%%1%o%_%% %%^%@%%O%%%(%}%%%x%#%%%%O%%%%%%%%%%%%<%%^%%\%3%?%(%%%%%:%%F%%!%%%%%S%%%%H%8%%%%S%%h%%%%%%%p%>%I%%c%c%%v%r%h%%%3%%&%%%B% %%%%0%%%*%%%Y%%a%&%]%P%I%%[%%%V%j%%%{%%e%p%%%M%%%~%%%=%%B%%%%Q%k%V%%%%%%%%%%l%%%%%%F%y%%2%%%?%%`%%O%%%%Q%%b%%%%% %e%*%%%i%_% %s%&%}%#%O%%%%%%t%0%%%j%[% %%?%%%m%%%`%%%%.%%%% %%%%%%4%%%%-%%%'%%%%=%%	%%%;%%>%%.%%%%%`%%%%%%%T%R%%%%`%3%%%%%%c%%%%w% %%%%%!%%%%%%%)%%Q%%C%J%%*%%D%%%h%%%%%%h%%~%v%%%%%%%R%%f%%L%/%m%%>%%F%w% %F%:%x%%<%%%%%%!%%%.%g%%%-%%%%K%%P%%E%f%%%%%%%%Z%=%W%$%%%%x%j%%V%%%%%%D%3%t%%%%%n%%w%
%7%%%%}%%%%%G%%%%;%%p%%~%|%h%%%%%~%q%%'%5%)%^%s%%Z%S%%I%%7%	%%%%E%%%=%^%% %%%%%%b%%S%%%%%'%%2%%%%%%%%W%%%%%%%%%%%%%y%%%O%`%%%#%V%%c%%b%U%z%P%%%%%%u%%%%q%%%%%O%%T%%O%?%%%%%%%%
%%~%%%%%%{%%%$%%x%M%5%%%,%7%%%[%%%m%	%%%%%%%%`%I%%m%%2%R%%s%V%`%%j%%u%Y%%n%-%%2%%}%%%D%%%%%%w%%%X%<%1%%;%%%%&%9%%%%g%%%%%%%g%5%%'%_%H%%%%%E%%>%g%%%%%%%z%-%%2%"%%|%+%~%%r%%%%%%u%%%,%e%{%5%q%%,%.%%%V%%i%%%%%b%k%%}%1%%	%%%%l%%&%%%K%%U%K%%%%%%x%%%%@%*%%%%%%%%%f%i%%k%i%%%%%!%%=%%%%%%[%%9%y%"%%%%%,%w%%j%%%%,%;%%,%%%%k%!%%.%%%~%%%%%p%!%%e%%%%%%%%%%%Z%N%e%%%%%%%%%%%%%y%T%#%%%%%j%2%%%%&%%%%X%%%%?%	%[%%j%%%%%%%%5%e%i%M%k%i%U%%l%%%p%t%%%?%
%%%x%%Y%F%]%5%%%,%9%?%%%%P%%%i%%=%%%%%%%%%%%%%g%9%%%%%%H%/%%=%=%%%%%%%f%&%%Y%%o%#%<%%l%%O%%%Z%M%%%%%@%[%% %%%%s%C%%%W%H%%!%j%%%e%%%%%%%%v%T%k%t%%V%%%%%%q%S%>%%%u%h%+%%P%]%n%%,%%%%%u%)%%S%%%C%Z%L%%O%%t%%%%J%%%%q%%%%%%s%z%%}%Z%%U%%[%%E%%%/%%%%%%%+%%T%%{%%%%%%%N%%%;%)%d%%%%e%E%H%%%y%%%R%%%!%W%G%%%%P%@%%Y%%*%%P%%%%%%o%b%f%%:%%%%%(%'%%%%r%%i%%%,%d%%%%%%%%X%J%%%[%%E%%%%3%	%%%%y%L%%c%%%q%%p%%%%%%P%%%%%G%f%%%%%%[%%%(%%%R%A%(%%8%4%=%y%^%%%0%=%%%D%f%\%%w%Z%%8%%%%S%%%o%j%3%%t%%^%C%O%3%%%'%%%%%%B%%t%%%%%%1%%%%%3%%2%%%%%5%%%%%%N%`%%%`%<%i%{%%P%%%%%%S%%%%%%?%%{%%y%Q%%%	%%%%#%!%%%%%%.%%_%%K%%%%%%h%7%d%%:%R%%f%S%6%%1%%%%[%~%%b%%%%\%%%W%%_%%%%%[%%%%%%%)%%T%z%{%%% %K%%%%Y%7%e%9%%l%%k%%%%*%%1%;%%%4%%%%%M%S%%%=%6%%z%%%%o%%S%%%d%%%J%%P%%%E%-%%%n%%%%%q%%%%D%f%%>%%%%|%%%%%%%%9%%%%l%%%%%y%0%%F%'%N%5%%.%%z%%t%%%%%%%^%%w%}%%{%%%%%%k%%%%%%%%%%%%%%9%W%%%%%%%%6%%%%%
%%%%%%S%%%%%%%%%a%[%%^%U%%%6%%%%%:%%%%%%%%%%%#%%3%%g%%k%%%%%%_%t%?%%%%G%%%R%%/%%%%%%%^%%%%{%E%{%v%;%%%%%%%%%%u%%%%%K%G%:%%J%i%B%%6%%%i%/%?%%D%G%%Q%%%X%%_%%Q%%:%g%%F%'%%%%%>%%%>%Q%T%%%%%J%%%J%%%%`%%%%%%%%y%u%%%%*%%%K%%%%O%%r%)%w%%%%}%O%b%%%%%.%%%%u%%%%%%	%%t%B%%F%%%9%%%[%B%%F%r%%W%	%u%%%|%%%;%:%%c%x%D%%%%%%%3%|%%t%%%%%"%%T%%%%%w%%%G%%y%L%%%W%%%A%%d%%%k%%%Q%%N%)%%%J%%%%O%%%n%%%%%%%%"%%L%%%%H%%-%%,%_%%%%%+%%g%%%%%3%<%%Q%8%>%%%p%%%r%%u%%%!%%%r%^%[%%8%%%%1%%%%%^%1%^%%%%%%%K%%%%%%%%%f%%%%k%v%^%"%;%%+%%%%s%%%Y%y%%%Q%k%%%%%%%r%%Q%s%v%%%5%g%%%%D%%%%=%%O%t%=%%I%5%C%%e%%f%%%5%C%%%]%3%%
%%:%%U%%%]%%%%%%k%%%%%f%%%%2%%#%%%?%%v%%%%%%%%5%G%%%h%%%%%%k%%%9%z%%^%t%%%k%%.%%%f%%%5%C%%%]%3%%%%Z%!%%{%%y%%%%v%%3%%j%v%%%%f%g%5%;%G%%/%%%%O%%%]%a%%:%%%f%%%%k%v%^%&%;%%Y%2%%%
%g%%%w%5%g%%%]%s%%2%9%%~%f%%%%%%3%%j%%%%%f%%U%0%%%%%%+%%]%g%%%%]%3%t%%%%d%%%%y%w%W%8%%%%%9%%%%%%W%%E%%%%%%%%u%%]%%%5%C%%%}%{%%%%^%(%%%%H%%%B%%*%%%%%%%,%%%%]%%%%%%%%%#%%%"%%%a%%%%%%=%%Y%%P%%d%p%T%^%&%w%|%_%~%%k%%%%%8%%%%%Z%b%%D%%%%%N%%P%Y%m%{%*%%-%z%%%%%^%%Q%%\%I%%%%}%%%Z%K%%=%y%D%x%%t%o%K%%^%%%e%o%%%%>%%% %%%^%%%%%%%}%Q%9%s%%%2%%=%%%%%%%%j%O%t%5%%%.%%%r%%y%3%%S%`%%X%;%o%%%C%%%%%%%%%2%%%%]%3%t%%%5%C%%%X%%%%O%%I%&%G%?%M%%%m%%:%%%%m%b%%%%}%]%P%]%%%%%%%g%%a%%%%%%q%%%8%%"%%%%%#%;%%~%}%%%`%%%{%%%%%%j%%%'%9%%%%J%]%@%%'%,%Y%%^%%j%%%e%%%%%%%%i%d%%%%%=%%+%o%%%%Y%%j%%%1%%%%2%%%x%%%h%%d%U%% %%l%i%%/%G%%I%G%+%h%%%%%%%%%n%%%~%%6%%%%%~%%%%%% %%%%6%&%%%%%%M%%%O%Z%%V%]%%%%%%%'%%%)%I%2%%%%;%+%%%%e%+%%%T%%%%%%n%%g%%%%%%%%%d%%~%-%%%%%%%3%%%%%:%%%6%%Q%i%K%R%%6%%%%%o%?%%f%%1%%%%}%%_%{%S%A%%&%%]%6%h%%%]%%%*%%q%%%$%y%%%%5%%5%%u%q%%%%%%%%%.%G%%I%%%a%%=%%%e%%%
%%%%)%s%h%e%?%%%%%%1%%m%%%%%^%O%% %%O%%,%%%e%%B%%(%C%%d%%
%%<%%6%%#%%%%~%%%%%-%%%%%%%*%r%%r%t%%%<%%%%%%r%%%%%%F% %%[%P%%%>%%]%%%%[%%[%%%%%o%`%?%%%%%%L%^%%%%5%`%%%%U%-%%g%%q%o%%<%%%%;%1%%%y%%%%%%/%!%L%?%v%+%%%%p%%q%%%%]%/%~%%%j%%%g%Y%%%\%%I%l%%%W%I%%%i%%%?%%%%%%%S%%%%%)%%*%[%%%%i%%S%%%%h%%%F%p%%%>%e%%Y%%#%%%-%%%%%%%9%%7%%+%k%%%%g%\%.%r%%}%|%%y%l%%%%%%%]%%%%%%%%;%?%%%O%%%%%%%%%%%%m%%%]%3%t%%%5%C%%%%%:%%_%%%%%$%%k%%%b%F%U%%p%T%e%%%Q%%f%$%Y%:%%{%%%%!%%g%%% %m%%0%%%9%?%%%%%%%b%%m%3%l%%%%%%%%%%%?%'%%%%y%%%%%.%%%%%A%%u%%%v%?%%%&%z%[%%%m%%%%d%B%%%W%%%8%%a%P%%Z%2%v%%:%%&%f%%i%%%2%%%%~%?%H%%%U%E%j%%%%?%%%%%%9%%F%%,%^%%%%F%l%%%%%%T%%^%V%%X%%%%r%2%%%%%~%%S%s%h%.%%%]%%y%%#%%%a%%I%%p%%%c%8%%%%%%%H%%%%%%*%%o%%%#%%%%%L%%%R%u%%%#%8%%%h%]%%%"%%%%%%p%5%|%>%%4%%1%}%b%Q%%%%L%%*%%%%%Y%%%1%%%8%%%i%~%4%%%h%%(%%%d%%%%e%%}%%%y%%%#%"%%%%%%%G%%%%%%3% %%%+%Q%%%%Z%%z%%%%E%3%%%%%M%s%C%%%%%%$%%1%M%J%%%p%~%%e%%}%%%%t%%%i%%a%%c%%%%%K%c%%%`%%a%%%%%e%%`%&%%2%%v%P%{%%(%8%%n%%\%%E%:%o%%%Q%%-%%%%%%A%t%Q%:%6%%u%%*%%$%|%B%%[%	%%%%%%%%c%%K%%%%%Z%%%#%%%%%o%(%]%%m%%%%%u%l%%R%%%f%%&%%<%%%u%{%M%%%%6%%X%%%%I%v%%%%%%%E%%4%A%'%%%%%%%%8%%j%%%%%%%%M%%%%;%%p%"%Y%%g%%%q%%%3%%%%t%V%%	%Y%%%%%M%%g%%%t%%%%%%#%%%%%%%o%k%%%%Z%%1%i%%%I%%%E%c%% %%F%J%%y%%h%%W%%s%%%%%%\%%L%y%%:%y% %]%%%%%%%%&%i%^%V%%%N%%^%%/%g%{%U%(%f%%%%%%g%%D%#%%%%%E%X%%%l%G%#%%%0%%%%%A%1%%%%%%Q%`%g%?%%%k%%B%%%%%N%%o%s%%%%m%%%%R%%Z%%%]%R%f%%%%m%%[%o%%%t%%%%)%%%%C%%b%%%%%%%%?%W%%K%%%%$%%%%%Q%%=%%l%%y%%U%%`%%	%%;%%%%%%%%%5%%H%|%%u%%W%%%#%|%%q%%E%%%%%%%%%%[%%%5%E%4%O%%Z%^%%<%%%%%`%%4%G%}%x%]%%|%%%%'%%%2%%r%%%%%(%0%r%%%%%%%%Q%M%%^%>%%%%%%%;%%8%%G%%%%%z%%%%_%%%r%%Y%%%%N%%?%%%%j%|%\%%%%5%%%%u%%%%%%%O%%%W%%%E%j%%%%i%%%%%%;%L%%%%%%8%%%%%%%%%Y%%%%%%%%p%=%%C%%%%)%%>%D%%%%_%i%%K%G%%%4%%%m%%U%(%%%%z%%%%i%%%%)%+%v%%,%%<%%%%%%~%]%%%%%%%%L%%%%P%%]%%w%7%%x%~%%j%%%%%.%%
%%%%|%%	%h%C%%j%-%%%J%%%%%%%/%y%"%%%%e%Y%%
%%%p%%z%W%p%/%k%%Z%%%$%%y%a%%%%	%5%<%%{%%%s%%6%%%~%%8%
%[%%e%%%>%%%%w%p%I%%%z%%}%K%%O%h%N%%E%v%%C%R%o%%%n%'%!%%1%%%u%%R%%%>%%%%%%e%e% %%%%^%]%@%%%%%%%%A%V%\%%^%r%@%%%%%%%%O%Y%C%+%p%M%%%%%*%%%1%%)%y%%>%%X%%%%%%%~%%%
%%%%I%%q%%%%%C%:%P%%%%I%%%%0%%b%%U%%%n%%	%,%k%%c%%%%g%%3%%%%%%]%%%%x%:%%z%%%%%%%3%%%B%%?%%%%%%%%%w%%%y%%g%%5%%%%%%%;%%^%`%%%%%9%%%1%%%%%%Z%0%%%.%%!%%%p%q%%%l%t%%%%%%?% %%%%\%h%%f%%%%%%%%%%%%%%r%%%%%%%%%%]%%%{%%7%-%%b%%%%%%y%%1%'%%%%%%o%%%#%%%%%!%%%#%%%%%%%_%N%%%%%%%%F%%;% %%%v%%G%\%8%x%%;%;%%%m%%G%%%%%%%=%<%`%%O%%%%4%%%%%%%%_%O%%%%%%%C%,%~%r%p%%%%=%%:%%%%%t%	%%%%!%z%%%%w%%p%%%s%%E%%%#%%$%%%%%a%{%%%%%%+%%%%9%%%`%t%%'%9%%q%%%%1%%2%%N%%%%e%%%%%%%c%j%%h%H%%%#%%8%%%%%%%p%%m%v%r%l%]%%%%%%%%
%%%%%%T%@%%%%A%}%%%%@%%{%'%%X%%v%%%r%%%t%q%l%(%T%%%%%%'%=%%%l%%%B%&%l%%%%"%o%%%%%%%%%#%.%p%%%%i%/%%%.%L%'%i%%%%%`%+%%j%S%%%R%%%%%%%%1%%%%M%%%@%%e% %n%% %%%+% %%h%%%%%%%x%%%!%%/%%4%%%?%%%% %p%%t%2%;%:%%%9%f%I%%%R%%;%$%i%%%a%%%%%%>%%%{%G%p%%%%%p%%%i%%R%%%%$%y%N%%%g%%%%%%%%%%P%%%%[%%|%%%%%%%^%%%%/%%%%Y%%%|%%%%%_%%S%%t%%-%%%%%%-%]%\%k%%%s%
%%o%G%%L%\%O%/%%%%%f%%%%%%%%9%%%%%%
%%%%M%(%_%q%%\%%%%8%%%%k%%G%%%%=%g%%%%%% %%Z%%%^%%%!%%;%u%v%H%%%?%s%\%%z%%5%%>% % % %%m%k%B%S%x%%]%N%%%%0%%%%%%% %%%%%%%%%%%%%%	%W%M%%%%%%-% %%%2%%%%%%*%5%X%%|%D%%Z%%%=%%f%%%L%c%%%%(%%F%?%
%%%%%%%%h%%%%%%%%%%B%%%L%%r%%%%%G%p%%o%d%%%%g%%%d%/%%e%>%%f%
%9%%%%]%%W%%%A%%%%\%%%\%L%%f%%[%x%i%%l%%%%%%%T%s%%1%%H%	%%Q%%l%%H%%%%%E%%%%%t%%%%%%%%(%S%%A%Z%%%%%_%Y% %%%X% % %%q%m%k%B%T%%%%% %~%!%G% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%%%%=%k%%A% %%%'%M%%%%%%6%M%%%%%%%'%i%%%Z%-%%%"%%Z%E%%%%%P%D%%%%%Y%W%%W%%%M%%%%%%]%%%q%r%%%%%%A%%M%%%%%%;%%%%r%%]%%%%%%%%%{%G%'%v%%%n%%%W%%R%%%X%%%%%%t%%s%{%%%K%/%^%%%%%s%%%%%%%=%0%%%\%Y%%.%%%%[%%%n%b%k%$%K%%%%%%%%r%%h%%-%l%%z%%}%%a%c%%%%%%%L%}%%v%q%%r%v%%v%%%%%l%%O%d%%g%%%%|%%%%G%z%%u%%%x%x%%W%%V%%%%N%O%%%'%%%%%%%%%+%%%}%o%%c%%%%R%%u%'%%s%g%%%%%R%%%%%%%g%%%%r%"%<%%%%o%%9%T%%M%%Z%%F%%%%%%%%'%%J%%C%%%3%5%%%%%{%%%%%&%w%%D%%F%%%/%%'%%%W%%6%%s%%%%%%%%g%%%%%D%2%%%%%%%%{%%n%%?%%'%+%%%%%%%%%%%x%%%%t%&%% %Q%j%W%%%%%X%<%%:%%%,%%%%%?%%%%%%K%v%$%W%%h%%m%%%7%%%t%%%%9%n%%v%%%%%O%F%%%%W%%%k%%%%%=%%c%%%`%y%O%,%%%%%%%%\%>%%N%%%~%f%l%%S%f%%%%%T%7%%%%%%(%%%%%%%%x%%X%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%|%%%8%%%'%L%%% % %
%%m%k%B%T%%%%% %%W%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%%%%%%%8%%F%S%H%%I%!%)%$%%%%%%F%R%H%n%%%w%%%%H%%Y%%%%x%3%%%%%%%%% %%%%s%%%a%%%a%%%a%%%a%x%I%%%%%%%%%%%%%'%U%%{%%%%%%%%o%%%_%%%%%%%g%%W%9%%%%%%%%%%%%%%%%%%o%'%%%G%W%%{%>%~%%%%%J%%%%l%%%%%%%o%%%%%%%%%%%%%%%%)%*%/%%%%%%N%%\%%%%%%o%%%v%%[%i%Z%_%%%a%%J%%%%/%:%%%%%%%6%%O%%-%%%%%9%2%b%?%%T%%%%%%%l%%%k%%%%?%%%%%%%%%%_%2%%%%%%%1%%B%%%%%s%%%%Y%%%5%%>%%:%%>% %%c%=%1%%%%%%%O%%w%%%%y%%^%%%-% %%%%,%%%X%%%z% %%%%%u%%%s%M%%#%%%U%]%%>%H%_%%%%y%%Y%%%v%%!%%%%%%_%m%%i%%%R%u%%%s%%%]%%X%%m%%%_%g%%)%Y%Y%%)%%%m%%]%%y%,%%%%m%% %z%%1%%%%a%%%a%%%a%x%E%%%%%G%%%%%%o%/%%Y%%%%%\%%k%%6%%%x%%%%%j%%%%g%H%%%%%%%%%%%%%%%%|%%y%%%u%%%.%%%%%%%%%\%%%%a%%%%%M%&%%w%%%%%%k%%#%%%%%$%?%%]%%%M%%o%%%\%%%%%,%%/%%%%%%%%%%Q%%@%%%~%6%%s%?%)%}%%%,%% %%l%%%%%%%%g%X% %#%%v%%%Q%%%%%%g%%%%%%B%%%%%%%%%^%%%u%%%%%%%%u%h%%%%m%?%%}%{%]%%%.%~%%}%%v%_%%%J%;%%x%%o%%g%J%%%%Y%]%%%%%%@%%%%.%%%)%%%o%q%%C%%%%%?%}%%>%@%%%X%%%%%%%'%-%% %%%%%(%%W%%?%%%%%%%%%%%%%%%%%%%%%	%%%%%v%%%%%%%%O%%%%%R%%%%%%%v%%[%K%?%[%A%}%%?%-%%w%%%%%%m%%%%%}%<%G%%c%%K%%%%1%}%%%%u%%%x%%L%z%%%%%U%%%0%%%0%%%P%c%[%%%%<%>%%g%\%=%%%%c%%%%}%%%M%%%%%%%%%%g%g%g%%%%%%	%%%%%%%%%-%B%^%%%k%_%g%?%%%%%F%?%%%%% %%%%%v%0%|%|%%%%%%%=%%%H%%P%%%%g%%s%%%%/%%h%%%%%I%%%t%%%~%%%{%%%%%n%^%%}%%%%Z%%%%%y%D%%%%%%%%%5%%%%%%X%%%%%W%v%%%%%O%%%)%%"%%%c%0%%%%v%Y%%%%%%%%%Z%%%|%~%%%_%%%/%%%,%%%%p%\%%%%%y%%%%Z%%/%%%%;%/%x%%%%%%s%%%_%%%%9%?%%%%P%%%%5%%%\%%[%%%y%|%%%%%%%%%%8%%%%%%%g% %%%%%%%L%{%%?%%%0%%%0%%%%_%%k%3%%%%%>%%%%%%%%%%%%%z%%%%%%%_%%%%%%%%\%S%%%%|%<%%)%%b%|%%%%%%7%%%a%%%a%%%a%x%n%.%%%t%%%%a%%%?%l%%%^%C%%%%%v%k%%%%%#%%%%%~%e%%%%)%%%3%<%3%^%%%%%%%%k%%%d%l%%c%%%&%%j%K%+%%%%o%%"%e%%%<%.%%%%`%%%%^%(%3%z%%%%%%u%
%%%%l%%+%6%%%%v%%%%<%%%%%%%%%%k%7%]%%/%l%%c%%[%`%%O%%%%%n%}%%%%%%%%%%%G%%%%%%%%%%z%t%%%%^%v%%%2%)%%?%;%W%m%%r%%5%%%%o%%c%%%%%%I%z%%?%%%%%%O%%%z%x%%%{%%&%%%!%%%e%%z%.%%%%%%%%%%%%"%%%%%%%%%%%1%%%%%%%%G%g%%%%{%+%%%%%%%%%l%%w%<%%%=%}%G%%%%%F%%%%^%%)%%%%%%%z%I%%p%%G%%%%%%%K%% %%%%%{%%{%%%%e%%%%%%G%%%%1%2%%%%%%%q%%%%i%u%m%f%%%%>%%.%%%%%}%%%%%%%%~%%a%%?%%%0%%%0%%%%[%u%%%%+%%7%%S%v%q%%%%%%%%%y%%%%
%%%?%%%%%%}%%%%%%%X%%%w%%%%%%v%%?%%%%%%%%D%%%%%%Z%%%%-%q%/%%?%%%%=%%%<%%%%~%%%%%#%%%%%%%%%%>%%%%F%k%%%%"%q%%%z%%%r%%%Q%%o%	%9%%%r%%,%%%%%%n%%Y%[%;%%%%o%%:%%)%%@%%%-%`%%%-%%7%%%(%{%%%%%%%S%%%%%%%@%%%%%%%%K%%%9%%%%%%%%%%%%>%%:%%n%%3%%%%
%_%[%%_%*%%%m%t%%c%m%%%C%>%%q%%%S%%%%L%%%%%%<%%?%%%<%n%%%%%n%!%%%>%=%%%%<%%%6%%%;%%%%%%s%%%%%%a%%%a%%%a%%%{%%x%%%%\%%%%%%%%p%%x%%%?%0%%%%%#%%5%%%%%z%%%%%%%c%%]%%%%%x%%^%%%l%%%%%%%%%(%%%f%%%%:%~%%%%%%%%^%%l%%i%%%n%%5%%9%%%%%%W%%%~%%\%;%%%?%v%%n%%%%%%%%6%e%%r%%%%%%%U%b%S%~%v%%%%%^%%%U%%O%7%O%(%%|%;%+%%S%%%G%%%4%|%?%%f%%%%%%%%*%?%%r%%%%W%~%%2%%o%%N%%%%%%%%%S%%9%%%~%d%%a%%%%%%%%%%%%m%%H%%6%%%m%%X%%[%%%J%%%%%~%%s%.%%%%%y%%%%%m%%4%%%O%%%%%|%B%%%%d%%%%%%/%%%%%%%%b%5%%%%%%y%%%%%U%%?%%%0%%%0%%%0%%%0%%%0%%%0%%%0%%.%%P%%%~%%%%%*%%%1%@%G%\%%%%%%K%%%%%%r%K%X%%%%s%2%%%%(%%%%%%%J%%%%%%8%%%%'%>%%%X%@%%%%%%Q%%%Q%%%b%%%%q%%%%%w%x%%%%b%%)%%%%%%_%%K%|%%%%v%%% %%%1%%%%M%%6%%k%%e%%e%-%2%%%%%5%%%9%%%%?%K%^%%E%%%~%%9%%%%Q%%%%Y%%%F%%8%%%%%%N%?%%~%;%:%=%J%<%%%%%%%-%%t% %%%%%y%N%A%%%%%g%%%C%%%	%\%%%N%%%X%%K%%%s%)%'%%^%K%%g%\%~%%%2%}%%6%%}%%%%%%%)%%%%n%]%O%%%r%%%^%%%%%j%%~%%"%%%{%%p%%%%%2%9%w%%6%%%%/%%.%%%z%-%v%%:%%+%%%%%%%M%{%%W%%%%%%J%Y%%%Z%%%%%%%`%%%%%%%%%l%9%%%%%%%%%%%%%%%#%O%%U%z%+%%%U%%?%;%%%%%s%%%%d%%~%%v%%%N%%%%D%%%7%*%.%Y%%%%+%v%:%%y%e%;%%%8%%}%%~%%%%|%%%%+%%%%%N%%9%%%%%%}%%{%B%%%#%t%%%%%%x%%%%%%s%%X%%%k%%%S%%%V%%%%/%%%%u%J%=%o%%%G%%%%<%%%%L%'%%%%%L%%%:%%%D%]%%6%%j%%f%%%%g%L%%%%z%%/%%+%%%[%{%%%%%%r%%%C%%M%%Y%%q%%~%%%[%%%{%%y%%%%%%%y%%	%c%%%z%A%%%%%%%%%;%%%w%%%%%%%9%%%%z%%s%z%W%%%%H%%%%%%V%%a%x%3%% %%%% %%%%%% % %%%m%k%B%T%%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%%%%%%%)%%%%%%q% %%%%8%%%%D%%%^%%%>%%%g%I%@%%%%X%%j%j%g%%i%%%%%%%%%%`%0%%%%%%`%0%%%%%%%?%%%%%%%%%%|%%:%%%%%s%%% %e%%%%%Q%%%%%3%|%%%%%%%O%%|%%:%%2%|%%%%%%.%%}%%%;%%%7%e%%%%G%F%%%%%%%O%%%%6%%%%%_%%Q%%v%%%%%%%%%]%T%%%%%]%%%^%%%%g%%%{%>%p%j%%%z%%%%%k%%u%%%o%{%%%%y%%%%%y%e%%%%%?%%%%{%%-%%%%%%%%x%%%%/%%D%:%%%%3%D%%%&%%%%%%e%%^%H%%%%y%%%i%#%/%O%G%%%z%%%%%%%%%_%%%~%%
%:%%s%M%e%%%#%M%%%3%Y%%#%=%%2%%%%Q%%%%%%%%%%%%%[%\%s%=%E%%%%8%%}%E%>%%G%%%%%T%%%%%%%%%%T%%%g%-%%%}%%%%%%%%%V%f%%%%%%%%%%%o%%S%V%w%%%z%V%}%%.%%%/%%>%%~%%<%V%r%v%%@%>%%!%?%%%U%%%%%%%%%%%1%%%%%%<%%#%%%%%%%%}%%%%%%=%%F%[% %%%%~%%%%Q%%%B%%%N%%.%%%.%+%%%%^%e%%d%%%%%L%o%+%[%\%%-%%%%k%%%%%d%%W%%%%%%(%}%%%%%6%%q%%%$%%#%%?%z%%6%%%B%%%%i%%%%%%?%%L%%%%%7%%!%%3%%O%_%Q%}%%%%u%%%%o%%%%%%%%[%%=%%%%t%k%%%%%%M%%%%%%!%'%}%/%%%%%d%%%r%2%%%_%%C%%%%%%%%:%%%%%%%%%%%`%0%%%:%8%%%%%%%o%%=%%%+%8%-%%4%}%%%%%c%%%%X%%d%q%%{%b%U%%%%%%%q%%%%%%%%%%m%%!%%%%%g%*%%%%%U%\%z%%%[%%%G%A%%%=%%^%%+%r%u%%%{%%%L%V%%%%%	%%U%%?%)%%V%>%%%%%%%)%%%%%x%%%|%%%Y%%%%%%%%g%%i%%%%%\%%y%i%%^%c%%U%%%%o%%%*%=%%%%%%%%!%%%%%%T%%%%%Y%%%%?%r%f%%g%%%%%%%%W%%%s%%%%V%%%n%%%%*%%V%%%%X%%#%%%=%%%F%%%%%%%%%%%%+%[%%%%%F%%~%%y%%H%%\%L%%~%%%[%%%%O%%%%%h%%%5%%%%%%%%%T%%%%%%%o%%%%w%%|%S%f%%%%%%%%%%+%%%%)%%%%;%%%%%%F%%%%%%;%:%x%%%%%%%%%)%/%%O%S%%%y%%%U%%%%o%%%2%%%e%%%)%V%e%3%'%w%%%%%g%G%g%%%=%%J%%%^%%%`%0%%%%%%
%%%%%%%u% %k%%U%,%%K%%s%%%%%%%%5%%n%%Y%%%,%%%%b%X%w%{%%%%%%%%w%%&%%%%%%%3%%Q%%%%%N%%%Q%e%v%%%	%%]%%%%%%%%%g%c%H%%%%%%%%i%%%%%{%%%%%A%%3%%%%I%%%8%%%h%%%w%%%d%%%u%%w%%%%%%U%%I%%%W%%q%%%%8%%%%%%I%%>%%%+%%%%@%%%%%p%%%%Q%%%%%%G%c%%Z%%%%%%\%%%%%%%%%%U%%%%%%%%%]%%%%/%%:%%%%%%3%d%%;%%%:%g%B%9%%R%%%%%%|%G%W%~%%%%%w%%%2%%%;%%f%z%<%A%%%%%%g%%%_%%%%l%%%%%%%y%%%%%%%%%%%%=%%%%%U%%%%%y%3%=%% %%%%[%%6%_%%%%%%3%]%U%%_%%%%%%%%%k%%]%%%%%]%%%%%2%%%;%%%j%%%%-%>%%%%t%|%%%+%%i%5%%%%n%%%%%%%%g%%Z%%Y%|%<%%1%N%y%%%|%E%7%%k%%%%%%%%%%?%%%%%z%/%k%%%%>%%<%%%%=%%%%}%N%%%%%%%%%%%%%%>%%u%%W%y%%d%%%%%%%d%z%%%%%%`%0%%%*%%%\%?%W%8%%G%%%%%%%%%%%Y%%%%%%:%%%%%D%%g%%%c%%g%<%%%%%2%+%%%%%%%%%'%%W%%%%6%%%q%n%%%{%%%r%%u%%"%w%%<%%T%k%%%.%%%%\%%r%%%%n%%%O%%%%%>%U%%%%%~%c%%#%T%?%%%+%%%%y%%%{%%Q%%%,%%,%^%%q%F%%/%X%%%v%8%%.%%%g%%%%3%}%%%%%%O%P%%%%%%~%n%%%%h%U%%%G%4%%%%%(%_%%%s%n%|%W%}%T%g%&%x%^%c%%%%,%F%%%%%%%%%%%%%%%%%%+%%%%<%%%%#%+%}%/%%U%w%8%B%%R%h%_%%%%%%|%%3%3%!%%m%%r%\%7%U%9%%m%%%(%{%%%%p%%%%v%e%%%%w%%%[%%%%x%%%%G%%%%%%%%%]%%%%?%g%;%%,%%n%%%%%%o%w%8%%]%%%%%%%%%%b%%%%%%%?%%%O%V%%%=%%%Z%%_%%%%%%%%#%%v%e%%?%%%v%%%N%_%W%%%%%%%%%%r%%Y%L%%%%o%;%%%%%%%1%%g%%9%p%V%^%%G%%~%>%%[%_%%%v%%N%O%%S%%%%%%3%%%%%%`%0%%%%%%%%%Q%%%%%[%%%%%%%%	%v%e%%O%\%%k%^%8% %%%%%%v%<%%%Z%b%z%%%%%%\%%%%%%O%%p%%%%%b%%%n%$%~%%%}%%%%%o%%z%%3%%%%%%m%K%%%%%%v%U%%%%]%^%%i%%N%%%%%%W%%A%%%#%%%x%%%%%%%%%j%%%t%%%%%%q%%%%:%%%%%E%=%%%z%%%%%%q%%)%C%c%%%Y%%%E%%%%%q%%%%%y%R%G%%-%%+%u%%(%%K%\%%%h%%P%%%'%%%*%^%%%%%^%%%%%q%%=%m%%=%y%|%K%%%%v%%%e%%%%\%%%r%%%%4%%%%%%=%%%%{%W%%%%%1%%%%%%;%=%%%%%x%%%%%p%%;%o%@%>%%%%%%%%T%\%%%%+%%C%%%%=%*%%%%%|%%%G%%J%%O%%C%%%%W%]%%%%x%%1%.%%%%%%%9%_%E%%%%%%%%%V%%q%%%%%%%%)%v%%(%%%%%%%}%%%%[%G%%%%%%w%%%%%%%%%%%%{%-%%%o%%%%%S%%d%%%_%%%%%%%%%%2%%%%;%i%T%&%%w%*%%%w%%%%%%:%%%%%%%%g%%%%%S%%O%%%%s%%%%j%%%%%%%%Z%%[%~%_%%%d%%%%%%%%+%%%%%%%%w%]%%%7%%%%%%`%0%%%%%%]%%%k%%%%I%%u%%%+%e%%L%]%%%%%%%%%o%A%^%%%%%;%=%G%R%%%?%% %%v%%%%%%;%<%%%%y%%% %o%%%$%N%%1%%%%%=%:%%%P%%V%%%%%u%%%<%%% %<%&%%%%%3%K%%y%%C%%%%/%%%4%%%%r%%)%i%=%%%*%/%|%%%^%%]%%Q%%N%%%1%q%%G%%%%%w%>%%%{%%%%%<%F%%%%%%%%V%%%r%%2%%n%%%l%o%%%%%%%|%%m%%o%%%%'%%q%b%%%%%%%%%r%%`%e%%%%e%f%%%%%%6%
%0%%%l%z%%%s%A%%_%%%%%%%%%x%7%%%%%%*%%U%}%%%%R%%%%%%+%%%%C%%%%%%%_%%	%%%%~%I%\%%Q%%%~%%k%%%%y%%%#%_%%%j%o%%~%D%y%U%%%%%^%%%%`%5%%%%p%%%%%%%k%%%%o%%?%:%%%%%%%%C%%%%%%w%%%%%%%%%%>%?%%K%v%%%:%A%%%%}%E%:%%%%_%%n%%+%{%%%u%%%=%%%%%%%r%%%%%q%%%%%%]%>%>%%%d%%}%%+%%%%%%%|%L%%%%%%%0%%%%1%%%`%0%%%%%l%%%%e%%%%%%%g%:%%%%%%%%%%`%W%%%,%3%%O%%?%%%%%]%%%%\%9%%P%%%%%~%%[%%%k%O%%%%W%%i%%G%c%%~%%)%%%%%-%<%%%w%%%.%%%3%q%%}%%%%%%'%v%%u%%w%$%V%%%%n%%%%v%%%(%%r%%%%%%%5%%%2%%%%S%;%W%%%%%k%%_%%K%%%%%%8%B%/%%%%%h%%%E%%%%%%'%%9%%w%?%%K%;%%x%:%%x%%%%%<%%%|%@%%%%c%%%%%%%%%%V%%%y%%%%%%c%%%%@%%%%S%%w%%8%B%%%%%q%%%%%]%%%%=%%%2%%%l%%B%%e%6%V%}%e%%%%%%%%%R%%(%%%%%%%%	%V%%%e%%%Z%T%%%%%4%%%%%a%%d%%%e%2%%%%%+%n%%Y%%%%%%B%%%%%%%T%q%%%S%%%%%%%%%%%%<%%%%%%%[%&%%=%%%f%%%[%|%%%%%%%s%%z%%P%%)%%G%%%%%%%}%{%Z%%%%3%%%%n%7%%j%%%p%%W%%%%w%f%%t%%%%E%%w%%%%[%%%%;%%%%%%`%l%?%%%%%%`%0%%%%%%`%0%%%%%%`%%%%%{%%%%%%%~%%%%%%%%%%i%%`%o%L%%y%%>%u%o%%%%i%\%q%%%K%%|%}%%%% %%%%7%%%S%v%u%9%%G%%%%%%%%c%%%#%%%%>%%,%%j%o%%%%w%{%%%%%%%%%%%%%L%%%%=%%m%W%%%%%2%u%_%%%%%%8%%%%%%%j%o%%?%%%%%k%%%%D%%%%%%%%%m%%%%%w%%%>%%%%%#%%%}%%%%%%%%E%:%%%O%%%O%;%<%%%%s%%%y%%%%%%}%%%%%%k%%}%~%%%%%%|%%M%%%%'%8%%C%T%%%%%%o%+%%[%W%%%%%%%%%%U%%%%%%Q%%%%r%'%%%%%\%%%%'%%%t%%T%Y%%%w%%%%z%.%D%%%=%%%W%|%%%~%q%=%_%%% %y%%%M%%%%%%%%%%%%%%%%k%%%t%%%b%S%=%2%%%|%%%%%y%%N%%_%}%O%%%e%%%%%%%%%%%%%t%L%%%S%6%%q%`%C%%%%j%%f%%%3%%#%%%%%%?%z%%1%%%%%H%%%%]%%%%%%%%\%"%%W%%%%]%%%%%%%O%;%%2%'%@%%%%@%~%t%G%%%%:%%%%%%{%%%u%%%%%7%%m%1%%%%%Q%]%%P%W%%%V%%%2%%S%%%%z%]%%%z%%%s%%%%%%%%3%%%]%v%%%%%%%%x%w%%%%%:%%%>%%y%%%`%%%%%%$%j%%%w%%% % %%y%m%k%B%T%%%%% %%%6% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%%%%%m%%0%%%]%H%%I%!%)%$%%%%%%F%R%%?%6%%c%<%l%H%%%d%%%%%t%%%%%C%"%%%+%%%R%J%)%%%R%J%%%%%%%%%k%J%%%%%%%L%%%%_%S%U%%%n%7%%%%s%%%%%s%~%%u%%%U%%-%U%%%y%y%9%%c%%%%%%%%%%/%J%u%%z%?%%%i%%%%%%>%>%>%~%% %s%%m%%%+%%v%%u%%%%%%%%Y%%u%%8%%%%%u%N%%%?%%W%P%>%%1%J%s%%%W%i%V%%%%%%_%u%K%%E%%%%%%%/%r%%%%%%%_%%%g%K%%W%]%%%%%%E%Y%%%c%l%%%,%[%%%T%%Y%%H%%T%%%%%%%%%%%%%%%%}%x%%%%L%#%}%A%% %%%%%%G%%%V%%%7%%%%^%%}%>%%i%%%%%-%%%%%%%i%%%%;%}%%L%J%%%%X%%&%%T%%P%%3%%T%%#%%%%%%g%%%%J%%%%%l%% %%e%%%'%%=%%%%?%%%%o%%%%n%%%%a%%%%%%%|%7%%%%%>%%%?%%%%U%%%%%;%%%%%%%%%/%%m%%%%N%%/%%%I%%%%%f%%Q%%%%z%{%%%<%%d%%%6%%d%%n%%;%%%%%%%%Q%%%%m%%{%{%%5%%$%%%%%i%%%x%%%%g%<%%$%%"%%^%%%%=%%%%%R%J%)%%%S%%%%%t%%e%/%%%%% %%%a%}%%%%k%%%%_%%%y%%?%%9%%%%l%%z%%%%}%m%#%%%G%%%K%k%!%%%%%k%(%%9%%G%%%1%%%%%%z%%%,%%Q%%&%%l%%i%V%%%%%%%%#%_%%<%%%%%3%%%%m%$%%^%9%g%%%{%9%&%%w%%&%%%:%%%%%u%%%f%%%%%R%%%:%%%L%+%m%W%%%%%W%^%%%%%z%%%%I%%%%%2%%%%%l%o%%%%Z%%%f%?%%k%4%%W%%%%-%%#%%%%	%?%V%/%%%c%^%%%!%%!%%{%%u%%%%%U%%%%%%%%%A%%%%%%G%e%>%G%}%%?%%%%%%%%v%%%%%%%3%%%X%%~%j%%%%%{%%%z%T%%%A%%O%^%%%%%%>%%%%?%s%%y%%%|%%%%%%G%)%%P%%<%/%1%%1%~%2%%%%%%%R%/%%%7%%% %%%%%s%m%%%%s%r%%%%%%%"%%(%%%%%%2%%%c%%%%%;%%~%%u%-%%%)%}%%%%%<%%U%%1%%g%%%%%:%%a%%p%%b%%%5%{%%%3%%(%%%%%k%%!%m%'%m%%%%%%%2%%%.%%~%[%%)%}%G%%%%b%%%X%E%%L%%%%%%%%%p%%%%%a%%%%%%7%%%%7%%%%%F%y%%0%%@%%%L%%%?%%%%%%%K%h%i%%@%=%%%%R%J%)%%%R%J%)%%%R%J%]%M%;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%;%%%%%%j%%;%%% % %%S%m%k%B%T%%%%% %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%%%%%i%%`%%%Q%%q%%%q%%%q%%%q%%%%%%%%%!%%%	%%%C%%O%%%M%l%%S%%$%I%%$%I%%$%I%%$%I%%$%I%%$%I%%%q%%%%%O%%9%%%w%%%%O%%o%]%%s%%%s%%%%%%%%,%%%%u%%%%<%^%%0%%%%%t%%%c%%}%%a%v%%%%=%%%%7%%%%%_%%%{%V%9%%%%z%%}%%%%%%^%%%%s%%%_%%%%y%~%%?%%%%}%e%%z%%%%%%%%%%%%%%%%%%%%%@%%%w%%%E%%%%%k%%$%I%%$%I%%$%I%%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%@%?%
%%%%R%%*%f% % %*%%m%k%B%T%%%%% %%%% % % %% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %x%%%}%+%%%(%%%%H%,%%%%"%%H%$%%%%%"%#%%X%$%%%%%%%%%,%%%Q%%%%%%%%%%%%Z%s%%>%U%{%%	%%.%%%.%T%%%}%6%% %%%%-%%%F%`%%%%%p%]%%%k% %%%~%%%b%%%%
%%%%
%%%%$%%w%%%%%%%%%|%s%%%C%o% %%%%A%+%%q%3%%%l%O%%%%x%%@%%(%%0%%a%%%+%?%%	%%%%T%,%%_%%%%7%%%s%\%%%%%%^%B%l%1%)%%C%%%%%%%+%%k%%(%%F%y%N%"%8%%%d%P%C%%_%9%%%%>%O%%0%&%l%%4%%%I%m%+%%%%n%%w%%%G%%%r%%%%%%%%<%Q%%%q%	%%%%	%+%%%%%H%%}%%%%%%e%%%%%q%%%%~%~%%[%)%.%%5%c%%%6%,%%%%%%%%m%%%%%u%O%%%%%9%p%\%%%%<%/%%%/%?%%%%%N%%:%%%%M%%%%p%)%%% %%%%%-%%%%2%p%%'%%%u%K%q%`%%%%%_%%%%%%%%/%%%%6%%4%%<%~% %%%%%7%7%S%%%%%%N%%%B%Q%%%%%%%%%%u%M%%%{%%%%5%%%%.%B%%N%%%%%k%:%%	%k%%N%%%m%%9%%%%%%*%%u%%U%%|%2%%%%%%;%%%%%%%%%]%F%%a%%%)%%%%R%E%%%H%W%c%0%M%g%%%>%%%)%/%t%i%h%%f%%%%	%%%X%%>%%%%%%%E%%%%%)%%%%<%%,%%6%%s%4%%%%%%5%%z%%b%%?%%%J%%%%%\%%<%%O%%M%%%O%#%(%7%%6%%:%%%=%	%%%%%%%%Y%A%%%%%H%%%%%%L%%s%6%%%%M%%X%%%%B%c%X%%&%%%J%%%t%%e%%.%%%%%%%	%3%.%%j%e%(%%%?%%<%?%%-%1%%$%p%%O%%=% %%%x%%%%%%%%%	%%]%<%J%t%%%%V%g%%%`%|%I%,%<%%%%}%%F%%%Q%j%]%%o%%%[%P%a%%%%%6%%%X%%Y%%%<%%%%?%%%Y%o%h% %%F%%%%0%6%7%%%%%6%J%F%%%G%[%%%%w%v%)%%%7%?%,%%%@%w%%
%%%n%M%%%%%%m%%%%k%>%?%%%%L%%j%%%%%=%%%%%%%w%%Z%%i%z%F%T%x%%%%%%$%%%%k%P%%8%%E%%%m%%%	%j%A%O%%%%%%%%%%%>%~%%%%%%%%%%%%%B%9%%%%	%%%%%%8%U%%%K%%%C%%v%%j%b%%%L%%%%%C%%%%%y%%%%%%%%;%%m%%j%%P%.%%% %%%%%D%k%%%%%w%%%U%%E%%%%3%%%%%%%%%8%x%%U%%%J%%%%s%%%%%%%\%%%%%%%%%+%;%%}%%%s%%%F%%%%Q%(%%K%I%%%%%X%%%%%%
%%1%%%%%+%K%%%%%d%X%%%]%;%J%%%%%c%%%x%$%%%D%%%%%%%%%%X%`%i%%% %%%%%%@%l%%%%r%n%%m%$%%%%^%%9%%%%z%B%G%%%%Q%=%%%n%f%%%k%%D%%%%e%;%
%<%%%%%a%%%>%,%%%%%%j%%%k%%0%B%%[%p%(%%%$%%% %%%%%%%%%p%%4%%n%%%%q%`%%X%%%%	%%v%%%%%%%.%x%%H%n%%%%o%r%%J%%%%5%%%%%%H%%%u%%%%%%%%%%f%%%%%%%%a%%%%%%[%Z%%%:%>%<%%M%@%J%%9%%%%%%%$%%q%]%%%% %}%=%H%%%%k%%%%3%%%%%%%%%%%t%%Q%%=%%%%,%	%7%%%%%%%%%%%s%%%>%%%%3%%%%%%6%[%%%g%%%%%R%L%%%%%%%%%?%%%(%%%&%w%%.%7%C%#%~%B%{%%%]%%%
%%%%U%%W%%%%7%%%1%%j%k%~%%e%%c%G%%%r%%%%%%%%D%%.%%%=%%%K%%%%%%%@%%W%%%%M%%%%0%%%%%%%%%%%0%%\%%%%x%%%%%v%%q%%N%Z%%%>%#%%%%%%%%B%E%%	%%%)%%%%&%y%%A%}%t%%?%B%%%%Y%%m%(%%W%I%p%%%%%%%%%%|%%2%%+%%%%\%2%%% %%%)%%l%%8%%%t%l%%%%%@%Z%.%B%%%%%%%%e%%%%%%R%S%%%%%%m%>%d%%I%%%%l%%%%'%N%%a%%d%%%G%3%%%%%%%#%%)%?%%%%$%%%s%%%%	%%_%5%=%%%%Y%%%B%R%#%-%k%"%q%G%P%-%%e%%%"%%f%%%%%%%%%%-%%%3%%7%%%%%%8%%M%9%%%%%%%%,%%%%%_%*%n%;%H%%%%%E%%B%%%%%%c%l%%~%%%%%%%%%[%%%/%s%a%%g%%I%%%E%%2%%,%z%%%1%%%t%%%:%%k%L%%%%%%%%%%%%%%%%%%G%)%%%%{%%7%%o%%%%n%d%%%%%%%%%{%@%r%%P%%>%%%k%%w%%k%%%%%%#%%%k%X%%f%y%%%%E%%%%%A%%%B%%9%%u%M%%%%%4%P%=%%_%%%l%%%%g%W%%%%%%N%%%%#%%_%n%%%G%%%p%%p%%,%Z%%%%%U%u%%6%%%%%V%%%%%%%0%E%K%%7%*%|%%%%]%%{%%%7%5%F%\%%%%%%z%Q%%%%z%!%%%%%	%u%%H%%>%%%%%u%p%%%%%%T%%%%o%3%P%)%%%%[%%^%%6%%%%%%`% %-%%d%&%%%*%=%%%%%%%f%Y%%<%%^%%%%%`%_%6%%%%%|%h%%%%%%3%%%>%%%2% %%P%%%%q%%%7%%%%%%%%%%%,%N%s%%j%%F%%=%B%%%%`%%%%%%%C%%%%%i%%U%%)%%R%%%%@%L%%%%%%%%%%%%%%%m%b%<%2%%F%H%%R%q%%%%%%F%%%%%%%X%%%i%%%%%%O%m%%G%A%%%%%%%}%:%%*%%%%%u%%%f%%%:%%@%%%R%H%%.%%%%%%%6%%%%%%6%%j%%%%%c%%G%O%p%O%-%%%%%6%%H%%%%%%%%K%%%J%%%U%%%%%:%%J%%%%%%%%v%<%g%z%%%%%%% %%%%1%F%*%q%m%%-%;%%%I%%%% %7%%?%%%%%O%%(%Y%r%%%d%e%%
%%%F%%%%%%%	%%%%%%%r%%%H%%%%%%a%%%%%%%%>%%%% %,%%%%%3%%%%D%%Z%%%%E%%%%%%%q%q%%%%7%p%%%?%%%%%%K%%%%%%%%%%%$%%;%%%%?%%%Q%%r%%%6%%p%P%%7%`%%a%%%%%^%=%%%%%%R%%%_%%%%%%)%m%%%%>%%D%3%#%%%%%%_%'%%%I%%%%%%u%%%%C%%%-%R%%n%%e%%%%%%%%%s%s%%%%L%%%<%%%/%%%%%R%)%|%L%t%_%1%%%%%<%u%%}%E%
%D%%z%l%%%$%%H%%%%+%%N%%%_%%2%%%s%%c%%%%-%%r%H%%V%.%%%%%%%%%%%%%'%%%%%%%(%}%%%o%	%%%:%]%%%%%6%%F%h%l%w%%%%@%%%z%%{%6%%P%_%%?%%%%%E%%%%%%%h%%%%%%%%%v%%%K%%%/%%B%%"%M%%%%h%;%%%%%%%%%%%%o%%%)%g%R%%m% %%$%%5%%,% %%E%%x%%(%?%%:%%%g%%U%%%%%F%%4%%%%% %	%%%%%%%%%%E%4%%%%!%%%q%?%%l%%%%%%A%%%%%%%Y%v%%%s%:%m%R%%%(%G%%%%Z%%y%%G%q%%+%w%0%%)%N%z%%%%%u%%Y%%-%%&%%%%%%"%%Y%%	%=%'%I%%%%%%8%%%%%{%%%m%%%L%/%~%%%%%%%!%%%%%%.%%B%%%%%%%A%=%%%%%%%Y%%%%|%z%%%%:%f%%%#%%%%o%h%%2%X%j%%%%%I%|%1%%%i%3%%A%(%|%%%v%%f%1%%%%%%%N%K%%%%L%%%%%%.%%%%%?%%r%%]%%q%B%S%%^%#%o%%%%.%l%%%%%z%%%%%%%%%%Y%%%~%i%%%%%P%% %%q%%%%u%&%7%(%%%%%U%;%B%%%%l% %z%F%%x%%%%%%%%M%%%%%%,%|%P%f%%V%%%%%k%%%'%%N%%%b%%%/%%$%E%N%%%%
%H%%A%%i%%%Q%%=%%u%-%%/%T%%Q%A%D%9%%%%%g%%%W%%%%%%Y%Z%%%\%%%%a%%%%%5%%O%%j%r%%%%%%%%u%"%9%%%B%%z%p%%%%%v%l%%%l%=%%%%%%%%%Y%%%%y%%%%%5%t%%%%%%%%%m%E%%%z%%+%%%%%M%%%%%>%%L%%k%%=%%r%r%%4%%%%%%%%%/%g%%%%E%%r%%%%~%P%%%%n%B%%[%%%\%g%[%%{%%%%%g%%%%Y%%%v%R%%W%'%%%%
%{%F%e%%m%1%%%%%{%%%%w%%%%L%%%;%%%7%%&%$%%%%x%%c%%%%%0%%%%%%n%%%%%%&%%%%u%%@%5%s%C%%%C%%%m%%%%8%H%%%%e%f%%%%%t%%%%<%P%J%Z%%%%%@%%%%%%%%%%%%%%4%%K%|%%%#%`%%%}%%a%%k%%R%N%%%%'%%~%I%U%!%%k%%W%%%%L%%%Z%%%D%%%N%K%%%%%%%%U%%%%%%%%%%%;%%%g%%%%L%~%a%(%]%%%%!%B%j%v%%(%%f%%%%%%%%%\%%%B%%%}%%A%u%H%%R%%%%%%%% %%g%%%%%%M%%%%%<%7%%%O%%%:%%%%[%%m%6%u%%v%%%%%;%3%%%%=%%%%w%%%%w%%n%%%%%%%%%%%%%3%p%K%%%M%%%%%%%%{%%.% %t%%%"%%%%n%t%%%?%%%%%d%i%%%b%%C%6%%%=%%%E%	%%%%%%%%%%,%%%%%%O%%
%%%%0%%h%%v%%%G%%%%;%%=%%%%M%V%%%%%%%%%%%r%%% %%%%4%%H%%%%8%r%%%%%K%%%%%x%%%A%%%:%%2%%%%e%%.%%%%%%%0%N%<%g%%%%%%%'%%%%%%6%%%%%%%%G%%1%%%%m%}%%%^%j%%n%%%%%S%%0%%C%z%%%%%L%X%%3%%%%U%%%%M%;%^%%%%^%%~%X%c%%%%%%a%%%%v%%G%H%%u%"%%%%1%%%k%N%%K%%T%%?%,%%%%r%%=%%%%%X%}%6%C%B%%W%6%%% %%F%%%%\%%3%%m%{%4%!%]%9%%%%%%%J%4%n%%%%%5%J%%s%%w%%%^%%%D%%%h%%%%%%%z%%%%%%%%8%%%%%P%%%]%%z%%%%%%1%%%x%%%~%% %%%J%8%#%c%%%%%%%%%%c%F%{%d%%%%%%%%%%o%%%%@%w%%0%%Q%s%P%%%%%%_%%%%% %?%%3%y%B%2%%%{%|%%%%5%%%%%}%%>%x%{%q%(%a%%%%%%a%%?%%%%%%Q%%%%%%%l%%%%4%%%%%%x%m%W%I%%%%G%%%%C%%%%%%1%%%%%%%%k%%Q%%%%3%i%J%h%%%,%%%%%%%%%K%%%R%%%%%%%%%%%%%O%%`%%%%%%%%%%<%!%%%[%%%%N%w%%%%a%%%%%%Z%%%%x%%\%R%t%v%%%%^%Z%J%%%a%\%(%%%%%Z%%P%E%%%%%% %1%%%%%%%h%%%%%%y%%0%%S% %%L%!%%y%%%Q%%P%%%%%%#%R%@%%%&%4%%a%%9%%%'%2%%%%%%%%I%%%E%%8%X%%%I%r%%%
%4%%%%*%y%%%b%%%%%%%%%/%#%%%x%%%%%;%%2%R%~%% %%%%%%%%%O%7%%%%h%%%%%U%%%^%%%k%%%%%%%%%(%%%%,%%%%2%%%%%)%%C%%%:%(%%%;%%%Q%3%>%%%4%%)%%%%%%%b%6%%%B%8%%%\%%%%% %p%%%%%%%e%<%%%%S%%%%%%%%%+%%j%s%%%p%%%%%%%%<%&%%t%{%3%?%%%%%|%N%%)%p%7%%b%%%%%%%%?%%a%%i%%D%%%W%l%%%%%%%%%%X%%%%%Z%%>%;%u%%%)%%k%o%%)%#%W%%%%S%%n%%c%R%%x%%%{%[%%s%X%v%1%%%9%5%%%_%%%%0%K%%%%%%%%%%%7%%>%% %T%p%%5%%%%%%%l%%3%%S%%"%%%%L%%%%X%%%%%%%[%%5%m%%%%%%%%Q% %=%"%u%}%%%%p%%%*%x%%b%%%%%%%%%#%i%M%+%%%@%%Z%!%%	%%%%%~%j%%%Y%%%%%%%%%%$%%?%5%%%%m%%t%%u%%]% %%%%%@%%%%%:%%4%h%8%%%%%%%t%u%%%3%%;%%
%%%O%%1%A%/%r%%%%%%%
%%%%%R%*%5%%%%%%%i%%&%j%#%%Y%%2%:%%$%Z%%(%a%%d%%@%%>%'%z%
%%%%%%L%%%%%%%%%%%%%%6%Z%%%%8%|%`%%%6%%"%%%%X%%1%%_%%%z%%'%%%%F%-%%%%%%%?%%%X%^%%%%A%:%?%1%%%%;%%%h%/%K%%%V%B%'%%%%%v%O%n%%%%%%F%S%%%%%%%%%%%%%%%Q%{%=%k%h%7%%%%M%%%%w%X%Q%%p%%\%v%%%%%O%/%%%.%%%%%%
%%%N%3%%%H%K%R%%%l%%K%%"%%q%%%%%%%^%W%%%%h%%%1%w%t%%%%%%h%@%%%%%%3%%e%%%6%%N%|%%%%%%%%I%;%y%%%%?%%%8%t%[%%%[%%!%%%%%%$%,%%%%L%%%e%%"%%%z%%%%%I%%%A%%k%%%%%R%%l%!%3%u%%8%%%%y%%%%?%%_%%W%%%%)%%A%b%C%%%%%O%%!%r%z%%%a%%%5%S%%%n%%%%%%%#%%%<%%4%3%y%%%6%"%%%%%R%%%%%%%C%%%Q%%%%&%>%%[%%%#%
%B% %H%%%%%{%v%%e%%%%k%O%%%T%%l%q%(%%U%H%%%%%h%%%%%%%8%%%,%@%t%%%%%%%%L%%{%p%%%%%%%%/%%*%%L%"%%%d%_%y%%%%%%k%,%4%%%G%%%%%b%D%>%,%%%.%o%k%%"%%D%;%%|%7%%[%.%%%%D%%C%%%A%%%%%#%%i%%%%l%%%%%%%%I%%%%%%%%%%%D%%q%%]%+%%%e%E%	%%%%_%%-%-%%%%%%%%c%%%%%%%%^%%%%L%%%%q%%1%~%%%%C%%%C%%%%%%C%%9%%%%g%N%%%%%%%%%%%H%%%8%B%%k%h%%%%J%%%#%Z%%-%`%%V%%o%%%M%%a% %9%r%%%%$% %%%%%%%Z%-%%h%%k%h%%%
%%?%C%%$%%	%%^%%%t%%%%%9%d%(%%8%%P%%%]%%%%%%w%[%%%%w%l%%%%;%%%d%%%n%%%%%o%%K%%%%d%%%H%%%%%(%D%%%%%%%I%n%%I%% %M%%%%_%(% %%%%%%%%%%%%%5%)%6%%H%/%%%%Y%%1%%% %%Q%R%%%k%%,%n%%%%X%H%%%%%%%%%%%%?%%>%%%%d%f%%%%%&%6%%%%%%^%E%%%J%%m%%%%%%t%%%{%%C%%%%%%C%%%c%`%%%%0%%%v%%5%%%%x%<%%%%\%9%Y%%%%%c%%%%%%}%1%%0%6%"%%%!%%%%%%9%%d%l%:%'%%%%1%H%"%%<%H%N%%%&%]%%%5%%%%6%%9%%!%%I%%1%;%"%%%%%%Y%x%A%%%K%-%%y%%%m%|%h%%%%%d%%%%"%]%%%%%%%%%U%%.%a%k%%g%b%b%w%2%4%%%%%%%%j%-%% %Q%%%%% %O%d%%-%%%%%:%N%%%	%d%G%%%%%M%%%%%%%%%I%	%V%%G%=%%W%%%!%%r%6%%%w%%H%3%%%%%%%%p%"%%%%%%%%%%%%%#%g%6%*%x%%9%%%%%%k%{%H%%%<%W%%%%%%%B%%Q%%%O%%%%M%V%%%%%{%K%h%%%^%<%%F%%%%W%%%<%%%L%%%%%:%w%$%|%%o%Y%%%-%Q%]%<%%%%%%!%%!%%%%%%F%%%q%@%%}%3%f%%R%%%%%%%%o%%%%%M%%%%%r%%D%%%%%%+%%N%|%%Y%%Y%%%%6%%j%%%r%%1%%1%%k%4%%%i%'%X%%%%f%%\%:%%e%%%%% %%~%%P%9%%%%1%%%%%%
%%%%&%7%%8%Q%%a%p%e%%%%%%%%%5% %9%o%s%%M%%y%%	%%K%%-%%%u%%%u%%9%%%%B%d%x%7%H%%V%%%%%&%%_%%%%%!%C%%%l%%%g%L%% %%0%4%%%%%y%S%%%%}%|%%q%%%%k%%%%%%%%b%%s%:%%f%%'%/%%%%%%%%%%@%!%%]%%%%%%z%#%%=%%J%%s%%`%3%%%W% %e%z%<%%P%I%G%%%C%%%%%0%%@%%4%%%%%%%%%%%5%%%5%g%%%x%%c%%%T%%G%%%%U%%%#%%R%%%C%C%%?%t%d%x%%%%%%L%`%%%%8%%%%%d%g%s%T%%?%%M%6%}%,%%%_%%%% %%%\%%k%%%%%%%l%t%%%l%%s%%%:%m%"%2%%%5%%b%%e%\%]%%\%%%%%%%{%x%a%%L%o%%%Q%%%l%P%w%K%7%%%%?%%M%%%% %^%a%,%%%_%%l%b%(%%%1%%?%%%%%%%%%%3%%%%%%^%7%%%%:%%%%%%%%%^%%u%s%%%%q%B%%8%*%%%%h%%G%x%%%%Y%%%C%%m%5%%%M%~%%{%S%%g%%9%n%%%R%X%%%C%}%[%%%%%%h%%O%%t%C%%%1%#%W%3%%%*%%%:%;%%&%_%%%G%%%%%%&%%H%|%%%%%%%5%%L%%%%<%4%%%%%\%b%%%%%%%%%%D%?%]%f%M%{%V%6%*%%S%%<%%%%%e%%%0%,%%!%%%%A%%%%%%%%%%%%%K%%%%m%%%m%%%%%%%r%%%%O%%o%C%%%%%%%2%%
%%%%%%%#%%%p%'%$%%F%%%%@%!%%{%0%%%V%%%%Y%W%%%%o%e%%,%%%'%%%H%'%%%%`%%r%%1%%%%%%%#%%%%%M%R%S%%%%%%Y%%%%%%Z%B%%%h%%|%%x%%%H%%@%%6%%Y%z%i%W%%l%%w%Q%%%%%%%}%%y%q%%%s%%%%%!%`%%%%~%y%#%%-%O%%%%%%%%%%I%%X%%%%m%%%%%%%%%%%%y%%%%%%%|%%%*%0%o%@%%%%]%%%%^%(%`%P%%%%q%%%%%v%%%e%f%%%%%v%%'%%O%A%=%B%%%%%%%%p%%%C%%J%#%
%%%%%%%%%%%q%%%5%%%R%%%%%%%%%w%V%&%%%)%%%%%%n%@%p%o%%%%%]%%%{%3%%v%%:%%%%%%%%%%%Y%%%%f%*%a%W%%%_%%&%'%
%J%k%0%n%%%%%D%%x%%%%%%%\%/%H%%%%%D%%%u%%%q%%Z%%\%%%G%+%%%%X%%%%Z%%T%>%z%'%%7%%Q%%%q%%%%%%%%%%%%#%K%%R%.%%/%C%%%%V%%%g%%Q%%%%%%%%%%\%%%%%`%%%?%d%%%%1%y%%%%u%M%%6%%%8%Z%X%]%8%%%^%p%%%w%Q%%%E%%%%&%%%%%%1%%f%r%%R%%%%K%i%%%%%$%%G%%%%%%%%%%%%%%%%%%%%%%h%3%'%%%%%%%%%%%{%%%%%%%%%;%;%%~%F%%%K%%3%7%%k%%%%%u%<%%p%%%d%%%%%%+%C%%%%%%%%%%R%%%%%M%z%%%%%%7%%)%n% %%%%%%%%% %l%E%%%G%%%y%%l%%%:%%%%%I%%%%%o%%%B%%<%A%\%%%%\%6%%d%%%%F%%%q%%%%%%%Q%%[%%%1%<%k%%%%N%%>%%%%S%%%|%%%%%%%s%%T%u%%l%e%%%%b%%A%}%A%%%%%%%%%%1%%%%0%%A%{%%%K%%%%%%%%%%t%j%%%%%%d%%L%I%=%r%%	%%%%P%R%g%%%%%_%L%b%%R%%%%%%%%%l%?%%%%%%)%!%%%[%%%F%%%%o%%%%w%i%&%%k%^%%C%V%(%t%@%p%%W%2%%%%%%{%h%%x%%H%%G%R%n%%%%%%e%%%C%b%%x%%%%%%%%6%G%%%%%%%%%Q%%%d%2%7%\%%%%d%%S%%%%=%\%%F%%%f%*%%0%%%%%%% %%%O%P%%%%%5%(%r%%Z%%%%x%Q%%%Z%%>%%%~%G%%A%e%%N%-%%%%%j%Y%%%7%%%%n%;%%n%?%%%"%P%%%x%%}%%%%%%%%%/%%N%%%% %%W%:%%%&%%%%%%%:%x%"%%%%%%%%;%%%R%%%%%%%%%%%c%%%%%%%%%%%%%%%E%l%m%G%%%a%=%%%%h%%%%%%B%G%_%%u%%%%Y%n%Z%%%%F%Y%s% %%U%%%"%%z%M%%&%%:%%%G%n%%%%u%%.%%D%X%%%%%5%X%n%%%%%%%%%;%%}%%%%%%X%O%?%%~%2%&%%%%%%%%F%r%j%j%%%%%%%8%%%%y%A%%%%%*%%W%%	%%%%%%%%%%I%%%%%%%%9%/%%%u%%b%)%%%Z%%l%%:%%%s%%%%% %8%%%5%%%J%%%>%~%%i%%%%%%%%%I%<%%k%%%%%%%%%%%^%%S%%x%%[%%%%%%s%%%%G%D%%%%%%%(%% %+%%%"%E%%%%H%n%%%A%_%%%\%F%%%Z%%%%%%%%%%%%%%?%%%4%`%%%%%w%%%%_%{%%7%%%%%%%"%%%0%%Y%%%%%@%%f%}%%%%%%%%P%E%j%%m%%%v%:%%Q%%%%%%%%%%r%N%%%[%w%%%%z%%*%%%%5%%%%c%?%%j%%%%%%%%%f%%7%%%%?%K%_%%%P%%%'%,% %s%Z%(%o%T%%|%%%%%\%-%%%%%%%%h%%%%y%%%%%%%\%	%c%K%/%%	%%%Y%G%%%%%%%%%%z%&%c%"%%*%%(%,%%%%%%%y%%E%%q%(%%y%%%[%%%%%q%`%%a%%7%X%%%%%~%%%%%%%R%%%%/%%%{%h%%h%%%%"%%g%%%%%=%w%%%%%%%%%%%%%?%%%%%%%%u%%N%%h%{%%g%%%%%?%t%q%%%%m%%,%%%u%%[%%Y%%%%o%t%%%%+%%%%!%%h%f%%%.%2%]%%%%?%%&%%%w%A%%R%%%%F%%%%%%%%U%e%%%%%%%%%d%%%l%%%%i%%%%%%q%%%M%s%&%%6%%X%%w%%-%&%%%%Y%%%%3%(%%%%G%9%%%{%c%%%%%%%%%M%%%;%%%%%%v%%%%%n%%"%%%%%%b%%%%)%%%<%%%%%%%%e%_%%1%%%%%%p%%%%%}%%%1%1%%%F%#%%%Y%X%%%p%%%q%%%]%%%s%%%%%,%[%%%%*%&%%%%%@%%%D%%f%%%%%A%%%%f%s%%%%%,%%%%>%%%3%Y%%%%%%%;%%:%#%h%E%L%%%%[%%R%O%d%%%%^%G%%%A%%%%f%%~%Y%!%%%%%E%%%%%%n%%%%%%0%%~%%%/%%A%%%%%
%%K%%m%%%%%%>%^%%%W%Y%%q%%"%%%%%%%<%%%%%F%%%%%*%c%%%%:%%x%%w%%|%%%%w%%%%%%e%h%R%g%%%%%%%%%d%%9%%%%%%%%%v%%3%%v%%D%g%%%h%%>%>%?%%%3%%%h%%Y%D%k%%g%C%%(%%%%%%%%%%%%%S%%%%%%%%|%%%%2%Q%%%9%4%%(%%%?%O%G%%%Q%3%4%%%f%%c%c%%%P%o%p%%T%%Y%a%%%W%(%%>%%%%@%%t%%X%4%%`%%L%G%%%%p%%%%%%%a%%%%%%l%%\%%[%9%%c%%2%6%%%U%%%%M%6%f%,%%%%%% %'%%%%%%%%C%%%%4%%i%<%D%%n%%%%%#%%x%%%%%%H%z%5%%%%[%%
%%_%%%%%%%%Q%t%%%m%%v%N%%C%_%%%`%%%x%%%%%~%%M%b%%%s% %%%%P%E%x%%%%%%;%%%%c%W%%%%*%n%\%%%%?%%%%%%v%%:%O%%%%3%@%f%%%%%%R%%&%%e%%%%%%%%%m%%%[%m%%%C%%%%%5%f%%(%%%M%%%%%N%i%%%%Y%X%%x%%%%%%%=%%4%
%y%%H%%O%%<%%%0%|%%%%%%%3%%%%%%%[%%%B%	%:%%d%1%%"%Z%%O%$%+%K%x%%i%%%=%%s%%%J%%%%%g%%%%%%~%%i%[%R%z%'%%%%%%%G%%%#%%v%%%}%%>%%?%W%~%p%%%s%%%?%%%k%%%A%%%K%%r%%%%%%k%@%%I%%|%>%^%x%%s%%?%%\%%%`%,%D%%%%%%%%%%%%%5%%%%%W%%%%%%%^%%%%%%w%%%D%%%%M%%%%%%X%f%_%8%<%%%|%% %%8%_%%%%p%%P%%1%%%%%%W%%%l%m%%%%%%f%?%4%%%%%:%%%%%%%_%%%%v% %%%%%M%%;%k%%:%p%%%%%%%%%%_%%%%s%j%%%q%w%]%$%F%%%}%%%%%%y%%%%%%,%b%%'%%%%N%%%%=%%o%%%%%%0%,%
%%%%%%%%~%%%M%%%%%%
%Y%%R%%%%4%%6%+%!%%%}%@%~%u%%j%%c%t%%C%%%%%P%.%%Y%(%%x%%%%%%%%z%%?%7%%0%%W%X%F%%%%o%%%%%%%%%3%z%%%%%%0%%%%%%%%c%8%%R%%%G%%%g%%%0%%%%%%%T%%U%%%%%%%%%%%w%%"%/%4%%%%%%%%%%C%%Q%`%[%%{%O%%%%%c%%n%%]%%%%+%%{%%{%%%%%%%%N%%!%%3%%%<%%%%V%%%%y%x%%,%!%C%
%%%b%%.%%%%l%f%%%%%%'%%%%%\% %%%%%%%%g%u%,%%%%%%%w%-%/%%%%3%%%%%%%N%%%%X%(%%c%%%%%%o%%M%%D%%%s%%%%a%%#%%#%0%{%c%%%%%%%%%u%D%W%C%B%%%%Z%%A%%%Z%6%%,%%%%%x%%%(%Z%%%%%%%%w%%%%%%H%b%%h%T%b%2%%%<%$%%%*%c%%%%%n%k%%%%_%%%%%%%%%%#%{%D%+%B%%<%%!%%%%S%/%%g%%%%%`%%9%%%.%^%%]%%%%%%%C%%%+%>%%%3%%%+%%%%5%%%]%%%q%%%%%p%%j%'%
%r%%9%%%F%D%%%)%~%:%%%%%%%%9%G%m%%%%x%2%%%%-%?%s%%%r%a%G%"%y%v%U%%%p%a%;%R%%%%%%%%%%%%% %%A%%\%&%%%%%
%%?%%#%%%%n%	%%%0%%e%e%%%%%d%~%o%%q%%%%%!% %!%%%P%^%H%)%>%%o%%%%%.%%%%%%%%=%H%y%%%7%%S%%-%M%%%
%%?%%%%8%y%%c%%%%%%%q%%%|%%#%%%5%"%%2%%%%%l%%m%#%%%U%%%%%%%%e%%%%%V%%%%b%%M%%%%%%%%%j%A%%c%7%%%Z%%
%%]%>%%4%%g%b%%
%%%%%%s%	%2%W%R%s%%K%g%%%6%%%%%%'%s%8%q%%%z%%T%T%[%%R%%[%w%% %%)%I%%%9%%5%x%%%%W%j%%%%#%%!%n%N%+%z%P%%%%%%%	%%K%%g%%%%%T%E%%,%%%%%%%%?%%%{%%^%R%%%D%%%=%%%R%%u%^%z%%%c%%%%%%%%&%D%%%%%'%i%7%4%%S%%%J%%%%%%%&%H%%%U%%%G%%%%[%%%%%c%r%%%%%%%<%%%%%%%%~%%%%4%}%%%%%%h%%%%;%%%%l%p%A%Z%%%%%%X%%Z%%;%t%%Q%?%%%%%%%%%%y%%%k%1%+%%%u%6%%%[%%%%%%%%%D%%%c%4%%%%%%%%*%d%%%B%#%!%}%%%e%>%%s%a%m%h%%%%%G%3%c%^%%%%%8%u%9%%%%%%%%%%%%U%%y%%%B%;%f%%"%Y%%i%=%%D%%%=%%%%%%4%%%%&%%%%%%|%%C%%%%3%%%%%g%]%%~%%%%W%g%j%%h%S%I%X%U%%%%"%1%A%5%F%%%r%4%%%%{%%%%%A%%%%l%j%%w%%T%%%%%%t%6%<%%%/%N%%% %%\%%%%%%R%%t%%%%%a%|%%%i%%%%>%%T%.%%W%o%>%>%%x%%%%%%Y%%%%{%%%% %m%,%%J%%{%g%g%}%%v%~%)%%]%%%%%s%!%?%w%%%%X%%%%%%%%G%%F%%%l%!%7%%%U%%%|%C%n%%%f%%%%:%.%@%m%q%%%%%%%%%%%%%R%%%u%?%%.%%%:%%%a%B%%%%%%%%E%#%G%%%g%'%y%X%%D%%%u%%S%W%%%%%%D%)%%%2%1%%%%%%V%%%a%g%W%%%P%%%%q%%%%%%%%%%%%%s%%%?%%%%%@%%g%"%)%%%%%%s%\%%T%%%%{%%%%%f%3%g%%%o%%%%%%^%%w%:%^%%%"% %%%{%%%%d%#%%%%!%%%t%%}%%,%n%%y%W%F%K%v%%%%%X%%%4%%%|%<%%%B%+%%%%%%8%%i%=%%-%;%%%%X%	%5%%l%=%/%x%l%%%%w%%%%%%n%%]%% %
%%%+%S%%%%,%{%%% %%/%%%%V% %%%%+%<%<%%%%%%%%o% %%%%%%%%%e%N%p%%^%O%%%%%%%%O%v%%q%R%% %%%w%H%%F%3%%%%%=%o%%%;%%`%~%k%%R%%%w%C%%%%%%u%%%%%k%%j%E%%%|%%%q%%%%%%%%K%V%,%%%%%*%?%%%%x%k%%%}%Q%%x%%U%%%%%%/%M%%%%%%%%%=%%%%%%p%%%%%=%%%%%%%^%x%%B%%%%%%%%K%x%%%%@%%[%%%%I%%%%Y%B%]%%T%%%%%%%%%%%%%K%q%%%.%%%%%P%%%w%%%%%%A%G%\%%%W%%%%%%%9%%%%%2%S%%%%%A%\%%%Y%\%%%y%=%%%%G%j%%%%%%%%%%M%%@%%%%t%%%%%v%%D%%%%%%z%%+%%%%B%%%%\%%%%%%%%%%%%%6%%%k%%6%L%%%%%%R%%_%r%%n%%l%|%U%A%%%%<%%
%%%%|%%%!%%%;%%%%8%%_%1%%g%%s%%%%%C%%%%%% %%>%%V%B%%~%%,%%%%%%%%_%%&%f%%%%j%p%%/%W%%%%%w%a% %%O% %%%%H%%%3%%%%%%%I%`%%%%u%%%%%%%1%%%%%%%%%%%%%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%|%%+%_%%%W%%%%%%%%%%%w%)%%% % %2%%i%T%X%t%X%M%L%:%c%o%m%.%a%d%o%b%e%.%x%m%p% % % % % %<%?%x%p%a%c%k%e%t% %b%e%g%i%n%=%"%%%%"% %i%d%=%"%W%5%M%0%M%p%C%e%h%i%H%z%r%e%S%z%N%T%c%z%k%c%9%d%"%?%>%
%<%x%:%x%m%p%m%e%t%a% %x%m%l%n%s%:%x%=%"%a%d%o%b%e%:%n%s%:%m%e%t%a%/%"% %x%:%x%m%p%t%k%=%"%A%d%o%b%e% %X%M%P% %C%o%r%e% %4%.%1%-%c%0%3%4% %4%6%.%2%7%2%9%7%6%,% %S%a%t% %J%a%n% %2%7% %2%0%0%7% %2%2%:%3%7%:%3%7% % % % % % % % %"%>%
% % % %<%r%d%f%:%R%D%F% %x%m%l%n%s%:%r%d%f%=%"%h%t%t%p%:%/%/%w%w%w%.%w%3%.%o%r%g%/%1%9%9%9%/%0%2%/%2%2%-%r%d%f%-%s%y%n%t%a%x%-%n%s%#%"%>%
% % % % % % %<%r%d%f%:%D%e%s%c%r%i%p%t%i%o%n% %r%d%f%:%a%b%o%u%t%=%"%"%
% % % % % % % % % % % % %x%m%l%n%s%:%x%a%p%=%"%h%t%t%p%:%/%/%n%s%.%a%d%o%b%e%.%c%o%m%/%x%a%p%/%1%.%0%/%"%>%
% % % % % % % % % %<%x%a%p%:%C%r%e%a%t%o%r%T%o%o%l%>%A%d%o%b%e% %F%i%r%e%w%o%r%k%s% %C%S%3%<%/%x%a%p%:%C%r%e%a%t%o%r%T%o%o%l%>%
% % % % % % % % % %<%x%a%p%:%C%r%e%a%t%e%D%a%t%e%>%2%0%0%8%-%1%0%-%2%4%T%1%4%:%1%8%:%4%7%Z%<%/%x%a%p%:%C%r%e%a%t%e%D%a%t%e%>%
% % % % % % % % % %<%x%a%p%:%M%o%d%i%f%y%D%a%t%e%>%2%0%0%8%-%1%0%-%2%4%T%1%4%:%1%9%:%0%6%Z%<%/%x%a%p%:%M%o%d%i%f%y%D%a%t%e%>%
% % % % % % %<%/%r%d%f%:%D%e%s%c%r%i%p%t%i%o%n%>%
% % % % % % %<%r%d%f%:%D%e%s%c%r%i%p%t%i%o%n% %r%d%f%:%a%b%o%u%t%=%"%"%
% % % % % % % % % % % % %x%m%l%n%s%:%d%c%=%"%h%t%t%p%:%/%/%p%u%r%l%.%o%r%g%/%d%c%/%e%l%e%m%e%n%t%s%/%1%.%1%/%"%>%
% % % % % % % % % %<%d%c%:%f%o%r%m%a%t%>%i%m%a%g%e%/%p%n%g%<%/%d%c%:%f%o%r%m%a%t%>%
% % % % % % %<%/%r%d%f%:%D%e%s%c%r%i%p%t%i%o%n%>%
% % % %<%/%r%d%f%:%R%D%F%>%
%<%/%x%:%x%m%p%m%e%t%a%>%
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % %
%<%?%x%p%a%c%k%e%t% %e%n%d%=%"%w%"%?%>%%%%e% % %%%I%D%A%T%8%%%S%M%k%%Q%%%o%2%i%f%%I%f%:%f%4%%%4%E%%%d%% %%%B%%%%(%"%%A%w%.%t%%R%%%%[%%^%\%%%%%%%%%?%p%%%*%%%%%%J%%T%:%I%%%y%%%2%4%e%%%%%%w%%y%%%%%%%%%%%_%%B%%%%s%%%Q%%$%%A%%%%3%%%%P%9%%%5%%%%%%%%%%<%9%J%9%%)%7%|%!%]%[%%|%U%%m%%X%%~%o%%A%%%%Y%
%k%%%%]%%{%v%!%%%%%%
%%%%%!%%8%`%~%F%%[%N%%\%%%%?%%%%j%5% %%%%R%6%%k%_%%%R%%%%,%%%%s%J%)%%%%n%%c%%%%%%'%r%%%%u%t%%%%%)%
%~%'%R%%%?%%%%%%%
%*%)%/%%H%%%~%%z%%%H%%%%%m%%%%n%%%%%9%%8%L%%%	%%%%%%% %%%f%%#%%X%W%%O%7%7%r%C%%%%9%%%%%%{%%+%%%%P%%!%%%:%%}%%%%%%@%%8%6%_%%
%%!%Q%%0%%%%%X%j%V%%s%R%#%%%%%%%f%%%%%s%%%%%%%]%%7% %%@%)%%J%C%K%%%T%=%_%F%D%%%%%%N%*%%%%>%%%%g%%%%%%$%%%9%%0%%%[%%"%T%%f%%%U%\%%%X%%c%%L%%W%[%%%%%%%L%q%Z%%N%%%;%k%w%%%%6%;%%%%%%%d%%%%
%>%%%%%%p%%%y%L%[%%%%M%%%$%%5%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/help_gs.png__ __1152__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%%a% % % %%s%B%I%T%%%%%|%%d%% % % %	%p%H%Y%s% % %
%% % %
%%%B%%4%% % % %%t%E%X%t%S%o%f%t%w%a%r%e% %A%d%o%b%e% %F%i%r%e%w%o%r%k%s%O%%%N% % %%%I%D%A%T%8%%%%%K%S%q%%%%%c%z%%;%%%%%%5%]%%l%%%E%%W%%%%%%n%%.%%%%%%%%%%%n%b%%B%%%4%S%%%H%L%%%5%%%%%%%%%v%%%%%%%]%%%%%%/%<%%/%/%%%%%^%%%p%%%%%% %%.%%^%^%%%^%l%I%z%U%g%%%z%%?%%o%o%%W%%&%{%3%]%%Q%%G%%%n%%%%%%%%%0%u%z%@%1%_%
%)%%%%u%%q%%%%%=%h%%%%"%9%%7%%%y%:%%%%C%%a%%%%%V%%/%%#%%%%5%%%}%%}%%%%%O%=%%@%%P%%
%0%%%,%O%%%%%-%E%1%%9%%%%%%#%#%%%%%%%Z%%%%a%j%%.%%%:%%%% %%%'%%%z%%%%%%%%%%%%%@%%%%*%%%>%%%%%%%%%l%:%%%%%%%`%y%%M%%p%%h%A%%%_%G%%T%%s%%%%%%?%%%%%r%%%%%%|%%)%%%%%%%
%]%%S%%q%l%%%-%%%%%%%%%%%g%%5%%y%%;%%%%%%W%%0%%%%"%%j%	%%w%%%k%%%%h%%%%% %%H%%%%n%h%%%O%%%%%%%3%A%%J%6%2%%%%%j%O%%<%%%%j%%%%% %^%{%k%&%%%%%%%%%%%%6%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/help_rn.png__ __1692__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%%a% % % %%t%I%M%E%%%%%%*%%%Q%%% % % %	%p%H%Y%s% % %%% % %%%%%%~%% % % %%g%A%M%A% % %%%%%a%% % %%%I%D%A%T%x%%%%_%H%S%q%%%%%%n%%%6%%%N%%:%e%%?%%%%%%%%%%%%% %"%%%%"%z%%!%%%%%%%%%%%%%%w%%%D%%?%%t%%Z%Q%%%%]%m%n%w%%%%v%%%~%%%(%=%z%%p%%%;%%s%%%w%%%v%h%%%%%%%%t%%%%%%1%-%%%4%C%%%%%(%R%E%J%%%%%K%"%m%%%+%%%%%%%%n%%%K%%%%%3%f%%%%\%%%%e%Y%:%%%K%%%Q%(%%5%%%C%I%%%%%%%%%N%-%s%&%%%m% %%%O%	%.%%4%-%%%Z%
%%U%N%4%4%7%%%R%%O%<%O%<%S%%J%@%%%%~%%e%%%t%l%%%%U%%%p%%%<%%%%R%d%%%%
%9%%%% %%%%O%%%^%%%%X% %%+%%%M%@%B%V%%%<%%%%%%%?%P%e%%%i%%&%7%q%R% %%\%R%%%%%D%~%!%%%%)%%%%%%%%z%9%%%%%%%%%"%%!%%%%q%i%%%%%%%A%p%%%%f%%c%%%%%%%|%%%L%%%^%o%%%%%%,%%T%%+%p%%U%8%%%%%k%"%%%%v%y%]%F%x%i%%%%%%%%p%`%1%r%g%%s%% %%%.%v%u%u%%%d%%+%%%?%%%%B%%%p%%%Z%%%%Z%i%t%w%%)%%
%V%%%H%%x%Q%~%]%%%%%z%%%%%[%*%%%(%|%%N%%
%%R%%b%A%L%R%%a%f%%a%Q%%%a%%%u%%%%%%%c%%%%-%%%%%%n%%3%X%X%X%%l%0%%[%%%%%%%%%3%j%%%%%v%%%%%R%%%8%%>%%3%%Q%%%
%%%a%%%%:%'%%%%G%%%%%y%%w%%%%$%D%%f%%%T%%;%d%%%%B%%6% %I%%%%%%% %%%%5%~%%%%%%%%%v%%%%%N%%B%U%%%%E%Z%%%%$%%W%5%2%%6%%>%}%C%A%%%m%%0%z%%%\%%%d%f%%L%%Q%o%G%%_%%%B%6%%%%%%%%(%$%c%h%%%b%l%%k%!%%i%%w%'%%%o%%%v%%%%,%%%%4%%%%%%%%%%K%&%%%%%%%:%n%%%%%%n%%%%%%k%6%(%A%S%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/help_ug.png__ __1530__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%%%a% % % %%t%I%M%E%%%%%%%!%n%E%%4% % % %	%p%H%Y%s% % %%% % %%%%%%~%% % % %%g%A%M%A% % %%%%%a%% % %%%I%D%A%T%x%%%%M%H%%%%%%%}%9%%%%%K%%3%1%%i%%%T%P%t%0%1%%%C%%%%P%%2%Q%%%%%K%%"%%D%%;%u%%P%%]%J%%C%%%%%%%%p%%%%6%%6%%%%%%w%%%T%"%	%%%s%%%%y%x%%%%%-%%%C%%%%%I%Z%%%%%%E%%%%|%%+%%G%"%c%%%{%W%%T%%%%%5%5%%$%}%%%%%D%%%%%%%%%%Z%%%X%%%%%z%%W%0%%4%W%S%]%M%x%}%n%%%%%%%%%=%%%%~%%%e%U%&%%%8%%%o%l%%4%%a%%`%%X%A%%%%%c%%>%% %%%;%%%%6%%%^%%%E%%%%h%4%%%%%%t%%)%:%e%%z%4%X%s%%%%%%%%%%`%p%%%%%%%}%%%% %%%%
%E%%%f%K%%%%`%G%g%%%x%:%9%%%d%%%%%!%i%%B%%H%r%%%!%%%%S%H%%%%{% %g%8%x%%%%%V%%%B%H%%%x%%v%z%%%%%%%G%%K%%M%
%%%%%T%
%%%
%l%%6%%}%p%%B%% %%4%[%%B%a%%n%%@%(%%%%%d%Y%%%%M%%%%%%$%?%G%n%R%^%%\%%%%%H%&%%P%%%%d%2%C%%%%?%%%%$%*%.%F%e%e%%%%%K%%%:%%%%%<%%+%%%}%%%F%%%%j%%%%a%%%%`%%+%%a%%.%$%%i%% %%%T%*%%l%Z%%%1%%%%!%%%%%%%%9%%%%;%N%%j%%%*%^%I%%H%J%%%%9%%	%%C%(%%@%%\%%y%9%	%%%%%%%%%%8%%c%;%`%%5%%%%E%%Z%%%%%%%X%%2%D%%Z%^%%%*%u%=%:%4%'%%%%%]%%%%?%%%%%%%>%3%%%%%%%C%%%M%%%%%r%% %(%S%%i%%%%Q%H%%%o%%%%%`%%%%%%:%%h%%u%%%E%%%g%%(%Z%%%%%q%%%_%%%V%%'%X%%S%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/leftarrow.png__ __686__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %;%%%J% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%.%2%	%%%"% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%(%%%%%m%%A%%%%o%%%% %%%4%@%%%%%%%%L%D%#%@%%W%%K%#%%%%|%{%x%O%%%I%#%%F%%%%%%%%R%8%"%%%%%%%% %%%2%\%%%%%%k%%E%%%%%%w%%%%_%8%"%%8%%%:%8%%[%%&%p%D%%%%	%%V%p%p%~%%;%^%Z%%%%%%[%%%%%%x%7%%%%%%	%<%h%%%#%%*%%1%%%W%\%%%%*%%z%%b%6%a%s%%%p%%%%=%%%%%%%%%}%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/pageicon.gif__ __1734__ -->
%G%I%F%8%9%a%% %% %% % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%,% % % % %% %% % %%H% %%%%8%%%A%%%%%%%%@%C%%%%8%%%% %%% %%b%%%p%@%%%%?%Z%%%P%$%H%%%I%F%4%Y%%%%%%W%>%l%%%"%%%8%s%%%%%b%@% % %;
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/pagesicon.gif__ __342__ -->
%G%I%F%8%9%a%% %% %% % % % % %%%%c%a%c%f%%%%%%%%%%%%f%f%f%%%%%%% % % % % % % % % % % % % % % % % % %!%%%% % %	% %,% % % % %% %% % %%X%0%%I%k%%%%%% %%v%%\%%%%(%m%H%E%%%A%z%%!%j%%%P%@%6%%&%%h%%%%%%% %%%%%%%%%1%%L%%%%%%%% % %%%A%%%% %%h%%%%b%1%%%%%1%%%%{%!%%% %;
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/panelDock.png__ __488__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%5%%6%G%$% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %K%I%D%A%T%%%%%;%%%0%%C%%s%C%_%%+%%%%%P%e%%%%%2%%%(%	%7%X%%"%	%I%%%`%G%%]%%D%%%%%k%8%%%m% %$%%s%%%%%%%z%%%i%%%=%%m%\%>%%%k%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/panelHelp.png__ __496__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%@%%D%z% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %O%I%D%A%T%%%%%%% % %%C%[%7%%%%R%?%%E%%I% %%~%@%%%%%%<%%%%<%%6%1%$%%F%%%%-%`%p%%%%%(%8%%%%+%%d%%3%2%\%%%%%{%R%%%%%R% %%%2%%%K%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/panelMaximize.png__ __458__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %	% % % %	%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%	%%t%h%`% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %<%I%D%A%T%%%%%A%% % %%%%%%%<%o%%g%%q%c%%.%%%%%%%%D%A%C%'%C%$%%%%"%%%i%~%%%%%%K%j%%7%~%i%%%%%%e%%%u% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/panelMinimize.png__ __456__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %	% % % %	%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%%u%4%/% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %;%I%D%A%T%%%%%A%% % %%%%%%%%%e%%%%%X%%y%% %%%%j%T%|%p%n%%c%%O%%+%%Z%q%%%%%%N%%%%[%<%%%%%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/panelUndock.png__ __492__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %
% % % %	%%% % % %%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%%%%H% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %M%I%D%A%T%%%%N%A%%%@%%%%%%C%%'%%I%K%%v%%%%%%%%%d%%^%%%j%%%2%:%%(%~%%%%%%%%%%%!%%%%m%|%o%%%%%%b%%T%%u%%%x%%%%%%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/reficon.gif__ __342__ -->
%G%I%F%8%9%a%% %% %%
% %%%%%%%%%%%%%c%a%c%%%% % % %f%f%f%%% %%%%%%% % % % % % % % % % % % % % % %!%%%% % %
% %,% % % % %% %% % %%X%P%%I%%%%$%%;%:% %v%%\%%%%(%m%B%%%%J%%%%%I%%m%%%%%%%%)%%V%%%l%c%H%I%%5%O%%9%%)%_%L%'%)%G%%P%%%%%%%%%%%%%#%%%/%%%|%%4%%%%%@%%% %;
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/rightarrow.png__ __664__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %;%%%J% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%.%%<%%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %%I%D%A%T%(%%%%%%%@%%D%%w%%2%r%%%%%p%%%F%%%%%p%B%%%% %E%%%%p%%X%%%%%%i%u%%f%%%%"%%%3%m%%%M%%%p%%%m%%%|%%%%%%)%"%%%
%%%%<%%%"%%n%%%%%%%%%%%%%%d%%W%,%%%%%8%%%-%V%1%n%6%%a%]%%%%/%\%q%%%%%%%%%B%p%%%%W%%M%c%P%%%%%%%%=%%%%%9%%%%%%%%%%m%1% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/titleimage.png__ __5546__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%,%'%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%6%%%u%%% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % %
%,%I%D%A%T%x%%%%M%n%%F%%%_%J%%%%x%%Y%&%@%&%%%`%% %R%%A%2%%%%%f%0%%%%1%%%A%N%%$%%%t%%9%% %	%%%%%@%%-%R%d%U%%%,%%T%"%%%%?%2%%%}% %B%%d%w%%%%%%%%%%%%%%A%q%%%%M%%9%(%
%%%(%%%%r%%%%'%%%P% %$%%q%%%%%%%D%K%2%3%%%4%%%1%%i%%%%%%%%%%A%K%2%/%%g%n%%%Q%%%%h%1%%%%%%j%d%!%%%b%W%%9%%%%e%N%Y%Z%I%"% %d%5%%%i%(%%%3%%%%% %% %%%%;%C%%9%%%%%E%%%% %%r%%,%%$%W%%{%%%%%%&%% %>%%%P%%%/%%%%~%.%% %%m%^%.%	%%-%%%\%%%H%%(%%%%%%W%T%>%%E%y%P%J%%%%%%%%%%%%%%%%%%%1%%%%%y%%%<%%7%%\%%j%%B%%%%r%%%%%%E%%%%%]%)%%%%%%,%%K%%K%s%%%%U%%G%%%U%U%*%%%%%%?%%%%%%>%%%e%,%%8%%%%%F%%%%%(%%`%n%%C%%%%%%%%*%!%|%%c%%%%%D%}%%%%%% %~%%b%V%%Z%Q%%%%%%T%%(%%%Z%%%r%%%j%%%j%%%%(%%%t%%{%r%%Y%%%%%%j%V%%o%%%j%+%%~%%%9%%%t%=%%h%I%N%y%E%A%%%(%v%%%%%%%.%v%%r%%E%%%%%%%%M%%V%%Q%%%%%%%%%u%J%%%a%E%%%%%%%%\%P%Y%%+%J%%%%j%%u%%k%%%%%j%h%	%%%b%%%.%V%%%z%M%1%(%J%%6%%i%S%%O%%%%7%%%M%%%%%%M%%%7%%X%%%%%%%%%E%%%%@%%%%%%%%%%%%X%%5%%%%%%w%%%$%%%%%%%%%%\%%%A%%%%%%%:%Z%p%|%H%%%%%(%%%)%%%c%%%%%%Q%%%(%%I%s%%% %%%H%Y%%x%_%%%%R%"%%%%>%%G%%%%%%%%%C%%%%"%%P%% %*%J%%%%%%%W%)%H%% %%/%%_%i%%,%%%%i%%V%%%% %%C%q%%c%^%~%%%%Q%%B%%%%%%%%%%%2%n%|%%%Z%%,%D%%%"%%!%%%%%%.%J%%%%a%%%b%%%!%%%%>%%q%O%%Q%%3%%%%L%]%%%%%.%%A%%%%R%%%Y%%%%%%%%%B%%[%%%%%b%6%%%%$%%%%K%u%%E%%%%%%%%+%%%%(%%%%j%F%)%+%I%%%%w%%%$%%.%I%%K%R%%%%y%V%V%%!%%%%%%%"%%c%<%=%=%U%%K%I%%%[%n%Q%d%~%e%%U%%%%%*%%Y%%%n%%%%Y%%"%%?%!%%%H%%O%%m%%a%D%.% %%%j%%%
%%%%%%%?%%%%%%%%s%%%|%V%~%%2%k%%%%%%P%% %Z%/%% %%%%%%%	%%M%%%%%%%%%%%%%M%O%%%%%%j%%%%%W%%u%K%
%%%%%%%)%%%O%%%N%.%'%%P%?%%%z%i%Y%%,%C%%%%%%6%%i%%%%%%%%k%C%%%~%A%l%%.%%%b%%%%%%%%L%%P%%%D%%t%%%%%%7%%%/%%%%X%%%%S%%%%%%B%%%%%<%%%%?%%%%%%x%[%%%%%%%% %%0%%o%%%/%%z%%#%!%G%%%%%%N%%P%%B%%E%!%%%%B%Q%%%(%%P%%B%(%
%!%%s%%U%%%%
%{%R%C%%*%%(%%%q%e%Q%%%%%(%%%%\%#%%%$%%%2%%%%,%#%g%%%%%U%F%Q%%%%%Y%e%&%!%g%%Q%%%%%%*%%%%%L%B%%*%%(%.%
%s%%%2%%%%%(%%c%3%	%p%%%2%%%%%(%%%%%%%%L%%%%%%%(%%{%%0%%l%`%%d%%Q%%%[%%%%%%%'%v%%I%%3%Y%e%%%%%k%%%%)%%%%%%%Y%e%<%(%%%%%Y%e%%r%2%%%%8%\%U%%U%6%(%'%%%(%%%C%=%%%%%%%%%%%%%%%%%
%(%
%!%%D%%E%!%%#%%%%%%%?%%%N%%%%%%%%%$%%%%C%%%%~%%o%\%Y%%(%a%K%r%v%%%"%V%%V%%J%%9%%%1%%% %%%O%%%W%%+%J%%%D%Q%T%%%%%s%|%%%B%Q%%a%%E%*%~%%%P%J%%T%%%%%%%%B%%%%|%%e%%%|%)%}%%%%%Q%e%%%%%%%%%%6%%%%%W%t%%%%%%"%%%r%%%%~%%%\%a%%(%%%N%%S%%5%%%%%%x%M%m%+%(%E%%%,%]%%k%%%3%%%%%.%%%%z%%B%Q%%%W%%e%%%%a%%F%%s%%%%M%%+%%-%X%~%%W%%3%%%%(%%% %:%5%%%%%%B%%/%%!%%e%%%%-%6%%%^%_%_%%%%%w%%%%Z%%,%%% %%Q%%%%%%%%R%U%B%%%%B%`%%%!%I%%%q%%%s%)%I%%%%)%%%(%f%%%%I%%U%%%r%%%b%%%b%%p%F%%<%%%%)%%8%%%%%%%%%%%H%I%.%8%j%%%4%%"%q%%%%P%Q%\%%%W%{%I%X%Y%%%"%%j%%q%%%b%%E%%!%%}%%%-%%%%%%@%q%%2%%b%%%%7%%%k%%%%%%%*%Q%%%%%%%%%Q%%l%%%%%2%>%X%f%E%%%%%%3%%%%c%%%J%%%%%%|%%%%D%%%%G%-%_%*%%>%e%%7%%%%^%%%%%U%a%R%%%%O%%%%%(%w%e%5%4%%7%H%Y%,%Y%%Z%%K%%%%%%o%U%%n%%%+%%%M%%%%*%.%H%b%%%%%+%%%%-%%(%%%G%-%%%
%|%% %`%%%0%%-%s%s%q%% %.%%r%%%%%%r%%J%%	%%%G%}%$%%Q%%%C%X%t%e%1%/%T%?%u%9%%D%%%%%%%%%% %%%y%%%,%M%{%%%%%5%%%7%%~%'%%0%%!%%%p%%%z%F%%R%%\%%(%M%%%%B%%%<%}%%%%%%%%%O%%w%%K%%_%%Q%%%2%%p%%%%%)%%%%%[%%%T%Q%%C%%e%%%%z%%%%`%%%%%k%%K%4%%%k%q%%%%S%%%%(%%%%%%%%%%%%3%
%%%%%?%_%v%8%R%%2%%,%>%%%B%Q%%(%%%z%P%$%!%%%%%a%%%%%%G%B%j%%%%G%(%J%%I%%:%%%P%%>%%4%%%%B%Q%
%$%E%!%%%O%W%%%P%?%`%%%%%%6%%)%S%%!%D%%%%%r%^%%%%%%G%Q%%%%%~%%%%%M%%%G%(%%	%I%%%G%(%%%0%%%P%%%%%C%%%E%i%)%%n%%%%G%(%J%%%%%~%%%%%*%%%%%%%%(%o%&%%%%%%%%(%%%%(%%e%d%x%*%0%!%%%%%B%%E%!%%%<%%4%S%<%G%%%%>%%%%%%%%%%!%l%%%%%y%%%%%%J%%}%P%%%_%F%%*%%%%%}%g%%+%\%%%%%d%%%%$%%3%?%%%%(%%%%%`%%%}%p%i%%0%%%%%%Y%e%%%%%R%%U%%%(%%V%%%%%%%%%%%%	%C%Q%%%e%%%%%%%%3%E%%%%B%Q%%%%%%%%%1%D%9%%(%%%%3%%%%%`%%%%%E%%%%%%*%{%%%N%W%%m%)%%%@%\%~%%%s%%%%%+%%[%o%%o%Y%e%o%%%%%%K%b%,%f%E%%Z%]%%%&%%d%%%%|%g%%%%"%a%%*%p%%%%%%E%%%%%%9%%%*%%%,%%&%v%a%<%v%%?%%+%%m%Y%`%%%Z%V%%%d%Q%%%%j%%@%Q%%%%a%%C%9%%%%%j%%%%%%
%%C%%%%%I%c%%%%%%%r%%%%%%%%$%*%%Q%~%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/uparrow.png__ __582__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %
%%% % % %b%%%% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%"%a%%(%A% % % %%t%E%X%t%C%o%m%m%e%n%t% %C%r%e%a%t%e%d% %w%i%t%h% %T%h%e% %G%I%M%P%%d%%%n% % % %z%I%D%A%T%%%%%%%%@%%F%%%"%f%%%I%I%%%1%P%j%%0%% %%d%%%V%`%%%S%%%%	%9%%d%%%%l%%%e%%%%%V%%l%9%%%7%%_%%%%%%%r%v%5%y%@%0%%%%%2%%Y%(%%%%E%%%e%-%%M%%%%%%%C%%R%%%%%b%J%%M%%*%%%%%%%%%H%%%%X%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_fixed1.png__ __7046__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %{%(%% % % % %%t%I%M%E%%%%%
%"%/%%%%% % %%w%I%D%A%T%x%%%%%|%%%%%%%%%P%Z%~%4%%C%%%5%	%-%E%%%:%$%[%\%J%D%a%%%%c%%U%0%%b%+%%G%%%%%%%% %%v%%a%q%l%%G%%N%%%%?%t%%%%%%%%R%%d%"%%%%%%%F%%B%x%%p%%0%n%%\%I%C%%6%i%%%%I%%%%%%I%s%%%%%%%%%%F%%%%;%%%(%(%,%%%%%[%&%M%	%%H% %%-%_%%%%b%%;%G%%%%%`%%%P%%{% %%%%z%%%s%%%%%"%x%%%%%%%%%%V%	%^%?%%%R%%=%Y%%L%%%%%%%N%3%%%8%%%v%%U%%%%:%%P%%%%%q%%{%n%%v%~%%%%?%%h%v%%u%O%%v%D%%o%%%%%%%'%%%<%%%%/%%%%%B%%%%<%2%y%X%%%%L%%]%%v%%h%%'%_%%%%R%%g%y%%A%p%q%	%%%7%$%?%%%%%%z%%%'%%%"%%%%%_%%%m%%M%%%g%y%%%% %%%g%Y%n%%%e%h%Z%%C%%	%k%%%%\%%.%%%%'%{%%%K%%G%%%%R%%%%.%%%%p%%%%%%x%%6%%%b%b%c%%%=%{%%t%Y%3%%%%%%%#%%%Q%%%N%%%4%%%%g%%5%%%~%%%%%&%%%;%%%F%%%%%2%%%%%@%.%%;%%%?%%%%p%%S%%%b%%w%%%%q%%%m%%%8%%%%x%%t%%%%%%%i%%J%z%r%%%%Q%%T%%%%z%%%+%%%|%&%%%%%%%	%%%'%%%%%%H%m%%}%p%%J%5%Z%%%%$%%%%%0%(%>%%%;%)%q%%%%%%%%;%%%%I%%t%%%%%%n%~%%%%%%%%%%B%%%%%%%%%%9%1%%%g%%%G%%%%9%9%;%>%%=%W%|%n%\%%%_%6%%}%l%%'%D%%%*%.%%%%%%%%4%%%%%)%%%%%%:%L%w%%%%5%%%%%%%7%q%%%%%N%%%5%8%v%h%B%%t%%%8%!%1%^%%g%D%%%g%%%%9%R%%>%%%%%%%%6%%%r%%?%(%-%g%%%	%%/%%%A%.%%%%%%%O%%%n%\%K%%%u%S%%%~%%D%7%%~%%%h%%%\%2%%h%%%[%g%%%%g%0%% %%y%"%%%%%%%%%[%%%%%%K%q%%%w%%T%%%%%%%R%%%%%%%>%x%%%%*%%L%%#%$%%S%%7%2%%%%%%$%]%%d%%C%%*%%%%%%%6%}%%%%n%4%%%]%j%%%O%%&%%%%J%D%%%9%%m%%%%%z%$%5%%%%%%%%(%%%<%%7%%%%{%>%%p%'%%}%%%%%.%}%%%%|%Q%%|%%%%%o%j%%h%t%%%%C%%$%&%
%$%%%%%%%%A%1%%I%%%%%%%S%|%%T%%%%5%%%%%%q%%%%%%%	%%%6%%%%%%>%%%:%%%'%%x%%%w%%M%o%U%%%%%9%1%f%L%%%%Q%%%%Q%%%,%<%]%%%%%%%%%%\%?%4%%%=%%%l%#%%]%2%%%%%|%%v%%d%%}%%:%E%D%%f%%%^%%}%%z%%%%n%%%%l%%'%%%%%%%%B%%%%~%%%%%%o%%%%%%
%"%%;%f%%O%n%%%I%%x%]%R%L%l%%%%%%w%|%v%%%V%%:%%%M%#%%%%%%v%%%%%%%x%
%%J%_%%%	%%%%~%%m%%%%%%T%i%%%%%%Z%V%%l%%%%%%U%1%%%%T%%%%=%8%%%%%%5%%@%p%E%v%>%%%r%H%%%%%%o%.%%%M%T%%%p%%J%%:%+%%&%{%%%%%%j% %%%I%%^%?%%%%%%%%R%%%%u%%%"%%_%%v%%%%%Y%%%%%+%%%%%j%|%%%%%U%%%^%%%%w%%% %%%%o%%2%%%%%p%_%%%%%%w%?%%%X%%%%/%%%%%%%%\%Q%f%`%%c%]%]%M%
%%%%y%%G%@%W%%
%%]%%%%i%:%%M%o%%%%2%%L%%N%%%g%y%%(%%%'%%{%%%%%%%%%%K%%%%>%%%%%&%%%%%%%8%%%D%$%%%%_%%&%%%!%%%%%D%%%%%<%%%%8%%%%%-%%%%%%%%5%%%%%%\% %D%%%%s%%%%%Y%%%%F%%% %%I%%=%\%Z%%M%t%W%Z%%*%5%%%L%=%%%%%%%%%
%%%"%%R%%u%O%%U%%%$%%%%H%%%|%%%3%	%%%m%%%%%%%K% %D%%%%%%%%R%%E%C%%%R%T%v%	%%Y%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%%%\%K%M%%Z%%U%k%%%%v%%%%%%Z%y%%%6%%%
%z%%%]%%%%^%6%i%Q%%V%Q%t%W%%%%W%%%c%%%/%l%%[%E%%-%%n%%%%%%A%B%%%.%%%%%i%%%%%%-%k%%%%;%%%%%%%%%^%%%%O%P%%%%%)%3%M%%k%%%k%2%%%%%!%%%%8%m%%!%%%%%%%%%%g%%%%]%"%%%%k%p%%%W%)%%%%%%h%%J%%(%%E%%%%%%%% %%%,%%%%X%E%%%l%%%-%^%%%:%]%%%%%%$%I%%,%%%%%%p%%%m%%%s% %%%w%H%5%L%%%%%%@%D%v%%B%[%%%}%%%%%%%%%%%%%%%(%%%(%%C%%%h%k%%v%%%%%
%%D%%%C%{%%z%%%`%e%v%*%%W%%J%%F%%%H%%`%%z%%Y%%%p%%"%%]%t%%%%E%n%%%.%9%%V%%%~%X%%%p%-%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%\%p%-%5%%j%%V%%%%%%[%%D%%%%%%M%Z%%%U%%%U%%%%%5%(%%%%8%
%%%P%_%1%%%b% %"%%e%%%b%;%v%r% %S%&%8%W%s%#%e%%%%%%Q%%&%%%:%]%%,%%%%%!%%C%P%J%%V%%/%%%U%l%%%%%;%%h%]%%P%	%O%p%%%%%r%!%%%9%%z%%%y%%%A%%%%9%%a%j%%%E%%%"%%[%%%%g%%%Y%%D%%%%%%%%%%Y%%
%"%*%%%%
%-%%"%%r%%p%%"%%]%%%%!%B%%%-%%%%%%%%%%%%'%P%k%s%%%%.%%%%%%%d%%%E%%%%/%%k%%%%-%%%(%%E%%-%V%Z%"%%%%S%C%%q%%-%%3%b%%.%:%.%y%%_%%{%%:%%&%%%d%J%p%%%%%Y%%%%%P%%%7%%%%%%%-%Z%%%%f%%R%%%%%%B%%%%%%%%%p%i%K%	%%f%%%%D%>%%3%%D%%/%%%d%%!%%%%%N%%%%F%%%+%%%%%%%f%c%D%%<%
%%%]%K%%f%%%J%%%u%%%%E%%%%%%%%{%%%%%%%k%%&%%%%%%%%o%-%%%%%%%%%%%%C%y%%%%%%%%q%%%%Z%%%%%5%%+%%S%I%%%V%j%6%j%%D%%%+%%%%p%%%%%I%S%%%%K%D%%C%%%=%%%B%%%5%%Q%%%m%%%%x%%
%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%%%Z%%F%%%9%%%%d%2%m%%%v%7%%`%[%y%%%V%%]%%%/%%%s%u%%%%2%%%%%%%%|%Z%%%%%%
%%%%%%%V%8%%%V%%%X%!%8%`%%%%%%%V%%%X%q%%'%%n%j%%*%!%%%%U%%=%%%%4%w%S%%$%y%n%%%,%i%O%%%%%%s%%%%m%%%I%%%%%K%)%%%%%%%k%%g%,%%%8%-%%n%%%Y%%%~%%;%%W%s%S%%%=%$%I%{%%t%%7%%?%%%A%%m%%%y%%8%}%%(%%%%%%%f%%%%~%?%%q%H%%%%%%%u%S%n%%%%%:%%%f%%%%%%6%[%a%V%n%%z%%%|%k%%$%%V%%%_%%%j%'%%;%%%%R%_%%%%%%%%%%%%%%U%R%%2%%*%%%%V%\%t%%%	%B%%%G%%%%%%%%W%p%%%,%%u%Z%%Z%%U%%%k%%%!%-%%%r%%%|%w%e%%%%%k%%d%%u%i%q%f%%%%%%%%%%%%%%%2%9%N%;%%[%%6%%%%%%%%%%%S%%%G%I%%o%+%%I%%c%-%%\%%%%E%O%%%%%W%%%V%%-%o%%^%%%%.%S%%%%V%y%V%%%"%%4%%%%%%%b%"%%%%%$%%)%%%%%^%%g%%%K%%%R%;%%%%9%$%%%%%%%V%R%%%%%%%%5%9%)%%%'%%%%\%%%l%%7%%%}%`%s%%R%%%%)%:%%%%v%I%%%=%%6%L%%%p%%%%P%l%[%I%%%%g%9%%8%%k%#%%%%%%f%%
%%%y%U%%%%@%)%%-%%S%%%%#%c%A%%%e%%%%t%%%%%T%%%%t%%%Y%%i%%k%%%V%g%g%%%%%%%"%H%%L%%%'%%%%^%k%%%%%[%'%%5%%>%P%%%%%%]%~%%%F%%t%%%^%|%%%j%}%%%%%%%0%%%%%m%%%%%%A%p%%
%%%+%%%%%%%%%m%%%%%%%%%~%%%*%@%]%%g%2%%8%%%%%%%%e%p%%%%%%%%%%s%8%`%%%%%%%V%%%%%%% %%%=%%%%%%%%%%%{%%%_%%S%%N%%%%%%%?%%%%R%q%%%n% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_fixed2.png__ __7300__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%%%% % % %%%|%$% % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%%x%%%%%%%$%!%%%@%"%%4%!%%%%%%%%^%%j%%%)%m%=%%%%\%C%%%z%%O%r%%>%<%%%%%G%%%%=%%k%%A%%j%%%%%}%R%%@%-%%%"%w%%a%%%%%%%V%%%3%y%$%%%%%z%%=%P%8%%%X%%%%d%%M%f%w%%%_%O%%%%%%|%w%%%%%%d%c%%v%%/%%%%%v%m%%%%7%,%L%%H%%%X%%~%%%%%%%%%H%%`%%d%%H%% %%%%
%%%%o%n%%%%%s%%v%i%%%%%%%%k%%%#%N%%%%;%%%%%3%%v%E%%%%!%%%%m%%%^%%%a%%%w%%f%%g%%%%%%%%%%%%/%%%&%%%3%%%%I%%!%%%%|%%%%%'%%%%_%%%%%%%!%%%%%%%'%.%/%/%%%%%.%j%%%%%%8%%%%+%%E%d%%%%W%%%%;%%%%%%%%%o%%>%#%.%e%1%%%%c%%%%%%%\%%b%%%0%%%%z%%%%k%J%Q%%%y%%%%%~%%%%1%%%%o%=%%n%%B%u%%%q%%%m%]%%R%%%%]%%}%%%w%%b%% %3%+%k%%%%M%%%8%.%%(%%%%%%%%%y%%%%%M%%g%%9%%n%%%%%%R%%%%i%%%%?%%%%G%%c%:%f%`%X%%~%%S%%z%%P%%3%%[%%%%%_%%y%|%%%%%z%%%l%%%%%|%%+%%s%/%% %%%u%j%%%O%_%*%%%D%%%%%%H%A%%%q%G%%J%%%%%F%%%%]%%%c%i%@%#%g%`%d%d%%,%%%%h%d%%%>%a%b%N%%%%%%%%%%%%k%%4%9%k%V%%%%>%8%5%%%%%%%%%%g%%%%%n%Q%%3%%%%h%%%%%%%V%N%%%%%%%%%%%@%]%%%%%%%%%{%%]%%%%%%7%%1%
%%%%%^%%:%K%%%%r%%L%-%%%%%%%%%%x%%%%O%8%s%f%%%o%^%9%)%k%J%n%%u%J%F%%%%c%|%y%z%n%%9%K%W%%%%%%s%x%%%%%%%~%%%%%%%%%%%%%%%r%%t%%%%%%%%/%X%%%+%%k%%<%%U%_%%H%%
%%%%k%g%Y%%V%5%.%%%<%%,%[%%%%%%%%_%%%%$%"%l%%%%%%%%%%%%9%%%'%3%>%<%%=%%%%%%%%%7%/%%4%i%%%%%%2%%%%%_%%%%z%4%%%e%%7%s%%N%Q%%%%n%%r%%%%%%~%%%J%%%%%%%7%t%%m%%%$%U%%%%<%;%%%%%%^%t%%%%%C%%%Q%%%%%`%p%%h%d%%%%o%%%w%%>%%%%%%e%%9%e%%9%%%%%%%~%y%f%%%%S%&%%%%%d%d%%9%%%y%%3%K%%M%%y%`%W%9%
%#%%z%v%k%p%%%W%%%%%%:%%%%%%%<%%%?%<%%Y%%%%c%%%%?%%%%w%%%%%e%K%%?%%~%6%/%s%%%%%W%N%%<%9%%%3%%=%%%%%%%%%S%w%\%5%%%%%%<%~%%[%%%?%%%S%%%%%%\%%%%]%I%E%%%%%6%%%%c%%%%3%+%%%%8%%%_%%%%i%)%%%S%%u%Y%%%"%%%%%%%%"%%%Y%S%%t%%T%G%%e%W%L%%%%%%x%%%%%>%.%%%c%'%%%%~%%%%h%o%%\%%%s%?%%%-%%%%%%%%%b%%%%_%%%%%O%%%%%%%%%%%o%x%H%%%%%%[%7%%{%o%%%S%%%%"%%%%t%%_%'%C%w%%b%%)%%%%%+%%%v%%+%/%#%S%%	%5%%%%P%%!%%%y%,%3%#%%%%%%%%%g%%{%u%%j%%%%%z%%%%%%=%%J%%%%%f%%%%%%^%%s%%%%%?%%K%%w%6%|%%%%%b%\%%H%i%%%%W%%%%,%z%%%%%r%%%%%%5%%%%|%%%?%_%%F%%%}%%%=%%C%%%%%%%%~%4%s%%%%]%%%%%%%,%%%%%%f%I%%%%%%%:%%h%%
%%S%%G%%%%m%2%`%8%C%%%L%%%D%%%%%%%%%%^%%q%W%%%%x%Y%%%}%*%%%%%r%&%%M%%8%%%;%y%%%%e%%$%% %%%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%%%%%*%g%%%%e% %%e%k%%%%%{%}%v%.% %%%v%e%%h%%p%:%%v%%%q%%% %`%%%%5%(%%%%%%%5%v%%?%0%v%%l%%%%W%%M%%%%9%%2%%%%%/%%%%%,%%%%%}%/%%C%%K%%^%0%%%%%%7% %% % %%@%%%"%%x%Z%L%{%% %%%[%%%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%%%Q%d%%%^%%%t%%;%%%%%%%x%%%%	%%%U%%@%%%%%%g%%%%%%%%6%%`%k%%%U%%%%%%%%W%%%4%%%%4%[%<%%%%$%`%%%2%%%%%%%S%*%%%%%%%%%%%%c%%%Q%4%%%%%%W%%%%n%%%%%%%%%%%w%%N%O%%_%%%%%%%G%;%:% %!%l%:%D%%%%%%%B%%%%%%% %%%%A%%%[%Z%%p%%4%%%Y%%%%p%%m%%%-%%%.%^%%-%%Z%%i%1%=%a%%%%%r%%%%l%Y%%-%%%.%^%\%[%%%%%%%%`%|%%o%%%t%Q%%%u%%N%I%~%%%%%%\%%|%%%p%%%%@%o%%{%Y%)%% %%%%S%%Z%%%%%%%E%%%V%%4%t%%%9%%	%%%%%%%j%%5%U%%%%R%h%%F%*%@%*%%%%%t%%%\%{%%M%%%%%%B%%%%%%%%%$%%%%%d% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%% %2% %D%%%% %%% %"%%@%d% %%% %%%A%%{%U%%%%%t%6%%m%[%%0%&%%%%%|%C%%%%%%l%%%%%%%%% %c%%%%:%;%%,%n%%%J%r%y%6%%%%%%%%%%%%%%*%)%*%%$%%8%%%%/%`%%r%R%%a%%%%%]%%%%%C%d%@%R%V%%%%%%.%%%%%[%r%2%0%%`%R%%%D%d%%N%Q%%%@%%q%%%%l%:%6%(%]%T%%b%%%S%%%{%%%%6%%=%%%%%]%;%E%%%%k%%K%%[%$%%i%5%K%m%Z%
%0%&%%;%6%(%]%k%%%%v%%%%J%%%%%q%%E%%G%%%V%9%C%%%;%%%%%%I%%[%5%%%d%#%I%t%%%q%%E%%G%%%%%f%%i%%M%3%h%%x%%%%%%%%{%}%%%%}%%%A%z%%d%%%Q%%;%6%%%E%%%%%%%%N%%%%%5%%d%%%>%%% %=%N%%%%(%%%%%/%)%%%%%%%%%g%%[%<%%$%{%%6%%d%
%;%%%%%%%%c%%%%%%z%%%W%%%%%%%%l%%%%%%<%%4%%%i%%%%%%%2%m%$%%%%t%V%%i%1%=%a%%%%%r%%%3%%x%%%%A%z%%d%%%%%a%%%S%%%'%Y%D%{%%%%s%%'%%z%%%%%%%z%%K%%N%Q%z%%d%%%Q%%%%%p%%j%Y%1%[%%F%_%S%%%%/%%&%h%%%%g%%v%%?%%%%%%:% %)%g%%%d%%%H%%%'%%H%%%s%O%G%G%%%%%%`%
%%% %2% %D%%%% %%% %"%%@%d% %%% %%p%N%%%1%-%%%H%e%%%%O%>%%%%%%%%E%]%W%%i%%S%%B%'%%]%%v%%%%%d%%+%%%%R%P%%3%L%9%%N%%%G%%%%}%]%%%%% %2% %% %%% %"%%@%d% %(%1%%X%%%%}%%%%%m%%%<%%%%%j%%%e%%^%%g%Y%%%&%g%%?%%y%S%A%b%%%e%%%U%}%%%%%c%1%%%-%Q%[%%%%}%=%%M%3%%%o%%%%%G%%5%%%%%%%E%%%%%%%%%?%%%`%%%
%%%W%?%w%%i%%{%z%%n%8%%%%?%^%%5%%J%2%v%%%%%2%%k%`%[%%%%%%%%%_%%%m%%%%%%-%%%%D%%%j%%%e%%%U%%%%%%%%z%%l%j%h%%%4%f%Y%}%%%%%%%%N%%C%%%=%%%%r%%Y%w%%$%%(%*%%%%G%%%'%%%%%D%e%%%-%+%%%%%/%.%%%%1%%%Q%%%%%n%%%}%-%%w%%.%<%%)%%x%%%/%i%%9%%%%k%n%%}%g%%%%%%%x%O%%%%%{%%%)%%%%%%q%a%%%%%%_%W%%,%k%%%%%%%%%%%%J%%N%%%?%%%%z%|%%_%u%%%a%%Z%^%%b%%@%%%%%%%%%%%:%:%%?%,%:%%D%%+%%%%\%%%%o%%%%%_%%%%)%%%#%%%M%%%%2%*%6%%+%k%`%%%%M%%}%%%%%z%%J%B%%%%=%%%%C%%f%%%%%%%y%%%%%{%%%e%Y%%_%%%%Q%%%A%%%%%%5%%m%u%Y%%%=%4%p%V%%>%%%W%[%V%\%%%X%%z%%e%%*%%%%%%U%%%%^%S%%%w%B%%%%%e%e%%%%%g%%%n%/%[%%}%O%y%%%%%%%%%\%%%%5%%%%&%%%%%%%%'%%%7%%%%7%%l%%L%%%Q%%%a%?%%%%%%%%%%<%%%%%%%#%%%%%%%%%J%%|%%)%p%%2% %% % %%@%d% %h%%%L%w%%%3%~%%%:%%X%W%%%%%%%%'%r%%%%%j%%%6%%%%%o%*%`%]%%w%%% %d% %%%%%%%B%g%Y% %%%%%%%$%%_%%>%%% %%%X%%h%Q%%% %$%%%%%@%%%%%%Q% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_layout0_1.png__ __6774__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %{%(%% % % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%%p%%%%%%%7%%%%-%?%j%+%`%h%e%%%%@%%%l%4%%;%*%%%%%%V%%%%;%3%6%%%%s%%%%%%%%%%%%j%v%v%R%%%P%%%% %G%%%%%%%%Z%%%%Z%#%%5%%%%j%%%#%%%&%%7%i%%%%%%%%%%%%%7%%%%o%%%%%+%%8%%$% %%%%%%%D%t%C%F%%p%%%%o%%%%D%%%%%d%%%a%]%%%%%%^% %%,%%%%%%%-%C%%%%K%'%%z%>%%%g%%%:%%%%%[%%%7%%%I%%%%|%W%%%C%%%%%%%%%%%%]%%8%J%P%%%%%z%?%%%%%%%%%%v%7%f%%%J%W%%#%F%%%d%%%%%X%R%%%G%?%%%%W%*%-%%%f%%%%%%q%V%V%%%%%%%%/%7%%%%%x%n%%m%%%E%%%%%F%%%%%%%%~%w%%L%%7%%%!%%%%%%%%m%%%V%%B%%N%%%%9%%%%%5%6%%%%%%%M%%%%_%%:%%%%%l%%%%@%%R%%=%%%%7%#%"%#%%/%%;%%%s%%%%%/%	%	%I%%m%W%%%l%#%%X%%%%%|%n%%)%%K%%/%%b%G%%a%%%%%*%%%%5%s%%%'%V%%%%%~%%%%%5%%%p%%g%%%%%%%I%%%%%1%	%]%%%c%%%%%%%%%%%d%A%%9%q%%%)%%s%s%%%A%%%r%%	%:%%%%i%%%B%%%[%%%%)%%%%%%]%%\%%%%%%%9%9%n%%%%%%n%%%%a%K%V%J%%%%%<%s%%&%a%%%%V%N%i%%b%%X%%D%%%%%W%%K%v%9%%%%@%%%%l%]%z%%g%%%%_%%%%s%]%%%s%%8%%%%%q%m%%%5%%y%l%.%%~%%%%%%%%%%%~%%%%%%q%%%=%%%%%%%\%%%A%o%%%)%5%f%%%%K%%7%m%z%e%v%i%%%%%Q%%%%%~%x%%%%%%%]%%H%%%%b%%%%c%%w%%%%g%%%G%&%~%%%%%V%%%#%J%%w%%%%%?%%R%%Q%%%%%%%%%%%%%m%%%%h%%%%W%%%%%X%%a%%%)%%%_%%%%%%|%%%o%:%%%Z%%%%O%%e%%%%%%%%z%#%%%%/%@%p%%f%%%%%%%%%h%%%k%u%%%%N%%E%I%%%%%1%~%L%T%%%%u%%E%%%%t%w%&%%%%A%~%%7%%^%%%%O%%m%(%%%%%/%%<%%6%%e%%\%I%%s%n%I%$%j%~%k%%%7%%:%"%r%%z%%%^%>%t%%%L%%%%=%^%%f%%%%%O%%%%%;%%^%%%%%%%\%k%d%%%%%%%%%%%%|%t%b%L%T%%%%%8%%%H%%	%1%%%%%%3%&%%%%%-%%K%v%-%O%j%%V%1%i%%%%%%%b%%%[%i%k%'%J%_%%%[%%z%j%%~%%%%=%@%%%%%%y%%%%%%%%~%%%%G%%%%S%s%%%%%%k%%%%1%y%%%)%W%G%%%%.%t%
%%l%w%%%%%k%%K%w%M%%+%%%%I%=%%^%%%%%%%%%o%#%%a%f%:%Q%{%%[%g%%%%%%Q%m%%,%"%Z%%9%%9%N%t%o%=%9%q%V%%%%%y%%%%%%t%/%%%%:%%W%%_%]%%x%%e%+%%%N%%%t%%%i%)%%%%%%%%%}%%%}%%%F%D%%%;%%%%8%~%t%t%%%%L%%%O%%%%%%\%%h%%?%%%%h%y%%%%%%%y%m%s%%%z%D%\%%I%t%%%d%%	%:%%%%%b%%%[%%.%i%%%%%%^%%%W%u%D%%%%y%%+%%%|%q%%%%%%%%%3%%9%x%%%N%C%+%%%%-%%%%%o%%%%%7%%}%q%%%%:%h%%%_%x%j%%x%%%%%%n%%%%u%m%%%%%%Z%%%9%%~%%%%%%%%%%%%%#%%>%%l%x%%%%?%%%V%M%%%%l%%%{%%%N%%%%%%%-%C%%%3%%%%%[%%%%%<%%s%_%\%%w%%%%%%%%%%%o%%|%%%%%%%%%%g%g%%%\%o%?%%%%7%%%%%&%%k%{%%%%%%%%%%
%%%Q%%%>%%R%%=%%9%Y%7%%%%%%%%=%%e%e%e%%%%%[%y%%)%%%%%{%%%%%%%/%%%%% %%%%%%z%%%w%t%%%%Z%%%t%%u%%%%%P%%%%%%n%%%%%v%%%T%%%x%W%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%%#%8%W%M%%a%%~%%%%B%y%p%%r%%%%%%%%%(%8%%-%%`%%i%%%%%Z%%h%%%#%\%J%%]%r%W%%S%%%%%%%%%%%7%%%%%%!%%%'%%`%H% %%%.%%%%v%%%%W%%%u%%%A%m%%%%%%+%%%%%%%
%%%%%%Z%
%%n%`%$%%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%%%
%%%%%%@%%%\%5%%%%%%6%%%%%%%%%Y%%Q%%%[%%%%%%%%%%%;%%%%%Z%%$%%%e%T%*%b%D%%%'%%%%%%%%l%"%"%%%R%%%%%%j%i%%%%F%"%"%}%^%%%%Z%q%%%`%%%%%%L%3%R%%D%D%%%%%%%~%~%%%%%%%%%*%.%6%%U%[%&%h%%%%%%y%%%%%%%%%C%U%%%%%% %(%%%%9%%%%{%%%%%%m%%%%%%z%a%!%%%%%%%)%%%%%L%%%%%i%%s%8%%%%%%%%}%%%}%>%%%%%%%4%%r%%%%A%D%%%"%%%%%%%%%%%%U%%6%"%r%%*%%(%%B% %7%=%%X%%%b%%1%X%%%%V%%%%%,%O%%%%X%%%L%%%%%r%%%a%(%%%%%e%%u%%E%%%%%%e%*%%%%%%%d%,%q%%%%7%W%K%f%5%%%Z%%k%%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%R%6%%%o%%%%[%%
%%%%Q%2%%%%%%%T%i%%%%%%J%%%%8%%J%%%%%%%%e%%%q%]%b%%%%d%%%%Y%O%%y%A%%%%q%]%%% %%%%E%C%%i%%%J%%\%%9%\%9%%_%B%%%%J%%%U%%&%I%r%K%%%%% %c%~%1%%%|%(%%N%%\%%%L%D%d%%%%%Z%%^%%b%\%%%P%0%%+%9%U%%%%{%!%0%(%J%%u%%W%Y%%%u%%%Z%j%%%0%% %C%%%.%2%%4%%%x%%u%%%%%% %(%e%%%(%9%%%%%%%@%%p%-%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%)%%%G%D%D%%%%%% %z%(%%%%%Y%M%%]%%%%&%%%%%%.%(%3%%%%%%%>%%9%%%7%/%%%Y%%h%%%%p%D%D%m%%*%%]%%X%%%%%(%z%%%%=%%7%%%	%%%:%%%%9%j%%.%%%%5% %%%%%%%E%%8%%s%h%%[%~%%*%%%%%!%%%s%%[%%%%`%0%$%%%"%;%m%%%%U%%%%%%%J%$%%%%c%%%%%V%r%%%l%%%Q%4%%%`%%%%%#%"%%/%i%%%%@%%p%-%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%u%%j%
%%%%%C%%%%%%%%%%b%Q%Z%%[%%%R%m%%5%?%%%`%%%@%?%
%%u%9%%%b%%%%3%%F%K%%x%%%M%%e%%V%(%%%e%\%'%U%%{%%?%%%`%(%!%%`%%%l%%%l%%V%%%%Q%%%L%%%s%%r%%%%%%%%%% %%%%%%%%-%%%%%%T%f%_%%%%%%%%%%u%%%%%%%%%%%%1%%q%]%D%%%'%%>%%%%4%%q%]%%i%%v%1%%%g%{%K%-%F%%A%%C%%%e%,%q%K%%%%n%% %%%R%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%%%%%%O%Q%p%%%%%%R%%\%%%r% %~%%%%t%%%% %%%p%/%%I%X%%)%^%4% %%%%$%%%%%%%%<%%%P%1%8%I%r%%%s%%%R%%%%% %9% %%J%%%%%%%%%%)%5%% %9% %%
%%%%%%%%%%%"%%%%5%%_%%e%(%%%%%%%%%%%A%U%	%N%%%%%?%%%%v%%n%I%r%K%%%%W%%h%%%\%,%R%%%_%%%N%%%%%?%(%g%%f%q%Z%
%%%%%l%%%C%N%%%P%T%%+%%%%%%%%%%%%%y%A%%)%%%i%%R%%%%%%%%|%O%%%%.%%-%v%%%%%%N%k%%X%Q%o%4%%%%%%%%%%%(%{%%[%%%%T%%"%j%%%R%8%%{%-%u%%%%%%%%%%M%%.%2%j%%%%r%*%%%4%y%%K%%%j%8%%%%%%K%^%%%%s%M%%%s%%%f%q%q%%%z%%E%%%T%M%^%%%%E%P%d%\%g%/%%%%	%D%%%%%%%%%%%7%d%d%%l%<%B%D%1%%%%%z%@%%.%v%%"%%%;%%%%%%%T%`%%%%%%%V%%^%4%x%%k%%%%#%%%%$%%%k%%%%2%`%%%%%%?%%k%%%%%%~%%f%g%%%X% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_layout0_2.png__ __6790__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %{%(%% % % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%}%p%%u%%%%%%%P%Z%
%-%T%%%%I%(% %%g%%l%%\%J%D%%%x%P%9%(%%%%v%%%N%q%%%%<%%%E%%%s%^%%%;%%%%%C%K%U%%%Y%@%%%%Q%%%%,%V%j%%%6%%D%%%%%%%%%%!%M%B%%6%%o% %%%%%K%%%%%%w%w%7%%%+%4%%%% %%%%%%D%4%z%|%F%%G%%%%%%%%"%%%N%%;%%%%@%%P%%{% %%^%"%%%%%7%%=%%%`%%%%%7%%%%%%B%p%%%q%J%%%d%W%g%%m%%%%U%%%%%%%g%%2%%%%%A%%%%%d%4%.%%s%%%H%%_%%%%z%%f%%G%%%%#%%%%&%8%%%o%%%<%%%%%_%}%s%%%%%%=%3%%%%|%%X%%%%8%p%%[%%%~%%%%<%%%(%G%%%.%:%6%n%%%%%%%a%%%%%%%%?%%x%%%%%r%g%u%%%%%Q%v%%%'%%B%%%9%%?%%%O%%y%x%D%%%M%%%.%%%%c%%z%6%f%%%Z%%%%3%Z%%%7%#%"%#%%O%y%h%%%%%%C%%e%!%1%I%%%%8%%i%%%%%%|%%%%%%%%%%Y%\%%%%%i%3%e%~%%%j%%%%S%%%%%%%%%%%%o%%%A%%-%#%%%%%%h%%%%%D%q%%%%%-%6%%%%%%%k%2%%%4%%%J%%I%%%%%%R%%%%%P%%R%%P%%%%%W%D%%%I%%d%K%%%w%%[%!%*%V%L%%%9%$%%%%%%=%=%|%%%%R%]%j%%%-%%%%z%U%x%%%%%)%%J%%%W%4%%p%%T%%%%C%%%%%%%%%%[%g%%%%l%}%o%%%o%%%%>%|%\%?%%%%%%%q%%%'%%%%%%%j%%%%!%"%R%.%)%%|%	%5%%%%%n%%%%%d%o%%%%%%%%%%%%S%%%%%%%q%%%%%%%%%%%%%7%%%%%%%/%%%-%%%%%%%%<%k%%%%%	%O%%%%%%%%%%B%%%%_%%%%%o%7%%%\%%?%%%%%%9%%%f%%%%i%s%%%%@%G%%5%j%%K%+%%K%C%%%%%%%%%%%%Z%"%%%%%%%9%%%U%^%_%%%%%%%;%|%n%%%<%6%%%7%%%%%%Q%%o%Q%\%%9%z%%X%J%%t%%%%%}%%%%Q%P%;%Q%%%%O%%@%R%%B%%<%%%%%%K%%%%%3%u%%%%t%%%%%#%"%%%%%%L%%k% %%%%w%%#%%%%%P%%%D%%%%%%2%3%%%%z%!%%%%7%%%`%%%%%|%Z%w%%%?%%t%%%%%%%%%%%%%%;%y%t%P%L%T%R%|%T%\%%@%"%	%
%!%&%A%%%;%b%T%B%%%%%k%%%%y%I%-%%%%%?%%%%%;%E%%d%m%%9%%%S%%r%w%N%2%%%8%%v%%^% %\%G%%%m%%%q%%%%%%k%%%%%%g%w%%5%%S%%%%%%%%!%	%%S%n%%%%W%q%%]%x%t%%%%%3%%%.%?%8%8%%%h%%%%u%%%y%%%%%%%%Y%+%%%2%F%%%3%|%x%%%%%%j%%%%%\%i%m%w%%%c%%!%%%z%}%%%%%_%%%%L%%B%.%%%%%K%%%b%%g%%7%%%%!%%%%%S%%%%%%%%%%%%%{%?%;%O%D%/%%k%{%x%%%%%%%|%%%%%%%%D%D%%%f%L%%v%%%%%y%%3%%%%X%%%9%%g%%%%%%%#%%%%I%P%%%{%%%a%%m%%5%%q%%L%"%j%}%o%%%%%	%5%[%%%%%s%%[%U%%%%%|%%%%%t%%i%%%%%%%%%%n%%%%E%>%%%'%%#%q%%%%%h%%;%%I%%I%%%%\%%B%%%%%%%%%%9%%%>%<%%%%%7%%0%D%%B%D%T%c%%'%%%%%{%%%%%%z%%%%%\%%f%%%%o%j%x%%%%2%%)%}%\%<%%%[%%%2%%%%{%p%g%%%%%%%%%D%=%%%%W%>%%:%%%%+%W%%%%%%%%%%Y%?%Z%W%e%%%%%Z%G%%%5%%?%%%%%%%%%%%W%D%%%%%%L%W%%%3%1%s%o%%:%+%0%s%%%%t%%N%%%%%%%%%%%>%%%%%%%2%%%g%q%%%%%%%%%%%%%%%G%h%%%%`%%%:%%%%%%%i%%%%%%K%m%M%%%%T%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%g%-%%%~%%%%%%%%%T%%%%%%%%%%%~%%%k%8%`%%%%%%%V%%%%K%%)%1%%`%6%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%y%%%%"%7%Q%%J%T%%V%%%%%%,%W%%%M%%%%-%s%%%%%%%O%%%%%%l%%.%%%%%`%%%%%%L%%%%%`%%%l%3%%m%%%%d%%%	%%%C%p%%%%'%%%d%%%&%g%%v%%%%%\%%a%%V%%*%%% %%\%;%8%k%%I%%%*%%%%%#%%%%y%%%%r%r%%%%C%e%%%%%%%4%%4%%%%g%%}%%%%%%%%%%%%%$%%%/%%%f%%%%o%%%y%c%%k%%%%?%N%f%%%S%b%%q%%%%%J%%%o%%p%B%B%p%r%%5%%%~%%%%%%%<%l%R%3%'%%%_%V%v%%%j%%%0%%%%t%F%U%%]%q%%%9%k%%I%%%L%%	%%x%%%j%%%*%P%M%W%m%$%%%[%%%%%%%%7%(%%%%%J%%%%%%Z%U%"%%4%%J%%%^%y%%%%\%j%%-%%z%%f%%%%%K%%%%<%G%%a%A%%%%T%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%y%;%c%!%@%W%~%%%%%% %]%%%%%3%%%8%%%t%]%%%X%%%%%%d%%y%%x%% %%%8%?%%%%%%?%L%^%f%@%%%%%l%%o%%p%%%c%%%3%%B%%%%%%%%% %.%%%%%=%c%!%%%~%%%%9%c%!%%%2%}%,%%%%%%%%c%%%\%%%%%%%%%<%%%%W%%;%%Z%%%%%%%%\%H%%%
%%+%%Y%+%f%%T%%O%%,%%%=%+%%%%%C%^%a%~%%%T%%%l%+%%%%%%p%h%+%P%B%%%c%%%%]%%%%%%%W%%%%%X%j%%%%%c%@%%%%B%%%W%H%%%`%%c%%%%%%p%%%%%e%%%%%%p%%%%%%%k%G%%%8%q%%%%%%M%%%x% %%]%j%k%"%%%%%%%%%R%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%J%4%J%e%%%8%n%%:%%%%7%%u%%%K%%%%"%r%%%%G%%%j%@%R%%%%%%X%J%v%%Z%D%v%%%%%%!%9%%%%%R%%%%%8%%%%+%%%%%%%B%p%%
%%%+%%%%%%%-%%%%D%U%%%%%-%%%%%%%%R%%(%%o%%%%%%"%%%%%=%6%%x%%%(%%%%v%>%K%Q%M% %%%+%%5%%%%%%%%l%3%%%^%%%g%%A%X%%%%n%t%%(%%%V%%%%%Q%%%%K%%Z%%%%%*%%%f%2%%%j%%Q%T%%%%%%M%j%%T%% %%%%%%%%%%%%%[%O%U%<%%7%%%Y%%%%%%y%e%%Q%%%%%%%s%%[%H%Z%%%%(%r%%%*%%-%%y%{%u%%%% %%% %%g%)%%d%%0%/%%H%D%%%%y%%%%S%%l%/%%7%8%%>%K%=%@%%J%T%g%%%%~%/%%%s%^%(%%j%%%%%%I%7%6%%$%[%%%[%>%j%%%%%T%%%%%%%%&%%%%%L%U%%%%:%%%%!%5%%d%e%%%%%%%K%%N%%k%%%%Z%4%g%%%%%A%%6%%%^%%n%X%L%%%%%A%%%%%%%%%i%V%%%"%%T%%%%%U%%%%%%R%%%%%%%%%%%A%%%%=%
%%&%%u%%%4%%%s%%k%2%.%%%%R%%%^%%<%X%%%%W%%%-%8%%%%8%%%d%"%"%2%%,%%q%%7%E%%%%%V%%E%%%%%%%%%A%%%l%K%I%%%%e%%%%%k%#%_%%-%%H%F%}%%Z%/%%%%r%^%#%%%%p%Q%~%%%%z%%.%%%%%Q%%2%%8%#%+%%%o%%%f%%%%G%%7%%%%j%N%%z%%%%%%A%%%%%%%K%%H%%%H%d%T%%%~%%%%/%%N%%%U%u%%%%k%G%%%%%%%%%%%2%%%%#%%%%]%Y%%:%%%%%%L%,%%%;%%%%R%[%%%U%%%6%%%8%% %%%%%B%p%%
%%%+%%%%%|%,%R%%%%%?%% %,%%%%y%
%N%%%%%%%%%%-%%%%%%Y%%%K%%[%%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%\%%%%%|%%%%V%%D%T%X%X%%%a%@%%%&%M%%%%1%@%%%?%%%%D%%%%^% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_layout1.png__ __7138__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %{%(%% % % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%}%p%%u%%%%%%%P%Z%%
%%%%b%R%(%U%%N%%l%4%\%J%D%P%<%%T%%-%%%%2%%q%%8%t%F%O%
%j%%"%%%s%^%%%;%,%%%%%%%\%%%%%J%l%%%M%%%%-%%%%% %B%%E%%T%d%%%%4%m%%%m%%%@%%y%%3%%a%%%%%%%&%%F%8%~%%B% %,%%%%%%%%%R%%=%%%~%%%%D%%*%_%9%q%%P%@%%%=%%*%%%%%%%%%%%%)%%%\%%'%%%%~%%%%%%*%%%V%%)%U%%%%%%%%%%%j%7%%%O%%:%%v%%j%%%&%%%?%J%P%%%%%%%C%%%%%%%%4%%>%%%%:%"%%1%%%%A%%%c%%%\%|%%%%_%_%%A%%%A%%%%e%%%O%l%0%%%%%%%%%%z%{%7%%E%~%%%.%%%%%%|%k%%%Y%'%%%%%?%v%%%%%%%|%%W%%}%W%%%%%Q%N%%%N%%%%3%%w%~%\%%/%!%%%%%W%%%/%\%%%%%%%%%%%%%R%%3%%N%%o%%%%%%%%`%%%%%%%%%%%%%[%%%L%#%%[%%%%k%%)%%%%C%l%m%T%Q%%%%%%g%)%%4%%%%%%6%%%%%=%%[%%%%%%%%%9%%<%%?%%%%	%%%%%%%%%%%f%s%%4%^%%a%%%%y%M%%%%%\%%%p%y%z%%%E%O%%	%*%%%%$%M%o%!%|%_%y%X%%%%K%%%Q%%%~%#%%E%J%%%%%%%}%%%%%%>%n%z%m%%!%%%U%[%%%{%_%%^%%x%r%A%%%%%%%:%%%%Z%%~%b%%%&%%%}%!%O%<%%y%% %y%%%%6%>%%%Y%i%%%%r%F%P%%%w%%%%%{%j%%%:%%%_%%%%j%%%%K%%%\%J%%%%>%%%y%%@%I%%%%W%%>%%%.%5%%_%%%Y%%%_%-%%%%h%%%%a%W%%%?%%%-%}%B%%E%%J%%I%%%%"%%%%G%z%%%t%t%%%%O%%%%%%N%(%%g%3%%%d%%{%i%%%%%]%G%4%x%A%%x%"%%p%%%x%%%-%{%k%%%%<%{%%%%W%%%%V%%%%%Y%%%%%%%%U%%,%D%D%%%3%%%%%%J%%%%
%s%F%%%%>%7%%%%3%%%7%%%%%3%a%C%o%S%]%%9%<%i%%%%%%%%%}%%%%Q%%%%%!%%%%%%H%% %x%%%=%K%%~%%%+%g%j%s%~%%w%%%%%?%"%%%%%h%%%{%%%%%%%%%8%%%j%%?%%%%%%%D%%%%%%%B%%9%7%o%^%w%%2%7%%%%%%%%?%%t%%%z%%%p%%%%%>%%^%%x%H%D%X%L%%%%(%%$%%T%B%%@%!%%w%H%%%>%%f%}%%%%%%1%%-%E%C%'%<%%%%k%7%J%%%%%s%D%%%%%>%c%,%5%m%%%v%%%%n% %%%6%%%8%%%%R%%%%%%%9%g%w%%%%)%I%%%%%%%a%%{%%%%%%%%%+%%%%%w%U%%y%%q%%%%%<%%f%x%%%%%%%o%%%%%%%%~%%2%%%\%%%%%%m%y%%6%q%%%%%%v%5%%%M%=%l%%%%%%%%%U%%%%z%%j%%K%%%%%%%%%%%b%"%%1%%%%%%%	%%%%%	%%T%%%%%%%%%%%s%%%%>%x%@%%%V%%%%%_%8%1%%%%i%%%%[%%%%%:%7%%%%s%%f%%i%N%%.%>%%_%%B%t%%%B%%	%*%%v%n%%7%%%%%g%%%%E%D%M%%m%%%n%"%%z%s%%%y%%%%U%%%%%%7%%H%%%%%%%%^%%%%%:%s%%%%c%%%%%I%%X%%*%%%%%%%%r%m%%w%%8%%%R%%"%"%"%i%%%~%[%%%%>%8%%%%%o%"%a%X%b%%%Q%%%%%%%%%%^%%%%%%%%%%%%W%%=%%M%%%*%%%%2%e%'%W%O%O%%%%l%%%%%=%%%%^%%s%%%_%k%%%}%%%W%>%%%%%%%W%%%%w%%5%%%%?%Z%[%%%%%%%%I%%%%%G%9%u%%%V%N%%}%i%%%%/%%%%%Z%%%=%Q%%%%6%%?%s%%2%%%%N%%%%\%u%*%%S%%=%}%%%7%%%%%%1%%%M%p%%~%%(%%U%p%%+%%%j%%%E%"%%%=%%%T%%%"%%%%%8% %%]%%%%%%O%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%%V%]%%}%8%%%%L%%%E%%%6%%%%%D%K%%%%%T%%%%>%%%[%8%`%%%%%%%V%%8%%%5%%%~%%%%%%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%<%%%T%%%%%D%k%4%y%%%%%M%%%y%%h%M%%%%% %!%%x%
%%R%8%n%Y%%%Q%t%l%%^%7%%%%%%M%'%%%;%D%%!%%%%%%%% %!%x%x%%%%%x%r%%Q%G%D%Z%%%}%%%%%9%K%%:%%:%A%%%A%%%8%8%%%%%%%%V%%:%%%l%m%w%%M%%%%%t%%
%%%%%/%o%%l%V%3%}%%%|%%%V%%#%8%%%%%%[%%%%%t%%%C%%s%%z%7%o%,%%A%%a%l%%%B%%%%X%c%%h%t%%^%g%%%%%%%I%%%?%%%F%%o%%\%%%\%%% %|%%a%%%%%%o%%%%%,%%%%%%%%m%%%%%|%>%g%%%%g%%P%$%x%%i%%%%%%%%%)%&%%%%D%%|%%%0%z%%%h%I%z%<%i%W%%%%%%h%"%y%%%%%%%|%%%%%%%%o%%%:%%%%%%m%b%%"%%%`%%s%%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%%%%B%p%%
%%%+%%%%|%%%%<%3%Z%%%%h%%,%%%%%9%%%%%%[%%%C%%%%%%%/%%%%% %%%%\%M%U%%%%%%%%%5%%%%%%%W%>%%g%%%S%r%B%,%%%%%%%%f%%%%n%*%% %%z%%L%%%%x%% %%B%%%{%%y%%%%%%%%%%E%%r%3%%%%%%T%%%6%%%9%%%%r%%%%%%o%%%%%,%%%%%%%%%%%%/%%v%%%%%%%%%b%"%Z%%I%%%i%H%%%|%<%%%%%%\%%%%z%%%>%%	%%S%^%%%%n%%%%%D%k%2%M%A%%%%%%%%%P%E%%%%S%^%%%%%%9%{%%(%:%D%%!%%%%%%T%M%%~%%%%%(%%\%P%%%%%P%%%u%z%u%%%%%%%%4%%%%%%%>%%J%%%%%%%%%j%%%O%%%%%%%%%%%%(%1%%%}%N%8%%%/%6%%%>%x%N%>%%K%+%%%%%%X%%%_%G%%%%O%%%z%%i%+%%%%%%%%>%%%-%%%%%R%{%%X%c%%h%t%%^%g%%%6%%%8%%N%%-%\%P%%%
%%%
%%%%v%%A%y%%%%B%Y%%Z%>%%%[%%%3%%v%%%\%%%%%%)%/%%%e%)%%^%%>%Z%%%O%%%%%4%%&%%H%%`%%z%s%K%8%~%%r%%%%%G%%%Q%D%%%%%%%%K%%%%%b%%%%%*%%K%%V%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%%3%%j%%@%%q%%,%%%%%o%%%z%%%R%%%W%%+%/%%%%3%% %%%%%%%X%K%N%%%"%'%%%R%q%%%E%%k%%k%%:%/%%%%%X%!%8%`%%%%%%%V%%%X%!%8%`%%%%%\%%%%%%%%f%%%d%R%u%A%f%i%%$%9%/%t%%%%%%M%%%[%%%,%%%$%I%%%%%%R%P%%%%w%%%%N%_%t%%%%(%:%%%%%%%g%%A%%%%m%.%t%%$%U%%&%%%%%Q%%%%k%%^%%%%%%%%h%l%<%%%a%f%%%%%%%]%j%%T%% %H%%%%%^%%%%%%%M%%%%%1%%s%R%3%%%%%%%%%%%%,%M%~%9%f%%%H%%%%%%%{%%J%%%|%%%C%c%e%V%%%%%%Y%K%q%%%%e%%%H%%%t%%N%n%8%%%%@%%%%s%R%%%i%4%%%%9%n%%%G%%%%_%,%%%%%%%,%%/%l%4%%%M%%/%O%%%x%%%%r%%%%%%e%6%%%%|%c%c%e%%%=%%% %A%H%%(%Y%%%%<%%P%~%-%9%I%R%%i%y%%%t%%%D%	%%.%%%U%%F%s%%9%k%%V%%%a%%!%k%%%Y%%U%b%%%Q%%Z%_%w%*%%~%%%m%-%I%R%u%a%%%%%|%-%%%%%j%%%~%%%%%%%X%%Q%p%-%I%%%%%%%%%g%%%%%%%%%W%%2%'%%&%%%%%%%<%%%%%%%7%%%H%%$%U%%%0%Y%%%5%%%S%l%-%I%%%%S%%%5%r%%F%%?%f%c%%I%M%%%/%f%m%:%%%%%[%%(%+%z%~%%:%%/%%%%%.%V%=%%<%3%u%!%U%%y%%H%%%%%t%`%%%%U%%%%%%G%e%%	%R%3%%%%)%%%%%r%%D%%%u%%U%%%#%%%%L%?%%%%/%%%%%'%%%%%o%%L%%%U%U%U%%%%%%%%v%%%/%%!%`%%%%B%p%%
%%%+%%%%%|%,%R%%}%%%?%% %%%%%%%%`%`%%%%%k%%K%<%%%%%Y%%	%k%%K%p%%%%%%%B%p%%
%%%%V%o%%%%% %%%%%X%%%Q%~%~%~%%%%=%%0%i%%%@%%%z%%%%_%%%D%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_layout2.png__ __8254__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%%%% % % %%%|%$% % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%}%t%T%%%%%%%%y%F%"%%%%1%%%%%%%%%%%%%%%%%j%%J%%%p%H%%%p%%Q%{%v%%T%%P%j%%%%L%v%%%i%%T%%X%	%h%9%%%%.%%%L%I%%%%%%R% %7%G%%L%e%%%S%%+%V%%%%%!%$%%%$%7%w%&%%%_%'%%%%%{%%7%%%g%%%%%r%%%%%%%C%%%%%T%I%7%%%#%%-%%%c%%%U%%R%#%w%%>%%/%%%%%)%%%%% %%/%%%%%%%%%%%%%%%n%%%%%%%%%%Q%%W%%%%%%8%%%%\%%%y%%	%%%%%%%%
%%0%%%6%m%6%s%%%:%n%%v%%%%5%%%O%%%%%=%%-%%%*%J%%b%H%%%%+%&%%%%7%%%%'%%%% %\%N%%%%%%%\%P%P%%{%%%>%%%%%%%%G%%l%%Y%%b%0%b%%%%%%%}%%%%%i%O%%z%%%%b%(%%%%%%[%%%o%}%+%[%u%%m%%%%%r%%%%%[%%g%%%f%%%%%G%|%x%%/%%%%%%[%n%u%%%+%;%%%%%%%a%%%W%%%%I%%s%%W%|%:%%%%6%%%%%c%%%%%%g%%%%G%%%%%%%%%X%q%d%%%%m%~%%8%%-%%%%D%%%%%%%%%%q%%%%%%9%%~%%o%%%%%#%%%%%J%%%=%i%%%%%%%%1%E%}%%%%%>%r% %%y%%G%6%%%%% %%+%%F%J%%5%9%%%%%%]%%%G%%%%$%4%q%%%%%d%%%%%m%\%%u%c%G%%%%%X%%%:%%%%w%%p%%n%%%%%%%%%%}%;%%%%J%%Z%q%D%%[%%%%%%Y%%%%%v%%%l%s%%%%%m%%%%%%%%%%%%%j%%%%%%%*%%%%%j%z%%G%%f%%%%%%%o%+%%\%'%%|%%%M%%%%%%%$%t%%%%I%%%E%%%O%%%%{%%%%3%+%%%%i%%%s%%&%%|%%%%%%%%%%%%a%%%e%|%q%%%%%%%x%%o%g%<%|%%%G%&%%z%%%M%Y%%%%x%F%%|%%Q%i%%%%s%%$%%%n%%%~%%%%7%%}%p%s%%$%%{%e%%%'%V%%S%f%%w%_%%Z%%}%%%%k%M%%t%b%%%%%_%y%%!%%%%%%%%%%@%"%J%%%%q%%%?%%%u%%%%%k%o%H%%%%#%r%g%h%%5%7%|%~%%%%%%%N%%9%i%%1%f%B%%W%&%%I%%%%%%%%%%%%%%%%%%%%m%>%%%t%%%%%%%%M%%%%%%%%%K%%M%%%I%>%%%$%%%%%%%%%%8%%%%%%%%%%'%%%u%h%%?%}%%~%k%%%%%%%>%<%%%%%7%%%5%|%%%%c%%%
%%H%1%F%M%4%r%G%%%>%q%t%%]%%%X%%u%%%w%_%Z%;%i%%%+%~%%%%%%_%>%%%M%%%%%%2%%%q%%%%%%%%:%%%%%%%E%%P%t%%%[%%%%%|%%%%%%%%%%%%%%%%8%2%%%%%%%|%|%%%%%%%m%>%%j%%%%%%%c%%7%O%%%%a%(%c%j%%%%o%l%%%U%%%9%]%:%%{%%%%%%%%%%%%s%%$%%%&%I%{%%%%%%9%%%%O%%N%%%%%%%%G%Q%%%E%%?%S%%%%g%~%%r%%%%%%%o%%%%%+%%%8%,%u%L%J%%%%%%%%%%%9%u%%%S%&%]%9%r%%%%_%%%%%%h%%$%%%z%%%%%%Y%%%%%%%}%%%v%q%%%%%%%%%%%%%%%;%"%%%%%x%%%%o%.%%%%%%I%j%%%%C%%%a%%~%%%%%%%^%%u%^%%%8%%%_%%%}%%!%%%%%9%%>%%%%% %%	%%%%%%%%%%a%2%%h%%+%%E%2%%%%;%%%%%\%%%%%3%%~%%u%~%%%%%%:%%J%
%%%%%%%%_%:%?%%%]%u%%%%K%%i%I%'%W%%%Z%%u%%%%<%%%-%%;%%%%]%% %%%%%W%%%%,%~%%%%%%%'%%%U%%%%%%%%%;%%%%%%%%>%?%%%[%%%%%%T%%B%%%/%{%=%%_%%%%%l%%%W%%)%%%%%r%%%%%%%%#%u%0%%%~%%%%%%%%%%%%%%%%l%%Y%%b%%%{%%%&%%z%%}%.%%%|%%(%1%%%%0%%\%%%7%7%%+%Y%%@%%%%p%%%%x%%%`%%%i%%j%%%`%%%9%%q%%%%%%%@%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %%%%%%%}%%%%%K%%%]%.%$%%r%%%%L%%%%Z%Z%>%%%%%% %1% %%%%%%%%{%%%%%%%,%%% %b% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %%/%%m%%%%i%.%W%%%%2%%%%A%_%%+%%B%a%C%%%%%%%+%%%%Y%%%%%f%%%t%]%q%U%S%%%7%U%y%%%%%L%3%%%T%%%%% %%^%%%4%5%%%%%%I%r%{%k%<%%;%%%%%-%%%l%%[%%%%%J%u%%%%%%%%%%[%%i%z%V%%$%)%=%;%%%%<%}%%<%%%%H%8%%;%j%=%%%%m%k%&%`%'%+%C%%%%%%%%%\%%4%%%%%:%/%)%%C%Y%%A%S%%k%%%y%%M%3%%%%%%m%%m%%%a%%%%%H%%%1%%%%%%%E%%%y%l%%%%)%%%%%%%t%%%t%%'% %%%%G%%%9%%%*%|%M%%%%%%%/%u%)%t%%%"%%o%h%%%l%%%%%'%p%%X%E%%%%%%%%%j%%%-%%7%%"%%%U%i%%%%%%e%J%%E%k%j%%y%f%%*%$%%%%w%-%%%8%E%%%g%y%%f%%%%E%%%%%%{%%%%%%%,% %%%S%%%%%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %%%%.%%%V%%%f%C%%%D%%R%%L%%%Y%%%%%!%%_%%%G%%%%%%q%%%%%%%%%%%%<%;%%%y%%(%+%x%%%%L%%l%%j%%Q%% %%%%C%%%%~%%T%5%%F%%%U%%%%c%Y%;%S%%_%%^%k%M%3%d%%/%%-%%R%!%%%g%p%%k%1%%%%)%%%$%w%i%%g%W%K%%s%E%%>%%#%X%%}%%9%%%?%%Y%R%\%%%%>%%.%-%=%_%%L%%%
%%%9%T%}%%3%Y%%}%&%w%%%%%H%%3%%%%H%%%%Z%%3%e%%%%%l%h%%%H%%)%%%%@%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%%%g%%%%%$%%
%%%f%%%%%%|%%%6%%%H%%%1%h%j%%%[%%%P%%%v%G%%%%%%%c%s%=%%4%%H%%%%%$%%%a%%%%,%%%u%@%B%X%%"%%%%%6%%%%%%%%%%%%m%%%%O%=%%%%%!%v%}%%X%%U%%%4%%%%,%%%%%%%}%%%X%%%%4%%+%%%Y%%%%b%j%%%%%]%%,%%%%%%%%%G%%%%P%9%%%8%%%%g%%%%b%%3%I%R%%%%%%V%%	%%%"%%% %% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %Y%%}%%%%%"%+%p%%_%8%%%%g%M%U%%%%%!%%%%%%j%%%%%%%%%%B%%%%%Z%O%%7%r%A%S%w%i%%g%W%K%%m%%%%d%%%%{%%Y%%%P%%%%%j%%p%%%W%%%,%%P%]%%%%S%% %%4% %1%%6%%z%*%%%%%%%%"%%%(%%%A%%j%%%%%%
%U%%W%G%=%%% %8%B%%k%%I%%%%%%b%W%%%%%~%%>%%%%%{%>%% %%%%%g%%%r%%%%%U%\%X%%%%*%%p%%%%>%s%%%%%(%% %%%%"%%% %% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%%c%%%F% %%%%b%%%F% %%%V%b%%%F% %%(%R%%%}%2% %%f%!%%q%k%%%%%%%%%J%%=%%(%%W%%X%R%%%%%%%%s%`% %Y%%P%%%%%%#%X%%%%%%%8%%%%E%Q%k%%%%c%q%l%%%F% %%8%6%%0%e%%E%l%%%'%%+%q%E%V%H%s%%%%>%&%%%%%%%%%%0%%"%%%%%v%%_%%%i%%L%3%d%%y%9%%%%%*%%r%%%%%%%&%Y%%%%%%%%<%%Y%%o%%%%%
%]%%%%J%%y%,%%%%%0%%"%%%%%%z%l%%%%%%7%%a%%%%f%%%;%%%%%L%1%%%%%%%%%%%%%7%%%%%%%%%"%1%%|%%-%%%y%k%B%%%2%%%%%%%l%g%%%"%%G%%%%%v%%%%5%(%7%%d%;%%p%4%`%%E%l%%%%c%%%"%&%Y%%%%%%+%/%~%%%l%9%%Y%0%`%%%%%[%>%%1%%"%%%%%%J%[%%}%%%(%S%%%%%B%%+%M%%%%%%%%8%r% %p%%%;%%>%%O%%%q%%%%% %A%>%9%s%\%%%-%%%%%9%S%%p%%% %%%%% %b% %%% %"%%%%% %;%%E%%%%8%%%%,%%%%<%%%%%%%u%%%%%,%%e%2%E%%;%i%%%y%%%%%%%%z%%:%+%%%h%%%%x%z%%[%%u%%%|%%%% %% % %%%%% %b% %%% %r%V%%%%%.%^%%%U%%%=%%}%%%%%%%%%p%%%%<%V%x%o%%k%e%%_%%%B%%%%p%%u%c%%%G%%%;%%%O%%'%%@%%<%%{%%O%%f%%y%%%%%?%%%2%%%%%r%%%%%%U%9%%%%%+%%%%%%.%%%%%i%[%M%3%%%|%%%%%*%%%y%%q%Z%%:%[%r%%%0%%%%J%%%%%n%,%)%|%%%%%'%%%%%%%%%%%%}%%%p%%%%%%T%%%V%E%%%+%W%V%F%{%%
%%[%%%%,%h%%%$%I%O%+%%%%%%%%%%%%%#%+%%%s%%%%%%g%%w%N%%%%,%?%%*%%+%-%'%%,%%u%%%#%%%%%%O%%%%%%%%%{%%%%'%V%L%%o%>%%%%u%%%G%%%$%x%V%%%%%%%.%y%v%g%%%F%%%Z%X%%%%%=%%%%%%:%%%{%}%+%%/%-%r%%e%X%%%%%#%{%%%%(%%%%K%%q%%%a%%.%X%%%%=%%%%%I%%%%%}%w%(%\%'%4%Q%]%%%%%%%%%%%%%%%N%%%E%%%%%-%%/%t%?%$%%%u%%%%%s%j%%%4%,%%p%L%%%%%%%%%%%%%%%%%]%1%G%u%%9%%g%w%%%%p%x%%%g%%f%g%$%%%%%m%]%%n%%%8%%y%i%%%2% %%]%%%_%%%S%%%%%%%%0%%%%%K%%%s%%%%l%I%%%C%z%%4%%%%%j%|%%%i%%{%%%k%%%%%>%Y%%%s%U%d%%%%F%%=%y%O%!%Y%%%%}%%2%%%%Y%%%%y%%@%%B%g%%+%%%%%e%g%O%|%%%>%f%%%%%%{%c%c%c%%%%%%%%%u%%%U%%%K%%%%% %% %%1% %d%%	%%%[%%%%%%C%%]%%%%%%%%%%%%%A%%%%%%%`%`%%%4%%%u%%%% % %% %1% %D%% %u%%"%G%&%%%C%%G%%@%%%V%%Z%%%f% %%d%%%3%'%%m% %%%%%7%%r%%%%%{% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_layout_anno1.png__ __7374__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%J%%w% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%%*%%%% % %%%I%D%A%T%x%%%%%t%%%}%%%%%%%D%L%%!%X%%%%%(%%%%%t%^%!%N%%r%l%%%u%%%%W%%%%d%[%=%%%i%%=%0%%%y%%T%{%%+%%%%%s%%%%%z%2%%%%Q%C%%%%
%%\%X%@%%I%%%d%%G%%H%%%M%%%$%$%%^%H%%%%%7%%%%^%%%%%~%~%%%%%@%4%%%@%%%%%%%
%0%{%%l%%!%%%%e%% %%%%%%a%%U%%%)%%%H%%/%%%%%h%%6%%%@%J%J%%%G%%%%2%@%%%%q%%K%}%{%%h%%%%]%r%%5%<%%}%%%%%_%%|%%%%%%%e%%*%%%%%%1%%%G%%%%%%%%$%,%@%%%%%%3%%0%%%b%%%e%%%%w%%[%%%%Y%%:%q%%%%%%%%!%%(%%%%%%%L%%%%	%%%%%%4%%%%%v%%%%-%J%%%%%!%%%%6%%U%%1%%%d%%2%%I%%G%%%%%%w%$%@%V%v%%%'%%%%%U%w%%%%%%%%%%,%%%%%%%%%^%%%
%%E%%X%V%%k% %%%>%!%=%P%z%%%r%%%%%s%%%(%z%%y%r%%%%8%0%%%Y%%%2%)%%%y%%%%Q%R%%%%%f%%%F%%%%%%%%%%%%%P%%%H%I%a%%%W%r%%%%%~%%%%;%%%%~%%J%f%%%%%_%%%i%P%|%a%*%%%%?%%a%%%%%%{%%%%%A%%%%%%%%x%%%%%%%%%%%%%%%%w%K%;%%[%2%%%%%%%M%%%%%%%%%%%%%%%%;%%x%1%%%%%%
%%m%%%%%%"% %%%%o%%e%%_%%%%a%%%_% %%%%%%%%d%%%[%%%%1%%%%%%`%%%%%h%%%%%%m%>%%%^%%5%%<%F%F%%5%%=%z%%%%%a%%%%L%H%K%%%%%%%H%%%%%I%i%%~%%%%%%%	%%O%F%%w%%%X%%O%%%%%%%%%%%%a%%%"%t%%% %>%W%Q%%T%`%%%6%%%%9%%%%	%%/%p%%%+%X%%*%L%%%%%%%%%%%%%4% %%%<%r%%%%%%%%%%;%%!%%%i%%%g%%%\%]%%%W%%%%%o%2%v%%e%%%%%q%%W%C%v%%%%;%L%%%c%%%%%8%
%%	%%v%Q%
%%f%%%%%%^%9%%%%%%% %%%%%%%%n%X%%%F%%Y%W%p%7%%%(%%%v%%R%%%u%K%>% %%/%%%%%/%%%%%%%t%o%%%%&%%3%%<%e%%%%v%+%%"%%%%%%&%%%%%G%?%%m%%%L%k%%5%9%%%%=%a%,%%%%%%@%J%%%%%
%%%%%%%%%%g%%%%<%w%%D%%%d%5%%%%%%%V%%%%{%O%%%%%%?%%%%%%%O%_%%%%%J%B%x%%%%%%A%	%Y%D%8%%%V%%/%%%%/%%%G%%%%q%%%r%%%p%q%%%|%v%%X%.%%0%%%%%%%%V%^%y%%%%%%3%g%%%%%~%p%%'%%q%%%%%\%G%%W%L%;%%%%%%%%%%%%p%C%>%%%%j%%%%%%v%%,%%O%%%+%%%%%%%y% %%%%% %P%%%%%%\%c%%%%;%%@%%%%%%%%%%% %%%%?%%%_%%%%%%'%%%%.%%%K%%c%b%%%R%%R%%%%%^%%q%%%%%%%>%m%%%%%%%H%%W%<%%#%G%%%/%%}%%/%]%%,%%%%%%%,%%%%V%%%%%%%%e%%%%"%%%M%%%%o%%%%u%%l%=%w%%/%`%%%[%i%j%%%%w%%%g%,%\%%%%%<%}%w%%_%%z%%5%o%\%%%%4%%%%%Q%z%G%|%%%~%%y%%%%x%%}%%%%`%%V%%%%%A%-%c%%%%%%%+%%%1%%8%%%%%%%%%%%%9%%%%%%%%%_%0%%{%%%l%%q%%%}%%%%%1%%%%^%i%%%%%%.%e%%%%%%]%o%%/%%%%%%%%%z%p%#%%Y%%s%%%%%%%O%%%I%%%|%l%%%*%@%%%%%%%%%/%%%%[%O%%%%/%%%%%}%r%%%%_%%%%%%K%%%7%%x%%I%%%(%
%M%"%%%% %%%P%%%%%%%%7%%%=%%$%%%%%(%%%%v%%%%h%D%
%%%g%%%%%%%%%%%#%%%%q%%%d%%%$%~%%H%:%%%%%=%e%e%<%%%%w% %%X%%%%k%%j%s%%%%%z%3%%%%!%0%@%R%2%%@%%%j%%#%u%%%%%%%%%I%%H%2%@%%%%%%%%%%d%%%%o%%&%\%K%%5%%%%%%%-%_%C%%%%%%%%%%o%]%%%u%;%)%%%Q%P%o%%e%%4%8%Y%7%%$%R%M%%4%%%%%h%%2%r%%%%%P%%%;%%%[%%r%%%%%;%p% %9%% %8%%%%%G%%%$%%$%% %I%g%X%%%%2%J%%E%,%%%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %% %I%2%@%%%%%%d%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %% %I%2%@%%%%%%d%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %% %I%2%@%%%%%%d%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %% %I%2%@%%%%%%d%%%Q%-%u%`%w%k%c%k%%%%%%%% %R%A%n%_%w%m%%L%%%5%%%%.%%%%P%	%%%Z%%5%@%%u%%%.%g%%%P%%%u%U%%%%N%%<%%%%%%%.%%%v%i%t%%%v%%X%_%%%%x% %r%K%%Q%P%%%%%%%%% %;%%%% %%%d%%i%a%
%Y%]%c%%%I%%%%%%%%z%%-%E%%%%%%r%%7%x%%%%A%%%U%%%%"%%.%Y%H%%% %%%!%% %%%%%%q%[%5%%H%5%%%M%%X%^%%%p%%%%%%%=%%q%%%%%"%%%=%%%%%r%{%%%V%%\%i%%%%%%z%%y%z%%%$%%%%<%
%%;%Y%%%%%%%5%%%%{%%%%%%p%%%!%[%%A%Z%
%%%%%%i%4%%%r%%%%%?%A%%%%%%v%%%%\%W%%%%%%%g%B%n%%K%%%b%y%%%%%%%%%G%%|%%%G%y%%%%^%%U%}%R%o%%Q%%%H%%%%C%8%I%%H%2%@%%%%%%$%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %I%%H%2%@%%%%%%$%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %I%%H%2%@%%%%%%d%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %I%%H%2%@%%%%%%d%%$%% %% %I%%H%2%@%%%%d%%$%%$%% %I%@%j%%7%%%%%%Y%%%(%c%A%%%\%%,%{%%%i%%{%%u%9%%%D%%Y%%%%%n%%U%%%%%%4%%%1%%4%%%%%y%%%o%%%:%% %%@%%A%Z%%B%V%F%%%%%%a%%%%%:%%*%+%+%-%%0%%%%%%%Z%D%%%%%%%%%D%%%%%%%%%%%%%H%2%@%%%%0%%%u%%%%%%%5%%%%%%H%%%%*%%|%%%%%%%!%%A%j%%U%%%%L%/%T%%%%%%% %%%%%%$%%6%%%%Y%%%X%%%%%X%%*%%%f%_%%j%a%V%%%%3%%%%%%%%h%%%b%u%%t%"%%%%%]%%%%b%%E%%%%v%S%%|%%1%%%5%%%%N%%%%P%%%%%%1%J%A%v%%e%%%%%%%p%%	%Z%%e%%$%%9%%l%%<%%'%A%%i%%%%%%y%%%%?%Y%7%%$%R%M%%4%%\%%%i%%Z%9%%%%g%%:%%K%E%%]%%%b%'%@%'%%%M%%%% %%%%
%f%%V%M%(%%s%%%%%%%%3%% %%%%%%B%%%%W%%%{%%%B%g%%%%%y%%%%1%@%C%%%>%	%%M%s%-%%p%m%%
%]%%A%Z%
%%%%%%%%C%8%%%9%%%4%%U%%1%%!%B%%%%[%%%%%X%%%%%5%%%%%%%s% %%%9%%%%%W%%%%e%%/%$%R%l%%%>%g%<%'%%p%%(%%%v%%%%H%%%%%%4%%%p%%%Q%%N%%%%H%}%x%%%m%%@%R%R%z%%=%e%e%%%&%R%%%E%%%@%R%"%% %)%Q%C%%%%{%%C%%%%>%%%%%<%%%i%V%%%%%%%%%%%%%o%%%
%%@%S%S%%U%=%%%%%m%%a%%%%% %%%%K%%n%%%%v%%%m%%"%%% %%H%2%@%%%%%%d%%$%%%%:%/%\%[%%5%+%%v%%% %E%%Y%%%%%%%v%%u%5%%)%	%%%y%%%D%%E%]%x%%%%%%%%%%Z%%R%%a%}%%%	%%K%%<%% %%%%%%w%%%%%%%%L%%o%%n%%%%%S%%%%%'%%%%%%%%:%%%%m%%3%%%%%H%(%%x%%%%%)%%5%@%%%%*%%h%m%%%%B%E%%%L%Z%%R%%%%%_%!%P%%%X%%V%<%%%_%%<%%%\%%%C%%%e%%+%%%%%%s%%%f%f%%%%y%?%9%%Q%%%|%W%k%e%K%%%
%#%%B%x%%%%%%%%3%%%}%2%%,%%%%%%P%+%%f%%%>%%%%"%%%%%%%%%%%b%f%%%l%%j%%%4%%%_%n%%f%%%%D%%%%.%%%%%%%o%!%3%%%%0%R%M%y%%%%%<%%%;%k%%3%C%%%%A%|%&%}%%%%%p%%%`%%%)%%%%%%t%%%C%%%%%%%%%%%"%%@%>%%%'%i%l%%2%%%%%'%!%%b%R%%>%%%A%%%%2%%%a%%u%%W%%%x%%%%%%%U%%%%%%b%%%%%%%v%h%k%%%3%<%3%%%%%%%P%[%%%c%S%%%U%%%~%%%:%I%%%L%A%%%%%G%%%%%%I%%%v%d%%C%[%%5%+%%3%+%2%<%%3%"%%@%%%%%%%,%e%V%%%%%(%%%%%%%%%I%%%%%O%X%%v%%%P%)%%s%V%%%%%P%%%%%F%h%3%%#%%%%7%%%%c%%h%%%%k%%b%%%D%%%%%%g%%a%%%%%%%%%%o%%f%g%%%%%%a%%g%@%C%%+%<%%%s%}%~%%%v%8%;%m%p%%7%R%%E%%D%%Q%%.%]%%%%%9%%% %% %% %I%2%@%R%B%%x%%;%~%%%F%+%v%%%%#%0%@%%%%V%j%%%%F%h%%"%%%t%X%%%%%I%%%%%7%R%%%{% %% %I%#%b%%w%%/%o%I%%%%%%%-%[%%%J%H%%!% %t%X%%%%%?%%%%%l%>%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_layout_anno2.png__ __7258__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %%J%%w% % % %%s%R%G%B% %%%%% % % %%b%K%G%D% %% %% %%%%%% % % %	%p%H%Y%s% % %%% % %%%% %%%% % % %%t%I%M%E%%%%%%%/%%'%%5% % %%%I%D%A%T%x%%%%m%t%T%%%%%%%%% %&%%%M%%%%%%%%%%%%%j%}%i%I%%-%%S%%%%%%%v%%%[%%%%%%%G%%%%%[%Y%%%%%%%j%E%%%%%%%%%H%%L%%D%%%%%%%%%+%e%%%%H%B%%%%@%B%%%/%%e%f%%%<%%?%%%g%.%% %%%$%%%a%%%%%%L%%<%%%%:%`%%%% %%% %%%[%%%H%%%%%H%%/%%%%%H%%=%x%%@%J%J%%%}%%%>%%%%%:%%%%|%z%R%_%%%%2%%%%]%%%%%%%%G%%%%h%%(%%Y%%
%%%D%"%%%%G%"%%.%%=%%%%%%%%6%%%_%%d%%%U%%%%%%-%%%%%E%%%@%%x%%%%%%%q%:%%P%%%%O%)%%k%o%>%%%Q%%%>%'%%%U%%%%%%%%u%%%%%N%o%%]%%%%p%%R%S%I%%%:%%&%%%}%%%%%%%%%p%%%A%-%%%%n%%%/%%%%%%%%%%%%%?%%%%%R%%%h%%%%-%%%%%%d%%4%%%o%q%f%%%%%%%%%%s%%%6%%%%~%%%%%%r%h%%O%%%;%3%%V%m%%a%:%%%G%"%%%%4%<%f%%%;%%%k%%%(%H%I%a%%%%\%x%z%%%W%%%%%%%%%%d%%%%%%%%%%%%%%%%N%o%%a%%%%%%'%?%%%%.%%%%%%%%%%%#%%%%%%%%%%~%	%%%%%%%%%%%%%x%o%}%>%%%%h%%L%%%o%%%%v%%y%%6%^%*%%%%%%
%%%e%%o%%%8% %%%l%.%%6%%#%%%%%>%%m%%%%%%%%%~%%%L%%"%&%c%l%%%%%!%`%%%%%|%%%%W%%7%%%%	%%%"%}%%%%%8%%Y%%%%%3%R%%%%J%b%?%%%%%%%%b%h%Z%%%p%b%%%%`%%=%%%%%%%%X%%%F%%O%%%%%%%_%%%%3%%}%%%o%%%!%%X%%%%%7%M%%%(%%6%<%%%%%%x%#%d%%X%%%?%h%%%=%=%%%%% %%p%_%%2%.%%%y%%%n%D%F%%%%%S%%%%%%"%%%%%%=%%%%%y%%)%%%%%%%`%%%%9%%%%3%%s%%%)%p% %%%%v%V%
%%%K%#%%%h%%V%%%%%%%%%%%%%%%%%%U%R%%%?%%[%%N%a%A%%%%%+%%%+%G%%%%%% %<%%J%%%%%%%5%%S%%%%9%%<%f%@%%%y%3%[%%%%/%%%"%%%~%%%_%R%%%M%%%%#%#%%%g%%%%%%%@%%%%%%%%9%%%c%|%%%%%%%%%#%%-%%%%%%%%%3%%4%Y%a%|%%%%{%%%%U%%1%%%G%%%U%%Y%%%C%%%O%$%%9%%<%%K%%%%%%%}%w%%@%%%7%%E%%#%.%%%%%%%%%%%%%%%%y%f%
%%%%%%%q%^%%%%E%#%%1%u%%`%%%?%;%%%%z%%%#%%s%%%%=%%%%%%m%5%%n%%%K%/%%%%%%3%{% %%%%;%X%<%i%4%%%%%%o%%%W%%%%%%v%%%$%%%5%%	%%%%%%%%8%%%%%%%%%% %%%t%%%~%%%%1%g%%%o%%=%%%Q%%1%$%%%%i%)%L%[%%!%/%m%%%%%%%%%%%%%>%%%%%%%%%%?%5%%%%%%%%%e%%'%%c%r%%L%%%%%%%l%%!%%%%%K%(%%%%%%O%%%%%.%%%i%%%%I%y%%%T%U%]%%%%5%%%%%%%7%x%%%0%?%%%%%o%^%%%%%%%%/%&%w%z%r%%%N%%%%K%%%9%%%S%"%%%Z%%%h%%%Z%%~%%%/%%%i%%)%% %%%%%%%%%4%%%%%%/%%%%%%%%%%%[%%%%b%%%%^%%%H%%g%%%%%%%%%G%v%)%%%=%%%%[%%x%%#%%|%%!%%k%%%F%x%{%%%%%%%}%%m%%%%%%%%v%%%%%%%%y%%%%%%%%%%%?%%%W%j%[%%%_%%%%%o%%%%%l%%%%%<%%%I%?%%C%%t%e%8%%%`%%/%%%%P%-%w%%%%%%>%%%A%%%%r%%%9%%%0%%^%)%%%%z%%%~%%N%%%%%%n%%%u%%]%%%{%t%%%%%N%}%%G%%Z%%%H%%%P%V%%%G%E%j%%%%[%%|%%*%%%	%%$%%%d%@%%%I%%$%%%$%%%%H%2%%%%]%M%q%x%%%7%%%%%%6%%$%%n%%%A%$%%%%%%|%%%%%*%K%%%%%%%:%h%%<%*%b%q%V%%%q%t%u%%K%%%%%%%s%T%e%@%%-%%%%t%%%%H%%U%S%S%%%%%%%x%%9%%d%@%%%H%:%%%o%%!%%%%1%%X%%%$%%%d%@%%%I%%$%%%$%%%%H%2% %%%$%%%d%@%%%I%%$%%%$%%%%H%2% %%%$%%%d%@%%%I%%$%%%$%%%%H%2% %I%%$%%%d%@%%%I%%$%%%$%%%%H%2% %I%%$%%%d%@%%%I%2% %%%$%%%%H%2% %I%%$%%%d%@%%%I%2% %%%$%%%%H%2%%c%%M%y%q%%p%8%D%8%%%h%[%7%%]%M%q%%%%!%%%%%u%%%%%%.%%%%9%k%%%%%)%Y%%%K%6%%%Z%5%%%%%%%b%q%b%+%%%t%%%w%%%H%d%%%%[%%%@%n%%%%/%%%%%P%4%%%%%Q%%%%(%y%H%V%C%%%%%%%%%%&%%%%%m%%P%o%W%%%\%%%%%%%:%n%%5%%%%%%s%%i%%{%%$%%j%%%%*%%k%%%%%%%Q%%%%%C%%%%%z%%%.%}%%%"%V%%%%}%1%y%%%%%J%B%"%%p%%t%%%%%%%4%?%'%%%%-%y%%%%%%%%%%%%%T%%\%E%n%K%7%%.%l%%:%Q%m%%%%%%%%%%!%\%%%%%%%%^%%0%%5%%%#%%,%	%%%%%X%1%=%%r%%%%%i%%%C%%%;%%5%%%}%%H%}%%%(%%%%8%%[%%+%%d%o%%9%%	%b%%%X%y%%'%%%$%%%%H%2% %I%%$%%%d%@%%%I%%$%%%$%%%%H%2% %I%%$%%%d%@%%%I%2% %%%$%%%%H%2% %I%%$%%%d%@%%%I%2% %%%$%%%%H%2% %I%%$%%%d%@%%%I%2% %%%$%%%%H%%%I%%$%%%d%@%%%I%2% %%%$%%%%H%%%I%%$%%%d%@%%%'%%%%%%%%C%%%%%:%%2%%%%.%%%%9%k%%%%%)%Y%%%K%6%:%%2%%%%H%d%%%%[%%%@%n%%%%/%%%%%%%]%j%k%%d%<%%2%%}%%%M%%%%U%%@%w%% %%%%%6%n%.%"%H%%%%3%%%%%%%%b%q%G%_%%%5%%%%%%9%%d%@%m%%%%%U%%%N%.%]%G%W%%%%%*%r%%g%y%%%>%%%%R%%%B%x%9%%%%%%%e%%P%G%%B%%c%q%%;%%%%%;%x%%O%%%M%%j%%%%%%%.%^%%/%%%5%V%%%%%%%%%%%%f%w%5%%%%%%%b%q%b%+%%p%%%%%%Y%%?%%%S%c%%%%>%]%5%6%%%2%%%G%9%l%m%%x%%%%%O%%%d%%%%D%@%^%%%E%c%%%]%%%s%M%^%%%%%Q%%%%%Y%Q%4%%T%:%%R%%%%%%~%W%%p%%4%%r%%%%%%%%%%%%%k%%V%p%M%%%%%%<%j%%]%%9%%R%%%%%%Z%%%X%Q%%/%&%%%r%]%I%8%%N%%%%K%}%%%%%%/%%%%%%.%l%%:%Q%m%%%%%%%%%%%%%>%%7%6%%%%!%~%%%%+%%g%A%%%T%%;%%%p%%%w%%%&%v%%%%%%A%$%%I%L%%<%%u%%%%%%5%%Q%%Z%%{%%% %"%%%%%-%r%%N%%E%%@%%%I%2% %%%%%%%<%Q%%%H%%%%%q%%$%y%%'%%%C%%%%%X%%%%d%%%%%|%%%%p%%$%y%%'%%%C%%%%%M%s%%N%%%%g%S%v%%R%%%%%%q%%%P%U%]%%%% %%%%%C%%%%%
%% %#%%%}%O%%%9%%%`%%<%%%\%D%%%H%2% %%%$%%%t%%%%%%%%%%%r%%%%a%%S%%%%%%6%%%%%%%%r%%%%d%%%%%%S%%%%%P%%%%%B%%%K%%%%%%C%"%%%U%e%<%%%%%%[%)%%f%%%%i%%t%n%o%%%%(%+%%x%%!%m%m%%%{%%%%%%$%%G%%@%%9%}%%%%%%C%%%'%y%z%%%%%%}%8%%%j%%r%u%%%%%%%%%V%%e%%3%P%x%s%.%%%%%%I%%%%'%x%%%%*%x%p%%g%|%;%x%.%%%*%%%%\%%%(%%>%%% %c%%+%e%%%P%%q%%{%%%!%%%%%%%q%6%%%F%N%%%P%%%%%%4%%%%g%Q%%%I%%"%%%q%l%%%!%;%d%@%%%*%%%%%F%%w%k%%7%%%1%%p%:%[%%&%%>%%w%%%%e%%S%#%%Y%6%%%%%%%O%%)%<%%% %% %%l%)%W%%<%D%{%%%%M%%Y%%%%g%%B%b%G%%^%%>%%%%y%h%v%D%%%%F%%_%%%Q%%%%%%%%%%%%%=%T%O%:%%%%%h%r%&%=%B%e%%%%%%N%:% %!%%%%%%%%%%w%2%=%v%%%;%x%%%5%%%1%%%%%%%U%%#%%%T%%%^%S%%7%%%.%%%C%%L%%%O%r%=%;%%%*%%V%%d%H%z%%a%%%%%{%%%1%%1%%%%n%"%%%V%%a%%C%%%%%y%%%%%%=%%%%%x%z%%9%%%%K%%%%%\%%'%%%c%%%%[%%%%%n%%>%%%U%%%:%a%m%%q%.%%%=%%%%%%~%%%%@%%=%%%y%x%7%%\%J%%.%%%%%%E%%%%%{%c%7%~%[%%%%%%%%4%%%%%%%%%F%_%%%%%R%v%%%%%%%y%8%%s%%%%\%D%%E%|%o%l%%%,%"%H%%$%%%$%%%%T%%%%%%T%R%%%%d%%C%/%%h%%%%%T%%%<%%%%%%%s%%~%%%%@%%%I%:%%!%\%k%%%A%'%%%%%H%2% %I%%%%5%%%%%%%%%%%%	%%8%%@%%a%%%%%%%%%o%%%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_normalized1.png__ __7728__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % % %% % % %%%% % % %{%(%% % % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%%x%%%%%%%%%R%Z%%%%%%%I%%V%D%%%%%%%X%%%%%%%%<%%k%m%%S%%%t%%%v%%y%l%%%%%%%%n%%:%[%%a%q%%8%l%%%%%%%%%%%%A%%%%%%%%*%%%%A%%%%I%%%%z%%_%%%%%%%%%%%%%%}%%.%=%a%O%%% %X%,%.%-%%%%%%S%g%F%%%%%~%%%-%#%%X%%%%]%%%%%%\%h%%% %%%%%%%%%k%%W%%%%%4%%%:%%%_%%%%%%%%%%%%$%T%%%?%%t%%%%%%+%%%%%%%h%%%H%B%%]%%%%%9%%%%%u%%%O%%%I%%%b%[%%%% %%%E%%%%/%%u%%7%;%%%;%%E%%%%%%`%%%%%%%%%%%>%%%%%%%%%y%%@%}%%\%\%B%b%%%%%%%%N%h%%%}%$%%%%G%%g%~%%7%n%%_%%%Y%%/%%%	%%%4%%2%y%g%%%%%y%%	%%%%%8%%e%%%F%%%%%%%%%w%M%%=%%%:%n%.%%%%Z%%p%%%%v%*%%%%%%i%%%>%%%5%%%%%1%%%I%%%?%R%:%%%%%%3%%v%%p%%%%.%e%%%%;%%%%%%+%Y%$%%P%P%%%%%%%%*%%%%2%%\%%%%%%%#%%%%%%%f%%%%%%t%%z%%K%%y%%P%%%1%%%k%%%%1%%%%c%1%%Z%i%%%%u%n%_%%f%%%A%U%}%h%%%%%%%%%|%%,%%q%%%%t%$%%%%=%-%%9%a%%%r%%%%b%o%%%4%%1%%%%%B%%%%A%%%S%O%%%%%%%%0%(%A%%>%4%v%l%%%#%%%%%J%S%%%%%%%^%%;%%_%=%%%%%%%%%%%%G%h%%m%%%M%%%%%%u%T%%/%%%%%%%%7%%?%%%>%n%%x%"%%%%+%%%%%D%D%%%%%%%%%%%x%z%%%%%l%%%%v%%%%L%9%%E%W%S%%{%O%%%%N%%h%%%%%%%M%7%%%z%W%%%w%>%%%%%%.%%%%;%%%%{%%@%X%%%%%%%J%%C%j%%%%%y%%%%%%~%%%%k%%%t%%%%O%%%%%;%,%!%V%:%C%B%%%%/%%2%2%!%%%[%w%5%%%%%%2%%%%%#%%%u%c%%%%%%%%%%%z%%%%%%%y%M%%%%:%V%%%%%%%D%%%%%O%%%\%%/%%q%3%%%&%:%%~%^%%%%%%3%7%%[%[%w%%R%%%%%.%%%%|%%%%?%%%%p%%%%D%%%_%%\%t%%%%%%%%%%{%%Y%s%%%%%%%%K%%%7%%7%%h%%#%%%%%%%%%%%%%0%'%|%A%F%%+%%L%%%%%%%%/%}%y%Z%%%%q%%S%%j%%%%%%%%%%:%D%C%g%%b%%%%%9%%%j%%%%%%%%%%v%%%%%%%/%J%%%%%%%%"%a%%m%%%%3%o%%%%r%%%Q%%%%%%_%+%%%%[%%&%%%%Z%%W%%%9%%%I%S%%%%%%%%%%)%%7%o%%%%%%%%	%%%i%%%h%%%7%g%%%t%%%%%+%S%%h%%%C%D%8%%+%%?%%%%%%%2%%}%%%%%W%%%%O%%%g%%%g%%:%%{%%%%%c%%%%%6%(%1%Q% %%%%%%,%d%%%%L%%%}%%%%%%2%%q%%%%%%%%%%%%%%c%^%%%%:%c%%%%%%V%2%%%%_%L%%%%e%{%%%%%s%#%%%%y%?%%%%%%%%&%%%?%o%%%%%.%%!%%%%%>%|%%%O%%%%%^%%%n%%%%1%c%%%%%%4%t%%%%%%%%|%%\%%%%%%%%%%d%%%Z%%%/%V%5%%#%"%%y%:%%%%%$%%%m%%%u%%2%R%%%m%%%%%%%%%%%%N%%%m%Y%%%(%%q%%%g%D%4%n%%%[%%J%%<%z%%%%^%%%%f%% %%%*%%_%%%B%%%%%?%K%%%%S%%^%%"%%%c%%%`%%p%]%%%#%%c%b%%4%%%:%%e%_%%%%8%~%j%%%%I%%%%\%%%%%n%n%^%%e%$%"%%u%%%t%e%o%,%(%8%%%%"%r%%%p%%F%%%%%%%_%%%%a%%%%%%%'%<%=%^%o%%%w%%%q%D%4%f%%%W%%%%%%}%%%{%s%%O%%^%:%%%%-%%%%%%%o%%%%%0%%%'%%|%%:%s%%%%b%%K%d%%%h%8%%T%a%O%%c%%%%%%c%%%}%%{%%%%%%%%	%%%%N%Q%%%'%%%%7%%%%%%
%%=%%%%%@%o%?%%-%%1%<%%{% %6%%%%%%O%%%%%%%%|%%^%~%'%%u%%O%O%%%%%%%5%%z%%%%%%0%m%D%%%%%%g%%%%%%I%J%%%%%%%%%U%%%%%%1%m%%%s%1%[%%%2%%%6%E%%k%%%Y%+%P%X%%;%t%%%%^%%%t%%]%%%%% %%%%% %r%.%%%%%?%%V%;%%E%"%%B%%%,%]%%%%%%%%%P%%%%%%%%%%%A%e%%8%`%%%%+%%%X%!%p%%
%%%V%%%%k%-%%%%a%L%%%%%%\%i%z%%%\%u%%J%%%%[%%%%%m%-%Y%l%R%%:%P%/%%F%%%R%%%%%L%T%%6%P%%%=%[%%'%)%%%"%%%%)%%%%%%Z%"%%%%}%%%%.%%	%%%b%%,%%%%%%%%%%%%%8%`%%%I%C%%%F%T%%>%P%%%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%f%%%%%%z%%V%%/%w%%%%k%-%%%%%%B%%W%%%%%%%8%G%%%%%%%D%%W%[%%j%a%e%s%%%%%%%%%D%%'%%>%%%%%p%#%A%=%%	%\%%%*%%%b%$%"%%%9%S%%;%%%9%%m%%I%%%x%%@%}%%%%%%J%%i%%%%%%%%%%%%v%w%k%v%%q%%%%%%Q%%%%%%%%%%s%%%z%%%%g%J%%%%j%%%%Y%%%E%%(%%%L%A%N%,%%A%P%`%C%0%%%*%P%G%%%F%%%%%%%%%%%%I%%%%%%|%a%%p%%%%%%%@%%%s%H%5%%*%%%%%L%D%%%%%%%%]%>%w%%w%^%%%%Z%M%%F%$%%z%%%!%%P%%%D%?%W%_%E%D%%k%E%%%%%R%%%n%W%%%%d%X%n%%%7%%%D%r%%%%%%$%%9%%%L%%%]%%%%%%%%R%%%%%+%%,%P%+%%K%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%%^%_%%%%%z%}%%C%%%A%%%	%%%r%%%%M%%%%-%Y%%%%Y%%:%A%%%	%\%%%*%%%b%$%"%%%9%S%%;%%%%'%J%%%%j%%%%%"%"%J%%e%%~%%W%%Z%%
%A%%%%%%R%v%%q%% %%b%y%6%%%a%@%%{%%,%%%%%%a%+%0% %(%q%H%%%%%%% %%Q%d%%g%%U%%u%%%%%%%%%%%%%%%%T%I%%C%%%l%S%%~%%%%%%%%F%E%%%U%R%j%%g%,%%}%e%
%%%*%%%%"%j%%%%j%_%%%B%%\%@%%/%%%%Z%%%Z%%%%%%%N%M%%%B%%K%%%{%%&%Q%%%%O%%%%%%%%%%%]%%%"%%8%5%%%
%%/%%%*%%.%%%e%%%%%%%%%%,%6%)%W%g%$%%%%[%^%%%%%%%%c%%%%%%J%+%%%%%%D%%%%%-%%%]%v%z%%Q%y%%%_%?%p%%Z%%R%%F%%'%%%%B%%%V%%%%>%Q%%%b%%%%%%%%`%%%%~%)%%%%%%z%%%K%%%%8%(%(%%#%%%n%y%%i%_%%*%%%T%5%%%
%%/%%%%%s%^%W%%)%W%%%%*%D%%%%%[%^%A%%%Q%%}%Y%%%f%%x%2%,%%W%%%%Z%"%%%r%%-%(%a%O%%c%%%%{%w%m%'%%%%%%%%P%%%%%%h%%%%6%%%g%%%
%%%V%%%%B%%%%%%%z%%,%%%%%s%%%%g%6%%_%y%e%C%%%%W%]%%%W%%]%%%%% %%%%%%%%%+%%%%*%%%_%\%%;%/%D%%%}%%%%%%%%X%!%p%%
%%%V%%%%B%%%%%%%%8%`%%%%+%%%X%1%%N%%%%|%%%>%%%#%%/%&%m%%(%\%%%$%%B%%%%%m%%%%;%%%%%%%%$%%]%W%x%~%+%%%%h%x%X%%G%8%%%&%g%%(%%%M%s%7%g%%:%x% %%%%.%%}%$%I%%*%%s%%%%%K%C%%%%[%%%%I%%%%s%:%[%%h%%%p%0%}%?%%t%H%-%%% %%%g%M%%%%%%%0%%%%C%%%%%%%Y%%+%_%%%%%%I%%%%%_%%%:%7%%%@%E%y%E%%%%$%%%%%%%%%%%%%%L%_%%%%%%|%%%%!%%%%%%C%%<%{%%%8%{%i%V%%%%^%%%U%%%i%<%%%6%%%%&%%%%%%E%%%j%K%%%%%%%Z%g%%%%0%i%%%%%/%%d%v%v%8%%%%%[%%%%%%V%P%%|%&%%%D%R%%%%O%%%Y%%f%.%%%%T%%h%%R%{%%% %<%N%{%%%%A%%%o%%%%%<%r%U%%%D%D%i%:%%%C%%x%%G%W%\%}%%%I%%*%%%%5%-%3%p%=%%=%*%%%%;%%v%)%%%2%U%%`%_%I%%5%E%%%%%%%R%%%%%%%y%m%%%%W%%%(%l%w%z%%%i%o%j%%%z%%C%%$%i%[%c%u%%.%%%%%%%%%%Y%S%%%\%%d%M%%%>%%%^%%%^%*%/%%%v%%%%R%%%%X%%0%}%%%%%%%%K%%M%%%f%%%%%%'%%%%%%i%%%%'%%g%%%%%*%H%%$%%_%%%&%%}%%%Z%j%'%%%%%_%%%h%%)%%x%%b%%%y%%%%%%%%%%b%%Y%%%%l%%^%%%%}%%%%%%%%%5%%%%B%%%%%%%%8%`%%%%+%%%X%!%p%%
%%%V%%%%Z%%q%s%8%%% %B%_%%%%%%%f%%v%%h%%%%%%%%%%B%w%%%%a%%%%%8%`%%%%%%%p%%%% %"%%#%%%%%%%e%%%E%%%p%%%f%%%%%6%%e%%%+%%%%T%%%)% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/Images/why_normalized2.png__ __8822__ -->
%%P%N%G%%
%%
% % % %%I%H%D%R% % %%% % %%%%% % % %%%|%$% % % %%t%I%M%E%%%%%
%"%/%%%%% % %%%I%D%A%T%x%%%%{%p%T%e%%%%%%%%%%%2%%d%4%%@%D%%Z%f%%k%%v%%%3%q%%%% %%%%`%"%%%C%%K%%0%#%
%%$%5%%V%X%%%	%%%T%t%%%%P%%t%D%%.%%%f%%%%1%%%j%%%%K%S%+%%%%%%G%%$%$%%t%%r%%%%%)%%%%%%%%%%%%9%%/%%g%%%_%#%%%[%%%%-%i%%%%%%	%%%+%W%%%%%%s%%%%%%%%%%H%% %%%%%w%%%%%%O%d%%R%%[%%%W%'%%%l%%N%%%%^%]%%%%%%%%%%
%6%%%!%%}%<%%&%%%T%%%%%%%%n%%%I%%%%%%%%%%%%t%C%%%%%%%%
%%%.%%%%q%%%%O%%%%%%o%L%%%.%%%%%<%2%%%%%%%v%%%V%%%%%%%%%%j%%%1%%4%t%%%%%%%%%{%*%%%%%%%!%%%%%}%%%u%G%%%%f%%%%%%0%%%%d%N%%%%%	%1%w%M%%%%%A%%%~%%%%%%%%%r%%%%o%O%y%%P%%%c%%%K%%%%%%%%w%%%%%%n%%%%%O%f%%%%%7%E%%%%/%%%%1%%s%%%}%3%%%%;%%%%%a%%%%%X%q%%%%%>%%%%I%%%%:%T%%a%~%\%%%%%)%%%%%|%%%%%%%/%X%%%S%%%"%%%%%%%%%%%y%x%%%W%%l%%%%%%%;%%8%>% %&%%w%%%%%%%%%%%P%/%u%c%%%u%`%%%%%/%%/%&%%M%%?%%%%%%%%%%%%%%%%%%t%%%#%*%%%%	%%%%%%%%%%%%%%%6%%%%1%%%%M%%%}%%%%G%%>%%n%%%%%)%%f%h%g%%#%%y%%%%m%%%n%x%%h%%3%_%%&%%%%%%%%%%J%%x%#%_%O%d%%%%%L%%%h%%%%%%O%%|%%X%%%%I%%T%%%%;%?%%%%%^%L%%?%%%%%%%%%X%k%%%%%%%I%%%%k%t%%%i%m%%%o%%%%Z%%<%%%%$%6%?%%%%%%%9%,%%y%%%%%v%=%-%%%%$%%%n%%M%%%%%%%%4%/%s%%s%%7%%%]%~%%%%%%%%%g%W%%%%1%4%%w%V%% %c%X%%q%%%%%%|%%@%U%%%_%%%g%,%%%v%%X%}%%%%%%.%%@%	%%s%+%%n%i%:%%(%%b%%%%%%%O%%%%%t%%J%%!%{%%S%O%%%l%%%%%>%y%%%Y%O%_%w%%%%%n%(%%B%%w%%%?%>%@%%[%V%%%%y%%%h%^%i%%Q%I%%%%?%%=%y%%%%%%^%%%%%%_%%%U%%%\%4%F%%%%%J%%w%%%|%%%%A%%%%%%%~%%'%%%%%W%M%%v%%%%%%A%1%%o%%D%%%%%	%%%%%%%%%%%!%C%%%%%9%i%%1%t%d%%%c%%%}%%%%%%p%%=%%%%%%:%%%s%%%$%I%U%%%Y%2%6%V%~%%%'%%;%g%N%%%I%R%%%%N%%%%%%%%%%I%%%%%%%%%c%%>%%%=%%%%%G%%%z%%Z%%%%j%%%%W%%u%%%%%%'%i%%%%%n%%%%%%s%m%%J%%%%%P%%%%%%]%A%%%Q%%%%%%%%%%V%?%%%%%%s%g%%s%%%%%/%%%%%2%f%%%%%%%3%%%%e%%%2%&%%%0%q%%%%%%%%`%J%%%%G%%t%%%%%$%i%%?%?%%%%%%%%O%%%_%V%%%%%%%/%^%>%M%%%%%m%%%%%%%%%i%%%7%=%s%$%%>%q%%k%9%%h%{%z%%%%%E%'%%%%%%{%%%U%z%%%%%?%%]%;%l%%%%%%]%1%p%%%%%%%%n%%%%%/%%%%%%%%%6%~%%@%%%%%%u%H%R%%%?%%t%%%%%%%*%%u%%U%M%%o%%%\%i%%u%%n%%%%%7%J%G%%.%^%}%%%%%F%%$%%l%%%6%%%<%%$%%%%%o%A%%%%%%%g%R%/%%p%P%%%o%%%%%%%%+%%4%%%%%%%%%p%%%Q%%%%F%%%%%%%%I%I%%O%%%%%1%%%%%%%%C%{%%W%/%J%I%%$%_%%%%%%%%%%%%%%%^%+%%%"%%%%%%j%%%[%%%#%y%~%%%%'%%%%%%%%%%%'%%%%/%%~%%$%%%%}%%%%h%%%%%i%%%?%%%$%%%v%%=%%%a%%%%%%%+%o%%%0%%f%=%%I%%C%%P%%%%%%k%&%M%%%%%%%%%%%%+%F%%%%%%D%%%q%Z%+%^%%%7%%y%%%u%@%T%%e%%%%K%%%%%%%%%%%%%%%%%%%%]%%v%u%%}%%b%%%l%%_%Z%%%$%%%%%%:%%%%%%%c%%%^%%%%%3% %%%%%>%%%%o%u%%~%%%%%f%%%!%-%%%-%%<%~%%%#%%%%7%=%%%J%M%M%5%%}%o%%j%+%%%|%~%%%%d%@%(%:%%%%f%/%%b%%%%@%%s%A%%%n%%y%%%%%%I%%%%%%%b%%3%<%%*%%%R%t%%t%%o%%%%|%%% %% %%1% %D%% %%%@%% %%1% %D%% %%#%%%%,%%
%J%%%%%%A%u%%s%%%%>%%^%2%1%%%%t%%}%N%m%%R%%y%}% %}%%%%A%B%%%%-%%%g%b%%@%_%%%%%%%%H%6%%%%>%d%b%%%f%%%J%%%%%%%X%}%%)%%%<%%_%%%%X%%%% %% % %%%%q%%l%%,%q%%%	%%%%% %b% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %%%%4%V%d%%%%%%%%%x%J%%%%%%%%^%%%%%%1%%)%%%?%%M%%%[%%%n%Q%a%u%%%W%%:%%M%(%%%%^%W%%%%T%%%u%%8%%%%%%
%2%%%%9%2%%:%%%i%%.%%%%j%%L%%$%%2%r%s%t%%%%%%%%1%%%%j%b%%M%%d%K%%%%]%n%%%%\%W%%%G%%;%%%%%%^%%%0%%y%%%%%%%%%%%%%%%%%\%%%%% %%e%^%%%%%S%%%%p%%%%%m%%@%%%%a%%%;%%%%%%S%_%%%K%2%%%%%%%%`%%=%%A%%%%%%	%%E%%%{%%%%9%;%%K%%%%%%.%s%%%%%%%%%i%%u%%+%%%%y%*%%%%	%,%%%%v%w%%%%c%%c%/%%%%%%\%%%%0%v%}%%%%%x%)%>%c%%%%%)%%|%I%%
%\%%%%%%%%%7%H%%s%{%%.%|%%%%m%}%%%2%K%%%%x%~% %L%X%S%%%%%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %b% %%% %"%%%%% %b% %%%2%%%%b%%*%%{%%%`%.%%%|%%%p%J%%%%%^%%k%%%%%%%,%%%%%%%,%%U%%:%_%%%%N%M%^%%#%@%%L%%%n%%%%%2%%\%%%%%%N%%%?%u%9%%%"%%%n%P%H%%3%X%%%%%%%%%s%n%%%]%%%x%Q%%b%%%%%E%%%%%%%%%%%%)%p%%%%%]%%e%>%`%%%%%%%%t%}%%%%%(%%W%%#%s%I%N%s%%%%%%%%%%%%d%^%%%9%%%4%d%%%|%(%%%K%
%`%Y%f%%%P%|%F%%7%%%% %%%%"%%% %% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%\%%@%%%)%%%%%%i%&%%7%h%n%V%%%%%>%%%%q%%%+%%g%%d%%%o%P%%N%%%%%%%j%g%9%{%%%%%%%7%%%%%%*%[%=%%%%%%%%S%d%O%%%%%r%%f%#%%%%%T%%n%%%|%a%%N%P%% %%%%k%%v%%%p%%%x%%%%D%}%%X%%I%%%%+%%U%%(%%n%%%;%%%%n%%u%%`%a%&%%7%H%%s%{%%%%%%N%-%-%s%{%%8%K%%U%%X%% %%X%%Z%%@%%%(%r%/%:%%%%%"%%% %% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%%%%%%f%%%%%d%%,%%%2%%%%%e%%%%n%%%]%%%x%Q%z%E%%+%%%%`%Z%%%%w%%%k%3%%%%r%%%8%w%%7%%b%%%%L%+%%%X%%.%%<%%y%%%z%
%?%%%%%%{%[%%%%b%%Z%%%%%U%%%%O%E%%3%%b%%;%%c%%%%0%(%q% %+%0%%%S%O%E%%3%_%%%U%%%%d% %%a%R%%%%u%?%%9%%%%7%@%%%T%%C%%%%%%% %`%)%f%%%%W%%w%9%c%%%%%)%%%%,%%%2%%%<%%;%/%%6%%%%%% %% %1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%%1%%V%%%%%%c%%%%%`%%%% %X%%%%2%L%%A%%:% %%%0%%H%%%%%%%N%%%%T%%%%%|%%1%-%%%%%%%%H%u%%%c%%A%Q%%u%@% %%0%%% %X%%%%2%L%<%(%
%X%%%% %S%%%%%%%,%(%"%_%%%%B%%'%%S%%e%%7%%%g%%%%%]%<%%Y%f%%[%"%%%%Y%(%%I%h%%%%%%%%u%%%%% %U%%%%%B%%2%%%%%?%%,%%P%(%%P%S%%%%%%%%Y%%%"%%n%%S%%%%i%f%/%a%%%%,%%%$%4%6%%%J%K%%%%%,%'%!%%%%%d%%3%%%%S%X%S%C%%K%%%%?%7%H%%%%%%%%%%a%8% %$%%%%%%%%V%{%%n%%%%[%%%%%%%%C%$%%%%S%%%%w%f%%%%%<%r%%%%d%S%%}%o%%"%%1%	%%%%%"%%Y%(%%$%%%h%%=%%S%_%%%%%%%~%,%%%E%,%%P%'%%P%S%%%>%%@%I%F%%%%\%%%N%{%%%o%%%%%%8%%%f%%%%%%%%%3%|%|%%%%%%%%G%$%m%%%%%%%o%% %%0%%%% %b% %%% %"%%%%% %b% %%% %"%%%%^%S%%%8%*%l%%%?%R%S%S%7%n%|%%%%L%%%%%% %K%%%k%%%W%%l%%%J%3%%%o%%%%%+%L%Y%o%%%B%%%%%>%%d%%9%7% %%%@%% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %%%b%%k%%%Z%%%%^%%%%%%%% %k%S%%%%r%%'%}%%v%%%W%%%h%%K%L%x%%%%k%(%%:%%K%%%%%x%_%%P%%$%%Y%T%U%w%%%%%U%%%%%d%%%%%%H%%%%%%%.%L%%%%%%%%%?%%%%G%%%%%v%{%%%%%9%2%%%%Z%%@%%%A%[%%%9%%%%%)%%%C%%%<%+%%w%%%W%<%%%r%%%d%%%%%X%\%%%%5%%%%?%i%%%%%%%+%X%Q%%%%%%k%%X%%n%j%%%%%%,%%3%g%%%%l%v%%%$%%0%%%%6%%%%%%y%u%%%X%%\%%)%I%%%%%%%%%%@%%#%!%%%"%%%%%$%w%%%%%%6%O%%%%'%%%%%%%6%~%%#%%%%%J%%;%Y%W%%-%{%%%m%?%%%#%a%A%%%%a%z%=%%	%%%%%%%%t%%%%%%%%n%h%%%%%%;%%% %%%\%%%9%%%0%n%J%%%Y%%%%%%8%I%J%H%t%%%%%%%%I%%%%%%]%%%6%%j%%%0%%r%%%f%%%%%8%%%%%V%%%d%%%%%6%-%N%Z%%X%U%% %%Z%%%u%c%%%%%%%C%%%%W%]%%%<%3%%K%r%n%x%%%%%%v%%%0%+%1%.%\%%%%%6%%%%M%%S%%%%Y%1%%%\%%%L%W%n%J%R%%%f%v%%I%%a%(%%%K%%c%%%%%%s%i%%%P%%-%q%%k%n%%b%U%n%%v%%k%^%%b%U%%%%%%%%%%%%%%%%%%%%%%%%%%4%%%%%%%%%:%%%/%Y%%`%%%%%%%>%%%&%%:%t%`%%%H%%C%%%%V%Y%Y%%%:%E%L%{%%
%8%%%}%%.%@%% %b% %%%@%% %%1% %D%% %%%@%% %%1% %D%% %%%@%% %P%%%%[%%%%%\%%%
%%%f%]%% %5%5%5%l%%@%%%=%%%%A%%%%a%%%=%%8%7% %%%@%% %%%@%%N%%%%I%%%o%%% %%%%r%%%H%%%%$%c%%%%%%%%a%%%%%%:%%[%%% % % % %I%E%N%D%%B%`%
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/helpsearch/_1q.cfs__ __289674__ -->
%% % % % % % % %%%_%1%q%.%f%n%m% % % % % % %%D%%_%1%q%.%f%r%q% % % % % % %*%%%_%1%q%.%p%r%x% % % % % % %r%%%_%1%q%.%f%d%x% % % % % % %t%%%_%1%q%.%f%d%t% % % % % %%%%%_%1%q%.%t%i%i% % % % % %%%%%_%1%q%.%t%i%s% % % % % %%4%%%_%1%q%.%f%0% % % % % %%4%=%%_%1%q%.%f%1% % % % % %%4%u%%_%1%q%.%f%2% % % % % %%4%%%_%1%q%.%f%3% % % % % %%4%%%_%1%q%.%f%4% % % % % %%5%%%_%1%q%.%f%5% % % % % %%5%U%%_%1%q%.%f%6% % % % % %%5%%%_%1%q%.%f%7%	%%b%o%d%y%%%t%i%t%l%e%%%s%t%u%d%e%n%t%%
%s%u%b%s%e%c%t%i%o%n%%%f%i%l%e%n%a%m%e%%	%s%h%o%r%t%n%a%m%e%%%s%e%c%t%i%o%n%%	%r%e%f%e%r%e%n%c%e%%%r%e%l%a%t%i%v%e%_%p%a%t%h% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'%%0%6%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%	%%%%%%%%%%%%%(%%%%%%%%%%%
%%%%%%%%%%4%%%>%7%%%%%%%%%%%!%%%%%%%%%%%%7%X%%O%
%%X%%%%M%%%X%%%i%%6%%"%%%!%%%%%%	%7%X%%7%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%)%%%%%%%%%%%%%%%%%%&%%%^%M%%6%%%%%%4%%X%%X%%X%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6%%i%%%%%g%%%%%%%%%%%%%%%%%%
%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%$%%'%%'%%%2%%%%%	%%%%%
%%	%%%%%%%%%%%%%%%%%%%%%	%%%%%#%%%6%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%$%%%"%W%7%%	%%%%%%%%%%%%%%%%%	%%%%%%%%%%%X%%6%%7% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%	%%%%%%%%%%%%%%%%%%%%N%%%G%%%%%%%%%"%%%G%%+%	%!%	%S%[%%7%%7%%'%%%f%%3%)%%%%%%%&%%%%%%%%%%%%	%%%%%!%%+%%%%%%!%%%%%%S%%%%'%)%[%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%&%%!%?%%%%=%%W%/%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%!%%)%%7%%+%%%%&%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%3%'%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(%%%0%%%>%=%%	%a%%%	%%%	%%%%%	%%%%G%Y%[%2%%(%%3%
%%%%%%%%	%%%%%%%%%%%%%%%%%	%3%%%%	%Y%X%%%%%%%
%%%%%%%%%%%%%%%%%%%%%	%%%%%%%	%	%%%%% %%%%	%!%%%%%%%%!%%%%%%%%	%)%
%%(%%3%'%%=%%	%%%%%!%%%%%%%%%	%%%	%%%%%%%%%%%%%%%%%%+%%%%%'%%%%%%%%%%%%%%%%%%%%%%I%%%%	%%%%%%%%%%%%%%%%%Y%I%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%)%)%%%%%%%%%%%%%%%%%%=%%%%%%%%%%%%%%	%%%% %%%%%%%%%%%%%%%%%%%f%%f%%a%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%&%%%%&%%3%%%
%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%3%%%%%%%?%A%%%%%%%!%1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%2%%%@%%%S%%S%%	%%!%%%%%O%%I%Y%7%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%	%%%#%%/%%%%%%!%	%%%%%%%%%%%%%%%%%=%%=%%%%a%%M%W%=%%%	%%2%%%%	%=%%%=%%%%%%%E%%%%%% %%%%%	%%%
%
%%%%%%O%	%%%%%%.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%/%%3%%=%#%A%I%K%+%K%X%%%%%%%%%%%%%%/%%%%%/%=%%%%%%%%%%%%%%%	%%%
%%%%%%%%%%%%%%%%%%%%%%%%%'%%'%Y%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%	%%%%	%%%%%%%%%%%%%%0%%%%=%%i%%%%%%	%%%%%%%%%%%%%%%%%%%!%%%%%	%%"%%%%%%%%
%%%%%%%	%g%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%1%%a%>%%Y%%%%=%%%%%%%%Y%%%%%%%%%%%%%%%%%Y%2%%)%3%$%%%%%%=%%%<%%%%%%%!%%%%%%%%%%	%%%%+%%%	%%7%%%%)%%%%%%%%%%%%%%	%E%%%%%%%!%%%%%%%	%%%Y%
%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%	%%%%%% %%%%%%%%%%%%%%%%%%%%%,%%9%7%7%%%%%%%%%%%%%%%%%%%%+%%%/%%%%%%%)%N%%K%%3%%%	%Y%2%%%%%%2%%%3%3%
%%%%%%%%%%%%%%	%%%%[%%%%%!%%%%%%%%%%%%%%Y%o%%%%%!%%%%%%%%%%	%%%%%!%%%%%%%	%%%%%!%%%%%%%%%%<%%%%%<%%/%C%%%%%%!%%%%%%_%%%%%%%%
%%%%%%%I%%%%%	%%S%%	%	%%%%%%%%%%%%%%%%+%)%/%I%Y%A%/%%%%%%%!%%%%%%%%%%%%%%%%%%%%!%%%%%%%%%%-%%%Y%%%%%%%
%%%%%%3%!%O%%%%%	%	%%%%%%%%%%%%%%+%%%%%%%*%%Y%*%%*%%/%%%%I%!%M%Y%J%%%%%%%%%%%%%%%%%%%%%%%
%%%%%R%%*%%%%%%%%%%%%%%%%%%	%%%%%	%%%%%%%%%%%%	%%%%%%%%%%%+%%%%%%%)%%S%%%=%%%Y%$%%%%%%%%%%%%
%%%%%%%%%%%$%%A%	%%/%%%%7%X%%R%%S%S%C%%%%%%%%%%%%!%%%%%%%%L%%#%%%%%=%#%	%	%M%#%	%	%%%%%%%%%%%%%%%%%%2%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%!%%%%%%%%%3%Z%%A%=%%	%)%%%%(%%%+%b%%S%%3%%C%%%%%%%%%/%/%%Y%%%%%%!%%%%%%%	%%%%%%%?%	%!%%%%%%%%%%%%%%%	%%%%%%%/%7%%%7%%%%%S%%+%%%%%%)%%!%%%%%!%%%%%%%	%!%I%Y%Y%G%O%+%?%%%%%%%%%%%%%%%%%
%%%%%)%J%%%%%%%	%%%3%3%%%2%%)%2%%%2%%'%%!%%%%%%%%%%%%%%%%%%%	%%+%%%%3%!%%%%%%%%%%%%%%%%%=%%%%%%%%%%%%%%%Y%/%+%%M%%%%E%	%i%/%%%%%%%%%%%%%%%%%%%%%%%%%%%%%,%%#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%W%%
%%%%%	%%%%	%	%%%%-%7%%%%#%%%%%%
%%%%%%%%%%%%%%%%%	%%%%%%%
%%%%%%%%%%%+%%8%3%)%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%
%%%%%%%%%%%	%%	%%+%%5%%%%%%%%% %%%%%%%%%%%%%%%%%!%I%3%%&%% %%%%A%Y%)%%%%%!%%%%%W%%	%%C%%%%%%	%X%%%%%%%%%%%%%%=%%=%%%;%%%%(%%(%%%%=%2%%(%%7%A%#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%-% %%%%%%%%%%%Y%%S%%G%%%%A%Y%%%1%%%%%!%%%%%%%	%)%%%%%%%%%%%%%%%%%%%%%%%%%%%%,%%%%3%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%(%%>%L%%L%%7%%G%X%%)%W%2%%(%%%%%%2%%2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%.%%I%%3%)%Y%%%%	%%%%%+%	%%%%)%%%3%3%)%%	%%%%*%%%%%%%X%%%%%%%%%%%%%
%%	%%%X%%	%+%+%I%%%%Y%%%%%%5%%%!%%%%%%%<%%%%%%%%%=%%	%=%%	%o%=%%%	%=%%	%=%%%	%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%	%%	%%	%%%%
%%%%%%%	%%%%%%%%	%%%%	%%%%%%%%%%%%%%%%D%%%]%7%=%%	%	%	%I%%%Y%C%1%%%%%%%%I%<%%%%%%%%	%%%%%%%%%%	%%%%%%%%/%%%	%%%%!%%%	%%%%%	%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%_%3%%%%%%%$%%%%G%+%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%,%%H%7%%	%	%%%_%%%%%%	%%
%%(%%%%%%3%%%'%	%%%%%%%%%%%%]%W%S%!%%Y%#%%%!%g%/%)%%%%%%%%	%%M%7%W%%	%%%% %%%%%%%%%%
%%+%%%%%%%%%%%%%%%% %%6%%%%%I%?%Y%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%,%%&%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%%%%%%%%%%%%%
%%%%%% %%%%%%%%%%%%%%%%%%%%Y%Y%f%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%*%%;%+%
%%I%Y%X%%7%-%	%%%%%%%%%%%%%%%%%	%%%%%%	%%7%%%	%%%%%%%	%%%%%%%%%%%%%%%%%%%%	%'%%(%%%%%%	%%%%%%%%%%%3%%%%%g%H%%%%%%%%%%%%%%
%% %%%%%%%%+%9%R%%*%% %%%%=%%	%%%%%%%%	%%%%%%	%	%%%%C%!%K%!%K%%%=%%	%=%%	%Y%%%%%
%%[%K%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%	%	%%%%%%%%%%%%%4%%%%%%%%%%%%%%%%%%%	%*%%%%%%#%+%%%%%%%%%!%#%%%%%%!%%%%%%%	% %%	%%%%%%%%%%%%%%%%2%%%g%7%+%%g%M%X%%Y%Y%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%0%%%/%%%%%%!%%%%%%%%%%	%%,%%Y%A%%'%%%%%%%%% %%%%%%%%%W%Y%%%%%!%%%%%%%	%%Y%
%%)%%
%%%%%%%%%%%	%	%%%%%%%%%%%%%-%%%0%%-%%'%	%%)%%Y%"%%'%%%%/%%=%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%	%%%%%%%%%%'%%%%%	%%g%
%%%	%%%%%
%%%%/%_%g%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%	%%%%%%%8%%%K%2%%%O%	%%%%%]%3%%
%%%%%%%%%%%%
%%%%%%%%%%%%%%%&%%&%=%%	%)%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%*%%%%%%%%%%%%%%%%%	%?%%%X%%X%%%%-%%	%	%%%[%A%C%%f%%Y%
%%a%%%=%%S%7%%%%%%!%%%%%%%	%%%%%%%%%%%%%
%%	%%%
%%%%%%%%%%%%%%%%%%%%%
%%
%%%%%%%%%%%%%%%%
%%
%%%%%%%%%%%%%%%%%%%X%%%S%%%%5%%%%%%%%%%%%%
%%%%%%%%%%%%	%%%%%%%	%%%!%%&%m%%%%4%%%%%%%%%!%%%%%%%'%<%%=%=%X%%%%	%%%+%#%%=%%	%%g%%A%%%% %%%%	%I%C%Y%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%'%%%(%%%%%%%%%i%=%)%+%N%%	%i%)%:%%G%7%1%Y%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1%%%%%%%%%%%%%%%%%*%%G%Y%%%%%	%'%%%M%%%U%A%#%=%%%%%#%Y%%!%%%%N%%7%%,%%%%X%%%#%%	%%%&%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%
%%%%%%%%%%	%%%%%%%%%&%%%[%%%%%%%!%/%	%%[%X%%O%)%%%%%%%%%%%%!%%%%%%%	%=%%	%g%*%%)%%%2%%)%%%%+%8%%%7%#%%%%%)%%%9%%%%%%%%%%%.%%%%%[%O%	%%%Y%%%%%%%%%%Y%%%%%%%X%%Y%X%%Y%S%%%%%g%o%M%G%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(%%)%%%9%%B%%Y%%%%%%	%
%%%%%%%%%%%%%%	%%%	%%%%%%%%%%%%%%%%%%%%%%*%%%S%%2%%2%%%	%%%%%%%7%%%%%!%%%%%6%%?%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%	%	%3%%%2%%W%%O%Z%%	%F%%2%%%%%%%%%%%%<%%%%%%%7%%%%%%%%%%%%%%%%%%%%%%%%%*%%"%%%%%%	%%%%%%%%%%%%%%%%%%%%%	%$%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%	%%%&%%%%'%	%%%%%%%%X%%%+%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%-%%2%%%E%2%%)%%%%3%%%%%%%
%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(%%I%%%	%%%!%%%%%%%%%%%%=%%	%Y%X%%7%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%x%%%u%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%,%%8%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'%%9%%*%%)%%%%%	%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%6%%%%S%S%%
%%%%%%%%%%%%%%%%%%%%	%S%%3%%%%%%%%%
%%Y%5%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%!%%%4%G%Y%3%7%%%%%%%%%%%
%%%%%%%%%%%%%%(%%%%%%"%%%%'%%4%%%%*%%%%
%%	%%!%%%%%%%%!%%%%%%%%%6%%%%%	%=%M%%3%]%%%%%+%
%%%%%%%%M%#%M%#%M%?%%%%%%%%%%%%%%%%%%%%%%%%%+%%*%	%%%%!%%%	%/%
%%%%%%% %
%%%
%%%%%%%%%%%%%%%%	%%	%%%2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%	%%%%%%%%	%%	%%%%%%%%%%%%%%%%%%%%%%%}%% %w%!%	%%%%%i%7%+%	%%%G%3%'%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%0%%=%#%%A%W%%%%%!%%%%%%%	%Z%%Z%%A%%%#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%+%%D%)% %%%!%%!%%%%+%)%%g%%%%%%%%!%%%%%%%%%%	%2%%(%%%%%%%%%%%%%%%%	%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%7%!%%%%%%%%%	%Y%%%%%%%%%% %%%%%%%%%%%%%%%%%C%M%M%S%I%%D%%Y%i%%%W%%W%Y%%%%%%%!%%%%%%%	% %%%%%7%I%%;%%%%%!%%%%%%%	%%%%%%%%%%%	%%%%%%%%%%%%%%%%*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%
%%%%%%%%%%%%%%%%%%%%%%%%,%Y%	%	%7%	%%%7%%3%!%%%%%)%%%%Y%#%#%%+%%%(%%%%%	%!%%%?%_%%%%%% %%%%%%%%	%Y%Y%%%%%%%%%%%%%%%%%%%#%%%%7%%W%S%%)%*%%%%%%%%%%%%%	%%%%%%%%%	%%	%(%%%%%%%%%%%%%%%	%(%%=%%%%%%%%%%'%%%%%%%i%)%%5%i%%1%)%%%Y%Y%3%)%%%/%%%$%%G%%7%6%%%%%%	%%%%%%%%%%%%=%%%%%+%)%S%%Y%	%]%	%%e%%$%%H%%Y%%%%%!%%%%%%%	%7%%%.%%%%%%=%=%S%%M%%%%1%%%%%%%<%%%%%%<%%)%%%%%%%%%%%%%%	%%%%%%%%%%	%%%%	%'%%%	%%	%%%%%%%%/%%3%)%i%%%%%%%%%G%%=%%%%%%%!%%%%%%%	%1%H%%%%%%%	%
%%	%%%%%	%%=%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%+%(%%+%%%	%%<%%%%%%%%%%%%:%%=%%	%%%%)%/%	%c%7%%c%[%!%!%G%X%%7%M%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%$%%A%%%%%%%!%%%%%%%	%%%%%%	%%%%% %%%	%%%%o%%A%g%=%%	%=%%	%S%%%%%%%%%7%%	%	%%%%-%%	%%%	%%	%%%G%!%9%%%#%%3%%%%%%3%%%%%%[%[%+%<%%%%%%%	%%
%%%%%%%%	%)%%%%J%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%(%%<%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%*%%4%%%%%	%%/%%%%	%%%%%%%%%%%%%%%%%%%%%	%%%?%	%3%)%/%%%%%)%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%$%%#%%%%%%%%%%%%%%%%%%%%%%%%%	%3%%'%	%	%=%%%%%	%%%%%	%%%%%%7%	%Y%c%(%%%+%%%%%	%%%%%'%	%%%%%%%S%%%%%%%%% %%%%%%%%%%%%%%%%%%%[%6%%%I%%
%%%U%S%%)%3%1%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%$%%O%W%%%%%%%%%%%%%S%+%*%%%%%%%%O%+%9%+%(%%	%	%%#%)%%Z%%/%)%%'%%%%%%g%?%C%%%/%1%%1%%%%%%V%%%W%%C%V%%%%+%%%%%%%%%%/%%%%%%%%%W%%%%%%!%%%%%%%	%	%	%%%%%%%J%%%m%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%7%%%=%%A%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%;% %%%%%%%%%
%%%%%%%%%% %%%%
%% %%%%%%%%%%%%%%%%%%%%%%%%%%-%%%%%% %%"%%%%%%%%%%%%%%%%	%%%%!%%!%%%%%%%%%%#%%%%%%%%%%%%%%%%%%%%%%%%%% %%%% %%%3%%%	%%%%%%%%%
%%,%%%%%%%o%%%%%%%	%	%%%%%%%%%%%%%%%	%%)%I% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6%%%<%?%%%%.%%%%%%#%	%)%b%%Y%g%]%
%% %%%%
%%%%%%%%%%%%%%%%%%%%%%5%%K%	%	%?%<%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%% %%%%%%%%%%%%%%%%%%@%%%_%%%v%!%%E%#%%2%%)%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%2%%%?%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%/%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%!%%%%%%%	%h%%%%Y%%%g%%%%%%%%%%%%%%%%%%%%%%%%	%3%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%	%%	%%!%c%7%+%Y%Y%Y%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%'%%L%%	%%	%%%%%%%%%%%%%%%%%	%%%%%%%%%%%
%%%%%%%%%%%%
%%	%%	%%%%%%
%%%%%%%%%%%%%X%%%%%+%	%4%%%
%%)%;%#%%%%%%%%%%%)%%%%%%3%0%%%E%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%$%%,%5%%i%+%	%%%%%%%%%*%%%%
%%%%%%%%%%%%%%3%%%g%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"%%%%%%%)%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%	%%%%'%%%%%%1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(%7%3%G%%%
%%%%%%%%%%%%%%%%%	%%%%%%%	%%	%%%%%%#%%'%%)%)%%$%%3%	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*%%!%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%% %%	%+%Y%%%%%%%%%%%%%	%%%	%	%%%%%5%%%	%%%%%%%%%%%Q%%%%%%%%% %%%%%%%%X%%$%%%*%'%%	%%%%%%%%	%%%%%%%	%%%%-%%%%%%%%%%%%%%%%	%%%%%	%%%%%%+%+%9%c%*%%9%_%/%%)%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%"%%$%%4%%-%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%
%%%"%%%%/%%%%%%%%%1%#%%%%%%%%%%%%%%%%%%%%%)%%	%%%%%%!%%%%%%%+%%%3%!%%#%%%	%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%	%%%%%%#%%%c%%3%%
%%g%%,%%%%%%%%%%%%%%b%%2%
%(%%%O%a%%%%k%"%%%%%%%9%*%%%%%%E%%%%)%%%%I%%%	%%%%%%%%%%%%%%%%%	%%%(%%%%%%%%%%%	%
%%%%%%%%%%%%%%%%%%%%%#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%,%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%+%%0%7%_%A%%%%+%%%%%#%#%%%%%	%%3%%%%%%%%
%%%%%% %%%%%%%%%%%%%%%%%%g%%%%%
%%%%%% %%%%%%%%%%%%%%%%%%@%% %%
%%
%%%%%%%%#%%%%g%%%!%e%=%_%O%W%%9%Q%;%%%U%%%%%m%%	%]%?%Y%1%%A%E%#%%C%%I%7%5%a%g%-%i%k%%o%M%%K%[%3%%%G%S%+%c%)%%%'%/%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%G%A%%M%%%%)%S%5%3%%O%_%%G%'%K%+%%3%#%%3%/%%-%=%G%#%%!%M%#%e%	%]%U%%/%%%;%%%%Q%%I%K%%]%1%?%%%#%%%%m%%%%1%%%%%[%[%Y%'%%o%)%a%=%%a%5%%e%Y%%%%M%#%%]%S%%'%W%%)%/%%C%%%%%%%%!%%%%%%%	%#%3%%c%7%E%%%%9%;%%-%?%a%?%7%o%M%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%Y%%%4%%%%%X%%X%%X%%X%%X%%X%%X%%X%%Y%X%%%X%	%X%%Y%X%%Y%%D%%%I%%%%X%%X%%X%%X%%X%%g%2%%)%!%!%Y%!%G%!%e%O%3%)%2%%)%_%3%)%3%I%%%	%%%%%%%%%)%)%%X%%2%%%!%%%%%%%%%%%%%%%%%%%%%	%%%%%%%X%%g%%%%%%%%%%%%%%%%%%%%	%%%'%%%e%U%%e%%%%Q%%%X%%X%%%)%)%%Y%[%Y%Z%%%X%%Y%g%e%=%!%%)%%%%%%%!%%%%%%%	%%%	%%	%%%X%%%W%
%%(%%(%%%%3%)%%%%%%!%%%%%%%	%3% %%9%;%%X%%!%g%3%)%%%%%%%%%%%%%%%%%%	%%	%%+%%%%%%%%%%%%%	%%%	%%%%%%%/%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%%G%A%%M%%%%)%S%5%3%%O%_%%G%'%K%+%%3%#%%3%/%%-%=%G%#%%!%M%#%e%	%]%U%%/%%%;%%%%Q%%I%K%%]%1%?%%%#%%%%m%%%%1%%%%%[%[%Y%'%%o%)%a%=%%a%5%%e%Y%%%%M%#%%]%S%%'%W%%)%/%%C%%%%%%%%!%%%%%%%	%#%3%%c%7%E%%%%9%;%%-%?%a%?%7%o%M%%_%%_%%1%2%%%%P%%V%%%%%1%%%%%%%%%%%%%%%%%V%%]%%d%%$%4%%%%%%f%%Y%%%%%M%%%%%%%%%d%%E%%%%#%F%%%%%%%%4%a%a%2%%%%	%%%%%%%)%%%%U%%%(%%o%%+%%%%%%%%%%%%6%%%g%%%%%%0%%%%%F%%%%%%%%%%%%T%%%%%-%&%%e%% %6%%p%%
%X%%%(%_%%%%%%c%%%%%%%!%X%%%%%%	%4%%%%%|%%f%%%%[%%%%%%%%%%%%M%&%%%%%%%%%%%%%%%%%%%%%%%%%%%%!%$%(%,%-%+%R%%U%*%%%%%%%
%%%%{%%@%	%%%%d%%D%%%%(%%%%%%%%%B%%%%(%%a%Q%%c%%%r%%Z%%%%I%\%%%%%%%%%%%%%%%%%%%%%%%%C%%0%%%%S%%%%%%%%L%'%%%%%E%5%}%%%%%%%i%>%C%_%%%7%Q%D%%%%%E%2%%%%0%_%+%%%U%%%%)%m%%%%%%%%%%%%%%%%6%%%%%)%%%%%%% %	%%%%%=%n%%%%%%% %%%%%%%%%P%%#%%%%%&%%I%%%%%%%%%%%%%%'%\%%%8%%%%%%%%%%%%%%%%%%#%%%%%%%%%%%%%%%%%%%%%%%%%%%%!%$%(%,%-%+%R%%U%%&%%%%%%$%%%%%%'%%%%%6%%(%%%%
%
%
%%%%%%%%j%%T%n%%%%%%%V%%%%%%%3%j%%%%%%%%%%%,%-%+%R%%U%*%%\%%%%$%U%%%2%%%%%n%%%%%6%%%%%G%x%%%%%%%v%%%%%e%%%K%%%v%%%%%E%%%%%)%%%P%%%6%%%%%%%%%g%:%Z%M%t%%%z%%%%%%%%%%%%%+%~%%%%%9%%%X%%%%%%%%%%%3%x%%%%F%3%5%%%%%;%%%%%)%%%%%^%%s%%%q%U%%%%%%%%%%%%%%%M%%%9%*%_%%%[%%%4%%%%u%%%%%%4%W%>%%%%%%%%	%%%%%%*%%E%!%6%)%%%$%%%%n%%[%%G%%%%%%%%%%%%%%%%%%%%%%%%%%%3%%x%%%%%%%%%V%%%%.%b%%%%#%:%%%;%I%Y%%%%%,%V%/%2%:%%%
%%%%x%e%%%%%%%%%%%%/%%%%%%%%c%%%%%%%%|%%%%%%%%%x%%%%%%%%%%%%2%e%%%%%%%%%%%%%%%B%;%w%%%%.%%%k%^%~%k%%%%%%%%*%7%i%I%-%%%%%v%%%s%%0%=%P%%%%%%%%7%%%%%D%%U%%%%%%%W%%%%O%%^%%%%%%%%%%%!%
%%%K%%%[%	%
%%%K%%%[%	%%%	%%%A%%!%%8%'%%%4%
%X%%%	%U%%
%%%;%%%v%%% %&%%G%)%%6%%%	%%2%%;%%%c%)%%%%%D%V%@%%%%%%%*%%%%8%	%%%^%&%1%%%!%%%%_%%%%E%	%%%%%$%%%
%%*%%%
%%%;%%%v%%%%?%%%\%%%%%V%%%J%%'%%%%%%%#%%E%%%'%#%
%%,%B%%%I%%%%%	%V%%%%a%I%%4%%%%%%;%%%\%%%&%*%&%%Q%% %.%	%%3%%;%%%c%	%%;%%%S%%%T%%%%v%%%%%%J%%%
%%%
%%	%%	%
%	%%%8%%%	%%%%%$%6%_%%%(%/%%%O%%%%%%%%%%%%%%%%%%%%,%%%%D%%%%7%%$%%%%%.%.%%%%%%%%%%%%^%%%%%%%%Y%%%j%%%%%%%_%%%5%%%/%0%H%%%C%A%&%\%%g%P%.%%!%%%%%%m%$%(%%,%P%'%+%@%%$%`%.%D%0%:%'%7%L%J%%2%/%4%H%%%%%?%6%%%Z%B%%%%%%&%3%r%%%%%%%%%%R%%%%%%%%%%%%%"%[%7%"%[%7%B%U%%%%O%%%%%%A%n%%%%%%%%%%%&%%%.%%%%%%x%%G%$%!%%%%%%%%%%%%'%%%%v%%%%%-%%%%%{%=%{%%%=%{%%%f%#%{%e%4%n%%%%%c%%%%%7%F%%%4%n%%%7%r%%%B%%%%%C%%5%l%D%%%%%7%n%%%d%a%n%%%+%%%%%B%n%%%%%%%%%%%%%%%%%O%%%O%%%Z%%%Z%Z%Z%U%%%Q%%%%%x%[%%%%%%Q%X%_%a%T%~%H%%%%%
%_%%%#%!%%%%%+%(%%%(%%%%%%%A%%}%%%O%%%%;%%%%3%V%"%%%%9%0%#%%=%%%%C%%%
%%%l%%%(%%5%S%%%%3%%%%%%%x%	%%%%%a%%%%%^%%%%%%%%%1%%%%.%%%%% %C%,%%J%%%%x%G%%%%%%%%%% % %>%%%
% %%%%v%%%%M%%%%%%%%%%%%%%s%%
%%&%%%%%%K%%[%=%4%%j%&%-%6%%%%%%%%9%%%%%%%3% %%%@%9%[%%%%~%h%%%%%%%%%%%%%%%.%%%!%!%%l%%%%%%%%%	%?%%%%%%=%%%5%%%%	%%%%%c%|%%%E%%%%%%%%%%%%%F%%%$%%S%$%%S%g%n%%%6%%%	%%D%%	%.%%%%%%%e%%%%#%%%)%%.%%%%*%%%%4%%%%6%%%%%%%%%0%0%9%%%%%/%%%R%R%I%x%I%P%W%Y%2%L%v%@%W%%%%%
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%T%%%$% %%%%1%%%%%%%%%%%	%	%%%	%%	%%%%%%%
%
%%%%7%0%g%5%%%
%%%
%%%%%%%%%%%%%%%%%%%%
%%%%%%%%"%3%%%u%%%%%%%n%%%%%n%u%%%%%q%%%%%%%%%%|%%%G%6%6%)%%%
%'%%%%%%0%V%%?%%%%%%%'%*%'%T%%E%y%%	%%)%*%:%%"%T%%%%%%%%%%S%y%%%%%T%%)%%%2%3%%%%%%%%%%%%&%%A%%%%%n%%%%%x%"%(%%%J%$%%%%%%%)%%%%%%%#%%%%
%%%J%%%%%)%(%W%:%%,%%%%%%%% %%	%	%%%%% %%%%%%%%%%%;%%%%%%%J%%%%%h%%%%%%%h%%%%%%%_%%%%%%%%%%%%_%%%%%%%%f%%%%%%%%%m%%%%%%%L%%%%%%%o%%%%%%%b%%%%%%%%%%%%%V%%%m%%%%%%%%%%%%%%%%%%%%%%%V%V%%%	%M%%%%%%|%%%%%	%%M%%%%%%T%%%%%%[%%%$%]%%%:%$%P%%%%%%z%%%%%	%%D%%%%%%%[%%%%%J%J%A%p%%%A%H%O%Q%D%n%8%O%%%E%%%%0%%%4%D%%%(%%%X%%%U%5%4%%%8%(%%a%4%%%8%(%%a%%%"%%H%%%+%+%(%%%%%%%T%+%+%@%%z%3%%|%G%%%
%l%%%U%%%%%%%%%+%+%(%%%%(%/%+%(%%%%^%A%(%%%%&%V%%5%i%?%`%;%Z%%%%(%+%+%(%%%%&%R%+%+%(%%%%G%I%(%%%%%%%|%^%+%(%%P%n%%%%%%p%<%%%%p%%%O%J%%%%%%%%t%%%;%m%%%B%+%s%.%s%.%:%j%!%%%9%j%!%q%!%x%7%z%G%m%!%%%!%a%?%%%%%x%!%i%i%0%`%%%%%`%g%n%p%c%%%W%n%%d%4%2%T%A%:%-%%K%%b%<%#%%%)%%%%%%%%%%%%%5%7%%%%%%%%%%% %%%~%%%%%%%%%0%Y%!%%%%%%%%%%%@%%%%%%%%%%%%z%|%%%%%%%%%%%%%2%%:%@%%%	%%%%V%A%
%	%	%	%%%%%!%%%
%%l%%%%%%f%E%%	%	%%4%%%%%o%Z%%%%%%%G%%%%%%%%%%%%,%%%B%0%%%%%%?%	%H%%%%%%F%w%
%
%%%	%	%%%-%	%@%	%%%w%%%%%/%%%%%%%%%	%%% %%%
%%%	%	%%%%#%O%<%a%%f%%%%%&%%0%_%B%%%%%%,%!%/%*%#%%L%3%%
%J%?%%%b%%%%%%	%%%b%}%Z%%%%%#%
%C%%%%)%+%%%Y%f%%%%f%%%*%k%L%%%%%%|%%%%%%%%%%%%%%%%%%%%%%%	%	%%%%=%%y%%%%%%%%%!%%%C%%%%%%%	%	%:%W%c%%%%%%%P%%%%%%%%%%%%%%%%%%%%Y%e%h%3%%%%Y%e%h%3%%%%l%%%%x%Q%P%9%;%\%2%<%%%	%%%o%%V%C%u%%%u%%%'%)%)%:%1%j%>%%%C%C%;%%%%G%:%%%%%%8%%%8%%%%% %2%%%%%%%%%%%%%%%%%%%%%%%%%C%%%%%h%3%%%%%%%%%/%%;%%%%%%n%s%%%c%%%%%n%%%%%%G%%%-%?%%%>%E%%(%8%%&%%%(%H%%%%%3%%%7%0%a%3%%%7%0%a%%%<%%H%$%+%*%0%%%%%%S%+%*%H%z%%x%F%%%k%%%$%+%*%0%%%'%/%*%0%%%]%@%0%%%%%%<%	%/%>%_%:%b%%%'%+%*%0%%%W%Q%+%*%0%%%F%H%0%%%%{%]%*%0%P%%%%%%%%-%#%*%%%	%
%%%%,%%%%%%
%0%%%%%#%%%5%%%%%%%%%%%%%%%%%>%%%%%%%%%%%%%%%%%2%%%%%%%%%%%%%%%%%%,%,%%%M%%%%%k%%%%%%%%%%%%%%%%%%%%%%%%%%%0%%%%%%%5%5%m%%%'%n%%%!%M%%%%%%%%%^%D%%%%%%%%%%%%%%%%%%%%%%%o%%%%%%%%%%%%%%%%%%%%%%%%b%%%%%%q%]%A%4%l%q%]%A%x%]%L%0%%_%%%%%%%2%%Y%%%%%t%]%L%2%l%#%c%%%%%%%^%%%j%%%3%%%%3%%F%%l%3%%"%O%%%K%%l%3%%"%O%s%3%%"%Z%%%3%%%%%%%e%%o%3%%"%Z%%%3%%%%3%%%%%%)%Q%3%%_%%%]%%%%%%%F%h%&%%%%%%%%%%%%%%%%%%%%%%%%%%%F%%%%2%%%%%%%%%8%/%!%%!%%%%%%%%%%	%S%%%%%%%%%%%%%T%s%
%i%%%%%A%%%0%%%%%%?%-%%%%%%%%%M%M%D%s%D%K%R%%%%%9%F%T%%%%(%u%%G%q%;%%%%%%%%R%5%%%%K%K%B%q%B%I%P%%%%9%R%%%)%u%%E%o%9%%%%%P%d%d%[%%%[%b%i%k%^%%%R%i%%%9%%%9%7%%%%"%U%*%#%!%u%!%!%%%M%1%%%%/%%%%%%%%%%%%%)%"%7%!%,%%.%%%-%%%%%6%C%p%c%%%9%F%%J%%%%%%&%c%K%%"%,%%%%%%$%y%.%/%]%%%%(%
%k%P%W%#%!%.%1%1%[%'%%%%%%%%%R%%%%%%%%%%%%%%%%%%%%%%%%2%%%%%%%%%%%%%%%&%E%%%%%%%%%%%%%%%%%%%%%/%%%%%<%%% %%7%%%%%%%%%%%%%%%%0%V%7%4%h%i%%V%%%$%#%V%$%%%%%%%%4%%%%%Y%*%$%>%.%%%%%%%%u%O%6%\%-%%%S%$%%%h%%(%%%a%%k%"%'%%%%%r%K%@%%r%%%%%%%%%%%]%S% %%%%%j%%%%%%A%%%]%%%%F%*%%%%%%%%%%%%%%%%%%%%	%%%	%%%%%%%%?%%%%%%%%%%%%A%%%%%%%%%%%%0%%%%!%%%%%%%%%%4%6%&%%%%%%%%%9%%%"%u%%%%%&%
%,%%
%F%
%K%%%%%9%%%%%%	%%J%%q%%%;%%%	%%G%%%%%.%%N%%)%%%1%#%g%r%k%0%]%%%%*%*%%%,%%%%%%%%%%%k%%%%
%%%%%%%%%%%%%8%h%"%T%J%%H%%c%O%<%:%Y%E%d%b%@%%%%%3%%%$%%%1%%	%%%%m%%%%%%%%%%%A%%%%u%t%.%t%.%;%k%!%%%9%k%!%r%!%y%7%{%G%n%!%%%!%b%?%%%%%%%%y%!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#%%%%%%%%%}%e%f%M%%%%%%%<%%%%%%>%2%%%%%%%1%>%k%;%%%1%%%l%	%%%I%I%/%@%o%@%G%N%P%C%m%7%N%%%%%K%%%O%#%'%%%%%%%%%%%f%%%%%%%%%5%T%%%%z%%%%%%%%%'%8%:%%%-%I%s%%%.%"%1%%%%%%%L%%%%	%%%%9%T%i%%%%%%%%%%%%%%%%%%%%%%%%%_%%%%%%%%%%%C%%%%%%%%%%%%%=%%%%%%%%%%%%%%%%%%%u%%%%%%)%_%
%1%%8%(%%%%%%Z%%%%%<%%%K%%%@%%%%:%)%%%%%%%%%%%%%%%%a%!%q%%%%2%%%%%+%%%%%%%%%f%4%%%}%0%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{%%%%b%%%%%%%7%j%%%D%%%%%1%%%D%%%O%%%O%%%%8%6%%%%%%%B%%%
%%%%%%
%%%%%%%%%%%)%^%
%1%%%<%%%}%%%/%/%8%%%#%0%7%]%	%]%	%T%	%%%	%&%:%T%	%[%	%b%	%%%d%	%%%W%	%I%%%	%K%	%%%%%b%	%_%*%%%A%0%%%%%%%!%K%O%%%I%%%%%%A%%%L%7%S%6%%%L%%%%%%%%I%%%%%%%%M%%%q%%%%%p%O%%%%%%%%%%%%%U%`%%%#%;%
%%%	%'%%	%
%%	%%%	%
%%%%%!%%%!%%%%%%%%5%%%%%%%%	%%%6%%S%%%%%5%%%%%%%@%%%%-%%=%%%%%@%%%%#%	%%%%%%%	%	%%%	%3%%%%
%"%%%%%%%%%%%%j%%%#%B%%%%%%%!%%%C%:%%%%%%%%%%%%%%%%%#%%%%#%%%%#%%%%#%[%	%%%%%%
%%%%#%%%%#%%%%#%+%%%%#%%%%#%%%%#%%%%#%%%%%%#%%%%%)%1%%%
%	%%%%%%%	%%%%	%%%%	%%%%	%%%%	%%%%	%%%%	%%%%	%%%%	%%%%	%%%%	%%%%%%%%	%^%%%%%%%%%%>%%%%5%~%%%%%%%%%%%%%%%%%g%H%%%%%%%%%%%%%%%%%%%%4%%,%&%Z%&%Z%%%V%%%%%?%:%%%%%%a%%%%%=%%%%%%|%~%}%%z%p%%%_%}%%%%%%%K%Q%%%%%%%%%|%%%%%%%%%%%%%>%%c%%%<%%%%%%|%3%%#%%%%%D%r%e%%+%:%J%%%%L%%$%f%%%%%%%%%%%%%%%%G%%%%%%(%#%9%%%%%%%%%%%%%%%%%%%%%\%%*%%%e%?%$%%3%%%	%.%f%%%	%%b%%,%%%Q%%%^%%%%%%%%2%%%%%%r%6%%%"%(%2%%%-%%*%Q%Q%H%w%H%O%V%X%K%u%?%V%v%%%)%%%)%%%%O%%%L%%%
%%%%O%%%Z%%%%%%%Z%%%Y%%%%%%%
%%%D%%%%%%%%N%\%%%%%%%%%%%%}%%%%%%%	%%%.%	%
%%h%%%%%%%%%
%%%%%%%%%E%%%%%%%%%
%%%%%%%%%%@%%
%%%j%%%%%%"%\%%M%%%%_%%%t%%%%%%%F%%%%(%=%%*%%%%%%%%%%^%%%^%,%%%%%%C%D%%%z%%~%%%w%#%{%%%%f%%%V%%%%%z%%%%%%%%h%%%%%F%k%%%%g%%%%%%%%%%%%~%%%%%%%%%%M%@%	%I%	%>%+%$%%W%%%1%_%o%%%^%c%%%%%%%"%1%%%%%%%%%%%%%%%%%%%%%%%%;%*%%C%k%F%9%%%%%%%%%!%$%(%,%-%+%R%%U%*%%%%%%%%%%%,%!%/%*%#%
%,% %4%%
%J%#%%%%%%%%%%1%%%Y%"%%%%%%%1%Z%%%%	%%%%%%%%%0%%%F%\%%%
%|%%%m%%%2%%;%%%%%%%%%%%%J%%%Z%=%&%%%%%	%%%H%%%%%%	%%%%%%%	%%%7%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%:%*%[%d%%#%	%%:%*%[%d%%#%	%A%=%%%%%%%C%t%%t%%%-%%%%%%*%%x%%S%=%%H%%>%	%%*%Y%%P%@%B%;%%5%%%%%%c%%)%a%%%*%%%%A%V%%%B%;%(%B%h%%%%%5%0%%%D%%*%%x%%S%=%%H%%-%!%x%%^%=%%.%%U%%%#%%%%@%%%%%!%%	%'%%%%&%%	%Y%W%%%4%#%2%%%%O%%%%M%%%%-%%x%%^%=%%.%%u%%%W%%x%B%%0%%5%%1%%%#%%%%&%%%%%i%%%%}%=%%%%x%%%/%&%x%S%%!%%%%>%!%%%^%9%	%%%%%$%%%%%%%D%%%%%%%%;%9%%"%%%%G%m%S%}%%%%e%%%%%9%%%u%%%%%%n%F%(%%%%%%P%%%%%%%>% %:%&%%%%%%K%?%
%%%%v%%%%%%8%H%0%%%%%g%%%%%W%G%%%g%%%%%% %%%% %%%% %y% % % %%%% %%%%h%	%%"%% %;%%r%'%%&%[%i%%%	%%%-%#%%%% %%%% %%%% %%%%%%$% %%%%%%
%%%%%A%% %%%%=%%%%%%%%%%%%%%%% %%%% %d%%1%%%%%%%M%&%k%%%%%	%%%-%#%G% %%%%%% %*%S%)%c%,%`%y%%C%%%%%%%%>%%%^%	%^%	%%%%%%%%%%^%U%	%%%%%	%%%	%%%%%%%%U%	%%%\%	%%%c%	%%%e%	%%%X%	%%%%%	%%%	%%%%%%%%L%	%%%%%%%c%	%%%=%%^%\%%%%%|%%%/%%%g%%%%%%%%%%%%%%%\%%%%"%%%% %%W% % %b% % %%(%%%Z%%%Z%	%x%q%%U%%%H%%%%%%%z% % %%7%%%%%%2%%%%%%%%%k%%%%%%%8%M%%%%%%J%%%%2%%%%%%	%%%%%%%%%%%N%%%%S%%%%%%%%+%%%%%H%-%-%B%%%%%%%%%%S%j%%z%S%%%m%%%|%_%%%$%%U%%%%"% %>% %%n%%<%%%(%% %%%%%% %<%%%%	%%%o%%%%%%%% %$%%1%%%% %%%
%%%%%%%%	%%%%%%%%^%%%%%%%%%%%%k%%%%%%%H%%%5%%%%%%%%%%%%%%%%u%%%%%%%\%/%%%%<%%l%w%%%%w%%%%J%%%%%%%%%%%%%%%%%l%%%%%%%%%%%%%%%%%%V%%%%%%%r%%%%%%%Y%%%%%Y%%=%%O%m%%j%%%%.%O%%*%%%m%%j%%t%%j%%%%%%%%%%%%%%%%%C%*%%p%%j%%%%%O%%e%%%%%%%{%%O%%	%~%	%%%%%%%%%%%%%%`%%%N%:%I%%%%%%%
%%%P%s%%%%q%%J%v%w%%%[%%%-%u%%G%%%%h%%%%%
%"%%%%(%%%I%%%%%	%%%%%%%%2%=%%%	%%N%n%%%?%%%%%%%C%%%
%%%X%%%l%%%%%
%?%%	%&%%%%%%%%%Y%%%%%%%
%+%%%%%%%%%%%%m%%%x%%%	%%%%%%%z%%%%"%&%%%%%5%%a%%%%1%	%%%	%%%%%%%9%%%%C%B%l%C%U%1%%!%*%%%%%%%%%%%%%%%%%b%%%c%%%n%K%%%)%%%%~%%%%%%%x%%n%u%%%%%%%%%%%%%%%%%%%
%%%%|%%%%%+%%%%%%%%%%%,%
%%%%?%5%2%%%%%%%5%
%%%%%%%%%n%%%%%%%%%)%)%%%%%%F%%% %%~%'%%%`%%m%N%%,%<%%%^%%%%%%%%%%%$%%%%,%%%%%%%.%%%%%%%%%%%%%9%H%]%6%%%%%%%%%%%%%%%X%%%%%%%%%_%%%%%%%%%%%%%%%%%%%%%%%K%D%%%@%%%%%S%(%M%%%!%%%C%%>%%%%%%%"%%%%%%%?%%%$%%%%%%%%%%%%%h%%%%%%%	%$%B%%%	%$%B%%%%o%%E%%2%-%%%b%% %%%	%]%b%N%#%%Q%%%+%%%%%h%*%%%!%:%%]%%@%1%%+%%%8%
%D%%%%;%%.%%%%%%%%%~%	%]%b%N%#%m%b%Y%#%t%%%,%*%	%%'%%%%B%C%%%%
%l%%%%i%b%Y%#%%P%%o%*%%%#%h%%%%%%U%%%J%%%-%%%%%f%%%%%%%(%
%%	%%	%
%	%%%%%%%%t%-%N%(%%%%%%%%1%%%%%j%%%%%%%%%%%%%%%%%%%%%%%%%%%.%*%%%%%%%=%z%%%%%V%
%%%%{%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%F%h%%k%!%^%!%-%%%$%%%%%-%
%:%A%q%%K%%%R%%%V%%%P%W%D%%%%%3%%\%%%%+%%%%%%%)%%]%C%A%%%)%%%)%%%O%%%L%%%O%%%Z%%%o%.%)%%%%%)%%%Z%%%Y%%%J%)%	%%%)%%%%%%%%%%9%B%%%%%%%3%%%%%%%%%%%%%x%*%-%%%%\%?%1%%%B%%%%'%%8%%%%%-%%"%%%	%E%%%P%R%%#%!%-%0%%>%%
%X%0%%%%Z%%%$%"%#%8%d%%(% %%%%%9%%%%(%X%.%/%%%k%%|%%%m%%%Y%*%b%%%\%4%%%%%\%4%%%%W%%S%%U%6%%!%P%3%K%%E%'%%%%D%%%+%#%%&%#%%E%?%%%%%!%%)%
%%%"%%%
%C%#%%%%%%5%%%=%%(%d%`%%%%%%%%%%%%%%E%'%%%%!%I%'%%%%1%%:%=%%%%E%%%!%(%d%7%%%%<%E%%3%%:%9%	%%%%%t%	%%%%%9%=%!%E%'%%%%8%+%%_%%K%$%#%%E%'%%%%%J%%2%%z%%4%%=%%%p%%%%%O%%%	%%%%%%%%"%%,%E%'%%b%*%6%%%%%<%%%%%/%%%%%%)%s%%%%%%%%%%%%%%%%%%$%%%%&%%C%'%S%"%%%%%%~%%%+%%	%:%%%%4%8%-%%%~%%[%G%% %%3%%%%%%6%?%%%%%%%%%%%%%%%%%%%%,%@%)%5%%%%%U%y%%%7%s%<%%%%#%%%%%%%%%%%%%%%%%%%%%?%%%%%%%%%%m%%%%%%%%%%%%%%%%%%%%%%%%]%L%<%[%#%%%%%%%R%%%%%%%*%s%%%f%%%%%&%2%2%%%"%D%%%%%%%;%:%%%M%?%$%&%%%%%%%%b%%%%%%%%%%%%%%%%%%%%%%U%6%%%F%%%"%U%6%%%F%%%"%:%%%:%%%%-%%%7%%%%
%%%%
%%%%U%"%%%+%)%%%W%%6%"%1%N%
%%%%%W%%%%8%+%)%,%%<%%3%"%%%%%D%%	%b%%%
%?%%%/%%J%%%%"%t%%%%%%9%%%%%+%)%%%W%%6%"%%%/%)%%%W%%A%"%%;%?%%%{%%F%%%%%7%%%%%%:%%d%%!%;%9%*%'%%%%>%%%+%)%%%W%%A%"%%9%+%)%%%<%%@%"%C%G%%%%%%\%%%%%%
%y%/%%%%%%%$%%Z%)%%%<%%+%%%% %?%%%%r%8%%%%%%%
%%%%%%	%%%B%%%%%%%]% %%`%%=%%!%%%%%%%.%%%%%%%%%<%%"%%%%%%%%E%Z%*%h%W%%%A%"%%%%	%
%%%%%%%&%	%%%%%%%%%%%%%%%%%(%%%%%9%q%%.%%%%%%%%%%%a%w%%%%.%5%!%%%%%%%%%%%%%%%Z%%%%%%%%%%%%% %3%%%%%%%%0%o%%%4%%%%%%$%%`%%%%o%@%6%%%T%%%r%%%%%%%%%%%q%%%%%g%
%%%.%%%%%/%%%%3%%%q%y%%%%%%1%
%
%%%%%%%%%%9%%%%%J%{%%%%%%%y%%%%%h%%%N%%%y%%%%%H%%%%%,%%%S%%%9%%%%%%%%%j%=%]%P%w%%%}%%%%%%%%%%%%%%%%%<%%%[%%%%%%%%%%%6%{%&%b%N%%%r%w%%:%<%N%%%j%	%%%%8%:%"%M%%%%O%%%{%	%%%%j%%
%
%D%%%% %?%%%%%%%%%*%%P%\%%$%%%%%%%:%%%%%%'%4%s%%%%%%%%%%%%%%%%%*%~%%%%%%%%%%%O%%%O%%%Z%Q%%%Z%	%/%%%%%I%z%%%%%%%x%%%%%g%%%M%%%%x%%%%%G%%%%%+%U%/%R%%%8%%%%%%%%%i%%%%\%O%v%%%|%%%%%%%%%%%%%%%%%;%%%Z%%%%%%%%%%%5%z%/%%%%1%%%	%5%%%%%%%)%%%%B%o%3%%+%|%% %%%9%>%%%y%%%P%%%%:%J%%%%%%%%%%%%%%%Z%<%%%%%'%%%%%%%s%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%Z%%-%%%%%%%W%G%4%%[%%%%P%%%%%%%%%%%%%%%%%Y%&%7%<%%%%%w%%%%%P%%%%:%%%X%%%,%H%%%%%%%%%%%%%%%%%%2%%%%%G%%%%%%%!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*%%%0%(%%%%%B%G%A%%%A%%%'%8%%%g%%%%%%%y%	%e%8%%%;%%%-%%%%%%/%%%%%%R%;%%%!%e%%%/%%%%%F%%%%%%%%%T%%%%%%"%!%%%%%4%!%%%O%,%	%%%O%%%Z%%%Z%6%e%e%7%5%\%%%%%%%%\%c%%%j%%%G%l%%%_%%%%%S%%%%%j%f%S%?%,%%%%%%%%%%%%%%%<%%%%%@%"%O%d%0%%%%%%%%^%%%%%%%%%%%%%%%%3%;%_%%%!%F%%%%%%!%%%%V%%%%%1%%%%%z%%%%%%%%%2%%%%%%%H%/%%%%%%%%}%%%%%%%%%%L%%%!%%%C%%%%%%%{%}%%%%X%%H%%5%%%%$%%%$%%%$%%%p%%%%%%%l%%%h%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%C%	%%%%%%%8%%%%%%,%E%1%%%%%%%%"%e%%%%%%%%%%%%%%%U%%%!%%% %%% %%+%Z%I%v% %%%8%+%Q%O%%%v% %}% %%% %q%-%k%%%%!%%p%C%y% %%%%% %%% %E%%%%% %5%%%%%%%Z%M%f%.%%)%k%%%8%1%d%%%%%%%%%%)%%%)%%%%H%%%%%%L%	%%%%%%%H%%%%%S%%%%%%%%%S%%%%%%Y%%%%%%%%%%%,%U%
%
%%%%%%%[%K%8%%%P%#%%+%%+%
%%%"%%N%%"%%&%%/%%/%%&%%O%%%%0%n%%%%$%n%%%%$%%%%K%5%%%$%,%%%%%3%#%"%C%%%%%Q%C%%%%%+%%,%%"%C%%%%%%%G%%%%%%%H%%%%%%%H%%%%%%%C%%%%%O%C%%%%%\%%%%%s%%%%%%%%%%%%%%3%r%%%r%y%%%%%%u%%%$%c%%%%d%%%%%%%%%p%%%%%;%%%9%%%%1%%%%%%%%%%&%%4%%%%9%%%%1%%%%%%%%%%&%%4%%L%}%%%E%%%0%%]%%9%%%%<%#%X%J%%%%1%%%%%%%%%%%%%%%%&%s%%
%	%%%(%
%/%
%9%1% %%N%%%%%%@%%%%%%%%% %%&%V%P%S%%% %%'%]%%%%X%%%%%%%%-%%% %*%%%%e%%1%:%%%%% %9%(%%%
%U%%%"%%%^%%%&%;%?%%%%H%E%J%%%%1%%%%%%%%%%%%%%%%&%s%Q%%%%1%%%%%%%%%%%%%%%%&%Y%%>%%%
%%%1%%=%%%%%%,%%x%%%0%$%%-%%%D%%%6%%4%9%%%%=%%%%%"%E%!%%%%>%%%%%c%%=%h%%%%%;%%%M%%%%1%%%%%%%%%%%%%%%%&%Y%%%<%.%%%N%%%%1%%%%%%%%%%%%%&%Y%A%%%%%1%%=%,%%%%%%
%%%
%%%$%Q%%%
%%7%/%L%%o%O%Y%%%%%<%%%%%%%!%8% %%%%1%%%%%%%(%V%]%%%%%%2%%%"%w%% %f%%8%%q%k%:%%%k%:%%%C%2%K%b%-%%%%%E%v%@%%%%%b%-%%%i%-%y%f%p%C%%%r%o%%%e%-%y%f%%%-%%%Y%K%%%G%%%%%p%-%%%c%\%c%L%&%%%9%&%%%-%j%:%%%%j%:%%%%1%K%%a%-%%%%%%E%v%%%7%%%%(%%3%%%a%-%%%%h%-%y%%%]%%o%C%%%%%q%o%%%%d%-%y%%%]%%/%%%%%-%%%%X%K%%%%9%%%%%o%-%%%%z%%%%%"%%O%%%]%%%?%%%?%%%4%%%6%%%%%:%%%:%%%%g%%%%6%9%/%%%%%1%%9%8%%%%%%%%%%=%%%%%%%V%%%%%%%%%%%s%%%%%c%%%%%%%%%z%%%M%z%%%%%%%}%%%%%N%%%%%%%2%x%%%D%%%%%C%%6%#%O%,%%%%%%"%"%%%%"%"%%%-%-%%&%%7%"%%%%f%"%%%$%%%%h%%%%+%E%%%8% %7%"%%%:%&%%%%'%"%%%%%%+%%8%[% %'%"%d%x%T%)%%:%"%%%%%d%"%%%.%"%%%(%%%%V%2%%"%%%%%%'%%%%%%%%%%%%0%F%@%%+%%Z%%%!%%%<%%+%.%W%%.%A%X%(%%%%%#%%%%%%%>%)%%%%%i%%%%%%V%%	%5%(%%@%%%B%%%%%L%% % %J%%%%%%%%%%%%%%%%%%%%%%%%%%%2%%%3%%%%3%%Q%%%%%%%%[%%%%%%%%%%%%%%%%%%%	%%%%%%%	%%%%u%_%}%g%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%q%%%%%%	%%%%%%%%%%%i%[%w%%%%o%%9%I%1%%%E%3%%%:%%%%%W%"%M%%:%i%-%%Z%%%%%%%	%	%
%I%%%%%%%%%%%%K%
%%%%%%%%%%/%%D%%%(%%%%)%%%+%C%8%%%%%%%!%%%%%%%%%%
%%%%%%%%%%%%%%%%%
%D%%g%%%%%%%	%	%%I%%%%%%%%%5%%%%%%%%	%L%%%%%%%<%%%%%,%%%%)%%%%%,%%%%2%3%%%"%3%%	%%)%t%?%Y%%	%%%%%%6%u%%%%%%%%%%%%i%%	%%=%!%%%%H%%%%%%%%H%%%%%%d%%%%%%%=%% %?%%%%%%%%%%%<%%8%%%%%%c%)%%%%n%%%%%%%%%%%%%%%X%%%%k%%%%%%%%!%m%%
%A%%%&%1%%c%%	%	%%	%	%%%%1%%%%%7%
%%s%%%%%)%%%%n%%%%%%%%%%,%%%%y%%%%%%%%%\%%%	%
%	%%%%%%%%O%%%%o%	%%%%%%T%%%	%
%	%%,%%%%y%%%%%%V%%%%x%%%%%%%%%%%r%%%%%%%P%.%%%	%	%	%%	%	%%%%A%%%%%%%%%%%%=%
%P%%%%%%%%=%%%%%%%%Y%	%%%4%?%%%%%%%%%!%*%R%%%%%%%%%=%%%%%N%%%%%%%%}%%%%%l%%%R%%%}%%%%%L%%%%%0%%%W%%%=%%%%%%%%%n%A%a%T%{%%%%%%%%%%%%%%%%%%%%%@%%%_%%%%%%%%%%%:%%%0%%9%&%!%%%%%%%~%%%~%%%%%%%%%%%%%%%%%7%%%%%%%'%\%%%%%%%)%#%%%)%#%n%%%%5%%#%Y%m%E%%%N%4%%#%%%
%%%%%5%%#%%%%@%%#%%%(%`%%%%%%%X%%%%@%%#%%%4%%%#%%%D%6%@%%%%%E%u%%%%o%%%1%4%;%%%%=%%%%%%%%U%%%%%m%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#%	%%%%%9%%%%%%9%%%%]%A%F%%)%%%%_%%%%%\%0%%%%%%%%%%%6%2%%%-%%%g%%%%_%%%%j%%%%M%%%%%%E%%%%j%%%%i%%%%c%%%%%%%%(%%%%2%%%1%%%%%_%%%/%B%/%*%%%%%%%(%%%%R%%%%%)%%%)%%%3%%T%%%P%2%%%%3%%%%>%%%%o%.%)%%%%%)%%%>%%%%2%%%%%J%)%	%%%)%%%7%%%%%%%%%%%%%%%-%	%0%u%%%z%%%%q%q%8%h%%%h%o%v%x%k%%%_%v%$%a%%>%%Y%%%*%"%;%;%2%a%2%5%@%B%5%_%)%@%F%F%,%%%%2%:%%1%%%%%%%)%!%*%#%*%%%%%%:%4%%%K%B%%j%%B%%j%%	%%%%%>%(%%	%%%%8%9%%]%%=%%%h%%u%%%%u%e%%#%%%9%%]%%<%	%]%%<%%%s%%0%>%%%%%%<%%]%%f%%]%%0%%{%%%%m%%%*%V%%%G%%]%%<%%%%%%%%%{%p%%%%%%%%%%%%%1%
%f%%$%
%	%%%%%%%%%%%%%	%	%%%	%	%%%%%K%%%{%T%A%`%3%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*%%%%%%%%%*%%%%%%%%%%%%%%%%%%%%%%%%u%O%%%4%w%%%%%%%%%%%%P%%%j%%%%%%%%%<%s%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%W%c%%%%%%%%%*%%%%%%%%%%%L%e%%%%%%%%%%!%$%(%,%-%+%R%%U%*%%%
%'%j%%%%%%%%%;%%%L%`%%%%%%%%%7%7%%%%_%B%%%%%%p%L%d%%%%%%%%8%A%%%%%4%%%%%%%P%1%%3%1%6%?%W%%%%%%%%%%%%%%%%%i%%%&%%
%!%%
%%%[%[%R%%%R%Y%`%b%U%%I%`%3%%%%%%%%%%%%%%~%%%%%f%%%'%%%%7%%%"%J%*%!%%%%%%%%K%/%%%%%-%%%%%)%%%r%%%%%#%%d%%R%%%%%t%%%%%%%%%%%%f%%%L%%%x%%4%&%%%%%%%o%%%%T%%%R%%%%%%&%(%%%%O% %Z%j%5%%u%%%j%%%%l%%%%%%%%%%%%%%%%7%%%%%%%%%%%%%%%%%%%%=%%%E%T%%/%
%3%g%
%%#%U%#%%S%%~%%%%%%%%%%e%%%%d%%%%%%%%%O%6%%b%%%%%%%%%%%%%%%5%T%%%%z%P%%%%%%%%%%%%%%%%%%%$%{%%%%%%k%%% %+%;%%%=%%%w%%%%%%%%%R%t%%%$%5%%%%%%%%%%%:%%%%%%%%%%%%Q%8%Y%7%?%8%j%%%%%%%%%%%%%%%P%%%%%%%.%%%%c%%%'%%Z%)%%%%%%%Y%%%<%,%%%%%%&%%%%%c%%%'%%g%%%%%%%W%%%%%%1%%%
%%"%%%%%%%c%%%%%%%%%%%%6%%%%,%%<%1%%%+%%<%N%0%%%%%%%%\% %E%%%%x%%2%)%%
%%>%>%$%Q%5%d%5%8%C%E%8%b%,%C%.%?%j%;% %%%.%	%%%S%%%%%%%9%9%%o%%<%
%%%%%%%%%%%%%%%X%O%4%>%%%.%%%%%%%%8%8%6%0%%%%%m%%%v%%%%%%%%%%%%%m%%%}%%%%%%%%%%%%%!%%%C%%M%+%;%]%%%%%%%P%e%%%%Z%%{%%k%K%%%&%	%%%[%%%#%%%%%O%/%V%%%%%%%%%%)%%%%%%%L%%%%%%%%%)%%%%%%/%%%%%%#%%<%%%%%	%%	%:%%%#%%%%'%R%%%%'%R%%%%P%%%
%/%
%%%Z%%%x%
%2%%%%"%%%
%/%
%%%%
%/%%%%%%@%%%%%O%%%%%%%%
%/%%%%%
%%%%%\%%%%%%%%%o%'%%(%%%%G%%$%!%
%%%%%t%%%Y%%%%%%o%'%%%%x%%%2%W%N%%%.%%%%%%%x%%%%%%4%%%%%%%<%)%W%%%%\%%%&%Q%$%%%)%%%%%%%%%%%P%@%~%%%%%%%-%>%%%%U%B%%%% %%%%%%%%h%%%%%%%%%%%)%%%)%`%e%	%%%%O%%%N%%%L%%%%%%%%%O%%%Z%%%%%%%%%Z%%%Y%%%$%%%%%%%e%%%e%%%%%%%\%%%%G%p%W%%%\%%%%f%%%s%%%%%f%%%G%%%]%/%M%#%%%%%Q%S%*%%%%%%%%#%%%%%%%%%0%%%R%%%5%%%%%U%%%%%%%%%%%%X%%%b%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%n%%%%%%%%%%%Y%V%%%%%%%%%%%%%%%%%%v%%%1%%%%%D%%~%%%q%%%%%6%%%%%%%6%%%%%%%%%%%%%W%%%%%%%X%%%%%%%%%%%%%%%%%	%	%%%%=%%y%%%%%%X%%%%%%%%q%%%%%%M%%%%%%%%%%%
%T%%%%%%%%%%%%%%%%%	%	%%%%%D%b%%%%%%O%%%%%%%%%%%%G%
%%%Z%%%%%%c%%o%9%%%%%%%%	%	%%%%%%%	%	%%%%%%G%%'%2%%%%>%(%%{%[%%%%%%%%%r%%%O%6%%%-%
%%%^%'%%%C%4%L%%%|%%c%%b%W%l%%%%%%%%%%%F%%%[%%%%%%%/%%%%%%%%%%%%%%%%%%%%1%A%%%%%%%%%$%%%	%%%%%%8%%%%%%%V%%%%%%%%%%%%%%%%%%%%%9%7%"%W%%%6%%%l%%%%!%:%%%%%K%|%%%%%%%z%%%%%i%%%O%%%z%%%%%I%%%%%-%%%T%%%:%%%%%%%%%k%>%^%Q%x%%%%~%%%%%%%%%%%%%%%%%=%%%\%%%%%%%%%%%7%|%%%%%%%.%0%)%%% %r%%% %r%%%%,%B%%H%%,%#%T% %%%%%%R%R%T%8%%%=%?%!%-%E%%%%%.%%%R%Q%%%R%%%$%%%%%%%#%T% %%%&%X% %%%%% %%%%%%%N%%&%	%j%%%%!%%p%C%L%&%T% %%%S%#%^%P%T% %%%%% %%%%%%%F%%%$%%% %a%%6%%%%%%%	%.%%%%%%%%#%%%%%%
%%%%%%
%	%%%%%	%%%=%.%%%%%%%%#%%%%%%
%%%%%%
%	%%%%%	%%%=%%%,%%%%%%%%%%'%	%	%%%%%%%	%%%2%D%%%%%%%%%%%%%%%	%%%?%4%%%%
%	%%%%	%+%%
%%%%%%%	%%%%%%%%%%!%%%%%%	%%%%%%%%
%	%%%%%%%%%	%b%%%
%%%#%H%	%%%%/%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%	%%%%%%%%	%E%%
%
%%%%	%%%%%
%%%%%%	%%%%%%
%%%%%%%%%%%'%%%%%6%%%%%%%%%%/%%	%%%%%	%%-%%%%%%%%%	%%%	%%%%%%%%%%%%%%%%%	%%%%%%%%%%%
%%%%%-%%%	%%%%%%%%<%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%<%
%
%	%%%%%%%%%%%%5%%%%(%%%%%	%
%	%%%%%%%%1%%%%%%	%A%%	%%R%%
%%2%%%%%%%!%%%%%%	%%%%%%%%
%	%%%%%%%%%	%b%%%%%%%%!%%%%%%	%%%%%%%%
%	%%%%%%%%%%	%H%%%%%%%%%%%%%%%%%%%O%%%%
%	%1%%%%	%T%%%%%G%%$%%%%%9%
%%%-%%%%%%%%(%%% %%%%%%%%#%%%%%%%%%"%%%%%%%%%%%
%%	%%<%%%
%%	%%
%%%H%%%%%%%%%%%%%!%%-%%%%%E%b%%%%
%	%'%%%%	%%b%%%%%%%%!%%%%%%	%%%%%%%%
%	%%%%%%%%%%	%H%%%	%%%%%%%%%%%%.%%
%	%%%%%%%%%%%%%%%%!%%%%%%%%%%
%	%%%%%%%%%	%H%!%%%%%%%
%$%%%%%%k%%%%
%	%%%%%%%%	%@%%%%%%%%%%%%%!%%%(%,%-%+%R%%)%	%#%	%!%%%%%%%%%%%%	%%%%%%W%%
%
%	%%%%%%%%%?%%%%%%%%%%%%%%%%.%%%%!%%%%%%%%%%
%	%%%%	%<%	%%%%%%%%%	%%%%%%
%%%%%
%$%%%
%%$%%%%%%
%%%%%%%%%%%"%%%.%%%B%1%%%%%%/%1%%%%%%%%%%%	%%%%%%%@%%%/%%%%I%-%9%%%<%	%%%R%P%:%	%"%A%%%%?% %%%N%%/%%%p%%%J%%%%%%%%%K%/%%%%%%%%%%%%%%%%%%&%\%%%%W%3%%%%^%W%3%%%%^%%%%?%`%N%&%%%%"%O%$%C%%%3%}%&%%3%%w%,%3%N%%%%%%%%I%%%O%%%%	%%?%%%"%G%%%%%0%%%%%%%%#%N%&%%%%"%O%$%U%&%%%%"%Z%$%\%<%%%%%%%
%%%%%% %%^%6%%M%%o%%l%Q%&%%%%"%Z%$%#%%%%%%{%&%%%%%%E%D%%%%Z%%"%W%%%%%0%%%+%1%&%%%%M%5%%%%X%%%
%^%	%	%%	%	%R%+%%%%%v%	%%%%%%	%V%X%+%Y%%%%%%%B%g%%%%z%
%%%%	%	%%%%%%%	%%%X%%%1%%%;%%%D%6%%%%y%%%%%	%%%%%%%4%%%%%%	%%%%%%%%%%0%h%	%	%%%%M%%-%R%?%3%1%%C%A%%%%%N%$%N%E%%%]%%N%E%%%]%%%%?%%%%"%%%%:%%F%=%%+%8%%%%%%%G%%	%,%%%%*%%%'%%%$%P%8% %%v%%
%%%%%%K%%'%%%%%C%%%%3%%%>%%%%%%%%%%7%}%%%%?%%%%$%;%%%%%%<%E%%	%%-%%%%B%%%%%%%
%%%1%%%%%%%+%8%%%%%%%/%8%%%%%%S%N%%%%%%/%%%%%%%%%X%)%k%
%%	%.%%%%n%U%H%%%%,%]%C%Y%%+%8%%%%%%
%%%2%*%%q%%%P%8%%%%%%%%+%+%%%t%s%%%%%%%%%%%
%%%%%%%%%%%%%+%%%%%%%%U%*%9%%%
%%%%%%%	%%-%%x%%%%%S%8%%%[%(%%	%M%%d%	%%%%%%%%%%%%L%%%%%%%%N%%I%6%%%%H%%%9%
%%%?%%%%%%%%%%%%%%%$%%%%%%%%%Z%%
%g%%4%%%F%%%F%D%u%%%%%%%s%%%%%a%%%E%%%t%%%%%C%%%-%%%&%N%%%%%2%%%%%%%%%d%7%V%J%q%+%%%v%%%%%%%%%%%%%%%%%f%M%2%%%T%%%%%%%%%%%0%r%%L%%%%>%%%%%O%%%%%%%%%~%%%%%m%%%S%%%~%%%%%M%%%%%1%%%X%%%>%%%%%%%%%o%B%b%U%|%%%%%%%%%%%%%%%%%%%%%A%%%`%%%%%%%%%%%;%%%N%\%\%S%%%S%Z%a%c%V%%%J%a%%%%t%%%%=%;%%%%%%%%%
%4%%%%%%\%%%K%%%%%%%
%2%%%	%%%%A%"%<%%%%%%%%%c%%%%%%%%5%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%o%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%	%%%%%%%%%%%%%%%%	%%%%%%%	%	%%%%A%%%%%%%%%%%%%%%%%%%%
%%%%%%%
%%%%%%%%%%	%%%%%%%%	%	%%%%%_%%%%%%L%%%%%%%
%+%%%%%	%%%%
%+%%%%%	%%%%%%7%%%%%%%%%%%g%b%%%%%%_%%%%%%6%%%%%%
%"%%%%%
%%%
%%%%0%%%N%%%%%%%%A%k%%
%A%	%%%%	%	%%%%%
%"%%%%%
%%%
%%%	%&%%%%%#%%
%%%%/%%%%%
%%%%%%%%%@%%%%%V%
%%%	%%	%%%%/%%%%%
%+%%%
%%%	%&%%%%%#%%
%%%
%O%%%%%%
%%%%%%%%%%	%%%%%%%%%%%%_%
%	%%%	%	%%%	%%	%	%K%%U%%	%	%%
%0%%%%%%%%%%%%%%%%
%
%%%%%%%%%%N%%;%%1%(%%
%%%	%%#%+%%%\%,%q%*%O%%%?%%%%%%%&%>%%%M%%%@%%%%:%)%%%%%.%W%%%-%%%%%8%%u%%%%%%%%%%%i%%%%%%W%%%%%v%%%q%%%%%%
%%%%%%%%%%%%%Y%%%%%%%%%%%%%%%%%%%%%%%%%%B%	%%X%.%`%:%%1%%%8%%%%%2%+%%&%%%%%]%&%%%%%%%%%!%$%(%,%-%+%R%%U%*%%	%%%%%'%g%%%%%%`%%%%G%(%%%O%%|%%%%B%<%O%%%O%%%M%I%5%%%%%%%%(%%5%F%%%%%k%%%P%%%Q%I%%%|%%%~%%K%%%%%/%>%1%%%Q%%%%%0%%%%%%%F%%%M%%%T%%%m%@%`%S%z%%%%%% %%%V%%%I%%%%%#%P%%%=%%%%%Q%%%4%%%%%?%T%%%^%d%R%%%%%k%%%%%9%%s%%%%%%%H%&%%%=%U%%%%%%&%%%)%%%%%%%%%)%%%%%S%%%%%%%
%.%%%+%%%%	%[%%%%%+% %% %% %w%*%,% %% %[% % % %8%A%% %%%'%7%% %7%
%o% % %%%%D% % %%%% %% %'%*%%P%R%%D%,%/%%,%% %%% %%% %a% %% %/% %%%Y%%% % %% % %%% %#% % % %%%
%%	%%%%K%%%%
%G%%%D%%	%%%%(%%%]%%"%	%%%(%%%6% %%%9%!%%	%%m%;%%%%%W%6%%%%&%I%0%%%%%
%%	%%%%%$%<%%<%%
%%V%"%%
%%%B%3%%b%%%%%%3%%6%%A%%C%%6%%`%%*%%A%%3%%%%C%C%)%:%%%i%Y%%%%%:%%%=%%%H%J%=%%%g%%%%1%%%H%%d%%4%4%4%%%%%?%%%\%-%%%%G%%%%%%%%%%%#%%%%%%%%%%%
%"%%%%%%%>%%%%%%?%%%%%U%X%N%%%%%%	%&%%%%%A%%%%%%%%X%c%%
%+%%%%%%%%%%%x%\%I%%%%4%%%%%%%%%4%%%%%?%%%%%?%%%%%%%%%%%%	%	%%%%%%%%%%%%%%%%%%%%%%%%%%%!%$%(%,%-%+%R%%U%*%%%%+%%%>%%%4%%%A%3%%%%%%%%%$% %l%%%%%%%%%*%%%*%%%%%Q%%%Z%%%%%%p%%%X%%%	%%%o%!%L%%%%%%K%_%%%%%%%%S%^%%%%P%7%%?%%%%%%%%%x%{%%%%%%%%C%]%% %%%%%%%%%%5%%%A%%S%#%-%7%%%9%%%b%%%%%%%%%%W%%%%%%&%%;%=%%%%%%%%%1%%%
%	%%%(%%%%%v%%%%v%%%%I%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%6%%%%-%I%%%'%H%(%%%%=%%%#%%%%	%%%%%>%M%#%%%%>%%%<%%%%r%%.%%Y%%%*%%W%%%%%%<%%%%%%%%%%%%%b%%%%%%%%%%%%5%%%%%%%%n%
%%%%%%@%%_%%%%!%%%%%%%%%%%%%%%}%%A%%%%a%%%%%%%%i%%%%%%%%%%C%%%%%%%i%3%%%%%%%%%9%6%X%%@%%%%%%%%%%4%,%.%%%%%%$%l%%%a%%%%%%%%%%%%%%%%%%j%;% %p%%%%%%%%%%%
%%%%%%%%%%%%/%%%,%%D%9%/%%&%%%%%%%%%%%%%%%%%%%%%%%%%%%%k%%%%%%%@%'%%%%%%%4%%%%%%%%=%%%%%%%%%%%%%%	%%%%;%%o%|%	%%%%>%%%c%%Q%c%7% %{%(%M%%"%!%X%%%%%%W%%%%E%%%9%8%%%%%%C%B%Z%)%%%t%%%.%w%%%%%%%/%%|%%%t%:%%%%%%%%C%%(%%%u%%%	%d%%%7%%|%%%	%%%%%%%%%%%%%5%&%%%%t%%%%%%%	%%%%%%%%	%%%|%%%>%j%%%%%%%%%%%%e%%%!%H%/%%%%%%%
%%%)%%%%%%%+%%&%
%1%v%E%%%%%%%%%x%s%%%6%%%%%%%s%%%z%%%%%%%e%%%%%%y%v%%%r%%%%%%%%%%%%%%F%1%%%
%%%[%%%%h%;%%'%%v%%%+%%%%%	%?%I%=%%%%%%%G%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%H%%%%%%%%%%%%%%%%%%%%%d%%%%%%%%%%%%%%%%%%%%%%P%%*%%%,%	%%
%%%+%%%%%%,%"%%%W%%%%%%'% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %%%%%% %% %%%%%%% % %%%% % %%% % %%%% %%% %% %%% %%%%%%%%%%%%% %%% %%%% % %%%%% %%%% %%%%% %%%% % %%% % % %% % % %%% % %%%%%% % % % % % % % % % % % % % % % % %%% %% % %% %%%%% %% % %%%% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %}% %% %%%%%%%%%%%%%%%%%%%%%% %7%%0%%)%'%"%5%%C%%Q%%_%%m%z%%%%%%%%%%%%%%%%%%%%%%G%%%%%%%%%9%%2%%%%%%%%%W%%%%I%%%;%&%-%-%%4%%;%%%%%%%%#%%% %%%%%
%%
%%%%%%%%%% %% %%% % % % %%%#%%	%%%%%%%%% %%%%%%%%%%%%%%%%%*%%%%% %% %%% % % %%%%% %%%%%% % %%%%%%%%%%%8%#%%%p%%%%%%%	%~%%%%%1%M% %%%%%%%%%%%%%%%%%%%% % % % % % % %%8%%%%%%%%%%%%%%%% % % % % % % % % % % % % %	%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%% % % % %% % % %% %%% % %%%% % % %%%% % %% %%% % %%% % %%%% % % %%%% %% % %% % % % %% % %%%% %% % %% %%% %% % % %% %% % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% %% %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%% % % % % % % % % % % % % % %%% % % % % % %%% % % % % % %%% % % % % % %%% % % % % % %%% % % % % % %$%S% % % % % % %+%% % % % % % %0%% % % % % % %4%% % % % % % %@%% % % % % % %H%o% % % % % % %K%% % % % % % %X%2% % % % % % %Z%% % % % % % %`%>% % % % % % %c%% % % % % % %g%% % % % % % %k%% % % % % % %m%% % % % % % %o%% % % % % % %u%% % % % % % %~%Z% % % % % % %%% % % % % % %%6% % % % % % %%% % % % % % %%J% % % % % % %%S% % % % % % %%$% % % % % % %%N% % % % % % %%N% % % % % % %%% % % % % % %%% % % % % % %%% % % % % % %%% % % % % % %%% % % % % % %% % % % % % % %%h% % % % % % %%#% % % % % % %%% % % % % % %%!% % % % % %%%% % % % % %%%h% % % % % %%%% % % % % %%*%% % % % % %%@%t% % % % % %%N%% % % % % %%P%% % % % % %%Z%% % % % % %%]%% % % % % %%c%% % % % % %%h%% % % % % %%p% % % % % % %%u%n% % % % % %%z%[% % % % % %%|%y%%%%%S%u%p%p%o%r%t%%%
%4%:% %S%u%p%p%o%r%t% %%%%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%4%:% %S%u%p%p%o%r%t%
%T%h%i%s% %t%o%o%l%b%o%x% %i%s% %n%o%t% %a% %M%a%t%h%W%o%r%k%s% %s%u%p%p%o%r%t%e%d% %p%r%o%d%u%c%t%.% %H%o%w%e%v%e%r%,% %i%f% %y%o%u% %h%a%v%e% %p%r%o%b%l%e%m%s%,% %s%u%g%g%e%s%t%i%o%n%s% %o%r% %o%t%h%e%r% %c%o%m%m%e%n%t%s%,% %p%l%e%a%s%e% %c%o%n%t%a%c%t% %t%h%e% %a%u%t%h%o%r%s%:%
%B%e%n% %T%o%r%d%o%f%f%
%D%a%v%i%d% %S%a%m%p%s%o%n%
%I%f% %y%o%u% %l%i%k%e% %t%h%i%s% %t%o%o%l%b%o%x%,% %h%e%l%p% %o%t%h%e%r%s% %t%o% %f%i%n%d% %i%t% %b%y% %l%e%a%v%i%n%g% %a% %r%a%t%i%n%g% %a%n%d% %c%o%m%m%e%n%t% %o%n% %t%h%e% %M%A%T%L%A%B% %C%e%n%t%r%a%l% %F%i%l%e% %E%x%c%h%a%n%g%e%.%
%I%n%s%t%a%l%l%a%t%i%o%n%
%[%T%o%p%]%
%A%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%4%.%h%t%m%l%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%%%%2%.%6%:% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%2%.%6%:% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%
%A%r%r%a%n%g%e% %b%u%t%t%o%n%s% %v%e%r%t%i%c%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %c%o%l%u%m%n%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%(% %)% %i%s% %a% %t%y%p%e% %o%f% %V%B%o%x% %s%p%e%c%i%a%l%i%s%e%d% %f%o%r% %a%r%r%a%n%g%i%n%g% %a% %c%o%l%u%m%n% %o%f% %b%u%t%t%o%n%s%,% %c%h%e%c%k%-%b%o%x%e%s% %o%r% %s%i%m%i%l%a%r% %g%r%a%p%h%i%c%a%l% %e%l%e%m%e%n%t%s%.% %A%l%l% %b%u%t%t%o%n%s% %a%r%e% %g%i%v%e%n% %e%q%u%a%l% %s%i%z%e% %a%n%d% %b%y% %d%e%f%a%u%l%t% %a%r%e% %c%e%n%t%e%r%e%d% %i%n% %t%h%e% %d%r%a%w%i%n%g% %a%r%e%a%.% %T%h%e% %j%u%s%t%i%f%i%c%a%t%i%o%n% %c%a%n% %b%e% %c%h%a%n%g%e%d% %a%s% %r%e%q%u%i%r%e%d%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%B%u%t%t%o%n%S%i%z%e%
%[%w% %h%]%
%T%h%e% %s%i%z%e% %f%o%r% %t%h%e% %b%u%t%t%o%n%s% %(%a%l%l% %a%r%e% %g%i%v%e%n% %e%q%u%a%l% %s%i%z%e%)%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%H%o%r%i%z%o%n%t%a%l%A%l%i%g%n%m%e%n%t%
%[% %l%e%f%t% %|% %c%e%n%t%e%r% %|% %r%i%g%h%t% %]%
%T%h%e% %h%o%r%i%z%o%n%t%a%l% %p%o%s%i%t%i%o%n% %o%f% %t%h%e% %b%u%t%t%o%n%s%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%e%r%t%i%c%a%l%A%l%i%g%n%m%e%n%t%
%[% %t%o%p% %|% %m%i%d%d%l%e% %|% %b%o%t%t%o%m% %]%
%T%h%e% %v%e%r%t%i%c%a%l% %p%o%s%i%t%i%o%n% %o%f% %t%h%e% %b%u%t%t%o%n%s%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b% %=% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %'%O%n%e%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %'%T%w%o%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %'%T%h%r%e%e%'% %)%;% %s%e%t% %(% %b%,% %'%B%u%t%t%o%n%S%i%z%e%'% %,% %[%1%3%0% %3%5%]%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t% %o%f% %b%u%t%t%o%n%s%
%u%i%e%x%t%r%a%s%.%V%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %g%e%n%e%r%a%l% %v%e%r%t%i%c%a%l% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%G%r%i%d%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%6%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%6%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%%%%2%.%5%:% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%2%.%5%:% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%
%A%r%r%a%n%g%e% %b%u%t%t%o%n%s% %h%o%r%i%z%o%n%t%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%(% %)% %i%s% %a% %t%y%p%e% %o%f% %H%B%o%x% %s%p%e%c%i%a%l%i%s%e%d% %f%o%r% %a%r%r%a%n%g%i%n%g% %a% %r%o%w% %o%f% %b%u%t%t%o%n%s%,% %c%h%e%c%k%-%b%o%x%e%s% %o%r% %s%i%m%i%l%a%r% %g%r%a%p%h%i%c%a%l% %e%l%e%m%e%n%t%s%.% %A%l%l% %b%u%t%t%o%n%s% %a%r%e% %g%i%v%e%n% %e%q%u%a%l% %s%i%z%e% %a%n%d% %b%y% %d%e%f%a%u%l%t% %a%r%e% %c%e%n%t%e%r%e%d% %i%n% %t%h%e% %d%r%a%w%i%n%g% %a%r%e%a%.% %T%h%e% %j%u%s%t%i%f%i%c%a%t%i%o%n% %c%a%n% %b%e% %c%h%a%n%g%e%d% %a%s% %r%e%q%u%i%r%e%d%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%B%u%t%t%o%n%S%i%z%e%
%[%w% %h%]%
%T%h%e% %s%i%z%e% %f%o%r% %t%h%e% %b%u%t%t%o%n%s% %(%a%l%l% %a%r%e% %g%i%v%e%n% %e%q%u%a%l% %s%i%z%e%)%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%H%o%r%i%z%o%n%t%a%l%A%l%i%g%n%m%e%n%t%
%[% %l%e%f%t% %|% %c%e%n%t%e%r% %|% %r%i%g%h%t% %]%
%T%h%e% %h%o%r%i%z%o%n%t%a%l% %p%o%s%i%t%i%o%n% %o%f% %t%h%e% %b%u%t%t%o%n%s%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%e%r%t%i%c%a%l%A%l%i%g%n%m%e%n%t%
%[% %t%o%p% %|% %m%i%d%d%l%e% %|% %b%o%t%t%o%m% %]%
%T%h%e% %v%e%r%t%i%c%a%l% %p%o%s%i%t%i%o%n% %o%f% %t%h%e% %b%u%t%t%o%n%s%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b% %=% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %'%O%n%e%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %'%T%w%o%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %'%T%h%r%e%e%'% %)%;% %s%e%t% %(% %b%,% %'%B%u%t%t%o%n%S%i%z%e%'% %,% %[%1%3%0% %3%5%]%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %v%e%r%t%i%c%a%l% %a%r%r%a%n%g%e%m%e%n%t% %o%f% %b%u%t%t%o%n%s%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %g%e%n%e%r%a%l% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%5%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%5%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s%%%!%5%:% %A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s% %%%%U%s%e%r% %g%u%i%d%e%
%5%:% %A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s%
%T%h%e% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %p%r%o%v%i%d%e%s% %s%o%m%e% %e%x%t%r%a% %b%u%t%t%o%n%s% %a%n%d% %c%a%l%l%b%a%c%k%s% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %d%e%s%i%g%n% %a%d%v%a%n%c%e%d% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %l%a%y%o%u%t%s%.% %I%n% %p%a%r%t%i%c%u%l%a%r%,% %t%h%e% %s%e%c%t%i%o%n%s% %b%e%l%o%w% %i%l%l%u%s%t%r%a%t%e% %h%o%w% %t%o% %c%r%e%a%t%e% %i%n%t%e%r%f%a%c%e%s% %w%i%t%h% %c%o%n%t%e%x%t% %h%e%l%p%,% %a%n%d% %p%a%n%e%l%s% %t%h%a%t% %c%a%n% %b%e% %m%i%n%i%m%i%z%e%d% %o%r% %u%n%d%o%c%k%e%d%.%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%5%.%1%.% %C%o%n%t%e%x%t% %h%e%l%p%
%5%.%2%.% %M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e%
%5%.%3%.% %D%o%c%k% %a%n%d% %u%n%d%o%c%k%
%S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%
%[%T%o%p%]%
%C%o%n%t%e%x%t% %h%e%l%p%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%5%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%5%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%g%e%t%%%%4%.%5%:% %u%i%e%x%t%r%a%s%.%g%e%t% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%4%.%5%:% %u%i%e%x%t%r%a%s%.%g%e%t%
%R%e%t%r%i%e%v%e% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %f%r%o%m% %a% %p%a%r%e%n%t% %o%b%j%e%c%t%
%p%r%o%p%V%a%l%u%e% %=% %u%i%e%x%t%r%a%s%.%g%e%t%(% %h%O%b%j% %,% %p%r%o%p%N%a%m%e% %)% %r%e%t%r%i%e%v%e%s% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %f%r%o%m% %t%h%e% %o%b%j%e%c%t% %h%O%b%j%.% %N%o%t%e% %t%h%a%t% %t%h%e% %h%O%b%j% %m%u%s%t% %b%e% %a% %v%a%l%i%d% %g%r%a%p%h%i%c%s% %c%o%n%t%a%i%n%e%r% %o%b%j%e%c%t% %s%u%c%h% %a%s% %a% %u%i%p%a%n%e%l%,% %f%i%g%u%r%e% %o%r% %t%h%e% %s%p%e%c%i%a%l% %f%l%a%g% %0% %(%t%h%e% %o%v%e%r%a%l%l% %e%n%v%i%r%o%n%m%e%n%t%)%.% %T%h%e% %p%r%o%p%e%r%t%y% %n%a%m%e% %s%h%o%u%l%d% %t%a%k%e% %t%h%e% %f%o%r%m% %"%D%e%f%a%u%l%t%C%l%a%s%s%P%r%o%p%e%r%t%y%"%,% %f%o%r% %e%x%a%m%p%l%e% %t%o% %g%e%t% %t%h%e% %d%e%f%a%u%l%t% %"%T%i%t%l%e%C%o%l%o%r%"% %f%o%r% %t%h%e% %c%l%a%s%s% %"%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%"%,% %u%s%e% %"%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%T%i%t%l%e%C%o%l%o%r%"%.%I%f% %n%o% %d%e%f%a%u%l%t% %h%a%s% %b%e%e%n% %s%e%t% %f%o%r% %t%h%e% %s%p%e%c%i%f%i%e%d% %p%r%o%p%e%r%t%y% %a%n% %e%r%r%o%r% %i%s% %t%h%r%o%w%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%p% %=% %u%i%e%x%t%r%a%s%.%g%e%t% %(% %g%c%f% %(%)%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%T%i%t%l%e%C%o%l%o%r%'% %)%
%p% %=% %u%i%e%x%t%r%a%s%.%g%e%t% %(% %0%,% %'%D%e%f%a%u%l%t%H%B%o%x%P%a%d%d%i%n%g%'% %)%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%s%e%t% %-% %f%o%r% %s%e%t%t%i%n%g% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %i%n% %a% %p%a%r%e%n%t% %o%b%j%e%c%t%
%u%i%e%x%t%r%a%s%.%s%e%t%
%[%T%o%p%]%
%F%r%o%n%t% %p%a%g%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s% %>%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%5%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%5%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s%%%"%6%:% %U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s% %%%%U%s%e%r% %g%u%i%d%e%
%6%:% %U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s%
%W%h%i%l%s%t% %t%h%e% %l%a%y%o%u%t%s% %i%n% %t%h%i%s% %t%o%o%l%b%o%x% %d%o% %n%o%t% %i%n%t%e%g%r%a%t%e% %i%n%t%o% %t%h%e% %M%A%T%L%A%B% %G%r%a%p%h%i%c%a%l% %U%s%e%r% %I%n%t%e%r%f%a%c%e% %D%e%s%i%g%n% %E%n%v%i%r%o%n%m%e%n%t% %(% %G%U%I%D%E% %)%,% %i%t% %i%s% %p%o%s%s%i%b%l%e% %t%o% %i%n%s%e%r%t% %l%a%y%o%u%t%s% %i%n%t%o% %a% %G%U%I%D%E%-%b%u%i%l%t% %G%U%I% %a%s% %f%o%l%l%o%w%s%:%
%C%r%e%a%t%e% %t%h%e% %G%U%I%D%E% %G%U%I%
%C%r%e%a%t%e% %y%o%u% %G%U%I%D%E% %a%p%p%l%i%c%a%t%i%o%n% %a%s% %u%s%u%a%l%,% %p%l%a%c%i%n%g% %a% %p%a%n%e%l% %w%h%e%r%e% %y%o%u% %w%a%n%t% %t%o% %i%n%s%e%r%t% %t%h%e% %l%a%y%o%u%t%.% %Y%o%u% %c%a%n% %t%u%r%n% %t%h%e% %p%a%n%e%l% %b%o%r%d%e%r% %a%n%d% %t%i%t%l%e% %o%f%f% %i%f% %y%o%u% %d%o% %n%o%t% %w%a%n%t% %t%h%e%m%.%
%I%n%s%e%r%t% %t%h%e% %l%a%y%o%u%t%
%E%d%i%t% %t%h%e% %"%O%p%e%n%i%n%g%F%c%n%"% %i%n% %t%h%e% %G%U%I%D%E%-%c%r%e%a%t%e%d% %c%o%d%e% %a%n%d% %i%n%s%e%r%t% %y%o%u%r% %l%a%y%o%u%t% %i%n%t%o% %t%h%e% %p%a%n%e%l%,% %m%a%k%i%n%g% %i%t% %f%i%l%l% %t%h%e% %s%p%a%c%e%.% %I%n% %t%h%e% %e%x%a%m%p%l%e% %b%e%l%o%w% %f%o%u%r% %b%o%x%p%a%n%e%l%s% %a%r%e% %i%n%s%e%r%t%e%d% %i%n%t%o% %a% %g%r%i%d%,% %w%h%i%c%h% %i%t%s%e%l%f% %i%s% %p%l%a%c%e%d% %i%n%s%i%d%e% %u%i%p%a%n%e%l%1% %:%
%%% %-%-%-% %E%x%e%c%u%t%e%s% %j%u%s%t% %b%e%f%o%r%e% %g%u%i%d%e%A%p%p% %i%s% %m%a%d%e% %v%i%s%i%b%l%e%.% %f%u%n%c%t%i%o%n% %g%u%i%d%e%A%p%p%_%O%p%e%n%i%n%g%F%c%n%(%h%O%b%j%e%c%t%,% %e%v%e%n%t%d%a%t%a%,% %h%a%n%d%l%e%s%,% %v%a%r%a%r%g%i%n%)% %%% %C%h%o%o%s%e% %d%e%f%a%u%l%t% %c%o%m%m%a%n%d% %l%i%n%e% %o%u%t%p%u%t% %f%o%r% %g%u%i%d%e%A%p%p% %h%a%n%d%l%e%s%.%o%u%t%p%u%t% %=% %h%O%b%j%e%c%t%;% %%% %U%p%d%a%t%e% %h%a%n%d%l%e%s% %s%t%r%u%c%t%u%r%e% %g%u%i%d%a%t%a%(%h%O%b%j%e%c%t%,% %h%a%n%d%l%e%s%)%;% %%% %P%u%t% %a% %l%a%y%o%u%t% %i%n% %t%h%e% %p%a%n%e%l% %g% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %(% %'%P%a%r%e%n%t%'% %,% %h%a%n%d%l%e%s%.%u%i%p%a%n%e%l%1%,% %.%.%.% %'%U%n%i%t%s%'% %,% %'%N%o%r%m%a%l%i%z%e%d%'% %,% %'%P%o%s%i%t%i%o%n%'% %,% %[%0% %0% %1% %1%]%,% %.%.%.% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %1%'% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %2%'% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %3%'% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %4%'% %)%;% %g%.%R%o%w%S%i%z%e%s% %=% %[%-%1% %-%1%]%;%
%(%F%u%l%l% %s%o%u%r%c%e% %c%o%d%e% %f%o%r% %t%h%i%s% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%D%o%c%k% %a%n%d% %u%n%d%o%c%k%
%[%T%o%p%]%
%D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%6%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%6%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%L%a%y%o%u%t% %b%a%s%i%c%s%%%%1%.%1%:% %L%a%y%o%u%t% %b%a%s%i%c%s% %%%%U%s%e%r% %g%u%i%d%e%
%1%.%1%:% %L%a%y%o%u%t% %b%a%s%i%c%s%
%T%o% %s%e%e% %h%o%w% %l%a%y%o%u%t%s% %w%o%r%k%,% %l%e%t%'%s% %u%s%e% %t%h%e% %m%o%s%t% %b%a%s%i%c% %l%a%y%o%u%t%,% %a% %h%o%r%i%z%o%n%t%a%l% %l%i%s%t% %(%o%r% %b%o%x%)%.% %W%e% %f%i%r%s%t% %c%r%e%a%t%e% %a% %w%i%n%d%o%w%:%
%f% %=% %f%i%g%u%r%e% %(%)%;%
%N%o%w% %l%e%t%'%s% %c%r%e%a%t%e% %t%h%e% %h%o%r%i%z%o%n%t%a%l% %l%a%y%o%u%t% %a%n%d% %a%d%d% %i%t% %t%o% %t%h%e% %f%i%g%u%r%e%.% %N%o%t%e% %t%h%a%t% %i%n% %c%o%m%m%o%n% %w%i%t%h% %o%t%h%e%r% %M%A%T%L%A%B% %g%r%a%p%h%i%c%s% %o%b%j%e%c%t%s%,% %o%n%e% %o%b%j%e%c%t% %i%s% %a%d%d%e%d% %t%o% %a%n%o%t%h%e%r% %b%y% %s%e%t%t%i%n%g% %t%h%e% %"%P%a%r%e%n%t%"% %p%r%o%p%e%r%t%y% %-% %t%h%i%s% %w%i%l%l% %a%u%t%o%m%a%t%i%c%a%l%l%y% %a%d%j%u%s%t% %t%h%e% %l%i%s%t% %o%f% %"%C%h%i%l%d%r%e%n%"% %i%n% %t%h%e% %p%a%r%e%n%t% %o%b%j%e%c%t%.% %T%h%e% %j%o%b% %o%f% %a% %h%o%r%i%z%o%n%t%a%l% %b%o%x% %l%a%y%o%u%t% %i%s% %t%o% %a%r%r%a%n%g%e% %i%t%s% %c%o%n%t%e%n%t%s% %i%n% %a% %h%o%r%i%z%o%n%t%a%l% %l%i%n%e%,% %s%e%t%t%i%n%g% %t%h%e% %p%o%s%i%t%i%o%n% %o%f% %e%a%c%h% %e%l%e%m%e%n%t% %t%o% %b%e%s%t% %f%i%l%l% %t%h%e% %s%p%a%c%e%:%
%l%a%y%o%u%t% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;%
%N%o%t%h%i%n%g%'%s% %c%h%a%n%g%e%d%!% %T%h%a%t%'%s% %b%e%c%a%u%s%e% %t%h%e% %l%a%y%o%u%t% %i%s% %f%o%r% %a%r%r%a%n%g%i%n%g% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %-% %i%t% %d%o%e%s%n%'%t% %d%r%a%w% %a%n%y%t%h%i%n%g% %i%t%s%e%l%f%.% %L%e%t%'%s% %a%d%d% %s%o%m%e% %b%u%t%t%o%n%s%.% %N%o%t%e% %h%o%w% %a%f%t%e%r% %c%r%e%a%t%i%n%g% %e%a%c%h% %b%u%t%t%o%n% %t%h%e% %e%x%i%s%t%i%n%g% %c%o%n%t%e%n%t%s% %o%f% %t%h%e% %b%o%x% %m%a%k%e% %r%o%o%m% %f%o%r% %t%h%e% %n%e%w% %a%d%d%i%t%i%o%n%;% %w%e% %d%o%n%'%t% %n%e%e%d% %t%o% %s%e%t% %t%h%e% %p%o%s%i%t%i%o%n% %o%f% %a%n%y% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%!%
%u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %3%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;%
%.% %.%
%O%t%h%e%r% %l%a%y%o%u%t%s% %w%o%r%k% %i%n% %e%x%a%c%t%l%y% %t%h%e% %s%a%m%e% %w%a%y%,% %a%l%t%h%o%u%g%h% %v%i%s%u%a%l%l%y% %t%h%e% %e%n%d%-%r%e%s%u%l%t% %i%s% %q%u%i%t%e% %d%i%f%f%e%r%e%n%t%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %l%a%y%o%u%t% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %3%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;%
%f% %=% %f%i%g%u%r%e% %(%)%;% %l%a%y%o%u%t% %=% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %3%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;%
%U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s%
%[%T%o%p%]%
%T%y%p%e%s% %o%f% %l%a%y%o%u%t%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%1%_%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%1%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%E%m%p%t%y%%%%4%.%1%:% %u%i%e%x%t%r%a%s%.%E%m%p%t%y% %%%	%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%4%.%1%:% %u%i%e%x%t%r%a%s%.%E%m%p%t%y%
%C%r%e%a%t%e% %a%n% %e%m%p%t%y% %s%p%a%c%e%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%E%m%p%t%y%(% %)% %c%r%e%a%t%e%s% %a%n% %e%m%p%t%y% %s%p%a%c%e% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %i%n% %l%a%y%o%u%t%s% %t%o% %a%d%d% %g%a%p%s% %b%e%t%w%e%e%n% %o%t%h%e%r% %e%l%e%m%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%E%m%p%t%y%(% %p%a%r%a%m% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%E%m%p%t%y% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b%o%x% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%o%x%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%e%x%t%r%a%s%.%E%m%p%t%y% %(% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%o%x%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %-% %f%o%r% %a%r%r%a%n%g%i%n%g% %w%i%d%g%e%t%s% %h%o%r%i%z%o%n%t%a%l%l%y%
%u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%
%[%T%o%p%]%
%l%a%y%o%u%t%V%e%r%s%i%o%n%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%1%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%s%e%t%%%%4%.%4%:% %u%i%e%x%t%r%a%s%.%s%e%t% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%4%.%4%:% %u%i%e%x%t%r%a%s%.%s%e%t%
%S%t%o%r%e% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %i%n% %a% %p%a%r%e%n%t% %o%b%j%e%c%t%
%u%i%e%x%t%r%a%s%.%s%e%t%(% %h%O%b%j% %,% %p%r%o%p%N%a%m%e% %,% %p%r%o%p%V%a%l%u%e% %)% %s%t%o%r%e%s% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %i%n% %t%h%e% %o%b%j%e%c%t% %h%O%b%j% %s%u%c%h% %t%h%a%t% %c%h%i%l%d%r%e%n% %c%r%e%a%t%e%d% %i%n%s%i%d%e% %i%t% %o%f% %t%h%e% %c%o%r%r%e%c%t% %c%l%a%s%s% %w%i%l%l% %u%s%e% %t%h%e% %s%p%e%c%i%f%i%e%d% %v%a%l%u%e% %(% %p%r%o%p%V%a%l%u%e% %)% %f%o%r% %t%h%e% %s%p%e%c%i%f%i%e%d% %p%r%o%p%e%r%t%y% %b%y% %d%e%f%a%u%l%t%.% %T%h%e% %p%r%o%p%e%r%t%y% %n%a%m%e% %s%h%o%u%l%d% %t%a%k%e% %t%h%e% %f%o%r%m% %"%D%e%f%a%u%l%t%C%l%a%s%s%P%r%o%p%e%r%t%y%"%,% %f%o%r% %e%x%a%m%p%l%e% %t%o% %s%e%t% %t%h%e% %d%e%f%a%u%l%t% %"%T%i%t%l%e%C%o%l%o%r%"% %f%o%r% %t%h%e% %c%l%a%s%s% %"%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%"%,% %u%s%e% %"%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%T%i%t%l%e%C%o%l%o%r%"%.% %N%o%t%e% %t%h%a%t% %u%s%i%n%g% %t%h%e% %s%p%e%c%i%a%l% %o%b%j%e%c%t% %h%a%n%d%l%e% %0% %s%e%t%s% %t%h%e% %d%e%f%a%u%l%t% %f%o%r% %a%l%l% %n%e%w% %f%i%g%u%r%e%s%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%u%i%e%x%t%r%a%s%.%s%e%t% %(% %g%c%f% %(%)%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%T%i%t%l%e%C%o%l%o%r%'% %,% %'%g%'% %)%
%u%i%e%x%t%r%a%s%.%s%e%t% %(% %0%,% %'%D%e%f%a%u%l%t%H%B%o%x%P%a%d%d%i%n%g%'% %,% %5% %)%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%g%e%t% %-% %f%o%r% %r%e%t%r%i%e%v%i%n%g% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %f%r%o%m% %a% %p%a%r%e%n%t% %o%b%j%e%c%t%
%l%a%y%o%u%t%R%o%o%t%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%g%e%t%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%4%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%H%B%o%x%%%%2%.%1%:% %u%i%e%x%t%r%a%s%.%H%B%o%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%2%.%1%:% %u%i%e%x%t%r%a%s%.%H%B%o%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %h%o%r%i%z%o%n%t%a%l% %b%o%x% %l%a%y%o%u%t% %w%i%t%h% %a%l%l% %p%r%o%p%e%r%t%i%e%s% %s%e%t% %t%o% %d%e%f%a%u%l%t%s%.% %T%h%e% %o%u%t%p%u%t% %i%s% %a% %n%e%w% %l%a%y%o%u%t% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %a%s% %t%h%e% %p%a%r%e%n%t% %f%o%r% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%M%i%n%i%m%u%m%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %m%i%n%i%m%u%m% %s%i%z%e% %i%n% %p%i%x%e%l%s% %f%o%r% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)% %s%e%t% %(% %b%,% %'%S%i%z%e%s%'% %,% %[%-%1% %1%0%0% %-%2%]%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b%1% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%1%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %b%2% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %b%1%,% %'%P%a%d%d%i%n%g%'% %,% %5%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%2%,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n%1%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%2%,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n%2%'% %)% %s%e%t% %(% %b%1%,% %'%S%i%z%e%s%'% %,% %[%3%0% %-%1%]% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%V%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %v%e%r%t%i%c%a%l% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%V%B%o%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%1%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%S%i%z%e%s% %a%n%d% %u%n%i%t%s%%%%1%.%3%:% %S%i%z%e%s% %a%n%d% %u%n%i%t%s% %%%%U%s%e%r% %g%u%i%d%e%
%1%.%3%:% %S%i%z%e%s% %a%n%d% %u%n%i%t%s%
%I%n% %t%h%e% %p%r%e%v%i%o%u%s% %s%e%c%t%i%o%n% %w%e% %n%o%t%e%d% %t%h%a%t% %w%h%e%n% %u%s%i%n%g% %l%a%y%o%u%t%s% %y%o%u% %n%e%v%e%r% %n%e%e%d% %t%o% %s%e%t% %t%h%e% %p%o%s%i%t%i%o%n% %o%r% %s%i%z%e% %o%f% %a% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t% %y%o%u%r%s%e%l%f% %-% %t%h%e% %l%a%y%o%u%t%s% %t%a%k%e% %c%a%r%e% %o%f% %i%t%.% %S%o% %h%o%w% %d%o% %y%o%u% %c%o%n%t%r%o%l% %t%h%e% %s%i%z%e%s% %o%f% %t%h%e% %c%o%m%p%o%n%e%n%t%s%?%
%E%a%c%h% %l%a%y%o%u%t% %t%h%a%t% %a%r%r%a%n%g%e%s% %m%u%l%t%i%p%l%e% %i%t%e%m%s% %w%i%t%h%i%n% %i%t%s% %d%r%a%w%i%n%g% %a%r%e%a% %h%a%s% %a% %s%i%z%i%n%g% %p%r%o%p%e%r%t%y%:% %f%o%r% %h%o%r%i%z%o%n%t%a%l% %a%n%d% %v%e%r%t%i%c%a%l% %b%o%x%e%s% %t%h%i%s% %i%s% %c%a%l%l%e%d% %S%i%z%e%s% %;% %f%o%r% %g%r%i%d%s% %w%e% %h%a%v%e% %R%o%w%S%i%z%e%s% %a%n%d% %C%o%l%u%m%n%S%i%z%e%s% %.% %T%h%e%s%e% %a%l%l% %o%b%e%y% %t%h%e% %s%a%m%e% %c%o%n%v%e%n%t%i%o%n%:%
%P%o%s%i%t%i%v%e% %n%u%m%b%e%r%s% %i%n%d%i%c%a%t%e% %s%i%z%e%s% %i%n% %p%i%x%e%l%s% %(%s%i%m%i%l%a%r% %t%o% %"%p%i%x%e%l%"% %u%n%i%t%s%)%
%N%e%g%a%t%i%v%e% %n%u%m%b%e%r%s% %i%n%d%i%c%a%t%e% %a% %w%e%i%g%h%t%i%n%g% %f%o%r% %v%a%r%i%a%b%l%e% %s%i%z%i%n%g% %(%s%i%m%i%l%a%r% %t%o% %"%n%o%r%m%a%l%i%z%e%d%"% %u%n%i%t%s%)%
%B%y% %d%e%f%a%u%l%t% %a%l%l% %s%i%z%e%s% %a%r%e% %s%e%t% %t%o% %-%1% %(%v%a%r%i%a%b%l%e% %s%i%z%e% %w%i%t%h% %u%n%i%t% %w%e%i%g%h%t%i%n%g%)%.%
%L%e%t%'%s% %t%a%k%e% %a% %s%i%m%p%l%e% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %l%a%y%o%u%t% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %3%'%,% %'%P%a%r%e%n%t%'%,% %l%a%y%o%u%t% %)%;%
%W%e% %c%a%n% %s%e%t% %t%h%e% %m%i%d%d%l%e% %e%l%e%m%e%n%t% %t%o% %b%e% %t%w%i%c%e% %a%s% %w%i%d%e% %a%s% %t%h%e% %o%t%h%e%r%s% %(%b%u%t% %s%t%i%l%l% %v%a%r%i%a%b%l%e% %w%i%d%t%h%)% %b%y% %s%e%t%t%i%n%g% %i%t%s% %w%e%i%g%h%t% %t%o% %-%2% %w%i%t%h% %t%h%e% %o%t%h%e%r%s% %a%t% %-%1%:%
%l%a%y%o%u%t%.%S%i%z%e%s% %=% %[%-%1% %-%2% %-%1%]%
%A%l%t%e%r%n%a%t%i%v%e%l%y% %w%e% %m%i%g%h%t% %w%a%n%t% %t%h%e% %f%i%r%s%t% %e%l%e%m%e%n%t% %t%o% %h%a%v%e% %a% %f%i%x%e%d% %w%i%d%t%h% %o%f% %1%0%0% %p%i%x%e%l%s% %w%i%t%h% %t%h%e% %o%t%h%e%r%s% %f%i%l%l%i%n%g% %a%n%y% %r%e%m%a%i%n%i%n%g% %s%p%a%c%e% %e%q%u%a%l%l%y%:%
%l%a%y%o%u%t%.%S%i%z%e%s% %=% %[%1%0%0% %-%1% %-%1%]%
%T%h%i%s% %a%b%i%l%i%t%y% %t%o% %m%i%x% %f%i%x%e%d% %a%n%d% %v%a%r%i%a%b%l%e% %s%i%z%e%d% %e%l%e%m%e%n%t%s% %i%s% %c%r%u%c%i%a%l% %i%n% %i%n%t%e%r%f%a%c%e% %d%e%s%i%g%n%.% %I%t% %r%e%a%l%l%y% %c%o%m%e%s% %i%n%t%o% %i%t%s% %o%w%n% %w%h%e%n% %b%u%i%l%d%i%n%g% %a% %h%i%e%r%a%r%c%h%y% %o%f% %l%a%y%o%u%t%s%,% %d%e%s%c%r%i%b%e%d% %n%e%x%t%.%
%1%.%3%.%1%:% %M%i%n%i%m%u%m% %s%i%z%e%s%
%M%a%n%y% %o%f% %t%h%e% %m%u%l%t%i%-%e%l%e%m%e%n%t% %l%a%y%o%u%t%s% %a%l%s%o% %p%r%o%v%i%d%e% %a% %M%i%n%i%m%u%m%S%i%z%e%s% %p%r%o%p%e%r%t%y% %t%o% %p%r%e%v%e%n%t% %a%n% %e%l%e%m%e%n%t% %b%e%c%o%m%i%n%g% %t%o%o% %s%m%a%l%l%.% %T%h%i%s% %i%s% %m%e%a%s%u%r%e%d% %i%n% %p%i%x%e%l%s% %a%n%d% %d%e%f%a%u%l%t%s% %t%o% %o%n%e% %p%i%x%e%l%.% %I%f% %t%h%e% %s%p%e%c%i%f%i%e%d% %m%i%n%i%m%u%m% %s%i%z%e%s% %c%a%n%n%o%t% %f%i%t% %w%i%t%h%i%n% %t%h%e% %a%v%a%i%l%a%b%l%e% %s%p%a%c%e% %t%h%e%n% %a%l%l% %e%l%e%m%e%n%t% %s%i%z%e%s% %a%r%e% %r%e%d%u%c%e%d% %t%o% %f%i%t%.%
%T%y%p%e%s% %o%f% %l%a%y%o%u%t%
%[%T%o%p%]%
%L%a%y%o%u%t% %h%e%i%r%a%r%c%h%i%e%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%1%_%3%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%1%_%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%(%D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r%%%+%7%:% %D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r% %%%%U%s%e%r% %g%u%i%d%e%
%7%:% %D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r%
%A%p%p%l%i%c%a%t%i%o%n%s% %b%u%i%l%t% %u%s%i%n%g% %t%h%e%s%e% %l%a%y%o%u%t% %t%o%o%l%s% %c%a%n% %b%e% %d%e%p%l%o%y%e%d% %a%s% %s%t%a%n%d%a%l%o%n%e% %e%x%e%c%u%t%a%b%l%e%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r% %i%n% %t%h%e% %s%a%m%e% %w%a%y% %a%s% %a%n%y% %o%t%h%e%r% %M%A%T%L%A%B% %a%p%p%l%i%c%a%t%i%o%n%.% %T%h%e%r%e% %i%s%,% %h%o%w%e%v%e%r%,% %o%n%e% %t%h%i%n%g% %t%o% %w%a%t%c%h% %o%u%t% %f%o%r%:%
%Y%o%u% %m%u%s%t% %e%x%p%l%i%c%i%t%l%y% %i%n%c%l%u%d%e% %t%h%e% %u%i%e%x%t%r%a%s%.%R%e%s%o%u%r%c%e%s% %f%o%l%d%e%r%
%E%x%a%m%p%l%e%
%B%e%l%o%w% %i%s% %a% %s%c%r%e%e%n%-%s%h%o%t% %o%f% %t%h%e% %d%e%p%l%o%y%t%o%o%l% %s%e%t%u%p% %u%s%e%d% %t%o% %b%u%i%l%d% %t%h%e% %e%x%a%m%p%l%e% %a%p%p%l%i%c%a%t%i%o%n%.% %T%h%e% %"%R%e%s%o%u%r%c%e%s%"% %f%o%l%d%e%r% %f%r%o%m% %t%h%e% %t%o%o%l%b%o%x% %h%a%s% %b%e%e%n% %e%x%p%l%i%c%i%t%l%y% %a%d%d%e%d% %a%s% %a% %s%h%a%r%e%d% %r%e%s%o%u%r%c%e% %s%o% %t%h%a%t% %t%h%e% %m%o%u%s%e%-%p%o%i%n%t%e%r%s% %a%n%d% %p%a%n%e%l% %i%c%o%n%s% %c%o%n%t%i%n%u%e% %t%o% %w%o%r%k%.%
%U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s%
%[%T%o%p%]%
%A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%7%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%7%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%%%%3%.%2%:% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%3%.%2%:% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %t%w%o% %d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %n%e%w% %g%r%i%d% %l%a%y%o%u%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s%.% %T%h%e% %n%u%m%b%e%r% %o%f% %r%o%w%s% %a%n%d% %c%o%l%u%m%n%s% %t%o% %u%s%e% %i%s% %d%e%t%e%r%m%i%n%e%d% %f%r%o%m% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %R%o%w%S%i%z%e%s% %a%n%d% %C%o%l%u%m%n%S%i%z%e%s% %p%r%o%p%e%r%t%i%e%s% %r%e%s%p%e%c%t%i%v%e%l%y%.% %C%h%i%l%d% %e%l%e%m%e%n%t%s% %a%r%e% %a%r%r%a%n%g%e%d% %d%o%w%n% %c%o%l%u%m%n% %o%n%e% %f%i%r%s%t%,% %t%h%e%n% %c%o%l%u%m%n% %t%w%o% %e%t%c%.% %I%f% %t%h%e%r%e% %a%r%e% %i%n%s%u%f%f%i%c%i%e%n%t% %c%o%l%u%m%n%s% %t%h%e%n% %a% %n%e%w% %o%n%e% %i%s% %a%d%d%e%d%.% %T%h%e% %o%u%t%p%u%t% %i%s% %a% %n%e%w% %l%a%y%o%u%t% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %a%s% %t%h%e% %p%a%r%e%n%t% %f%o%r% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%C%o%l%u%m%n%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %c%o%l%u%m%n%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%R%o%w%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %r%o%w%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.%
%S%h%o%w%M%a%r%k%i%n%g%s%
%[% %o%n% %|% %o%f%f% %]%
%S%h%o%w% %m%a%r%k%i%n%g%s% %o%n% %t%h%e% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s% %(%d%e%f%a%u%l%t% %'%o%n%'%)%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %g% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)% %u%i%e%x%t%r%a%s%.%E%m%p%t%y% %(% %'%P%a%r%e%n%t%'% %,% %g% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%c%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%y%'% %)% %s%e%t% %(% %g%,% %'%C%o%l%u%m%n%S%i%z%e%s%'% %,% %[%-%1% %1%0%0% %-%2%]%,% %'%R%o%w%S%i%z%e%s%'% %,% %[%-%1% %-%2%]% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%G%r%i%d% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %g%r%i%d% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%G%r%i%d%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%E%m%p%t%y%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%3%_%2%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%3%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s%%%%4%:% %U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s% %%%%U%s%e%r% %g%u%i%d%e%
%4%:% %U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s%
%S%o%m%e%t%i%m%e%s% %i%t% %i%s% %u%s%e%f%u%l% %t%o% %o%v%e%r%r%i%d%e% %t%h%e% %d%e%f%a%u%l%t% %v%a%l%u%e%s% %u%s%e%d% %w%h%e%n% %n%e%w% %l%a%y%o%u%t% %m%a%n%a%g%e%r%s% %a%r%e% %c%r%e%a%t%e%d%.% %T%h%e% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s% %f%o%r% %m%o%s%t% %p%r%o%p%e%r%t%i%e%s% %a%r%e% %i%n%h%e%r%i%t%e%d% %f%r%o%m% %t%h%e% %p%a%r%e%n%t% %p%a%n%e%l%,% %f%i%g%u%r%e% %o%r% %e%n%v%i%r%o%n%e%m%t% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %f%i%r%s%t% %c%r%e%a%t%e%d%.% %F%u%n%c%t%i%o%n%s% %f%o%r% %s%e%t%t%i%n%g% %t%h%e%s%e% %a%r%e% %d%e%s%c%r%i%b%e%d% %b%e%l%o%w%.%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%4%.%1%.% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %o%n%e% %w%i%n%d%o%w%
%4%.%2%.% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%
%V%i%s%i%b%l%e% %e%x%a%m%p%l%e%
%[%T%o%p%]%
%S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %o%n%e% %w%i%n%d%o%w%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%4%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%S%c%a%l%a%b%i%l%i%t%y%%%%8%.%6%:% %S%c%a%l%a%b%i%l%i%t%y% %%%
%U%s%e%r% %g%u%i%d%e%
%8%.%6%:% %S%c%a%l%a%b%i%l%i%t%y%
%A%s% %a%p%p%l%i%c%a%t%i%o%n%s% %g%e%t% %b%i%g%g%e%r% %t%h%e% %c%o%d%e% %g%e%t%s% %m%o%r%e% %c%o%m%p%l%e%x%.% %T%h%e% %s%i%m%p%l%e% %a%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e% %u%s%e%d% %h%e%r%e% %d%o%e%s% %n%o%t% %s%c%a%l%e% %w%e%l%l% %t%o% %l%a%r%g%e% %a%p%p%l%i%c%a%t%i%o%n%s%,% %h%o%w%e%v%e%r% %s%o%m%e% %s%m%a%l%l% %a%d%j%u%s%t%m%e%n%t%s% %c%a%n% %m%a%k%e% %l%i%f%e% %m%u%c%h% %b%e%t%t%e%r%:%
%C%o%n%v%e%r%t% %t%h%e% %"%d%a%t%a%"% %s%t%r%u%c%t%u%r%e% %i%n%t%o% %a% %h%a%n%d%l%e% %o%b%j%e%c%t%.% %T%h%i%s% %a%l%l%o%w%s% %a% %s%i%n%g%l%e% %"%d%a%t%a%"% %o%b%j%e%c%t% %t%o% %b%e% %s%h%a%r%e%d% %b%e%t%w%e%e%n% %m%u%t%l%i%p%l%e% %g%r%a%p%h%i%c%a%l% %i%n%t%e%r%f%a%c%e%s%,% %a%n%d% %i%n% %t%u%r%n% %m%e%a%n%s% %t%h%a%t% %t%h%e% %i%n%t%e%r%f%a%c%e% %n%e%e%d% %n%o%t% %b%e% %b%u%i%l%t% %a%s% %a% %s%i%n%g%l%e% %m%o%n%o%l%i%t%h%i%c% %e%n%t%i%t%y%.%
%U%s%e% %t%h%e% %e%v%e%n%t%s% %s%y%s%t%e%m% %t%o% %t%r%i%g%g%e%r% %u%p%d%a%t%e%s% %t%o% %s%p%e%c%i%f%i%c% %p%a%r%t%s% %o%f% %t%h%e% %G%U%I% %i%n% %r%e%s%p%o%n%s%e% %t%o% %b%i%t%s% %o%f% %t%h%e% %d%a%t%a% %o%b%j%e%c%t% %c%h%a%n%g%i%n%g%.% %T%h%i%s% %r%e%m%o%v%e%s% %t%h%e% %n%e%e%d% %f%o%r% %a% %s%i%n%g%l%e% %l%a%r%g%e% %"%U%p%d%a%t%e%I%n%t%e%r%f%a%c%e%"% %f%u%n%c%t%i%o%n% %a%n%d% %r%e%d%u%c%e%s% %c%o%u%p%l%i%n%g% %b%e%t%w%e%e%n% %p%a%r%t%s% %o%f% %t%h%e% %i%n%t%e%r%f%a%c%e%.% %F%o%r% %e%x%a%m%p%l%e%,% %t%h%e% %"%S%e%l%e%c%t%e%d%D%e%m%o%"% %p%r%o%p%e%r%t%y% %w%o%u%l%d% %h%a%v%e% %a%n% %a%s%s%o%c%i%a%t%e%d% %e%v%e%n%t% %s%u%c%h% %t%h%a%t% %w%h%e%n% %i%t% %i%s% %c%h%a%n%g%e%d% %b%y% %a% %c%a%l%l%b%a%c%k% %(%o%r% %f%r%o%m% %t%h%e% %c%o%m%m%a%n%d%-%l%i%n%e%)% %i%t% %n%o%t%i%f%i%e%s% %o%t%h%e%r% %i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %o%f% %t%h%e% %c%h%a%n%g%e%.% %E%a%c%h% %i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t% %(%o%r% %g%r%o%u%p% %t%h%e%r%e%o%f%)% %c%a%n% %j%u%s%t% %l%i%s%t%e%n% %f%o%r% %t%h%e% %e%v%e%n%t%s% %t%h%a%t% %a%f%f%e%c%t% %i%t%.%
%A%d%v%i%c%e% %o%n% %h%o%w% %t%o% %b%u%i%l%d% %l%a%r%g%e%-%s%c%a%l%e% %a%p%p%l%i%c%a%t%i%o%n%s% %i%s% %b%e%y%o%n%d% %t%h%e% %s%c%o%p%e% %o%f% %t%h%i%s% %d%o%c%u%m%e%n%t%.% %I%f% %y%o%u% %n%e%e%d% %h%e%l%p% %i%n% %t%h%i%s% %a%r%e%a%,% %p%l%e%a%s%e% %c%o%n%t%a%c%t% %y%o%u%r% %M%a%t%h%W%o%r%k%s% %a%c%c%o%u%n%t% %m%a%n%a%g%e%r% %w%h%o% %w%i%l%l% %b%e% %a%b%l%e% %t%o% %p%u%t% %y%o%u% %i%n% %t%o%u%c%h% %w%i%t%h% %a% %t%e%c%h%n%i%c%a%l% %s%p%e%c%i%a%l%i%s%t%.%
%R%u%n%n%i%n%g% %i%t%
%[%T%o%p%]%
%F%r%o%n%t% %p%a%g%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s% %>%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%_%6%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%_%6%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%
%R%u%n%n%i%n%g% %i%t%%%%8%.%5%:% %R%u%n%n%i%n%g% %i%t% %%%%U%s%e%r% %g%u%i%d%e%
%8%.%5%:% %R%u%n%n%i%n%g% %i%t%
%W%h%e%n% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %i%s% %l%a%u%n%c%h%e%d% %(%c%l%i%c%k% %h%e%r%e%)% %i%t% %f%i%r%s%t% %c%r%e%a%t%e%s% %t%h%e% %d%a%t%a%,% %t%h%e%n% %t%h%e% %G%U%I%,% %t%h%e%n% %u%p%d%a%t%e%s% %t%h%e% %G%U%I% %u%s%i%n%g% %t%h%e% %d%a%t%a%.% %A%t% %t%h%i%s% %p%o%i%n%t% %t%h%e% %f%u%n%c%t%i%o%n% %e%x%i%t%s% %a%n%d% %c%o%n%t%r%o%l% %i%s% %r%e%t%u%r%n%e%d% %t%o% %t%h%e% %c%o%m%m%a%n%d% %p%r%o%m%p%t%.% %N%o%t%e%,% %h%o%w%e%v%e%r%,% %t%h%a%t% %t%h%e% %G%U%I% %i%s% %s%t%i%l%l% %o%n%s%c%r%e%e%n% %a%n%d% %w%i%l%l% %s%t%i%l%l% %r%e%s%p%o%n%d% %t%o% %u%s%e%r% %i%n%t%e%r%a%c%t%i%o%n%.%
%T%h%i%s% %w%o%r%k%s% %b%e%c%a%u%s%e% %t%h%e% %"%s%h%a%r%e%d%"% %v%a%r%i%a%b%l%e%s% %i%n% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %a%r%e% %n%o%t% %c%l%e%a%r%e%d% %w%h%e%n% %t%h%e% %f%u%n%c%t%i%o%n% %e%x%i%t%s%.% %T%h%e%y% %a%r%e% %o%n%l%y% %c%l%e%a%r%e%d% %o%n%c%e% %t%h%e% %G%U%I% %i%s% %c%l%o%s%e%d%.% %T%h%i%s% %i%s% %a% %s%l%i%g%h%t%l%y% %u%n%u%s%u%a%l%,% %b%u%t% %v%e%r%y% %u%s%e%f%u%l%,% %f%e%a%t%u%r%e% %o%f% %u%s%i%n%g% %n%e%s%t%e%d% %f%u%n%c%t%i%o%n%s% %f%o%r% %b%u%i%l%d%i%n%g% %a%p%p%l%i%c%a%t%i%o%n%s%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%>%>% %d%e%m%o%B%r%o%w%s%e%r%
%(%F%u%l%l% %s%o%u%r%c%e% %c%o%d%e% %f%o%r% %t%h%i%s% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%
%[%T%o%p%]%
%S%c%a%l%a%b%i%l%i%t%y%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%_%5%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%_%5%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%E%x%a%m%p%l%e%s%%%%E%x%a%m%p%l%e%s% %%%%G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %1%.%1%7%
%E%x%a%m%p%l%e%s%
%T%h%e% %f%o%l%l%o%w%i%n%g% %e%x%a%m%p%l%e%s% %a%r%e% %p%r%o%v%i%d%e%d% %a%s% %p%a%r%t% %o%f% %t%h%i%s% %d%o%c%u%m%e%n%t%a%t%i%o%n%.% %C%l%i%c%k% %t%h%e% %n%a%m%e% %o%f% %a%n%y% %e%x%a%m%p%l%e% %t%o% %g%o% %t%o% %t%h%e% %c%o%r%r%e%s%p%o%n%d%i%n%g% %p%a%g%e%.%
%B%a%s%i%c%s%
%L%a%y%o%u%t% %h%i%e%r%a%r%c%h%y% %U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s% %t%o% %p%r%o%d%u%c%e% %m%o%r%e% %c%o%m%p%l%e%x% %d%e%s%i%g%n%s%
%U%s%i%n%g% %a%x%e%s%
%P%o%s%i%t%i%o%n%i%n%g% %a%x%e%s% %U%s%i%n%g% %t%h%e% %d%i%f%f%e%r%e%n%t% %a%x%e%s% %p%o%s%i%t%i%o%n% %p%r%o%p%e%r%t%i%e%s%.%
%U%s%i%n%g% %p%a%n%e%l%s%
%C%o%n%t%e%x%t% %h%e%l%p% %A%d%d%i%n%g% %c%o%n%t%e%x%t%-%s%e%n%s%i%t%i%v%e% %h%e%l%p% %u%s%i%n%g% %p%a%n%e%l%s%.% %M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e% %C%r%e%a%t%i%n%g% %a% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %w%i%t%h% %p%a%n%e%l%s% %t%h%a%t% %c%a%n% %b%e% %m%i%n%i%m%i%z%e%d% %a%n%d% %m%a%x%i%m%i%z%e%d%.% %D%o%c%k% %a%n%d% %u%n%d%o%c%k% %C%r%e%a%t%i%n%g% %a% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %w%i%t%h% %p%a%n%e%l%s% %t%h%a%t% %c%a%n% %b%e% %u%n%d%o%c%k%e%d% %i%n%t%o% %s%e%p%a%r%a%t%e% %w%i%n%d%o%w%s%.%
%E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%
%E%n%a%b%l%i%n%g%/%D%i%s%a%b%l%i%n%g% %a% %l%a%y%o%u%t% %U%s%i%n%g% %t%h%e% %"%E%n%a%b%l%e%"% %p%r%o%p%e%r%t%y% %t%o% %e%n%a%b%l%e% %o%r% %d%i%s%a%b%l%e% %g%r%o%u%p%s% %o%f% %b%u%t%t%o%n%s% %S%h%o%w%i%n%g%/%H%i%d%i%n%g% %a% %l%a%y%o%u%t% %U%s%i%n%g% %t%h%e% %"%V%i%s%i%b%l%e%"% %p%r%o%p%e%r%t%y% %t%o% %s%h%o%w% %o%r% %h%i%d%e% %g%r%o%u%p%s% %o%f% %b%u%t%t%o%n%s%
%A%p%p%l%i%c%a%t%i%o%n%s%
%B%u%i%l%d%i%n%g% %a% %c%o%m%p%l%e%t%e% %a%p%p%l%i%c%a%t%i%o%n% %U%s%i%n%g% %l%a%y%o%u%t%s% %t%o%g%e%t%h%e%r% %t%o% %p%r%o%d%u%c%e% %a% %c%o%m%p%l%e%t%e% %a%p%p%l%i%c%a%t%i%o%n%
%F%r%o%n%t% %p%a%g%e%
%[%T%o%p%]%
%F%r%o%n%t% %p%a%g%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%E%x%a%m%p%l%e%s%.%h%t%m%l%% %%E%x%a%m%p%l%e%s%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s%%%%1%:% %U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s% %%%%U%s%e%r% %g%u%i%d%e%
%1%:% %U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s%
%T%h%e% %p%u%r%p%o%s%e% %o%f% %a% %"%l%a%y%o%u%t%"% %i%s% %t%o% %m%a%n%a%g%e% %t%h%e% %p%o%s%i%t%i%o%n%i%n%g% %o%f% %o%n%e% %o%r% %m%o%r%e% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %T%h%i%s% %m%e%a%n%s% %t%h%a%t% %i%n%s%t%e%a%d% %o%f% %w%o%r%r%y%i%n%g% %a%b%o%u%t% %t%h%e% %e%x%a%c%t% %p%o%s%i%t%i%o%n% %o%f% %e%a%c%h% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t% %y%o%u% %i%n%s%t%e%a%d% %w%o%r%r%y% %a%b%o%u%t% %t%h%e% %r%e%l%a%t%i%v%e% %p%o%s%i%t%i%o%n%i%n%g% %o%f% %t%h%e%m%;% %a%r%e% %t%h%e%y% %a%r%r%a%n%g%e%d% %i%n% %a% %v%e%r%t%i%c%a%l% %l%i%s%t%,% %h%o%r%i%z%o%n%t%a%l% %l%i%s%t%,% %a% %g%r%i%d% %p%a%t%t%e%r%n%,% %e%t%c%.%
%T%h%e% %b%e%s%t% %w%a%y% %t%o% %u%n%d%e%r%s%t%a%n%d% %w%h%a%t% %l%a%y%o%u%t%s% %a%r%e% %a%n%d% %w%h%y% %t%h%e%y% %a%r%e% %a% %g%o%o%d% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %d%e%s%i%g%n% %t%o%o%l% %i%s% %t%o% %s%e%e% %s%o%m%e% %e%x%a%m%p%l%e%s%.% %T%h%e% %s%e%c%t%i%o%n%s% %b%e%l%o%w% %g%o% %t%h%r%o%u%g%h% %t%h%e% %b%a%s%i%c%s% %o%f% %b%u%i%l%d%i%n%g% %a%n% %i%n%t%e%r%f%a%c%e% %u%s%i%n%g% %l%a%y%o%u%t%s% %a%n%d% %h%o%w% %t%o% %b%u%i%l%d% %c%o%m%p%l%e%x% %i%n%t%e%r%f%a%c%e%s% %u%s%i%n%g% %t%h%e%m%.%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%1%.%1%.% %L%a%y%o%u%t% %b%a%s%i%c%s%
%1%.%2%.% %T%y%p%e%s% %o%f% %l%a%y%o%u%t%
%1%.%3%.% %S%i%z%e%s% %a%n%d% %u%n%i%t%s%
%1%.%4%.% %L%a%y%o%u%t% %h%e%i%r%a%r%c%h%i%e%s%
%1%.%5%.% %W%h%y% %u%s%e% %l%a%y%o%u%t%s%?%
%U%s%e%r% %g%u%i%d%e%
%[%T%o%p%]%
%L%a%y%o%u%t% %b%a%s%i%c%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%l%a%y%o%u%t%V%e%r%s%i%o%n%%%%4%.%2%:% %l%a%y%o%u%t%V%e%r%s%i%o%n% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%4%.%2%:% %l%a%y%o%u%t%V%e%r%s%i%o%n%
%G%e%t% %t%h%e% %t%o%o%l%b%o%x% %v%e%r%s%i%o%n% %n%u%m%b%e%r% %a%n%d% %d%a%t%e%
%V% %=% %l%a%y%o%u%t%V%e%r%s%i%o%n%(% %)% %r%e%t%u%r%n%s% %t%h%e% %v%e%r%s%i%o%n% %n%u%m%b%e%r% %a%s% %a% %s%t%r%i%n%g%.% %[% %V% %,% %D% %]% %=% %l%a%y%o%u%t%V%e%r%s%i%o%n%(% %)% %r%e%t%u%r%n%s% %b%o%t%h% %t%h%e% %v%e%r%s%i%o%n% %s%t%r%i%n%g% %a%n%d% %t%h%e% %d%a%t%e% %o%f% %c%r%e%a%t%i%o%n% %(%f%o%r%m%a%t% %i%s% %I%S%O%8%6%0%1%,% %i%.%e%.% %Y%Y%Y%Y%-%M%M%-%D%D%)%
%F%o%r% %e%x%a%m%p%l%e%:%
%[%v%,%d%]% %=% %l%a%y%o%u%t%V%e%r%s%i%o%n% %(%)%
%v% %=% %'%1%.%0%'%
%d% %=% %'%2%0%1%0%-%0%5%-%2%8%'%
%S%e%e% %a%l%s%o%:%
%l%a%y%o%u%t%R%o%o%t% %-% %r%e%t%u%r%n%s% %t%h%e% %f%o%l%d%e%r% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %G%U%I% %l%a%y%o%u%t% %t%o%o%l%b%o%x%
%u%i%e%x%t%r%a%s%.%E%m%p%t%y%
%[%T%o%p%]%
%l%a%y%o%u%t%R%o%o%t%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%2%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%T%a%b%l%e% %o%f% %C%o%n%t%e%n%t%s%%%%T%a%b%l%e% %o%f% %C%o%n%t%e%n%t%s% %%%%G%U%I% %L%a%y%o%u%t%
%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%1%.% %W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?%
%2%.% %R%e%l%e%a%s%e% %N%o%t%e%s%
%3%.% %I%n%s%t%a%l%l%a%t%i%o%n%
%4%.% %S%u%p%p%o%r%t%
%5%.% %A%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%
%E%x%a%m%p%l%e%s%
%U%s%e%r% %g%u%i%d%e%
%1%.% %U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s%
%2%.% %P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s%
%3%.% %E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%
%4%.% %U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s%
%5%.% %A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s%
%6%.% %U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s%
%7%.% %D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r%
%8%.% %A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e%
%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%I%n%d%e%x%% %%0%% %%0%% %%h%e%l%p%t%o%c%.%h%t%m%l%% %%h%e%l%p%t%o%c%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%%%%8%.%4%:% %o%n%L%i%s%t%S%e%l%e%c%t%i%o%n% %%%
%U%s%e%r% %g%u%i%d%e%
%8%.%4%:% %o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%
%F%i%n%a%l%l%y%,% %l%e%t%'%s% %h%a%v%e% %a% %l%o%o%k% %a%t% %h%o%w% %o%n%e% %o%f% %t%h%e% %c%a%l%l%b%a%c%k%s% %w%o%r%k%s%:% %"%o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%"%,% %t%h%e% %f%u%n%c%t%i%o%n% %t%h%a%t% %i%s% %c%a%l%l%e%d% %w%h%e%n% %a%n% %i%t%e%m% %i%s% %s%e%l%e%c%t%e%d% %i%n% %t%h%e% %l%i%s%t%b%o%x%.% %T%h%e% %o%t%h%e%r% %c%a%l%l%b%a%c%k%s% %o%b%e%y% %t%h%e% %s%a%m%e% %p%a%t%t%e%r%n%.%
%T%h%e% %b%a%s%i%c% %r%u%l%e% %o%f% %t%h%u%m%b% %i%s% %t%h%a%t% %a% %c%a%l%l%b%a%c%k% %s%h%o%u%l%d% %n%o%t% %u%p%d%a%t%e% %a%n%y% %p%a%r%t% %o%f% %t%h%e% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %d%i%r%e%c%t%l%y% %-% %i%t%'%s% %j%o%b% %i%s% %t%o% %r%e%s%p%o%n%d% %t%o% %u%s%e%r% %i%n%t%e%r%a%c%t%i%o%n% %b%y% %c%h%a%n%g%i%n%g% %t%h%e% %"%d%a%t%a%"% %s%t%r%u%c%t%u%r%e%.% %I%n% %t%h%i%s% %e%x%a%m%p%l%e%,% %e%a%c%h% %c%a%l%l%b%a%c%k% %c%h%a%n%g%e%s% %t%h%e% %u%n%d%e%r%l%y%i%n%g% %d%a%t%a% %s%t%r%u%c%t%u%r%e% %t%h%e%n% %a%s%k%s% %t%h%e% %i%n%t%e%r%f%a%c%e% %t%o% %r%e%f%r%e%s%h%.% %T%h%i%s% %m%i%g%h%t% %m%e%a%n% %t%h%a%t% %t%h%i%n%g%s% %u%p%d%a%t%e% %i%n% %t%h%e% %i%n%t%e%r%f%a%c%e% %t%h%a%t% %d%o%n%'%t% %n%e%e%d% %t%o%,% %b%u%t% %e%n%s%u%r%e%s% %t%h%e% %c%a%l%l%b%a%c%k%s% %r%e%m%a%i%n% %s%i%m%p%l%e% %a%n%d% %t%h%a%t% %a%l%l% %i%n%t%e%r%f%a%c%e% %u%p%d%a%t%e% %l%o%g%i%c% %i%s% %i%n% %o%n%e% %p%l%a%c%e%.% %E%x%t%e%n%d%i%n%g% %t%h%i%s% %t%o% %m%o%r%e% %g%r%a%n%u%l%a%r% %i%n%t%e%r%f%a%c%e% %u%p%d%a%t%e%s% %i%s% %s%t%r%a%i%g%h%t%f%o%r%w%a%r%d%.% %S%e%e% %S%c%a%l%a%b%i%l%i%t%y% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%F%o%r% %t%h%e% %l%i%s%t%b%o%x% %c%a%l%l%b%a%c%k%,% %t%h%e% %"%s%r%c%"% %a%r%g%u%m%e%n%t% %i%s% %a% %h%a%n%d%l%e% %t%o% %t%h%e% %l%i%s%t%b%o%x% %a%n%d% %w%e% %s%i%m%p%l%y% %n%e%e%d% %t%o% %u%p%d%a%t%e% %t%h%e% %S%e%l%e%c%t%e%d%D%e%m%o% %f%i%e%l%d% %o%f% %"%d%a%t%a%"% %t%o% %r%e%f%l%e%c%t% %t%h%e% %n%e%w% %s%e%l%e%c%t%i%o%n%.% %W%e% %t%h%e%n% %a%s%k% %t%h%e% %r%e%s%t% %o%f% %t%h%e% %i%n%t%e%r%f%a%c%e% %t%o% %u%p%d%a%t%e% %i%n% %r%e%s%p%o%n%s%e% %t%o% %t%h%e% %c%h%a%n%g%e%.%
%%% %U%s%e%r% %s%e%l%e%c%t%e%d% %a% %d%e%m%o% %f%r%o%m% %t%h%e% %l%i%s%t% %-% %u%p%d%a%t%e% %"%d%a%t%a%"% %a%n%d% %r%e%f%r%e%s%h% %d%a%t%a%.%S%e%l%e%c%t%e%d%D%e%m%o% %=% %g%e%t% %(% %s%r%c%,% %'%V%a%l%u%e%'% %)%;% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%(%)%;% %r%e%d%r%a%w%D%e%m%o%(%)%;%
%(%F%u%l%l% %s%o%u%r%c%e% %c%o%d%e% %f%o%r% %t%h%i%s% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%
%[%T%o%p%]%
%R%u%n%n%i%n%g% %i%t%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%_%4%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%_%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%%%%8%.%2%:% %c%r%e%a%t%e%I%n%t%e%r%f%a%c%e% %%%%U%s%e%r% %g%u%i%d%e%
%8%.%2%:% %c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%
%T%h%e% %i%n%t%e%r%f%a%c%e% %c%r%e%a%t%i%o%n% %i%s% %h%a%n%d%l%e%d% %i%n% %t%h%e% %c%r%e%a%t%e%I%n%t%e%r%f%a%c%e% %s%u%b%f%u%n%c%t%i%o%n%.% %T%h%i%s% %h%a%s% %t%w%o% %d%i%s%t%i%n%c%t% %s%e%c%t%i%o%n%s%:% %m%e%n%u% %b%u%i%l%d%i%n%g% %a%n%d% %w%i%d%g%e%t% %a%r%r%a%n%g%e%m%e%n%t%.% %T%h%e% %m%e%n%u%s% %a%r%e% %b%u%i%l%t% %u%s%i%n%g% %t%h%e% %s%t%a%n%d%a%r%d% %M%A%T%L%A%B% %m%e%n%u% %b%u%i%l%d%i%n%g% %c%o%m%m%a%n%d% %u%i%m%e%n%u% %,% %s%o% %l%e%t%'%s% %c%o%n%c%e%n%t%r%a%t%e% %o%n% %t%h%e% %w%i%d%g%e%t% %a%r%r%a%n%g%e%m%e%n%t%.%
%T%h%e% %t%o%p%-%l%e%v%e%l% %l%a%y%o%u%t% %i%s% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t%,% %p%l%a%c%i%n%g% %t%h%e% %c%o%n%t%r%o%l%s% %t%o% %t%h%e% %l%e%f%t% %o%f% %t%h%e% %m%a%i%n% %p%l%o%t%.% %W%e% %m%a%k%e% %t%h%e% %l%a%y%o%u%t% %d%r%a%g%g%a%b%l%e% %b%y% %u%s%i%n%g% %t%h%e% %"%f%l%e%x%"% %v%a%r%i%a%n%t% %o%f% %H%B%o%x%,% %a%n%d% %p%u%t% %a% %p%a%n%e%l% %i%n% %e%a%c%h% %s%i%d%e%.% %N%o%t%e% %t%h%a%t% %s%e%t%t%i%n%g% %t%h%e% %"%H%e%l%p%F%c%n%"% %f%o%r% %t%h%e% %v%i%e%w% %p%a%n%e%l% %a%d%d%s% %a% %s%m%a%l%l% %"%?%"% %i%c%o%n% %f%o%r% %b%r%i%n%g%i%n%g% %u%p% %h%e%l%p%.% %S%e%e% %h%e%r%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%%% %A%d%d% %t%h%e% %c%o%n%t%e%n%t%s% %m%a%i%n%L%a%y%o%u%t% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %(% %'%P%a%r%e%n%t%'% %,% %g%u%i%.%W%i%n%d%o%w%,% %'%S%p%a%c%i%n%g%'% %,% %3% %)%;% %%% %C%r%e%a%t%e% %t%h%e% %p%a%n%e%l%s% %c%o%n%t%r%o%l%P%a%n%e%l% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %.%.%.% %'%P%a%r%e%n%t%'% %,% %m%a%i%n%L%a%y%o%u%t%,% %.%.%.% %'%T%i%t%l%e%'% %,% %'%S%e%l%e%c%t% %a% %d%e%m%o%:%'% %)%;% %g%u%i%.%V%i%e%w%P%a%n%e%l% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %.%.%.% %'%P%a%r%e%n%t%'% %,% %m%a%i%n%L%a%y%o%u%t%,% %.%.%.% %'%T%i%t%l%e%'% %,% %'%V%i%e%w%i%n%g%:% %?%?%?%'% %,% %.%.%.% %'%H%e%l%p%F%c%n%'% %,% %@%o%n%D%e%m%o%H%e%l%p% %)%;% %%% %A%d%j%u%s%t% %t%h%e% %m%a%i%n% %l%a%y%o%u%t%
%s%e%t% %(% %m%a%i%n%L%a%y%o%u%t%,% %'%S%i%z%e%s%'% %,% %[%-%1%,%-%2%]% %)%;%
%T%h%e% %c%o%n%t%r%o%l%s% %p%a%n%e%l% %i%s% %f%i%l%l%e%d% %w%i%t%h% %a% %v%e%r%t%i%c%a%l% %l%a%y%o%u%t% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %l%i%s%t%b%o%x% %a%n%d% %a% %b%u%t%t%o%n%.% %N%o%t%e% %t%h%e% %c%a%l%l%b%a%c%k%s% %t%h%a%t% %a%r%e% %s%p%e%c%i%f%i%e%d% %f%o%r% %b%o%t%h% %t%h%e% %l%i%s%t% %a%n%d% %b%u%t%t%o%n%.% %T%h%e%s%e% %b%o%t%h% %c%a%l%l% %f%u%r%t%h%e%r% %s%u%b%f%u%n%c%t%i%o%n%s% %t%h%a%t% %a%r%e% %a%b%l%e% %t%o% %a%c%c%e%s%s% %t%h%e% %c%o%m%m%o%n% %"%d%a%t%a%"% %a%n%d% %"%g%u%i%"% %s%h%a%r%e%d% %s%t%r%u%c%t%u%r%e%s%.%
%%% %C%r%e%a%t%e% %t%h%e% %c%o%n%t%r%o%l%s% %c%o%n%t%r%o%l%L%a%y%o%u%t% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %c%o%n%t%r%o%l%P%a%n%e%l%,% %.%.%.% %'%P%a%d%d%i%n%g%'% %,% %3%,% %'%S%p%a%c%i%n%g%'% %,% %3% %)%;% %g%u%i%.%L%i%s%t%B%o%x% %=% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%l%i%s%t%'% %,% %.%.%.% %'%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%'% %,% %'%w%'% %,% %.%.%.% %'%P%a%r%e%n%t%'% %,% %c%o%n%t%r%o%l%L%a%y%o%u%t%,% %.%.%.% %'%S%t%r%i%n%g%'% %,% %d%e%m%o%L%i%s%t%(%:%)%,% %.%.%.% %'%V%a%l%u%e%'% %,% %1%,% %.%.%.% %'%C%a%l%l%b%a%c%k%'% %,% %@%o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%)%;% %g%u%i%.%H%e%l%p%B%u%t%t%o%n% %=% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %.%.%.% %'%P%a%r%e%n%t%'% %,% %c%o%n%t%r%o%l%L%a%y%o%u%t%,% %.%.%.% %'%S%t%r%i%n%g%'% %,% %'%H%e%l%p% %f%o%r% %<%d%e%m%o%>%'% %,% %.%.%.% %'%C%a%l%l%b%a%c%k%'% %,% %@%o%n%D%e%m%o%H%e%l%p% %)%;% %s%e%t% %(% %c%o%n%t%r%o%l%L%a%y%o%u%t%,% %'%S%i%z%e%s%'% %,% %[%-%1% %2%8%]% %)%;% %%% %M%a%k%e% %t%h%e% %l%i%s%t% %f%i%l%l% %t%h%e% %s%p%a%c%e%
%F%i%n%a%l%l%y%,% %t%h%e% %v%i%e%w% %i%t%s%e%l%f% %i%s% %s%i%m%p%l%y% %a%n% %a%x%e%s% %p%l%a%c%e%d% %i%n%s%i%d%e% %t%h%e% %v%i%e%w% %p%a%n%e%l%:%
%%% %C%r%e%a%t%e% %t%h%e% %v%i%e%w% %g%u%i%.%V%i%e%w%A%x%e%s% %=% %a%x%e%s% %(% %'%P%a%r%e%n%t%'% %,% %g%u%i%.%V%i%e%w%P%a%n%e%l% %)%;%
%(%F%u%l%l% %s%o%u%r%c%e% %c%o%d%e% %f%o%r% %t%h%i%s% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%A%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e%
%[%T%o%p%]%
%u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%_%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%%%%3%:% %E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e% %%%%U%s%e%r% %g%u%i%d%e%
%3%:% %E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%
%T%h%e% %e%x%a%m%p%l%e%s% %i%n% %t%h%i%s% %s%e%c%t%i%o%n% %s%h%o%w% %t%h%e% %e%f%f%e%c%t% %o%f% %s%e%t%t%i%n%g% %t%h%e% %"%E%n%a%b%l%e%"% %o%r% %"%V%i%s%i%b%l%e%"% %p%r%o%p%e%r%t%i%e%s% %o%n% %a% %l%a%y%o%u%t% %o%b%j%e%c%t%.%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%3%.%1%.% %E%n%a%b%l%e% %e%x%a%m%p%l%e%
%3%.%2%.% %V%i%s%i%b%l%e% %e%x%a%m%p%l%e%
%A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s%
%[%T%o%p%]%
%E%n%a%b%l%e% %e%x%a%m%p%l%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%3%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %d%o%c%u%m%e%n%t%a%t%i%o%n%%% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %d%o%c%u%m%e%n%t%a%t%i%o%n% %%%%G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %d%o%c%u%m%e%n%t%a%t%i%o%n%
%V%e%r%s%i%o%n%:% %1%.%1%7%
%T%h%i%s% %t%o%o%l%b%o%x% %p%r%o%v%i%d%e%s% %t%o%o%l%s% %t%o% %c%r%e%a%t%e% %s%o%p%h%i%s%t%i%c%a%t%e%d% %M%A%T%L%A%B% %g%r%a%p%h%i%c%a%l% %u%s%e%r% %i%n%t%e%r%f%a%c%e%s% %t%h%a%t% %r%e%s%i%z%e% %g%r%a%c%e%f%u%l%l%y%.% %T%h%e% %c%l%a%s%s%e%s% %s%u%p%p%l%i%e%d% %c%a%n% %b%e% %u%s%e%d% %i%n% %c%o%m%b%i%n%a%t%i%o%n% %t%o% %p%r%o%d%u%c%e% %v%i%r%t%u%a%l%l%y% %a%n%y% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %l%a%y%o%u%t%.%
%A%r%r%a%n%g%e% %M%A%T%L%A%B% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y%,% %v%e%r%t%i%c%a%l%l%y% %o%r% %i%n% %g%r%i%d%s%
%A%b%i%l%i%t%y% %t%o% %m%i%x% %f%i%x%e%d% %s%i%z%e% %a%n%d% %v%a%r%i%a%b%l%e% %s%i%z%e% %e%l%e%m%e%n%t%s%
%D%y%n%a%m%i%c% %r%e%s%i%z%i%n%g% %o%f% %e%l%e%m%e%n%t%s% %b%y% %d%r%a%g%g%i%n%g% %d%i%v%i%d%e%r%s%
%U%s%e% %p%a%n%e%l%s% %a%n%d% %t%a%b%s% %f%o%r% %s%w%i%t%c%h%i%n%g% %i%n%t%e%r%f%a%c%e% %p%a%g%e%s%
%T%h%i%s% %t%o%o%l%b%o%x% %w%a%s% %d%e%v%e%l%o%p%e%d% %b%y% %B%e%n% %T%o%r%d%o%f%f% %a%n%d% %D%a%v%i%d% %S%a%m%p%s%o%n% %f%r%o%m% %t%h%e% %C%o%n%s%u%l%t%i%n%g% %g%r%o%u%p% %a%t% %M%a%t%h%W%o%r%k%s%.%
%C%o%n%t%e%n%t%s%:%
%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%:%
%I%n%t%r%o%d%u%c%t%o%r%y% %n%o%t%e%s% %a%n%d% %i%n%s%t%a%l%l%a%t%i%o%n% %i%n%s%t%r%u%c%t%i%o%n%s%
%E%x%a%m%p%l%e%s%:%
%A% %l%i%s%t% %o%f% %t%h%e% %e%x%a%m%p%l%e%s% %t%h%a%t% %a%r%e% %p%r%o%v%i%d%e%d% %i%n% %t%h%e% %d%o%c%u%m%e%n%t%a%t%i%o%n%
%U%s%e%r% %g%u%i%d%e%:%
%D%e%s%c%r%i%b%e%s% %h%o%w% %t%o% %u%s%e% %t%h%e%s%e% %t%o%o%l%s%
%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%:%
%A% %l%i%s%t% %o%f% %t%h%e% %a%v%a%i%l%a%b%l%e% %f%u%n%c%t%i%o%n%s%
%I%n%d%e%x%
%A%l%p%h%a%b%e%t%i%c%a%l% %i%n%d%e%x% %o%f% %s%e%c%t%i%o%n%s%,% %f%u%n%c%t%i%o%n%s% %a%n%d% %c%o%n%c%e%p%t%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %
%i%n%d%e%x%.%h%t%m%l%% %
%i%n%d%e%x%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%I%n%s%t%a%l%l%a%t%i%o%n%%%%3%:% %I%n%s%t%a%l%l%a%t%i%o%n% %%%%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%3%:% %I%n%s%t%a%l%l%a%t%i%o%n%
%T%o% %u%s%e% %t%h%i%s% %t%o%o%l%b%o%x% %i%t% %m%u%s%t% %b%e% %a%d%d%e%d% %t%o% %t%h%e% %M%A%T%L%A%B% %p%a%t%h%.% %S%c%r%i%p%t%s% %a%r%e% %p%r%o%v%i%d%e%d% %t%o% %d%o% %t%h%i%s% %i%n% %t%w%o% %w%a%y%s%:%
%F%r%o%m% %M%A%T%L%A%B%:%
%F%r%o%m% %M%A%T%L%A%B%:% %f%r%o%m% %t%h%e% %f%o%l%d%e%r% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %t%o%o%l%b%o%x%,% %r%u%n% %t%h%e% %"%i%n%s%t%a%l%l%.%m%"% %f%u%n%c%t%i%o%n%
%F%r%o%m% %W%i%n%d%o%w%s% %E%x%p%l%o%r%e%r%:% %f%r%o%m% %t%h%e% %f%o%l%d%e%r% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %t%o%o%l%b%o%x%,% %d%o%u%b%l%e%-%c%l%i%c%k% %t%h%e% %"%i%n%s%t%a%l%l%.%b%a%t%"% %i%c%o%n%
%T%o% %u%n%i%n%s%t%a%l%l% %(%i%.%e%.% %r%e%m%o%v%e% %i%t% %f%r%o%m% %t%h%e% %p%a%t%h%)%,% %r%u%n% %t%h%e% %f%u%n%c%t%i%o%n% %'%u%n%i%n%s%t%a%l%l%'% %i%n% %M%A%T%L%A%B%,% %a%l%s%o% %f%o%u%n%d% %i%n% %t%h%e% %t%o%o%l%b%o%x% %f%o%l%d%e%r%.%
%R%e%l%e%a%s%e% %N%o%t%e%s%
%[%T%o%p%]%
%S%u%p%p%o%r%t%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%3%.%h%t%m%l%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%D%o%c%k% %a%n%d% %u%n%d%o%c%k%%%%5%.%3%:% %D%o%c%k% %a%n%d% %u%n%d%o%c%k% %%% %U%s%e%r% %g%u%i%d%e%
%5%.%3%:% %D%o%c%k% %a%n%d% %u%n%d%o%c%k%
%W%h%e%n% %a% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %h%a%s% %i%t%s% %"%D%o%c%k%F%c%n%"% %f%i%l%l%e%d% %i%n%,% %a% %d%o%c%k%/%u%n%d%o%c%k% %b%u%t%t%o%n% %(% %/% %)% %i%s% %s%h%o%w%n% %i%n% %t%h%e% %u%p%p%e%r%-%r%i%g%h%t% %o%f% %t%h%e% %t%i%t%l%e%-%b%a%r%.% %W%h%e%n% %t%h%e% %u%s%e%r% %c%l%i%c%k%s% %t%h%i%s% %b%u%t%t%o%n% %t%h%e% %s%p%e%c%i%f%i%e%d% %f%u%n%c%t%i%o%n% %i%s% %c%a%l%l%e%d%.% %S%i%n%c%e% %r%e%-%d%o%c%k%i%n%g% %t%h%e% %p%a%n%e%l% %i%n%t%o% %i%t%s% %p%r%e%v%i%o%u%s% %p%a%r%e%n%t% %d%e%p%e%n%d%s% %o%n% %t%h%e% %t%y%p%e% %o%f% %p%a%r%e%n%t%,% %i%t% %i%s% %u%p% %t%o% %t%h%e% %u%s%e%r% %t%o% %w%r%i%t%e% %s%o%m%e% %c%o%d%e% %t%o% %a%c%t%u%a%l%l%y% %e%x%t%r%a%c%t% %o%r% %i%n%s%e%r%t% %t%h%e% %p%a%n%e%l%.%
%T%h%e% %f%o%l%l%o%w%i%n%g% %s%i%m%p%l%e% %e%x%a%m%p%l%e% %s%h%o%w%s% %h%o%w% %t%o% %a%d%d% %d%o%c%k%/%u%n%d%o%c%k% %f%u%n%c%t%i%o%n%a%l%i%t%y% %t%o% %a% %b%o%x% %f%u%l%l% %o%f% %p%a%n%e%l%s%.% %S%a%v%e% %t%h%e% %c%o%d%e% %i%n%t%o% %a% %f%i%l%e% %c%a%l%l%e%d% %"%d%o%c%k%e%x%a%m%p%l%e%.%m%"% %t%o% %r%u%n% %i%t%.%
%(%T%h%e% %c%o%d%e% %f%o%r% %t%h%i%s% %e%x%a%m%p%l%e% %c%a%n% %b%e% %f%o%u%n%d% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%C%r%e%a%t%e% %t%h%e% %l%a%y%o%u%t% %w%i%t%h% %t%h%r%e%e% %p%a%n%e%l%s%
%O%p%e%n% %a% %n%e%w% %f%i%g%u%r%e% %w%i%n%d%o%w% %a%n%d% %a%d%d% %t%h%r%e%e% %p%a%n%e%l%s%.%
%f%u%n%c%t%i%o%n% %d%o%c%k%e%x%a%m%p%l%e%(%)% %%% %C%r%e%a%t%e% %t%h%e% %w%i%n%d%o%w% %a%n%d% %m%a%i%n% %l%a%y%o%u%t% %f%i%g% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'% %,% %'%D%o%c%k%a%b%l%e% %G%U%I% %e%x%a%m%p%l%e%'% %,% %.%.%.% %'%N%u%m%b%e%r%T%i%t%l%e%'% %,% %'%o%f%f%'% %,% %.%.%.% %'%T%o%o%l%b%a%r%'% %,% %'%n%o%n%e%'% %,% %.%.%.% %'%M%e%n%u%B%a%r%'% %,% %'%n%o%n%e%'% %,% %.%.%.% %'%C%l%o%s%e%R%e%q%u%e%s%t%F%c%n%'% %,% %@%n%C%l%o%s%e%A%l%l% %)%;% %b%o%x% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f%i%g% %)%;% %%% %A%d%d% %t%h%r%e%e% %p%a%n%e%l%s% %t%o% %t%h%e% %b%o%x% %p%a%n%e%l%{%1%}% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %1%'% %,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %p%a%n%e%l%{%2%}% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %2%'% %,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %p%a%n%e%l%{%3%}% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %3%'% %,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %%% %A%d%d% %s%o%m%e% %c%o%n%t%e%n%t%s%
%u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n% %1%'% %,% %'%P%a%r%e%n%t%'% %,% %p%a%n%e%l%{%1%}% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n% %2%'% %,% %'%P%a%r%e%n%t%'% %,% %p%a%n%e%l%{%2%}% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n% %3%'% %,% %'%P%a%r%e%n%t%'% %,% %p%a%n%e%l%{%3%}% %)%;%
%A%d%d% %t%h%e% %d%o%c%k%/%u%n%d%o%c%k% %c%a%l%l%b%a%c%k%
%W%e% %s%e%t% %e%a%c%h% %p%a%n%e%l% %t%o% %c%a%l%l% %t%h%e% %s%a%m%e% %d%o%c%k%/%u%n%d%o%c%k% %f%u%n%c%t%i%o%n%.% %T%h%i%s% %f%u%n%c%t%i%o%n% %i%s% %n%e%s%t%e%d% %i%n%s%i%d%e% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %s%o% %t%h%a%t% %i%t% %h%a%s% %a%c%c%e%s%s% %t%o% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n%'%s% %v%a%r%i%a%b%l%e%s%.% %A% %b%e%t%t%e%r% %w%a%y% %t%o% %d%o% %t%h%i%s% %i%s% %t%o% %m%a%k%e% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %i%n%t%o% %a% %c%l%a%s%s%,% %b%u%t% %t%h%i%s% %n%e%s%t%e%d%-%f%u%n%c%t%i%o%n% %a%p%p%r%o%a%c%h% %i%s% %f%i%n%e% %f%o%r% %s%i%m%p%l%e% %a%p%p%l%i%c%a%t%i%o%n%s%.%
%N%o%t%e% %t%h%a%t% %a%s% %s%o%o%n% %a%s% %w%e% %s%e%t% %t%h%e% %"%D%o%c%k%F%c%n%"% %p%r%o%p%e%r%t%y% %t%h%e% %D%o%c%k%/%U%n%d%o%c%k% %i%c%o%n% %a%p%p%e%a%r%s% %i%n% %t%h%e% %t%o%p%-%r%i%g%h%t% %o%f% %e%a%c%h% %p%a%n%e%l%.% %W%e% %u%s%e% %a% %c%e%l%l%-%a%r%r%a%y% %t%o% %p%a%s%s% %a%n% %e%x%t%r%a% %a%r%g%u%m%e%n%t%,% %t%h%e% %p%a%n%e%l% %n%u%m%b%e%r%,% %t%o% %t%h%e% %m%i%n%i%m%i%z%e% %f%u%n%c%t%i%o%n%.% %T%h%i%s% %e%x%t%r%a% %a%r%g%u%m%e%n%t% %a%p%p%e%a%r%s% %a%f%t%e%r% %t%h%e% %u%s%u%a%l% %e%v%e%n%t%S%o%u%r%c%e% %a%n%d% %e%v%e%n%t%D%a%t%a% %a%r%g%u%m%e%n%t%s%.%
%%% %S%e%t% %t%h%e% %d%o%c%k%/%u%n%d%o%c%k% %c%a%l%l%b%a%c%k%
%s%e%t% %(% %p%a%n%e%l%{%1%}%,% %'%D%o%c%k%F%c%n%'% %,% %{%@%n%D%o%c%k%,% %1%}% %)%;% %s%e%t% %(% %p%a%n%e%l%{%2%}%,% %'%D%o%c%k%F%c%n%'% %,% %{%@%n%D%o%c%k%,% %2%}% %)%;% %s%e%t% %(% %p%a%n%e%l%{%3%}%,% %'%D%o%c%k%F%c%n%'% %,% %{%@%n%D%o%c%k%,% %3%}% %)%;% %%%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%%%
%f%u%n%c%t%i%o%n% %n%D%o%c%k%(% %e%v%e%n%t%S%o%u%r%c%e%,% %e%v%e%n%t%D%a%t%a%,% %w%h%i%c%h%p%a%n%e%l% %)% %%% %S%e%t% %t%h%e% %f%l%a%g% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%.%I%s%D%o%c%k%e%d% %=% %~%p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%.%I%s%D%o%c%k%e%d%;% %i%f% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%.%I%s%D%o%c%k%e%d% %%% %P%u%t% %i%t% %b%a%c%k% %i%n%t%o% %t%h%e% %l%a%y%o%u%t% %n%e%w%f%i%g% %=% %g%e%t% %(% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%,% %'%P%a%r%e%n%t%'% %)%;% %s%e%t% %(% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %d%e%l%e%t%e% %(% %n%e%w%f%i%g% %)%;% %e%l%s%e% %%% %T%a%k%e% %i%t% %o%u%t% %o%f% %t%h%e% %l%a%y%o%u%t% %p%o%s% %=% %g%e%t%p%i%x%e%l%p%o%s%i%t%i%o%n% %(% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}% %)%;% %n%e%w%f%i%g% %=% %f%i%g%u%r%e% %(% %.%.%.% %'%N%a%m%e%'% %,% %g%e%t% %(% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%,% %'%T%i%t%l%e%'% %)%,% %.%.%.% %'%N%u%m%b%e%r%T%i%t%l%e%'% %,% %'%o%f%f%'% %,% %.%.%.% %'%M%e%n%u%B%a%r%'% %,% %'%n%o%n%e%'% %,% %.%.%.% %'%T%o%o%l%b%a%r%'% %,% %'%n%o%n%e%'% %,% %.%.%.% %'%C%l%o%s%e%R%e%q%u%e%s%t%F%c%n%'% %,% %{%@%n%D%o%c%k%,% %w%h%i%c%h%p%a%n%e%l%}% %)%;% %f%i%g%p%o%s% %=% %g%e%t% %(% %n%e%w%f%i%g%,% %'%P%o%s%i%t%i%o%n%'% %)%;% %s%e%t% %(% %n%e%w%f%i%g%,% %'%P%o%s%i%t%i%o%n%'% %,% %[%f%i%g%p%o%s%(%1%,%1%:%2%)%,% %p%o%s%(%1%,%3%:%4%)%]% %)%;% %s%e%t% %(% %p%{%w%h%i%c%h%p%a%n%e%l%}%,% %'%P%a%r%e%n%t%'% %,% %n%e%w%f%i%g%,% %.%.%.% %'%U%n%i%t%s%'% %,% %'%N%o%r%m%a%l%i%z%e%d%'% %,% %.%.%.% %'%P%o%s%i%t%i%o%n%'% %,% %[%0% %0% %1% %1%]% %)%;% %e%n%d% %e%n%d% %%% %n%D%o%c%k%
%A%d%d% %t%h%e% %c%l%o%s%e% %c%a%l%l%b%a%c%k%
%I%f% %t%h%e% %u%s%e%r% %c%l%o%s%e%s% %t%h%e% %m%a%i%n% %w%i%n%d%o%w% %w%e% %n%e%e%d% %t%o% %a%l%s%o% %c%l%o%s%e% %a%n%y% %o%t%h%e%r% %w%i%n%d%o%w%s% %t%h%a%t% %w%e%r%e% %c%r%e%a%t%e%d%.% %T%h%i%s% %c%a%n% %b%e% %d%o%n%e% %b%y% %f%i%n%d%i%n%g% %t%h%e% %w%i%n%d%o%w% %t%h%a%t% %c%o%n%t%a%i%n%s% %e%a%c%h% %p%a%n%e%l% %a%n%d% %d%e%l%e%t%i%n%g% %i%t%.%
%%%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%%%
%f%u%n%c%t%i%o%n% %n%C%l%o%s%e%A%l%l%(% %~%,% %~% %)% %f%o%r% %i%i%=%1%:% %n%u%m%e%l% %(% %p%a%n%e%l% %)% %i%f% %i%s%v%a%l%i%d% %(% %p%a%n%e%l%{%i%i%}% %)% %&%&% %~% %s%t%r%c%m%p%i% %(% %p%a%n%e%l%{%i%i%}%.%B%e%i%n%g%D%e%l%e%t%e%d%,% %'%o%n%'% %)% %f%i%g%h% %=% %a%n%c%e%s%t%o%r% %(% %p%a%n%e%l%{%i%i%}%,% %'%f%i%g%u%r%e%'% %)%;% %d%e%l%e%t%e% %(% %f%i%g%h% %)%;% %e%n%d% %e%n%d% %e%n%d% %%% %n%C%l%o%s%e%A%l%l% %e%n%d% %%% %M%a%i%n% %f%u%n%c%t%i%o%n%
%C%l%i%c%k% %t%h%e% %d%o%c%k% %b%u%t%t%o%n%s%
%U%n%d%o%c%k%i%n%g% %t%h%e% %m%i%d%d%l%e% %p%a%n%e%l% %c%a%u%s%e%s% %t%h%e% %o%t%h%e%r% %t%w%o% %t%o% %f%i%l%l% %t%h%e% %v%a%c%a%t%e%d% %s%p%a%c%e%.% %T%h%e% %u%n%d%o%c%k%e%d% %p%a%n%e%l% %a%p%p%e%a%r%s% %i%n% %i%t%s% %o%w%n% %w%i%n%d%o%w%,% %w%i%t%h% %t%h%e% %"%U%n%d%o%c%k%"% %i%c%o%n% %r%e%p%l%a%c%e%d% %b%y% %a% %"%D%o%c%k%"% %i%c%o%n%.%
%.%
%R%e%-%d%o%c%k%i%n%g% %t%h%e% %p%a%n%e%l% %w%o%u%l%d% %c%a%u%s%e% %i%t% %t%o% %b%e% %a%p%p%e%n%d%e%d% %t%o% %t%h%e% %r%i%g%h%t% %o%f% %t%h%e% %l%i%s%t% %i%n% %t%h%e% %o%r%i%g%i%n%a%l% %w%i%n%d%o%w%.% %C%l%o%s%i%n%g% %t%h%e% %m%a%i%n% %w%i%n%d%o%w% %c%a%u%s%e%s% %a%l%l% %p%a%n%e%l%s%,% %d%o%c%k%e%d% %o%r% %u%n%d%o%c%k%e%d%,% %a%n%d% %t%h%e%i%r% %e%n%c%l%o%s%i%n%g% %w%i%n%d%o%w%s% %t%o% %b%e% %c%l%o%s%e%d%.%
%M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e%
%[%T%o%p%]%
%U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%5%_%3%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%5%_%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s%%%%2%:% %P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s% %%%%U%s%e%r% %g%u%i%d%e%
%2%:% %P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s%
%U%n%l%i%k%e% %o%t%h%e%r% %M%A%T%L%A%B% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%,% %a%x%e%s% %h%a%v%e% %t%w%o% %p%o%s%i%t%i%o%n% %p%r%o%p%e%r%t%i%e%s%:% %"%P%o%s%i%t%i%o%n%"% %a%n%d% %"%O%u%t%e%r%P%o%s%i%t%i%o%n%"%.% %T%h%i%s% %m%e%a%n%s% %o%n%e% %h%a%s% %s%o%m%e% %e%x%t%r%a% %o%p%t%i%o%n%s% %a%s% %t%o% %h%o%w% %t%h%e% %l%a%y%o%u%t% %w%i%l%l% %a%r%r%a%n%g%e% %t%h%e% %a%x%e%s%.%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%2%.%1%.% %P%o%s%i%t%i%o%n% %v%s% %O%u%t%e%r%P%o%s%i%t%i%o%n%
%2%.%2%.% %A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s%
%W%h%y% %u%s%e% %l%a%y%o%u%t%s%?%
%[%T%o%p%]%
%P%o%s%i%t%i%o%n% %v%s% %O%u%t%e%r%P%o%s%i%t%i%o%n%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%W%h%y% %u%s%e% %l%a%y%o%u%t%s%?%%%%1%.%5%:% %W%h%y% %u%s%e% %l%a%y%o%u%t%s%?% %%%%U%s%e%r% %g%u%i%d%e%
%1%.%5%:% %W%h%y% %u%s%e% %l%a%y%o%u%t%s%?%
%M%A%T%L%A%B% %s%h%i%p%s% %w%i%t%h% %a% %G%U%I% %d%e%s%i%g%n% %t%o%o%l% %c%a%l%l%e%d% %G%U%I%D%E% %.% %T%h%i%s% %d%o%e%s%n%'%t% %u%s%e% %l%a%y%o%u%t%s%,% %b%u%t% %f%o%r%c%e%s% %u%s%e%r%s% %t%o% %m%a%n%u%a%l%l%y% %p%o%s%i%t%i%o%n% %e%a%c%h% %e%l%e%m%e%n%t%.% %T%h%i%s% %a%p%p%r%o%a%c%h% %i%s% %a% %m%u%c%h% %f%a%s%t%e%r% %w%a%y% %t%o% %b%u%i%l%d% %s%i%m%p%l%e% %u%s%e%r%-%i%n%t%e%r%f%a%c%e%s%,% %s%o% %w%h%y% %w%o%u%l%d% %y%o%u% %w%a%n%t% %t%o% %u%s%e% %l%a%y%o%u%t%s%?%
%T%h%e% %o%v%e%r%-%r%i%d%i%n%g% %r%e%a%s%o%n% %f%o%r% %u%s%i%n%g% %l%a%y%o%u%t%s% %o%r% %l%a%y%o%u%t% %m%a%n%a%g%e%r%s% %i%s% %t%o% %g%a%i%n% %c%o%n%t%r%o%l% %o%f% %t%h%e% %r%e%s%i%z%i%n%g% %b%e%h%a%v%i%o%u%r% %o%f% %t%h%e% %i%n%t%e%r%f%a%c%e% %w%i%t%h%o%u%t% %h%a%v%i%n%g% %t%o% %w%r%i%t%e% %a% %c%o%m%p%l%e%x% %"%R%e%s%i%z%e%F%c%n%"%.% %I%f% %y%o%u% %s%i%m%p%l%y% %p%o%s%i%t%i%o%n% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %e%l%e%m%e%n%t%s% %d%i%r%e%c%t%l%y% %(%e%i%t%h%e%r% %u%s%i%n%g% %G%U%I%D%E% %o%r% %p%r%o%g%r%a%m%m%a%t%i%c%a%l%l%y%)%,% %y%o%u% %h%a%v%e% %t%w%o% %c%h%o%i%c%e%s% %a%b%o%u%t% %w%h%a%t% %h%a%p%p%e%n%s% %w%h%e%n% %t%h%e% %w%i%n%d%o%w% %r%e%s%i%z%e%s%:%
%F%o%r% %e%x%a%m%p%l%e%:%
%1%.% %T%h%e% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %s%c%a%l%e% %w%i%t%h% %t%h%e% %w%i%n%d%o%w% %(%n%o%r%m%a%l%i%s%e%d% %u%n%i%t%s%)%
%W%e% %d%i%d%n%'%t% %r%e%a%l%l%y% %w%a%n%t% %t%h%e% %b%u%t%t%o%n%s% %t%o% %g%r%o%w% %b%u%t% %e%v%e%r%y%t%h%i%n%g% %r%e%s%i%z%e%s% %i%n% %p%r%o%p%o%r%t%i%o%n%.%
%f% %=% %f%i%g%u%r%e% %(% %'%P%o%s%i%t%i%o%n%'%,% %2%0%0%*%o%n%e%s%(%1%,%4%)% %)%;% %a%x%e%s% %(% %'%P%a%r%e%n%t%'%,% %f%,% %.%.%.% %'%U%n%i%t%s%'%,% %'%N%o%r%m%a%l%i%z%e%d%'%,% %.%.%.% %'%O%u%t%e%r%P%o%s%i%t%i%o%n%'%,% %[%0%.%0%2% %0%.%2% %0%.%9%6% %0%.%8%]% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %f%,% %.%.%.% %'%U%n%i%t%s%'%,% %'%N%o%r%m%a%l%i%z%e%d%'%,% %.%.%.% %'%P%o%s%i%t%i%o%n%'%,% %[%0%.%0%2% %0%.%0%2% %0%.%4%6% %0%.%1%6%]%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %f%,% %.%.%.% %'%U%n%i%t%s%'%,% %'%N%o%r%m%a%l%i%z%e%d%'%,% %.%.%.% %'%P%o%s%i%t%i%o%n%'%,% %[%0%.%5%2% %0%.%0%2% %0%.%4%6% %0%.%1%6%]%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'% %)%;%
%.%
%2%.% %T%h%e% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %s%t%a%y% %f%i%x%e%d% %a%n%d% %t%h%e% %w%i%n%d%o%w% %r%e%s%i%z%e% %c%r%e%a%t%e%s% %e%m%p%t%y% %s%p%a%c%e% %(%p%i%x%e%l% %u%n%i%t%s%)%
%A%l%t%h%o%u%g%h% %t%h%e% %b%u%t%t%o%n%s% %d%o%n%'%t% %n%o%w% %g%r%o%w%,% %n%e%i%t%h%e%r% %d%o%e%s% %t%h%e% %a%x%e%s%,% %w%h%i%c%h% %l%o%o%k%s% %v%e%r%y% %o%d%d%.%
%f% %=% %f%i%g%u%r%e% %(% %'%P%o%s%i%t%i%o%n%'%,% %2%0%0%*%o%n%e%s%(%1%,%4%)% %)%;% %a%x%e%s% %(% %'%P%a%r%e%n%t%'%,% %f%,% %.%.%.% %'%U%n%i%t%s%'%,% %'%P%i%x%e%l%s%'%,% %.%.%.% %'%O%u%t%e%r%P%o%s%i%t%i%o%n%'%,% %[%1%0% %3%5% %1%9%0% %1%7%5%]% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %f%,% %.%.%.% %'%U%n%i%t%s%'%,% %'%P%i%x%e%l%s%'%,% %.%.%.% %'%P%o%s%i%t%i%o%n%'%,% %[%5% %5% %9%0% %2%5%]%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %f%,% %.%.%.% %'%U%n%i%t%s%'%,% %'%P%i%x%e%l%s%'%,% %.%.%.% %'%P%o%s%i%t%i%o%n%'%,% %[%1%0%5% %5% %9%0% %2%5%]%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'% %)%;%
%.%
%N%e%i%t%h%e%r% %o%f% %t%h%e%s%e% %a%l%t%e%r%n%a%t%i%v%e%s% %i%s% %p%a%r%t%i%c%u%l%a%r%l%y% %u%s%e%f%u%l% %f%o%r% %a% %s%e%r%i%o%u%s% %u%s%e%r%-%i%n%t%e%r%f%a%c%e%.% %T%y%p%i%c%a%l%l%y% %t%h%e%r%e% %a%r%e% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %t%h%a%t% %s%h%o%u%l%d% %b%e% %f%i%x%e%d% %s%i%z%e%:% %i%c%o%n%s%,% %b%u%t%t%o%n%s%,% %s%e%l%e%c%t%o%r%s% %e%t%c%;% %a%n%d% %o%t%h%e%r%s% %t%h%a%t% %s%h%o%u%l%d% %r%e%s%i%z%e% %w%i%t%h% %t%h%e% %w%i%n%d%o%w%:% %g%r%a%p%h%s%,% %i%m%a%g%e%s%,% %p%r%o%s%e% %t%e%x%t% %e%t%c%.% %T%o% %a%c%h%i%e%v%e% %t%h%i%s% %o%n%e% %n%e%e%d%s% %t%o% %b%e% %a%b%l%e% %t%o% %s%p%e%c%i%f%y% %w%h%i%c%h% %i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %s%h%o%u%l%d% %b%e% %f%i%x%e%d% %s%i%z%e% %a%n%d% %w%h%i%c%h% %v%a%r%i%a%b%l%e%.% %O%v%e%r% %t%h%e% %l%a%s%t% %t%w%o% %d%e%c%a%d%e%s%,% %l%a%y%o%u%t%s% %h%a%v%e% %b%e%e%n% %s%h%o%w%n% %t%o% %b%e% %t%h%e% %m%e%t%h%o%d% %o%f% %c%h%o%i%c%e% %f%o%r% %a%c%h%i%e%v%i%n%g% %t%h%i%s%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%U%s%i%n%g% %l%a%y%o%u%t%s%,% %s%o%m%e% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s% %s%c%a%l%e% %w%i%t%h% %t%h%e% %w%i%n%d%o%w%,% %o%t%h%e%r%s% %s%t%a%y% %f%i%x%e%d%
%f% %=% %f%i%g%u%r%e% %(% %'%P%o%s%i%t%i%o%n%'%,% %2%0%0%*%o%n%e%s%(%1%,%4%)% %)%;% %v%b%o%x% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;% %a%x%e%s%(% %'%P%a%r%e%n%t%'%,% %v%b%o%x% %)%;% %h%b%o%x% %=% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %v%b%o%x%,% %'%P%a%d%d%i%n%g%'%,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %h%b%o%x%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %h%b%o%x%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'% %)%;% %s%e%t%(% %v%b%o%x%,% %'%S%i%z%e%s%'%,% %[%-%1% %3%5%]% %)%
%.%
%L%a%y%o%u%t% %h%e%i%r%a%r%c%h%i%e%s%
%[%T%o%p%]%
%P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%1%_%5%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%1%_%5%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%V%B%o%x%%%%2%.%2%:% %u%i%e%x%t%r%a%s%.%V%B%o%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%2%.%2%:% %u%i%e%x%t%r%a%s%.%V%B%o%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %v%e%r%t%i%c%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %c%o%l%u%m%n%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %v%e%r%t%i%c%a%l% %b%o%x% %l%a%y%o%u%t% %w%i%t%h% %a%l%l% %p%r%o%p%e%r%t%i%e%s% %s%e%t% %t%o% %d%e%f%a%u%l%t%s%.% %T%h%e% %o%u%t%p%u%t% %i%s% %a% %n%e%w% %l%a%y%o%u%t% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %a%s% %t%h%e% %p%a%r%e%n%t% %f%o%r% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%V%B%o%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%M%i%n%i%m%u%m%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %m%i%n%i%m%u%m% %s%i%z%e% %i%n% %p%i%x%e%l%s% %f%o%r% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)% %s%e%t% %(% %b%,% %'%S%i%z%e%s%'% %,% %[%-%1% %1%0%0% %-%2%]%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;%
%f% %=% %f%i%g%u%r%e% %(%)%;% %b%1% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%1%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %b%2% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %b%1%,% %'%P%a%d%d%i%n%g%'% %,% %5%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%2%,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n%1%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%2%,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n%2%'% %)% %s%e%t% %(% %b%1%,% %'%S%i%z%e%s%'% %,% %[%3%0% %-%1%]% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %v%e%r%t%i%c%a%l% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%H%B%o%x%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%2%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%%%%2%.%4%:% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%2%.%4%:% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %v%e%r%t%i%c%a%l%l%y% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %v%e%r%t%i%c%a%l% %b%o%x% %l%a%y%o%u%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s% %a%n%d% %w%i%t%h% %a%l%l% %p%r%o%p%e%r%t%i%e%s% %s%e%t% %t%o% %d%e%f%a%u%l%t%s%.% %T%h%e% %o%u%t%p%u%t% %i%s% %a% %n%e%w% %l%a%y%o%u%t% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %a%s% %t%h%e% %p%a%r%e%n%t% %f%o%r% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s% %f%r%o%m% %t%h%e% %l%i%s%t% %b%e%l%o%w%.%
%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%M%i%n%i%m%u%m%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %m%i%n%i%m%u%m% %s%i%z%e% %i%n% %p%i%x%e%l%s% %f%o%r% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%h%o%w%M%a%r%k%i%n%g%s%
%[% %o%n% %|% %o%f%f% %]%
%S%h%o%w% %m%a%r%k%i%n%g%s% %o%n% %t%h%e% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s% %(%d%e%f%a%u%l%t% %'%o%n%'%)%.%
%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'% %,% %'%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %e%x%a%m%p%l%e%'% %)%;% %b% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%y%'% %)% %s%e%t% %(% %b%,% %'%S%i%z%e%s%'% %,% %[%-%1% %1%0%0% %-%2% %-%1%]%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%V%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %v%e%r%t%i%c%a%l% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%4%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%P%a%n%e%l%%%%1%.%1%:% %u%i%e%x%t%r%a%s%.%P%a%n%e%l% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%1%.%1%:% %u%i%e%x%t%r%a%s%.%P%a%n%e%l%
%A%r%r%a%n%g%e% %a% %s%i%n%g%l%e% %e%l%e%m%e%n%t% %i%n%s%i%d%e% %a% %s%t%a%n%d%a%r%d% %p%a%n%e%l%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%P%a%n%e%l%(% %)% %c%r%e%a%t%e%s% %a% %s%t%a%n%d%a%r%d% %u%i%p%a%n%e%l% %o%b%j%e%c%t% %b%u%t% %w%i%t%h% %a%u%t%o%m%a%t%i%c% %m%a%n%a%g%e%m%e%n%t% %o%f% %t%h%e% %c%o%n%t%a%i%n%e%d% %w%i%d%g%e%t% %o%r% %l%a%y%o%u%t%.% %T%h%e% %p%r%o%p%e%r%t%i%e%s% %a%v%a%i%l%a%b%l%e% %a%r%e% %l%a%r%g%e%l%y% %t%h%e% %s%a%m%e% %a%s% %t%h%e% %b%u%i%l%t%i%n% %u%i%p%a%n%e%l% %o%b%j%e%c%t%.% %W%h%e%r%e% %m%o%r%e% %t%h%a%n% %o%n%e% %c%h%i%l%d% %i%s% %a%d%d%e%d%,% %t%h%e% %c%u%r%r%e%n%t%l%y% %v%i%s%i%b%l%e% %c%h%i%l%d% %i%s% %d%e%t%e%r%m%i%n%e%d% %u%s%i%n%g% %t%h%e% %S%e%l%e%c%t%e%d%C%h%i%l%d% %p%r%o%p%e%r%t%y%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%P%a%n%e%l%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%B%o%r%d%e%r%T%y%p%e%
%[% %n%o%n%e% %|% %e%t%c%h%e%d%i%n% %|% %e%t%c%h%e%d%o%u%t% %|% %b%e%v%e%l%e%d%i%n% %|% %b%e%v%e%l%e%d%o%u%t% %|% %l%i%n%e% %]%
%T%y%p%e% %o%f% %b%o%r%d%e%r% %a%r%o%u%n%d% %t%h%e% %u%i%p%a%n%e%l% %a%r%e%a%.%
%B%o%r%d%e%r%W%i%d%t%h%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%W%i%d%t%h% %o%f% %t%h%e% %p%a%n%e%l% %b%o%r%d%e%r%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%F%o%n%t%A%n%g%l%e%
%[% %n%o%r%m%a%l% %|% %i%t%a%l%i%c% %|% %o%b%l%i%q%u%e% %]%
%T%i%t%l%e% %f%o%n%t% %a%n%g%l%e%.%
%F%o%n%t%N%a%m%e%
%s%t%r%i%n%g%
%T%i%t%l%e% %f%o%n%t% %n%a%m%e% %(%e%.%g%.% %A%r%i%a%l%,% %H%e%l%v%e%t%i%c%a% %e%t%c%)%.%
%F%o%n%t%S%i%z%e%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%T%i%t%l%e% %f%o%n%t% %s%i%z%e%.%
%F%o%n%t%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %]%
%T%i%t%l%e% %f%o%n%t% %u%n%i%t%s% %f%o%r% %m%e%a%s%u%r%i%n%g% %s%i%z%e%.%
%F%o%n%t%W%e%i%g%h%t%
%[% %l%i%g%h%t% %|% %n%o%r%m%a%l% %|% %d%e%m%i% %|% %b%o%l%d% %]%
%T%i%t%l%e% %f%o%n%t% %w%e%i%g%h%t%.%
%F%o%r%e%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%i%t%l%e% %f%o%n%t% %c%o%l%o%r% %a%n%d%/%o%r% %c%o%l%o%r% %o%f% %2%-%D% %b%o%r%d%e%r% %l%i%n%e%.%
%H%i%g%h%l%i%g%h%t%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%3%-%D% %f%r%a%m%e% %h%i%g%h%l%i%g%h%t% %c%o%l%o%r%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%e%l%e%c%t%e%d%C%h%i%l%d%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r% %o%r% %e%m%p%t%y%
%W%h%i%c%h% %c%h%i%l%d% %i%s% %v%i%s%i%b%l%e%.%
%S%h%a%d%o%w%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%3%-%D% %f%r%a%m%e% %s%h%a%d%o%w% %c%o%l%o%r%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%i%t%l%e%
%s%t%r%i%n%g%
%T%i%t%l%e% %s%t%r%i%n%g%.%
%T%i%t%l%e%P%o%s%i%t%i%o%n%
%[% %l%e%f%t%t%o%p% %|% %c%e%n%t%e%r%t%o%p% %|% %r%i%g%h%t%t%o%p% %|% %l%e%f%t%b%o%t%t%o%m% %|% %c%e%n%t%e%r%b%o%t%t%o%m% %|% %r%i%g%h%t%b%o%t%t%o%m% %]%
%L%o%c%a%t%i%o%n% %o%f% %t%i%t%l%e% %s%t%r%i%n%g% %i%n% %r%e%l%a%t%i%o%n% %t%o% %t%h%e% %p%a%n%e%l%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %p% %=% %u%i%e%x%t%r%a%s%.%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%T%i%t%l%e%'% %,% %'%A% %P%a%n%e%l%'% %,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)%
%f% %=% %f%i%g%u%r%e% %(%)%;% %p% %=% %u%i%e%x%t%r%a%s%.%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%T%i%t%l%e%'% %,% %'%A% %P%a%n%e%l%'% %,% %'%T%i%t%l%e%P%o%s%i%t%i%o%n%'% %,% %'%C%e%n%t%e%r%T%o%p%'%)%;% %b% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%S%p%a%c%i%n%g%'% %,% %5%,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'%,% %'%l%i%s%t%b%o%x%'%,% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %{% %'%I%t%e%m% %1%'% %,% %'%I%t%e%m% %2%'% %}% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)%;% %s%e%t% %(% %b%,% %'%S%i%z%e%s%'% %,% %[%1%0%0% %-%1%]% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %m%o%r%e% %b%o%x%y% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %-% %f%o%r% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %f%o%r% %s%e%l%e%c%t%i%n%g% %t%h%e% %v%i%s%i%b%l%e% %c%h%i%l%d%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h%i%n% %a% %p%a%n%e%l%
%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%1%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?%%%"%1%:% %W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?% %%%%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%1%:% %W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?%
%T%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %p%r%o%v%i%d%e%s% %a% %p%a%c%k%a%g%e% %o%f% %M%A%T%L%A%B% %o%b%j%e%c%t%s% %t%h%a%t% %a%l%l%o%w% %f%o%r% %c%o%m%p%l%e%x% %a%r%r%a%n%g%e%m%e%n%t% %o%f% %g%r%a%p%h%i%c%a%l% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %e%l%e%m%e%n%t%s% %w%i%t%h%i%n% %a% %f%i%g%u%r%e% %w%i%n%d%o%w%.% %T%h%e% %m%a%i%n% %c%a%p%a%b%i%l%i%t%i%e%s% %p%r%o%v%i%d%e%d% %a%r%e%:%
%A%u%t%o%m%a%t%i%c% %e%l%e%m%e%n%t% %a%r%r%a%n%g%e%m%e%n%t% %h%o%r%i%z%o%n%t%a%l%l%y%,% %v%e%r%t%i%c%a%l%l%y% %o%r% %i%n% %g%r%i%d%s%
%A%b%i%l%i%t%y% %t%o% %s%p%e%c%i%f%y% %f%i%x%e%d% %s%i%z%e%s% %o%r% %r%e%s%i%z%i%n%g% %w%e%i%g%h%t%s% %f%o%r% %e%a%c%h% %e%l%e%m%e%n%t%
%A%b%i%l%i%t%y% %t%o% %"%n%e%s%t%"% %l%a%y%o%u%t%s% %t%o% %p%r%o%d%u%c%e% %v%i%r%t%u%a%l%l%y% %a%n%y% %e%l%e%m%e%n%t% %a%r%r%a%n%g%e%m%e%n%t%
%D%i%v%i%d%e%r% %b%a%r%s% %f%o%r% %u%s%e%r%-%r%e%s%i%z%i%n%g% %o%f% %e%l%e%m%e%n%t%s%
%T%h%e%s%e% %e%l%e%m%e%n%t% %a%r%r%a%n%g%e%m%e%n%t% %c%a%p%a%b%i%l%i%t%i%e%s% %a%r%e% %d%e%s%i%g%n%e%d% %t%o% %m%a%t%c%h% %t%h%o%s%e% %f%o%u%n%d% %a%s% %s%t%a%n%d%a%r%d% %i%n% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %t%o%o%l%k%i%t%s% %s%u%c%h% %a%s% %J%a%v%a% %S%w%i%n%g%,% %G%T%K%,% %Q%T% %e%t%c%.%
%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%[%T%o%p%]%
%R%e%l%e%a%s%e% %N%o%t%e%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%1%.%h%t%m%l%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%A%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%%%%5%:% %A%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s% %%%%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%5%:% %A%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%
%T%h%i%s% %t%o%o%l%b%o%x% %h%a%s% %b%e%e%n% %e%v%o%l%v%i%n%g% %f%o%r% %s%e%v%e%r%a%l% %y%e%a%r%s% %a%n%d% %i%s% %b%a%s%e%d% %o%n% %t%h%e% %w%o%r%k% %o%f% %m%a%n%y% %e%n%g%i%n%e%e%r%i%n%g% %c%o%n%s%u%l%t%a%n%t%s% %a%t% %M%a%t%h%W%o%r%k%s%,% %i%n%c%l%u%d%i%n%g% %(%b%u%t% %n%o%t% %l%i%m%i%t%e%d% %t%o%)%:%
%B%e%n% %T%o%r%d%o%f%f%
%D%a%v%i%d% %S%a%m%p%s%o%n%
%P%a%u%l% %K%e%r%r%-%D%e%l%w%o%r%t%h%
%M%a%l%c%o%l%m% %W%o%o%d%
%B%r%a%d% %P%h%e%l%a%n%
%M%a%n%y% %t%h%a%n%k%s% %t%o% %t%h%o%s%e% %w%h%o% %h%a%v%e% %s%h%a%r%e%d% %t%h%e%i%r% %c%o%d%e% %a%n%d% %e%x%p%e%r%t%i%s%e% %o%v%e%r% %t%h%e% %y%e%a%r%s%.%
%S%u%p%p%o%r%t%
%[%T%o%p%]%
%F%r%o%n%t% %p%a%g%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s% %>%% %%0%% %%0%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%5%.%h%t%m%l%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%5%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%T%y%p%e%s% %o%f% %l%a%y%o%u%t%%%%1%.%2%:% %T%y%p%e%s% %o%f% %l%a%y%o%u%t% %%%%U%s%e%r% %g%u%i%d%e%
%1%.%2%:% %T%y%p%e%s% %o%f% %l%a%y%o%u%t%
%T%h%e% %l%a%y%o%u%t%s% %i%n% %t%h%i%s% %t%o%o%l%b%o%x% %c%o%m%e% %i%n% %t%h%r%e%e% %f%o%r%m%s%:%
%P%a%n%e%l%s%:% %s%h%o%w% %a% %s%i%n%g%l%e% %c%h%i%l%d% %e%l%e%m%e%n%t% %w%i%t%h% %s%o%m%e% %d%e%c%o%r%a%t%i%o%n%.% %O%t%h%e%r% %c%h%i%l%d%r%e%n% %o%f% %t%h%e% %l%a%y%o%u%t% %a%r%e% %h%i%d%d%e%n% %f%r%o%m% %v%i%e%w%.% %T%h%e% %v%i%s%i%b%l%e% %c%h%i%l%d% %c%a%n% %b%e% %s%w%i%t%c%h%e%d%.% %A%v%a%i%l%a%b%l%e% %p%a%n%e%l%s% %i%n%c%l%u%d%e% %P%a%n%e%l%,% %C%a%r%d%P%a%n%e%l%,% %B%o%x%P%a%n%e%l% %a%n%d% %T%a%b%P%a%n%e%l%.%
%B%o%x%e%s%:% %a%r%r%a%n%g%e% %c%h%i%l%d%r%e%n% %l%i%n%e%a%r%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w% %o%r% %c%o%l%u%m%n%.% %A%v%a%i%l%a%b%l%e% %b%o%x%e%s% %i%n%c%l%u%d%e% %H%B%o%x%,% %V%B%o%x%,% %H%B%o%x%F%l%e%x% %a%n%d% %V%B%o%x%F%l%e%x%.%
%G%r%i%d%s%:% %(%a%l%s%o% %k%n%o%w%n% %a%s% %t%a%b%l%e%s%)% %a%r%r%a%n%g%e% %c%h%i%l%d%r%e%n% %i%n% %a% %t%w%o%-%d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d%.% %A%v%a%i%l%a%b%l%e% %g%r%i%d%s% %i%n%c%l%u%d%e% %G%r%i%d% %a%n%d% %G%r%i%d%F%l%e%x%.%
%L%a%y%o%u%t% %b%a%s%i%c%s%
%[%T%o%p%]%
%S%i%z%e%s% %a%n%d% %u%n%i%t%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%1%_%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%1%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%
%U%s%e%r% %g%u%i%d%e%%%
%U%s%e%r% %g%u%i%d%e% %%%%G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %1%.%1%7%
%U%s%e%r% %g%u%i%d%e%
%T%h%i%s% %c%h%a%p%t%e%r% %d%e%s%c%r%i%b%e%s% %t%h%e% %p%u%r%p%o%s%e% %a%n%d% %o%v%e%r%a%l%l% %d%e%s%i%g%n% %o%f% %t%h%e% %l%a%y%o%u%t% %t%o%o%l%s% %t%h%a%t% %t%h%e% %t%o%o%l%b%o%x% %p%r%o%v%i%d%e%s%.% %I%t% %a%l%s%o% %p%r%o%v%i%d%e%s% %s%o%m%e% %e%x%a%m%p%l%e%s% %o%f% %c%r%e%a%t%i%n%g% %s%o%m%e% %u%s%e%r% %i%n%t%e%r%f%a%c%e%s% %u%s%i%n%g% %l%a%y%o%u%t%s%.%
%C%o%n%t%e%n%t%s%
%1%.% %U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s%
%2%.% %P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s%
%3%.% %E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%
%4%.% %U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s%
%5%.% %A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s%
%6%.% %U%s%i%n%g% %l%a%y%o%u%t%s% %i%n%s%i%d%e% %G%U%I%D%E% %G%U%I%s%
%7%.% %D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r%
%8%.% %A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e%
%F%r%o%n%t% %p%a%g%e%
%[%T%o%p%]%
%U%n%d%e%r%s%t%a%n%d%i%n%g% %l%a%y%o%u%t%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e%%%%8%:% %A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e% %%%%U%s%e%r% %g%u%i%d%e%
%8%:% %A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e%
%T%h%e% %f%o%l%l%o%w%i%n%g% %e%x%a%m%p%l%e% %a%p%p%l%i%c%a%t%i%o%n% %u%s%e%s% %m%a%n%y% %o%f% %t%h%e% %l%a%y%o%u%t% %f%e%a%t%u%r%e%s% %d%i%s%c%u%s%s%e%d% %a%b%o%v%e% %i%n% %o%r%d%e%r% %t%o% %c%r%e%a%t%e% %a% %g%o%o%d%-%l%o%o%k%i%n%g% %u%s%e%r% %i%n%t%e%r%f%a%c%e% %t%h%a%t% %s%c%a%l%e%s% %w%e%l%l% %w%h%e%n% %r%e%s%i%z%e%d%.% %I%t% %i%s% %n%o%t% %d%e%s%i%g%n%e%d% %t%o% %s%h%o%w%c%a%s%e% %a%l%l% %t%h%e% %l%a%y%o%u%t% %f%u%n%c%t%i%o%n%a%l%i%t%y%,% %b%u%t% %s%h%o%w%s% %h%o%w% %c%a%l%l%b%a%c%k%s% %a%r%e% %a%d%d%e%d% %t%o% %p%r%o%v%i%d%e% %u%s%e%r% %i%n%t%e%r%a%c%t%i%o%n%.% %I%t% %a%l%s%o% %e%x%e%m%p%l%i%f%i%e%s% %s%e%p%a%r%a%t%i%n%g% %t%h%e% %d%a%t%a% %f%r%o%m% %t%h%e% %G%U%I%,% %a% %f%u%n%d%a%m%e%n%t%a%l% %p%a%r%t% %o%f% %c%r%e%a%t%i%n%g% %m%o%d%u%l%a%r% %a%n%d% %m%a%i%n%t%a%i%n%a%b%l%e% %a%p%p%l%i%c%a%t%i%o%n%s%.%
%T%h%e% %f%u%l%l% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:%
%V%i%e%w% %d%e%m%o%B%r%o%w%s%e%r%.%m%
%E%d%i%t% %d%e%m%o%B%r%o%w%s%e%r%.%m%
%R%u%n% %d%e%m%o%B%r%o%w%s%e%r%.%m%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%8%.%1%.% %A%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e%
%8%.%2%.% %c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%
%8%.%3%.% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%
%8%.%4%.% %o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%
%8%.%5%.% %R%u%n%n%i%n%g% %i%t%
%8%.%6%.% %S%c%a%l%a%b%i%l%i%t%y%
%D%e%p%l%o%y%i%n%g% %G%U%I%s% %u%s%i%n%g% %t%h%e% %M%A%T%L%A%B% %C%o%m%p%i%l%e%r%
%[%T%o%p%]%
%A%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%L%a%y%o%u%t% %h%e%i%r%a%r%c%h%i%e%s%%%%1%.%4%:% %L%a%y%o%u%t% %h%e%i%r%a%r%c%h%i%e%s% %%%%U%s%e%r% %g%u%i%d%e%
%1%.%4%:% %L%a%y%o%u%t% %h%e%i%r%a%r%c%h%i%e%s%
%C%o%n%s%i%d%e%r% %t%h%e% %f%o%l%l%o%w%i%n%g% %s%i%m%p%l%e% %i%n%t%e%r%f%a%c%e%:%
%I%n%s%t%e%a%d% %o%f% %t%h%i%n%k%i%n%g% %o%f% %t%h%i%s% %i%n% %t%e%r%m%s% %o%f% %t%h%r%e%e% %e%l%e%m%e%n%t%s% %t%h%a%t% %n%e%e%d% %p%o%s%i%t%i%o%n%i%n%g%,% %w%e% %c%a%n% %b%r%e%a%k% %i%t% %u%p% %i%n%t%o% %t%w%o% %s%i%m%p%l%e% %l%i%n%e%a%r% %(%"%b%o%x%"%)% %a%r%r%a%n%g%e%m%e%n%t%s%:% %a% %v%e%r%t%i%c%a%l% %b%o%x% %w%i%t%h% %t%h%e% %a%x%e%s% %a%t% %t%h%e% %t%o%p% %a%n%d% %a% %c%o%n%t%r%o%l% %a%r%e%a% %a%t% %t%h%e% %b%o%t%t%o%m% %a%n%d% %a% %h%o%r%i%z%o%n%t%a%l% %b%o%x% %c%o%n%t%a%i%n%i%n%g% %t%w%o% %b%u%t%t%o%n%s%:%
%.%
%B%y% %p%l%a%c%i%n%g% %t%h%e% %s%e%c%o%n%d% %l%a%y%o%u%t% %(%h%o%r%i%z%o%n%t%a%l% %b%o%x%)% %i%n%s%i%d%e% %t%h%e% %f%i%r%s%t% %(%v%e%r%t%i%c%a%l% %b%o%x%)% %w%e% %a%r%r%i%v%e% %a%t% %t%h%e% %c%o%m%p%l%e%t%e% %l%a%y%o%u%t%.% %S%i%n%c%e% %t%h%e% %s%i%z%e%s% %o%f% %t%h%e% %e%l%e%m%e%n%t%s% %i%n% %e%a%c%h% %l%i%s%t% %c%a%n% %b%e% %s%e%t% %t%o% %b%e% %f%i%x%e%d% %o%r% %f%l%e%x%i%b%l%e% %w%e% %c%a%n% %a%c%h%i%e%v%e% %a% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %t%h%a%t% %i%s% %n%o%t% %j%u%s%t% %a%r%r%a%n%g%e%d% %c%o%r%r%e%c%t%l%y% %w%h%e%n% %c%r%e%a%t%e%d%,% %b%u%t% %a%l%s%o% %b%e%h%a%v%e%s% %w%e%l%l% %w%h%e%n% %r%e%s%i%z%e%d%.%
%N%o%t%e% %t%h%a%t% %t%h%e% %b%u%t%t%o%n%s% %h%a%v%e% %s%t%a%y%e%d% %f%i%x%e%d% %h%e%i%g%h%t% %a%s% %t%h%e% %w%i%n%d%o%w% %g%r%o%w%s% %a%n%d% %t%h%e% %a%x%e%s% %g%r%o%w% %t%o% %f%i%l%l% %t%h%e% %r%e%m%a%i%n%i%n%g% %s%p%a%c%e%.%
%1%.%4%.%1%:% %C%o%d%e%:%
%T%h%e% %e%x%a%m%p%l%e% %a%b%o%v%e% %c%a%n% %b%e% %c%r%e%a%t%e%d% %p%r%o%g%r%a%m%m%i%c%a%l%l%y% %p%r%e%t%t%y% %m%u%c%h% %a%s% %d%e%s%c%r%i%b%e%d% %i%n% %t%e%x%t% %(%t%h%e% %c%o%m%p%l%e%t%e%d% %e%x%a%m%p%l%e% %c%o%d%e% %i%s% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%1%.% %O%p%e%n% %a% %w%i%n%d%o%w%
%f% %=% %f%i%g%u%r%e% %(% %'%P%o%s%i%t%i%o%n%'%,% %2%0%0%*%o%n%e%s%(%1%,%4%)% %)%;%
%2%.% %C%r%e%a%t%e% %t%h%e% %f%i%r%s%t% %l%a%y%o%u%t% %(%v%e%r%t%i%c%a%l% %b%o%x%)%
%I%n%s%i%d%e% %t%h%i%s% %v%e%r%t%i%c%a%l% %b%o%x% %w%e% %p%l%a%c%e% %t%h%e% %a%x%e%s%
%v%b%o%x% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;% %a%x%e%s%(% %'%P%a%r%e%n%t%'%,% %v%b%o%x% %)%;%
%3%.% %C%r%e%a%t%e% %t%h%e% %s%e%c%o%n%d% %l%a%y%o%u%t% %(%h%o%r%i%z%o%n%t%a%l% %b%o%x%)%
%I%n%s%i%d%e% %t%h%i%s% %h%o%r%i%z%o%n%t%a%l% %b%o%x% %w%e% %p%l%a%c%e% %t%w%o% %b%u%t%t%o%n%s%
%h%b%o%x% %=% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %v%b%o%x%,% %'%P%a%d%d%i%n%g%'%,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %h%b%o%x%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %h%b%o%x%,% %.%.%.% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'% %)%;%
%4%.% %S%e%t% %t%h%e% %s%i%z%e%s%
%W%e% %w%a%n%t% %t%h%e% %a%x%e%s% %t%o% %g%r%o%w% %w%i%t%h% %t%h%e% %w%i%n%d%o%w% %s%o% %s%e%t% %t%h%e% %f%i%r%s%t% %s%i%z%e% %t%o% %b%e% %-%1% %(%w%h%i%c%h% %m%e%a%n%s% %v%a%r%i%a%b%l%e% %s%i%z%e% %w%i%t%h% %w%i%e%g%h%t% %1%)% %a%n%d% %t%h%e% %b%u%t%t%o%n%s% %t%o% %s%t%a%y% %f%i%x%e%d% %h%e%i%g%h%t% %s%o% %s%e%t% %t%h%e% %s%e%c%o%n%d% %s%i%z%e% %t%o% %3%5% %(%f%i%x%e%d% %h%e%i%g%h%t% %o%f% %3%5% %p%i%x%e%l%s%)%
%s%e%t%(% %v%b%o%x%,% %'%S%i%z%e%s%'%,% %[%-%1% %3%5%]% %)%
%S%i%z%e%s% %a%n%d% %u%n%i%t%s%
%[%T%o%p%]%
%W%h%y% %u%s%e% %l%a%y%o%u%t%s%?%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%1%_%4%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%1%_%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%C%o%n%t%e%x%t% %h%e%l%p%%%%5%.%1%:% %C%o%n%t%e%x%t% %h%e%l%p% %%%%U%s%e%r% %g%u%i%d%e%
%5%.%1%:% %C%o%n%t%e%x%t% %h%e%l%p%
%W%h%e%n% %a% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %h%a%s% %i%t%s% %"%H%e%l%p%F%c%n%"% %f%i%l%l%e%d% %i%n%,% %a% %h%e%l%p% %b%u%t%t%o%n% %(% %)% %i%s% %s%h%o%w%n% %i%n% %t%h%e% %u%p%p%e%r%-%r%i%g%h%t% %o%f% %t%h%e% %t%i%t%l%e%-%b%a%r%.% %W%h%e%n% %t%h%e% %u%s%e%r% %c%l%i%c%k%s% %t%h%i%s% %b%u%t%t%o%n% %t%h%e% %s%p%e%c%i%f%i%e%d% %f%u%n%c%t%i%o%n% %i%s% %c%a%l%l%e%d%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%H%e%r%e% %w%e% %h%o%o%k%u%p% %t%h%e% %H%e%l%p%F%c%n% %t%o% %s%i%m%p%l%y% %b%r%i%n%g% %u%p% %t%h%e% %M%A%T%L%A%B% %d%o%c%u%m%e%n%t%a%t%i%o%n% %f%o%r% %e%a%c%h% %c%o%m%m%a%n%d%.% %C%l%i%c%k%i%n%g% %a%n%y% %o%f% %t%h%e% %"%?%"% %b%u%t%t%o%n%s% %w%i%l%l% %c%a%u%s%e% %t%h%e% %M%A%T%L%A%B% %h%e%l%p% %b%r%o%w%s%e%r% %t%o% %o%p%e%n%.%
%f% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'%,% %'%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %H%e%l%p% %E%x%a%m%p%l%e%'% %)%;% %b% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'%,% %b%,% %'%T%i%t%l%e%'%,% %'%s%i%n%'%,% %'%H%e%l%p%F%c%n%'%,% %@%(%a%,%b%)% %d%o%c%(%'%s%i%n%'%)% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'%,% %b%,% %'%T%i%t%l%e%'%,% %'%c%o%s%'%,% %'%H%e%l%p%F%c%n%'%,% %@%(%a%,%b%)% %d%o%c%(%'%c%o%s%'%)% %)%;% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'%,% %b%,% %'%T%i%t%l%e%'%,% %'%t%a%n%'%,% %'%H%e%l%p%F%c%n%'%,% %@%(%a%,%b%)% %d%o%c%(%'%t%a%n%'%)% %)%;%
%A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s%
%[%T%o%p%]%
%M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%5%_%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%5%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%%%%%4%.%2%:% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %a%l%l% %w%i%n%d%o%w%s% %%%	%U%s%e%r% %g%u%i%d%e%
%4%.%2%:% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%
%A%s% %w%e%l%l% %a%s% %m%o%d%i%f%y%i%n%g% %t%h%e% %d%e%f%a%u%l%t%s% %u%s%e%d% %i%n% %o%n%e% %w%i%n%d%o%w%,% %i%t% %i%s% %p%o%s%s%i%b%l%e% %t%o% %o%v%e%r%r%i%d%e% %t%h%e% %d%e%f%a%u%l%t%s% %u%s%e%d% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%.% %T%h%i%s% %m%a%k%e%s% %u%s%e% %o%f% %t%h%e% %s%p%e%c%i%a%l% %"%0%"% %h%a%n%d%l%e% %t%h%a%t% %r%o%u%g%h%l%y% %c%o%r%r%e%s%p%o%n%d%s% %t%o% %t%h%e% %M%A%T%L%A%B% %e%n%v%i%r%o%n%m%e%n%t%.% %N%o%t%e%,% %h%o%w%e%v%e%r%,% %t%h%a%t% %d%e%f%a%u%l%t%s% %s%e%t% %a%t% %t%h%e% %w%i%n%d%o%w% %l%e%v%e%l% %t%a%k%e% %p%r%e%c%e%d%e%n%c%e%.%
%T%h%e% %e%x%a%m%p%l%e% %b%e%l%o%w% %s%h%o%w%s% %h%o%w% %d%e%f%a%u%l%t%s% %c%a%n% %b%e% %s%e%t% %f%o%r% %t%h%e% %p%a%n%e%l% %t%i%t%l%e%-%b%a%r% %c%o%l%o%r% %a%n%d% %f%o%n%t% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%,% %b%u%t% %t%h%e% %f%o%n%t% %s%i%z%e% %i%s% %o%v%e%r%r%i%d%d%e%n% %f%o%r% %t%h%e% %s%e%c%o%n%d% %w%i%n%d%o%w%:%
%u%i%e%x%t%r%a%s%.%s%e%t% %(% %0%,% %'%D%e%f%a%u%l%t%H%B%o%x%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%'% %,% %[%0%.%3% %0%.%3% %0%.%3%]% %)%;% %u%i%e%x%t%r%a%s%.%s%e%t% %(% %0%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%T%i%t%l%e%C%o%l%o%r%'% %,% %'%y%'% %)%;% %u%i%e%x%t%r%a%s%.%s%e%t% %(% %0%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%F%o%n%t%S%i%z%e%'% %,% %1%4% %)%;% %f%1% %=% %f%i%g%u%r%e% %(%)%;% %h% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f%1%,% %'%P%a%d%d%i%n%g%'% %,% %1%0%,% %'%S%p%a%c%i%n%g%'% %,% %1%0% %)%;% %p%1% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %h%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %1%'% %)%;% %p%2% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %h%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %2%'% %)%;% %f%2% %=% %f%i%g%u%r%e% %(%)%;% %u%i%e%x%t%r%a%s%.%s%e%t% %(% %f%2%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%F%o%n%t%S%i%z%e%'% %,% %2%0% %)%;% %p%3% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%2%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %3%'% %)%;%
%I%t% %i%s% %i%m%p%o%r%t%a%n%t% %t%o% %n%o%t%e% %t%h%a%t% %a%l%t%h%o%u%g%h% %t%h%e% %d%e%f%a%u%l%t% %h%a%s% %b%e%e%n% %s%e%t% %s%y%s%t%e%m%-%w%i%d%e%,% %i%t% %i%s% %n%o%t% %p%r%e%s%e%r%v%e%d% %b%e%t%w%e%e%n% %M%A%T%L%A%B% %s%e%s%s%i%o%n%s%.%
%S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %o%n%e% %w%i%n%d%o%w%
%[%T%o%p%]%
%A%d%v%a%n%c%e%d% %m%a%n%e%u%v%e%r%s% %w%i%t%h% %p%a%n%e%l%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%4%_%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%4%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%%%%1%.%3%:% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %%%"%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%1%.%3%:% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%
%A%r%r%a%n%g%e% %a% %s%i%n%g%l%e% %e%l%e%m%e%n%t% %i%n% %a% %p%a%n%e%l% %w%i%t%h% %b%o%x%e%d% %t%i%t%l%e%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%(% %)% %c%r%e%a%t%e%s% %a% %b%o%x%-%s%t%y%l%e%d% %p%a%n%e%l% %o%b%j%e%c%t% %w%i%t%h% %a%u%t%o%m%a%t%i%c% %m%a%n%a%g%e%m%e%n%t% %o%f% %t%h%e% %c%o%n%t%a%i%n%e%d% %w%i%d%g%e%t% %o%r% %l%a%y%o%u%t%.% %T%h%e% %p%r%o%p%e%r%t%i%e%s% %a%v%a%i%l%a%b%l%e% %a%r%e% %l%a%r%g%e%l%y% %t%h%e% %s%a%m%e% %a%s% %t%h%e% %b%u%i%l%t%i%n% %U%I%P%A%N%E%L% %o%b%j%e%c%t%.% %W%h%e%r%e% %m%o%r%e% %t%h%a%n% %o%n%e% %c%h%i%l%d% %i%s% %a%d%d%e%d%,% %t%h%e% %c%u%r%r%e%n%t%l%y% %v%i%s%i%b%l%e% %c%h%i%l%d% %i%s% %d%e%t%e%r%m%i%n%e%d% %u%s%i%n%g% %t%h%e% %S%e%l%e%c%t%e%d%C%h%i%l%d% %p%r%o%p%e%r%t%y%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%B%o%r%d%e%r%T%y%p%e%
%[% %n%o%n%e% %|% %e%t%c%h%e%d%i%n% %|% %e%t%c%h%e%d%o%u%t% %|% %b%e%v%e%l%e%d%i%n% %|% %b%e%v%e%l%e%d%o%u%t% %|% %l%i%n%e% %]%
%T%y%p%e% %o%f% %b%o%r%d%e%r% %a%r%o%u%n%d% %t%h%e% %t%i%t%l%e% %a%n%d% %c%o%n%t%e%n%t% %a%r%e%a%s%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%C%l%o%s%e%R%e%q%u%e%s%t%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %p%a%n%e%l% %c%l%o%s%e% %i%c%o%n% %i%s% %c%l%i%c%k%e%d%.% %N%o%t%e% %t%h%a%t% %i%f% %e%m%p%t%y%,% %n%o% %c%l%o%s%e% %b%u%t%t%o%n% %i%s% %s%h%o%w%n%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%D%o%c%k%F%c%n%
%f%u%n%c%t%i%o%n% %h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %p%a%n%e%l% %i%s% %d%o%c%k%e%d% %o%r% %u%n%d%o%c%k%e%d%.% %N%o%t%e% %t%h%a%t% %i%f% %e%m%p%t%y%,% %n%o% %d%o%c%k% %b%u%t%t%o%n% %i%s% %s%h%o%w%n%.% %S%e%e% %a%d%v%a%n%c%e%d% %m%a%n%o%e%u%v%r%e%s% %w%i%t%h% %p%a%n%e%l%s% %f%o%r% %d%e%t%a%i%l%s%.%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%F%o%n%t%A%n%g%l%e%
%[% %n%o%r%m%a%l% %|% %i%t%a%l%i%c% %|% %o%b%l%i%q%u%e% %]%
%T%i%t%l%e% %f%o%n%t% %a%n%g%l%e%.%
%F%o%n%t%N%a%m%e%
%s%t%r%i%n%g%
%T%i%t%l%e% %f%o%n%t% %n%a%m%e% %(%e%.%g%.% %A%r%i%a%l%,% %H%e%l%v%e%t%i%c%a% %e%t%c%)%.%
%F%o%n%t%S%i%z%e%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%T%i%t%l%e% %f%o%n%t% %s%i%z%e%.%
%F%o%n%t%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %]%
%T%i%t%l%e% %f%o%n%t% %u%n%i%t%s% %f%o%r% %m%e%a%s%u%r%i%n%g% %s%i%z%e%.%
%F%o%n%t%W%e%i%g%h%t%
%[% %l%i%g%h%t% %|% %n%o%r%m%a%l% %|% %d%e%m%i% %|% %b%o%l%d% %]%
%T%i%t%l%e% %f%o%n%t% %w%e%i%g%h%t%.%
%F%o%r%e%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%i%t%l%e% %f%o%n%t% %c%o%l%o%r% %a%n%d%/%o%r% %c%o%l%o%r% %o%f% %2%-%D% %b%o%r%d%e%r% %l%i%n%e%.%
%H%e%l%p%F%c%n%
%f%u%n%c%t%i%o%n% %h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %h%e%l%p% %i%c%o%n% %i%s% %c%l%i%c%k%e%d%.% %N%o%t%e% %t%h%a%t% %i%f% %e%m%p%t%y%,% %n%o% %h%e%l%p% %b%u%t%t%o%n% %i%s% %s%h%o%w%n%.% %S%e%e% %a%d%v%a%n%c%e%d% %m%a%n%o%e%u%v%r%e%s% %w%i%t%h% %p%a%n%e%l%s% %f%o%r% %d%e%t%a%i%l%s%.%
%H%i%g%h%l%i%g%h%t%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%3%-%D% %f%r%a%m%e% %h%i%g%h%l%i%g%h%t% %c%o%l%o%r%.%
%I%s%D%o%c%k%e%d%
%l%o%g%i%c%a%l%
%I%s% %t%h%i%s% %p%a%n%e%l% %i%n% %a% %d%o%c%k%e%d% %s%t%a%t%e%.% %S%e%e% %a%d%v%a%n%c%e%d% %m%a%n%o%e%u%v%r%e%s% %w%i%t%h% %p%a%n%e%l%s% %f%o%r% %d%e%t%a%i%l%s%.%
%I%s%M%i%n%i%m%i%z%e%d%
%l%o%g%i%c%a%l%
%I%s% %t%h%i%s% %p%a%n%e%l% %i%n% %a% %m%i%n%i%m%i%z%e%d% %s%t%a%t%e%.% %S%e%e% %a%d%v%a%n%c%e%d% %m%a%n%o%e%u%v%r%e%s% %w%i%t%h% %p%a%n%e%l%s% %f%o%r% %d%e%t%a%i%l%s%.%
%M%i%n%i%m%i%z%e%F%c%n%
%f%u%n%c%t%i%o%n% %h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %p%a%n%e%l% %i%s% %m%i%n%i%m%i%z%e%d% %o%r% %m%a%x%i%m%i%z%e%d%.% %N%o%t%e% %t%h%a%t% %i%f% %e%m%p%t%y%,% %n%o% %m%i%n%i%m%i%z%e% %b%u%t%t%o%n% %i%s% %s%h%o%w%n%.% %S%e%e% %a%d%v%a%n%c%e%d% %m%a%n%o%e%u%v%r%e%s% %w%i%t%h% %p%a%n%e%l%s% %f%o%r% %d%e%t%a%i%l%s%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%e%l%e%c%t%e%d%C%h%i%l%d%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r% %o%r% %e%m%p%t%y%
%W%h%i%c%h% %c%h%i%l%d% %i%s% %v%i%s%i%b%l%e%.%
%S%h%a%d%o%w%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%3%-%D% %f%r%a%m%e% %s%h%a%d%o%w% %c%o%l%o%r%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%i%t%l%e%
%s%t%r%i%n%g%
%T%i%t%l%e% %s%t%r%i%n%g%.%
%T%i%t%l%e%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%c%o%l%o%r% %f%o%r% %t%h%e% %t%i%t%l%e% %b%a%r% %b%a%c%k%g%r%o%u%n%d%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.% %S%e%e% %t%h%e% %v%i%s%i%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %p% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%T%i%t%l%e%'% %,% %'%A% %B%o%x%P%a%n%e%l%'%,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)%
%f% %=% %f%i%g%u%r%e% %(%)%;% %p% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%T%i%t%l%e%'% %,% %'%A% %B%o%x%P%a%n%e%l%'%,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %b% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%S%p%a%c%i%n%g%'% %,% %5%,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'%,% %'%l%i%s%t%b%o%x%'%,% %'%P%a%r%e%n%t%'% %,% %b%,% %'%S%t%r%i%n%g%'% %,% %{%'%I%t%e%m% %1%'%,%'%I%t%e%m% %2%'%}% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)%;% %s%e%t% %(% %b%,% %'%S%i%z%e%s%'% %,% %[%1%0%0% %-%1%]% %)%;% %p%.%F%o%n%t%S%i%z%e% %=% %1%2%;% %p%.%F%o%n%t%W%e%i%g%h%t% %=% %'%b%o%l%d%'%;% %p%.%H%e%l%p%F%c%n% %=% %@%(%x%,%y%)% %d%i%s%p%(%'%H%e%l%p% %m%e%!%'%)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %m%o%r%e% %s%t%a%n%d%a%r%d% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %-% %f%o%r% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %f%o%r% %s%e%l%e%c%t%i%n%g% %t%h%e% %v%i%s%i%b%l%e% %c%h%i%l%d%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h%i%n% %a% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%3%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%%%%2%.%3%:% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%2%.%3%:% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%(%)%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %h%o%r%i%z%o%n%t%a%l% %b%o%x% %l%a%y%o%u%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s% %a%n%d% %w%i%t%h% %a%l%l% %p%r%o%p%e%r%t%i%e%s% %s%e%t% %t%o% %d%e%f%a%u%l%t%s%.% %T%h%e% %o%u%t%p%u%t% %i%s% %a% %n%e%w% %l%a%y%o%u%t% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %a%s% %t%h%e% %p%a%r%e%n%t% %f%o%r% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%(%)%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%M%i%n%i%m%u%m%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %m%i%n%i%m%u%m% %s%i%z%e% %i%n% %p%i%x%e%l%s% %f%o%r% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%h%o%w%M%a%r%k%i%n%g%s%
%[% %o%n% %|% %o%f%f% %]%
%S%h%o%w% %m%a%r%k%i%n%g%s% %o%n% %t%h%e% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s% %(%d%e%f%a%u%l%t% %'%o%n%'%)%.%
%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %c%h%i%l%d% %e%l%e%m%e%n%t%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.% %T%h%e% %s%i%z%e% %o%f% %t%h%i%s% %v%e%c%t%o%r% %m%u%s%t% %a%l%w%a%y%s% %m%a%t%c%h% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %(%c%h%i%l%d%r%e%n%)%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'% %,% %'%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %e%x%a%m%p%l%e%'% %)%;% %b% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %(% %'%P%a%r%e%n%t%'% %,% %f% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %b%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%y%'% %)% %s%e%t% %(% %b%,% %'%S%i%z%e%s%'% %,% %[%-%1% %1%0%0% %-%2% %-%1%]%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %h%o%r%i%z%o%n%t%a%l% %a%r%r%a%n%g%e%m%e%n%t%
%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %v%e%r%t%i%c%a%l% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%V%B%o%x%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%3%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%2%_%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%A%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e%%%%8%.%1%:% %A%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e% %%%%U%s%e%r% %g%u%i%d%e%
%8%.%1%:% %A%p%p%l%i%c%a%t%i%o%n% %s%t%r%u%c%t%u%r%e%
%T%h%e%r%e% %a%r%e% %m%a%n%y% %w%a%y%s% %t%o% %b%u%i%l%d% %g%r%a%p%h%i%c%a%l% %a%p%p%l%i%c%a%t%i%o%n%s% %i%n% %M%A%T%L%A%B%,% %b%u%t% %h%e%r%e% %w%e% %w%i%l%l% %t%a%k%e% %a% %v%e%r%y% %s%i%m%p%l%e% %a%p%p%r%o%a%c%h%.% %I%f% %t%h%e% %a%p%p%l%i%c%a%t%i%o%n% %w%e%r%e% %t%o% %b%e%c%o%m%e% %l%a%r%g%e%r% %a%n%d% %m%o%r%e% %c%o%m%p%l%e%x%,% %t%h%i%s% %a%p%p%r%o%a%c%h% %w%o%u%l%d% %b%e% %c%h%a%n%g%e%d% %t%o% %b%e%t%t%e%r% %m%i%t%i%g%a%t%e% %t%h%e% %c%o%m%p%l%e%x%i%t%y%.% %S%o%m%e% %n%o%t%e%s% %o%n% %t%h%i%s% %a%r%e% %c%o%n%t%a%i%n%e%d% %a%t% %t%h%e% %e%n%d%.%
%T%h%e% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %s%t%r%u%c%t%u%r%e%d% %a%s% %a% %s%i%n%g%l%e% %f%u%n%c%t%i%o%n% %w%i%t%h% %c%a%l%l%b%a%c%k%s% %a%n%d% %o%t%h%e%r% %h%e%l%p%e%r% %f%u%n%c%t%i%o%n%s% %s%t%o%r%e%d% %a%s% %"%n%e%s%t%e%d%"% %s%u%b%f%u%n%c%t%i%o%n%s%,% %i%.%e%.% %f%u%n%c%t%i%o%n%s% %i%n%s%i%d%e% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n%.% %T%h%i%s% %h%a%s% %t%h%e% %a%d%v%a%n%t%a%g%e% %t%h%a%t% %t%h%e% %n%e%s%t%e%d% %s%u%b%f%u%n%c%t%i%o%n%s% %c%a%n% %s%h%a%r%e% %a%c%c%e%s%s% %t%o% %a%n%y% %v%a%r%i%a%b%l%e%s% %d%e%c%l%a%r%e%d% %i%n% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n%.% %T%h%i%s% %i%s% %a%l%s%o% %a% %r%i%s%k% %a%s% %a%n%y%t%h%i%n%g% %w%e% %a%c%c%i%d%e%n%t%a%l%l%y% %d%e%c%l%a%r%e% %i%n% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %b%e%c%o%m%e%s% %"%g%l%o%b%a%l%"% %w%i%t%h%i%n% %t%h%e% %a%p%p%l%i%c%a%t%i%o%n%.% %F%o%r% %t%h%a%t% %r%e%a%s%o%n% %a%l%l% %l%o%g%i%c% %i%s% %p%u%t% %i%n%t%o% %s%u%b%f%u%n%c%t%i%o%n%s% %a%n%d% %w%e% %r%e%s%t%r%i%c%t% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %t%o% %j%u%s%t% %d%e%c%l%a%r%i%n%g% %t%w%o% %s%h%a%r%e%d% %v%a%r%i%a%b%l%e%s%:%
%d%a%t%a%:% %a% %s%t%r%u%c%t%u%r%e% %c%o%n%t%a%i%n%i%n%g% %a%l%l% %s%h%a%r%e%d% %d%a%t%a%
%g%u%i%:% %a% %s%t%r%u%c%t%u%r%e% %c%o%n%t%a%i%n%i%n%g% %h%a%n%d%l%e%s% %t%o% %G%U%I% %w%i%d%g%e%t%s%
%f%u%n%c%t%i%o%n% %d%e%m%o%B%r%o%w%s%e%r%(%)% %%% %D%e%c%l%a%r%e% %s%h%a%r%e%d% %v%a%r%i%a%b%l%e%s% %d%a%t%a% %=% %c%r%e%a%t%e%D%a%t%a%(%)%;% %g%u%i% %=% %c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%(% %d%a%t%a%.%D%e%m%o%N%a%m%e%s% %)%;% %%% %N%o%w% %u%p%d%a%t%e% %t%h%e% %G%U%I% %w%i%t%h% %t%h%e% %c%u%r%r%e%n%t% %d%a%t%a% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%(%)%;% %r%e%d%r%a%w%D%e%m%o%(%)%;% %%% %H%e%l%p%e%r% %s%u%b%f%u%n%c%t%i%o%n%s% %.% %f%u%n%c%t%i%o%n% %d%a%t%a% %=% %c%r%e%a%t%e%D%a%t%a%(%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %g%u%i% %=% %c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%(%n%a%m%e%s%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%(%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %r%e%d%r%a%w%D%e%m%o%(%)% %.%.%.% %e%n%d% %;% %%% %C%a%l%l%b%a%c%k% %s%u%b%f%u%n%c%t%i%o%n%s% %.% %f%u%n%c%t%i%o%n% %o%n%M%e%n%u%S%e%l%e%c%t%i%o%n%(%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%(%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %o%n%D%e%m%o%H%e%l%p%(%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %o%n%H%e%l%p%(%)% %.%.%.% %e%n%d% %;% %f%u%n%c%t%i%o%n% %o%n%E%x%i%t%(%)% %.%.%.% %e%n%d% %;% %e%n%d% %%% %M%a%i%n% %f%u%n%c%t%i%o%n%
%N%o%t%e% %t%h%a%t% %a%l%l% %o%f% %t%h%e% %w%o%r%k% %i%s% %d%o%n%e% %i%n% %s%u%b%f%u%n%c%t%i%o%n%s%.% %M%o%s%t% %s%u%b%f%u%n%c%t%i%o%n%s% %a%r%e% %c%a%l%l%b%a%c%k%s% %e%x%e%c%u%t%e%d% %w%h%e%n% %a% %b%u%t%t%o%n% %i%s% %p%r%e%s%s%e%d% %o%r% %a% %m%e%n%u% %s%e%l%e%c%t%e%d%.% %T%h%e% %f%o%u%r% %u%s%e%d% %a%t% %s%t%a%r%t%u%p% %a%r%e% %h%e%l%p%e%r% %f%u%n%c%t%i%o%n%s%:%
%c%r%e%a%t%e%D%a%t%a%:% %b%u%i%l%d% %t%h%e% %s%t%r%u%c%t%u%r%e% %w%h%i%c%h% %c%o%n%t%a%i%n%s% %a%l%l% %a%p%p%l%i%c%a%t%i%o%n% %d%a%t%a%
%c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%:% %b%u%i%l%d% %t%h%e% %u%s%e%r% %i%n%t%e%r%f%a%c%e%
%u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%:% %u%p%d%a%t%e% %s%e%l%e%c%t%o%r%s% %e%t%c% %i%n% %r%e%s%p%o%n%s%e% %t%o% %a% %c%h%a%n%g%e% %i%n% %t%h%e% %d%a%t%a%
%r%e%d%r%a%w%D%e%m%o%:% %r%e%d%r%a%w% %t%h%e% %p%l%o%t% %p%a%r%t% %o%f% %t%h%e% %i%n%t%e%r%f%a%c%e%
%W%e% %w%i%l%l% %n%o%t% %d%i%g% %i%n%t%o% %a%l%l% %t%h%e% %s%u%b%f%u%n%c%t%i%o%n%s% %a%n%d% %c%a%l%l%b%a%c%k%s%,% %b%u%t% %i%n%s%t%e%a%d% %c%o%n%c%e%n%t%r%a%t%e% %o%n% %t%h%e% %G%U%I% %c%r%e%a%t%i%o%n% %(%c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%)% %a%n%d% %u%p%d%a%t%e% %(%u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%)%.%
%(%F%u%l%l% %s%o%u%r%c%e% %c%o%d%e% %f%o%r% %t%h%i%s% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%A% %c%o%m%p%l%e%t%e% %e%x%a%m%p%l%e%
%[%T%o%p%]%
%c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%_%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%G%r%i%d%%%%3%.%1%:% %u%i%e%x%t%r%a%s%.%G%r%i%d% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%3%.%1%:% %u%i%e%x%t%r%a%s%.%G%r%i%d%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %t%w%o% %d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %n%e%w% %g%r%i%d% %l%a%y%o%u%t% %w%i%t%h% %a%l%l% %p%r%o%p%e%r%t%i%e%s% %s%e%t% %t%o% %d%e%f%a%u%l%t%s%.% %T%h%e% %n%u%m%b%e%r% %o%f% %r%o%w%s% %a%n%d% %c%o%l%u%m%n%s% %t%o% %u%s%e% %i%s% %d%e%t%e%r%m%i%n%e%d% %f%r%o%m% %t%h%e% %n%u%m%b%e%r% %o%f% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %R%o%w%S%i%z%e%s% %a%n%d% %C%o%l%u%m%n%S%i%z%e%s% %p%r%o%p%e%r%t%i%e%s% %r%e%s%p%e%c%t%i%v%e%l%y%.% %C%h%i%l%d% %e%l%e%m%e%n%t%s% %a%r%e% %a%r%r%a%n%g%e%d% %d%o%w%n% %c%o%l%u%m%n% %o%n%e% %f%i%r%s%t%,% %t%h%e%n% %c%o%l%u%m%n% %t%w%o% %e%t%c%.% %I%f% %t%h%e%r%e% %a%r%e% %i%n%s%u%f%f%i%c%i%e%n%t% %c%o%l%u%m%n%s% %t%h%e%n% %a% %n%e%w% %o%n%e% %i%s% %a%d%d%e%d%.% %T%h%e% %o%u%t%p%u%t% %i%s% %a% %n%e%w% %l%a%y%o%u%t% %o%b%j%e%c%t% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %a%s% %t%h%e% %p%a%r%e%n%t% %f%o%r% %o%t%h%e%r% %u%s%e%r%-%i%n%t%e%r%f%a%c%e% %c%o%m%p%o%n%e%n%t%s%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%G%r%i%d% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%R%o%w%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %r%o%w%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.%
%C%o%l%u%m%n%S%i%z%e%s%
%d%o%u%b%l%e% %v%e%c%t%o%r%
%T%h%e% %s%i%z%e% %o%f% %e%a%c%h% %o%f% %t%h%e% %c%o%l%u%m%n%s%.% %P%o%s%i%t%i%v%e% %e%n%t%r%i%e%s% %i%n%d%i%c%a%t%e% %f%i%x%e%d% %s%i%z%e%s% %i%n% %p%i%x%e%l%s%,% %n%e%g%a%t%i%v%e% %v%a%l%u%e%s% %i%n%d%i%c%a%t%e% %r%e%l%a%t%i%v%e% %w%e%i%g%h%t%s% %f%o%r% %r%e%s%i%z%i%n%g%.%
%S%p%a%c%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %t%o% %l%e%a%v%e% %b%e%t%w%e%e%n% %e%l%e%m%e%n%t%s% %i%n% %t%h%e% %l%a%y%o%u%t%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %g% %=% %u%i%e%x%t%r%a%s%.%G%r%i%d% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%S%p%a%c%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)% %u%i%e%x%t%r%a%s%.%E%m%p%t%y% %(% %'%P%a%r%e%n%t%'% %,% %g% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%c%'% %)% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %g%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%y%'% %)% %s%e%t% %(% %g%,% %'%C%o%l%u%m%n%S%i%z%e%s%'% %,% %[%-%1% %1%0%0% %-%2%]%,% %'%R%o%w%S%i%z%e%s%'% %,% %[%-%1% %1%0%0%]% %)%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %g%r%i%d% %a%r%r%a%n%g%e%m%e%n%t% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%3%_%1%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%3%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%%%%1%.%4%:% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%1%.%4%:% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %f%o%r% %s%e%l%e%c%t%i%n%g% %w%h%i%c%h% %i%s% %v%i%s%i%b%l%e%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%(% %)% %c%r%e%a%t%e%s% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %a%l%o%n%g% %o%n%e% %e%d%g%e% %t%o% %a%l%l%o%w% %s%e%l%e%c%t%i%o%n% %b%e%t%w%e%e%n% %t%h%e% %d%i%f%f%e%r%e%n%t% %c%h%i%l%d% %o%b%j%e%c%t%s% %c%o%n%t%a%i%n%e%d%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%a%l%l%b%a%c%k%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %s%e%l%e%c%t%e%d% %t%a%b% %i%s% %c%h%a%n%g%e%d%.% %T%h%e% %e%v%e%n%t%-%d%a%t%a% %s%u%p%p%l%i%e%d% %h%a%s% %f%i%e%l%d%s% %P%r%e%v%i%o%u%s%C%h%i%l%d% %a%n%d% %S%e%l%e%c%t%e%d%C%h%i%l%d% %g%i%v%i%n%g% %t%h%e% %p%r%e%v%i%o%u%s%l%y% %s%e%l%e%c%t%e%d% %a%n%d% %n%e%w%l%y% %s%e%l%e%c%t%e%d% %t%a%b% %i%n%d%i%c%e%s%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%F%o%n%t%A%n%g%l%e%
%[% %n%o%r%m%a%l% %|% %i%t%a%l%i%c% %|% %o%b%l%i%q%u%e% %]%
%T%i%t%l%e% %f%o%n%t% %a%n%g%l%e%.%
%F%o%n%t%N%a%m%e%
%s%t%r%i%n%g%
%T%i%t%l%e% %f%o%n%t% %n%a%m%e% %(%e%.%g%.% %A%r%i%a%l%,% %H%e%l%v%e%t%i%c%a% %e%t%c%)%.%
%F%o%n%t%S%i%z%e%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%T%i%t%l%e% %f%o%n%t% %s%i%z%e%.%
%F%o%n%t%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %]%
%T%i%t%l%e% %f%o%n%t% %u%n%i%t%s% %f%o%r% %m%e%a%s%u%r%i%n%g% %s%i%z%e%.%
%F%o%n%t%W%e%i%g%h%t%
%[% %l%i%g%h%t% %|% %n%o%r%m%a%l% %|% %d%e%m%i% %|% %b%o%l%d% %]%
%T%i%t%l%e% %f%o%n%t% %w%e%i%g%h%t%.%
%F%o%r%e%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%i%t%l%e% %f%o%n%t% %c%o%l%o%r% %a%n%d%/%o%r% %c%o%l%o%r% %o%f% %2%-%D% %b%o%r%d%e%r% %l%i%n%e%.%
%H%i%g%h%l%i%g%h%t%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%3%-%D% %f%r%a%m%e% %h%i%g%h%l%i%g%h%t% %c%o%l%o%r%.%
%S%h%a%d%o%w%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%3%-%D% %f%r%a%m%e% %s%h%a%d%o%w% %c%o%l%o%r%.%
%I%s%M%i%n%i%m%i%z%e%d%
%l%o%g%i%c%a%l%
%I%s% %t%h%i%s% %p%a%n%e%l% %i%n% %a% %m%i%n%i%m%i%z%e%d% %s%t%a%t%e%.%
%M%i%n%i%m%i%z%e%F%c%n%
%f%u%n%c%t%i%o%n% %h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %p%a%n%e%l% %i%s% %m%i%n%i%m%i%z%e%d% %o%r% %m%a%x%i%m%i%z%e%d%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%e%l%e%c%t%e%d%C%h%i%l%d%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r% %o%r% %e%m%p%t%y%
%W%h%i%c%h% %c%h%i%l%d% %i%s% %v%i%s%i%b%l%e%.%
%T%a%b%S%i%z%e%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%S%i%z%e% %(%w%i%d%t%h%)% %o%f% %t%h%e% %t%a%b%s% %i%n% %p%i%x%e%l%s% %(%d%e%f%a%u%l%t% %5%0%)%.%
%T%a%b%E%n%a%b%l%e%
%c%e%l%l% %a%r%r%a%y% %o%f% %[% %o%n% %|% %o%f%f% %]%
%A% %l%i%s%t% %o%f% %t%h%e% %e%n%a%b%l%e%d% %s%t%a%t%e% %o%f% %e%a%c%h% %t%a%b% %(%d%e%f%a%u%l%t% %i%s% %a%l%l% %'%o%n%'%)%.%
%T%a%b%N%a%m%e%s%
%c%e%l%l% %a%r%r%a%y% %o%f% %s%t%r%i%n%g%s%
%A% %l%i%s%t% %o%f% %t%h%e% %n%a%m%e%s% %o%f% %t%h%e% %t%a%b%s% %w%i%t%h% %o%n%e% %e%n%t%r%y% %p%e%r% %t%a%b%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %p% %=% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)%;% %p%.%T%a%b%N%a%m%e%s% %=% %{% %'%R%e%d%'% %,% %'%B%l%u%e%'% %,% %'%G%r%e%e%n%'% %}%;% %p%.%S%e%l%e%c%t%e%d%C%h%i%l%d% %=% %2%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %m%o%r%e% %s%t%a%n%d%a%r%d% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %p%a%n%e%l% %w%i%t%h% %b%o%x%e%d% %t%i%t%l%e%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%H%B%o%x%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%4%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%4%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%R%e%l%e%a%s%e% %N%o%t%e%s%%%%2%:% %R%e%l%e%a%s%e% %N%o%t%e%s% %%%+%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%2%:% %R%e%l%e%a%s%e% %N%o%t%e%s%
%T%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %v%e%r%s%i%o%n% %n%u%m%b%e%r%s% %t%a%k%e% %t%h%e% %f%o%r%m% %m%a%j%o%r%.%m%i%n%o%r% %.% %T%h%e% %c%u%r%r%e%n%t% %v%e%r%s%i%o%n% %y%o%u% %h%a%v%e% %i%n%s%t%a%l%l%e%d% %c%a%n% %b%e% %c%h%e%c%k%e%d% %b%y% %t%y%p%i%n%g% %v%e%r% %o%r% %l%a%y%o%u%t%V%e%r%s%i%o%n% %a%t% %t%h%e% %M%A%T%L%A%B% %c%o%m%m%a%n%d% %p%r%o%m%p%t%.%
%S%e%c%t%i%o%n% %c%o%n%t%e%n%t%s%:%
%2%.%1%.% %V%e%r%s%i%o%n% %1%.%1%7% %(%M%a%r%c%h% %2%0%1%4%)%
%2%.%2%.% %V%e%r%s%i%o%n% %1%.%1%6% %(%D%e%c%e%m%b%e%r% %2%0%1%3%)%
%2%.%3%.% %V%e%r%s%i%o%n% %1%.%1%5% %(%N%o%v%e%m%b%e%r% %2%0%1%3%)%
%2%.%4%.% %V%e%r%s%i%o%n% %1%.%1%4% %(%S%e%p%t%e%m%b%e%r% %2%0%1%3%)%
%2%.%5%.% %V%e%r%s%i%o%n% %1%.%1%3% %(%A%p%r%i%l% %2%0%1%3%)%
%2%.%6%.% %V%e%r%s%i%o%n% %1%.%1%2% %(%F%e%b%r%u%a%r%y% %2%0%1%3%)%
%2%.%7%.% %V%e%r%s%i%o%n% %1%.%1%1% %(%D%e%c%e%m%b%e%r% %2%0%1%2%)%
%2%.%8%.% %V%e%r%s%i%o%n% %1%.%1%0% %(%J%u%l%y% %2%0%1%1%)%
%2%.%9%.% %V%e%r%s%i%o%n% %1%.%9% %(%F%e%b%r%u%a%r%y% %2%0%1%1%)%
%2%.%1%0%.% %V%e%r%s%i%o%n% %1%.%8% %(%N%o%v%e%m%b%e%r% %2%0%1%0%)%
%2%.%1%1%.% %V%e%r%s%i%o%n% %1%.%7% %(%O%c%t%o%b%e%r% %2%0%1%0%)%
%2%.%1%2%.% %V%e%r%s%i%o%n% %1%.%6% %(%S%e%p%t%e%m%b%e%r% %2%0%1%0%)%
%2%.%1%3%.% %V%e%r%s%i%o%n% %1%.%5% %(%J%u%l%y% %2%0%1%0%)%
%2%.%1%4%.% %V%e%r%s%i%o%n% %1%.%4% %(%J%u%l%y% %2%0%1%0%)%
%2%.%1%5%.% %V%e%r%s%i%o%n% %1%.%3% %(%J%u%l%y% %2%0%1%0%)%
%2%.%1%6%.% %V%e%r%s%i%o%n% %1%.%2% %(%J%u%n%e% %2%0%1%0%)%
%2%.%1%7%.% %V%e%r%s%i%o%n% %1%.%1% %(%J%u%n%e% %2%0%1%0%)%
%2%.%1%8%.% %V%e%r%s%i%o%n% %1%.%0% %(%M%a%y% %2%0%1%0%)%
%2%.%1%:% %V%e%r%s%i%o%n% %1%.%1%7% %(%M%a%r%c%h% %2%0%1%4%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%l%l%o%w% %v%e%r%s%i%o%n% %n%u%m%b%e%r% %r%e%t%r%i%e%v%a%l% %u%s%i%n%g% %v%e%r%(%'%l%a%y%o%u%t%'%)%
%2%.%2%:% %V%e%r%s%i%o%n% %1%.%1%6% %(%D%e%c%e%m%b%e%r% %2%0%1%3%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%M%i%s%c% %f%i%x%e%s% %i%n% %d%o%c% %(%t%y%p%o%s% %e%t%c%.%)%
%2%.%3%:% %V%e%r%s%i%o%n% %1%.%1%5% %(%N%o%v%e%m%b%e%r% %2%0%1%3%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%M%i%s%c% %f%i%x%e%s% %f%o%r% %T%a%b%P%a%n%e%l% %e%d%g%e% %c%a%s%e%s% %(%e%m%p%t%y% %e%t%c%.%)%
%2%.%4%:% %V%e%r%s%i%o%n% %1%.%1%4% %(%S%e%p%t%e%m%b%e%r% %2%0%1%3%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d% %B%o%r%d%e%r%T%y%p%e% %p%r%o%p%e%r%t%y% %t%o% %B%o%x%P%a%n%e%l%
%F%i%x% %s%u%p%p%o%r%t% %f%o%r% %a%p%p%d%a%t%a% %i%n% %R%2%0%1%3%b%
%2%.%5%:% %V%e%r%s%i%o%n% %1%.%1%3% %(%A%p%r%i%l% %2%0%1%3%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%I%m%p%r%o%v%e% %h%a%n%d%l%i%n%g% %o%f% %c%o%l%o%r%b%a%r%s%
%F%i%x% %b%u%g% %i%n% %r%e%p%a%r%e%n%t%i%n%g% %c%h%i%l%d%r%e%n%
%F%i%x% %b%a%c%k%g%r%o%u%n%d% %c%o%l%o%r% %o%f% %B%o%x%P%a%n%e%l% %i%c%o%n%s%
%2%.%6%:% %V%e%r%s%i%o%n% %1%.%1%2% %(%F%e%b%r%u%a%r%y% %2%0%1%3%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%F%i%x% %b%u%g% %w%h%e%n% %a%x%e%s% %w%e%r%e% %d%e%l%e%t%e%d% %f%r%o%m% %l%a%y%o%u%t%s% %i%n% %R%2%0%1%3%a%
%I%m%p%r%o%v%e% %h%a%n%d%l%i%n%g% %o%f% %l%e%g%e%n%d%s%
%2%.%7%:% %V%e%r%s%i%o%n% %1%.%1%1% %(%D%e%c%e%m%b%e%r% %2%0%1%2%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%F%i%x% %b%u%g% %w%h%e%r%e% %a%x%e%s% %d%i%s%a%p%p%e%a%r% %f%r%o%m% %t%a%b%s%
%F%i%x% %b%u%g% %w%h%e%r%e% %a%x%e%s% %p%o%s%i%t%i%o%n% %i%s% %c%o%r%r%u%p%t%e%d% %i%f% %t%a%b%s% %b%e%c%o%m%e% %t%o%o% %s%m%a%l%l% %t%o% %d%r%a%w%
%2%.%8%:% %V%e%r%s%i%o%n% %1%.%1%0% %(%J%u%l%y% %2%0%1%1%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d% %T%a%b%E%n%a%b%l%e% %p%r%o%p%e%r%t%y% %f%o%r% %c%o%n%t%r%o%l%l%i%n%g% %t%h%e% %e%n%a%b%l%e%d% %s%t%a%t%e% %o%f% %i%n%d%i%v%i%d%u%a%l% %t%a%b%s%
%R%e%v%e%r%t% %t%o% %n%o%r%m%a%l%i%z%e%d% %u%n%i%t%s% %f%o%r% %a%l%l% %l%a%y%o%u%t%s%
%F%i%x% %b%u%g% %w%i%t%h% %m%o%u%s%e%-%o%v%e%r% %e%v%e%n%t%s%
%2%.%9%:% %V%e%r%s%i%o%n% %1%.%9% %(%F%e%b%r%u%a%r%y% %2%0%1%1%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d% %M%i%n%i%m%u%m%S%i%z%e% %p%r%o%p%e%r%t%i%e%s% %t%o% %B%o%x%e%s% %a%n%d% %G%r%i%d%s%
%M%i%n%o%r% %i%m%p%r%o%v%e%m%e%n%t%s% %t%o% %m%o%u%s%e%-%o%v%e%r% %a%n%d% %r%e%d%r%a%w% %s%p%e%e%d%
%F%i%x% %b%u%g% %w%i%t%h% %o%r%d%e%r%i%n%g% %o%f% %c%o%n%t%r%o%l%s% %t%h%a%t% %s%o%m%e%t%i%m%e%s% %p%r%e%v%e%n%t%e%d% %g%r%i%d% %d%i%v%i%d%e%r%s% %b%e%i%n%g% %d%r%a%g%g%e%d%
%2%.%1%0%:% %V%e%r%s%i%o%n% %1%.%8% %(%N%o%v%e%m%b%e%r% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d% %P%r%e%v%i%o%u%s%C%h%i%l%d% %e%v%e%n%t%-%d%a%t%a% %t%o% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %C%a%l%l%b%a%c%k%
%A%d%d% %g%u%a%r%d%s% %t%o% %p%r%e%v%e%n%t% %e%r%r%o%r%s% %w%h%e%n% %f%o%c%u%s% %i%s% %l%o%s%t% %w%h%i%l%s%t% %d%r%a%g%g%i%n%g% %a% %f%l%e%x%i%b%l%e% %d%i%v%i%d%e%r%
%F%i%x% %b%u%g% %w%h%e%n% %t%r%y%i%n%g% %t%o% %p%r%i%n%t% %f%i%g%u%r%e%s% %c%o%n%t%a%i%n%i%n%g% %f%l%e%x%i%b%l%e% %l%a%y%o%u%t%s%
%2%.%1%1%:% %V%e%r%s%i%o%n% %1%.%7% %(%O%c%t%o%b%e%r% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%I%m%p%r%o%v%e% %e%n%a%b%l%e% %b%e%h%a%v%i%o%r% %w%h%e%n% %u%s%e%d% %w%i%t%h% %c%u%s%t%o%m% %w%i%d%g%e%t%s%
%A%d%d% %a%n% %e%x%p%l%a%n%a%t%i%o%n% %o%f% %c%e%l%l% %a%r%r%a%y%s% %u%s%e%d% %t%o% %p%a%s%s% %e%x%t%r%a% %f%u%n%c%t%i%o%n% %a%r%g%u%m%e%n%t%s%
%F%i%x% %b%u%g% %i%n% %u%n%i%t%-%s%e%t%t%i%n%g% %o%f% %c%h%i%l%d%r%e%n% %a%d%d%e%d% %t%o% %l%a%y%o%u%t%s% %(%i%m%p%r%o%v%e%s% %a%x%e%s% %h%a%n%d%l%i%n%g%)%
%2%.%1%2%:% %V%e%r%s%i%o%n% %1%.%6% %(%S%e%p%t%e%m%b%e%r% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%M%a%k%e% %p%a%n%e%l% %"%S%e%l%e%c%t%e%d%C%h%i%l%d%"% %p%r%o%p%e%r%t%y% %o%b%s%e%r%v%a%b%l%e% %f%o%r% %u%s%e% %w%i%t%h% %e%v%e%n%t%.%p%r%o%p%l%i%s%t%e%n%e%r%
%F%i%x% %b%u%g% %w%i%t%h% %d%i%v%i%d%e%r%s% %d%i%s%a%p%p%e%a%r%i%n%g% %w%h%e%n% %G%r%i%d%F%l%e%x%'%s% %a%r%e% %n%e%s%t%e%d%
%F%i%x% %c%l%i%p%p%i%n%g% %b%u%g% %w%i%t%h% %T%a%b% %l%a%b%e%l% %t%e%x%t% %d%r%a%w%i%n%g% %o%u%t%s%i%d%e% %p%a%r%e%n%t% %c%o%n%t%a%i%n%e%r%
%2%.%1%3%:% %V%e%r%s%i%o%n% %1%.%5% %(%J%u%l%y% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d% %D%e%l%e%t%e%F%c%n% %p%r%o%p%e%r%t%y% %t%h%a%t% %a%l%l%o%w%s% %a% %u%s%e%r% %f%u%n%c%t%i%o%n% %t%o% %b%e% %c%a%l%l%e%d% %b%e%f%o%r%e% %a% %l%a%y%o%u%t% %i%s% %d%e%l%e%t%e%d%.%
%I%m%p%r%o%v%e% %D%o%c%k%i%n%g% %a%n%d% %M%i%n%i%m%i%z%i%n%g% %e%x%a%m%p%l%e%s%.%
%F%i%x% %f%l%e%x%i%b%l%e% %l%a%y%o%u%t% %d%i%v%i%d%e%r% %p%o%s%i%t%i%o%n%s% %w%h%e%n% %f%i%g%u%r%e% %u%n%i%t%s% %a%r%e% %n%o%t% %s%e%t% %t%o% %p%i%x%e%l%s% %(%e%.%g%.% %i%n% %G%U%I%D%E% %a%p%p%s%)%.%
%A%d%d% %d%o%c%u%m%e%n%t%a%t%i%o%n% %d%e%s%c%r%i%b%i%n%g% %h%o%w% %t%o% %u%s%e% %l%a%y%o%u%t%s% %a%s% %p%a%r%t% %o%f% %a% %G%U%I%D%E%-%b%u%i%l%t% %G%U%I%.%
%F%i%x% %a% %b%u%g% %w%h%e%r%e% %B%u%t%t%o%n%B%o%x%e%s% %c%a%u%s%e%d% %a% %n%e%w% %w%i%n%d%o%w% %t%o% %o%p%e%n% %i%f% %t%h%e%i%r% %p%a%r%e%n%t% %h%a%d% %H%a%n%d%l%e%V%i%s%i%b%i%l%i%t%y% %o%f%f%
%2%.%1%4%:% %V%e%r%s%i%o%n% %1%.%4% %(%J%u%l%y% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d% %a%b%i%l%i%t%y% %t%o% %s%e%t% %d%e%f%a%u%l%t%s% %f%o%r% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.% %S%e%e% %u%i%e%x%t%r%a%s%.%s%e%t% %.%
%2%.%1%5%:% %V%e%r%s%i%o%n% %1%.%3% %(%J%u%l%y% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%F%i%x% %b%u%g% %w%i%t%h% %u%i%e%x%t%r%a%s%.%P%a%n%e%l% %m%i%s%-%m%a%n%a%g%i%n%g% %i%t%s% %t%i%t%l%e% %w%h%e%n% %n%o%t% %s%p%e%c%i%f%i%e%d% %a%t% %c%o%n%s%t%r%u%c%t%i%o%n%
%F%i%x% %b%u%g% %w%i%t%h% %u%i%e%x%t%r%a%s%.%E%m%p%t%y% %w%i%d%g%e%t% %g%o%i%n%g% %o%u%t% %o%f% %s%c%o%p%e%
%F%i%x% %b%u%g% %w%h%e%n% %r%e%m%o%v%i%n%g% %a% %c%h%i%l%d% %f%r%o%m% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%
%P%r%e%v%e%n%t% %l%e%g%e%n%d%s% %b%e%i%n%g% %h%i%j%a%c%k%e%d% %b%y% %t%h%e% %l%a%y%o%u%t% %m%a%n%a%g%e%r%s%!%
%A%d%d% %o%p%t%i%o%n% %f%o%r% %s%h%o%w%i%n%g% %m%a%r%k%i%n%g%s% %o%n% %t%h%e% %m%o%v%a%b%l%e% %d%i%v%i%d%e%r%s% %f%o%r% %f%l%e%x%i%b%l%e% %c%o%n%t%a%i%n%e%r%s% %(% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %,% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %,% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %)%
%A%d%d% %d%o%c%u%m%e%n%t%a%t%i%o%n% %o%n% %b%u%i%l%d%i%n%g% %d%e%p%l%o%y%e%d% %e%x%e%c%t%u%a%b%l%e%s%
%T%i%d%y% %u%p% %h%e%l%p% %H%1% %l%i%n%e%s% %i%n% %a%l%l% %f%i%l%e%s%
%2%.%1%6%:% %V%e%r%s%i%o%n% %1%.%2% %(%J%u%n%e% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%E%n%s%u%r%e% %l%a%y%o%u%t% %o%b%j%e%c%t%s% %a%r%e% %d%e%l%e%t%e%d% %w%h%e%n% %t%h%e% %g%r%a%p%h%i%c%s% %a%r%e% %d%e%l%e%t%e%d%
%A%d%d% %"%a%n%c%e%s%t%o%r%"% %m%e%t%h%o%d%
%F%i%x% %b%u%g% %i%n% %G%r%i%d%F%l%e%x% %d%i%v%i%d%e%r% %p%o%s%i%t%i%o%n%i%n%g%
%R%e%m%o%v%e% %"%>%>%"% %f%r%o%m% %e%x%a%m%p%l%e%s% %i%n% %d%o%c%u%m%e%n%t%a%t%i%o%n%
%I%m%p%r%o%v%e% %f%o%r%m%a%t%t%i%n%g% %o%f% %e%x%a%m%p%l%e%s% %i%n% %d%o%c%u%m%e%n%t%a%t%i%o%n%
%2%.%1%7%:% %V%e%r%s%i%o%n% %1%.%1% %(%J%u%n%e% %2%0%1%0%)%
%U%p%d%a%t%e% %t%o% %t%h%e% %f%i%r%s%t% %r%e%l%e%a%s%e%:%
%A%d%d%e%d% %m%i%s%s%i%n%g% %l%a%y%o%u%t%R%o%o%t% %a%n%d% %l%a%y%o%u%t%V%e%r%s%i%o%n% %f%u%n%c%t%i%o%n%s%.%
%F%i%x% %v%a%r%i%o%u%s% %t%y%p%o%g%r%a%p%h%i%c%a%l% %e%r%r%o%r%s% %i%n% %t%h%e% %d%o%c%u%m%e%n%t%a%t%i%o%n%.%
%2%.%1%8%:% %V%e%r%s%i%o%n% %1%.%0% %(%M%a%y% %2%0%1%0%)%
%I%n%i%t%i%a%l% %p%u%b%l%i%c% %r%e%l%e%a%s%e%.% %I%n%c%l%u%d%e%s%:%
%P%a%n%e%l%s%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l% %:% %A%r%r%a%n%g%e% %a% %s%i%n%g%l%e% %e%l%e%m%e%n%t% %i%n%s%i%d%e% %a% %s%t%a%n%d%a%r%d% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l% %:% %S%h%o%w% %o%n%e% %e%l%e%m%e%n%t% %(%c%a%r%d%)% %f%r%o%m% %a% %l%i%s%t%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %:% %A%r%r%a%n%g%e% %a% %s%i%n%g%l%e% %e%l%e%m%e%n%t% %i%n% %a% %p%a%n%e%l% %w%i%t%h% %b%o%x%e%d% %t%i%t%l%e%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %f%o%r% %s%e%l%e%c%t%i%n%g% %w%h%i%c%h% %i%s% %v%i%s%i%b%l%e%
%B%o%x%e%s%
%u%i%e%x%t%r%a%s%.%H%B%o%x% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w%
%u%i%e%x%t%r%a%s%.%V%B%o%x% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %v%e%r%t%i%c%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %c%o%l%u%m%n%
%u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %v%e%r%t%i%c%a%l%l%y% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x% %:% %A%r%r%a%n%g%e% %b%u%t%t%o%n%s% %h%o%r%i%z%o%n%t%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w%
%u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %:% %A%r%r%a%n%g%e% %b%u%t%t%o%n%s% %v%e%r%t%i%c%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %c%o%l%u%m%n%
%3%:% %G%r%i%d%s%
%u%i%e%x%t%r%a%s%.%G%r%i%d% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %t%w%o% %d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d%
%u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x% %:% %A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %t%w%o% %d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?%
%[%T%o%p%]%
%I%n%s%t%a%l%l%a%t%i%o%n%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%2%.%h%t%m%l%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e%%%%5%.%2%:% %M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e% %%%%U%s%e%r% %g%u%i%d%e%
%5%.%2%:% %M%i%n%i%m%i%z%e% %a%n%d% %m%a%x%i%m%i%z%e%
%W%h%e%n% %a% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %h%a%s% %i%t%s% %"%M%i%n%i%m%i%z%e%F%c%n%"% %f%i%l%l%e%d% %i%n%,% %a% %m%i%n%i%m%i%z%e%/%m%a%x%i%m%i%z%e% %b%u%t%t%o%n% %(% %/% %)% %i%s% %s%h%o%w%n% %i%n% %t%h%e% %u%p%p%e%r%-%r%i%g%h%t% %o%f% %t%h%e% %t%i%t%l%e%-%b%a%r%.% %W%h%e%n% %t%h%e% %u%s%e%r% %c%l%i%c%k%s% %t%h%i%s% %b%u%t%t%o%n% %t%h%e% %s%p%e%c%i%f%i%e%d% %f%u%n%c%t%i%o%n% %i%s% %c%a%l%l%e%d%.% %S%i%n%c%e% %t%h%e% %b%e%h%a%v%i%o%u%r% %o%f% %t%h%e% %p%a%r%e%n%t% %c%o%n%t%a%i%n%e%r% %i%s% %d%i%f%f%e%r%e%n%t% %i%n% %d%i%f%f%e%r%e%n%t% %u%s%e%-%c%a%s%e%s%,% %i%t% %i%s% %u%p% %t%o% %t%h%e% %u%s%e%r% %t%o% %w%r%i%t%e% %s%o%m%e% %c%o%d%e% %t%o% %a%c%t%u%a%l%l%y% %r%e%s%i%z%e% %t%h%e% %p%a%n%e%l%.% %N%o%t%e% %t%h%a%t% %m%i%n%i%m%i%z%i%n%g% %a% %p%a%n%e%l% %t%o% %i%t%s% %t%i%t%l%e%-%b%a%r% %o%n%l%y% %r%e%a%l%l%y% %m%a%k%e%s% %s%e%n%s%e% %i%n%s%i%d%e% %a% %u%i%e%x%t%r%a%s%.%V%B%o%x% %o%r% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x% %.%
%T%h%e% %f%o%l%l%o%w%i%n%g% %s%i%m%p%l%e% %e%x%a%m%p%l%e% %s%h%o%w%s% %h%o%w% %t%o% %a%d%d% %m%i%n%i%m%i%z%e%/%m%a%x%i%m%i%z%e% %f%u%n%c%t%i%o%n%a%l%i%t%y% %t%o% %a% %b%o%x% %f%u%l%l% %o%f% %p%a%n%e%l%s%.% %S%a%v%e% %t%h%e% %c%o%d%e% %i%n%t%o% %a% %f%i%l%e% %c%a%l%l%e%d% %"%d%o%c%k%e%x%a%m%p%l%e%.%m%"% %t%o% %r%u%n% %i%t%.%
%(%T%h%e% %c%o%d%e% %f%o%r% %t%h%i%s% %e%x%a%m%p%l%e% %c%a%n% %b%e% %f%o%u%n%d% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%C%r%e%a%t%e% %t%h%e% %l%a%y%o%u%t% %w%i%t%h% %t%h%r%e%e% %p%a%n%e%l%s%
%O%p%e%n% %a% %n%e%w% %f%i%g%u%r%e% %w%i%n%d%o%w% %a%n%d% %a%d%d% %t%h%r%e%e% %p%a%n%e%l%s%.%
%f%u%n%c%t%i%o%n% %m%i%n%i%m%i%z%e%e%x%a%m%p%l%e%(%)% %w%i%d%t%h% %=% %2%0%0%;% %p%h%e%i%g%h%t%m%i%n% %=% %2%0%;% %p%h%e%i%g%h%t%m%a%x% %=% %1%0%0%;% %%% %C%r%e%a%t%e% %t%h%e% %w%i%n%d%o%w% %a%n%d% %m%a%i%n% %l%a%y%o%u%t% %f%i%g% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'% %,% %'%C%o%l%l%a%p%s%a%b%l%e% %G%U%I% %e%x%a%m%p%l%e%'% %,% %.%.%.% %'%N%u%m%b%e%r%T%i%t%l%e%'% %,% %'%o%f%f%'% %,% %.%.%.% %'%T%o%o%l%b%a%r%'% %,% %'%n%o%n%e%'% %,% %.%.%.% %'%M%e%n%u%B%a%r%'% %,% %'%n%o%n%e%'% %)%;% %b%o%x% %=% %u%i%e%x%t%r%a%s%.%V%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %f%i%g% %)%;% %p%a%n%e%l%{%1%}% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %1%'% %,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %p%a%n%e%l%{%2%}% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %2%'% %,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %p%a%n%e%l%{%3%}% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %3%'% %,% %'%P%a%r%e%n%t%'% %,% %b%o%x% %)%;% %s%e%t% %(% %b%o%x%,% %'%S%i%z%e%s%'%,% %p%h%e%i%g%h%t%m%a%x%*%o%n%e%s%(%1%,%3%)% %)%;% %%% %A%d%d% %s%o%m%e% %c%o%n%t%e%n%t%s% %.% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n% %1%'% %,% %'%P%a%r%e%n%t%'% %,% %p%a%n%e%l%{%1%}% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n% %2%'% %,% %'%P%a%r%e%n%t%'% %,% %p%a%n%e%l%{%2%}% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%S%t%y%l%e%'% %,% %'%P%u%s%h%B%u%t%t%o%n%'% %,% %'%S%t%r%i%n%g%'% %,% %'%B%u%t%t%o%n% %3%'% %,% %'%P%a%r%e%n%t%'% %,% %p%a%n%e%l%{%3%}% %)%;% %%% %R%e%s%i%z%e% %t%h%e% %w%i%n%d%o%w% %p%o%s% %=% %g%e%t% %(% %f%i%g%,% %'%P%o%s%i%t%i%o%n%'% %)%;% %s%e%t% %(% %f%i%g%,% %'%P%o%s%i%t%i%o%n%'% %,% %[%p%o%s%(%1%,%1%:%2%)%,%w%i%d%t%h%,%s%u%m%(%b%o%x%.%S%i%z%e%s%)%]% %)%;%
%A%d%d% %t%h%e% %m%i%n%i%m%i%z%e%/%m%a%x%i%m%i%z%e% %c%a%l%l%b%a%c%k%
%W%e% %s%e%t% %e%a%c%h% %p%a%n%e%l% %t%o% %c%a%l%l% %t%h%e% %s%a%m%e% %m%i%n%i%m%i%z%e%/%m%a%x%i%m%i%z%e% %f%u%n%c%t%i%o%n%.% %T%h%i%s% %f%u%n%c%t%i%o%n% %i%s% %n%e%s%t%e%d% %i%n%s%i%d%e% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %s%o% %t%h%a%t% %i%t% %h%a%s% %a%c%c%e%s%s% %t%o% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n%'%s% %v%a%r%i%a%b%l%e%s%.% %A% %b%e%t%t%e%r% %w%a%y% %t%o% %d%o% %t%h%i%s% %i%s% %t%o% %m%a%k%e% %t%h%e% %m%a%i%n% %f%u%n%c%t%i%o%n% %i%n%t%o% %a% %c%l%a%s%s%,% %b%u%t% %t%h%i%s% %n%e%s%t%e%d%-%f%u%n%c%t%i%o%n% %a%p%p%r%o%a%c%h% %i%s% %f%i%n%e% %f%o%r% %s%i%m%p%l%e% %a%p%p%l%i%c%a%t%i%o%n%s%.%
%N%o%t%e% %t%h%a%t% %a%s% %s%o%o%n% %a%s% %w%e% %s%e%t% %t%h%e% %"%M%i%n%i%m%i%z%e%F%c%n%"% %p%r%o%p%e%r%t%y% %t%h%e% %m%i%n%i%m%i%z%e%/%m%a%x%i%m%i%z%e% %i%c%o%n% %a%p%p%e%a%r%s% %i%n% %t%h%e% %t%o%p%-%r%i%g%h%t% %o%f% %e%a%c%h% %p%a%n%e%l%.% %W%e% %u%s%e% %a% %c%e%l%l%-%a%r%r%a%y% %t%o% %p%a%s%s% %a%n% %e%x%t%r%a% %a%r%g%u%m%e%n%t%,% %t%h%e% %p%a%n%e%l% %n%u%m%b%e%r%,% %t%o% %t%h%e% %m%i%n%i%m%i%z%e% %f%u%n%c%t%i%o%n%.% %T%h%i%s% %e%x%t%r%a% %a%r%g%u%m%e%n%t% %a%p%p%e%a%r%s% %a%f%t%e%r% %t%h%e% %u%s%u%a%l% %e%v%e%n%t%S%o%u%r%c%e% %a%n%d% %e%v%e%n%t%D%a%t%a% %a%r%g%u%m%e%n%t%s%.%
%%% %H%o%o%k% %u%p% %t%h%e% %m%i%n%i%m%i%z%e% %c%a%l%l%b%a%c%k% %.% %s%e%t% %(% %p%a%n%e%l%{%1%}%,% %'%M%i%n%i%m%i%z%e%F%c%n%'% %,% %{%@%n%M%i%n%i%m%i%z%e%,% %1%}% %)%;% %s%e%t% %(% %p%a%n%e%l%{%2%}%,% %'%M%i%n%i%m%i%z%e%F%c%n%'% %,% %{%@%n%M%i%n%i%m%i%z%e%,% %2%}% %)%;% %s%e%t% %(% %p%a%n%e%l%{%3%}%,% %'%M%i%n%i%m%i%z%e%F%c%n%'% %,% %{%@%n%M%i%n%i%m%i%z%e%,% %3%}% %)%;% %%%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%%%
%f%u%n%c%t%i%o%n% %n%M%i%n%i%m%i%z%e%(% %e%v%e%n%t%S%o%u%r%c%e%,% %e%v%e%n%t%D%a%t%a%,% %w%h%i%c%h%p%a%n%e%l% %)% %%% %A% %p%a%n%e%l% %h%a%s% %b%e%e%n% %m%a%x%i%m%i%z%e%d%/%m%i%n%i%m%i%z%e%d% %s% %=% %g%e%t% %(% %b%o%x%,% %'%S%i%z%e%s%'% %)%;% %p%o%s% %=% %g%e%t% %(% %f%i%g%,% %'%P%o%s%i%t%i%o%n%'% %)%;% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%.%I%s%M%i%n%i%m%i%z%e%d% %=% %~%p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%.%I%s%M%i%n%i%m%i%z%e%d%;% %i%f% %p%a%n%e%l%{%w%h%i%c%h%p%a%n%e%l%}%.%I%s%M%i%n%i%m%i%z%e%d% %s%(%w%h%i%c%h%p%a%n%e%l%)% %=% %p%h%e%i%g%h%t%m%i%n%;% %e%l%s%e% %s%(%w%h%i%c%h%p%a%n%e%l%)% %=% %p%h%e%i%g%h%t%m%a%x%;% %e%n%d% %s%e%t% %(% %b%o%x%,% %'%S%i%z%e%s%'% %,% %s% %)%;% %%% %R%e%s%i%z%e% %t%h%e% %f%i%g%u%r%e%,% %k%e%e%p%i%n%g% %t%h%e% %t%o%p% %s%t%a%t%i%o%n%a%r%y% %d%e%l%t%a%_%h%e%i%g%h%t% %=% %p%o%s%(%1%,%4%)% %-% %s%u%m% %(% %b%o%x%.%S%i%z%e%s% %)%;% %s%e%t% %(% %f%i%g%,% %'%P%o%s%i%t%i%o%n%'% %,% %p%o%s%(%1%,%:%)% %+% %[%0% %d%e%l%t%a%_%h%e%i%g%h%t% %0% %-%d%e%l%t%a%_%h%e%i%g%h%t%]% %)%;% %e%n%d% %%% %M%i%n%i%m%i%z%e% %e%n%d% %%% %M%a%i%n% %f%u%n%c%t%i%o%n%
%C%l%i%c%k% %t%h%e% %m%i%n%i%m%i%z%e% %b%u%t%t%o%n%s%
%M%i%n%i%m%i%z%i%n%g% %t%h%e% %m%i%d%d%l%e% %p%a%n%e%l% %c%a%u%s%e%s% %i%t% %t%o% %s%h%r%i%n%k% %t%o% %j%u%s%t% %i%t%s% %t%i%t%l%e%-%b%a%r% %a%n%d% %t%h%e% %w%i%n%d%o%w% %s%h%r%i%n%k%s% %a%c%c%o%r%d%i%n%g%l%y%.% %T%h%e% %"%M%i%n%i%m%i%z%e%"% %i%c%o%n% %i%s% %r%e%p%l%a%c%e%d% %b%y% %a% %"%M%a%x%i%m%i%s%e%"% %i%c%o%n%.%
%R%e%-%m%a%x%i%m%i%z%i%n%g% %t%h%e% %p%a%n%e%l% %w%o%u%l%d% %c%a%u%s%e% %i%t% %t%o% %r%e%-%a%p%p%e%a%r% %i%n% %f%u%l%l% %a%n%d% %t%h%e% %w%i%n%d%o%w% %t%o% %g%r%o%w% %a%g%a%i%n%.%
%C%o%n%t%e%x%t% %h%e%l%p%
%[%T%o%p%]%
%D%o%c%k% %a%n%d% %u%n%d%o%c%k%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%5%_%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%5%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%%%%G%e%t%t%i%n%g% %S%t%a%r%t%e%d% %%%%G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %1%.%1%7%
%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%
%T%h%i%s% %c%h%a%p%t%e%r% %g%i%v%e%s% %a%n% %o%v%e%r%v%i%e%w% %o%f% %t%h%i%s% %p%a%c%k%a%g%e%,% %i%n%c%l%u%d%i%n%g% %i%t%s% %p%u%r%p%o%s%e%,% %h%o%w% %t%o% %i%n%s%t%a%l%l% %i%t% %a%n%d% %a%n%y% %k%n%o%w%n% %i%s%s%u%e%s% %a%t% %t%h%e% %t%i%m%e% %o%f% %r%e%l%e%a%s%e%.%
%C%o%n%t%e%n%t%s%
%1%.% %W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?%
%2%.% %R%e%l%e%a%s%e% %N%o%t%e%s%
%3%.% %I%n%s%t%a%l%l%a%t%i%o%n%
%4%.% %S%u%p%p%o%r%t%
%5%.% %A%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%
%F%r%o%n%t% %p%a%g%e%
%[%T%o%p%]%
%W%h%a%t% %i%s% %t%h%e% %G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x%?%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%.%h%t%m%l%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%%%%1%.%2%:% %u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%1%.%2%:% %u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%
%S%h%o%w% %o%n%e% %e%l%e%m%e%n%t% %(%c%a%r%d%)% %f%r%o%m% %a% %l%i%s%t%
%o%b%j% %=% %u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%(% %)% %c%r%e%a%t%e%s% %a% %n%e%w% %c%a%r%d% %p%a%n%e%l% %w%h%i%c%h% %a%l%l%o%w%s% %s%e%l%e%c%t%i%o%n% %b%e%t%w%e%e%n% %t%h%e% %d%i%f%f%e%r%e%n%t% %c%h%i%l%d% %o%b%j%e%c%t%s% %c%o%n%t%a%i%n%e%d%,% %m%a%k%i%n%g% %t%h%e% %s%e%l%e%c%t%e%d% %c%h%i%l%d% %f%i%l%l% %t%h%e% %s%p%a%c%e% %a%v%a%i%l%a%b%l%e% %a%n%d% %a%l%l% %o%t%h%e%r% %c%h%i%l%d%r%e%n% %i%n%v%i%s%i%b%l%e%.% %T%h%i%s% %i%s% %c%o%m%m%o%n%l%y% %u%s%e%d% %f%o%r% %c%r%e%a%t%i%n%g% %w%i%z%a%r%d%s% %o%r% %q%u%i%c%k% %s%w%i%t%c%h%i%n%g% %b%e%t%w%e%e%n% %d%i%f%f%e%r%e%n%t% %v%i%e%w%s% %o%f% %a% %s%i%n%g%l%e% %d%a%t%a%-%s%e%t%.% %o%b%j% %=% %u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%(% %p%r%o%p% %,% %v%a%l%u%e% %,% %.%.%.% %)% %a%l%s%o% %s%e%t%s% %o%n%e% %o%r% %m%o%r%e% %p%r%o%p%e%r%t%y% %v%a%l%u%e%s%.%
%u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l% %p%r%o%p%e%r%t%i%e%s%
%P%r%o%p%e%r%t%y% %V%a%l%u%e% %D%e%s%c%r%i%p%t%i%o%n%
%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%
%c%o%l%o%r%s%p%e%c%
%T%h%e% %c%o%l%o%r% %t%o% %u%s%e% %f%o%r% %e%x%p%o%s%e%d% %a%r%e%a%s% %o%f% %t%h%e% %l%a%y%o%u%t% %b%a%c%k%g%r%o%u%n%d%.% %T%h%i%s% %c%a%n% %b%e% %a%n% %R%G%B% %t%r%i%p%l%e% %(%e%.%g%.% %[%0% %0% %1%]%)% %o%r% %a% %c%o%l%o%u%r% %n%a%m%e% %(%e%.%g%.% %'%b%'%)%.%
%B%e%i%n%g%D%e%l%e%t%e%d%
%[% %o%n% %|% %o%f%f% %]%
%i%s% %t%h%e% %o%b%j%e%c%t% %i%n% %t%h%e% %p%r%o%c%e%s%s% %o%f% %b%e%i%n%g% %d%e%l%e%t%e%d%.%
%C%h%i%l%d%r%e%n%
%h%a%n%d%l%e% %a%r%r%a%y%
%L%i%s%t% %o%f% %c%h%i%l%d% %o%b%j%e%c%t%s% %w%i%t%h%i%n% %t%h%i%s% %l%a%y%o%u%t% %(%n%o%t%e% %t%h%a%t% %t%h%i%s% %c%a%n% %o%n%l%y% %b%e% %s%e%t% %t%o% %p%e%r%m%u%t%a%t%i%o%n%s% %o%f% %i%t%s%e%l%f%)%.%
%D%e%l%e%t%e%F%c%n%
%f%u%n%c%t%i%o%n%_%h%a%n%d%l%e%
%F%u%n%c%t%i%o%n% %t%o% %c%a%l%l% %w%h%e%n% %t%h%e% %l%a%y%o%u%t% %i%s% %b%e%i%n%g% %d%e%l%e%t%e%d%
%E%n%a%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %i%n%t%e%r%a%c%t%i%o%n% %w%i%t%h% %t%h%i%s% %l%a%y%o%u%t% %e%n%a%b%l%e%d%?% %N%o%t%e% %t%h%a%t% %c%h%a%n%g%i%n%g% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %w%i%l%l% %c%a%u%s%e% %a%l%l% %c%h%i%l%d%r%e%n% %c%o%n%t%a%i%n%e%d% %t%o% %a%l%s%o% %b%e% %e%n%a%b%l%e%d%/%d%i%s%a%b%l%e%d%,% %h%o%w%e%v%e%r% %s%i%n%c%e% %t%h%e%y% %c%a%n% %b%e% %i%n%d%i%v%i%d%u%a%l%l%y% %r%e%-%e%n%a%b%l%e%d% %t%h%e% %s%t%a%t%e% %o%f% %t%h%i%s% %p%r%o%p%e%r%t%y% %d%o%e%s% %n%o%t% %r%e%f%l%e%c%t% %t%h%e% %s%t%a%t%e% %o%f% %t%h%e% %c%h%i%l%d%r%e%n%.% %S%e%e% %t%h%e% %e%n%a%b%l%e% %e%x%a%m%p%l%e% %f%o%r% %m%o%r%e% %d%e%t%a%i%l%s%.%
%P%a%d%d%i%n%g%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r%
%N%u%m%b%e%r% %o%f% %p%i%x%e%l%s% %o%f% %e%x%t%r%a% %s%p%a%c%e% %a%r%o%u%n%d% %t%h%e% %o%u%t%s%i%d%e% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%P%a%r%e%n%t%
%h%a%n%d%l%e%
%T%h%e% %h%a%n%d%l%e% %o%f% %t%h%e% %p%a%r%e%n%t% %f%i%g%u%r%e% %o%r% %c%o%n%t%a%i%n%e%r%.%
%P%o%s%i%t%i%o%n%
%[%x% %y% %w% %h%]%
%T%h%e% %p%o%s%i%t%i%o%n% %(%x%,%y%)% %a%n%d% %s%i%z%e% %(%w%,%h%)% %o%f% %t%h%e% %l%a%y%o%u%t%.%
%S%e%l%e%c%t%e%d%C%h%i%l%d%
%p%o%s%i%t%i%v%e% %i%n%t%e%g%e%r% %o%r% %e%m%p%t%y%
%W%h%i%c%h% %c%h%i%l%d% %i%s% %v%i%s%i%b%l%e%.%
%T%a%g%
%s%t%r%i%n%g%
%A% %s%t%r%i%n%g% %t%h%a%t% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%d%e%n%t%i%f%y% %t%h%i%s% %o%b%j%e%c%t% %l%a%t%e%r%.%
%T%y%p%e%
%s%t%r%i%n%g%
%t%h%e% %o%b%j%e%c%t% %t%y%p%e% %(%c%l%a%s%s%)%.%
%U%n%i%t%s%
%[% %i%n%c%h%e%s% %|% %c%e%n%t%i%m%e%t%e%r%s% %|% %n%o%r%m%a%l%i%z%e%d% %|% %p%o%i%n%t%s% %|% %p%i%x%e%l%s% %|% %c%h%a%r%a%c%t%e%r%s% %]%
%T%h%e% %u%n%i%t%s% %o%f% %m%e%a%s%u%r%e%m%e%n%t% %f%o%r% %p%o%s%i%t%i%o%n% %t%h%e% %l%a%y%o%u%t% %w%i%t%h%i%n% %i%t%s% %p%a%r%e%n%t%.%
%V%i%s%i%b%l%e%
%[% %o%n% %|% %o%f%f% %]%
%I%s% %t%h%e% %o%b%j%e%c%t% %v%i%s%i%b%l%e% %o%n% %s%c%r%e%e%n%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f% %=% %f%i%g%u%r%e% %(%)%;% %p% %=% %u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%P%a%d%d%i%n%g%'% %,% %5% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%r%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%b%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'% %,% %p%,% %'%B%a%c%k%g%r%o%u%n%d%'% %,% %'%g%'% %)%;% %p%.%S%e%l%e%c%t%e%d%C%h%i%l%d% %=% %2%;%
%S%e%e% %a%l%s%o%:%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %s%t%a%n%d%a%r%d% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %-% %f%o%r% %c%r%e%a%t%i%n%g% %a% %m%o%r%e% %b%o%x%y% %p%a%n%e%l%
%u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l% %-% %f%o%r% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %f%o%r% %s%e%l%e%c%t%i%n%g% %t%h%e% %v%i%s%i%b%l%e% %c%h%i%l%d%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%2%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%1%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%P%o%s%i%t%i%o%n% %v%s% %O%u%t%e%r%P%o%s%i%t%i%o%n%%%%2%.%1%:% %P%o%s%i%t%i%o%n% %v%s% %O%u%t%e%r%P%o%s%i%t%i%o%n% %%%%U%s%e%r% %g%u%i%d%e%
%2%.%1%:% %P%o%s%i%t%i%o%n% %v%s% %O%u%t%e%r%P%o%s%i%t%i%o%n%
%T%y%p%i%c%a%l%l%y% %o%n%e% %w%o%u%l%d% %p%o%s%i%t%i%o%n% %s%o%m%e% %a%x%e%s% %u%s%i%n%g% %t%h%e%i%r% %"%O%u%t%e%r%P%o%s%i%t%i%o%n%"% %s%o% %t%h%a%t% %t%h%e% %a%x%i%s% %l%a%b%e%l%s%,% %t%i%t%l%e% %a%n%d% %o%t%h%e%r% %a%n%n%o%t%a%t%i%o%n%s% %a%r%e% %a%l%l% %c%o%n%t%a%i%n%e%d% %w%i%t%h%i%n% %t%h%e% %s%p%e%c%i%f%i%e%d% %a%r%e%a%.% %S%o%m%e%t%i%m%e%s%,% %p%a%r%t%i%c%u%l%a%r%l%y% %i%f% %d%r%a%w%i%n%g% %i%m%a%g%e%s%,% %o%n%e% %m%i%g%h%t% %w%a%n%t% %t%o% %i%n%s%t%e%a%d% %m%a%k%e% %t%h%e% %a%x%e%s% %c%a%n%v%a%s% %(%t%h%e% %w%h%i%t%e% %b%i%t%!%)% %f%i%l%l% %t%h%e% %s%p%e%c%i%f%i%e%d% %a%r%e%a%.% %T%h%i%s% %i%s% %d%o%n%e% %b%y% %s%e%t%t%i%n%g% %t%h%e% %"%P%o%s%i%t%i%o%n%"% %p%r%o%p%e%r%t%y% %i%n%s%t%e%a%d%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f%i%g%u%r%e% %a%x%e%s% %(% %'%U%n%i%t%s%'%,% %'%N%o%r%m%a%l%i%z%e%d%'%,% %'%O%u%t%e%r%P%o%s%i%t%i%o%n%'%,% %[%0% %0% %1% %1%]% %)%
%f%i%g%u%r%e% %a%x%e%s% %(% %'%U%n%i%t%s%'%,% %'%N%o%r%m%a%l%i%z%e%d%'%,% %'%P%o%s%i%t%i%o%n%'%,% %[%0% %0% %1% %1%]% %)%
%P%o%s%i%t%i%o%n%i%n%g% %A%x%e%s%
%[%T%o%p%]%
%A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%2%_%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%2%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%%%%8%.%3%:% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e% %%%	%U%s%e%r% %g%u%i%d%e%
%8%.%3%:% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e%
%T%h%e% %s%e%c%o%n%d% %s%u%b%f%u%n%c%t%i%o%n% %w%e% %w%i%l%l% %l%o%o%k% %a%t%,% %u%p%d%a%t%e%I%n%t%e%r%f%a%c%e% %,% %u%s%e%s% %t%h%e% %c%u%r%r%e%n%t% %s%e%l%e%c%t%i%o%n%s% %t%o% %u%p%d%a%t%e% %t%h%e% %i%n%t%e%r%f%a%c%e%.% %T%h%i%s% %u%s%e%s% %t%h%e% %s%t%r%u%c%t%u%r%e% %"%d%a%t%a%"% %t%o% %u%p%d%a%t%e% %v%a%r%i%o%u%s% %p%a%r%t%s% %o%f% %t%h%e% %i%n%t%e%r%f%a%c%e%.% %F%o%r% %t%h%i%s% %s%i%m%p%l%e% %e%x%a%m%p%l%e% %t%h%i%s% %j%u%s%t% %m%e%a%n%s%:%
%1%.% %U%p%d%a%t%e% %t%h%e% %s%e%l%e%c%t%e%d% %i%t%e%m% %i%n% %t%h%e% %l%i%s%t%b%o%x%
%s%e%t%(% %g%u%i%.%L%i%s%t%B%o%x%,% %'%V%a%l%u%e%'% %,% %d%a%t%a%.%S%e%l%e%c%t%e%d%D%e%m%o% %)%;%
%2%.% %U%p%d%a%t%e% %t%h%e% %h%e%l%p% %b%u%t%t%o%n% %l%a%b%e%l%
%d%e%m%o%N%a%m%e% %=% %d%a%t%a%.%D%e%m%o%N%a%m%e%s%{% %d%a%t%a%.%S%e%l%e%c%t%e%d%D%e%m%o% %}%;%
%s%e%t% %(% %g%u%i%.%H%e%l%p%B%u%t%t%o%n%,% %'%S%t%r%i%n%g%'% %,% %[% %'%H%e%l%p% %f%o%r% %'% %,%d%e%m%o%N%a%m%e%]% %)%;%
%3%.% %U%p%d%a%t%e% %t%h%e% %v%i%e%w% %p%a%n%e%l% %t%i%t%l%e%
%s%e%t% %(% %g%u%i%.%V%i%e%w%P%a%n%e%l%,% %'%T%i%t%l%e%'% %,% %s%p%r%i%n%t%f% %(% %'%V%i%e%w%i%n%g%:% %%%s%'% %,% %d%e%m%o%N%a%m%e% %)% %)%;%
%4%.% %U%p%d%a%t%e% %t%h%e% %t%i%c%k%e%d% %m%e%n%u%
%m%e%n%u%s% %=% %g%e%t% %(% %g%u%i%.%V%i%e%w%M%e%n%u%,% %'%C%h%i%l%d%r%e%n%'% %)%;% %s%e%t% %(% %m%e%n%u%s%,% %'%C%h%e%c%k%e%d%'% %,% %'%o%f%f%'% %)%;% %%% %U%s%e% %t%h%e% %n%a%m%e% %t%o% %w%o%r%k% %o%u%t% %w%h%i%c%h% %m%e%n%u% %i%t%e%m% %s%h%o%u%l%d% %b%e% %t%i%c%k%e%d% %w%h%i%c%h%M%e%n%u% %=% %s%t%r%c%m%p%i% %(% %d%e%m%o%N%a%m%e%,% %g%e%t% %(% %m%e%n%u%s%,% %'%L%a%b%e%l%'% %)% %)%;% %s%e%t% %(% %m%e%n%u%s%(%w%h%i%c%h%M%e%n%u%)%,% %'%C%h%e%c%k%e%d%'% %,% %'%o%n%'% %)%;%
%I%n% %g%e%n%e%r%a%l%,% %t%h%i%s% %u%p%d%a%t%e% %f%u%n%c%t%i%o%n% %i%s% %c%a%l%l%e%d% %w%h%e%n%e%v%e%r% %t%h%e% %u%n%d%e%r%l%y%i%n%g% %s%h%a%r%e%d% %"%d%a%t%a%"% %s%t%r%u%c%t%u%r%e% %i%s% %c%h%a%n%g%e%d%.% %T%h%i%s% %h%a%p%p%e%n%s% %w%h%e%n% %t%h%e% %u%s%e%r% %c%l%i%c%k%s% %a% %b%u%t%t%o%n%,% %s%e%l%e%c%t%s% %a% %l%i%s%t% %i%t%e%m% %o%r% %a% %m%e%n%u%.% %N%e%x%t% %w%e% %w%i%l%l% %l%o%o%k% %a%t% %a% %t%y%p%i%c%a%l% %c%a%l%l%b%a%c%k%.%
%(%F%u%l%l% %s%o%u%r%c%e% %c%o%d%e% %f%o%r% %t%h%i%s% %a%p%p%l%i%c%a%t%i%o%n% %i%s% %a%v%a%i%l%a%b%l%e% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%c%r%e%a%t%e%I%n%t%e%r%f%a%c%e%
%[%T%o%p%]%
%o%n%L%i%s%t%S%e%l%e%c%t%i%o%n%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%8%_%3%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%8%_%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e% %%%
%G%U%I% %L%a%y%o%u%t% %T%o%o%l%b%o%x% %1%.%1%7%
%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%1%:% %P%a%n%e%l%s%
%1%.%1% %u%i%e%x%t%r%a%s%.%P%a%n%e%l%
%A%r%r%a%n%g%e% %a% %s%i%n%g%l%e% %e%l%e%m%e%n%t% %i%n%s%i%d%e% %a% %s%t%a%n%d%a%r%d% %p%a%n%e%l%
%1%.%2% %u%i%e%x%t%r%a%s%.%C%a%r%d%P%a%n%e%l%
%S%h%o%w% %o%n%e% %e%l%e%m%e%n%t% %(%c%a%r%d%)% %f%r%o%m% %a% %l%i%s%t%
%1%.%3% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l%
%A%r%r%a%n%g%e% %a% %s%i%n%g%l%e% %e%l%e%m%e%n%t% %i%n% %a% %p%a%n%e%l% %w%i%t%h% %b%o%x%e%d% %t%i%t%l%e%
%1%.%4% %u%i%e%x%t%r%a%s%.%T%a%b%P%a%n%e%l%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %p%a%n%e%l% %w%i%t%h% %t%a%b%s% %f%o%r% %s%e%l%e%c%t%i%n%g% %w%h%i%c%h% %i%s% %v%i%s%i%b%l%e%
%2%:% %B%o%x%e%s%
%2%.%1% %u%i%e%x%t%r%a%s%.%H%B%o%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w%
%2%.%2% %u%i%e%x%t%r%a%s%.%V%B%o%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %v%e%r%t%i%c%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %c%o%l%u%m%n%
%2%.%3% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %h%o%r%i%z%o%n%t%a%l%l%y% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%2%.%4% %u%i%e%x%t%r%a%s%.%V%B%o%x%F%l%e%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %v%e%r%t%i%c%a%l%l%y% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%2%.%5% %u%i%e%x%t%r%a%s%.%H%B%u%t%t%o%n%B%o%x%
%A%r%r%a%n%g%e% %b%u%t%t%o%n%s% %h%o%r%i%z%o%n%t%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %r%o%w%
%2%.%6% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x%
%A%r%r%a%n%g%e% %b%u%t%t%o%n%s% %v%e%r%t%i%c%a%l%l%y% %i%n% %a% %s%i%n%g%l%e% %c%o%l%u%m%n%
%3%:% %G%r%i%d%s%
%3%.%1% %u%i%e%x%t%r%a%s%.%G%r%i%d%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %t%w%o% %d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d%
%3%.%2% %u%i%e%x%t%r%a%s%.%G%r%i%d%F%l%e%x%
%A%r%r%a%n%g%e% %e%l%e%m%e%n%t%s% %i%n% %a% %t%w%o% %d%i%m%e%n%s%i%o%n%a%l% %g%r%i%d% %w%i%t%h% %d%r%a%g%g%a%b%l%e% %d%i%v%i%d%e%r%s%
%4%:% %O%t%h%e%r% %f%u%n%c%t%i%o%n%s%
%4%.%1% %u%i%e%x%t%r%a%s%.%E%m%p%t%y%
%C%r%e%a%t%e% %a%n% %e%m%p%t%y% %s%p%a%c%e%
%4%.%2% %l%a%y%o%u%t%V%e%r%s%i%o%n%
%G%e%t% %t%h%e% %t%o%o%l%b%o%x% %v%e%r%s%i%o%n% %n%u%m%b%e%r% %a%n%d% %d%a%t%e%
%4%.%3% %l%a%y%o%u%t%R%o%o%t%
%R%e%t%u%r%n% %t%h%e% %f%o%l%d%e%r% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %G%U%I% %l%a%y%o%u%t% %t%o%o%l%b%o%x%
%4%.%4% %u%i%e%x%t%r%a%s%.%s%e%t%
%S%t%o%r%e% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %i%n% %a% %p%a%r%e%n%t% %o%b%j%e%c%t%
%4%.%5% %u%i%e%x%t%r%a%s%.%g%e%t%
%R%e%t%r%i%e%v%e% %a% %d%e%f%a%u%l%t% %p%r%o%p%e%r%t%y% %v%a%l%u%e% %f%r%o%m% %a% %p%a%r%e%n%t% %o%b%j%e%c%t%
%F%r%o%n%t% %p%a%g%e%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%P%a%n%e%l%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s%%%%2%.%2%:% %A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s% %%%%U%s%e%r% %g%u%i%d%e%
%2%.%2%:% %A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s%
%(%T%h%e% %c%o%d%e% %f%o%r% %t%h%i%s% %e%x%a%m%p%l%e% %c%a%n% %b%e% %f%o%u%n%d% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%W%h%e%n% %u%s%i%n%g% %l%a%y%o%u%t%s% %t%o% %p%o%s%i%t%i%o%n% %a%x%e%s%,% %t%h%e% %p%o%s%i%t%i%o%n% %p%r%o%p%e%r%t%y% %i%s% %s%e%t% %b%y% %t%h%e% %l%a%y%o%u%t%,% %n%o%t% %t%h%e% %u%s%e%r%.% %W%h%e%t%h%e%r% %t%h%e% %"%P%o%s%i%t%i%o%n%"% %o%r% %"%O%u%t%e%r%P%o%s%i%t%i%o%n%"% %p%r%o%p%e%r%t%y% %i%s% %u%s%e%d% %i%s% %d%e%t%e%r%m%i%n%e%d% %b%y% %t%h%e% %"%A%c%t%i%v%e%P%o%s%i%t%i%o%n%P%r%o%p%e%r%t%y%"% %p%r%o%p%e%r%t%y% %o%f% %t%h%e% %a%x%e%s% %.% %N%o%t%e% %t%h%a%t% %t%h%e% %d%e%f%a%u%l%t% %s%e%t%t%i%n%g% %i%s% %"%O%u%t%e%r%P%o%s%i%t%i%o%n%"%.%
%T%h%e% %f%o%l%l%o%w%i%n%g% %e%x%a%m%p%l%e% %i%l%l%u%s%t%r%a%t%e%s% %t%h%e% %t%w%o% %u%s%a%g%e%s%.%
%O%p%e%n% %a% %w%i%n%d%o%w%
%O%p%e%n% %a% %n%e%w% %f%i%g%u%r%e% %w%i%n%d%o%w% %a%n%d% %r%e%m%o%v%e% %t%h%e% %t%o%o%l%b%a%r% %a%n%d% %m%e%n%u%s%.%
%w%i%n%d%o%w% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'%,% %'%A%x%e%s% %i%n%s%i%d%e% %l%a%y%o%u%t%s%'%,% %.%.%.% %'%M%e%n%u%B%a%r%'%,% %'%n%o%n%e%'%,% %.%.%.% %'%T%o%o%l%b%a%r%'%,% %'%n%o%n%e%'%,% %.%.%.% %'%N%u%m%b%e%r%T%i%t%l%e%'%,% %'%o%f%f%'% %)%;%
%C%r%e%a%t%e% %t%h%e% %l%a%y%o%u%t%
%T%h%e% %l%a%y%o%u%t% %i%n%v%o%l%v%e%s% %t%w%o% %a%x%e%s% %s%i%d%e% %b%y% %s%i%d%e%.% %T%h%i%s% %i%s% %d%o%n%e% %u%s%i%n%g% %a% %f%l%e%x%i%b%l%e% %h%o%r%i%z%o%n%t%a%l% %b%o%x%.% %T%h%e% %l%e%f%t%-%h%a%n%d% %a%x%e%s% %i%s% %l%e%f%t% %w%i%t%h% %t%h%e% %A%c%t%i%v%e%P%o%s%i%t%i%o%n%P%r%o%p%e%r%t%y% %s%e%t% %t%o% %"%O%u%t%e%r%P%o%s%i%t%i%o%n%"%,% %b%u%t% %t%h%e% %r%i%g%h%t%-%h%a%n%d% %a%x%e%s% %i%s% %s%w%i%t%c%h%e%d% %t%o% %u%s%e% %"%P%o%s%i%t%i%o%n%"%.%
%h%b%o%x% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x%F%l%e%x% %(%'%P%a%r%e%n%t%'%,% %w%i%n%d%o%w%,% %'%S%p%a%c%i%n%g%'%,% %3%)%;% %a%x%e%s%1% %=% %a%x%e%s% %(% %'%P%a%r%e%n%t%'%,% %h%b%o%x%,% %.%.%.% %'%A%c%t%i%v%e%P%o%s%i%t%i%o%n%P%r%o%p%e%r%t%y%'%,% %'%O%u%t%e%r%P%o%s%i%t%i%o%n%'% %)%;% %a%x%e%s%2% %=% %a%x%e%s% %(% %'%P%a%r%e%n%t%'%,% %h%b%o%x%,% %.%.%.% %'%A%c%t%i%v%e%P%o%s%i%t%i%o%n%P%r%o%p%e%r%t%y%'%,% %'%P%o%s%i%t%i%o%n%'% %)%;% %s%e%t%(% %h%b%o%x%,% %'%S%i%z%e%s%'%,% %[%-%2% %-%1%]% %)%;%
%F%i%l%l% %t%h%e% %a%x%e%s%
%U%s%i%n%g% %"%O%u%t%e%r%P%o%s%i%t%i%o%n%"% %(%l%e%f%t%-%h%a%n%d% %a%x%e%s%)% %i%s% %t%h%e% %n%o%r%m%a%l% %m%o%d%e% %a%n%d% %l%o%o%k%s% %g%o%o%d% %f%o%r% %v%i%r%t%u%a%l%l%y% %a%n%y% %p%l%o%t% %t%y%p%e%.% %U%s%i%n%g% %"%P%o%s%i%t%i%o%n%"% %i%s% %o%n%l%y% %r%e%a%l%l%y% %u%s%e%f%u%l% %f%o%r% %2%D% %p%l%o%t%s% %w%i%t%h% %t%h%e% %a%x%e%s% %t%u%r%n%e%d% %o%f%f%,% %s%u%c%h% %a%s% %i%m%a%g%e%s%.%
%x% %=% %m%e%m%b%r%a%n%e%(% %1%,% %1%5% %)%;% %s%u%r%f% %(% %a%x%e%s%1%,% %x% %)%;% %l%i%g%h%t%i%n%g% %(% %a%x%e%s%1%,% %'%g%o%u%r%a%u%d%'% %)%;% %s%h%a%d%i%n%g% %(% %a%x%e%s%1%,% %'%i%n%t%e%r%p%'% %)%;% %l% %=% %l%i%g%h%t% %(% %'%P%a%r%e%n%t%'%,% %a%x%e%s%1% %)%;% %c%a%m%l%i%g%h%t% %(% %l%,% %'%h%e%a%d%'% %)%;% %a%x%i%s% %(% %a%x%e%s%1%,% %'%t%i%g%h%t%'% %)%;% %i%m%a%g%e%s%c% %(% %x%,% %'%P%a%r%e%n%t%'%,% %a%x%e%s%2% %)%;% %s%e%t%(% %a%x%e%s%2%,% %'%x%t%i%c%k%l%a%b%e%l%'%,% %[%]%,% %'%y%t%i%c%k%l%a%b%e%l%'%,% %[%]% %)%;%
%P%o%s%i%t%i%o%n% %v%s% %O%u%t%e%r%P%o%s%i%t%i%o%n%
%[%T%o%p%]%
%E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%2%_%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%2%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%E%n%a%b%l%e% %e%x%a%m%p%l%e%%%%3%.%1%:% %E%n%a%b%l%e% %e%x%a%m%p%l%e% %%%	%U%s%e%r% %g%u%i%d%e%
%3%.%1%:% %E%n%a%b%l%e% %e%x%a%m%p%l%e%
%(%T%h%e% %c%o%d%e% %f%o%r% %t%h%i%s% %e%x%a%m%p%l%e% %c%a%n% %b%e% %f%o%u%n%d% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%T%h%i%s% %e%x%a%m%p%l%e% %s%h%o%w%s% %h%o%w% %t%h%e% %e%n%a%b%l%e% %p%r%o%p%e%r%t%y% %c%a%n% %b%e% %u%s%e%d% %t%o% %i%n%d%i%c%a%t%e% %t%o% %u%s%e%r%s% %w%h%i%c%h% %b%i%t%s% %o%f% %a%n% %i%n%t%e%r%f%a%c%e% %a%r%e% %c%u%r%r%e%n%t%l%y% %r%e%l%e%v%a%n%t%.% %T%h%i%s% %i%s% %p%a%r%t%i%c%u%l%a%r%l%y% %u%s%e%f%u%l% %f%o%r% %p%r%e%v%e%n%t%i%n%g% %u%n%w%a%n%t%e%d% %c%l%i%c%k%i%n%g% %d%u%r%i%n%g% %l%o%n%g% %c%a%l%c%u%l%a%t%i%o%n%s%,% %l%o%a%d%i%n%g% %a%n%d% %s%a%v%i%n%g%!%
%O%p%e%n% %a% %w%i%n%d%o%w% %a%n%d% %a%d%d% %a% %p%a%n%e%l%
%f%i%g% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'%,% %'%E%n%a%b%l%e% %e%x%a%m%p%l%e%'%,% %.%.%.% %'%P%o%s%i%t%i%o%n%'%,% %[%1%0%0% %1%0%0% %1%5%0% %2%5%0%]%,% %.%.%.% %'%M%e%n%u%B%a%r%'%,% %'%n%o%n%e%'%,% %.%.%.% %'%T%o%o%l%B%a%r%'%,% %'%n%o%n%e%'%,% %.%.%.% %'%N%u%m%b%e%r%T%i%t%l%e%'%,% %'%o%f%f%'% %)%;% %p%a%n%e%l% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'%,% %f%i%g%,% %'%T%i%t%l%e%'%,% %'%P%a%n%e%l%'% %)%;%
%P%u%t% %s%o%m%e% %b%u%t%t%o%n%s% %i%n%s%i%d%e% %t%h%e% %p%a%n%e%l%
%b%o%x% %=% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %p%a%n%e%l% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %3%'%,% %'%E%n%a%b%l%e%'%,% %'%o%f%f%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %4%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %5%'%,% %'%E%n%a%b%l%e%'%,% %'%o%f%f%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %6%'% %)%;%
%T%r%y% %d%i%s%a%b%l%i%n%g% %t%h%e% %p%a%n%e%l%
%s%e%t%(% %p%a%n%e%l%,% %'%E%n%a%b%l%e%'%,% %'%o%f%f%'% %)%;%
%T%r%y% %e%n%a%b%l%i%n%g% %t%h%e% %p%a%n%e%l%.% %N%o%t%e% %t%h%a%t% %t%h%e% %o%r%i%g%i%n%a%l% %"%e%n%a%b%l%e%"% %s%t%a%t%e% %o%f% %e%a%c%h% %b%u%t%t%o%n% %i%s% %r%e%m%e%m%b%e%r%e%d%.%
%s%e%t%(% %p%a%n%e%l%,% %'%E%n%a%b%l%e%'%,% %'%o%n%'% %)%;%
%E%n%a%b%l%e% %a%n%d% %V%i%s%i%b%l%e%
%[%T%o%p%]%
%V%i%s%i%b%l%e% %e%x%a%m%p%l%e%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%3%_%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%3%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%V%i%s%i%b%l%e% %e%x%a%m%p%l%e%%%%3%.%2%:% %V%i%s%i%b%l%e% %e%x%a%m%p%l%e% %%%%U%s%e%r% %g%u%i%d%e%
%3%.%2%:% %V%i%s%i%b%l%e% %e%x%a%m%p%l%e%
%(%T%h%e% %c%o%d%e% %f%o%r% %t%h%i%s% %e%x%a%m%p%l%e% %c%a%n% %b%e% %f%o%u%n%d% %h%e%r%e%:% %[% %v%i%e%w% %|% %e%d%i%t% %|% %r%u%n% %]% %)%
%T%h%i%s% %e%x%a%m%p%l%e% %s%h%o%w%s% %h%o%w% %t%h%e% %v%i%s%i%b%l%e% %p%r%o%p%e%r%t%y% %c%a%n% %b%e% %u%s%e%d% %t%o% %h%i%d%e% %w%h%o%l%e% %s%e%c%t%i%o%n%s% %o%f% %a%n% %i%n%t%e%r%f%a%c%e%.%
%O%p%e%n% %a% %w%i%n%d%o%w% %a%n%d% %a%d%d% %a% %p%a%n%e%l%
%f%i%g% %=% %f%i%g%u%r%e% %(% %'%N%a%m%e%'%,% %'%V%i%s%i%b%l%e% %e%x%a%m%p%l%e%'%,% %.%.%.% %'%P%o%s%i%t%i%o%n%'%,% %[%1%0%0% %1%0%0% %1%5%0% %2%5%0%]%,% %.%.%.% %'%M%e%n%u%B%a%r%'%,% %'%n%o%n%e%'%,% %.%.%.% %'%T%o%o%l%B%a%r%'%,% %'%n%o%n%e%'%,% %.%.%.% %'%N%u%m%b%e%r%T%i%t%l%e%'%,% %'%o%f%f%'% %)%;% %p%a%n%e%l% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'%,% %f%i%g%,% %'%T%i%t%l%e%'%,% %'%P%a%n%e%l%'% %)%;%
%P%u%t% %s%o%m%e% %b%u%t%t%o%n%s% %i%n%s%i%d%e% %t%h%e% %p%a%n%e%l%
%b%o%x% %=% %u%i%e%x%t%r%a%s%.%V%B%u%t%t%o%n%B%o%x% %(% %'%P%a%r%e%n%t%'%,% %p%a%n%e%l% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %1%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %2%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %3%'%,% %'%V%i%s%i%b%l%e%'%,% %'%o%f%f%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %4%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %5%'%,% %'%V%i%s%i%b%l%e%'%,% %'%o%f%f%'% %)%;% %u%i%c%o%n%t%r%o%l% %(% %'%P%a%r%e%n%t%'%,% %b%o%x%,% %'%S%t%r%i%n%g%'%,% %'%B%u%t%t%o%n% %6%'% %)%;%
%T%r%y% %h%i%d%i%n%g% %t%h%e% %p%a%n%e%l%
%s%e%t%(% %p%a%n%e%l%,% %'%V%i%s%i%b%l%e%'%,% %'%o%f%f%'% %)%;%
%T%r%y% %s%h%o%w%i%n%g% %t%h%e% %p%a%n%e%l%.% %N%o%t%e% %t%h%a%t% %t%h%e% %o%r%i%g%i%n%a%l% %"%v%i%s%i%b%l%e%"% %s%t%a%t%e% %o%f% %e%a%c%h% %b%u%t%t%o%n% %i%s% %r%e%m%e%m%b%e%r%e%d%.%
%s%e%t%(% %p%a%n%e%l%,% %'%V%i%s%i%b%l%e%'%,% %'%o%n%'% %)%;%
%E%n%a%b%l%e% %e%x%a%m%p%l%e%
%[%T%o%p%]%
%U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%3%_%2%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%3%_%2%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%
%l%a%y%o%u%t%R%o%o%t%%%%4%.%3%:% %l%a%y%o%u%t%R%o%o%t% %%%%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%
%4%.%3%:% %l%a%y%o%u%t%R%o%o%t%
%r%e%t%u%r%n%s% %t%h%e% %f%o%l%d%e%r% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %G%U%I% %l%a%y%o%u%t% %t%o%o%l%b%o%x%
%f%o%l%d%e%r% %=% %l%a%y%o%u%t%R%o%o%t%(% %)% %r%e%t%u%r%n%s% %t%h%e% %f%u%l%l% %p%a%t%h% %t%o% %t%h%e% %f%o%l%d%e%r% %c%o%n%t%a%i%n%i%n%g% %t%h%e% %G%U%I% %l%a%y%o%u%t% %t%o%o%l%b%o%x%.%
%F%o%r% %e%x%a%m%p%l%e%:%
%f%o%l%d%e%r% %=% %l%a%y%o%u%t%R%o%o%t% %(%)%
%f%o%l%d%e%r% %=% %'%C%:%\%T%e%m%p%\%L%a%y%o%u%t%T%o%o%l%b%o%x%1%.%0%'%
%S%e%e% %a%l%s%o%:%
%l%a%y%o%u%t%V%e%r%s%i%o%n% %-% %f%o%r% %g%e%t%t%i%n%g% %t%h%e% %t%o%o%l%b%o%x% %v%e%r%s%i%o%n% %n%u%m%b%e%r% %a%n%d% %d%a%t%e%
%l%a%y%o%u%t%V%e%r%s%i%o%n%
%[%T%o%p%]%
%u%i%e%x%t%r%a%s%.%s%e%t%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%3%.%h%t%m%l%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%4%_%3%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%%S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %o%n%e% %w%i%n%d%o%w%%%$%4%.%1%:% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %o%n%e% %w%i%n%d%o%w% %%%%U%s%e%r% %g%u%i%d%e%
%4%.%1%:% %S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %o%n%e% %w%i%n%d%o%w%
%T%h%e% %u%s%u%a%l% %u%s%e% %o%f% %d%e%f%a%u%l%t%s% %i%s% %t%o% %m%o%d%i%f%y% %t%h%e% %c%o%l%o%r%s%,% %f%o%n%t%s% %o%r% %o%t%h%e%r% %s%e%t%t%i%n%g%s% %u%s%e%d% %f%o%r% %a% %p%a%r%t%i%c%u%l%a%r% %a%p%p%l%i%c%a%t%i%o%n% %w%i%n%d%o%w%.% %T%h%e% %d%e%f%a%u%l%t%s% %a%r%e% %t%h%e%r%e%f%o%r%e% %c%h%a%n%g%e%d% %o%n% %t%h%e% %f%i%g%u%r%e% %o%b%j%e%c%t% %u%s%i%n%g% %t%h%e% %u%i%e%x%t%r%a%s%.%s%e%t% %f%u%n%c%t%i%o%n%.%
%T%h%e% %e%x%a%m%p%l%e% %b%e%l%o%w% %s%e%t%s% %n%e%w% %d%e%f%a%u%l%t%s% %f%o%r% %p%a%n%e%l% %t%i%t%l%e%-%b%a%r% %c%o%l%o%r% %a%n%d% %f%o%n%t% %o%n% %t%h%e% %w%i%n%d%o%w% %b%e%f%o%r%e% %t%w%o% %p%a%n%e%l%s% %a%r%e% %a%d%d%e%d%.%
%f% %=% %f%i%g%u%r%e% %(%)%;% %u%i%e%x%t%r%a%s%.%s%e%t% %(% %f%,% %'%D%e%f%a%u%l%t%H%B%o%x%B%a%c%k%g%r%o%u%n%d%C%o%l%o%r%'% %,% %[%0%.%3% %0%.%3% %0%.%3%]% %)%;% %u%i%e%x%t%r%a%s%.%s%e%t% %(% %f%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%T%i%t%l%e%C%o%l%o%r%'% %,% %'%y%'% %)%;% %u%i%e%x%t%r%a%s%.%s%e%t% %(% %f%,% %'%D%e%f%a%u%l%t%B%o%x%P%a%n%e%l%F%o%n%t%S%i%z%e%'% %,% %1%6% %)%;% %h% %=% %u%i%e%x%t%r%a%s%.%H%B%o%x% %(% %'%P%a%r%e%n%t%'% %,% %f%,% %'%P%a%d%d%i%n%g%'% %,% %1%0%,% %'%S%p%a%c%i%n%g%'% %,% %1%0% %)%;% %p%1% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %h%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %1%'% %)%;% %p%2% %=% %u%i%e%x%t%r%a%s%.%B%o%x%P%a%n%e%l% %(% %'%P%a%r%e%n%t%'% %,% %h%,% %'%T%i%t%l%e%'% %,% %'%P%a%n%e%l% %2%'% %)%;%
%U%s%i%n%g% %p%r%o%p%e%r%t%y% %d%e%f%a%u%l%t%s%
%[%T%o%p%]%
%S%e%t%t%i%n%g% %d%e%f%a%u%l%t%s% %f%o%r% %a%l%l% %w%i%n%d%o%w%s%
%%% %2%0%1%4% %T%h%e% %M%a%t%h%W%o%r%k%s% %L%t%d% %%% %T%e%r%m%s% %o%f% %U%s%e% %%% %P%a%t%e%n%t%s% %%% %T%r%a%d%e%m%a%r%k%s%% %%0%% %%0%% %%U%s%e%r% %g%u%i%d%e%4%_%1%.%h%t%m%l%% %%U%s%e%r% %g%u%i%d%e%4%_%1%.%h%t%m%l%% %
%l%a%y%o%u%t%H%e%l%p%%%%% % % % % % % %% % % %% % % %% % %%%%%% % % %% %%a%x%i%s% %%%	%%%%% %%c%o%m%b%i%n%a%t%i%o%n% %%%%%%%	% %%d%o%n%e% %%%%%%%	% %%g%a%p%s% %%%%%%%	% %%i%t%a%l%i%c% %%%%%%%	% %%m%u%t%l%i%p%l%e% %%%%%	%%	% %%p%r%i%n%t% %%%	%%%%	% %%s%h%a%d%o%w%c%o%l%o%r% %%%%%%%	% %%t%o%o%l%s% %%%%%%%	% %%y%e%a%r%s% %%%
%%%%	% %%s%i%z%e%s%%%%%%%%% %%a%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%%%%%%%%	%%%%% % % % % % %%Z% % % %% % % %% %%0% %% % %.%%%2% %%1%H%%%5% %%%% %%1% %.%%%J%%%0% %%P%%%%%0% %%%%%%5% %%%%%%1% %%%%%%2% %%%%%%3% %%%%%%0% %%%%%%4% %%%%%%5% %%%%%%0% %%%%%%6% %%%%%%7% %%%	%%%5% %%%
%%%8% %%%%%%9%0% %%%% %%2% %(%%%?%%%0% %%E%%%%%0% %%%%%%1%0% %%%	%%%1% %%%%%%2% %%%%%%3% %%%%%%4% %7%%
%8%%%5% %%A%[%%%0% %%%%%%8% %%%%%%d% %%%% %%3% %%%%/%%%0% %%2%W%%%5% %%%% %%4% %%%%"%%%6% %%%%6% %%5% %!%%%+%%%0% %%1%H%%%2% %%%% %%6% %
%%% %%7% %%%% %%8% %%%	% %%9% %%%%%%0% %%%%%%6% %%%% %%a% %/%%%W%%%b%i%l%i%t%y% %%]%%%%%l%e% %%%%%%o%u%t% %%%%%%v%e% %%%%%%c%c%e%s%s% %%%%%	%i%d%e%n%t%a%l%l%y% %%%%%%o%r%d%i%n%g%l%y% %%%%%%u%n%t% %%%%%%h%i%e%v%e% %%%%%%i%n%g% %%%%%%k%n%o%w%l%e%d%g%e%m%e%n%t%s% %%%%%%t%i%v%e%p%o%s%i%t%i%o%n%p%r%o%p%e%r%t%y% %%%%%%u%a%l%l%y% %%%%%%d%d% %%%%%%e%d% %
%%%%%i%n%g% %%%%%%t%i%o%n% %%%%%%s% %%%%%%j%u%s%t% %%%%%%m%e%n%t%s% %%%%%%v%a%n%c%e%d% %%%%%%t%a%g%e% %%%%%%i%c%e% %%%%%%f%f%e%c%t% %%%%%%t%e%r% %%%%%%g%a%i%n% %%%%%%l%l% %%%%%%%%o%w% %%(%;%%%s% %%%%%%o%n%g% %%%%%
%p%h%a%b%e%t%i%c%a%l% %%%%%%s%o% %%%%&%%%t%e%r%n%a%t%i%v%e%l%y% %%)%D%%%s% %%%%%%h%o%u%g%h% %%%%%%w%a%y%s% %%%%%%n% %%%%%%%c%e%s%t%o%r% %%%"%%%d% %2%%%R%%%g%l%e% %%[%%%%	%n%o%t%a%t%i%o%n%s% %%%%%%o%t%h%e%r% %%%%%%y% %%%%%%t%h%i%n%g% %%%%%%p%p%d%a%t%a% %%%%%%e%a%r% %%%%%%s% %%%%%%n%d%e%d% %%%%%%l%i%c%a%t%i%o%n% %%%%%%s% %%%%%%r%o%a%c%h% %%	%%%%s% %%%%%%r%i%l% %%%%%%r%e% %%%%%%%%a% %%(%4%%%s% %%%
%%%g%u%m%e%n%t% %%%%%%s% %%%%%%i%a%l% %%%%%%o%u%n%d% %%%%%%r%a%n%g%e% %%%%%%%d% %%%'%%%m%e%n%t% %%%%%%s% %%%!%%%s% %%%%%%i%n%g% %%%%%%y% %%%%%%s% %%%%%%i%v%e% %%%%%%s% %%%%%%%%k% %%(%,%%%s% %%%%%%s%o%c%i%a%t%e%d% %%%%%%t% %%%%%%u%t%h%o%r%s% %%%%%%o%m%a%t%i%c% %%%%	%%a%l%l%y% %%%%%%v%a%i%l%a%b%l%e% %%%%%%x%e%s% %%%%%%1% %%%1%%%2% %%%%%%i%s% %%%% %%b% %%%%%%1% %%%S%%%2% %%%
%%%a%c%k% %%%%%%g%r%o%u%n%d% %%%%
%%c%o%l%o%r% %%%@%%%r% %%%%%%s% %%%
%%%s%e%d% %%%%%%i%c% %%%%%%s% %%%%%%t% %%%%%%e% %!%%%7%%%c%a%u%s%e% %%=%v%%%o%m%e% %%%%%%s% %%%%%%i%n%g% %%%%%%e%n% %%%%%%f%o%r%e% %%%	%%%h%a%v%e%s% %%%%%%i%o%r% %%%%%%u%r% %%%%%%i%n%g% %%%%%%d%e%l%e%t%e%d% %%%%%%l%o%w% %%%%%%n% %%%%%%s%t% %%%%%%t%t%e%r% %%%%%%w%e%e%n% %%%%%%v%e%l%e%d%i%n% %%%%%%o%u%t% %%%%%%y%o%n%d% %%%%%%i%g%g%e%r% %%%%%%t% %%%%%%s% %%%%%%l%u%e% %%%%%%o%l%d% %%%%%%r%d%e%r% %%%%%%t%y%p%e% %%%%%%w%i%d%t%h% %%%%%%t%h% %%%%%%t%o%m% %%%%%%x% %%%%%%e%d% %%%8%%%s% %%%%%%p%a%n%e%l% %%%
%%%%s% %%!%8%%%y% %%%%%%r%a%d% %%%%%%e%a%k% %%%%%%i%n%g% %%%%%%i%n%g% %%%%%%o%w%s%e%r% %%%%%%u%g% %%%%%%i%l%d% %%%%%%i%n%g% %%%	%%%t% %%%	%%%i%n% %%%%%%t% %%%%%%t%o%n% %%%%%%1% %%%B%%%2% %%%%%%b%o%x%e%s% %%%%%%s% %%%%%%i%z%e% %%%&%%%y% %%%%% %%c% %%%%%%a%l%c%u%l%a%t%i%o%n%s% %%%%%%l% %%%%%%b%a%c%k% %	%%%%%%s% %%%%%%e%d% %%%%%%m%l%i%g%h%t% %%
%%%%n% %%%%2%%%n%o%t% %%5%^%%%v%a%s% %%%%%
%p%a%b%i%l%i%t%i%e%s% %%%%%%r%d% %%%%%%p%a%n%e%l% %%%%%%e% %%%%%%s%e%s% %%%%%%u%s%e% %%%%%%d% %%%%%%s% %%%%%%e%l%l% %%%%%%n%t%e%r% %%%	%%%b%o%t%t%o%m% %%%%%%e%d% %%%%%%t%o%p% %%%%%%i%m%e%t%e%r%s% %%%%%%r%a%l% %%%%%%h%a%n%g%e% %%%%%%d% %%%%%%s% %%%
%%%i%n%g% %%%%%%p%t%e%r% %%%%%%r%a%c%t%e%r%s% %%%%%%e%c%k% %%%%%%e%d% %%%%%%i%l%d% %%%%%%r%e%n% %%%0%%%%o%i%c%e% %%"%>%%%s% %%%%%%o%s%e% %%%%%%l%a%s%s% %%%%%%%e%s% %%% %%%e%a%r%e%d% %%%%%%i%c%k% %%%%%%e%d% %%%%%%i%n%g% %%%%%%s% %%%%%%p%p%i%n%g% %%%%%%o%s%e% %%%%%%d% %%%%%
%r%e%q%u%e%s%t%f%c%n% %%%%%%s% %%%%%%i%n%g% %%%%%%o%d%e% %%%%%	%l%l%a%p%s%a%b%l%e% %%%%%%o%r% %%%%%%b%a%r%s% %%% %%%s% %%%%%%p%e%c% %%%%%%u%r% %%%%%%u%m%n% %%%%%%s% %%%%%%i%z%e%s% %%%%%	%m%b%i%n%a%t%i%o%n% %%%
%%%e% %%%%%%s% %%%%%%m%a%n%d% %%%%%%e%n%t% %%%%%%s% %%%%%%o%n% %%%%%%l%y% %%%%%%p%i%l%e%r% %%%%%%l%e%t%e% %%%%%%d% %%%	%%%x% %%%%%%i%t%y% %%%%%%o%n%e%n%t% %%%%	%%s% %%%%%	%n%c%e%n%t%r%a%t%e% %%%%%%p%t%s% %%%%%%s%i%d%e%r% %%%%%%t%r%u%c%t%i%o%n% %%%%%%u%l%t%a%n%t%s% %%%%%%i%n%g% %%%%%%t%a%c%t% %%%%%%i%n%e%d% %%%%%%r% %%%%%	%%s% %%%%%%i%n%g% %%%%%%s% %%%%%%e%n%t% %%%%%%s% %%%%%%x%t% %%%%%%i%n%u%e% %%%%%%r%o%l% %%%%%%l%a%y%o%u%t% %%%%%%i%n%g% %%%%%%p%a%n%e%l% %%%%%%s% %%%%%%v%e%n%t%i%o%n% %%%%%%r%t% %%%%%%r%r%e%c%t% %%%%%%l%y% %%%%%%s%p%o%n%d%i%n%g% %%%%
%%s% %%%%%%u%p%t%e%d% %%%%%%s% %%%%%%u%p%l%i%n%g% %%%%%%r%e%a%t%e% %%%%%%d% %%%%%%a%t%a% %%%%%	%i%n%t%e%r%f%a%c%e% %%%%%%s% %%%%%%i%n%g% %%%%%%%o%n% %%%)%%%u%c%i%a%l% %%%%%%u%r%r%e%n%t% %%%%%%l%y% %%%%%%s%t%o%m% %%%% %%d% %%%%%%a%t%a% %
%%%%%e% %%%%%%v%i%d% %%%%%%d% %%%%%%e%c%a%d%e%s% %%%%%%e%m%b%e%r% %%%%%%l%a%r%e% %%%%%%d% %%%%%%i%n%g% %%%%%%o%r%a%t%i%o%n% %%%%%%f%a%u%l%t% %%%%%%b%o%x%p%a%n%e%l%f%o%n%t%s%i%z%e% %%%!%%
%t%i%t%l%e%c%o%l%o%r% %%%%%%c%l%a%s%s%p%r%o%p%e%r%t%y% %%%%%%h%b%o%x%b%a%c%k%g%r%o%u%n%d%c%o%l%o%r% %%%%%%p%a%d%d%i%n%g% %%%%%%s% %%%%%%l%e%t%e% %%%%%%d% %%%%%%f%c%n% %%%"%%%i%n%g% %%%%%%t%a% %%%%%%w%o%r%t%h% %%%%%%m%i% %%%%%%o% %%%%%%b%r%o%w%s%e%r% %%%%%%l%i%s%t% %%%%%%n%a%m%e% %%%%%%s% %%%%%%p%e%n%d%s% %%%%%%l%o%y%e%d% %%%%%%i%n%g% %%%%%%t%o%o%l% %%%%%%s%c%r%i%b%e%d% %%%%%%s% %%%%%%i%n%g% %%%%%%p%t%i%o%n% %%%%%%i%g%n% %%%%%%e%d% %%%%%%s% %%%%%%t%a%i%l%s% %%%%%%e%r%m%i%n%e%d% %%%!%%%v%e%l%o%p%e%d% %%%%%%i%d%n% %%%%%%f%f%e%r%e%n%t% %%%%%%g% %%%%%	%m%e%n%s%i%o%n%a%l% %%%%%%r%e%c%t%l%y% %%%	%%%s%a%b%l%e% %%%%%%d% %%%%%%i%n%g% %%%%%%p%p%e%a%r% %%%%	%%i%n%g% %%%%%%c%u%s%s%e%d% %%%%%%p% %%%%%%t%i%n%c%t% %%%%%%v%i%d%e%r% %%%%%%s% %	%%%%%o% %%%#%%%c% %%%%%%k% %%%%%%a%b%l%e% %%%%%%e%d% %%%%%%x%a%m%p%l%e% %%%%%%f%c%n% %%%%%%i%n%g% %%%%%%u%m%e%n%t% %%%%%%a%t%i%o%n% %%%%%%e%s% %%%
%%%n% %%%%%%n% %%%%%%e% %%%%%%u%b%l%e% %%%%%%w%n% %%%%%%r%a%g%g%a%b%l%e% %	%%%%%e%d% %%%%%%i%n%g% %%%%%%w% %%%%%%i%n%g% %%%%%%u%r%i%n%g% %%%%%%y%n%a%m%i%c% %%%% %%e% %%%%%%%a%c%h% %%%%%%%%d%g%e% %%!%-%%%i%t% %%%%%%f%f%e%c%t% %%%%%%i%t%h%e%r% %%%%%%l%e%m%e%n%t% %
%%%%%s% %%%%%%%s%e% %%!%G%%%m%p%t%y% %%%%%%n%a%b%l%e% %%%#%#%%%d% %%&%H%%%i%n%g% %%%4%%%c%l%o%s%i%n%g% %%%%%%d% %%%%%	%g%i%n%e%e%r%i%n%g% %%%%%%s%u%r%e% %%%%%%s% %%%%%%t%i%t%y% %%%%%%r%i%e%s% %%%%%%y% %%%%%%v%i%r%o%n%e%m%t% %%%%%%m%e%n%t% %%%%%%q%u%a%l% %%%%%%l%y% %%%%%%r%r%o%r% %%%%%%s% %%%%%%t%c% %
%%%%%h%e%d%i%n% %%%%%%o%u%t% %%%%%%v%e%n%t% %%%%%%d%a%t%a% %%%%%%s% %%%%%%o%u%r%c%e% %%%%%%r%y%t%h%i%n%g% %%%%%%o%l%v%i%n%g% %%%%%%x%a%c%t% %%%%%%l%y% %%%%%%m%p%l%e% %*%%%C%%%s% %%I%k%%%c%h%a%n%g%e% %%
%%%	%e%c%t%u%a%b%l%e%s% %%%%%%u%t%a%b%l%e%s% %%%%%%e%d% %%%%%%s% %%%%%%m%p%l%i%f%i%e%s% %%%%%%i%s%t%i%n%g% %%%%%%t%s% %%%%%%p%e%r%t%i%s%e% %%%%%%l%a%n%a%t%i%o%n% %%%%%%i%c%i%t%l%y% %%%%%%o%r%e%r% %%%%%%o%s%e%d% %%%%%%t%e%n%d%i%n%g% %%%%%%r%a% %%%%%%%c%t% %%%*% %%f% %%%%&%%%1% %%)%L%%%2% %%%%%%a%s%t%e%r% %%%%%%e%a%t%u%r%e% %%%%%%s% %%%%%%b%r%u%a%r%y% %%%%%%i%e%l%d% %%%%%%s% %%%%%%g% %%%%%%h% %%%%%%p%o%s% %%%%%%u%r%e% %%%%3%%%s% %%6%T%%%l%e% %%%%%%s% %%%%%%l% %%%%%%e%d% %%%%%%i%n%g% %%%%%%n%a%l%l%y% %%%%%%d% %%%%%%i%n%g% %%%%%%e% %%%%%%r%s%t% %%%%%%t% %%
%%%%x% %%%%%%e%d% %%%%%%s% %%%%%%l%a%g% %%%%%%e%x% %%%%%%i%b%l%e% %%%%%%o%c%u%s% %%%%%%l%d%e%r% %%%%%%l%o%w%i%n%g% %%%%%%s% %%%%%%n%t% %%%%%%a%n%g%l%e% %%	%%%%n%a%m%e% %%%%%%s% %%%%%%i%z%e% %%%%%%u%n%i%t%s% %%%%%%w%e%i%g%h%t% %%%%%%r% %,%%%P%%%c%e%s% %%V%%%%%e%g%r%o%u%n%d%c%o%l%o%r% %%%%%%m% %%%%%%a%t% %%%%%%t%i%n%g% %%%%%%s% %%%%%%u%n%d% %%%%%%r% %%%%%%r%a%m%e% %%%%%%o%m% %%%	%%%%n%t% %%% %%%u%l%l% %
%%%%%n%c%t%i%o%n% % %%%2%%%a%l%i%t%y% %%8%%%%s% %%%%%%d%a%m%e%n%t%a%l% %%%%%%r%t%h%e%r% %%%% %%g% %%%%%%%a%i%n% %% %L%%%p%s% %%%%%%c%f% %%%%%%e%n%e%r%a%l% %%%%%%t% %	%%%%%p%i%x%e%l%p%o%s%i%t%i%o%n% %%%%%%s% %%%%%%t%i%n%g% %	%%%%%i%v%e%n% %%
%
%%%s% %%%%%%i%n%g% %%%%%%l%o%b%a%l% %%%%%%o% %%%%%%i%n%g% %%%%%%o%d% %%%%%%u%r%a%u%d% %%%%%	%r%a%c%e%f%u%l%l%y% %%%%%%n%u%l%a%r% %%%%%%p%h%i%c%a%l% %%%%%%s% %%%%%%s% %%%%%%e%e%n% %%%%%%i%d% %%%%%%f%l%e%x% %%%%%%s% %%
%%%%o%u%p% %%%%%%s% %%%%%%w% %%%%%%s% %%%%%%t%k% %%%%%%u%a%r%d%s% %%%%%%i% %%%%%%%d%a%t%a% %%"%4%%%e% % %%%(%%%a%p%p% %%.%1%%%s% %%%% %%h% %%
%%%%1% %%%.%%%a%d% %%%%%%n%d% %%%%%%l%e% %%%%%%%d% %%!%F%%%s% %%%%%
%v%i%s%i%b%i%l%i%t%y% %%%%%%i%n%g% %%%%%%p%p%e%n%s% %%%%%%s% %%%%%%v%e% %	%%%%%i%n%g% %%%%%%b%o%x% %%%%%%%f%l%e%x% %	%!%5%%%u%t%t%o%n%b%o%x% %%%%%%e%a%d% %%	%%%%i%g%h%t% %%%%%%r%a%r%c%h%i%e%s% %%%%%%l%p% %
%%%%%b%u%t%t%o%n% %%%%%%e%r% %%%%%%f%c%n% %%%%%%v%e%t%i%c%a% %%%%%%r%e% %%%%%%i%d%d%e%n% %%%%%%e% %%%%%%i%n%g% %%%%%%e%r%a%r%c%h%y% %%%%%%g%h%l%i%g%h%t% %%%%	%%c%o%l%o%r% %%%%%%j%a%c%k%e%d% %%%%%%o%b%j% %%%%%%e%c%t% %%%%%%o%k% %%%%%%u%p% %%%%%%r%i%z%o%n%t%a%l% %%%%
%	%a%l%i%g%n%m%e%n%t% %%%#%
%%l%y% %%%%%%w% %%
%%%%%e%v%e%r% %%%%% %%i% %%%%%%c%o%n% %%%%%%s% %%%%%%d%e%n%t%i%f%y% %%%%%%f% %%%%%%i% %%%%%	%l%l%u%s%t%r%a%t%e% %%%%
%%s% %%%%%%m%a%g%e%s% %%%%%%c% %%%%%%p%o%r%t%a%n%t% %%%%%%r%o%v%e% %%%%%%m%e%n%t%s% %%%%%%s% %%%%%%n% %)%%%H%%%c%h%e%s% %%N%%%%%l%u%d%e% %%%%%%s% %%%%%%i%n%g% %%%%%%d%e%x% %%%%%%i%c%a%t%e% %%%%%%e%s% %%%%%%v%i%d%u%a%l% %%%%
%%l%y% %%%%%%h%e%r%i%t%e%d% %%%%%%i%t%i%a%l% %%%%%%s%e%r%t% %%%%%%e%d% %%%%%%i%d%e% %%%%%%%t%a%l%l% %%%%%%a%t%i%o%n% %%%%%%e%d% %%%%%%e%a%d% %%%%%%r%u%c%t%i%o%n%s% %%%%%	%u%f%f%i%c%i%e%n%t% %%%%%%t%e%g%e%r% %%%%%%r%a%t%e% %%%*%%%r%a%c%t%i%o%n% %%%%%%f%a%c%e% %%%%%%	%%s% %%(%6%%%p% %%%%%%o% %%%%%	%r%o%d%u%c%t%o%r%y% %%%%%%v%i%s%i%b%l%e% %%%%%%o%l%v%e%s% %%%%%%s% %.%%%R%%%d%o%c%k%e%d% %%X%%%%	%m%i%n%i%m%i%z%e%d% %%%%%%o%8%6%0%1% %%%%%%s%u%e%s% %%%%%%v%a%l%i%d% %%%%%%t% %%%%%%%a%l%i%c% %%%.%%%e%m% %%%%%%s% %%%
%%%s% %%%%%%%e%l%f% %%%)% %%j%a%v%a% %%%%%%o%b% %%%%%%u%l%y% %%%%%%n%e% %%%
%%%s%t% %%%%%	%i%f%i%c%a%t%i%o%n% %%%	% %%k%e%e%p%i%n%g% %%%%%%r%r% %%%%%%n%o%w%n% %%%% %%l% %%%%%%a%b%e%l% %%%%%%s% %%%%%%r%g%e% %%%%%%l%y% %%%%%%r% %%%%%%s%t% %%%%%%t%e%r% %%%%%%u%n%c%h%e%d% %%%%%%y%o%u%t% %'%%%J%%%r%o%o%t% %%P%%%%%s% %%%
%%%%t%o%o%l%b%o%x%1% %%"%6%%%v%e%r%s%i%o%n% %%%%%%e%a%v%e% %%%%%%i%n%g% %%%%%%f%t% %%%%%%b%o%t%t%o%m% %%%%%%t%o%p% %%%%%%g%e%n%d%s% %%%%%%t% %%%%%%v%e%l% %%%%%%i%f%e% %%%%%%g%h%t% %%%%%%i%n%g% %%%%%%k%e% %%%%%%m%i%t%e%d% %%%%%%n%e% %%%%%%a%r% %%%%%%l%y% %%%%%%s% %%%%%%s%t% %%%%%%%b%o%x% %% %,%%%e%n% %%%%%%o%a%d%i%n%g% %%%%%%c%a%t%i%o%n% %%%%%%g%i%c% %%%%%%a%l% %%%%%%n%g% %%%%%%o%k% %%%%%%i%n%g% %%%%%%s% %%%%%%s%t% %%%%%%t%d% %7%%%7% %%m% %%@%Y%%%a%d%e% %%%%%%i%n% %%%%%%l%a%y%o%u%t% %%%%%%t%a%i%n%a%b%l%e% %%%%%%j%o%r% %%%%%%k%e% %%%%%%s% %%%%%%i%n%g% %%%%%%l%c%o%l%m% %%%%%%n%a%g%e% %%%%%%m%e%n%t% %%%%%%r% %%%%%%s% %%%%%%i%n%g% %%%%%%e%u%v%e%r%s% %%%%%%o%e%u%v%r%e%s% %%%%%%u%a%l%l%y% %%%%%%y% %%%%%%r%c%h% %%%%%%k%i%n%g%s% %%%%%%t%c%h% %%%%%%h%w%o%r%k%s% %7%	%%;%%%l%a%b% %%D%\%%%%x%i%m%i%s%e% %%%%%%z%e% %%%%%%d% %%%%%%i%n%g% %%%%%%y% %%%%%%e% %%%%%%a%n% %%%%%%s% %%%%%%s%u%r%e%d% %%%%%%m%e%n%t% %%%%%%i%n%g% %%%%%%m%b%r%a%n%e% %%%%%%n%u% %%%%%%b%a%r% %%%%%%s% %%%	%%%t%h%o%d% %%%%%%i%d%d%l%e% %%%%%%g%h%t% %%%
%%%n%i%m%i%z%e% %%%%%%d% %%%%%%e%x%a%m%p%l%e% %%%
%%%f%c%n% %%%%%%i%n%g% %%%
%%%u%m% %%%%%%s%i%z%e% %%%%%%s% %%%%%%o%r% %%%
%%%s% %%%%%%c% %%%%%%s%i%n%g% %%%%%%t%i%g%a%t%e% %%%%%%x% %%%%%%m% %%%%%%o%d%e% %%%%%%i%f%y% %%%%%%i%n%g% %%%%%%u%l%a%r% %%%%%%n%o%l%i%t%h%i%c% %%%%%%r%e% %%%% %%%s%t% %%#%7%%%u%s%e% %%%%%%v%a%b%l%e% %%%%%%u%c%h% %%%%%%l%t%i% %%%%%%p%l%e% %%%%%%s%t% %%%%%%t%l%i%p%l%e% %%%% %%n%a%m%e% %%%%%%%s% %%%&%%%c%l%o%s%e%a%l%l% %%%%%%d%o%c%k% %%%%%%e%e%d% %%%%%%s% %%%%%%g%a%t%i%v%e% %%%%%%i%t%h%e%r% %%	%%%%s%t% %%%%%%e%d% %%%%%%v%e%r% %%%%%%w% %%%%%%%f%i%g% %%%%%%l%y% %%%%%%x%t% %%%%%%m%i%n%i%m%i%z%e% %%%%%%o% %%%%%%n%e% %%%%%%r%m%a%l% %%%%%%i%s%e%d% %%%%%%z%e%d% %%%%%%%t% %%%,%%%%e% %%%*%)%%%d% %%,%:%%%s% %%%%%%h%i%n%g% %%%%%%i%f%i%e%s% %%%%%%v%e%m%b%e%r% %%%%%%w% %%%%%%u%m%b%e%r% %%%%%%%s% %%%7%%%t%i%t%l%e% %%%%%%e%l% %%%	% %%o%b%e%y% %%%%%%j% %%%%%%e%c%t% %%%%&%%%s% %%)%]%%%l%i%q%u%e% %%%%%%s%e%r%v%a%b%l%e% %%%%%%c%t%o%b%e%r% %%%%%%d%d% %%%%%%f% %7%%%d%%%f% %%n%%%&%%%n% %%)%I%*%%%c%e% %%-%_%%%d%e%m%o%h%e%l%p% %%%%%%e% %%%%&%%%s% %%)%0%%%x%i%t% %%%	%%%h%e%l%p% %%%%%%l%i%s%t%s%e%l%e%c%t%i%o%n% %%%%%%y% %%%
%%%m%e%n%u%s%e%l%e%c%t%i%o%n% %%%%%%s%c%r%e%e%n% %%%%%%p%e%n% %%%%%%i%n%g%f%c%n% %%	%%%%t%i%o%n% %%%%%%s% %%%%%%r% %#%%%5%%%d%e%r% %%;%_%%%i%n%g% %%%%%%i%g%i%n%a%l% %%%%%%t%h%e%r% %%%%%%%s% %%%%%%u%t% %%%%%
%e%r%p%o%s%i%t%i%o%n% %%%%%%p%u%t% %%%%%%s%i%d%e% %%%	%%%v%e%r% %%%%%%a%l%l% %%%%%%r%i%d%d%e%n% %%%%%%e% %%%%%%v%i%e%w% %%%%%%w%n% %%%% %%p% %%%%%%1% %%%%%%2% %%%%%%3% %%%%%%a%c%k%a%g%e% %%%%%%d%d%i%n%g% %%%%%%%g%e% %%%.%%%s% %%%%%%n%e%l% %%%% %%%s% %%$%%%%%r%a%m% %%%#%%%e%n%t% % %%%?%%%t% %%E%%%%%i%c%u%l%a%r% %%%%
%%l%y% %%%%%%s% %%%%%%s%s% %%%%%%t%e%n%t%s% %7%%%7%%%h% %%@%Z%%%t%e%r%n% %%%%%%u%l% %%%%%%e%r% %%%%%	%m%u%t%a%t%i%o%n%s% %%%%%	%h%e%i%g%h%t%m%a%x% %%%%%%i%n% %%%%%%l%a%n% %%%%%%i%x%e%l% %%%%%%s% %%%%%%%l%a%c%e% %%"%I%%%d% %%%%%%i%n%g% %%%%%%e%a%s%e% %%%%%%o%t% %%%%%%s% %%%%%%o%i%n%t% %%%%%%e%r%s% %%%%%%s% %%%%%%s% %%%%%%i%t%i%o%n% %%%
%0%%%i%n%g% %	%3%f%%%s% %%
%%%%v%e% %%%%%%s%i%b%l%e% %%%3%%	%r%e%c%e%d%e%n%c%e% %%%%%%s%e%r%v%e%d% %%%%%%s%e%d% %%%%%%t%t%y% %%%%%%v%e%n%t% %%%%%%e%d% %%%%%%i%n%g% %%%%%%i%o%u%s% %%%%%%c%h%i%l%d% %%%%%%l%y% %%%%%%i%n%t% %%%%%%o%b%l%e%m%s% %%%%%%c%e%s%s% %%%%%%d%u%c%e% %%%%%%t% %%%%%%g%r%a%m%m%a%t%i%c%a%l%l%y% %%%%%%i%c%a%l%l%y% %%%%%%m%p%t% %%%%%%p% %%%%%%e%r%t%i%e%s% %%%%%%%y% %%%%5%%%l%i%s%t%e%n%e%r% %%8%`%%%n%a%m%e% %%%%%%o%r%t%i%o%n% %%%%%%v%a%l%u%e% %%%%%%s%e% %%%%%%v%i%d%e% %%%%%%d% %%%%%%s% %%%%%%u%b%l%i%c% %%%%%%r%p%o%s%e% %%%%%%s%h%b%u%t%t%o%n% %%%%%%t% %%%
% %%q%t% %%%
%%%u%i%c%k% %%%%%%t%e% %%%% %%r% %%%%%%2%0%1%3%a% %%%%%%b% %%%%%%a%t%i%n%g% %%%%%%e% %%%%%%a%l%l%y% %%%%%%s%o%n% %%%%%%d% %%%%%%r%a%w% %%%%%%d%e%m%o% %%%%%%u%c%e%d% %%%%%%s% %%%%%%f%e%r%e%n%c%e% %%%%%%%l%e%c%t% %%%%%%r%e%s%h% %%%%%%l%a%t%i%o%n% %%%%%%v%e% %%%%%%e%a%s%e% %%	%%%%v%a%n%t% %%%%%%m%a%i%n% %%%%%%i%n%g% %%%%%%e%m%b%e%r%e%d% %%%%%%o%v%e% %%%%%%s% %%%%%%i%n%g% %%%%%	%p%a%r%e%n%t%i%n%g% %%%%%%l%a%c%e%d% %%%%%%q%u%i%r%e%d% %%%%%%s%i%z%e% %%%%%%d% %%%	%%%f%c%n% %%%%%%s% %%%%%%i%n%g% %	%%%%%o%u%r%c%e% %%%%%%s% %%%%%	%p%e%c%t%i%v%e%l%y% %%%%%%o%n%d% %%%%%%s%e% %%%%%%t% %%%%%%r%i%c%t% %%%%%%u%l%t% %%%%%%t%r%i%e%v%a%l% %%%%%%e% %%%%%%s% %%%%%%i%n%g% %%%%%%u%r%n% %%%%%%e%d% %%%%%%s% %%%%%%v%e%r%t% %%%%%%g%b% %%%%%%i%d%i%n%g% %%%%%%g%h%t% %%%%%%b%o%t%t%o%m% %%%%%%t%o%p% %%%%%%s%k% %%%%%%o%o%m% %%%%%%u%g%h%l%y% %%%%%%w% %%%%%%s% %%%	%%%i%z%e%s% %%%%%%u%l%e% %%%%%%n% %%%%%%n%i%n%g% %%%% %%s% %%%%%%a%m%e% %%%%%%p%s%o%n% %%%%%%v%e% %%%%%%i%n%g% %%%%%
%c%a%l%a%b%i%l%i%t%y% %%%%%%e% %%%%%%s% %%%%%%o%p%e% %%%%%%r%e%e%n% %%%%%%i%p%t%s% %%%%%%e%c%o%n%d% %%%%%%t%i%o%n% %%%%%%s% %%	%	%%%e% %%%%"%%%l%e%c%t% %%%%A%%%e%d% %%%%%%c%h%i%l%d% %%%
%%%d%e%m%o% %%	%%%%i%n%g% %%%%%%o%n% %%%
%	%%s% %%%%%%o%r%s% %%%%%%s% %%%%%%n%s%e% %%%%%%i%t%i%v%e% %%%%%%p%a%r%a%t%e% %%%%%%i%n%g% %%%%%%t%e%m%b%e%r% %%%%%%r%i%o%u%s% %%%%%%s%s%i%o%n%s% %%%%%%t% %%%%7%%%s% %%:%|%%%t%i%n%g% %%%%%%s% %%%%%%u%p% %%%%%%v%e%r%a%l% %%%%%%h%a%d%i%n%g% %%%%%%o%w% %%%%%%c%o%l%o%r% %%%%%%r%e% %%%%%%d% %%%%%%i%p%s% %%%%%%o%t% %%%%%%u%l%d% %%%%%%w% %	%%%%%c%a%s%e% %%	%%%%i%n%g% %%%%%%m%a%r%k%i%n%g%s% %%%%%%n% %%%%%%s% %%%%%%r%i%n%k% %%%%%%s% %%%%%%i%d%e% %%%%%%m%i%l%a%r% %%%%%%p%l%e% %	%%%%%y% %%%%%%n% %%%%%%c%e% %%%%%%g%l%e% %%%%%%z%e% %%%%!%%%d% %%$%G%%%s% %%%%%%%i%n%g% %%%=%%%l%i%g%h%t%l%y% %%%%%%m%a%l%l% %%%%%%o% %%%%%%m%e% %%	%%%%t%i%m%e%s% %%%%%%o%n% %%%%%%p%h%i%s%t%i%c%a%t%e%d% %%%%%%u%r%c%e% %%%%%%p%a%c%e% %%%% %%%i%n%g% %%#%2%%%%e%c%i%a%l% %%%(%%%i%s%e%d% %%%%	%%t% %%%%%%f%i%c% %%%%%%e%d% %	%%%%%y% %%%%%%e%d% %%%%%%r%i%n%t%f% %%%%%%r%c% %%%%%	%t%a%n%d%a%l%o%n%e% %%%%%%r%d% %%%%%%r%t%e%d% %%	%%%%u%p% %%	%	%%%t%e% %%%%%%i%o%n%a%r%y% %%%.%%%y% %%%%%%e%d% %%%%%%i%l%l% %%%%%%o%r%e% %%%%%%d% %%%%%%s% %%%%%%r%a%i%g%h%t%f%o%r%w%a%r%d% %%%%%%c%m%p%i% %%%%%%i%n%g% %%%%/%%%s% %%2%{%%%u%c%t%u%r%e% %%%%	%%d% %%%%	%%s% %%%%%%y%l%e% %%%%%%d% %%%%%
%u%b%f%u%n%c%t%i%o%n% %%%%%%s% %%%%%%c%h% %%%
%%	%g%g%e%s%t%i%o%n%s% %%%%%%m% %%%%%%p%p%l%i%e%d% %%%%%%o%r%t% %%%%%%e%d% %%%%%%r%f% %%%%%%w%i%n%g% %%%%%%t%c%h%e%d% %%%%%%i%n%g% %%%%%%y%s%t%e%m% %%%% %%t% %%%%%%a%b% %%%%%%e%n%a%b%l%e% %%%%%%l%e%s% %%%%%%n%a%m%e%s% %%%%%%p%a%n%e%l% %	%%%%%s% %%%%%%i%z%e% %%	%%%%g% %%%%%%k%e% %%%%%%n% %%%	%%%e%c%h%n%i%c%a%l% %%%%%%m%p% %%%%%%r%m%s% %7%%%8%%%x%t% %%A%Z%%%h%a%n% %%%%%%k%s% %%%%%%t% %(%%%E%%%e% %8%K%|%p%%%i%r% %%|%%%%%m% %%%%%%n% %%%%%%r%e% %%	%
%%%f%o%r%e% %%%%%%o%f% %%%%%%s%e% %%%%%%y% %%%	%%%i%n%g% %%%%%%s% %%%%%%k%i%n%g% %%%%%%s% %+%%%J%%%o%s%e% %%P%%%%%r%e%e% %%%%%%o%u%g%h% %%%%%%w%n% %%%%%%u%m%b% %%%%%%i%c%k%e%d% %%%%%%d%y% %%%%%%g%h%t% %%%%%%m%e% %%%%%%t%l%e% %%%%%%%c%o%l%o%r% %%%N%%%p%o%s%i%t%i%o%n% %%%%%%o% %2%%%Z%%%g%e%t%h%e%r% %%c%%%%%o% %%%%%%l% %%%%%%b%a%r% %%%%%%o%x% %%%
%%%%k%i%t%s% %%%"%%%s% %%%%%%p% %6%%%<%%%r%d%o%f%f% %%E%_%%%u%c%h% %%%%%	%r%a%d%e%m%a%r%k%s% %7%%%7%%%i%g%g%e%r% %%@%\%%%p%l%e% %%%%%%y% %%%%%%i%n%g% %%%%%%u%r%n% %%%%%%e%d% %%%%%%w%i%c%e% %%%%%%o% %%%%%%%y%p%e% %%% %%%s% %%%/%%%i%c%a%l% %%%%%%l%y% %%%%%%n%g% %%%%%
%o%g%r%a%p%h%i%c%a%l% %%%%%%s% %%%% %	%u%i%c%o%n%t%r%o%l% %%%%,%%%e%x%t%r%a%s% %#%/%o%@%%%m%e%n%u% %%G%%%%%p%a%n%e%l% %%%%%%1% %%%%%	%n%d%e%r%l%y%i%n%g% %%%%%%s%t%a%n%d% %%%%
%%i%n%g% %%%%%%o%c%k% %%%%%%e%d% %%%%%%i%n%g% %%%%%%i%n%s%t%a%l%l% %%%%%%t% %%%%%%s% %%%%'%%%l%i%k%e% %%*%E%%%u%s%u%a%l% %%%%%%w%a%n%t%e%d% %%%%%%p% %%%%%%d%a%t%e% %%%	%%	%i%n%t%e%r%f%a%c%e% %%	%%%%%s% %%	%%%%p%e%r% %%%%%%s%a%g%e%s% %%%%%%e% %7%%%T%%%d% %%]%%#%%%f%u%l% %%&%1%%%r% %(%%%=%%%s% %%C%T%%%s% %%%%%%i%n%g% %%%% %%%u%a%l% %%#%3% %%v% %%%%%%a%c%a%t%e%d% %%%%%%l%i%d% %%%%%%u%e% %%%%#%%%s% %%&%)%%%r%a%r%g%i%n% %%%%%%i%a%b%l%e% %%%%%%s% %%%	%%%n%t% %%%%%%o%u%s% %%%%%%b%o%x% %%%%%%f%l%e%x% %%%(%%%u%t%t%o%n%b%o%x% %%%%%%e%c%t%o%r% %%	%%%%r% %%%%%%s%i%o%n% %%%%%%t%i%c%a%l% %
%%.%%	%a%l%i%g%n%m%e%n%t% %%%%%%l%y% %%%%%%y% %%	%%%%i%e%w% %%%%%%a%x%e%s% %%%%%%i%n%g% %%%%%%m%e%n%u% %%%%%%p%a%n%e%l% %%%%%%s% %%%%%%r%t%u%a%l%l%y% %%%%%%s%i%b%l%e% %%%%*%%%u%a%l%l%y% %%-%K%%%s% %%%% %%w% %%%%%%a%n%t% %%%*%%%s% %%%	%%%t%c%h% %%%%%%y% %%%%%%s% %%%	%%%e% %%%%%%i%g%h%t% %%%%%%%i%n%g% %%%%%%s% %%%%%%l%l% %%	%%%%r%e% %%%%%%h%a%t% %%%%%%e%n% %%%%%%%%e%v%e%r% %%(%B%%%r%e% %%%%%%t%h%e%r% %%%%%%i%c%h% %%%%%%m%e%n%u% %%%%%%p%a%n%e%l% %%%%%%l%s%t% %%%%%%t%e% %%%%%%o% %%%%%%l%e% %%%%%%y% %%%%%%i%d%e% %%%%%%g%e%t% %%%%%%s% %%%%%%t%h% %%%%%%e%g%h%t% %%%
%%%l%l% %%%%%%%n%d%o%w% %%%%%%%s% %%%+%%%t%h% %%	%%3%%%i%n% %%6%v%%%%o%u%t% %%!%5%%%z%a%r%d%s% %%%%%%o%o%d% %%%%%%r%k% %%%%%%s% %%%%%%r%y% %%%%%%i%n%g% %%%%%%u%l%d% %%%%%%r%i%t%e% %%%% %%x% %%%%%	%t%i%c%k%l%a%b%e%l% %%%,% %%y% %%%%%%e%a%r%s% %%%2%%%o%u% %%%%%%r% %%%%%%s%e%l%f% %%%%%	%t%i%c%k%l%a%b%e%l% %%%%%%y%y%y% %%%% %%E%x%a%m%p%l%e%s%.%h%t%m%l%%%%% %%F%u%n%c%t%i%o%n% %r%e%f%e%r%e%n%c%e%.%h%t%m%l%%%%%%%1%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%%%4%.%h%t%m%l%%%%%%%2%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%%%4%.%h%t%m%l%%%%%%%5%.%h%t%m%l%%%%%%%6%.%h%t%m%l%%%%%%%3%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%4%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%%%4%.%h%t%m%l%%%%%%%5%.%h%t%m%l%%%%% %%G%e%t%t%i%n%g% %S%t%a%r%t%e%d%.%h%t%m%l%%%%%%%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%%%4%.%h%t%m%l%%%%%%%5%.%h%t%m%l%%%%% %%U%s%e%r% %g%u%i%d%e%.%h%t%m%l%%%%%
%%1%.%h%t%m%l%%%%%%%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%%%4%.%h%t%m%l%%%%%%%5%.%h%t%m%l%%%%%
%%2%.%h%t%m%l%%%%%%%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%
%%3%.%h%t%m%l%%%%%%%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%
%%4%.%h%t%m%l%%%%%%%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%
%%5%.%h%t%m%l%%%%%%%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%
%%6%.%h%t%m%l%%%%%
%%7%.%h%t%m%l%%%%%
%%8%.%h%t%m%l%%%%%%%_%1%.%h%t%m%l%%%%%%%2%.%h%t%m%l%%%%%%%3%.%h%t%m%l%%%%%%%4%.%h%t%m%l%%%%%%%5%.%h%t%m%l%%%%%%%6%.%h%t%m%l%%%%% %%h%e%l%p%t%o%c%.%h%t%m%l%%%%% %
%i%n%d%e%x%.%h%t%m%l%%%%% %%0%%8%%%8% %%a%%%A%8%%%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%%%%%%%d%v%a%n%c%e%d%%%%%%%l%l%%%%%%%n%d%%%%%%
%p%p%l%i%c%a%t%i%o%n%%%%%%%x%e%s%%%%% %%b%a%s%i%c%s%%%%%%%o%x%p%a%n%e%l%%%%% %	%c%a%r%d%p%a%n%e%l%%%%%%%o%m%p%i%l%e%r%%%%%%%l%e%t%e%%%%%%%n%t%e%n%t%s%%%%%%%x%t%%%%%%%r%e%a%t%e%i%n%t%e%r%f%a%c%e%%%%% %%d%e%f%a%u%l%t%s%%%%%%%p%l%o%y%i%n%g%%%%%%%o%c%k%%%%%%
%u%m%e%n%t%a%t%i%o%n%%%%% %%e%m%p%t%y%%%%%%%n%a%b%l%e%%%%%%%x%a%m%p%l%e%%%%%%%s%%%%% %%f%o%r%%%%%%%u%n%c%t%i%o%n%%%%% %%g%e%t%%%%%%%t%i%n%g%%%%%%%r%i%d%%%%%%%f%l%e%x%%%%%%%u%i%%%%%%%d%e%%%%%%%s%%%%% %%h%b%o%x%%%%%%%f%l%e%x%%%%%%%u%t%t%o%n%b%o%x%%%%%%
%e%i%r%a%r%c%h%i%e%s%%%%%%%l%p%%%%% %%i%n%s%i%d%e%%%%%%	%t%a%l%l%a%t%i%o%n%%%%%%%s%%%%%%%t%%%%% %%l%a%y%o%u%t%%%%%%%r%o%o%t%%%%%%%s%%%%%%%v%e%r%s%i%o%n%%%%% %	%m%a%n%e%u%v%e%r%s%%%%%%%t%l%a%b%%%%%%%x%i%m%i%z%e%%%%%%%i%n%i%m%i%z%e%%%%% %%n%o%t%e%s%%%%% %%o%f%%%%%%%n%e%%%%%%%l%i%s%t%s%e%l%e%c%t%i%o%n%%%%%%%u%t%e%r%p%o%s%i%t%i%o%n%%%%% %%p%a%n%e%l%%%%%%%s%%%%%%%o%s%i%t%i%o%n%%%%%%%i%n%g%%%%%%%r%o%p%e%r%t%y%%%%% %	%r%e%f%e%r%e%n%c%e%%%%%%%l%e%a%s%e%%%%%%%u%n%n%i%n%g%%%%% %%s%c%a%l%a%b%i%l%i%t%y%%%%%%%e%t%%%%%%%t%i%n%g%%%%%%%i%z%e%s%%%%%%%t%a%r%t%e%d%%%%%%%r%u%c%t%u%r%e%%%%%%%u%p%p%o%r%t%%%%% %%t%a%b%l%e%%%%%%%p%a%n%e%l%%%%%%%h%e%%%%%%%o%o%l%b%o%x%%%%%%%y%p%e%s%%%%% %%u%i%e%x%t%r%a%s%%%%%%%n%d%e%r%s%t%a%n%d%i%n%g%%%%%%%o%c%k%%%%%%%i%t%s%%%%%%%p%d%a%t%e%i%n%t%e%r%f%a%c%e%%%%%%%s%e%%%%%%%r%%%%%%%i%n%g%%%%% %%v%b%o%x%%%%%%%f%l%e%x%%%%%%%u%t%t%o%n%b%o%x%%%%%%%i%s%i%b%l%e%%%%%%%s%%%%% %%w%h%a%t%%%%%%%y%%%%%%%i%n%d%o%w%%%%%%%s%%%%%%%t%h%%%%% %
%l%a%y%o%u%t%H%e%l%p%%8%%%8% %%0%%8%A%8%8%% %%%A%8% %%1%%%%%%%0%%%%%%%1%%%%%%%2%%%%%%%3%%%%%%%4%%%%%%%5%%%%%%%6%%%%%%%7%%%%%%%8%%%%% %%2%%%%%%%0%1%0%%%%%%%1%%%%	%%%2%%%%%%%3%%%%%%%4%%%%% %%3%%%%% %%4%%%%% %%5%%%%% %%6%%%%% %%7%%%%% %%8%%%%% %%9%%%%% %%a%%%%%%%d%d%%%%%%%n%d%%%%%%%p%p%l%i%c%a%t%i%o%n%s%%%%%%%r%i%l%%%%%%%x%e%s%%%%% %%b%a%s%i%c%s%%%%%%%o%x%e%s%%%%%%%p%a%n%e%l%%%%%%%u%t%t%o%n%s%%%%% %%c%a%l%l%b%a%c%k%%%%%%%r%d%p%a%n%e%l%%%%%%%l%i%c%k%%%%%%%o%s%e%%%%%%%o%d%e%%%%%%%n%t%e%n%t%s%%
%%%%%r%e%a%t%e%%%
%
% %%d%e%c%e%m%b%e%r%%%%%%%o%c%k%%%%% %%e%m%p%t%y%%%%%%%n%a%b%l%e%%%%%%%x%a%m%p%l%e%%%%%% %%f%e%b%r%u%a%r%y%%%%%%%i%l%l%%%%%%%o%r%%%%%%%%u%n%c%t%i%o%n%s%%%%% %%g%r%i%d%%%%%%%f%l%e%x%%%%%%%s%%%%%%%u%i%%%%%%%d%e%%%%% %%h%b%o%x%%%%%%%f%l%e%x%%%%%%%u%t%t%o%n%b%o%x%%%%% %%i%n%s%e%r%t%%%%% %%j%u%l%y%%%%%%%n%e%%%%% %%l%a%y%o%u%t%%%%% %%m%a%r%c%h%%%%%%%x%i%m%i%z%e%%%%%%%y%%%%%%%i%n%i%m%i%z%e%%%%%%%u%m%%%%% %%n%o%v%e%m%b%e%r%%%%% %%o%c%t%o%b%e%r%%%%%%%p%e%n%%%%%%%t%h%e%r%%%%% %%p%a%n%e%l%%%%%%%s%%%%%%	%r%o%p%e%r%t%i%e%s%%%%% %%s%e%c%t%i%o%n%%%%%%%p%t%e%m%b%e%r%%%%%%%i%z%e%s%%%%% %%t%a%b%p%a%n%e%l%%%%%%%h%e%%%%%%%r%e%e%%%%% %%u%i%e%x%t%r%a%s%%%%%%%n%d%o%c%k%%%%%%%s%i%n%g%%%%% %%v%b%o%x%%%%%%%f%l%e%x%%%%%%%u%t%t%o%n%b%o%x%%%%%%%e%r%s%i%o%n%%%%%%%i%s%i%b%l%e%%%%% %%w%i%n%d%o%w%%%%%%%t%h%%%%% %%1%%%%%% %%2%%%%%% %%3%%%%% %%4%%%%% %%5%%	%%% %%6%%%	%	% %%7%%%%% %%8%%%%% %%a%%%%%%%c%k%n%o%w%l%e%d%g%e%m%e%n%t%s%%%%%%%d%v%a%n%c%e%d%%%%%%%l%l%%%%%%%n%d%%%%%%
%p%p%l%i%c%a%t%i%o%n%%%%%%%x%e%s%%%%% %%b%a%s%i%c%s%%%%%%%o%x%p%a%n%e%l%%%%% %	%c%a%r%d%p%a%n%e%l%%%%%%%o%m%p%i%l%e%r%%%%%%%l%e%t%e%%%%%%%n%t%e%n%t%s%%%%%%%x%t%%%%%%%r%e%a%t%e%i%n%t%e%r%f%a%c%e%%%%% %%d%e%f%a%u%l%t%s%%%%%%%p%l%o%y%i%n%g%%%%%%%o%c%k%%%%%%
%u%m%e%n%t%a%t%i%o%n%%%%% %%e%m%p%t%y%%%%%%%n%a%b%l%e%%%%%%%x%a%m%p%l%e%%%%%%%s%%%%% %%f%o%r%%%%%%%u%n%c%t%i%o%n%%%%% %%g%e%t%%%%%%%t%i%n%g%%%%%%%r%i%d%%%%%%%f%l%e%x%%%%%%%u%i%%%%%%%d%e%%%%%%%s%%%%% %%h%b%o%x%%%%%%%f%l%e%x%%%%%%%u%t%t%o%n%b%o%x%%%%%%
%e%i%r%a%r%c%h%i%e%s%%%%%%%l%p%%%%% %%i%n%s%i%d%e%%%%%%	%t%a%l%l%a%t%i%o%n%%%%%%%s%%%%%%%t%%%%% %%l%a%y%o%u%t%%%%%%%r%o%o%t%%%%%%%s%%%%%%%v%e%r%s%i%o%n%%%%% %	%m%a%n%e%u%v%e%r%s%%%%%%%t%l%a%b%%%%%%%x%i%m%i%z%e%%%%%%%i%n%i%m%i%z%e%%%%% %%n%o%t%e%s%%%%% %%o%f%%%%%%%n%e%%%%%%%l%i%s%t%s%e%l%e%c%t%i%o%n%%%%%%%u%t%e%r%p%o%s%i%t%i%o%n%%%%% %%p%a%n%e%l%%%%%%%s%%%%%%%o%s%i%t%i%o%n%%%%%%%i%n%g%%%%%%%r%o%p%e%r%t%y%%%%% %	%r%e%f%e%r%e%n%c%e%%%%%%%l%e%a%s%e%%%%%%%u%n%n%i%n%g%%%%% %%s%c%a%l%a%b%i%l%i%t%y%%%%%%%e%t%%%%%%%t%i%n%g%%%%%%%i%z%e%s%%%%%%%t%a%r%t%e%d%%%%%%%r%u%c%t%u%r%e%%%%%%%u%p%p%o%r%t%%%%% %%t%a%b%l%e%%%%%%%p%a%n%e%l%%%%%%%h%e%%%%%%%o%o%l%b%o%x%%%%%%%y%p%e%s%%%%% %%u%i%e%x%t%r%a%s%%%%%%%n%d%e%r%s%t%a%n%d%i%n%g%%%%%%%o%c%k%%%%%%%i%t%s%%%%%%%p%d%a%t%e%i%n%t%e%r%f%a%c%e%%%%%%%s%e%%%%%%%r%%%%%%%i%n%g%%%%% %%v%b%o%x%%%%%%%f%l%e%x%%%%%%%u%t%t%o%n%b%o%x%%%%%%%i%s%i%b%l%e%%%%%%%s%%%%% %%w%h%a%t%%%%%%%y%%%%%%%i%n%d%o%w%%%%%%%s%%%%%%%t%h%%%%%p%j%j%o%m%l%k%l%m%i%k%n%i%n%l%m%m%m%o%p%l%k%p%m%n%i%p%j%i%j%i%n%o%n%n%m%k%m%l%h%j%k%i%i%h%i%o%j%n%l%l%l%l%m%p%m%|%z%z%y%z%x%z%z%z%z%y%x%z%z%z%z%~%z%z%z%z%z%z%z%|%y%z%y%z%z%z%x%|%y%|%z%z%z%x%z%z%z%z%z%z%y%|%z%y%z%|%y%z%z%z%x%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%%s%s%u%u%r%%s%u%s%s%x%s%u%%u%q%u%u%%%%u%x%%o%u%t%s%s%s%%%%x%u%t%u%%s%s%%s%s%i%p%x%s%u%%q%q%%%u%%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%y%y%x%y%w%y%y%y%y%x%v%y%x%|%y%|%y%|%x%|%|%x%x%|%x%y%x%y%y%y%v%|%x%y%x%y%y%w%y%y%y%y%y%y%x%y%y%x%|%y%x%y%y%|%w%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|%|
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/helpsearch/deletable__ __8__ -->
% % % % 
%<-- Binary ends here -->
%<-- Binary begins here: __layoutHelp/helpsearch/segments__ __56__ -->
%%%%% % %%D%%~%\%% % % %?% % % %%%_%1%q% % % %8
%<-- Binary ends here -->
