ImagesUtil.psm1

 #
 #
 # Toolkit of image validation and image generation functions in powershell.
 # Includes: input to grayscale imaging, brightness image checks, QR code creation and other features.
 #
 #
<#
.Synopsis
    Convert an input file name to an MD5 hash.
 
.Description
    Retrieve the counterpart hashed value based on specified input image name. Set to exclude file name extension.
 
.Parameter imgInput
    Input name of image.
#>

Function Convert-NameToMD5 {
[CmdLetBinding()]
param(
[Parameter(ValueFromPipeLine=$true)]
[string]$imgInput
)
Process {
$imgInput = $imgInput -ireplace "(\.){1}[a-zA-Z0-9].+","";
$str = ([String]::new($imgInput) -replace "=","" -replace "\*","" -replace "_","").ToString();
$out="";
$strd = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes([String]::new($str).ToString().ToCharArray()));
$trimstrd = $strd -replace "=", "";

[System.Security.Cryptography.MD5]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes($trimstrd.ToCharArray())) | %{
 $out += $_.ToString("x2").ToUpper()
 }
}
End {
 return $out;
 }
}


<#
.Synopsis
    Return the file size of an image in KB.
 
.Description
    Retrieve file size of specified input image, either as formatted text label or decimal.
 
.Parameter pathToImgInput
    Directory of the input image.
 
.Parameter toLabel
    Switch option to return a text label with byte size.
#>

Function Get-ImageSize {
[CmdLetBinding()]
param(
[Parameter(ValueFromPipeLine=$true)]
[string]$pathToImgInput,
[switch]$toLabel
)
if ($pathToImgInput.StartsWith(".\")) {$pathToImgInput = Resolve-Path $("$($pathToImgInput)")}
 if ($toLabel) {
   return ("$((Get-Content $pathToImgInput -Encoding Byte -ErrorAction SilentlyContinue).Length / 1KB)".Substring(0,4)+"KB");
  }
 return [Math]::Round((Get-ItemPropertyValue -Path $pathToImgInput -Name Length | %{$_/1KB}),2);
}


<#
.Synopsis
    Random pixel retrieval from image.
 
.Description
    Function used for retrieving pixel from random places from an image.
 
.Parameter imgrnd
    Input image path.
 
.Parameter filterzero
    Switch option, filter out zero pixels from return object.
 
.Parameter pixnum
    Number of random ARGB pixel values to return.
#>

Function Get-ImagePxRnd {
param(
[string]$imgrnd,
[switch]$filterzero,
[int]$pixnum=5
)
$dll = (Get-Command "System.Drawing.dll").Definition;
[System.Reflection.Assembly]::LoadFrom($dll) | Out-Null;
$mainImg = [System.Drawing.Image]::FromFile($(Resolve-Path -Path $imgrnd));

$pxsOut = @();
 for($p=0; $p -lt $pixnum; $p++) {
    $Xpxl = (Get-Random -Maximum $mainImg.Size.Width -Minimum 0);
    $Ypxl = (Get-Random -Maximum $mainImg.Size.Height -Minimum 0);
    $Imgpxs = "$($Xpxl),$($YPxl)";

    if (-not $filterzero) {
    [PSCustomObject[]]$pxsOut += @(@{Initpxs=$Imgpxs; pxls=($mainImg.GetPixel($Xpxl, $Ypxl) | Select R,G,B,A)});
     } else {
    [PSCustomObject[]]$pxsOut += @(@{Initpxs=$Imgpxs; pxls=($mainImg.GetPixel($Xpxl, $Ypxl) | Select R,G,B,A | Where-Object {$_.R -or $_.G -or $_.B -or $_.A})});
    }
 }
 return $pxsOut;
}


<#
.Synopsis
    Random pixel RGB values verification.
 
.Description
    Function used to compare random RGB values from an initial image to the target image's pixels. Returns true/false per pixel comparison operation.
 
.Parameter pxlsInput
    Object that holds the initial image's random pixels.
 
.Parameter baseimagepath
    The target image to validate the initial image pixels against.
#>

Function Resolve-RndPx {
[CmdLetBinding()]
param(
[PSCustomObject]$pxlsInput,
[string]$baseimagepath
)

$baseasm = (Get-Command "System.Drawing.dll").Definition;
[System.Reflection.Assembly]::LoadFrom($baseasm) | Out-Null;
$mainImg = [System.Drawing.Image]::FromFile($(Resolve-Path -Path $baseimagepath));

$pxlvect=$true;
 for ($h=0; $h -lt $pxlsInput.Count; $h++) {
    $pxlvect = $pxlvect -and (($pxlsInput[$h].pxls.R -bxor $mainImg.GetPixel(($pxlsInput[$h].Initpxs).Split(',')[0],($pxlsInput[$h].Initpxs).Split(',')[1]).R -eq 0) -as [bool]);
    $pxlvect = $pxlvect -and (($pxlsInput[$h].pxls.G -bxor $mainImg.GetPixel(($pxlsInput[$h].Initpxs).Split(',')[0],($pxlsInput[$h].Initpxs).Split(',')[1]).G -eq 0) -as [bool]);
    $pxlvect = $pxlvect -and (($pxlsInput[$h].pxls.B -bxor $mainImg.GetPixel(($pxlsInput[$h].Initpxs).Split(',')[0],($pxlsInput[$h].Initpxs).Split(',')[1]).B -eq 0) -as [bool]);
    $pxlvect = $pxlvect -and (($pxlsInput[$h].pxls.A -bxor $mainImg.GetPixel(($pxlsInput[$h].Initpxs).Split(',')[0],($pxlsInput[$h].Initpxs).Split(',')[1]).A -eq 0) -as [bool]);
   }
 $imgpartOK = $false;
 if (-not $pxlvect) {
 Write-Host "`r`n Some or all pixels don't match initial image";
 } else { $imgpartOK = $true; }
 return $imgpartOK;
}


<#
.Synopsis
    Retrieve a byte hash based on an image's selection area.
 
.Description
    Select a partial or full area of image bytes and generate a hash.
 
.Parameter imagepath
    Image input path for exporting the hashed bytes.
 
.Parameter arealimit
    Used to determine the extent of the hashed bytes area.
 
.Parameter setfullarea
    Switch, retrieves the full set of bytes for hashing.
#>

Function Get-ImagePxAreaHash {
param(
[Parameter(Mandatory=$true)]
[string]$imagepath,
[Parameter(Mandatory=$true)]
[int]$arealimit,
[Parameter(Mandatory=$false)]
[switch]$setfullarea
)

[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") | Out-Null;
$mainImg = [System.Drawing.Image]::FromFile($(Resolve-Path -Path $imagepath));

if (-not $setfullarea) {
 $diff = ($mainImg.Size.Height - $mainImg.Size.Width);
 $isrect = (($diff -lt 0) -or ($diff -gt 0));

if ($isrect) {
 $offset = [Math]::Round([Math]::Abs($diff) / $arealimit);
  } else {
 $offset = [Math]::Round($diff / $arealimit);
}

$outarray=@(); $k=0;
for($f=0; $f -lt $mainImg.Size.Height - $offset; $f++) {
 
 $mainImg | %{
 if ($k -ge $mainImg.Size.Width - $offset) {break;}
$outarray += @($($_.GetPixel($f, $k).R,$_.GetPixel($f, $k).G,$_.GetPixel($f, $k).B,$_.GetPixel($f, $k).A);$k++);
  }
}

$bytehash="";
[System.Security.Cryptography.MD5]::Create().ComputeHash($outarray) | %{
$bytehash +=$_.ToString("x2").ToUpper()
 }
 return $bytehash;
} else {
   rm -Path ".\base_10.bin" -ErrorAction SilentlyContinue
   Get-Content -Path $imagepath -Encoding Byte | Set-Content ".\base_10.bin";
   return (Get-FileHash -Path ".\base_10.bin").Hash
 }
}


<#
.Synopsis
    Retrieve metadata about an image file.
 
.Description
    Return an extended metadata object from an image file or standard file information.
 
.Parameter pathImg
    Input image to retrieve the metadata from.
 
.Parameter getextended
    Switch option, return object with extended metadata.
#>

Function Get-ImageMetadata {
 param(
 [Parameter(Mandatory=$true)]
 [string]$pathImg,
 [switch]$getextended
 )

$extension = (Split-Path -Path $pathImg -Leaf).Split('.')[1];
if ($extension -iin @("png","jpg","jpeg","img","ico","bmp")) {
 if ($getextended -eq $true) {

 $xtProperties = [PSCustomObject[]]@(@{
 Extattribs=[System.IO.File]::GetAttributes($pathImg);
 Extaccess=[System.IO.File]::GetAccessControl($pathImg) | Select Path, Owner, Group, Access, Sddl, AccessToString, AreAccessRulesProtected, AreAuditRulesProtected, AreAccessRulesCanonical, AreAuditRulesCanonical;
 Extauthorization=[System.IO.File]::GetAccessControl($pathImg).Access | Select *;
 Extcreationtime=[System.IO.File]::GetCreationTime($pathImg);
 Extcreationutc=[System.IO.File]::GetCreationTimeUtc($pathImg);
 Extlastwritetime=[System.IO.File]::GetLastWriteTime($pathImg);
 Extlastwriteutc=[System.IO.File]::GetLastWriteTimeUtc($pathImg);
 Extlastaccessutc=[System.IO.File]::GetLastAccessTimeUtc($pathImg);
 Extlastaccesstime=[System.IO.File]::GetLastAccessTime($pathImg);
 Extaccessidentity=[System.IO.File]::GetAccessControl($pathImg).Access.IdentityReference;
 });
 return $xtProperties;
 } else {
    return $(Get-ItemPropertyValue -Path $pathImg -Name Attributes,
    Name,
    Mode,
    Exists,
    LinkType,
    BaseName,
    LastWriteTime,
    LastAccessTime,
    CreationTime,
    Length -ErrorAction SilentlyContinue);
    }
  }
}


<#
.Synopsis
    Set one or more metadata info on an image.
 
.Description
    Function used for adding common or extended metadata on an image file. Supports multiple file types.
 
.Parameter pathInput
    File image path for metadata mod.
 
.Parameter setdata
    Setting for one ore more boolean file properties.
 
.Parameter setattribs
    Setting for multiple file attributes.
 
.Parameter num
    Selection order for specified metadata/attribute to change.
 
.Parameter setextdata
    Switch, set plain or extended metadata on image.
#>

Function Set-ImageMetadata {
 param (
 [Parameter(Mandatory=$true)]
 [string]$pathInput,
 [Parameter(Mandatory=$false)]
 [bool[]]$setdata,
 [Parameter(Mandatory=$false)]
 [string[]]$setattribs,
 [Parameter(Mandatory=$false)]
 [int]$num,
 [switch]$setextdata
 )

$extension = (Split-Path -Path $pathInput -Leaf).Split('.')[1];
if ($extension -iin @("png","jpg","jpeg","img","ico","bmp")) {
 if ($setextdata) {
 $attribs = @(
 [System.IO.FileAttributes]::Archive,
 [System.IO.FileAttributes]::Compressed,
 [System.IO.FileAttributes]::Device,
 [System.IO.FileAttributes]::Directory,
 [System.IO.FileAttributes]::Encrypted,
 [System.IO.FileAttributes]::Hidden,
 [System.IO.FileAttributes]::IntegrityStream,
 [System.IO.FileAttributes]::Normal,
 [System.IO.FileAttributes]::NoScrubData,
 [System.IO.FileAttributes]::NotContentIndexed,
 [System.IO.FileAttributes]::Offline,
 [System.IO.FileAttributes]::ReadOnly,
 [System.IO.FileAttributes]::ReparsePoint,
 [System.IO.FileAttributes]::SparseFile,
 [System.IO.FileAttributes]::System,
 [System.IO.FileAttributes]::Temporary
 );

 $ymd = $setattribs | Where-Object { $_ -ilike "*,*,*" }; $ymds += $ymd | %{$_.Split(",")};
 $dtcheck= (Get-Variable ym* -ErrorAction Continue).Value;
 
 if (-not $dtcheck -as [bool]) {
 $ymds = [System.DateTime]::Today.ToString("O").Split('-').Split('T') | Select -First 3;
 }
 [System.IO.File]::SetAttributes($pathInput,$attribs[$num -as [Int]]);

 Trap {
 [System.IO.File]::SetAccessControl($pathInput,[System.Security.AccessControl.FileSecurity]::new($pathInput,[System.Security.AccessControl.AccessControlActions]::Change));
 [System.IO.File]::SetAccessControl($pathInput,[System.Security.AccessControl.FileSecurity]::new($pathInput,[System.Security.AccessControl.AccessControlActions]::None));
 [System.IO.File]::SetAccessControl($pathInput,[System.Security.AccessControl.FileSecurity]::new($pathInput,[System.Security.AccessControl.AccessControlActions]::View));
 }

 [System.IO.File]::SetCreationTime($pathInput,[System.DateTime]::new([Int]::Parse($ymds[0]),[Int]::Parse($ymds[1]),[Int]::Parse($ymds[2])));
 [System.IO.File]::SetLastAccessTime($pathInput,[System.DateTime]::new([Int]::Parse($ymds[3]),[Int]::Parse($ymds[4]),[Int]::Parse($ymds[5])));
 [System.IO.File]::SetLastWriteTime($pathInput,[System.DateTime]::new([Int]::Parse($ymds[6]),[Int]::Parse($ymds[7]),[Int]::Parse($ymds[8])));
  } else {
  $num = $null;
  $yymmdd = $setattribs | Where-Object { $_ -ilike "*,*,*" }; $yymmdds += $yymmdd | %{$_.Split(",")};

 Set-ItemProperty -Path $pathInput -Name IsReadOnly -Value $setdata[0] -ErrorAction SilentlyContinue;

 Set-ItemProperty -Path $pathInput -Name Attributes -Value $setattribs[0] -ErrorAction SilentlyContinue;
 Set-ItemProperty -Path $pathInput -Name Attributes -Value $setattribs[1] -ErrorAction SilentlyContinue;
 Set-ItemProperty -Path $pathInput -Name CreationTime -Value $([System.DateTime]::new([Int]::Parse($yymmdds[0]),[Int]::Parse($yymmdds[1]),[Int]::Parse($yymmdds[2]) )) -ErrorAction SilentlyContinue;
 Set-ItemProperty -Path $pathInput -Name LastWriteTime -Value $([System.DateTime]::new([Int]::Parse($yymmdds[3]),[Int]::Parse($yymmdds[4]),[Int]::Parse($yymmdds[5]) )) -ErrorAction SilentlyContinue;
 Set-ItemProperty -Path $pathInput -Name LastAccessTime -Value $([System.DateTime]::new([Int]::Parse($yymmdds[6]),[Int]::Parse($yymmdds[7]),[Int]::Parse($yymmdds[8]) )) -ErrorAction SilentlyContinue;
  }
 }
}


<#
.Synopsis
    Convert a hexadecimal color to ARGB.
 
.Description
    Takes an hexadecimal color string in the form of "ffffffff" and exports a hashtable with A,R,G,B components.
 
.Parameter colorinput
    The hex color value to be converted to ARGB.
#>

Function ConvertFrom-ColorHexARGB {
[CmdLetBinding()]
 param(
 [Parameter(ValueFromPipeLine=$true)]
 [string]
 $colorinput
 )
 Process {
     $hexmap = New-Object System.Collections.Hashtable;
     $argbmap = New-Object System.Collections.Hashtable;
     $val = @(0,1,2,3,4,5,6,7,8,9,'a','b','c','d','e','f'); $hexoffset=0;
     $colval = @('A','R','G','B');
     $val | %{
     $hexmap.Add($_, $hexoffset);
     $hexoffset++;
     }
     
$hexv = @();
    for ($u=0; $u -lt $colorinput.Length; $u++) {
      if ($u % 2 -eq 0 -or $u -eq 0) {
          if ($u -ge 7) {break;}
       $hexv += $colorinput.Substring($u,2);
  }
}
     $rgbvals = @();
     $hexv | %{
     $lpart =  $_.Substring(0,1);
     $rpart =  $_.Substring(1,1);

     if ($lpart -as [Int] -eq $null -and ($lpart -in @('a','b','c','d','e','f'))) {
      $lpart = $hexmap["${lpart}"];
     } else { $lpart = $lpart -as [Int]; }
     if ($rpart -as [Int] -eq $null -and ($rpart -in @('a','b','c','d','e','f'))) {
      $rpart = $hexmap["${rpart}"];
     } else { $rpart = $rpart -as [Int]; }
     
     $rgbvals += $lpart * 16 + 
                 $rpart * 1;
   }
  }
   End {
   $c=0;
   $rgbvals | %{ $argbmap.Add($_,$colval[$c]); $c++ }
    return $argbmap;
    }
}


<#
.Synopsis
    Retrieve the greyscale values per rgb integer input.
 
.Description
    Function used to return the rgb integer values converted to grey color as bytes.
 
.Parameter red
    Byte representing red pixel value.
 
.Parameter green
    Byte representing green pixel value.
 
.Parameter blue
    Byte representing blue pixel value.
#>

Function Get-GreyValue {
param
(
[Parameter(Mandatory=$true)]
[Byte]$red,
[Parameter(Mandatory=$true)]
[Byte]$green,
[Parameter(Mandatory=$true)]
[Byte]$blue
)
$val=4;
[Double]$expval = [Math]::Sqrt($val)+.2;

[Double[]]$colfact = @((( (0.053 -as [Double]) * $val) *[Math]::Pow($red, $expval)),
          (( (0.1788 -as [Double]) * $val) *[Math]::Pow($green, $expval)),
          (( (0.1805 -as [Double]) * $val) *[Math]::Pow($blue, $expval)));
[Double]$grey = [Math]::Pow($colfact[0] + $colfact[1] + $colfact[2], 1 / $expval);
return [Math]::Max(0, [Math]::Round($grey,[MidpointRounding]::AwayFromZero)) -as [Byte];
}


<#
.Synopsis
    Retrieve the greyscale version of an input image.
 
.Description
    Converts an initial Image object to its greyscale counterpart. Returns a bitmap image.
 
.Parameter img
    Input image object used in the conversion.
 
.Parameter w
    Integer, width of the initial image.
 
.Parameter h
    Integer, height of initial image.
#>

Function Get-GreyScale {
param
(
[Parameter(Mandatory=$true)]
[System.Drawing.Image]$img,
[Parameter(Mandatory=$true)]
[int]$w,
[Parameter(Mandatory=$true)]
[int]$h
)
[System.Drawing.Bitmap]$finalbmp = [System.Drawing.Bitmap]::new($img, $w, $h);
[System.Drawing.Imaging.BitmapData]$sourceData = $finalbmp.LockBits([System.Drawing.Rectangle]::new(0, 0, $finalbmp.Width, $finalbmp.Height),[System.Drawing.Imaging.ImageLockMode]::ReadWrite, [System.Drawing.Imaging.PixelFormat]::Format32bppArgb);

[int]$stride = $sourceData.Stride;
[Byte[]]$data = [Byte[]]::new($stride * $finalbmp.Height);

[System.Runtime.InteropServices.Marshal]::Copy($sourceData.Scan0, $data, 0, $data.Length);

for ($y=0; $y -lt $h; $y++) {
  [int]$offset = $y * $stride;
  for ($x=0; $x -lt $w; $x++) {
    [Byte]$colB = $data[$offset + 0];
    [Byte]$colG = $data[$offset + 1];
    [Byte]$colR = $data[$offset + 2];
    [int]$colA = $data[$offset + 3];

    if ($colA -lt 128) { [Byte]$grayValue = 0 } else {
        [Byte]$grayValue = (Get-GreyValue -red $colR -green $colG -blue $colB);
         }
    $data[$offset + 0] = $grayValue; # Blue color
    $data[$offset + 1] = $grayValue; # Green color
    $data[$offset + 2] = $grayValue; # Red color
    $data[$offset + 3] = 0xFF;       # Alpha channel
    $offset += 4;
   }
 }
[System.Runtime.InteropServices.Marshal]::Copy($data, 0, $sourceData.Scan0, $data.Length);
$finalbmp.UnlockBits($sourceData);

return $finalbmp -as [System.Drawing.Bitmap];
}


<#
.Synopsis
    Resize an image based on a scale value.
 
.Description
    Function that changes the size of input image according to a specific scaling. Outputs a smaller version of the initial bitmap.
     
.Parameter imgRes
    Image object as input for resizing.
 
.Parameter scalefact
    Scale factor by which to resize the image input.
#>

Function Get-ImageScaledSize {
[CmdLetBinding()]
param (
[Parameter(ValueFromPipeLine=$true)]
[System.Drawing.Image]$imgRes,
[Parameter(Mandatory=$true)]
[Int]$scalefact
 )

 Process{
 if ($scalefact -notin @(2,3,4,5,6,7,8,9,10,20,50,100)) {$scalefact = 1;}
 [int]$resWidth = $imgRes.Width/$scalefact; [int]$resHeight = $imgRes.Height/$scalefact;
 $size = [System.Drawing.Size]::new($resWidth,$resHeight);
 $resizedImg = [System.Drawing.Bitmap]::new($imgRes,$size);
 } End { return $resizedImg; }
}


<#
.Synopsis
    Convert from an input image to histogram values array.
 
.Description
    Function used for converting image rgb to brightness histogram. Returns an array of decimal values.
 
.Parameter imgDirInput
    Initial image used in the conversion.
 
.Parameter toJson
    Switch option 1, output histogram in Json format.
 
.Parameter resize
    Switch option 2, initial input image is resized to reduce processing time.
 
.Parameter modValues
    Switch option 3, make numeric adjustments on decimal output values.
#>

Function ConvertTo-Histogram {
param (
[Parameter(Mandatory=$true)]
[string]$imgDirInput,
[Parameter(Mandatory=$false)]
[switch]$toJson,
[Parameter(Mandatory=$false)]
[switch]$resize,
[Parameter(Mandatory=$false)]
[switch]$modValues
)

 $hsgImg= [System.Drawing.Image]::FromFile("$($imgDirInput)");
 if ($resize) { $hsgImg = ($hsgImg | Get-ImageScaledSize -scalefact 2) -as [System.Drawing.Image]; }
 
 $i=0;$lum=@();
 (0..($hsgImg.Width-1 -as [Int])) | %{
   (0..($hsgImg.Height-1 -as [Int])) | %{
 $lum += ($hsgImg.GetPixel(($i),($_))).GetBrightness();
  }
  $i++;
 }

 $mean=@(); $k=0;
 $lum |  %{
 $val = ($val + $_);
if (($k % $hsgImg.Height) -eq 0) {
 $mean += $($val/$hsgImg.Height);
 $val=0;
 }
 $k++;
}

$meanModif = @();
if ($modValues) {
 $limit = [Math]::Ceiling(("($mean[0])".Split('.')[1]).Length/2); # Base value for setting trailing digits.
 $peakval = [Math]::Pow(10,[Math]::Floor($limit/2))*.01;          # Normalize digits for 1Ks ranges.

 $meanModif = ($mean | %{ [Math]::Round(($_*($peakval) -as [decimal]),($limit))});

 if ($toJson) {
  return ($meanModif | ConvertTo-Json -Depth 1);
 } else {
  return $meanModif;
 }
}
else { 
if ($toJson) {
 return ($mean | ConvertTo-Json -Depth 1);
} else {
return $mean;
  }
 }
}


<#
.Synopsis
    Used for validating brightness info on an image histogram.
 
.Description
    Takes as input a grayscale version of the initial image, modifies it with specific code and returns true/false accordingly.
 
.Parameter imgIn
    Input directory of the image to be validated.
 
.Parameter HSGMain
    Image histogram data comparison array.
 
.Parameter stampimage
    Switch option used for adding relevant control lines.
#>

Function Resolve-HistogramData {
 param(
 [Parameter(Mandatory=$true)]
 [string]$imgIn,
 [Parameter(Mandatory=$false)]
 [array]$HSGMain,
 [Parameter(Mandatory=$false)]
 [switch]$stampimage
 )
 
 $inputfilename = $((Split-Path $imgIn -Leaf).Split('.')[0]);
 $ext = $(Split-Path $imgIn -Leaf).Split('.')[1];

 $imagePath = $((Resolve-Path "$imgIn").Path).TrimEnd("$($inputfilename).$($ext)");
 
 $stream = [System.IO.FileStream]::new((Resolve-Path "$imgIn").Path,[System.IO.FileMode]::Open,[System.IO.FileAccess]::Read) -as [System.IO.Stream];
 [System.Drawing.Image]$procImg = [System.Drawing.Image]::FromStream($stream);
 [System.Drawing.Bitmap]$outgrayscale = [System.Drawing.Bitmap]::new($procImg);
 
if ($stampimage) {
 # Additional control lines for validation.
 [System.Drawing.Graphics]$modImage = [System.Drawing.Graphics]::FromImage($outgrayscale);
 $midsect = ($procImg.Width/2);
 $offsetl = ($midsect)-25; $offsetr = ($midsect)+25;

 $penmiddle = [System.Drawing.Pen]::new([System.Drawing.Color]::White, 15.0);
 $penlr = [System.Drawing.Pen]::new([System.Drawing.Color]::White, 4.0);

 $modImage.DrawLine($penlr, ($offsetl -as [Int]),0,($offsetl -as [Int]),($procImg.Height -as [Int]));
 $modImage.DrawLine($penmiddle, ($midsect -as [Int]),0,($midsect -as [Int]),($procImg.Height -as [Int]));
 $modImage.DrawLine($penlr, ($offsetr -as [Int]),0,($offsetr -as [Int]),($procImg.Height -as [Int]));
 
if (-not (Test-Path "$($imagePath)$($inputfilename)_lines.$($ext)")) {
 $outgrayscale.Save("$($imagePath)$($inputfilename)_lines.$($ext)",$procImg.RawFormat);
}
 $outgrayscale.Dispose();
 $procImg.Dispose();
 $stream.Close();
 # Image preprocessing end.
 return $false;
} else {
  $hsgOut = (ConvertTo-Histogram -imgDirInput "$($imagePath)$($inputfilename)_lines.$($ext)" -resize);

  $b=0;
  return ($hsgOut | %{( ($_ -as [decimal]) -eq ($HSGMain[$b] -as [decimal]) );$b++} -ErrorAction SilentlyContinue) -notcontains $false;
  }
}


<#
.Synopsis
    Create your signature on the image.
 
.Description
    Used for adding watermark text in the center of the input image. Positioning is modified accordingly.
 
.Parameter image
    Input image for watermarking.
 
.Parameter signStr
    Text used as the signature.
 
.Parameter defaultoffset
    Starting point -from middle point of the image- to add the text.
 
.Parameter fntsize
    The text's font size.
 
.Parameter ovr
    Switch - Overwrite current image or create a new copy.
#>

Function Add-ImageWaterMark {
[CmdLetBinding()]
param (
[Parameter(ValueFromPipeLine=$true)]
[string]$image,
[Parameter(Mandatory=$true)]
[string]$signStr,
[Parameter(Mandatory=$false)]
[int]$defaultoffset,
[Parameter(Mandatory=$false)]
[decimal]$fntsize,
[switch]$ovr
)
Process {
$defaultoffset = $defaultoffset -as [int];$fntsize = $fntsize -as [decimal];
$copy = 169 -as [char];
$imageStream = [System.IO.FileStream]::new((Resolve-Path "$image").Path,[System.IO.FileMode]::Open,[System.IO.FileAccess]::Read) -as [System.IO.Stream];
 [System.Drawing.Image]$imgWater = [System.Drawing.Image]::FromStream($imageStream);

 $bitmapOut = [System.Drawing.Bitmap]::new($imgWater);
 [System.Drawing.Graphics] $gfx = [System.Drawing.Graphics]::FromImage($bitmapOut);

 $gfx.SmoothingMode = [System.Drawing.Drawing2D.SmoothingMode]::HighQuality;
 $gfx.InterpolationMode = [System.Drawing.Drawing2D.InterpolationMode]::HighQualityBicubic;
 $gfx.TextRenderingHint = [System.Drawing.Text.TextRenderingHint]::AntiAliasGridFit;

 $waterFont = [System.Drawing.Font]::new([System.Drawing.FontFamily]::new("Courier New"),$fntsize,[System.Drawing.FontStyle]::Bold);
 $gfx.DrawString("$copy $($signStr)",$waterFont,[System.Drawing.Brushes]::SlateGray,($imgWater.Width*.5)-$defaultoffset,($imgWater.Height)-$defaultoffset);
 
 if (-not $imageStream.SafeFileHandle.IsClosed) {
 $imageStream.SafeFileHandle.Close();
 }
 if ($ovr) {
  if ($image.StartsWith(".\")) { $image = ((Resolve-Path $image).Path); }
  Write-Host "Running on process :"$([System.Diagnostics.Process]::GetCurrentProcess().Id)" with handles @"$([System.Diagnostics.Process]::GetCurrentProcess().Handles);

   $memStream = [System.IO.MemoryStream]::new();
   $fileOut = [System.IO.FileStream]::new("$($image)",[System.IO.FileMode]::Create,[System.IO.FileAccess]::ReadWrite);

   $bitmapOut.Save(($memStream), [System.Drawing.Imaging.ImageFormat]::Png);
   [Byte[]] $barray = $memStream.ToArray();
   
   $fileOut.Write($barray,0,$barray.Length);
 } else {
  $ext = $(Split-Path $image -Leaf).Split('.')[1];
   $fullPath = $image.TrimEnd(".$($ext)")+"_watermarked"+".$($ext)";
   $bitmapOut.Save($fullPath,$imgWater.RawFormat);
  }
 }
 End {

 $fileOut.SafeFileHandle.Close();
 }
}


<#
.Synopsis
    Function used for testing a cached image and a local image.
 
.Description
     Step-By-Step image verification via hashing and image checking methods.
 
.Parameter baseDir
    Main image path for local image.
 
.Parameter cached
    Stream used to retrieve a cached image instance.
#>

Function Test-ImageInfo {
param (
[Parameter(Mandatory=$true)]
[string]$baseDir,
[Parameter(Mandatory=$true)]
[System.IO.Stream]$cached
)

# Setting variables for validation..

 if (Test-Path ".\image_checks.log"){
  if ($([Math]::Round( ((gc ".\image_checks.log" -Encoding Byte).Length / 1KB),2 )) -ge 0) { rm ".\image_checks.log" }
   }
 $logfile = ".\image_checks.log";
 $imgname = $((Split-Path $baseDir -Leaf).Split('.')[0]);
 $imgdotrail = $(Split-Path $baseDir -Leaf).Split('.')[1];
 $imgPath = $($baseDir).TrimEnd("$($imgname).$($imgdotrail)");
 
 [System.Drawing.Image]$img = [System.Drawing.Image]::FromStream($cached);
 [System.Drawing.Image]$baseimg = [System.Drawing.Image]::FromFile((Resolve-Path $baseDir).Path);
 [System.Drawing.Image]$imgComp = $img.Clone();
 
# Creating temporary image storage for additional filesystem checks..

 $tempimg = "$($imgPath)$($imgname)_temp.$($imgdotrail)";
 if (-not (Test-Path "$($imgPath)$($imgname)_temp.$($imgdotrail)")) {
 Copy-Item -Path "$($baseDir)" -Destination $($tempimg);
 }

 $tmpimgname = $((Split-Path $tempimg -Leaf).Split('.')[0] -ireplace "_temp","");
 $tmpimgdotrail = $(Split-Path $tempimg -Leaf).Split('.')[1];
 $tmpimgPath = $((Resolve-Path "$($tempimg)").Path).TrimEnd("$($tmpimgname)_temp.$($tmpimgdotrail)");
 
 $checkimg = @("$($imgPath)$($imgname)_grey.$($imgdotrail)","$($tmpimgPath)$($tmpimgname)_temp_grey.$($tmpimgdotrail)");
 
Try {
 if (-not (Test-Path $checkimg[0])) {
  (Get-GreyScale -img $baseimg -w ($baseimg).Width -h ($baseimg).Height).Save("$($checkimg[0])");
  }
  if (-not (Test-Path $checkimg[1])) {
  (Get-GreyScale -img $imgComp -w ($imgComp).Width -h ($imgComp).Height).Save("$($checkimg[1])");
  }
 }
Catch {
Write-Host "Error occured in graphics lib, image not saved.";
}
$ingreyscale = "$($imgPath)$($imgname)_grey.$($imgdotrail)";
$tempgreyscale = "$($tmpimgPath)$($tmpimgname)_temp_grey.$($tmpimgdotrail)";

# Image data validation series starts here..
 
  <# 1 - Width, Height of image validations #>
 $dimCompare = (($imgComp.Height -eq $baseimg.Height) -and ($imgComp.Width -eq $baseimg.Width));
 $diminfo = "1 - Image dimensions check..";
 Write-Host $diminfo;
 if(-not $dimCompare) { "-----Error:Ended image dimensions-validations-----" | Out-File $logfile -Append; return $false }
 $diminfo | Out-File $logfile -Append;
 "`r`n$($dimCompare)" | Out-File $logfile -Append;

 <# 2 - Byte image size validations #>
 [Int]$sizebase = "$($baseDir)" | Get-ImageSize;
 [int]$sizecomp = "$($tempimg)" | Get-ImageSize;
 $sizeCompare = ($sizebase -eq $sizecomp);
 $sizeinfo = "2 - Image byte size check..";
 Write-Host $sizeinfo;
 if (-not $sizeCompare) { "-----Error:Ended byte size-validations-----" | Out-File $logfile -Append; return $false }
 $sizeinfo | Out-File $logfile -Append;
 "`r`n$($sizeCompare)" | Out-File $logfile -Append;

 <# 3 - Hashed name, hashed extension validations #>
 $encryptedName = Convert-NameToMD5 -imgInput "$($imgname)"; $encryptedtmpName = Convert-NameToMD5 -imgInput "$($tmpimgname)";
 $encryptedEx = Convert-NameToMD5 -imgInput "$($imgdotrail)"; $encryptedtmpEx = Convert-NameToMD5 -imgInput "$($tmpimgdotrail)";
 $hashnameCompare = (($encryptedName -eq $encryptedtmpName) -and ($encryptedEx -eq $encryptedtmpEx));
 $hashnameinfo = "3 - Name hashing check..";
 Write-Host $hashnameinfo;
 if(-not $hashnameCompare) { "-----Error:Ended file name hash-validations-----" | Out-File $logfile -Append; return $false }
 $hashnameinfo | Out-File $logfile -Append;
 "`r`n$($hashnameCompare)" | Out-File $logfile -Append;

 <# 4 - Image RGB xor validations #>
 $rndCachepx = Get-ImagePxRnd -imgrnd "$($tempimg)" -pixnum 50;
 $rndCompare = (Resolve-RndPx -pxlsInput $rndCachepx -baseimagepath "$($baseDir)" -ErrorAction SilentlyContinue);
 $rndinfo = "4 - Binary random px check..";
 Write-Host $rndinfo;
 if(-not $rndCompare) { "-----Error:Ended random RGB px-validations-----" | Out-File $logfile -Append; return $false }
 $rndinfo | Out-File $logfile -Append;
 "`r`n$($rndCompare)" | Out-File $logfile -Append;

 <# 5 - Luminence histogram validations #>
  # HSG initial greyscale image setup.
 $imghsg = (Resolve-HistogramData -imgIn $checkimg[0] -HSGMain $null -stampimage);
 $imgtemphsg = (Resolve-HistogramData -imgIn $checkimg[1] -HSGMain $null -stampimage);
 $hsgdata = (ConvertTo-Histogram -imgDirInput $($checkimg[1] -ireplace "_temp_grey","_temp_grey_lines") -resize);
 $hsgdataCompare = Resolve-HistogramData -imgIn $checkimg[0] -HSGMain $hsgdata;
 $hsginfo = "5 - Histogram data check..";
 Write-Host $hsginfo;
 if(-not $hsgdataCompare) { "-----Error:Ended histogram info-validations-----" | Out-File $logfile -Append; return $false }
 $hsginfo | Out-File $logfile -Append;
 "`r`n$($hsgdataCompare)" | Out-File $logfile -Append;

 <# 6 - Pixels hash validations #>
 $imgleft = (Get-ImagePxAreaHash -imagepath $tempimg -arealimit 1 -setfullarea);
 $imgright = (Get-ImagePxAreaHash -imagepath "$($baseDir)" -arealimit 1 -setfullarea);
 $hashCompare = ($imgleft -eq $imgright);
 $hashinfo = "6 - Bytes hashing check..";
 Write-Host $hashinfo;
 if(-not $hashCompare) { "-----Error:Ended bytes hash-validations-----" | Out-File $logfile -Append; return $false }
 $hashinfo | Out-File $logfile -Append;
 "`r`n$($hashCompare)" | Out-File $logfile -Append;

 <# 7 - File metadata validations #>
 $startimgdata = Get-ImageMetadata -pathImg $baseDir;
 $destimgdata = Get-ImageMetadata -pathImg "$($tempimg)";
 $metadataCompare = $($startimgdata -eq $destimgdata);
 $metadatainfo = "7 - Metadata check..";
 Write-Host $metadatainfo;
 if(-not $metadataCompare) { "-----Error:Ended metadata-validations-----" | Out-File $logfile -Append; return $false }
 $metadatainfo | Out-File $logfile -Append;
 "`r`n$($metadataCompare)" | Out-File $logfile -Append;


 $imageOK = @($sizeCompare,$hashnameCompare,$rndCompare,$dimCompare,$hashCompare,$metadataCompare,$hsgdataCompare);
 $imageRes = $imageOK -notcontains $false;
 if ($imageRes) {
 "`r`n=================================================================" | Out-File $logfile -Append;
 "Image validated OK, $($($imageOK).Length) tests pass" | Out-File $logfile -Append;
 "=================================================================" | Out-File $logfile -Append;
 Write-Host  -ForegroundColor Yellow "`r`nImage validated OK, $($($imageOK).Length) tests pass. Log file @ $($logfile)";
 }
return $imageRes;
}


<#
.Synopsis
    This function allows to convert an image to WPF's ImageSource data type definition.
 
.Description
    Creates a new instance of an ImageSource type from a specified stream.
 
.Parameter imgbmp
    The stream generated from an image as an input.
 
.Parameter asimage
    Switch option to generate an Image type as output instead of ImageSource.
#>

Function Convert-ToImageSource {
[CmdLetBinding()]
param(
[Parameter(ValueFromPipeLine=$true)]
[System.IO.MemoryStream] $imgbmp,
[switch] $asimage
)
Process {
if ($asimage) {$bytestream = ($imgbmp -as [System.IO.Stream]); return $([System.Drawing.Image]::FromStream($bytestream));  }
$bmpsource = New-Object System.Drawing.Bitmap($imgbmp) -ErrorAction Stop;
$ptrBitmap = $bmpsource.GetHbitmap()
[System.Windows.Media.ImageSource]$imgsrc = [System.Windows.Interop.Imaging]::CreateBitmapSourceFromHBitmap($ptrBitmap, [System.IntPtr]::Zero, [System.Windows.Int32Rect]::Empty, [System.Windows.Media.Imaging.BitmapSizeOptions]::FromEmptyOptions());
 }
End {
return $imgsrc;
 }
}


<#
.Synopsis
    Function that exports a base-64 string from a given input image.
 
.Description
    Generates the Base-64 Encoded counterpart of an image, or decodes a Base 64 string to image file.
 
.Parameter imgforenc
    The path of the image used as input for the decoding/encoding process.
 
.Parameter encode
    Switch option to export as base 64 or convert from base 64 to image, defaults to image decode.
#>

Function ConvertFrom-ToB64Image {
param(
[Parameter(Mandatory=$true,Position=0)]
[string]$imgforenc,
[Parameter(Mandatory=$false,Position=1)]
[switch]$encode
)
Begin {
$b64img;
if (Test-Path -LiteralPath $imgforenc -ErrorAction SilentlyContinue) {
$imgencfile = (Resolve-Path $(Get-ChildItem -Path "." -File -Filter "$($imgforenc)").FullName).Path;
$ext = "$(Split-Path -Leaf $imgforenc)".Split('.')[1];
 }
}
Process {
if ($encode) {
if($ext -ieq "ico"){
$imgres = [System.Drawing.Icon]::ExtractAssociatedIcon("$($imgencfile)");
$memInit = New-Object System.IO.MemoryStream;
$imgres.Save($memInit);
$imgbytes = $memInit.ToArray();
$memInit.FlushAsync();
$memInit.Dispose(); $b64img = [System.Convert]::ToBase64String($imgbytes);
 }
 if(($ext -ieq "png") -or ($ext -ieq "jpg") -or ($ext -ieq "jpeg") -or ($ext -ieq "bmp")){
 $b64img = [System.Convert]::ToBase64String((Get-Content -Path "$($imgencfile)" -Encoding Byte));
  }
 }
 else {
 $ImgFinalSource = [System.Windows.Media.Imaging.BitmapImage]::new()
 $ImgFinalSource.BeginInit()
 $ImgFinalSource.StreamSource = [System.IO.MemoryStream][System.Convert]::FromBase64String($imgforenc)
 $ImgFinalSource.EndInit()
 $ImgFinalSource.Freeze()

 $b64img = $ImgFinalSource
 }
}
End {
 return $b64img;
 }
}


<#
.Synopsis
    Return an image from a given url.
 
.Description
    Used to perform a GET operation for a remote image and export to an ImageSource.
 
.Parameter remotepath
    Uri object used for performing the GET request.
#>

Function Get-ImageFromUri {
[CmdLetBinding()]
param(
[Parameter(ValueFromPipeLine=$true)]
[System.Uri]$remotepath
)


# Start remote web request..
Process {

 Try {
$image = (Invoke-WebRequest -Uri $remotepath -Method GET -ErrorAction SilentlyContinue -ErrorVariable "errorRequest").Content;
 }
 Catch { Write-Host "Resource unavailable or bad request - EXCEPTION OUTPUT : $($errorRequest)"}

}
 End {
# Close open sessions on error, handle exceptions..
  return (([System.IO.MemoryStream]::new($image)) | Convert-ToImageSource -asimage);
 }
}


<#
.Synopsis
    Return a QR code from the corresponding input text.
 
.Description
    Can be utilized to export standard QR code as: PNG (default), SVG (option) or ascii text (option).
 
.Parameter toSVG
    Switch option, exports one or more QR code to SVG.
 
.Parameter toASCII
    Switch option, exports one or more QR code to ascii text.
#>

Function Get-QRFromText {
[CmdLetBinding()]
param(
[Parameter(ValueFromPipeLine=$true)]
[string]$qrtext,
[Parameter(Mandatory=$false)]
[switch]$toSVG,
[Parameter(Mandatory=$false)]
[switch]$toASCII
 )

# Pre-loading exernal libraries.
Begin {
 Try {
if (([System.Reflection.Assembly]::GetAssembly([ZXing.BarcodeFormat]).Count) -eq 1) {
 Write-Host "Asm 1 already loaded";
  }
 }
  Catch {
[System.Reflection.Assembly]::Load("77,90,144,0,3,0,0,0,4,0,0,0,255,255,0,0,184,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,14,31,186,14,0,180,9,205,33,184,1,76,205,33,84,104,105,115,32,112,114,111,103,114,97,109,32,99,97,110,110,111,116,32,98,101,32,114,117,110,32,105,110,32,68,79,83,32,109,111,100,101,46,13,13,10,36,0,0,0,0,0,0,0,80,69,0,0,76,1,3,0,196,223,196,90,0,0,0,0,0,0,0,0,224,0,34,32,11,1,48,0,0,204,6,0,0,8,0,0,0,0,0,0,242,11,6,0,0,32,0,0,0,0,7,0,0,0,0,16,0,32,0,0,0,2,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,64,7,0,0,2,0,0,96,33,7,0,3,0,64,133,0,0,16,0,0,16,0,0,0,0,16,0,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,160,11,6,0,79,0,0,0,0,0,7,0,100,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,0,12,0,0,0,104,10,6,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,8,0,0,0,0,0,0,0,0,0,0,0,8,32,0,0,72,0,0,0,0,0,0,0,0,0,0,0,46,116,101,120,116,0,0,0,232,203,6,0,0,32,0,0,0,204,6,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,96,46,114,115,114,99,0,0,0,100,4,0,0,0,0,7,0,0,6,0,0,0,206,6,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,64,46,114,101,108,111,99,0,0,12,0,0,0,0,32,7,0,0,2,0,0,0,212,6,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,11,6,0,0,0,0,0,72,0,0,0,2,0,5,0,184,35,3,0,48,230,2,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,9,6,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,2,42,30,2,40,20,0,0,10,42,6,42,30,2,40,21,0,0,10,42,34,2,3,125,8,0,0,4,42,206,2,40,20,0,0,10,2,115,116,8,0,6,125,6,0,0,4,2,23,125,7,0,0,4,2,123,6,0,0,4,2,123,7,0,0,4,22,106,111,118,8,0,6,2,22,125,8,0,0,4,42,0,0,19,48,4,0,128,0,0,0,0,0,0,0,2,40,20,0,0,10,2,115,116,8,0,6,125,6,0,0,4,2,22,125,8,0,0,4,3,45,27,2,23,125,7,0,0,4,2,123,6,0,0,4,2,123,7,0,0,4,22,106,111,118,8,0,6,42,3,22,106,47,11,3,101,16,1,2,23,125,8,0,0,4,2,22,125,7,0,0,4,43,43,2,123,6,0,0,4,2,123,7,0,0,4,3,31,10,106,93,111,118,8,0,6,3,31,10,106,91,16,1,2,2,123,7,0,0,4,23,88,125,7,0,0,4,3,22,106,48,208,42,19,48,4,0,83,0,0,0,1,0,0,17,2,40,20,0,0,10,2,115,116,8,0,6,125,6,0,0,4,2,3,123,7,0,0,4,125,7,0,0,4,2,3,123,8,0,0,4,125,8,0,0,4,22,10,43,28,2,123,6,0,0,4,6,3,123,6,0,0,4,6,111,117,8,0,6,111,118,8,0,6,6,23,88,10,6,3,123,7,0,0,4,50,219,42,0,19,48,3,0,79,0,0,0,1,0,0,17,2,123,8,0,0,4,3,123,8,0,0,4,46,2,22,42,2,123,7,0,0,4,3,123,7,0,0,4,46,2,22,42,22,10,43,32,2,123,6,0,0,4,6,111,117,8,0,6,3,123,6,0,0,4,6,111,117,8,0,6,46,2,22,42,6,23,88,10,6,2,123,7,0,0,4,50,215,23,42,94,3,117,4,0,0,2,45,2,22,42,2,3,116,4,0,0,2,40,9,0,0,6,42,0,19,48,3,0,37,0,0,0,2,0,0,17,22,10,22,11,43,20,6,2,123,6,0,0,4,7,111,117,8,0,6,105,88,10,7,23,88,11,7,2,123,7,0,0,4,50,227,6,42,0,0,0,19,48,3,0,91,0,0,0,3,0,0,17,2,123,8,0,0,4,23,51,25,2,123,7,0,0,4,23,88,115,22,0,0,10,10,6,31,45,111,23,0,0,10,38,43,12,2,123,7,0,0,4,115,22,0,0,10,10,2,123,7,0,0,4,23,89,11,43,23,6,2,123,6,0,0,4,7,111,117,8,0,6,111,24,0,0,10,38,7,23,89,11,7,22,47,229,6,111,25,0,0,10,42,0,19,48,2,0,46,0,0,0,4,0,0,17,2,115,8,0,0,6,10,6,126,4,0,0,4,40,24,0,0,6,44,24,6,123,8,0,0,4,45,9,6,23,125,8,0,0,4,43,7,6,22,125,8,0,0,4,6,42,0,0,19,48,3,0,28,1,0,0,2,0,0,17,2,123,8,0,0,4,3,123,8,0,0,4,46,44,2,123,8,0,0,4,23,51,10,3,123,8,0,0,4,45,2,22,42,2,123,8,0,0,4,58,238,0,0,0,3,123,8,0,0,4,23,64,226,0,0,0,23,42,2,123,8,0,0,4,45,109,2,123,7,0,0,4,3,123,7,0,0,4,49,2,23,42,2,123,7,0,0,4,3,123,7,0,0,4,47,2,22,42,2,123,7,0,0,4,23,89,10,43,60,2,123,6,0,0,4,6,111,117,8,0,6,3,123,6,0,0,4,6,111,117,8,0,6,49,2,23,42,2,123,6,0,0,4,6,111,117,8,0,6,3,123,6,0,0,4,6,111,117,8,0,6,47,2,22,42,6,23,89,10,6,22,47,192,43,107,2,123,7,0,0,4,3,123,7,0,0,4,47,2,23,42,2,123,7,0,0,4,3,123,7,0,0,4,49,2,22,42,2,123,7,0,0,4,23,89,11,43,60,2,123,6,0,0,4,7,111,117,8,0,6,3,123,6,0,0,4,7,111,117,8,0,6,47,2,23,42,2,123,6,0,0,4,7,111,117,8,0,6,3,123,6,0,0,4,7,111,117,8,0,6,49,2,22,42,7,23,89,11,7,22,47,192,22,42,78,2,3,40,14,0,0,6,45,8,2,3,40,26,0,0,10,42,23,42,46,2,3,40,15,0,0,6,22,254,1,42,46,2,3,40,14,0,0,6,22,254,1,42,58,2,115,8,0,0,6,37,22,125,8,0,0,4,42,0,19,48,2,0,16,1,0,0,4,0,0,17,20,10,2,123,8,0,0,4,45,42,3,123,8,0,0,4,45,34,2,3,40,27,0,0,6,44,10,2,3,40,35,0,0,6,10,43,8,3,2,40,35,0,0,6,10,6,22,125,8,0,0,4,2,123,8,0,0,4,23,51,63,3,123,8,0,0,4,23,51,54,2,3,40,28,0,0,6,44,20,2,40,29,0,0,6,3,40,29,0,0,6,40,35,0,0,6,10,43,18,3,40,29,0,0,6,2,40,29,0,0,6,40,35,0,0,6,10,6,23,125,8,0,0,4,2,123,8,0,0,4,45,65,3,123,8,0,0,4,23,51,56,2,3,40,29,0,0,6,40,27,0,0,6,44,22,2,3,40,29,0,0,6,40,36,0,0,6,10,6,22,125,8,0,0,4,43,20,3,40,29,0,0,6,2,40,36,0,0,6,10,6,23,125,8,0,0,4,2,123,8,0,0,4,23,51,64,3,123,8,0,0,4,45,56,2,40,29,0,0,6,3,40,28,0,0,6,44,22,3,2,40,29,0,0,6,40,36,0,0,6,10,6,22,125,8,0,0,4,43,20,2,40,29,0,0,6,3,40,36,0,0,6,10,6,23,125,8,0,0,4,6,42,19,48,2,0,16,1,0,0,4,0,0,17,20,10,2,123,8,0,0,4,45,49,3,123,8,0,0,4,45,41,2,3,40,27,0,0,6,44,17,2,3,40,36,0,0,6,10,6,22,125,8,0,0,4,43,15,3,2,40,36,0,0,6,10,6,23,125,8,0,0,4,2,123,8,0,0,4,23,51,70,3,123,8,0,0,4,23,51,61,2,3,40,28,0,0,6,44,27,2,40,29,0,0,6,3,40,29,0,0,6,40,36,0,0,6,10,6,23,125,8,0,0,4,43,25,3,40,29,0,0,6,2,40,29,0,0,6,40,36,0,0,6,10,6,22,125,8,0,0,4,2,123,8,0,0,4,45,58,3,123,8,0,0,4,23,51,49,2,3,40,29,0,0,6,40,27,0,0,6,44,15,2,3,40,29,0,0,6,40,35,0,0,6,10,43,13,3,40,29,0,0,6,2,40,35,0,0,6,10,6,22,125,8,0,0,4,2,123,8,0,0,4,23,51,57,3,123,8,0,0,4,45,49,2,40,29,0,0,6,3,40,27,0,0,6,44,15,2,40,29,0,0,6,3,40,35,0,0,6,10,43,13,3,2,40,29,0,0,6,40,35,0,0,6,10,6,23,125,8,0,0,4,6,42,19,48,2,0,82,0,0,0,4,0,0,17,2,126,4,0,0,4,40,23,0,0,6,45,13,3,126,4,0,0,4,40,23,0,0,6,44,6,126,4,0,0,4,42,2,40,18,0,0,6,3,40,18,0,0,6,40,37,0,0,6,10,2,123,8,0,0,4,3,123,8,0,0,4,51,9,6,22,125,8,0,0,4,43,7,6,23,125,8,0,0,4,6,42,30,2,115,7,0,0,6,42,34,2,3,40,26,0,0,10,42,46,2,3,40,26,0,0,10,22,254,1,42,34,2,3,40,14,0,0,6,42,34,2,3,40,16,0,0,6,42,34,2,3,40,15,0,0,6,42,34,2,3,40,17,0,0,6,42,30,2,40,13,0,0,6,42,34,2,3,40,19,0,0,6,42,34,2,3,40,20,0,0,6,42,34,2,3,40,21,0,0,6,42,50,2,126,5,0,0,4,40,30,0,0,6,42,50,2,126,5,0,0,4,40,31,0,0,6,42,19,48,4,0,192,0,0,0,5,0,0,17,2,115,8,0,0,6,10,22,106,11,22,13,43,55,6,123,6,0,0,4,9,111,117,8,0,6,3,123,6,0,0,4,9,111,117,8,0,6,88,7,88,12,6,123,6,0,0,4,9,8,31,10,106,93,111,118,8,0,6,8,31,10,106,91,11,9,23,88,13,9,3,123,7,0,0,4,50,192,3,123,7,0,0,4,13,43,42,6,123,6,0,0,4,9,111,117,8,0,6,7,88,12,6,123,6,0,0,4,9,8,31,10,106,93,111,118,8,0,6,8,31,10,106,91,11,9,23,88,13,9,2,123,7,0,0,4,47,5,7,22,106,48,200,7,22,106,49,42,6,123,6,0,0,4,6,123,7,0,0,4,7,31,10,106,93,111,118,8,0,6,6,37,123,7,0,0,4,23,88,125,7,0,0,4,7,31,10,106,91,11,6,42,19,48,3,0,224,0,0,0,6,0,0,17,2,115,8,0,0,6,10,22,106,13,23,19,4,22,11,43,64,6,123,6,0,0,4,7,111,117,8,0,6,3,123,6,0,0,4,7,111,117,8,0,6,89,9,89,12,8,22,106,47,11,23,106,13,8,31,10,106,88,12,43,3,22,106,13,6,123,6,0,0,4,7,8,111,118,8,0,6,7,23,88,11,7,3,123,7,0,0,4,50,183,3,123,7,0,0,4,11,43,51,6,123,6,0,0,4,7,111,117,8,0,6,9,89,12,8,22,106,47,11,23,106,13,8,31,10,106,88,12,43,3,22,106,13,6,123,6,0,0,4,7,8,111,118,8,0,6,7,23,88,11,7,2,123,7,0,0,4,47,47,9,22,106,48,191,43,40,6,123,6,0,0,4,6,123,7,0,0,4,23,89,111,117,8,0,6,45,16,6,37,123,7,0,0,4,23,89,125,7,0,0,4,43,3,22,19,4,6,123,7,0,0,4,23,89,22,254,2,17,4,95,45,200,6,42,19,48,6,0,42,1,0,0,7,0,0,17,22,106,13,115,6,0,0,6,19,4,17,4,2,123,7,0,0,4,3,123,7,0,0,4,88,23,89,125,7,0,0,4,22,10,43,19,17,4,123,6,0,0,4,6,22,106,111,118,8,0,6,6,23,88,10,6,17,4,123,7,0,0,4,23,88,50,225,22,10,43,107,2,123,6,0,0,4,6,111,117,8,0,6,44,89,22,11,43,76,3,123,6,0,0,4,7,111,117,8,0,6,44,58,17,4,123,6,0,0,4,19,5,6,7,88,19,6,17,5,17,6,17,5,17,6,111,117,8,0,6,2,123,6,0,0,4,6,111,117,8,0,6,3,123,6,0,0,4,7,111,117,8,0,6,90,88,111,118,8,0,6,7,23,88,11,7,3,123,7,0,0,4,50,171,6,23,88,10,6,2,123,7,0,0,4,50,140,22,10,43,44,17,4,123,6,0,0,4,6,111,117,8,0,6,9,88,12,17,4,123,6,0,0,4,6,8,31,10,106,93,111,118,8,0,6,8,31,10,106,91,13,6,23,88,10,6,17,4,123,7,0,0,4,50,202,9,22,106,49,45,17,4,123,6,0,0,4,17,4,123,7,0,0,4,9,31,10,106,93,111,118,8,0,6,17,4,37,123,7,0,0,4,23,88,125,7,0,0,4,9,31,10,106,91,13,17,4,42,94,115,6,0,0,6,128,4,0,0,4,23,106,115,7,0,0,6,128,5,0,0,4,42,206,2,40,20,0,0,10,2,115,119,8,0,6,125,16,0,0,4,2,23,125,17,0,0,4,2,123,16,0,0,4,2,123,17,0,0,4,22,106,111,121,8,0,6,2,22,125,18,0,0,4,42,0,0,19,48,4,0,134,0,0,0,0,0,0,0,2,40,20,0,0,10,2,115,119,8,0,6,125,16,0,0,4,2,22,125,18,0,0,4,3,45,27,2,23,125,17,0,0,4,2,123,16,0,0,4,2,123,17,0,0,4,22,106,111,121,8,0,6,42,3,22,106,47,11,3,101,16,1,2,23,125,18,0,0,4,2,22,125,17,0,0,4,43,49,2,123,16,0,0,4,2,123,17,0,0,4,3,32,0,0,1,0,106,93,111,121,8,0,6,3,32,0,0,1,0,106,91,16,1,2,2,123,17,0,0,4,23,88,125,17,0,0,4,3,22,106,48,202,42,0,0,19,48,4,0,83,0,0,0,1,0,0,17,2,40,20,0,0,10,2,115,119,8,0,6,125,16,0,0,4,2,3,123,17,0,0,4,125,17,0,0,4,2,3,123,18,0,0,4,125,18,0,0,4,22,10,43,28,2,123,16,0,0,4,6,3,123,16,0,0,4,6,111,120,8,0,6,111,121,8,0,6,6,23,88,10,6,3,123,17,0,0,4,50,219,42,0,19,48,4,0,197,0,0,0,8,0,0,17,2,40,20,0,0,10,115,39,0,0,6,10,22,11,22,12,43,98,3,8,111,27,0,0,10,31,48,50,11,3,8,111,27,0,0,10,31,57,49,30,8,45,15,3,8,111,27,0,0,10,31,45,51,4,23,11,43,54,114,1,0,0,112,20,115,96,0,0,6,122,6,126,15,0,0,4,40,82,0,0,6,3,8,111,27,0,0,10,13,18,3,40,28,0,0,10,40,29,0,0,10,40,69,0,0,6,40,80,0,0,6,10,8,23,88,12,8,3,111,30,0,0,10,50,149,2,7,125,18,0,0,4,2,115,119,8,0,6,125,16,0,0,4,2,6,123,17,0,0,4,125,17,0,0,4,22,12,43,28,2,123,16,0,0,4,8,6,123,16,0,0,4,8,111,120,8,0,6,111,121,8,0,6,8,23,88,12,8,6,123,17,0,0,4,50,219,42,0,0,0,19,48,4,0,175,0,0,0,9,0,0,17,2,40,20,0,0,10,3,142,105,26,91,32,0,5,0,0,49,12,114,49,0,0,112,20,115,96,0,0,6,122,2,115,119,8,0,6,125,16,0,0,4,2,22,125,18,0,0,4,22,11,43,58,3,7,145,12,7,23,88,3,142,105,47,12,8,30,98,12,8,3,7,23,88,145,88,12,2,123,16,0,0,4,2,2,123,17,0,0,4,13,9,23,88,125,17,0,0,4,9,8,106,111,121,8,0,6,7,24,88,11,7,3,142,105,50,192,23,10,43,39,2,123,16,0,0,4,2,123,17,0,0,4,23,89,111,120,8,0,6,45,16,2,2,123,17,0,0,4,23,89,125,17,0,0,4,43,2,22,10,2,123,17,0,0,4,23,89,22,254,2,6,95,45,202,42,0,19,48,3,0,79,0,0,0,1,0,0,17,2,123,18,0,0,4,3,123,18,0,0,4,46,2,22,42,2,123,17,0,0,4,3,123,17,0,0,4,46,2,22,42,22,10,43,32,2,123,16,0,0,4,6,111,120,8,0,6,3,123,16,0,0,4,6,111,120,8,0,6,46,2,22,42,6,23,88,10,6,2,123,17,0,0,4,50,215,23,42,94,3,117,5,0,0,2,45,2,22,42,2,3,116,5,0,0,2,40,44,0,0,6,42,0,19,48,3,0,37,0,0,0,2,0,0,17,22,10,22,11,43,20,6,2,123,16,0,0,4,7,111,120,8,0,6,105,88,10,7,23,88,11,7,2,123,17,0,0,4,50,227,6,42,0,0,0,19,48,3,0,98,0,0,0,10,0,0,17,115,6,0,0,6,10,23,106,115,7,0,0,6,11,22,12,43,52,6,2,123,16,0,0,4,8,111,120,8,0,6,40,22,0,0,6,7,40,32,0,0,6,40,30,0,0,6,10,7,32,0,0,1,0,106,40,22,0,0,6,40,32,0,0,6,11,8,23,88,12,8,2,123,17,0,0,4,50,195,6,2,123,18,0,0,4,111,5,0,0,6,6,111,25,0,0,10,42,30,2,115,42,0,0,6,42,98,2,3,40,53,0,0,6,44,2,23,42,2,3,40,26,0,0,10,44,2,22,42,21,42,130,3,117,5,0,0,2,45,11,114,184,0,0,112,115,31,0,0,10,122,2,3,116,5,0,0,2,40,49,0,0,6,42,42,2,123,17,0,0,4,31,16,90,42,0,19,48,2,0,46,0,0,0,11,0,0,17,2,115,41,0,0,6,10,6,126,12,0,0,4,40,74,0,0,6,44,24,6,123,18,0,0,4,45,9,6,23,125,18,0,0,4,43,7,6,22,125,18,0,0,4,6,42,0,0,19,48,3,0,28,1,0,0,2,0,0,17,2,123,18,0,0,4,3,123,18,0,0,4,46,44,2,123,18,0,0,4,23,51,10,3,123,18,0,0,4,45,2,22,42,2,123,18,0,0,4,58,238,0,0,0,3,123,18,0,0,4,23,64,226,0,0,0,23,42,2,123,18,0,0,4,45,109,2,123,17,0,0,4,3,123,17,0,0,4,49,2,23,42,2,123,17,0,0,4,3,123,17,0,0,4,47,2,22,42,2,123,17,0,0,4,23,89,10,43,60,2,123,16,0,0,4,6,111,120,8,0,6,3,123,16,0,0,4,6,111,120,8,0,6,49,2,23,42,2,123,16,0,0,4,6,111,120,8,0,6,3,123,16,0,0,4,6,111,120,8,0,6,47,2,22,42,6,23,89,10,6,22,47,192,43,107,2,123,17,0,0,4,3,123,17,0,0,4,47,2,23,42,2,123,17,0,0,4,3,123,17,0,0,4,49,2,22,42,2,123,17,0,0,4,23,89,11,43,60,2,123,16,0,0,4,7,111,120,8,0,6,3,123,16,0,0,4,7,111,120,8,0,6,47,2,23,42,2,123,16,0,0,4,7,111,120,8,0,6,3,123,16,0,0,4,7,111,120,8,0,6,49,2,22,42,7,23,89,11,7,22,47,192,22,42,78,2,3,40,53,0,0,6,45,8,2,3,40,26,0,0,10,42,23,42,46,2,3,40,54,0,0,6,22,254,1,42,46,2,3,40,53,0,0,6,22,254,1,42,58,2,115,41,0,0,6,37,22,125,18,0,0,4,42,0,19,48,2,0,16,1,0,0,11,0,0,17,20,10,2,123,18,0,0,4,45,42,3,123,18,0,0,4,45,34,2,3,40,77,0,0,6,44,10,2,3,40,87,0,0,6,10,43,8,3,2,40,87,0,0,6,10,6,22,125,18,0,0,4,2,123,18,0,0,4,23,51,63,3,123,18,0,0,4,23,51,54,2,3,40,78,0,0,6,44,20,2,40,79,0,0,6,3,40,79,0,0,6,40,87,0,0,6,10,43,18,3,40,79,0,0,6,2,40,79,0,0,6,40,87,0,0,6,10,6,23,125,18,0,0,4,2,123,18,0,0,4,45,65,3,123,18,0,0,4,23,51,56,2,3,40,79,0,0,6,40,77,0,0,6,44,22,2,3,40,79,0,0,6,40,88,0,0,6,10,6,22,125,18,0,0,4,43,20,3,40,79,0,0,6,2,40,88,0,0,6,10,6,23,125,18,0,0,4,2,123,18,0,0,4,23,51,64,3,123,18,0,0,4,45,56,2,40,79,0,0,6,3,40,78,0,0,6,44,22,3,2,40,79,0,0,6,40,88,0,0,6,10,6,22,125,18,0,0,4,43,20,2,40,79,0,0,6,3,40,88,0,0,6,10,6,23,125,18,0,0,4,6,42,19,48,2,0,16,1,0,0,11,0,0,17,20,10,2,123,18,0,0,4,45,49,3,123,18,0,0,4,45,41,2,3,40,77,0,0,6,44,17,2,3,40,88,0,0,6,10,6,22,125,18,0,0,4,43,15,3,2,40,88,0,0,6,10,6,23,125,18,0,0,4,2,123,18,0,0,4,23,51,70,3,123,18,0,0,4,23,51,61,2,3,40,78,0,0,6,44,27,2,40,79,0,0,6,3,40,79,0,0,6,40,88,0,0,6,10,6,23,125,18,0,0,4,43,25,3,40,79,0,0,6,2,40,79,0,0,6,40,88,0,0,6,10,6,22,125,18,0,0,4,2,123,18,0,0,4,45,58,3,123,18,0,0,4,23,51,49,2,3,40,79,0,0,6,40,77,0,0,6,44,15,2,3,40,79,0,0,6,40,87,0,0,6,10,43,13,3,40,79,0,0,6,2,40,87,0,0,6,10,6,22,125,18,0,0,4,2,123,18,0,0,4,23,51,57,3,123,18,0,0,4,45,49,2,40,79,0,0,6,3,40,77,0,0,6,44,15,2,40,79,0,0,6,3,40,87,0,0,6,10,43,13,3,2,40,79,0,0,6,40,87,0,0,6,10,6,23,125,18,0,0,4,6,42,19,48,2,0,82,0,0,0,11,0,0,17,2,126,12,0,0,4,40,73,0,0,6,45,13,3,126,12,0,0,4,40,73,0,0,6,44,6,126,12,0,0,4,42,2,40,57,0,0,6,3,40,57,0,0,6,40,89,0,0,6,10,2,123,18,0,0,4,3,123,18,0,0,4,51,9,6,22,125,18,0,0,4,43,7,6,23,125,18,0,0,4,6,42,0,0,19,48,3,0,158,0,0,0,11,0,0,17,3,126,12,0,0,4,40,73,0,0,6,44,16,114,234,0,0,112,115,32,0,0,10,115,96,0,0,6,122,2,126,12,0,0,4,40,73,0,0,6,44,6,126,12,0,0,4,42,2,40,57,0,0,6,3,40,57,0,0,6,40,76,0,0,6,44,6,126,12,0,0,4,42,3,123,17,0,0,4,23,51,26,2,40,57,0,0,6,3,123,16,0,0,4,22,111,120,8,0,6,40,90,0,0,6,10,43,18,2,40,57,0,0,6,3,40,57,0,0,6,40,91,0,0,6,10,2,123,18,0,0,4,3,123,18,0,0,4,51,9,6,22,125,18,0,0,4,43,7,6,23,125,18,0,0,4,6,42,0,0,19,48,3,0,79,0,0,0,11,0,0,17,3,126,12,0,0,4,40,73,0,0,6,44,16,114,234,0,0,112,115,32,0,0,10,115,96,0,0,6,122,2,40,57,0,0,6,3,40,57,0,0,6,40,76,0,0,6,44,9,2,115,41,0,0,6,10,6,42,2,2,3,40,83,0,0,6,3,40,82,0,0,6,40,81,0,0,6,10,6,42,0,19,48,2,0,94,0,0,0,12,0,0,17,3,22,47,12,114,24,1,0,112,20,115,96,0,0,6,122,2,126,12,0,0,4,40,73,0,0,6,44,6,115,39,0,0,6,42,23,106,115,40,0,0,6,10,3,45,2,6,42,2,115,41,0,0,6,11,43,31,3,24,93,23,51,8,6,7,40,82,0,0,6,10,3,24,91,16,1,3,22,49,8,7,7,40,82,0,0,6,11,3,22,48,221,6,42,0,0,19,48,3,0,90,0,0,0,12,0,0,17,2,123,18,0,0,4,23,51,12,114,120,1,0,112,20,115,96,0,0,6,122,22,106,115,40,0,0,6,10,2,115,41,0,0,6,11,43,26,7,10,6,2,6,40,83,0,0,6,40,80,0,0,6,126,14,0,0,4,40,83,0,0,6,11,7,6,40,81,0,0,6,40,57,0,0,6,126,13,0,0,4,40,77,0,0,6,45,206,7,42,230,2,123,18,0,0,4,23,46,9,3,123,18,0,0,4,23,51,24,114,242,1,0,112,20,115,96,0,0,6,122,2,3,40,84,0,0,6,3,16,0,16,1,3,126,12,0,0,4,40,75,0,0,6,45,231,2,42,19,48,5,0,208,0,0,0,13,0,0,17,2,123,18,0,0,4,23,46,9,3,123,18,0,0,4,23,51,12,114,242,1,0,112,20,115,96,0,0,6,122,115,39,0,0,6,10,23,106,115,40,0,0,6,11,23,106,115,40,0,0,6,12,115,39,0,0,6,13,4,115,39,0,0,6,81,5,115,39,0,0,6,81,43,116,2,3,40,83,0,0,6,19,4,2,17,4,3,40,82,0,0,6,40,81,0,0,6,4,7,17,4,6,40,82,0,0,6,40,81,0,0,6,81,5,9,17,4,8,40,82,0,0,6,40,81,0,0,6,81,3,115,41,0,0,6,16,0,115,41,0,0,6,16,1,6,115,41,0,0,6,11,4,80,115,41,0,0,6,10,8,115,41,0,0,6,13,5,80,115,41,0,0,6,12,4,7,115,41,0,0,6,81,5,9,115,41,0,0,6,81,3,126,12,0,0,4,40,75,0,0,6,58,124,255,255,255,2,42,19,48,4,0,153,0,0,0,12,0,0,17,3,126,14,0,0,4,40,76,0,0,6,44,12,114,82,2,0,112,20,115,96,0,0,6,122,2,40,57,0,0,6,3,40,77,0,0,6,44,9,2,3,40,84,0,0,6,16,0,2,123,18,0,0,4,23,51,9,2,3,40,80,0,0,6,16,0,2,126,12,0,0,4,40,73,0,0,6,44,12,114,219,2,0,112,20,115,96,0,0,6,122,2,3,40,65,0,0,6,126,13,0,0,4,40,74,0,0,6,44,12,114,43,3,0,112,20,115,96,0,0,6,122,3,2,18,0,18,1,40,66,0,0,6,38,7,123,18,0,0,4,23,51,8,7,3,40,80,0,0,6,11,7,42,0,0,0,19,48,2,0,207,0,0,0,12,0,0,17,3,22,40,70,0,0,6,40,76,0,0,6,44,12,114,212,3,0,112,20,115,96,0,0,6,122,4,126,14,0,0,4,40,76,0,0,6,44,12,114,82,2,0,112,20,115,96,0,0,6,122,2,40,57,0,0,6,4,40,77,0,0,6,44,9,2,4,40,84,0,0,6,16,0,2,123,18,0,0,4,23,51,9,2,4,40,80,0,0,6,16,0,2,126,12,0,0,4,40,73,0,0,6,44,6,115,39,0,0,6,42,23,106,115,40,0,0,6,10,2,115,41,0,0,6,11,43,64,3,126,14,0,0,4,40,84,0,0,6,126,13,0,0,4,40,73,0,0,6,44,14,6,7,40,82,0,0,6,4,40,84,0,0,6,10,3,126,14,0,0,4,40,83,0,0,6,16,1,7,7,40,82,0,0,6,4,40,84,0,0,6,11,3,126,12,0,0,4,40,75,0,0,6,45,179,6,42,30,2,115,40,0,0,6,42,34,2,106,115,40,0,0,6,42,19,48,3,0,63,0,0,0,14,0,0,17,22,106,10,2,123,17,0,0,4,23,89,11,43,28,6,32,0,0,1,0,106,90,10,6,2,123,16,0,0,4,7,111,120,8,0,6,88,10,7,23,89,11,7,22,47,224,2,123,18,0,0,4,23,46,3,6,105,42,21,6,105,90,42,0,19,48,3,0,48,0,0,0,15,0,0,17,22,106,10,2,123,17,0,0,4,23,89,11,43,28,6,32,0,0,1,0,106,90,10,6,2,123,16,0,0,4,7,111,120,8,0,6,88,10,7,23,89,11,7,22,47,224,6,42,34,2,3,40,53,0,0,6,42,34,2,3,40,55,0,0,6,42,34,2,3,40,54,0,0,6,42,34,2,3,40,56,0,0,6,42,30,2,40,52,0,0,6,42,34,2,3,40,58,0,0,6,42,34,2,3,40,59,0,0,6,42,34,2,3,40,60,0,0,6,42,34,2,3,40,61,0,0,6,42,34,2,3,40,62,0,0,6,42,50,2,126,13,0,0,4,40,80,0,0,6,42,50,2,126,13,0,0,4,40,81,0,0,6,42,0,19,48,4,0,210,0,0,0,16,0,0,17,2,115,41,0,0,6,10,22,106,11,22,13,43,61,6,123,16,0,0,4,9,111,120,8,0,6,3,123,16,0,0,4,9,111,120,8,0,6,88,7,88,12,6,123,16,0,0,4,9,8,32,0,0,1,0,106,93,111,121,8,0,6,8,32,0,0,1,0,106,91,11,9,23,88,13,9,3,123,17,0,0,4,50,186,3,123,17,0,0,4,13,43,48,6,123,16,0,0,4,9,111,120,8,0,6,7,88,12,6,123,16,0,0,4,9,8,32,0,0,1,0,106,93,111,121,8,0,6,8,32,0,0,1,0,106,91,11,9,23,88,13,9,2,123,17,0,0,4,47,5,7,22,106,48,194,7,22,106,49,48,6,123,16,0,0,4,6,123,17,0,0,4,7,32,0,0,1,0,106,93,111,121,8,0,6,6,37,123,17,0,0,4,23,88,125,17,0,0,4,7,32,0,0,1,0,106,91,11,6,42,0,0,19,48,3,0,230,0,0,0,17,0,0,17,2,115,41,0,0,6,10,22,106,13,23,19,4,22,11,43,67,6,123,16,0,0,4,7,111,120,8,0,6,3,123,16,0,0,4,7,111,120,8,0,6,89,9,89,12,8,22,106,47,14,23,106,13,8,32,0,0,1,0,106,88,12,43,3,22,106,13,6,123,16,0,0,4,7,8,111,121,8,0,6,7,23,88,11,7,3,123,17,0,0,4,50,180,3,123,17,0,0,4,11,43,54,6,123,16,0,0,4,7,111,120,8,0,6,9,89,12,8,22,106,47,14,23,106,13,8,32,0,0,1,0,106,88,12,43,3,22,106,13,6,123,16,0,0,4,7,8,111,121,8,0,6,7,23,88,11,7,2,123,17,0,0,4,47,47,9,22,106,48,188,43,40,6,123,16,0,0,4,6,123,17,0,0,4,23,89,111,120,8,0,6,45,16,6,37,123,17,0,0,4,23,89,125,17,0,0,4,43,3,22,19,4,6,123,17,0,0,4,23,89,22,254,2,17,4,95,45,200,6,42,0,0,19,48,6,0,54,1,0,0,18,0,0,17,22,106,13,115,39,0,0,6,19,4,17,4,2,123,17,0,0,4,3,123,17,0,0,4,88,23,89,125,17,0,0,4,22,10,43,19,17,4,123,16,0,0,4,6,22,106,111,121,8,0,6,6,23,88,10,6,17,4,123,17,0,0,4,23,88,50,225,22,10,43,107,2,123,16,0,0,4,6,111,120,8,0,6,44,89,22,11,43,76,3,123,16,0,0,4,7,111,120,8,0,6,44,58,17,4,123,16,0,0,4,19,5,6,7,88,19,6,17,5,17,6,17,5,17,6,111,120,8,0,6,2,123,16,0,0,4,6,111,120,8,0,6,3,123,16,0,0,4,7,111,120,8,0,6,90,88,111,121,8,0,6,7,23,88,11,7,3,123,17,0,0,4,50,171,6,23,88,10,6,2,123,17,0,0,4,50,140,22,10,43,50,17,4,123,16,0,0,4,6,111,120,8,0,6,9,88,12,17,4,123,16,0,0,4,6,8,32,0,0,1,0,106,93,111,121,8,0,6,8,32,0,0,1,0,106,91,13,6,23,88,10,6,17,4,123,17,0,0,4,50,196,9,22,106,49,51,17,4,123,16,0,0,4,17,4,123,17,0,0,4,9,32,0,0,1,0,106,93,111,121,8,0,6,17,4,37,123,17,0,0,4,23,88,125,17,0,0,4,9,32,0,0,1,0,106,91,13,17,4,42,0,0,19,48,4,0,141,0,0,0,19,0,0,17,115,39,0,0,6,10,2,123,17,0,0,4,23,89,11,6,2,123,17,0,0,4,125,17,0,0,4,2,123,16,0,0,4,7,111,120,8,0,6,12,43,49,6,123,16,0,0,4,7,8,3,91,111,121,8,0,6,8,3,93,12,7,23,89,11,7,22,50,22,8,32,0,0,1,0,106,90,2,123,16,0,0,4,7,111,120,8,0,6,88,12,7,22,47,203,6,123,16,0,0,4,6,123,17,0,0,4,23,89,111,120,8,0,6,45,23,6,123,17,0,0,4,23,46,14,6,37,123,17,0,0,4,23,89,125,17,0,0,4,6,42,0,0,0,19,48,4,0,242,0,0,0,20,0,0,17,2,123,17,0,0,4,11,3,123,17,0,0,4,12,32,0,0,1,0,106,3,123,16,0,0,4,8,23,89,111,120,8,0,6,23,106,88,91,13,115,39,0,0,6,19,7,2,9,40,69,0,0,6,40,82,0,0,6,19,8,3,9,40,69,0,0,6,40,82,0,0,6,19,5,7,8,89,10,43,95,17,8,17,5,6,8,40,94,0,0,6,19,4,17,5,17,4,40,69,0,0,6,40,82,0,0,6,19,6,17,8,17,6,6,8,40,92,0,0,6,44,23,17,4,23,106,89,19,4,17,5,17,4,40,69,0,0,6,40,82,0,0,6,19,6,17,7,123,16,0,0,4,6,17,4,111,121,8,0,6,17,8,17,6,6,8,40,93,0,0,6,6,23,89,10,6,22,47,157,17,7,7,8,89,23,88,125,17,0,0,4,17,7,123,17,0,0,4,23,46,38,17,7,123,16,0,0,4,17,7,123,17,0,0,4,23,89,111,120,8,0,6,45,15,17,7,37,123,17,0,0,4,23,89,125,17,0,0,4,17,7,42,0,0,19,48,3,0,78,0,0,0,2,0,0,17,5,10,22,11,43,36,2,123,16,0,0,4,6,4,88,111,120,8,0,6,3,123,16,0,0,4,6,111,120,8,0,6,46,4,6,11,43,4,6,23,89,10,6,7,51,216,2,123,16,0,0,4,6,4,88,111,120,8,0,6,3,123,16,0,0,4,6,111,120,8,0,6,47,2,23,42,22,42,0,0,19,48,4,0,87,0,0,0,21,0,0,17,22,106,11,22,10,43,75,2,123,16,0,0,4,6,4,88,111,120,8,0,6,3,123,16,0,0,4,6,111,120,8,0,6,89,7,89,32,0,0,1,0,106,88,12,2,123,16,0,0,4,6,4,88,8,32,0,0,1,0,106,93,111,121,8,0,6,23,106,8,32,0,0,1,0,106,91,89,11,6,23,88,10,6,5,49,177,42,0,19,48,5,0,120,0,0,0,21,0,0,17,4,5,88,10,2,123,16,0,0,4,6,111,120,8,0,6,32,0,0,1,0,106,90,2,123,16,0,0,4,6,23,89,111,120,8,0,6,88,32,0,0,1,0,106,90,2,123,16,0,0,4,6,24,89,111,120,8,0,6,88,3,123,16,0,0,4,5,23,89,111,120,8,0,6,32,0,0,1,0,106,90,3,123,16,0,0,4,5,24,89,111,120,8,0,6,88,11,7,91,12,8,32,255,255,0,0,106,47,4,8,105,106,42,32,255,255,0,0,106,42,194,115,39,0,0,6,128,12,0,0,4,23,106,115,40,0,0,6,128,13,0,0,4,24,106,115,40,0,0,6,128,14,0,0,4,31,10,106,115,40,0,0,6,128,15,0,0,4,42,38,2,3,4,40,33,0,0,10,42,74,2,115,12,1,0,6,126,44,0,0,4,20,40,98,0,0,6,42,46,2,3,4,5,20,40,99,0,0,6,42,110,2,3,5,14,4,40,126,0,0,6,2,4,37,45,6,38,126,44,0,0,4,125,45,0,0,4,42,30,2,123,45,0,0,4,42,0,0,19,48,2,0,54,0,0,0,22,0,0,17,2,40,100,0,0,6,45,11,114,50,4,0,112,115,34,0,0,10,122,3,45,11,114,148,4,0,112,115,35,0,0,10,122,2,40,100,0,0,6,3,111,36,0,0,10,10,2,6,111,127,0,0,6,42,0,0,19,48,2,0,54,0,0,0,22,0,0,17,2,40,100,0,0,6,45,11,114,50,4,0,112,115,34,0,0,10,122,3,45,11,114,148,4,0,112,115,35,0,0,10,122,2,40,100,0,0,6,3,111,36,0,0,10,10,2,6,111,128,0,0,6,42,90,126,235,5,0,4,254,6,124,8,0,6,115,37,0,0,10,128,44,0,0,4,42,42,2,20,3,20,40,38,0,0,10,42,46,2,3,4,5,20,40,39,0,0,10,42,74,2,3,5,14,4,40,126,0,0,6,2,4,125,40,0,0,10,42,42,2,3,4,5,40,126,0,0,6,42,30,2,123,40,0,0,10,42,0,0,19,48,2,0,59,0,0,0,22,0,0,17,2,40,41,0,0,10,45,11,114,50,4,0,112,115,34,0,0,10,122,3,140,20,0,0,27,45,11,114,148,4,0,112,115,35,0,0,10,122,2,40,41,0,0,10,3,111,42,0,0,10,10,2,6,111,127,0,0,6,42,0,19,48,2,0,59,0,0,0,22,0,0,17,2,40,41,0,0,10,45,11,114,50,4,0,112,115,34,0,0,10,122,3,140,20,0,0,27,45,11,114,148,4,0,112,115,35,0,0,10,122,2,40,41,0,0,10,3,111,42,0,0,10,10,2,6,111,128,0,0,6,42,198,2,123,53,0,0,4,45,34,2,115,126,6,0,6,125,53,0,0,4,2,123,53,0,0,4,2,254,6,135,0,0,6,115,43,0,0,10,111,100,6,0,6,2,123,53,0,0,4,42,202,3,44,32,2,3,125,53,0,0,4,2,123,53,0,0,4,2,254,6,136,0,0,6,115,43,0,0,10,111,100,6,0,6,43,7,2,20,125,53,0,0,4,2,22,125,52,0,0,4,42,19,48,3,0,25,0,0,0,23,0,0,17,2,123,49,0,0,4,37,45,15,38,2,115,12,1,0,6,37,10,125,49,0,0,4,6,42,0,0,0,19,48,3,0,65,0,0,0,24,0,0,17,2,40,111,0,0,6,111,98,6,0,6,29,111,44,0,0,10,45,31,2,254,6,131,0,0,6,115,68,1,0,6,10,2,40,111,0,0,6,111,98,6,0,6,29,6,111,45,0,0,10,2,3,40,116,0,0,6,2,22,125,52,0,0,4,42,166,2,3,40,117,0,0,6,2,123,54,0,0,4,45,18,2,40,111,0,0,6,111,98,6,0,6,29,111,46,0,0,10,38,2,22,125,52,0,0,4,42,0,19,48,3,0,41,0,0,0,25,0,0,17,2,123,54,0,0,4,10,6,11,7,3,40,47,0,0,10,116,4,0,0,27,12,2,124,54,0,0,4,8,7,40,1,0,0,43,10,6,7,51,223,42,0,0,0,19,48,3,0,41,0,0,0,25,0,0,17,2,123,54,0,0,4,10,6,11,7,3,40,49,0,0,10,116,4,0,0,27,12,2,124,54,0,0,4,8,7,40,1,0,0,43,10,6,7,51,223,42,0,0,0,19,48,3,0,41,0,0,0,26,0,0,17,2,123,55,0,0,4,10,6,11,7,3,40,47,0,0,10,116,5,0,0,27,12,2,124,55,0,0,4,8,7,40,2,0,0,43,10,6,7,51,223,42,0,0,0,19,48,3,0,41,0,0,0,26,0,0,17,2,123,55,0,0,4,10,6,11,7,3,40,49,0,0,10,116,5,0,0,27,12,2,124,55,0,0,4,8,7,40,2,0,0,43,10,6,7,51,223,42,30,2,123,56,0,0,4,42,34,2,3,125,56,0,0,4,42,30,2,123,57,0,0,4,42,34,2,3,125,57,0,0,4,42,66,2,123,51,0,0,4,37,45,6,38,126,47,0,0,4,42,74,2,115,12,1,0,6,126,47,0,0,4,20,40,126,0,0,6,42,250,2,40,20,0,0,10,2,3,37,45,6,38,115,12,1,0,6,125,49,0,0,4,2,4,37,45,6,38,126,47,0,0,4,125,51,0,0,4,2,5,37,45,6,38,126,48,0,0,4,125,50,0,0,4,2,22,125,52,0,0,4,42,0,0,19,48,5,0,188,1,0,0,27,0,0,17,20,10,2,40,124,0,0,6,3,111,50,0,0,10,115,172,0,0,6,11,2,40,113,0,0,6,117,33,0,0,2,12,22,13,23,19,4,2,40,120,0,0,6,44,32,2,40,111,0,0,6,111,98,6,0,6,31,11,23,140,71,0,0,1,111,45,0,0,10,26,19,4,56,239,0,0,0,2,40,111,0,0,6,111,98,6,0,6,31,11,111,44,0,0,10,57,216,0,0,0,2,40,111,0,0,6,111,98,6,0,6,31,11,111,46,0,0,10,38,56,192,0,0,0,2,123,52,0,0,4,44,13,8,44,10,8,7,111,8,1,0,6,10,43,31,2,40,113,0,0,6,7,2,40,111,0,0,6,111,98,6,0,6,111,30,1,0,6,10,2,23,125,52,0,0,4,6,45,91,2,40,122,0,0,6,44,83,3,111,3,1,0,6,44,75,2,40,124,0,0,6,3,111,4,1,0,6,111,50,0,0,10,115,172,0,0,6,11,2,123,52,0,0,4,44,13,8,44,10,8,7,111,8,1,0,6,10,43,31,2,40,113,0,0,6,7,2,40,111,0,0,6,111,98,6,0,6,111,30,1,0,6,10,2,23,125,52,0,0,4,6,45,51,3,111,0,1,0,6,44,43,2,40,120,0,0,6,44,35,2,40,124,0,0,6,3,111,1,1,0,6,111,50,0,0,10,115,172,0,0,6,11,9,23,88,13,9,17,4,63,56,255,255,255,6,44,115,6,111,44,1,0,6,45,18,6,23,9,31,90,90,140,72,0,0,1,111,54,1,0,6,43,82,6,111,44,1,0,6,23,111,51,0,0,10,45,23,6,111,44,1,0,6,23,9,31,90,90,140,72,0,0,1,111,52,0,0,10,43,45,6,111,44,1,0,6,23,6,111,44,1,0,6,23,111,53,0,0,10,165,72,0,0,1,9,31,90,90,88,32,104,1,0,0,93,140,72,0,0,1,111,52,0,0,10,2,6,40,130,0,0,6,6,42,19,48,5,0,172,1,0,0,28,0,0,17,20,10,2,40,124,0,0,6,3,111,50,0,0,10,115,172,0,0,6,11,22,12,23,13,20,19,4,2,40,120,0,0,6,44,26,2,40,111,0,0,6,111,98,6,0,6,31,11,23,140,71,0,0,1,111,45,0,0,10,26,13,2,40,111,0,0,6,111,108,6,0,6,19,5,17,5,44,36,17,5,111,54,0,0,10,23,51,26,17,5,32,0,8,0,0,111,55,0,0,10,44,12,115,26,5,0,6,19,4,56,146,0,0,0,2,40,113,0,0,6,115,12,5,0,6,19,4,56,128,0,0,0,17,4,7,2,40,111,0,0,6,111,98,6,0,6,111,21,5,0,6,10,6,45,59,2,40,122,0,0,6,44,51,3,111,3,1,0,6,44,43,2,40,124,0,0,6,3,111,4,1,0,6,111,50,0,0,10,115,172,0,0,6,11,17,4,7,2,40,111,0,0,6,111,98,6,0,6,111,21,5,0,6,10,6,45,50,3,111,0,1,0,6,44,42,2,40,120,0,0,6,44,34,2,40,124,0,0,6,3,111,1,1,0,6,111,50,0,0,10,115,172,0,0,6,11,8,23,88,12,8,9,63,121,255,255,255,6,57,153,0,0,0,6,19,6,22,19,7,43,127,17,6,17,7,154,19,8,17,8,111,44,1,0,6,45,19,17,8,23,8,31,90,90,140,72,0,0,1,111,54,1,0,6,43,86,17,8,111,44,1,0,6,23,111,51,0,0,10,45,24,17,8,111,44,1,0,6,23,8,31,90,90,140,72,0,0,1,111,52,0,0,10,43,47,17,8,111,44,1,0,6,23,17,8,111,44,1,0,6,23,111,53,0,0,10,165,72,0,0,1,8,31,90,90,88,32,104,1,0,0,93,140,72,0,0,1,111,52,0,0,10,17,7,23,88,19,7,17,7,17,6,142,105,63,118,255,255,255,2,6,40,129,0,0,6,6,42,27,48,2,0,57,0,0,0,29,0,0,17,2,123,55,0,0,4,44,48,3,111,56,0,0,10,10,43,19,6,111,57,0,0,10,11,2,123,55,0,0,4,7,111,58,0,0,10,6,111,59,0,0,10,45,229,222,10,6,44,6,6,111,60,0,0,10,220,42,0,0,0,1,16,0,0,2,0,15,0,31,46,0,10,0,0,0,0,86,2,123,55,0,0,4,44,12,2,123,55,0,0,4,3,111,58,0,0,10,42,86,2,123,54,0,0,4,44,12,2,123,54,0,0,4,3,111,61,0,0,10,42,19,48,5,0,39,0,0,0,22,0,0,17,3,45,11,114,176,4,0,112,115,35,0,0,10,122,2,123,50,0,0,4,3,4,5,14,4,111,62,0,0,10,10,2,6,111,127,0,0,6,42,0,19,48,5,0,39,0,0,0,22,0,0,17,3,45,11,114,176,4,0,112,115,35,0,0,10,122,2,123,50,0,0,4,3,4,5,14,4,111,62,0,0,10,10,2,6,111,128,0,0,6,42,174,126,236,5,0,4,254,6,127,8,0,6,115,63,0,0,10,128,47,0,0,4,126,236,5,0,4,254,6,128,8,0,6,115,64,0,0,10,128,48,0,0,4,42,34,2,22,125,52,0,0,4,42,74,2,40,65,0,0,10,2,115,119,1,0,6,40,66,0,0,10,42,74,2,40,67,0,0,10,2,115,137,1,0,6,40,68,0,0,10,42,30,2,123,69,0,0,10,42,34,2,3,125,69,0,0,10,42,0,19,48,5,0,53,0,0,0,30,0,0,17,2,40,70,0,0,10,45,11,114,190,4,0,112,115,34,0,0,10,122,2,3,40,152,0,0,6,10,2,40,70,0,0,10,6,2,40,144,0,0,6,3,2,40,146,0,0,6,111,71,0,0,10,42,182,2,40,70,0,0,10,45,11,114,190,4,0,112,115,34,0,0,10,122,2,40,70,0,0,10,3,2,40,144,0,0,6,20,2,40,146,0,0,6,111,71,0,0,10,42,30,2,40,150,0,0,6,42,30,2,123,60,0,0,4,42,34,2,3,125,60,0,0,4,42,19,48,4,0,41,0,0,0,31,0,0,17,2,123,59,0,0,4,37,45,31,38,2,115,152,6,0,6,37,31,100,111,143,6,0,6,37,31,100,111,145,6,0,6,37,10,125,59,0,0,4,6,42,34,2,3,125,59,0,0,4,42,30,2,123,61,0,0,4,42,34,2,3,125,61,0,0,4,42,58,2,40,20,0,0,10,2,3,40,149,0,0,6,42,0,0,19,48,6,0,53,0,0,0,31,0,0,17,2,40,148,0,0,6,37,45,6,38,115,17,1,0,6,2,40,146,0,0,6,10,3,2,40,144,0,0,6,6,111,144,6,0,6,6,111,142,6,0,6,6,111,140,6,0,6,111,102,1,0,6,42,94,2,3,4,40,247,0,0,6,2,3,4,90,141,74,0,0,1,125,66,0,0,4,42,162,2,4,5,40,247,0,0,6,2,4,5,90,141,74,0,0,1,125,66,0,0,4,3,22,2,123,66,0,0,4,22,4,5,90,40,72,0,0,10,42,0,0,19,48,5,0,53,0,0,0,2,0,0,17,2,111,250,0,0,6,10,4,44,6,4,142,105,6,47,8,6,141,74,0,0,1,16,2,22,11,43,19,4,7,2,123,66,0,0,4,3,6,90,7,88,145,156,7,23,88,11,7,6,50,233,4,42,30,2,123,66,0,0,4,42,0,0,0,19,48,5,0,127,0,0,0,32,0,0,17,2,111,250,0,0,6,2,111,252,0,0,6,90,141,74,0,0,1,10,2,111,252,0,0,6,11,2,111,250,0,0,6,12,2,111,249,0,0,6,13,22,19,4,43,62,22,19,5,43,41,8,17,5,89,23,89,19,6,17,4,19,7,6,17,6,7,90,17,7,88,9,17,4,2,111,250,0,0,6,90,17,5,88,145,156,17,5,23,88,19,5,17,5,2,111,250,0,0,6,50,205,17,4,23,88,19,4,17,4,2,111,252,0,0,6,50,184,2,6,7,8,111,164,0,0,6,42,30,2,40,2,1,0,6,42,10,23,42,0,0,19,48,5,0,148,0,0,0,33,0,0,17,3,5,88,2,111,250,0,0,6,48,12,4,14,4,88,2,111,252,0,0,6,49,11,114,8,5,0,112,115,31,0,0,10,122,5,14,4,90,141,74,0,0,1,10,2,111,249,0,0,6,11,2,111,250,0,0,6,12,3,5,88,13,4,14,4,88,19,4,4,19,5,22,19,6,43,55,3,19,7,22,19,8,43,30,6,17,6,5,90,17,8,88,7,17,5,8,90,17,7,88,145,156,17,7,23,88,19,7,17,8,23,88,19,8,17,7,9,50,221,17,5,23,88,19,5,17,6,23,88,19,6,17,5,17,4,50,195,2,6,5,14,4,111,164,0,0,6,42,30,2,115,238,0,0,6,42,114,2,40,20,0,0,10,3,45,11,114,102,5,0,112,115,31,0,0,10,122,2,3,125,67,0,0,4,42,30,2,123,67,0,0,4,42,50,2,123,67,0,0,4,111,250,0,0,6,42,50,2,123,67,0,0,4,111,252,0,0,6,42,114,2,40,20,0,0,10,3,45,11,114,152,5,0,112,115,31,0,0,10,122,2,3,125,68,0,0,4,42,114,2,40,20,0,0,10,3,45,11,114,208,5,0,112,115,31,0,0,10,122,2,3,125,69,0,0,4,42,50,2,123,68,0,0,4,111,170,0,0,6,42,50,2,123,68,0,0,4,111,171,0,0,6,42,58,2,123,68,0,0,4,3,4,111,167,0,0,6,42,0,0,19,48,3,0,31,0,0,0,30,0,0,17,2,123,69,0,0,4,37,45,21,38,2,2,123,68,0,0,4,111,168,0,0,6,37,10,125,69,0,0,4,6,42,70,2,123,68,0,0,4,111,166,0,0,6,111,254,0,0,6,42,0,0,0,19,48,5,0,40,0,0,0,22,0,0,17,2,123,68,0,0,4,111,166,0,0,6,3,4,5,14,4,111,255,0,0,6,10,2,123,68,0,0,4,6,111,169,0,0,6,115,172,0,0,6,42,70,2,123,68,0,0,4,111,166,0,0,6,111,0,1,0,6,42,0,0,19,48,2,0,35,0,0,0,22,0,0,17,2,123,68,0,0,4,111,166,0,0,6,111,1,1,0,6,10,2,123,68,0,0,4,6,111,169,0,0,6,115,172,0,0,6,42,0,19,48,2,0,35,0,0,0,22,0,0,17,2,123,68,0,0,4,111,166,0,0,6,111,2,1,0,6,10,2,123,68,0,0,4,6,111,169,0,0,6,115,172,0,0,6,42,0,19,48,1,0,23,0,0,0,30,0,0,17,2,40,177,0,0,6,10,6,45,6,126,73,0,0,10,42,6,111,25,0,0,10,42,142,2,40,20,0,0,10,3,22,50,4,4,22,47,6,115,74,0,0,10,122,2,3,125,86,0,0,4,2,4,125,87,0,0,4,42,30,2,123,86,0,0,4,42,30,2,123,87,0,0,4,42,0,19,48,2,0,48,0,0,0,34,0,0,17,3,117,20,0,0,2,44,38,3,116,20,0,0,2,10,2,123,86,0,0,4,6,123,86,0,0,4,51,15,2,123,87,0,0,4,6,123,87,0,0,4,254,1,42,22,42,22,42,82,2,123,86,0,0,4,32,201,127,0,0,90,2,123,87,0,0,4,88,42,134,2,123,86,0,0,4,140,72,0,0,1,114,2,6,0,112,2,123,87,0,0,4,140,72,0,0,1,40,75,0,0,10,42,30,2,40,32,1,0,6,42,34,2,3,40,33,1,0,6,42,34,2,3,40,34,1,0,6,42,38,2,3,4,40,35,1,0,6,42,106,2,3,111,250,0,0,6,3,111,252,0,0,6,40,247,0,0,6,2,3,125,108,0,0,4,42,0,0,19,48,5,0,55,0,0,0,2,0,0,17,2,123,108,0,0,4,3,4,111,248,0,0,6,16,2,2,111,250,0,0,6,10,22,11,43,23,4,7,32,255,0,0,0,4,7,145,32,255,0,0,0,95,89,210,156,7,23,88,11,7,6,50,229,4,42,0,19,48,5,0,89,0,0,0,35,0,0,17,2,123,109,0,0,4,45,74,2,123,108,0,0,4,111,249,0,0,6,10,2,111,250,0,0,6,2,111,252,0,0,6,90,11,2,7,141,74,0,0,1,125,109,0,0,4,22,12,43,28,2,123,109,0,0,4,8,32,255,0,0,0,6,8,145,32,255,0,0,0,95,89,210,156,8,23,88,12,8,7,50,224,2,123,109,0,0,4,42,50,2,123,108,0,0,4,111,254,0,0,6,42,90,2,123,108,0,0,4,3,4,5,14,4,111,255,0,0,6,115,238,0,0,6,42,50,2,123,108,0,0,4,111,0,1,0,6,42,30,2,123,108,0,0,4,42,70,2,123,108,0,0,4,111,1,1,0,6,115,238,0,0,6,42,70,2,123,108,0,0,4,111,2,1,0,6,115,238,0,0,6,42,86,2,40,20,0,0,10,2,3,125,110,0,0,4,2,4,125,111,0,0,4,42,30,2,123,110,0,0,4,42,34,2,3,125,110,0,0,4,42,30,2,123,111,0,0,4,42,34,2,3,125,111,0,0,4,42,10,22,42,46,114,6,6,0,112,115,76,0,0,10,122,46,114,104,6,0,112,115,76,0,0,10,122,46,114,202,6,0,112,115,76,0,0,10,122,46,114,72,7,0,112,115,76,0,0,10,122,0,0,0,19,48,3,0,158,0,0,0,36,0,0,17,2,123,110,0,0,4,141,74,0,0,1,10,2,123,111,0,0,4,2,123,110,0,0,4,23,88,90,115,22,0,0,10,11,22,12,43,105,2,8,6,111,248,0,0,6,10,22,13,43,70,6,9,145,32,255,0,0,0,95,19,4,17,4,31,64,47,6,31,35,19,5,43,34,17,4,32,128,0,0,0,47,6,31,43,19,5,43,19,17,4,32,192,0,0,0,47,6,31,46,19,5,43,4,31,32,19,5,7,17,5,111,23,0,0,10,38,9,23,88,13,9,2,123,110,0,0,4,50,177,7,31,10,111,23,0,0,10,38,8,23,88,12,8,2,123,111,0,0,4,50,142,7,111,25,0,0,10,42,62,2,20,40,9,1,0,6,2,3,40,11,1,0,6,42,62,2,4,40,9,1,0,6,2,3,40,11,1,0,6,42,94,2,123,113,0,0,4,45,7,2,20,40,9,1,0,6,2,3,40,11,1,0,6,42,0,0,19,48,3,0,70,2,0,0,37,0,0,17,2,3,125,112,0,0,4,3,44,9,3,25,111,44,0,0,10,43,1,22,10,3,44,23,3,24,111,44,0,0,10,44,14,3,24,111,77,0,0,10,116,31,0,0,27,43,1,20,11,7,57,105,1,0,0,7,32,222,241,0,0,111,55,0,0,10,45,125,7,32,0,64,0,0,111,55,0,0,10,45,112,7,32,0,128,0,0,111,55,0,0,10,45,99,7,32,128,0,0,0,111,55,0,0,10,45,86,7,31,64,111,55,0,0,10,45,76,7,24,111,55,0,0,10,45,67,7,26,111,55,0,0,10,45,58,7,30,111,55,0,0,10,45,49,7,31,16,111,55,0,0,10,45,39,7,32,0,1,0,0,111,55,0,0,10,45,26,7,32,0,16,0,0,111,55,0,0,10,45,13,7,32,0,32,0,0,111,55,0,0,10,43,1,23,2,115,78,0,0,10,125,113,0,0,4,37,44,20,6,45,17,2,123,113,0,0,4,3,115,242,3,0,6,111,79,0,0,10,7,32,0,8,0,0,111,55,0,0,10,44,16,2,123,113,0,0,4,115,159,1,0,6,111,79,0,0,10,7,31,32,111,55,0,0,10,44,16,2,123,113,0,0,4,115,76,5,0,6,111,79,0,0,10,7,23,111,55,0,0,10,44,16,2,123,113,0,0,4,115,1,8,0,6,111,79,0,0,10,7,32,0,4,0,0,111,55,0,0,10,44,16,2,123,113,0,0,4,115,140,2,0,6,111,79,0,0,10,7,32,0,2,0,0,111,55,0,0,10,44,16,2,123,113,0,0,4,115,40,5,0,6,111,79,0,0,10,7,32,0,0,8,0,111,55,0,0,10,44,16,2,123,113,0,0,4,115,70,5,0,6,111,79,0,0,10,6,95,44,17,2,123,113,0,0,4,3,115,242,3,0,6,111,79,0,0,10,2,123,113,0,0,4,44,16,2,123,113,0,0,4,111,80,0,0,10,58,141,0,0,0,2,2,123,113,0,0,4,37,45,6,38,115,78,0,0,10,125,113,0,0,4,6,45,17,2,123,113,0,0,4,3,115,242,3,0,6,111,79,0,0,10,2,123,113,0,0,4,115,159,1,0,6,111,79,0,0,10,2,123,113,0,0,4,115,76,5,0,6,111,79,0,0,10,2,123,113,0,0,4,115,1,8,0,6,111,79,0,0,10,2,123,113,0,0,4,115,140,2,0,6,111,79,0,0,10,2,123,113,0,0,4,115,40,5,0,6,111,79,0,0,10,6,44,17,2,123,113,0,0,4,3,115,242,3,0,6,111,79,0,0,10,42,0,0,27,48,1,0,54,0,0,0,38,0,0,17,2,123,113,0,0,4,44,45,2,123,113,0,0,4,111,81,0,0,10,10,43,11,6,111,82,0,0,10,111,31,1,0,6,6,111,59,0,0,10,45,237,222,10,6,44,6,6,111,60,0,0,10,220,42,0,0,1,16,0,0,2,0,20,0,23,43,0,10,0,0,0,0,19,48,3,0,151,0,0,0,39,0,0,17,2,123,113,0,0,4,57,138,0,0,0,2,123,112,0,0,4,44,14,2,123,112,0,0,4,29,111,44,0,0,10,45,3,20,43,17,2,123,112,0,0,4,29,111,77,0,0,10,116,41,0,0,2,10,22,11,43,77,2,123,113,0,0,4,7,111,83,0,0,10,12,8,111,31,1,0,6,8,3,2,123,112,0,0,4,111,30,1,0,6,13,9,44,27,2,123,113,0,0,4,7,111,84,0,0,10,2,123,113,0,0,4,22,8,111,85,0,0,10,9,42,6,44,7,6,20,111,69,1,0,6,7,23,88,11,7,2,123,113,0,0,4,111,80,0,0,10,50,165,20,42,0,19,48,5,0,135,1,0,0,0,0,0,0,115,86,0,0,10,37,31,64,126,237,5,0,4,254,6,131,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,128,0,0,126,237,5,0,4,254,6,132,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,128,0,0,0,126,237,5,0,4,254,6,133,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,64,0,0,126,237,5,0,4,254,6,134,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,8,0,0,126,237,5,0,4,254,6,135,8,0,6,115,87,0,0,10,111,88,0,0,10,37,26,126,237,5,0,4,254,6,136,8,0,6,115,87,0,0,10,111,88,0,0,10,37,30,126,237,5,0,4,254,6,137,8,0,6,115,87,0,0,10,111,88,0,0,10,37,31,16,126,237,5,0,4,254,6,138,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,1,0,0,126,237,5,0,4,254,6,139,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,4,0,0,126,237,5,0,4,254,6,140,8,0,6,115,87,0,0,10,111,88,0,0,10,37,24,126,237,5,0,4,254,6,141,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,0,2,0,126,237,5,0,4,254,6,142,8,0,6,115,87,0,0,10,111,88,0,0,10,37,32,0,0,4,0,126,237,5,0,4,254,6,143,8,0,6,115,87,0,0,10,111,88,0,0,10,37,31,32,126,237,5,0,4,254,6,144,8,0,6,115,87,0,0,10,111,88,0,0,10,37,23,126,237,5,0,4,254,6,145,8,0,6,115,87,0,0,10,111,88,0,0,10,128,114,0,0,4,42,46,126,114,0,0,4,111,89,0,0,10,42,54,2,3,4,5,14,4,20,40,16,1,0,6,42,0,0,0,19,48,6,0,64,0,0,0,0,0,0,0,126,114,0,0,4,4,111,90,0,0,10,45,22,114,172,7,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,126,114,0,0,4,4,111,92,0,0,10,111,93,0,0,10,3,4,5,14,4,14,5,111,102,1,0,6,42,19,48,3,0,89,0,0,0,0,0,0,0,2,14,6,14,7,40,153,0,0,6,14,4,14,6,88,4,48,8,14,5,14,7,88,5,49,11,114,8,5,0,112,115,31,0,0,10,122,2,3,125,116,0,0,4,2,4,125,117,0,0,4,2,5,125,118,0,0,4,2,14,4,125,119,0,0,4,2,14,5,125,120,0,0,4,14,8,44,10,2,14,6,14,7,40,27,1,0,6,42,206,2,4,5,40,153,0,0,6,2,3,125,116,0,0,4,2,3,125,66,0,0,4,2,4,125,117,0,0,4,2,5,125,118,0,0,4,2,22,125,119,0,0,4,2,22,125,120,0,0,4,42,0,0,0,19,48,5,0,99,0,0,0,2,0,0,17,3,22,50,9,3,2,111,252,0,0,6,50,22,114,238,7,0,112,3,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,2,111,250,0,0,6,10,4,44,6,4,142,105,6,47,8,6,141,74,0,0,1,16,2,3,2,123,120,0,0,4,88,2,123,117,0,0,4,90,2,123,119,0,0,4,88,11,2,123,116,0,0,4,7,4,22,6,40,94,0,0,10,4,42,0,19,48,5,0,158,0,0,0,40,0,0,17,2,111,250,0,0,6,10,2,111,252,0,0,6,11,6,2,123,117,0,0,4,51,16,7,2,123,118,0,0,4,51,7,2,123,116,0,0,4,42,6,7,90,12,8,141,74,0,0,1,13,2,123,120,0,0,4,2,123,117,0,0,4,90,2,123,119,0,0,4,88,19,4,6,2,123,117,0,0,4,51,18,2,123,116,0,0,4,17,4,9,22,8,40,94,0,0,10,9,42,2,123,116,0,0,4,38,22,19,5,43,40,17,5,6,90,19,6,2,123,116,0,0,4,17,4,9,17,6,6,40,94,0,0,10,17,4,2,123,117,0,0,4,88,19,4,17,5,23,88,19,5,17,5,7,50,211,9,42,178,2,123,116,0,0,4,2,123,117,0,0,4,2,123,118,0,0,4,2,123,119,0,0,4,3,88,2,123,120,0,0,4,4,88,5,14,4,22,115,18,1,0,6,42,0,19,48,5,0,147,0,0,0,41,0,0,17,2,111,250,0,0,6,24,91,10,2,111,252,0,0,6,24,91,11,6,7,90,141,72,0,0,1,12,2,123,116,0,0,4,13,2,123,120,0,0,4,2,123,117,0,0,4,90,2,123,119,0,0,4,88,19,4,22,19,5,43,79,17,5,6,90,19,6,22,19,7,43,44,9,17,4,17,7,24,90,88,145,32,255,0,0,0,95,19,8,8,17,6,17,7,88,32,0,0,0,255,17,8,32,1,1,1,0,90,96,158,17,7,23,88,19,7,17,7,6,50,207,17,4,2,123,117,0,0,4,24,90,88,19,4,17,5,23,88,19,5,17,5,7,50,172,8,42,38,2,111,250,0,0,6,24,91,42,38,2,111,252,0,0,6,24,91,42,0,19,48,4,0,105,0,0,0,42,0,0,17,2,123,116,0,0,4,10,22,11,2,123,120,0,0,4,2,123,117,0,0,4,90,2,123,119,0,0,4,88,12,43,68,8,3,24,91,88,13,8,19,4,8,3,88,23,89,19,5,43,32,6,17,4,145,19,6,6,17,4,6,17,5,145,156,6,17,5,17,6,156,17,4,23,88,19,4,17,5,23,89,19,5,17,4,9,50,219,7,23,88,11,8,2,123,117,0,0,4,88,12,7,4,50,184,42,38,3,4,5,115,19,1,0,6,42,30,2,40,95,0,0,10,42,34,2,3,40,96,0,0,10,42,58,2,3,111,97,0,0,10,3,40,33,0,0,10,42,30,2,123,121,0,0,4,42,34,2,3,125,121,0,0,4,42,30,2,123,122,0,0,4,42,34,2,3,125,122,0,0,4,42,30,2,123,123,0,0,4,42,34,2,3,125,123,0,0,4,42,30,2,123,124,0,0,4,42,34,2,3,125,124,0,0,4,42,30,2,123,125,0,0,4,42,34,2,3,125,125,0,0,4,42,30,2,123,126,0,0,4,42,34,2,3,125,126,0,0,4,42,30,2,123,127,0,0,4,42,34,2,3,125,127,0,0,4,42,0,0,19,48,7,0,36,0,0,0,43,0,0,17,2,3,4,4,44,7,30,4,142,105,90,43,1,22,5,14,4,40,98,0,0,10,10,18,0,40,99,0,0,10,40,53,1,0,6,42,19,48,7,0,27,0,0,0,43,0,0,17,2,3,4,5,14,4,14,5,40,98,0,0,10,10,18,0,40,99,0,0,10,40,53,1,0,6,42,102,2,3,4,4,44,7,30,4,142,105,90,43,1,22,5,14,4,14,5,40,53,1,0,6,42,0,0,0,19,48,2,0,76,0,0,0,0,0,0,0,2,40,20,0,0,10,3,45,14,4,45,11,114,56,8,0,112,115,31,0,0,10,122,2,3,40,37,1,0,6,2,4,40,39,1,0,6,2,5,40,49,1,0,6,2,14,4,40,41,1,0,6,2,14,5,40,43,1,0,6,2,20,40,45,1,0,6,2,14,6,40,47,1,0,6,42,134,2,40,44,1,0,6,45,11,2,115,100,0,0,10,40,45,1,0,6,2,40,44,1,0,6,3,4,111,52,0,0,10,42,0,0,27,48,3,0,81,0,0,0,44,0,0,17,3,44,77,2,40,44,1,0,6,45,8,2,3,40,45,1,0,6,42,3,111,101,0,0,10,10,43,32,6,111,102,0,0,10,11,2,40,44,1,0,6,18,1,40,103,0,0,10,18,1,40,104,0,0,10,111,52,0,0,10,6,111,59,0,0,10,45,216,222,10,6,44,6,6,111,60,0,0,10,220,42,0,0,0,1,16,0,0,2,0,26,0,44,70,0,10,0,0,0,0,19,48,5,0,72,0,0,0,45,0,0,17,2,40,40,1,0,6,10,6,45,8,2,3,40,41,1,0,6,42,3,44,50,3,142,44,46,6,142,105,3,142,105,88,141,40,0,0,2,11,6,22,7,22,6,142,105,40,94,0,0,10,3,22,7,6,142,105,3,142,105,40,94,0,0,10,2,7,40,41,1,0,6,42,178,2,40,36,1,0,6,45,29,114,104,8,0,112,2,40,38,1,0,6,142,105,140,72,0,0,1,114,108,8,0,112,40,75,0,0,10,42,2,40,36,1,0,6,42,182,2,40,20,0,0,10,2,3,125,141,0,0,4,2,4,125,142,0,0,4,2,3,40,105,0,0,10,125,143,0,0,4,2,4,40,105,0,0,10,125,144,0,0,4,42,30,2,123,141,0,0,4,42,30,2,123,142,0,0,4,42,0,19,48,2,0,43,0,0,0,46,0,0,17,3,117,40,0,0,2,10,6,45,2,22,42,2,123,141,0,0,4,6,123,141,0,0,4,51,15,2,123,142,0,0,4,6,123,142,0,0,4,254,1,42,22,42,0,19,48,4,0,91,0,0,0,0,0,0,0,31,31,2,123,143,0,0,4,22,145,31,24,98,2,123,143,0,0,4,23,145,31,16,98,88,2,123,143,0,0,4,24,145,30,98,88,2,123,143,0,0,4,25,145,88,90,2,123,144,0,0,4,22,145,31,24,98,88,2,123,144,0,0,4,23,145,31,16,98,88,2,123,144,0,0,4,24,145,30,98,88,2,123,144,0,0,4,25,145,88,42,0,19,48,7,0,86,0,0,0,47,0,0,17,2,123,145,0,0,4,45,71,31,25,115,22,0,0,10,10,6,40,106,0,0,10,114,124,8,0,112,24,141,13,0,0,1,37,22,2,123,141,0,0,4,140,80,0,0,1,162,37,23,2,123,142,0,0,4,140,80,0,0,1,162,111,107,0,0,10,38,2,6,111,25,0,0,10,125,145,0,0,4,2,123,145,0,0,4,42,0,0,19,48,3,0,136,0,0,0,48,0,0,17,2,22,154,2,23,154,40,66,1,0,6,10,2,23,154,2,24,154,40,66,1,0,6,11,2,22,154,2,24,154,40,66,1,0,6,12,7,6,55,20,7,8,55,16,2,22,154,19,4,2,23,154,13,2,24,154,19,5,43,38,8,7,55,20,8,6,55,16,2,23,154,19,4,2,22,154,13,2,24,154,19,5,43,14,2,24,154,19,4,2,22,154,13,2,23,154,19,5,9,17,4,17,5,40,67,1,0,6,34,0,0,0,0,52,6,9,17,5,13,19,5,2,22,9,162,2,23,17,4,162,2,24,17,5,162,42,122,2,123,141,0,0,4,2,123,142,0,0,4,3,123,141,0,0,4,3,123,142,0,0,4,40,219,6,0,6,42,0,19,48,4,0,50,0,0,0,49,0,0,17,3,123,141,0,0,4,10,3,123,142,0,0,4,11,4,123,141,0,0,4,6,89,2,123,142,0,0,4,7,89,90,4,123,142,0,0,4,7,89,2,123,141,0,0,4,6,89,90,89,42,38,2,3,4,40,153,0,0,6,42,46,2,3,4,5,25,40,75,1,0,6,42,46,2,3,4,5,23,40,75,1,0,6,42,74,2,4,5,40,153,0,0,6,2,3,14,4,40,78,1,0,6,42,62,4,5,115,72,1,0,6,37,3,125,66,0,0,4,42,0,19,48,2,0,56,0,0,0,2,0,0,17,3,4,90,10,2,142,105,6,91,11,7,23,89,69,4,0,0,0,2,0,0,0,4,0,0,0,7,0,0,0,9,0,0,0,43,9,23,42,31,9,42,25,42,26,42,114,146,8,0,112,115,31,0,0,10,122,19,48,6,0,237,0,0,0,0,0,0,0,4,45,20,3,2,111,250,0,0,6,2,111,252,0,0,6,40,77,1,0,6,16,2,4,23,89,69,12,0,0,0,5,0,0,0,46,0,0,0,54,0,0,0,70,0,0,0,94,0,0,0,62,0,0,0,78,0,0,0,102,0,0,0,110,0,0,0,86,0,0,0,118,0,0,0,126,0,0,0,56,129,0,0,0,3,22,2,123,66,0,0,4,22,3,142,105,2,123,66,0,0,4,142,105,50,10,2,123,66,0,0,4,142,105,43,3,3,142,105,40,72,0,0,10,42,2,3,40,89,1,0,6,42,2,3,40,80,1,0,6,42,2,3,40,81,1,0,6,42,2,3,40,82,1,0,6,42,2,3,40,83,1,0,6,42,2,3,40,85,1,0,6,42,2,3,40,86,1,0,6,42,2,3,40,84,1,0,6,42,2,3,40,79,1,0,6,42,2,3,40,87,1,0,6,42,2,3,40,88,1,0,6,42,114,45,9,0,112,15,2,254,22,26,1,0,2,111,25,0,0,10,115,108,0,0,10,122,0,0,0,19,48,5,0,150,0,0,0,50,0,0,17,22,10,22,11,43,123,3,7,145,3,7,23,88,145,12,37,31,31,95,13,32,224,0,0,0,95,27,99,8,25,95,25,98,96,31,31,95,8,24,99,31,31,95,32,15,2,0,0,90,31,23,88,28,99,19,4,32,15,2,0,0,90,31,23,88,28,99,19,5,9,32,15,2,0,0,90,31,23,88,28,99,19,6,2,123,66,0,0,4,6,32,106,76,0,0,17,4,90,32,150,150,0,0,17,5,90,88,32,0,29,0,0,17,6,90,88,31,16,99,210,156,7,24,88,11,6,23,88,10,7,3,142,105,47,14,6,2,123,66,0,0,4,142,105,63,113,255,255,255,42,0,0,19,48,5,0,89,0,0,0,51,0,0,17,22,10,22,11,43,65,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,2,123,66,0,0,4,7,32,106,76,0,0,8,90,32,150,150,0,0,9,90,88,32,0,29,0,0,17,4,90,88,31,16,99,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,174,42,0,0,0,19,48,5,0,89,0,0,0,51,0,0,17,22,10,22,11,43,65,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,2,123,66,0,0,4,7,32,106,76,0,0,17,4,90,32,150,150,0,0,9,90,88,32,0,29,0,0,8,90,88,31,16,99,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,174,42,0,0,0,19,48,5,0,93,0,0,0,51,0,0,17,22,10,22,11,43,69,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,6,23,88,10,2,123,66,0,0,4,7,32,106,76,0,0,8,90,32,150,150,0,0,9,90,88,32,0,29,0,0,17,4,90,88,31,16,99,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,170,42,0,0,0,19,48,5,0,93,0,0,0,51,0,0,17,22,10,22,11,43,69,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,6,23,88,10,2,123,66,0,0,4,7,32,106,76,0,0,17,4,90,32,150,150,0,0,9,90,88,32,0,29,0,0,8,90,88,31,16,99,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,170,42,0,0,0,19,48,6,0,125,0,0,0,52,0,0,17,22,10,22,11,43,101,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,3,6,37,23,88,10,145,19,5,32,106,76,0,0,17,4,90,32,150,150,0,0,9,90,88,32,0,29,0,0,8,90,88,31,16,99,210,19,6,2,123,66,0,0,4,7,17,6,17,5,90,30,99,32,255,0,0,0,32,255,0,0,0,17,5,89,90,30,99,88,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,138,42,0,0,0,19,48,6,0,125,0,0,0,52,0,0,17,22,10,22,11,43,101,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,3,6,37,23,88,10,145,19,5,32,106,76,0,0,8,90,32,150,150,0,0,9,90,88,32,0,29,0,0,17,4,90,88,31,16,99,210,19,6,2,123,66,0,0,4,7,17,6,17,5,90,30,99,32,255,0,0,0,32,255,0,0,0,17,5,89,90,30,99,88,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,138,42,0,0,0,19,48,6,0,124,0,0,0,52,0,0,17,22,10,22,11,43,100,3,6,37,23,88,10,145,12,3,6,37,23,88,10,145,13,3,6,37,23,88,10,145,19,4,3,6,37,23,88,10,145,19,5,32,106,76,0,0,9,90,32,150,150,0,0,17,4,90,88,32,0,29,0,0,17,5,90,88,31,16,99,210,19,6,2,123,66,0,0,4,7,17,6,8,90,30,99,32,255,0,0,0,32,255,0,0,0,8,89,90,30,99,88,210,156,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,139,42,19,48,4,0,68,0,0,0,53,0,0,17,23,10,22,11,43,42,3,6,145,12,6,24,88,10,3,6,145,13,6,24,88,10,2,123,66,0,0,4,7,37,23,88,11,8,156,2,123,66,0,0,4,7,37,23,88,11,9,156,6,3,142,105,25,89,47,11,7,2,123,66,0,0,4,142,105,50,195,42,19,48,4,0,68,0,0,0,53,0,0,17,22,10,22,11,43,42,3,6,145,12,6,24,88,10,3,6,145,13,6,24,88,10,2,123,66,0,0,4,7,37,23,88,11,8,156,2,123,66,0,0,4,7,37,23,88,11,9,156,6,3,142,105,25,89,47,11,7,2,123,66,0,0,4,142,105,50,195,42,19,48,3,0,45,0,0,0,54,0,0,17,22,10,22,11,43,21,3,6,145,12,2,123,66,0,0,4,7,8,156,6,24,88,10,7,23,88,11,6,3,142,105,47,11,7,2,123,66,0,0,4,142,105,50,218,42,0,0,0,19,48,4,0,30,0,0,0,2,0,0,17,3,10,14,4,11,43,18,5,7,2,6,111,27,0,0,10,157,6,23,88,10,7,23,88,11,6,4,50,234,42,194,43,11,2,40,3,0,0,43,111,110,0,0,10,3,2,111,111,0,0,10,48,236,43,14,2,2,111,111,0,0,10,23,89,111,112,0,0,10,3,2,111,111,0,0,10,50,233,42,0,19,48,3,0,22,0,0,0,55,0,0,17,2,111,113,0,0,10,141,63,0,0,1,10,2,6,22,111,114,0,0,10,6,42,0,0,27,48,3,0,113,0,0,0,56,0,0,17,115,115,0,0,10,10,2,37,45,6,38,126,73,0,0,10,16,0,3,44,85,3,111,116,0,0,10,11,43,28,7,111,117,0,0,10,12,6,8,140,49,0,0,27,111,118,0,0,10,38,6,2,111,119,0,0,10,38,7,111,59,0,0,10,45,220,222,10,7,44,6,7,111,60,0,0,10,220,6,111,120,0,0,10,22,49,19,6,37,111,120,0,0,10,2,111,30,0,0,10,89,111,121,0,0,10,6,111,25,0,0,10,42,0,0,0,1,16,0,0,2,0,28,0,40,68,0,10,0,0,0,0,19,48,3,0,23,0,0,0,1,0,0,17,22,10,43,12,2,6,3,164,49,0,0,27,6,23,88,10,6,2,142,105,50,238,42,0,19,48,3,0,21,0,0,0,1,0,0,17,3,10,43,12,2,6,5,164,49,0,0,27,6,23,88,10,6,4,50,240,42,0,0,0,19,48,4,0,54,0,0,0,57,0,0,17,31,32,141,64,0,0,1,10,22,11,43,24,6,7,37,23,88,11,2,23,95,23,46,4,31,48,43,2,31,49,157,2,23,99,16,0,2,45,229,6,22,7,40,122,0,0,10,6,115,123,0,0,10,42,0,0,19,48,3,0,20,0,0,0,1,0,0,17,22,10,43,11,2,2,23,89,95,16,0,6,23,88,10,2,45,242,6,42,118,2,45,2,4,42,2,3,111,44,0,0,10,45,2,4,42,2,3,111,77,0,0,10,165,49,0,0,27,42,114,2,40,20,0,0,10,2,4,40,114,1,0,6,2,3,40,112,1,0,6,2,5,40,110,1,0,6,42,30,2,123,146,0,0,4,42,34,2,3,125,146,0,0,4,42,30,2,123,147,0,0,4,42,34,2,3,125,147,0,0,4,42,30,2,123,148,0,0,4,42,34,2,3,125,148,0,0,4,42,30,2,123,149,0,0,4,42,34,2,3,125,149,0,0,4,42,30,2,123,150,0,0,4,42,34,2,3,125,150,0,0,4,42,118,2,40,20,0,0,10,2,126,252,5,0,4,40,116,1,0,6,2,126,253,5,0,4,40,118,1,0,6,42,46,2,3,4,5,20,40,121,1,0,6,42,0,0,19,48,4,0,113,2,0,0,58,0,0,17,3,111,31,6,0,6,10,3,111,32,6,0,6,11,14,4,44,9,14,4,111,146,6,0,6,45,71,5,40,124,0,0,10,45,63,4,26,46,56,4,31,16,46,51,4,32,128,0,0,0,46,43,4,31,64,46,38,4,24,46,34,4,32,0,1,0,0,46,26,4,32,0,64,0,0,46,18,4,32,0,0,2,0,46,10,4,32,0,0,4,0,254,1,43,4,23,43,1,22,45,3,22,43,2,31,16,12,23,13,14,4,44,65,14,4,111,144,6,0,6,6,49,8,14,4,111,144,6,0,6,10,14,4,111,142,6,0,6,7,49,8,14,4,111,142,6,0,6,11,6,3,111,31,6,0,6,91,13,9,7,3,111,32,6,0,6,91,49,9,7,3,111,32,6,0,6,91,13,8,7,47,2,22,12,6,7,90,26,90,141,74,0,0,1,19,4,22,19,5,22,19,6,56,12,1,0,0,22,19,7,56,246,0,0,0,22,19,8,43,118,3,17,8,17,6,111,41,6,0,6,45,8,2,40,117,1,0,6,43,6,2,40,115,1,0,6,19,9,22,19,10,43,74,17,4,17,5,37,23,88,19,5,17,9,123,1,6,0,4,156,17,4,17,5,37,23,88,19,5,17,9,123,0,6,0,4,156,17,4,17,5,37,23,88,19,5,17,9,123,255,5,0,4,156,17,4,17,5,37,23,88,19,5,17,9,123,254,5,0,4,156,17,10,23,88,19,10,17,10,9,50,177,17,8,23,88,19,8,17,8,3,111,31,6,0,6,50,128,9,3,111,31,6,0,6,90,19,11,43,90,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,1,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,0,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,255,5,0,4,156,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,254,5,0,4,156,17,11,23,88,19,11,17,11,6,50,161,17,7,23,88,19,7,17,7,9,63,2,255,255,255,17,6,23,88,19,6,17,6,3,111,32,6,0,6,8,89,63,229,254,255,255,3,111,32,6,0,6,9,90,8,89,19,12,43,106,22,19,13,43,90,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,1,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,0,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,255,5,0,4,156,17,4,17,5,37,23,88,19,5,2,40,117,1,0,6,123,254,5,0,4,156,17,13,23,88,19,13,17,13,6,50,161,17,12,23,88,19,12,17,12,7,50,145,6,7,17,4,115,108,1,0,6,42,30,2,123,151,0,0,4,42,34,2,3,125,151,0,0,4,42,30,2,123,152,0,0,4,42,34,2,3,125,152,0,0,4,42,118,2,40,20,0,0,10,2,126,2,6,0,4,40,123,1,0,6,2,126,3,6,0,4,40,125,1,0,6,42,46,2,3,4,5,20,111,128,1,0,6,42,0,0,0,19,48,4,0,100,2,0,0,59,0,0,17,3,111,31,6,0,6,10,3,111,32,6,0,6,11,14,4,44,9,14,4,111,146,6,0,6,45,71,5,40,124,0,0,10,45,63,4,26,46,56,4,31,16,46,51,4,32,128,0,0,0,46,43,4,31,64,46,38,4,24,46,34,4,32,0,1,0,0,46,26,4,32,0,64,0,0,46,18,4,32,0,0,2,0,46,10,4,32,0,0,4,0,254,1,43,4,23,43,1,22,45,3,22,43,2,31,16,12,23,13,14,4,44,65,14,4,111,144,6,0,6,6,49,8,14,4,111,144,6,0,6,10,14,4,111,142,6,0,6,7,49,8,14,4,111,142,6,0,6,11,6,3,111,31,6,0,6,91,13,9,7,3,111,32,6,0,6,91,49,9,7,3,111,32,6,0,6,91,13,6,7,90,26,90,141,74,0,0,1,19,4,22,19,5,22,19,6,56,12,1,0,0,22,19,7,56,246,0,0,0,22,19,8,43,118,3,17,8,17,6,111,41,6,0,6,45,8,2,40,124,1,0,6,43,6,2,40,122,1,0,6,19,9,22,19,10,43,74,17,4,17,5,37,23,88,19,5,17,9,123,4,6,0,4,156,17,4,17,5,37,23,88,19,5,17,9,123,5,6,0,4,156,17,4,17,5,37,23,88,19,5,17,9,123,6,6,0,4,156,17,4,17,5,37,23,88,19,5,17,9,123,7,6,0,4,156,17,10,23,88,19,10,17,10,9,50,177,17,8,23,88,19,8,17,8,3,111,31,6,0,6,50,128,9,3,111,31,6,0,6,90,19,11,43,90,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,4,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,5,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,6,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,7,6,0,4,156,17,11,23,88,19,11,17,11,6,50,161,17,7,23,88,19,7,17,7,9,63,2,255,255,255,17,6,23,88,19,6,17,6,3,111,32,6,0,6,8,89,63,229,254,255,255,3,111,32,6,0,6,9,90,8,89,19,12,43,106,22,19,13,43,90,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,4,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,5,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,6,6,0,4,156,17,4,17,5,37,23,88,19,5,2,40,124,1,0,6,123,7,6,0,4,156,17,13,23,88,19,13,17,13,6,50,161,17,12,23,88,19,12,17,12,7,50,145,17,4,42,30,2,123,155,0,0,4,42,34,2,3,125,155,0,0,4,42,30,2,123,156,0,0,4,42,34,2,3,125,156,0,0,4,42,30,2,123,157,0,0,4,42,34,2,3,125,157,0,0,4,42,30,2,123,158,0,0,4,42,34,2,3,125,158,0,0,4,42,118,2,40,20,0,0,10,2,126,8,6,0,4,40,130,1,0,6,2,126,9,6,0,4,40,132,1,0,6,42,46,2,3,4,5,20,40,139,1,0,6,42,0,0,19,48,6,0,32,0,0,0,60,0,0,17,3,111,31,6,0,6,3,111,32,6,0,6,115,160,8,0,6,10,2,6,3,4,5,14,4,40,140,1,0,6,6,42,19,48,8,0,5,1,0,0,61,0,0,17,4,45,1,42,4,111,31,6,0,6,10,4,111,32,6,0,6,11,14,5,44,9,14,5,111,146,6,0,6,45,84,14,4,40,124,0,0,10,45,75,5,26,46,68,5,30,46,64,5,31,16,46,59,5,32,128,0,0,0,46,51,5,31,64,46,46,5,24,46,42,5,32,0,1,0,0,46,34,5,32,0,64,0,0,46,26,5,32,0,128,0,0,46,18,5,32,0,0,2,0,46,10,5,32,0,0,4,0,254,1,43,4,23,43,1,22,37,44,26,2,40,135,1,0,6,23,50,8,2,40,135,1,0,6,43,2,31,10,12,7,8,25,88,88,11,3,111,163,8,0,6,3,22,22,6,7,2,40,131,1,0,6,2,40,129,1,0,6,111,165,8,0,6,3,4,22,22,40,142,1,0,6,44,70,2,40,133,1,0,6,40,124,0,0,10,45,8,2,40,133,1,0,6,43,5,114,115,9,0,112,13,2,40,135,1,0,6,23,50,8,2,40,135,1,0,6,43,2,31,10,19,4,2,5,14,4,40,141,1,0,6,16,4,3,14,4,9,17,4,111,166,8,0,6,3,111,164,8,0,6,42,0,0,0,19,48,3,0,96,0,0,0,0,0,0,0,3,31,64,46,10,3,32,128,0,0,0,46,35,43,79,4,111,30,0,0,10,30,47,8,4,40,254,3,0,6,16,2,4,26,114,127,9,0,112,111,125,0,0,10,16,2,43,46,4,111,30,0,0,10,31,13,47,8,4,40,254,3,0,6,16,2,4,29,114,127,9,0,112,111,125,0,0,10,16,2,4,23,114,127,9,0,112,111,125,0,0,10,16,2,4,42,19,48,6,0,213,0,0,0,63,0,0,17,3,45,1,42,3,111,31,6,0,6,10,3,111,32,6,0,6,11,6,7,115,36,6,0,6,12,22,13,22,19,4,22,19,5,22,19,6,56,162,0,0,0,22,19,8,43,102,8,17,6,17,8,111,41,6,0,6,45,84,8,17,6,17,8,23,111,42,6,0,6,3,17,6,17,8,111,41,6,0,6,44,15,9,45,58,17,6,19,4,17,8,19,5,23,13,43,46,9,44,43,3,8,17,4,17,5,17,8,18,7,40,143,1,0,6,2,17,4,4,88,17,5,5,88,17,7,17,4,89,23,88,17,8,17,5,89,111,167,8,0,6,22,13,17,8,23,88,19,8,17,8,7,50,149,9,44,41,3,8,17,4,17,5,7,18,7,40,143,1,0,6,2,17,4,4,88,17,5,5,88,17,7,17,4,89,23,88,7,17,5,89,111,167,8,0,6,22,13,17,6,23,88,19,6,17,6,6,63,86,255,255,255,42,0,0,0,19,48,4,0,74,0,0,0,64,0,0,17,14,5,4,84,4,23,88,10,43,54,5,11,43,15,2,6,7,111,41,6,0,6,45,1,42,7,23,88,11,7,14,4,50,236,14,5,6,84,5,12,43,13,3,6,8,23,111,42,6,0,6,8,23,88,12,8,14,4,50,238,6,23,88,10,6,2,111,31,6,0,6,50,193,42,138,2,40,140,6,0,6,25,111,126,0,0,10,44,18,2,40,140,6,0,6,25,111,127,0,0,10,116,61,0,0,2,42,20,42,182,3,45,28,2,40,140,6,0,6,25,111,126,0,0,10,44,27,2,40,140,6,0,6,25,111,128,0,0,10,38,42,2,40,140,6,0,6,25,3,111,129,0,0,10,42,138,2,40,140,6,0,6,26,111,126,0,0,10,44,18,2,40,140,6,0,6,26,111,127,0,0,10,116,63,0,0,1,42,20,42,182,3,45,28,2,40,140,6,0,6,26,111,126,0,0,10,44,27,2,40,140,6,0,6,26,111,128,0,0,10,38,42,2,40,140,6,0,6,26,3,111,129,0,0,10,42,146,2,40,140,6,0,6,31,10,111,126,0,0,10,44,19,2,40,140,6,0,6,31,10,111,127,0,0,10,165,71,0,0,1,42,22,42,82,2,40,140,6,0,6,31,10,3,140,71,0,0,1,111,129,0,0,10,42,0,0,19,48,2,0,49,0,0,0,65,0,0,17,2,40,140,6,0,6,31,17,111,126,0,0,10,44,24,2,40,140,6,0,6,31,17,111,127,0,0,10,165,72,0,0,1,115,130,0,0,10,42,18,0,254,21,51,0,0,27,6,42,0,0,0,19,48,3,0,65,0,0,0,0,0,0,0,15,1,40,131,0,0,10,45,30,2,40,140,6,0,6,31,17,111,126,0,0,10,44,40,2,40,140,6,0,6,31,17,111,128,0,0,10,38,42,2,40,140,6,0,6,31,17,15,1,40,132,0,0,10,140,72,0,0,1,111,129,0,0,10,42,30,2,40,152,6,0,6,42,30,2,123,160,0,0,4,42,38,2,3,20,40,155,1,0,6,42,0,19,48,4,0,4,1,0,0,66,0,0,17,3,44,8,3,111,177,0,0,6,45,2,20,42,4,44,51,4,23,111,44,0,0,10,44,42,3,111,177,0,0,6,40,157,1,0,6,19,6,17,6,45,2,20,42,2,123,160,0,0,4,17,6,4,111,191,1,0,6,10,126,159,0,0,4,11,43,53,3,111,177,0,0,6,115,244,1,0,6,4,111,248,1,0,6,19,7,17,7,45,2,20,42,2,123,160,0,0,4,17,7,111,131,6,0,6,4,111,191,1,0,6,10,17,7,111,133,6,0,6,11,6,45,2,20,42,6,111,92,6,0,6,117,64,0,0,2,12,8,44,7,8,7,111,221,1,0,6,6,111,77,6,0,6,6,111,73,6,0,6,7,32,0,8,0,0,115,50,1,0,6,13,6,111,79,6,0,6,19,4,17,4,44,9,9,24,17,4,111,54,1,0,6,6,111,81,6,0,6,19,5,17,5,44,9,9,25,17,5,111,54,1,0,6,6,111,83,6,0,6,44,37,9,30,6,111,86,6,0,6,140,72,0,0,1,111,54,1,0,6,9,31,9,6,111,90,6,0,6,140,72,0,0,1,111,54,1,0,6,9,42,19,48,4,0,80,1,0,0,67,0,0,17,2,111,52,6,0,6,10,2,111,53,6,0,6,11,6,44,3,7,45,2,20,42,6,2,18,2,40,158,1,0,6,45,2,20,42,6,23,148,13,7,23,148,19,4,6,22,148,19,5,7,22,148,19,6,17,5,17,6,47,5,9,17,4,50,2,20,42,17,4,9,89,17,6,17,5,89,46,21,17,5,17,4,9,89,88,19,6,17,6,2,111,31,6,0,6,50,2,20,42,17,6,17,5,89,23,88,107,8,91,108,40,133,0,0,10,105,19,7,17,4,9,89,23,88,107,8,91,108,40,133,0,0,10,105,19,8,17,7,22,49,5,17,8,22,48,2,20,42,17,8,17,7,46,2,20,42,8,34,0,0,0,64,91,105,19,9,9,17,9,88,13,17,5,17,9,88,19,5,17,5,17,7,23,89,107,8,90,105,88,17,6,89,19,10,17,10,22,49,15,17,10,17,9,49,2,20,42,17,5,17,10,89,19,5,9,17,8,23,89,107,8,90,105,88,17,4,89,19,11,17,11,22,49,13,17,11,17,9,49,2,20,42,9,17,11,89,13,17,7,17,8,115,36,6,0,6,19,12,22,19,13,43,64,9,17,13,107,8,90,105,88,19,14,22,19,15,43,37,2,17,5,17,15,107,8,90,105,88,17,14,111,41,6,0,6,44,12,17,12,17,15,17,13,23,111,42,6,0,6,17,15,23,88,19,15,17,15,17,7,50,213,17,13,23,88,19,13,17,13,17,8,50,186,17,12,42,19,48,4,0,108,0,0,0,68,0,0,17,3,111,32,6,0,6,10,3,111,31,6,0,6,11,2,22,148,12,2,23,148,13,23,19,4,22,19,5,43,37,17,4,3,8,9,111,41,6,0,6,46,17,17,5,23,88,37,19,5,27,46,23,17,4,22,254,1,19,4,8,23,88,12,9,23,88,13,8,7,47,4,9,6,50,211,8,7,46,4,9,6,51,9,4,34,0,0,0,0,86,22,42,4,8,2,22,148,89,107,34,0,0,224,64,91,86,23,42,74,2,115,189,1,0,6,125,160,0,0,4,2,40,20,0,0,10,42,50,22,141,40,0,0,2,128,159,0,0,4,42,54,2,3,4,5,14,4,20,40,162,1,0,6,42,0,0,19,48,4,0,61,1,0,0,69,0,0,17,3,40,124,0,0,10,44,11,114,135,9,0,112,115,31,0,0,10,122,4,32,0,8,0,0,46,22,114,177,9,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,5,22,50,5,14,4,22,47,52,26,141,13,0,0,1,37,22,114,245,9,0,112,162,37,23,5,140,72,0,0,1,162,37,24,114,2,6,0,112,162,37,25,14,4,140,72,0,0,1,162,40,134,0,0,10,115,31,0,0,10,122,126,172,0,0,4,10,26,11,14,5,57,173,0,0,0,14,5,25,111,126,0,0,10,44,126,14,5,25,111,127,0,0,10,12,8,44,114,8,117,61,0,0,2,10,6,45,104,8,111,25,0,0,10,111,135,0,0,10,13,9,114,63,10,0,112,40,136,0,0,10,45,41,9,114,67,10,0,112,40,136,0,0,10,45,36,9,114,71,10,0,112,40,136,0,0,10,45,31,9,114,75,10,0,112,40,136,0,0,10,45,26,43,32,126,172,0,0,4,10,43,30,126,173,0,0,4,10,43,22,126,174,0,0,4,10,43,14,126,175,0,0,4,10,43,6,126,172,0,0,4,10,14,5,27,111,126,0,0,10,44,27,14,5,27,111,127,0,0,10,19,4,17,4,44,13,17,4,111,25,0,0,10,40,137,0,0,10,11,3,6,14,5,40,46,2,0,6,5,14,4,7,40,163,1,0,6,42,0,0,0,19,48,5,0,192,0,0,0,70,0,0,17,2,111,106,2,0,6,10,6,45,6,115,138,0,0,10,122,6,111,36,2,0,6,11,6,111,35,2,0,6,12,7,5,23,98,88,13,8,5,23,98,88,19,4,3,9,40,139,0,0,10,19,5,4,17,4,40,139,0,0,10,19,6,17,5,9,91,17,6,17,4,91,40,140,0,0,10,19,7,17,5,7,17,7,90,89,24,91,19,8,17,6,8,17,7,90,89,24,91,17,5,17,6,115,36,6,0,6,19,9,22,19,10,19,11,43,68,22,19,12,17,8,19,13,43,41,6,17,12,17,10,111,37,2,0,6,23,51,15,17,9,17,13,17,11,17,7,17,7,111,47,6,0,6,17,12,23,88,19,12,17,13,17,7,88,19,13,17,12,7,50,210,17,10,23,88,19,10,17,11,17,7,88,19,11,17,10,8,50,183,17,9,42,19,48,2,0,27,0,0,0,1,0,0,17,2,111,32,6,0,6,10,6,31,21,50,6,6,25,95,23,46,2,20,42,2,115,166,1,0,6,42,58,2,40,20,0,0,10,2,3,125,162,0,0,4,42,0,0,19,48,4,0,207,0,0,0,71,0,0,17,2,123,164,0,0,4,44,7,2,123,164,0,0,4,42,22,10,22,19,4,43,17,2,17,4,30,6,40,169,1,0,6,10,17,4,23,88,19,4,17,4,28,50,234,2,29,30,6,40,169,1,0,6,10,2,30,30,6,40,169,1,0,6,10,2,30,29,6,40,169,1,0,6,10,27,19,5,43,17,2,30,17,5,6,40,169,1,0,6,10,17,5,23,89,19,5,17,5,22,47,234,2,123,162,0,0,4,111,32,6,0,6,11,22,12,7,29,89,13,7,23,89,19,6,43,17,2,30,17,6,8,40,169,1,0,6,12,17,6,23,89,19,6,17,6,9,47,234,7,30,89,19,7,43,17,2,17,7,30,8,40,169,1,0,6,12,17,7,23,88,19,7,17,7,7,50,234,2,6,8,40,203,1,0,6,125,164,0,0,4,2,123,164,0,0,4,44,7,2,123,164,0,0,4,42,20,42,0,19,48,4,0,232,0,0,0,71,0,0,17,2,123,163,0,0,4,44,7,2,123,163,0,0,4,42,2,123,162,0,0,4,111,32,6,0,6,10,6,31,17,89,24,99,11,7,28,48,7,7,40,229,1,0,6,42,22,12,6,31,11,89,13,27,19,4,43,37,6,31,9,89,19,5,43,18,2,17,5,17,4,8,40,169,1,0,6,12,17,5,23,89,19,5,17,5,9,47,233,17,4,23,89,19,4,17,4,22,47,214,2,8,40,230,1,0,6,125,163,0,0,4,2,123,163,0,0,4,44,21,2,123,163,0,0,4,111,226,1,0,6,6,51,7,2,123,163,0,0,4,42,22,12,27,19,6,43,37,6,31,9,89,19,7,43,18,2,17,6,17,7,8,40,169,1,0,6,12,17,7,23,89,19,7,17,7,9,47,233,17,6,23,89,19,6,17,6,22,47,214,2,8,40,230,1,0,6,125,163,0,0,4,2,123,163,0,0,4,44,21,2,123,163,0,0,4,111,226,1,0,6,6,51,7,2,123,163,0,0,4,42,20,42,194,2,123,165,0,0,4,45,15,2,123,162,0,0,4,3,4,111,41,6,0,6,43,13,2,123,162,0,0,4,4,3,111,41,6,0,6,45,4,5,23,98,42,5,23,98,23,96,42,0,0,0,19,48,4,0,12,1,0,0,72,0,0,17,2,40,167,1,0,6,10,6,45,2,20,42,2,40,168,1,0,6,11,7,45,2,20,42,2,123,162,0,0,4,111,32,6,0,6,12,6,111,206,1,0,6,2,123,162,0,0,4,8,40,178,1,0,6,7,111,231,1,0,6,13,23,19,4,7,111,225,1,0,6,141,74,0,0,1,19,5,22,19,6,22,19,7,22,19,8,8,23,89,19,9,56,149,0,0,0,17,9,28,51,6,17,9,23,89,19,9,22,19,10,43,115,17,4,45,4,17,10,43,6,8,23,89,17,10,89,19,11,22,19,12,43,83,9,17,9,17,12,89,17,11,111,41,6,0,6,45,62,17,8,23,88,19,8,17,7,23,98,19,7,2,123,162,0,0,4,17,9,17,12,89,17,11,111,41,6,0,6,44,6,17,7,23,96,19,7,17,8,30,51,19,17,5,17,6,37,23,88,19,6,17,7,210,156,22,19,8,22,19,7,17,12,23,88,19,12,17,12,24,50,168,17,10,23,88,19,10,17,10,8,50,136,17,4,22,254,1,19,4,17,9,24,89,19,9,17,9,22,61,99,255,255,255,17,6,7,111,225,1,0,6,46,2,20,42,17,5,42,19,48,3,0,45,0,0,0,1,0,0,17,2,123,164,0,0,4,45,1,42,2,123,162,0,0,4,111,32,6,0,6,10,2,123,164,0,0,4,111,206,1,0,6,2,123,162,0,0,4,6,40,178,1,0,6,42,90,2,20,125,163,0,0,4,2,20,125,164,0,0,4,2,3,125,165,0,0,4,42,19,48,4,0,101,0,0,0,2,0,0,17,22,10,43,82,6,23,88,11,43,58,2,123,162,0,0,4,6,7,111,41,6,0,6,2,123,162,0,0,4,7,6,111,41,6,0,6,46,26,2,123,162,0,0,4,7,6,111,43,6,0,6,2,123,162,0,0,4,6,7,111,43,6,0,6,7,23,88,11,7,2,123,162,0,0,4,111,32,6,0,6,50,184,6,23,88,10,6,2,123,162,0,0,4,111,31,6,0,6,50,160,42,86,2,40,20,0,0,10,2,3,125,166,0,0,4,2,4,125,167,0,0,4,42,0,19,48,6,0,168,1,0,0,73,0,0,17,2,142,105,3,111,225,1,0,6,46,6,115,74,0,0,10,122,3,4,111,227,1,0,6,10,22,11,6,111,186,8,0,6,12,8,19,10,22,19,11,43,23,17,10,17,11,154,19,12,7,17,12,111,188,8,0,6,88,11,17,11,23,88,19,11,17,11,17,10,142,105,50,225,7,141,57,0,0,2,13,22,19,4,8,19,10,22,19,11,43,78,17,10,17,11,154,19,13,22,19,14,43,49,17,13,111,189,8,0,6,19,15,6,111,183,8,0,6,17,15,88,19,16,9,17,4,37,23,88,19,4,17,15,17,16,141,74,0,0,1,115,174,1,0,6,162,17,14,23,88,19,14,17,14,17,13,111,188,8,0,6,50,196,17,11,23,88,19,11,17,11,17,10,142,105,50,170,9,22,154,123,167,0,0,4,142,105,19,5,9,142,105,23,89,19,6,43,21,9,17,6,154,123,167,0,0,4,142,105,17,5,46,11,17,6,23,89,19,6,17,6,22,47,230,17,6,23,88,19,6,17,5,6,111,183,8,0,6,89,19,7,22,19,8,22,19,17,43,44,22,19,18,43,27,9,17,18,154,123,167,0,0,4,17,17,2,17,8,37,23,88,19,8,145,156,17,18,23,88,19,18,17,18,17,4,50,223,17,17,23,88,19,17,17,17,17,7,50,206,17,6,19,19,43,27,9,17,19,154,123,167,0,0,4,17,7,2,17,8,37,23,88,19,8,145,156,17,19,23,88,19,19,17,19,17,4,50,223,9,22,154,123,167,0,0,4,142,105,19,9,17,7,19,20,43,60,22,19,21,43,43,17,21,17,6,50,6,17,20,23,88,43,2,17,20,19,22,9,17,21,154,123,167,0,0,4,17,22,2,17,8,37,23,88,19,8,145,156,17,21,23,88,19,21,17,21,17,4,50,207,17,20,23,88,19,20,17,20,17,9,50,190,9,42,30,2,123,166,0,0,4,42,30,2,123,167,0,0,4,42,19,48,2,0,30,0,0,0,74,0,0,17,2,22,50,4,2,29,49,6,115,74,0,0,10,122,126,168,0,0,4,2,154,10,3,6,111,44,6,0,6,42,0,0,19,48,5,0,164,0,0,0,0,0,0,0,30,141,52,0,0,27,37,22,126,17,6,0,4,254,6,174,8,0,6,115,141,0,0,10,162,37,23,126,17,6,0,4,254,6,175,8,0,6,115,141,0,0,10,162,37,24,126,17,6,0,4,254,6,176,8,0,6,115,141,0,0,10,162,37,25,126,17,6,0,4,254,6,177,8,0,6,115,141,0,0,10,162,37,26,126,17,6,0,4,254,6,178,8,0,6,115,141,0,0,10,162,37,27,126,17,6,0,4,254,6,179,8,0,6,115,141,0,0,10,162,37,28,126,17,6,0,4,254,6,180,8,0,6,115,141,0,0,10,162,37,29,126,17,6,0,4,254,6,181,8,0,6,115,141,0,0,10,162,128,168,0,0,4,42,27,48,6,0,251,1,0,0,75,0,0,17,2,115,61,6,0,6,10,31,50,115,22,0,0,10,11,23,115,142,0,0,10,12,21,13,21,19,4,20,19,6,22,19,7,6,111,65,6,0,6,26,47,9,126,186,0,0,4,19,8,43,26,0,6,26,111,64,6,0,6,40,213,1,0,6,19,8,222,9,38,20,19,9,221,171,1,0,0,17,8,111,210,1,0,6,19,10,17,10,69,10,0,0,0,21,1,0,0,136,0,0,0,136,0,0,0,13,0,0,0,136,0,0,0,53,0,0,0,136,0,0,0,5,0,0,0,5,0,0,0,81,0,0,0,56,131,0,0,0,23,19,7,56,8,1,0,0,6,111,65,6,0,6,31,16,47,8,20,19,9,221,84,1,0,0,6,30,111,64,6,0,6,13,6,30,111,64,6,0,6,19,4,56,224,0,0,0,6,40,187,1,0,6,40,71,6,0,6,19,6,17,6,58,204,0,0,0,20,19,9,221,34,1,0,0,6,26,111,64,6,0,6,19,11,6,17,8,3,111,214,1,0,6,111,64,6,0,6,19,12,17,11,23,64,163,0,0,0,6,7,17,12,40,181,1,0,6,58,149,0,0,0,20,19,9,221,235,0,0,0,6,17,8,3,111,214,1,0,6,111,64,6,0,6,19,13,17,8,111,210,1,0,6,19,10,17,10,23,89,69,6,0,0,0,2,0,0,0,21,0,0,0,78,0,0,0,42,0,0,0,78,0,0,0,62,0,0,0,43,76,6,7,17,13,40,186,1,0,6,45,70,20,19,9,221,156,0,0,0,6,7,17,13,17,7,40,185,1,0,6,45,49,20,19,9,221,135,0,0,0,6,7,17,13,17,6,8,5,40,183,1,0,6,45,26,20,19,9,222,115,6,7,17,13,40,182,1,0,6,45,10,20,19,9,222,99,20,19,9,222,94,17,8,126,186,0,0,4,64,123,254,255,255,222,6,38,20,19,9,222,74,7,111,25,0,0,10,114,79,10,0,112,114,85,10,0,112,111,143,0,0,10,114,85,10,0,112,40,144,0,0,10,111,143,0,0,10,19,5,2,17,5,8,111,145,0,0,10,44,3,8,43,1,20,4,44,8,4,111,25,0,0,10,43,1,20,9,17,4,115,95,6,0,6,42,17,9,42,0,65,52,0,0,0,0,0,0,52,0,0,0,16,0,0,0,68,0,0,0,9,0,0,0,46,0,0,1,0,0,0,0,27,0,0,0,141,1,0,0,168,1,0,0,6,0,0,0,46,0,0,1,27,48,5,0,154,0,0,0,76,0,0,17,4,31,13,90,2,111,65,6,0,6,49,2,22,42,24,4,90,141,74,0,0,1,10,22,11,43,82,2,31,13,111,64,6,0,6,12,8,31,96,91,30,98,8,31,96,93,96,13,9,32,191,3,0,0,47,10,9,32,161,161,0,0,88,13,43,8,9,32,161,166,0,0,88,13,6,7,9,30,99,32,255,0,0,0,95,210,156,6,7,23,88,9,32,255,0,0,0,95,210,156,7,24,88,11,4,23,89,16,2,4,22,48,170,0,3,126,86,3,0,4,40,146,0,0,10,6,22,6,142,105,111,147,0,0,10,111,119,0,0,10,38,222,6,38,22,19,4,222,2,23,42,17,4,42,0,0,1,16,0,0,0,0,114,0,29,143,0,6,23,0,0,1,27,48,5,0,148,0,0,0,76,0,0,17,4,31,13,90,2,111,65,6,0,6,49,2,22,42,24,4,90,141,74,0,0,1,10,22,11,43,76,2,31,13,111,64,6,0,6,12,8,32,192,0,0,0,91,30,98,8,32,192,0,0,0,93,96,13,9,32,0,31,0,0,47,10,9,32,64,129,0,0,88,13,43,8,9,32,64,193,0,0,88,13,6,7,9,30,99,210,156,6,7,23,88,9,210,156,7,24,88,11,4,23,89,16,2,4,22,48,176,0,3,126,85,3,0,4,40,146,0,0,10,6,22,6,142,105,111,147,0,0,10,111,119,0,0,10,38,222,6,38,22,19,4,222,2,23,42,17,4,42,1,16,0,0,0,0,108,0,29,137,0,6,23,0,0,1,27,48,5,0,107,0,0,0,77,0,0,17,4,25,98,2,111,65,6,0,6,49,2,22,42,4,141,74,0,0,1,10,22,12,43,15,6,8,2,30,111,64,6,0,6,210,156,8,23,88,12,8,4,50,237,5,45,11,6,14,5,40,183,6,0,6,11,43,7,5,111,66,6,0,6,11,0,3,7,40,146,0,0,10,6,22,6,142,105,111,147,0,0,10,111,119,0,0,10,38,222,5,38,22,13,222,10,14,4,6,111,148,0,0,10,23,42,9,42,0,1,16,0,0,0,0,65,0,25,90,0,5,23,0,0,1,98,2,126,169,0,0,4,142,105,50,6,115,190,0,0,6,122,126,169,0,0,4,2,147,42,0,0,0,19,48,6,0,203,0,0,0,64,0,0,17,3,111,120,0,0,10,10,43,58,2,111,65,6,0,6,31,11,47,2,22,42,2,31,11,111,64,6,0,6,11,3,7,31,45,91,40,184,1,0,6,111,23,0,0,10,38,3,7,31,45,93,40,184,1,0,6,111,23,0,0,10,38,4,24,89,16,2,4,23,48,194,4,23,51,30,2,111,65,6,0,6,28,47,2,22,42,3,2,28,111,64,6,0,6,40,184,1,0,6,111,23,0,0,10,38,5,44,93,6,12,43,80,3,8,111,149,0,0,10,31,37,51,65,8,3,111,120,0,0,10,23,89,47,26,3,8,23,88,111,149,0,0,10,31,37,51,13,3,8,23,88,23,111,150,0,0,10,38,43,28,3,8,23,111,150,0,0,10,38,3,8,23,141,64,0,0,1,37,22,31,29,157,111,151,0,0,10,38,8,23,88,12,8,3,111,120,0,0,10,50,167,23,42,0,19,48,3,0,202,0,0,0,64,0,0,17,43,87,2,111,65,6,0,6,31,10,47,2,22,42,2,31,10,111,64,6,0,6,10,6,32,232,3,0,0,50,2,22,42,3,6,31,100,91,40,184,1,0,6,111,23,0,0,10,38,3,6,31,10,91,31,10,93,40,184,1,0,6,111,23,0,0,10,38,3,6,31,10,93,40,184,1,0,6,111,23,0,0,10,38,4,25,89,16,2,4,25,47,165,4,24,51,60,2,111,65,6,0,6,29,47,2,22,42,2,29,111,64,6,0,6,11,7,31,100,50,2,22,42,3,7,31,10,91,40,184,1,0,6,111,23,0,0,10,38,3,7,31,10,93,40,184,1,0,6,111,23,0,0,10,38,43,43,4,23,51,39,2,111,65,6,0,6,26,47,2,22,42,2,26,111,64,6,0,6,12,8,31,10,50,2,22,42,3,8,40,184,1,0,6,111,23,0,0,10,38,23,42,0,0,19,48,2,0,108,0,0,0,64,0,0,17,2,30,111,64,6,0,6,10,6,32,128,0,0,0,95,45,5,6,31,127,95,42,6,32,192,0,0,0,95,32,128,0,0,0,51,17,2,30,111,64,6,0,6,11,6,31,63,95,30,98,7,96,42,6,32,224,0,0,0,95,32,192,0,0,0,51,19,2,31,16,111,64,6,0,6,12,6,31,31,95,31,16,98,8,96,42,114,89,10,0,112,6,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,66,114,155,10,0,112,40,152,0,0,10,128,169,0,0,4,42,94,2,40,20,0,0,10,2,126,95,3,0,4,115,210,6,0,6,125,171,0,0,4,42,58,2,3,40,39,6,0,6,4,40,191,1,0,6,42,19,48,3,0,89,0,0,0,78,0,0,17,3,40,165,1,0,6,10,6,45,2,20,42,2,6,4,40,192,1,0,6,11,7,45,63,6,111,171,1,0,6,6,23,111,172,1,0,6,6,111,168,1,0,6,45,2,20,42,6,111,167,1,0,6,45,2,20,42,6,111,173,1,0,6,2,6,4,40,192,1,0,6,11,7,44,12,7,23,115,219,1,0,6,111,93,6,0,6,7,42,0,0,0,19,48,4,0,210,0,0,0,79,0,0,17,3,111,168,1,0,6,10,6,45,2,20,42,3,111,167,1,0,6,11,7,45,2,20,42,7,111,205,1,0,6,12,3,111,170,1,0,6,13,9,45,2,20,42,9,6,8,40,175,1,0,6,19,4,22,19,5,17,4,19,8,22,19,9,43,25,17,8,17,9,154,19,10,17,5,17,10,111,176,1,0,6,88,19,5,17,9,23,88,19,9,17,9,17,8,142,105,50,223,17,5,141,74,0,0,1,19,6,22,19,7,17,4,19,8,22,19,9,43,72,17,8,17,9,154,37,111,177,1,0,6,19,11,111,176,1,0,6,19,12,2,17,11,17,12,40,193,1,0,6,45,2,20,42,22,19,13,43,21,17,6,17,7,37,23,88,19,7,17,11,17,13,145,156,17,13,23,88,19,13,17,13,17,12,50,229,17,9,23,88,19,9,17,9,17,8,142,105,50,176,17,6,6,8,4,40,180,1,0,6,42,0,0,19,48,4,0,85,0,0,0,80,0,0,17,3,142,105,10,6,141,72,0,0,1,11,22,13,43,16,7,9,3,9,145,32,255,0,0,0,95,158,9,23,88,13,9,6,50,236,3,142,105,4,89,12,2,123,171,0,0,4,7,8,111,211,6,0,6,45,2,22,42,22,19,4,43,15,3,17,4,7,17,4,148,210,156,17,4,23,88,19,4,17,4,4,50,236,23,42,114,2,40,20,0,0,10,2,3,125,178,0,0,4,2,4,125,177,0,0,4,2,5,125,179,0,0,4,42,30,2,123,177,0,0,4,42,30,2,123,179,0,0,4,42,30,2,123,178,0,0,4,42,114,2,22,50,10,2,126,176,0,0,4,142,105,50,6,115,74,0,0,10,122,126,176,0,0,4,2,154,42,0,19,48,4,0,112,0,0,0,0,0,0,0,22,23,114,63,10,0,112,115,194,1,0,6,128,172,0,0,4,23,22,114,67,10,0,112,115,194,1,0,6,128,173,0,0,4,24,25,114,71,10,0,112,115,194,1,0,6,128,174,0,0,4,25,24,114,75,10,0,112,115,194,1,0,6,128,175,0,0,4,26,141,61,0,0,2,37,22,126,173,0,0,4,162,37,23,126,172,0,0,4,162,37,24,126,175,0,0,4,162,37,25,126,174,0,0,4,162,128,176,0,0,4,42,134,2,40,20,0,0,10,2,3,25,99,25,95,40,199,1,0,6,125,183,0,0,4,2,3,29,95,210,125,184,0,0,4,42,0,0,19,48,4,0,112,0,0,0,0,0,0,0,2,3,97,16,0,126,182,0,0,4,2,31,15,95,148,126,182,0,0,4,2,26,100,31,15,95,148,88,126,182,0,0,4,2,30,100,31,15,95,148,88,126,182,0,0,4,2,31,12,100,31,15,95,148,88,126,182,0,0,4,2,31,16,100,31,15,95,148,88,126,182,0,0,4,2,31,20,100,31,15,95,148,88,126,182,0,0,4,2,31,24,100,31,15,95,148,88,126,182,0,0,4,2,31,28,100,31,15,95,148,88,42,19,48,3,0,33,0,0,0,81,0,0,17,2,3,40,204,1,0,6,10,6,44,2,6,42,2,32,18,84,0,0,97,3,32,18,84,0,0,97,40,204,1,0,6,42,0,0,0,19,48,2,0,122,0,0,0,82,0,0,17,32,255,255,255,127,10,22,11,126,181,0,0,4,12,22,13,43,85,8,9,154,19,4,17,4,22,148,19,5,17,5,2,46,5,17,5,3,51,10,17,4,23,148,115,201,1,0,6,42,2,17,5,40,202,1,0,6,19,6,17,6,6,47,8,17,4,23,148,11,17,6,10,2,3,46,23,3,17,5,40,202,1,0,6,19,6,17,6,6,47,8,17,4,23,148,11,17,6,10,9,23,88,13,9,8,142,105,50,165,6,25,48,7,7,115,201,1,0,6,42,20,42,30,2,123,183,0,0,4,42,30,2,123,184,0,0,4,42,86,2,123,183,0,0,4,111,197,1,0,6,25,98,2,123,184,0,0,4,96,42,19,48,2,0,48,0,0,0,81,0,0,17,3,117,62,0,0,2,45,2,22,42,3,116,62,0,0,2,10,2,123,183,0,0,4,6,123,183,0,0,4,51,15,2,123,184,0,0,4,6,123,184,0,0,4,254,1,42,22,42,19,48,7,0,238,2,0,0,0,0,0,0,31,32,141,55,0,0,27,37,22,24,141,72,0,0,1,37,22,32,18,84,0,0,158,162,37,23,24,141,72,0,0,1,37,22,32,37,81,0,0,158,37,23,23,158,162,37,24,24,141,72,0,0,1,37,22,32,124,94,0,0,158,37,23,24,158,162,37,25,24,141,72,0,0,1,37,22,32,75,91,0,0,158,37,23,25,158,162,37,26,24,141,72,0,0,1,37,22,32,249,69,0,0,158,37,23,26,158,162,37,27,24,141,72,0,0,1,37,22,32,206,64,0,0,158,37,23,27,158,162,37,28,24,141,72,0,0,1,37,22,32,151,79,0,0,158,37,23,28,158,162,37,29,24,141,72,0,0,1,37,22,32,160,74,0,0,158,37,23,29,158,162,37,30,24,141,72,0,0,1,37,22,32,196,119,0,0,158,37,23,30,158,162,37,31,9,24,141,72,0,0,1,37,22,32,243,114,0,0,158,37,23,31,9,158,162,37,31,10,24,141,72,0,0,1,37,22,32,170,125,0,0,158,37,23,31,10,158,162,37,31,11,24,141,72,0,0,1,37,22,32,157,120,0,0,158,37,23,31,11,158,162,37,31,12,24,141,72,0,0,1,37,22,32,47,102,0,0,158,37,23,31,12,158,162,37,31,13,24,141,72,0,0,1,37,22,32,24,99,0,0,158,37,23,31,13,158,162,37,31,14,24,141,72,0,0,1,37,22,32,65,108,0,0,158,37,23,31,14,158,162,37,31,15,24,141,72,0,0,1,37,22,32,118,105,0,0,158,37,23,31,15,158,162,37,31,16,24,141,72,0,0,1,37,22,32,137,22,0,0,158,37,23,31,16,158,162,37,31,17,24,141,72,0,0,1,37,22,32,190,19,0,0,158,37,23,31,17,158,162,37,31,18,24,141,72,0,0,1,37,22,32,231,28,0,0,158,37,23,31,18,158,162,37,31,19,24,141,72,0,0,1,37,22,32,208,25,0,0,158,37,23,31,19,158,162,37,31,20,24,141,72,0,0,1,37,22,32,98,7,0,0,158,37,23,31,20,158,162,37,31,21,24,141,72,0,0,1,37,22,32,85,2,0,0,158,37,23,31,21,158,162,37,31,22,24,141,72,0,0,1,37,22,32,12,13,0,0,158,37,23,31,22,158,162,37,31,23,24,141,72,0,0,1,37,22,32,59,8,0,0,158,37,23,31,23,158,162,37,31,24,24,141,72,0,0,1,37,22,32,95,53,0,0,158,37,23,31,24,158,162,37,31,25,24,141,72,0,0,1,37,22,32,104,48,0,0,158,37,23,31,25,158,162,37,31,26,24,141,72,0,0,1,37,22,32,49,63,0,0,158,37,23,31,26,158,162,37,31,27,24,141,72,0,0,1,37,22,32,6,58,0,0,158,37,23,31,27,158,162,37,31,28,24,141,72,0,0,1,37,22,32,180,36,0,0,158,37,23,31,28,158,162,37,31,29,24,141,72,0,0,1,37,22,32,131,33,0,0,158,37,23,31,29,158,162,37,31,30,24,141,72,0,0,1,37,22,32,218,46,0,0,158,37,23,31,30,158,162,37,31,31,24,141,72,0,0,1,37,22,32,237,43,0,0,158,37,23,31,31,158,162,128,181,0,0,4,31,16,141,72,0,0,1,37,208,144,4,0,4,40,153,0,0,10,128,182,0,0,4,42,30,2,123,185,0,0,4,42,34,2,3,125,185,0,0,4,42,114,2,40,20,0,0,10,2,3,125,196,0,0,4,2,4,40,216,1,0,6,2,5,40,211,1,0,6,42,19,48,1,0,130,0,0,0,0,0,0,0,2,69,14,0,0,0,2,0,0,0,8,0,0,0,14,0,0,0,20,0,0,0,26,0,0,0,32,0,0,0,62,0,0,0,38,0,0,0,44,0,0,0,50,0,0,0,62,0,0,0,62,0,0,0,62,0,0,0,56,0,0,0,43,60,126,186,0,0,4,42,126,187,0,0,4,42,126,188,0,0,4,42,126,189,0,0,4,42,126,190,0,0,4,42,126,193,0,0,4,42,126,191,0,0,4,42,126,192,0,0,4,42,126,194,0,0,4,42,126,195,0,0,4,42,115,74,0,0,10,122,0,0,19,48,2,0,55,0,0,0,2,0,0,17,2,123,196,0,0,4,45,11,114,247,10,0,112,115,31,0,0,10,122,3,111,223,1,0,6,10,6,31,9,48,4,22,11,43,11,6,31,26,48,4,23,11,43,2,24,11,2,123,196,0,0,4,7,148,42,30,2,123,197,0,0,4,42,34,2,3,125,197,0,0,4,42,19,48,1,0,21,0,0,0,83,0,0,17,2,40,210,1,0,6,10,18,0,254,22,32,1,0,2,111,25,0,0,10,42,0,0,0,19,48,3,0,224,0,0,0,0,0,0,0,25,141,72,0,0,1,22,22,115,212,1,0,6,128,186,0,0,4,25,141,72,0,0,1,37,208,198,5,0,4,40,153,0,0,10,23,23,115,212,1,0,6,128,187,0,0,4,25,141,72,0,0,1,37,208,194,4,0,4,40,153,0,0,10,24,24,115,212,1,0,6,128,188,0,0,4,25,141,72,0,0,1,25,25,115,212,1,0,6,128,189,0,0,4,25,141,72,0,0,1,37,208,185,4,0,4,40,153,0,0,10,26,26,115,212,1,0,6,128,190,0,0,4,20,29,27,115,212,1,0,6,128,191,0,0,4,25,141,72,0,0,1,37,208,120,5,0,4,40,153,0,0,10,30,28,115,212,1,0,6,128,192,0,0,4,20,27,29,115,212,1,0,6,128,193,0,0,4,20,31,9,30,115,212,1,0,6,128,194,0,0,4,25,141,72,0,0,1,37,208,120,5,0,4,40,153,0,0,10,31,13,31,9,115,212,1,0,6,128,195,0,0,4,42,58,2,40,20,0,0,10,2,3,125,198,0,0,4,42,30,2,123,198,0,0,4,42,0,19,48,4,0,33,0,0,0,46,0,0,17,2,123,198,0,0,4,44,9,3,44,6,3,142,105,25,47,1,42,3,22,154,10,3,22,3,24,154,162,3,24,6,162,42,0,0,0,19,48,4,0,94,0,0,0,84,0,0,17,2,40,20,0,0,10,2,3,125,201,0,0,4,2,4,125,202,0,0,4,2,5,125,203,0,0,4,22,10,5,22,154,111,183,8,0,6,11,5,22,154,111,186,8,0,6,12,22,13,43,29,8,9,154,19,4,6,17,4,111,188,8,0,6,17,4,111,189,8,0,6,7,88,90,88,10,9,23,88,13,9,8,142,105,50,221,2,6,125,204,0,0,4,42,30,2,123,201,0,0,4,42,30,2,123,202,0,0,4,42,30,2,123,204,0,0,4,42,50,31,17,26,2,123,201,0,0,4,90,88,42,58,2,123,203,0,0,4,3,111,197,1,0,6,154,42,0,0,27,48,2,0,30,0,0,0,85,0,0,17,2,26,93,23,46,2,20,42,0,2,31,17,89,24,99,40,229,1,0,6,10,222,5,38,20,10,222,0,6,42,0,0,1,16,0,0,0,0,9,0,14,23,0,5,46,0,0,1,102,2,23,50,5,2,31,40,49,6,115,74,0,0,10,122,126,200,0,0,4,2,23,89,154,42,0,0,19,48,2,0,81,0,0,0,51,0,0,17,32,255,255,255,127,10,22,11,22,12,43,46,126,199,0,0,4,8,148,13,9,2,51,9,8,29,88,40,229,1,0,6,42,2,9,40,202,1,0,6,19,4,17,4,6,47,7,8,29,88,11,17,4,10,8,23,88,12,8,126,199,0,0,4,142,105,50,200,6,25,48,7,7,40,229,1,0,6,42,20,42,0,0,0,19,48,6,0,211,0,0,0,86,0,0,17,2,40,226,1,0,6,10,6,115,35,6,0,6,11,7,22,22,31,9,31,9,111,47,6,0,6,7,6,30,89,22,30,31,9,111,47,6,0,6,7,22,6,30,89,31,9,30,111,47,6,0,6,2,123,202,0,0,4,142,105,12,22,13,43,77,2,123,202,0,0,4,9,148,24,89,19,4,22,19,5,43,51,9,45,11,17,5,44,38,17,5,8,23,89,46,31,9,8,23,89,51,4,17,5,44,21,7,2,123,202,0,0,4,17,5,148,24,89,17,4,27,27,111,47,6,0,6,17,5,23,88,19,5,17,5,8,50,200,9,23,88,13,9,8,50,175,7,28,31,9,23,6,31,17,89,111,47,6,0,6,7,31,9,28,6,31,17,89,23,111,47,6,0,6,2,123,201,0,0,4,28,49,26,7,6,31,11,89,22,25,28,111,47,6,0,6,7,22,6,31,11,89,28,25,111,47,6,0,6,7,42,50,2,123,201,0,0,4,40,154,0,0,10,42,19,48,14,0,15,28,0,0,0,0,0,0,31,40,141,65,0,0,2,37,22,23,22,141,72,0,0,1,26,141,33,1,0,2,37,22,29,23,141,34,1,0,2,37,22,23,31,19,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,10,23,141,34,1,0,2,37,22,23,31,16,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,13,23,141,34,1,0,2,37,22,23,31,13,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,17,23,141,34,1,0,2,37,22,23,31,9,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,23,24,24,141,72,0,0,1,37,22,28,158,37,23,31,18,158,26,141,33,1,0,2,37,22,31,10,23,141,34,1,0,2,37,22,23,31,34,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,16,23,141,34,1,0,2,37,22,23,31,28,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,22,23,141,34,1,0,2,37,22,23,31,22,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,23,141,34,1,0,2,37,22,23,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,24,25,24,141,72,0,0,1,37,22,28,158,37,23,31,22,158,26,141,33,1,0,2,37,22,31,15,23,141,34,1,0,2,37,22,23,31,55,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,26,23,141,34,1,0,2,37,22,23,31,44,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,18,23,141,34,1,0,2,37,22,24,31,17,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,22,23,141,34,1,0,2,37,22,24,31,13,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,25,26,24,141,72,0,0,1,37,22,28,158,37,23,31,26,158,26,141,33,1,0,2,37,22,31,20,23,141,34,1,0,2,37,22,23,31,80,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,18,23,141,34,1,0,2,37,22,24,31,32,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,26,23,141,34,1,0,2,37,22,24,31,24,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,16,23,141,34,1,0,2,37,22,26,31,9,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,26,27,24,141,72,0,0,1,37,22,28,158,37,23,31,30,158,26,141,33,1,0,2,37,22,31,26,23,141,34,1,0,2,37,22,23,31,108,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,24,23,141,34,1,0,2,37,22,24,31,43,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,18,24,141,34,1,0,2,37,22,24,31,15,115,187,8,0,6,162,37,23,24,31,16,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,22,24,141,34,1,0,2,37,22,24,31,11,115,187,8,0,6,162,37,23,24,31,12,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,27,28,24,141,72,0,0,1,37,22,28,158,37,23,31,34,158,26,141,33,1,0,2,37,22,31,18,23,141,34,1,0,2,37,22,24,31,68,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,16,23,141,34,1,0,2,37,22,26,31,27,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,24,23,141,34,1,0,2,37,22,26,31,19,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,23,141,34,1,0,2,37,22,26,31,15,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,28,29,25,141,72,0,0,1,37,208,204,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,20,23,141,34,1,0,2,37,22,24,31,78,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,18,23,141,34,1,0,2,37,22,26,31,31,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,18,24,141,34,1,0,2,37,22,24,31,14,115,187,8,0,6,162,37,23,26,31,15,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,26,24,141,34,1,0,2,37,22,26,31,13,115,187,8,0,6,162,37,23,23,31,14,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,29,30,25,141,72,0,0,1,37,208,95,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,24,23,141,34,1,0,2,37,22,24,31,97,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,22,24,141,34,1,0,2,37,22,24,31,38,115,187,8,0,6,162,37,23,24,31,39,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,22,24,141,34,1,0,2,37,22,26,31,18,115,187,8,0,6,162,37,23,24,31,19,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,26,24,141,34,1,0,2,37,22,26,31,14,115,187,8,0,6,162,37,23,24,31,15,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,30,31,9,25,141,72,0,0,1,37,208,252,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,23,141,34,1,0,2,37,22,24,31,116,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,22,24,141,34,1,0,2,37,22,25,31,36,115,187,8,0,6,162,37,23,24,31,37,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,20,24,141,34,1,0,2,37,22,26,31,16,115,187,8,0,6,162,37,23,26,31,17,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,24,24,141,34,1,0,2,37,22,26,31,12,115,187,8,0,6,162,37,23,26,31,13,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,9,31,10,25,141,72,0,0,1,37,208,221,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,18,24,141,34,1,0,2,37,22,24,31,68,115,187,8,0,6,162,37,23,24,31,69,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,26,24,141,34,1,0,2,37,22,26,31,43,115,187,8,0,6,162,37,23,23,31,44,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,24,24,141,34,1,0,2,37,22,28,31,19,115,187,8,0,6,162,37,23,24,31,20,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,24,141,34,1,0,2,37,22,28,31,15,115,187,8,0,6,162,37,23,24,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,10,31,11,25,141,72,0,0,1,37,208,247,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,20,23,141,34,1,0,2,37,22,26,31,81,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,30,24,141,34,1,0,2,37,22,23,31,50,115,187,8,0,6,162,37,23,26,31,51,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,28,24,141,34,1,0,2,37,22,26,31,22,115,187,8,0,6,162,37,23,26,31,23,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,24,24,141,34,1,0,2,37,22,25,31,12,115,187,8,0,6,162,37,23,30,31,13,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,11,31,12,25,141,72,0,0,1,37,208,68,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,24,24,141,34,1,0,2,37,22,24,31,92,115,187,8,0,6,162,37,23,24,31,93,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,22,24,141,34,1,0,2,37,22,28,31,36,115,187,8,0,6,162,37,23,24,31,37,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,26,24,141,34,1,0,2,37,22,26,31,20,115,187,8,0,6,162,37,23,28,31,21,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,24,141,34,1,0,2,37,22,29,31,14,115,187,8,0,6,162,37,23,26,31,15,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,12,31,13,25,141,72,0,0,1,37,208,36,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,26,23,141,34,1,0,2,37,22,26,31,107,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,22,24,141,34,1,0,2,37,22,30,31,37,115,187,8,0,6,162,37,23,23,31,38,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,24,24,141,34,1,0,2,37,22,30,31,20,115,187,8,0,6,162,37,23,26,31,21,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,22,24,141,34,1,0,2,37,22,31,12,31,11,115,187,8,0,6,162,37,23,26,31,12,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,13,31,14,26,141,72,0,0,1,37,208,160,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,25,31,115,115,187,8,0,6,162,37,23,23,31,116,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,24,24,141,34,1,0,2,37,22,26,31,40,115,187,8,0,6,162,37,23,27,31,41,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,20,24,141,34,1,0,2,37,22,31,11,31,16,115,187,8,0,6,162,37,23,27,31,17,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,24,24,141,34,1,0,2,37,22,31,11,31,12,115,187,8,0,6,162,37,23,27,31,13,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,14,31,15,26,141,72,0,0,1,37,208,50,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,22,24,141,34,1,0,2,37,22,27,31,87,115,187,8,0,6,162,37,23,23,31,88,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,24,24,141,34,1,0,2,37,22,27,31,41,115,187,8,0,6,162,37,23,27,31,42,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,27,31,24,115,187,8,0,6,162,37,23,29,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,24,24,141,34,1,0,2,37,22,31,11,31,12,115,187,8,0,6,162,37,23,29,31,13,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,15,31,16,26,141,72,0,0,1,37,208,174,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,24,24,141,34,1,0,2,37,22,27,31,98,115,187,8,0,6,162,37,23,23,31,99,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,29,31,45,115,187,8,0,6,162,37,23,25,31,46,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,24,24,141,34,1,0,2,37,22,31,15,31,19,115,187,8,0,6,162,37,23,24,31,20,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,25,31,15,115,187,8,0,6,162,37,23,31,13,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,16,31,17,26,141,72,0,0,1,37,208,69,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,28,24,141,34,1,0,2,37,22,23,31,107,115,187,8,0,6,162,37,23,27,31,108,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,10,31,46,115,187,8,0,6,162,37,23,23,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,28,24,141,34,1,0,2,37,22,23,31,22,115,187,8,0,6,162,37,23,31,15,31,23,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,24,141,34,1,0,2,37,22,24,31,14,115,187,8,0,6,162,37,23,31,17,31,15,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,17,31,18,26,141,72,0,0,1,37,208,230,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,27,31,120,115,187,8,0,6,162,37,23,23,31,121,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,26,24,141,34,1,0,2,37,22,31,9,31,43,115,187,8,0,6,162,37,23,26,31,44,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,28,24,141,34,1,0,2,37,22,31,17,31,22,115,187,8,0,6,162,37,23,23,31,23,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,24,141,34,1,0,2,37,22,24,31,14,115,187,8,0,6,162,37,23,31,19,31,15,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,18,31,19,26,141,72,0,0,1,37,208,225,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,28,24,141,34,1,0,2,37,22,25,31,113,115,187,8,0,6,162,37,23,26,31,114,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,26,24,141,34,1,0,2,37,22,25,31,44,115,187,8,0,6,162,37,23,31,11,31,45,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,26,24,141,34,1,0,2,37,22,31,17,31,21,115,187,8,0,6,162,37,23,26,31,22,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,26,24,141,34,1,0,2,37,22,31,9,31,13,115,187,8,0,6,162,37,23,31,16,31,14,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,19,31,20,26,141,72,0,0,1,37,208,217,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,28,24,141,34,1,0,2,37,22,25,31,107,115,187,8,0,6,162,37,23,27,31,108,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,26,24,141,34,1,0,2,37,22,25,31,41,115,187,8,0,6,162,37,23,31,13,31,42,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,15,31,24,115,187,8,0,6,162,37,23,27,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,28,24,141,34,1,0,2,37,22,31,15,31,15,115,187,8,0,6,162,37,23,31,10,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,20,31,21,27,141,72,0,0,1,37,208,103,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,28,24,141,34,1,0,2,37,22,26,31,116,115,187,8,0,6,162,37,23,26,31,117,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,26,23,141,34,1,0,2,37,22,31,17,31,42,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,28,24,141,34,1,0,2,37,22,31,17,31,22,115,187,8,0,6,162,37,23,28,31,23,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,19,31,16,115,187,8,0,6,162,37,23,28,31,17,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,21,31,22,27,141,72,0,0,1,37,208,112,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,28,24,141,34,1,0,2,37,22,24,31,111,115,187,8,0,6,162,37,23,29,31,112,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,23,141,34,1,0,2,37,22,31,17,31,46,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,29,31,24,115,187,8,0,6,162,37,23,31,16,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,24,23,141,34,1,0,2,37,22,31,34,31,13,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,22,31,23,27,141,72,0,0,1,37,208,35,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,26,31,121,115,187,8,0,6,162,37,23,27,31,122,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,26,31,47,115,187,8,0,6,162,37,23,31,14,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,11,31,24,115,187,8,0,6,162,37,23,31,14,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,16,31,15,115,187,8,0,6,162,37,23,31,14,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,23,31,24,27,141,72,0,0,1,37,208,65,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,28,31,117,115,187,8,0,6,162,37,23,26,31,118,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,28,31,45,115,187,8,0,6,162,37,23,31,14,31,46,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,11,31,24,115,187,8,0,6,162,37,23,31,16,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,30,31,16,115,187,8,0,6,162,37,23,24,31,17,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,24,31,25,27,141,72,0,0,1,37,208,98,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,26,24,141,34,1,0,2,37,22,30,31,106,115,187,8,0,6,162,37,23,26,31,107,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,30,31,47,115,187,8,0,6,162,37,23,31,13,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,29,31,24,115,187,8,0,6,162,37,23,31,22,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,22,31,15,115,187,8,0,6,162,37,23,31,13,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,25,31,26,27,141,72,0,0,1,37,208,64,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,28,24,141,34,1,0,2,37,22,31,10,31,114,115,187,8,0,6,162,37,23,24,31,115,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,19,31,46,115,187,8,0,6,162,37,23,26,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,28,24,141,34,1,0,2,37,22,31,28,31,22,115,187,8,0,6,162,37,23,28,31,23,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,33,31,16,115,187,8,0,6,162,37,23,26,31,17,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,26,31,27,27,141,72,0,0,1,37,208,104,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,30,31,122,115,187,8,0,6,162,37,23,26,31,123,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,22,31,45,115,187,8,0,6,162,37,23,25,31,46,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,30,31,23,115,187,8,0,6,162,37,23,31,26,31,24,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,12,31,15,115,187,8,0,6,162,37,23,31,28,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,27,31,28,28,141,72,0,0,1,37,208,81,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,25,31,117,115,187,8,0,6,162,37,23,31,10,31,118,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,25,31,45,115,187,8,0,6,162,37,23,31,23,31,46,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,26,31,24,115,187,8,0,6,162,37,23,31,31,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,11,31,15,115,187,8,0,6,162,37,23,31,31,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,28,31,29,28,141,72,0,0,1,37,208,88,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,29,31,116,115,187,8,0,6,162,37,23,29,31,117,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,21,31,45,115,187,8,0,6,162,37,23,29,31,46,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,23,31,23,115,187,8,0,6,162,37,23,31,37,31,24,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,19,31,15,115,187,8,0,6,162,37,23,31,26,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,29,31,30,28,141,72,0,0,1,37,208,110,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,27,31,115,115,187,8,0,6,162,37,23,31,10,31,116,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,19,31,47,115,187,8,0,6,162,37,23,31,10,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,15,31,24,115,187,8,0,6,162,37,23,31,25,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,23,31,15,115,187,8,0,6,162,37,23,31,25,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,30,31,31,28,141,72,0,0,1,37,208,224,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,13,31,115,115,187,8,0,6,162,37,23,25,31,116,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,24,31,46,115,187,8,0,6,162,37,23,31,29,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,42,31,24,115,187,8,0,6,162,37,23,23,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,23,31,15,115,187,8,0,6,162,37,23,31,28,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,31,31,32,28,141,72,0,0,1,37,208,49,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,23,141,34,1,0,2,37,22,31,17,31,115,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,10,31,46,115,187,8,0,6,162,37,23,31,23,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,10,31,24,115,187,8,0,6,162,37,23,31,35,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,19,31,15,115,187,8,0,6,162,37,23,31,35,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,32,31,33,28,141,72,0,0,1,37,208,187,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,17,31,115,115,187,8,0,6,162,37,23,23,31,116,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,14,31,46,115,187,8,0,6,162,37,23,31,21,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,29,31,24,115,187,8,0,6,162,37,23,31,19,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,11,31,15,115,187,8,0,6,162,37,23,31,46,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,33,31,34,28,141,72,0,0,1,37,208,108,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,13,31,115,115,187,8,0,6,162,37,23,28,31,116,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,14,31,46,115,187,8,0,6,162,37,23,31,23,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,44,31,24,115,187,8,0,6,162,37,23,29,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,59,31,16,115,187,8,0,6,162,37,23,23,31,17,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,34,31,35,29,141,72,0,0,1,37,208,173,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,12,31,121,115,187,8,0,6,162,37,23,29,31,122,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,12,31,47,115,187,8,0,6,162,37,23,31,26,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,39,31,24,115,187,8,0,6,162,37,23,31,14,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,22,31,15,115,187,8,0,6,162,37,23,31,41,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,35,31,36,29,141,72,0,0,1,37,208,115,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,28,31,121,115,187,8,0,6,162,37,23,31,14,31,122,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,28,31,47,115,187,8,0,6,162,37,23,31,34,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,46,31,24,115,187,8,0,6,162,37,23,31,10,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,24,31,15,115,187,8,0,6,162,37,23,31,64,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,36,31,37,29,141,72,0,0,1,37,208,47,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,17,31,122,115,187,8,0,6,162,37,23,26,31,123,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,29,31,46,115,187,8,0,6,162,37,23,31,14,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,49,31,24,115,187,8,0,6,162,37,23,31,10,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,24,31,15,115,187,8,0,6,162,37,23,31,46,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,37,31,38,29,141,72,0,0,1,37,208,163,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,26,31,122,115,187,8,0,6,162,37,23,31,18,31,123,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,13,31,46,115,187,8,0,6,162,37,23,31,32,31,47,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,48,31,24,115,187,8,0,6,162,37,23,31,14,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,42,31,15,115,187,8,0,6,162,37,23,31,32,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,38,31,39,29,141,72,0,0,1,37,208,116,5,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,20,31,117,115,187,8,0,6,162,37,23,26,31,118,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,40,31,47,115,187,8,0,6,162,37,23,29,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,43,31,24,115,187,8,0,6,162,37,23,31,22,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,10,31,15,115,187,8,0,6,162,37,23,31,67,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,37,31,39,31,40,29,141,72,0,0,1,37,208,70,4,0,4,40,153,0,0,10,26,141,33,1,0,2,37,22,31,30,24,141,34,1,0,2,37,22,31,19,31,118,115,187,8,0,6,162,37,23,28,31,119,115,187,8,0,6,162,115,182,8,0,6,162,37,23,31,28,24,141,34,1,0,2,37,22,31,18,31,47,115,187,8,0,6,162,37,23,31,31,31,48,115,187,8,0,6,162,115,182,8,0,6,162,37,24,31,30,24,141,34,1,0,2,37,22,31,34,31,24,115,187,8,0,6,162,37,23,31,34,31,25,115,187,8,0,6,162,115,182,8,0,6,162,37,25,31,30,24,141,34,1,0,2,37,22,31,20,31,15,115,187,8,0,6,162,37,23,31,61,31,16,115,187,8,0,6,162,115,182,8,0,6,162,115,222,1,0,6,162,42,138,31,34,141,72,0,0,1,37,208,151,4,0,4,40,153,0,0,10,128,199,0,0,4,40,233,1,0,6,128,200,0,0,4,42,66,2,3,4,40,59,1,0,6,2,5,125,205,0,0,4,42,0,19,48,2,0,71,0,0,0,87,0,0,17,4,2,111,61,1,0,6,89,40,155,0,0,10,3,53,53,5,2,111,60,1,0,6,89,40,155,0,0,10,3,53,37,3,2,123,205,0,0,4,89,40,155,0,0,10,10,6,34,0,0,128,63,49,13,6,2,123,205,0,0,4,254,3,22,254,1,42,23,42,22,42,0,19,48,3,0,52,0,0,0,49,0,0,17,2,111,60,1,0,6,4,88,34,0,0,0,64,91,2,111,61,1,0,6,3,88,34,0,0,0,64,91,10,2,123,205,0,0,4,5,88,34,0,0,0,64,91,11,6,7,115,235,1,0,6,42,19,48,2,0,84,0,0,0,0,0,0,0,2,40,20,0,0,10,2,3,125,206,0,0,4,2,27,115,156,0,0,10,125,207,0,0,4,2,4,125,208,0,0,4,2,5,125,209,0,0,4,2,14,4,125,210,0,0,4,2,14,5,125,211,0,0,4,2,14,6,125,212,0,0,4,2,25,141,72,0,0,1,125,213,0,0,4,2,14,7,125,214,0,0,4,42,19,48,4,0,103,1,0,0,88,0,0,17,2,123,208,0,0,4,10,2,123,211,0,0,4,11,6,2,123,210,0,0,4,88,12,2,123,209,0,0,4,7,23,99,88,13,25,141,72,0,0,1,19,4,22,19,5,56,17,1,0,0,9,17,5,23,95,44,9,17,5,23,88,23,99,101,43,6,17,5,23,88,23,99,88,19,6,17,4,22,22,158,17,4,23,22,158,17,4,24,22,158,6,19,7,43,6,17,7,23,88,19,7,17,7,8,47,17,2,123,206,0,0,4,17,7,17,6,111,41,6,0,6,44,228,22,19,8,56,148,0,0,0,2,123,206,0,0,4,17,7,17,6,111,41,6,0,6,44,100,17,8,23,51,15,17,4,23,143,72,0,0,1,37,74,23,88,84,43,105,17,8,24,51,54,2,17,4,40,241,1,0,6,44,21,2,17,4,17,6,17,7,40,243,1,0,6,19,9,17,9,44,3,17,9,42,17,4,22,17,4,24,148,158,17,4,23,23,158,17,4,24,22,158,23,19,8,43,46,17,4,17,8,23,88,37,19,8,143,72,0,0,1,37,74,23,88,84,43,25,17,8,23,51,6,17,8,23,88,19,8,17,4,17,8,143,72,0,0,1,37,74,23,88,84,17,7,23,88,19,7,17,7,8,63,100,255,255,255,2,17,4,40,241,1,0,6,44,20,2,17,4,17,6,8,40,243,1,0,6,19,10,17,10,44,3,17,10,42,17,5,23,88,19,5,17,5,7,63,231,254,255,255,2,123,207,0,0,4,111,157,0,0,10,44,13,2,123,207,0,0,4,22,111,158,0,0,10,42,20,42,0,19,48,3,0,43,0,0,0,89,0,0,17,3,2,24,148,89,107,2,23,148,107,34,0,0,0,64,91,89,10,6,40,159,0,0,10,44,10,18,1,254,21,59,0,0,27,7,42,6,115,160,0,0,10,42,0,19,48,3,0,48,0,0,0,90,0,0,17,2,123,212,0,0,4,34,0,0,0,64,91,10,22,11,43,25,2,123,212,0,0,4,3,7,148,107,89,40,155,0,0,10,6,55,2,22,42,7,23,88,11,7,25,50,227,23,42,19,48,3,0,93,1,0,0,91,0,0,17,2,123,206,0,0,4,111,32,6,0,6,10,2,123,213,0,0,4,11,7,22,22,158,7,23,22,158,7,24,22,158,3,12,43,16,7,23,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,21,2,123,206,0,0,4,4,8,111,41,6,0,6,44,6,7,23,148,5,49,215,8,22,50,6,7,23,148,5,49,27,18,4,254,21,59,0,0,27,17,4,42,7,22,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,21,2,123,206,0,0,4,4,8,111,41,6,0,6,45,6,7,22,148,5,49,215,7,22,148,5,49,11,18,4,254,21,59,0,0,27,17,4,42,3,23,88,12,43,16,7,23,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,21,2,123,206,0,0,4,4,8,111,41,6,0,6,44,6,7,23,148,5,49,215,8,6,46,6,7,23,148,5,49,27,18,4,254,21,59,0,0,27,17,4,42,7,24,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,21,2,123,206,0,0,4,4,8,111,41,6,0,6,45,6,7,24,148,5,49,215,7,24,148,5,49,11,18,4,254,21,59,0,0,27,17,4,42,7,22,148,7,23,148,88,7,24,148,88,13,27,9,14,4,89,40,161,0,0,10,90,24,14,4,90,50,11,18,4,254,21,59,0,0,27,17,4,42,2,7,40,241,1,0,6,45,11,18,4,254,21,59,0,0,27,17,4,42,7,8,40,240,1,0,6,42,0,0,0,27,48,6,0,242,0,0,0,92,0,0,17,3,22,148,3,23,148,88,3,24,148,88,10,3,5,40,240,1,0,6,11,18,1,40,162,0,0,10,45,2,20,42,2,4,18,1,40,163,0,0,10,105,24,3,23,148,90,6,40,242,1,0,6,12,18,2,40,162,0,0,10,57,172,0,0,0,3,22,148,3,23,148,88,3,24,148,88,107,34,0,0,64,64,91,13,2,123,207,0,0,4,111,164,0,0,10,19,5,43,59,17,5,111,165,0,0,10,19,6,17,6,9,18,2,40,163,0,0,10,18,1,40,163,0,0,10,111,236,1,0,6,44,26,17,6,18,2,40,163,0,0,10,18,1,40,163,0,0,10,9,111,237,1,0,6,19,7,222,81,17,5,111,59,0,0,10,45,188,222,12,17,5,44,7,17,5,111,60,0,0,10,220,18,1,40,163,0,0,10,18,2,40,163,0,0,10,9,115,235,1,0,6,19,4,2,123,207,0,0,4,17,4,111,166,0,0,10,2,123,214,0,0,4,44,13,2,123,214,0,0,4,17,4,111,69,1,0,6,20,42,17,7,42,0,0,1,16,0,0,2,0,97,0,72,169,0,12,0,0,0,0,58,2,40,20,0,0,10,2,3,125,215,0,0,4,42,30,2,123,215,0,0,4,42,30,2,123,216,0,0,4,42,34,2,20,111,248,1,0,6,42,19,48,3,0,70,0,0,0,93,0,0,17,2,3,44,23,3,29,111,44,0,0,10,44,14,3,29,111,77,0,0,10,116,41,0,0,2,43,1,20,125,216,0,0,4,2,123,215,0,0,4,2,123,216,0,0,4,115,9,2,0,6,3,111,12,2,0,6,10,6,45,2,20,42,2,6,111,249,1,0,6,42,0,0,19,48,5,0,82,1,0,0,94,0,0,17,3,111,29,2,0,6,10,3,111,30,2,0,6,11,3,111,28,2,0,6,12,2,6,7,8,111,253,1,0,6,13,9,34,0,0,128,63,52,2,20,42,6,7,8,9,18,4,40,252,1,0,6,45,2,20,42,17,4,40,228,1,0,6,19,5,17,5,45,2,20,42,17,5,111,226,1,0,6,29,89,19,6,20,19,7,17,5,111,224,1,0,6,142,57,142,0,0,0,7,111,60,1,0,6,6,111,60,1,0,6,89,8,111,60,1,0,6,88,19,11,7,111,61,1,0,6,6,111,61,1,0,6,89,8,111,61,1,0,6,88,19,12,34,0,0,128,63,34,0,0,64,64,17,6,107,91,89,19,13,6,111,60,1,0,6,17,13,17,11,6,111,60,1,0,6,89,90,88,105,19,14,6,111,61,1,0,6,17,13,17,12,6,111,61,1,0,6,89,90,88,105,19,15,26,19,16,43,26,2,9,17,14,17,15,17,16,107,40,1,2,0,6,19,7,17,7,45,12,17,16,23,98,19,16,17,16,31,16,49,224,6,7,8,17,7,17,4,40,250,1,0,6,19,8,2,123,215,0,0,4,17,8,17,4,40,251,1,0,6,19,9,17,9,45,2,20,42,17,7,45,22,25,141,40,0,0,2,37,22,8,162,37,23,6,162,37,24,7,162,19,10,43,25,26,141,40,0,0,2,37,22,8,162,37,23,6,162,37,24,7,162,37,25,17,7,162,19,10,17,9,17,10,115,135,6,0,6,42,0,0,19,48,16,0,156,0,0,0,95,0,0,17,14,4,107,34,0,0,96,64,89,10,5,44,27,5,111,60,1,0,6,11,5,111,61,1,0,6,12,6,34,0,0,64,64,89,37,19,4,13,43,47,3,111,60,1,0,6,2,111,60,1,0,6,89,4,111,60,1,0,6,88,11,3,111,61,1,0,6,2,111,61,1,0,6,89,4,111,61,1,0,6,88,12,6,37,19,4,13,34,0,0,96,64,34,0,0,96,64,6,34,0,0,96,64,9,17,4,34,0,0,96,64,6,2,111,60,1,0,6,2,111,61,1,0,6,3,111,60,1,0,6,3,111,61,1,0,6,7,8,4,111,60,1,0,6,4,111,61,1,0,6,40,176,6,0,6,42,62,40,160,6,0,6,2,4,4,3,111,163,6,0,6,42,19,48,3,0,94,0,0,0,64,0,0,17,2,3,40,66,1,0,6,5,91,40,218,6,0,6,10,2,4,40,66,1,0,6,5,91,40,218,6,0,6,11,14,4,6,7,88,23,99,29,88,84,14,4,74,25,95,12,8,69,4,0,0,0,2,0,0,0,24,0,0,0,12,0,0,0,22,0,0,0,43,22,14,4,14,4,74,23,88,84,43,12,14,4,14,4,74,23,89,84,43,2,23,42,23,42,98,2,3,4,40,254,1,0,6,2,3,5,40,254,1,0,6,88,34,0,0,0,64,91,42,0,19,48,5,0,112,0,0,0,49,0,0,17,2,3,111,60,1,0,6,105,3,111,61,1,0,6,105,4,111,60,1,0,6,105,4,111,61,1,0,6,105,40,255,1,0,6,10,2,4,111,60,1,0,6,105,4,111,61,1,0,6,105,3,111,60,1,0,6,105,3,111,61,1,0,6,105,40,255,1,0,6,11,6,40,159,0,0,10,44,8,7,34,0,0,224,64,91,42,7,40,159,0,0,10,44,8,6,34,0,0,224,64,91,42,6,7,88,34,0,0,96,65,91,42,19,48,6,0,202,0,0,0,96,0,0,17,2,3,4,5,14,4,40,0,2,0,6,34,0,0,128,63,10,3,5,3,89,89,11,7,22,47,12,3,107,3,7,89,107,91,10,22,11,43,50,7,2,123,215,0,0,4,111,31,6,0,6,50,36,2,123,215,0,0,4,111,31,6,0,6,23,89,3,89,107,7,3,89,107,91,10,2,123,215,0,0,4,111,31,6,0,6,23,89,11,4,107,14,4,4,89,107,6,90,89,105,12,34,0,0,128,63,10,8,22,47,12,4,107,4,8,89,107,91,10,22,12,43,50,8,2,123,215,0,0,4,111,32,6,0,6,50,36,2,123,215,0,0,4,111,32,6,0,6,23,89,4,89,107,8,4,89,107,91,10,2,123,215,0,0,4,111,32,6,0,6,23,89,12,3,107,7,3,89,107,6,90,88,105,11,2,3,4,7,8,40,0,2,0,6,88,34,0,0,128,63,89,42,0,0,19,48,4,0,228,0,0,0,97,0,0,17,14,4,4,89,40,161,0,0,10,5,3,89,40,161,0,0,10,254,2,10,6,44,13,3,4,16,1,16,2,5,14,4,16,3,16,4,5,3,89,40,161,0,0,10,11,14,4,4,89,40,161,0,0,10,12,7,101,23,99,13,3,5,50,3,21,43,1,23,19,4,4,14,4,50,3,21,43,1,23,19,5,22,19,6,5,17,4,88,19,7,3,19,8,4,19,9,43,99,6,45,4,17,8,43,2,17,9,19,10,6,45,4,17,9,43,2,17,8,19,11,17,6,23,254,1,2,123,215,0,0,4,17,10,17,11,111,41,6,0,6,51,23,17,6,24,51,12,17,8,17,9,3,4,40,220,6,0,6,42,17,6,23,88,19,6,9,8,88,13,9,22,49,17,17,9,14,4,46,24,17,9,17,5,88,19,9,9,7,89,13,17,8,17,4,88,19,8,17,8,17,7,51,151,17,6,24,51,14,5,17,4,88,14,4,3,4,40,220,6,0,6,42,34,0,0,192,255,42,19,48,7,0,119,0,0,0,51,0,0,17,14,4,3,90,105,10,22,4,6,89,40,139,0,0,10,11,2,123,215,0,0,4,111,31,6,0,6,23,89,4,6,88,40,140,0,0,10,12,8,7,89,107,3,34,0,0,64,64,90,52,2,20,42,22,5,6,89,40,139,0,0,10,13,2,123,215,0,0,4,111,32,6,0,6,23,89,5,6,88,40,140,0,0,10,19,4,2,123,215,0,0,4,7,9,8,7,89,17,4,9,89,3,2,123,216,0,0,4,115,238,1,0,6,111,239,1,0,6,42,102,2,3,4,5,23,40,3,2,0,6,2,5,125,217,0,0,4,2,23,125,218,0,0,4,42,98,2,3,4,40,59,1,0,6,2,5,125,217,0,0,4,2,14,4,125,218,0,0,4,42,30,2,123,217,0,0,4,42,30,2,123,218,0,0,4,42,0,0,19,48,2,0,71,0,0,0,87,0,0,17,4,2,111,61,1,0,6,89,40,155,0,0,10,3,53,53,5,2,111,60,1,0,6,89,40,155,0,0,10,3,53,37,3,2,123,217,0,0,4,89,40,155,0,0,10,10,6,34,0,0,128,63,49,13,6,2,123,217,0,0,4,254,3,22,254,1,42,23,42,22,42,0,19,48,4,0,77,0,0,0,98,0,0,17,2,123,218,0,0,4,23,88,10,2,123,218,0,0,4,107,2,111,60,1,0,6,90,4,88,6,107,91,2,123,218,0,0,4,107,2,111,61,1,0,6,90,3,88,6,107,91,11,2,123,218,0,0,4,107,2,123,217,0,0,4,90,5,88,6,107,91,12,7,8,6,115,3,2,0,6,42,38,2,3,20,40,9,2,0,6,42,178,2,40,20,0,0,10,2,3,125,223,0,0,4,2,115,167,0,0,10,125,224,0,0,4,2,27,141,72,0,0,1,125,226,0,0,4,2,4,125,227,0,0,4,42,30,2,123,223,0,0,4,42,30,2,123,224,0,0,4,42,19,48,4,0,167,1,0,0,99,0,0,17,3,44,9,3,25,111,44,0,0,10,43,1,22,10,2,123,223,0,0,4,111,32,6,0,6,11,2,123,223,0,0,4,111,31,6,0,6,12,25,7,90,32,132,1,0,0,91,13,9,25,254,4,6,96,44,2,25,13,22,19,4,27,141,72,0,0,1,19,5,9,23,89,19,7,56,43,1,0,0,2,17,5,40,17,2,0,6,22,19,8,22,19,9,56,223,0,0,0,2,123,223,0,0,4,17,9,17,7,111,41,6,0,6,44,32,17,8,23,95,23,51,6,17,8,23,88,19,8,17,5,17,8,143,72,0,0,1,37,74,23,88,84,56,168,0,0,0,17,8,23,95,58,145,0,0,0,17,8,26,51,119,17,5,40,14,2,0,6,44,97,2,17,5,17,7,17,9,40,23,2,0,6,44,57,24,13,2,123,225,0,0,4,44,10,2,40,25,2,0,6,19,4,43,50,2,40,24,2,0,6,19,10,17,10,17,5,24,148,49,34,17,7,17,10,17,5,24,148,89,9,89,88,19,7,8,23,89,19,9,43,13,2,17,5,40,18,2,0,6,25,19,8,43,61,22,19,8,2,17,5,40,17,2,0,6,43,48,2,17,5,40,18,2,0,6,25,19,8,43,35,17,5,17,8,23,88,37,19,8,143,72,0,0,1,37,74,23,88,84,43,14,17,5,17,8,143,72,0,0,1,37,74,23,88,84,17,9,23,88,19,9,17,9,8,63,25,255,255,255,17,5,40,14,2,0,6,44,34,2,17,5,17,7,8,40,23,2,0,6,44,21,17,5,22,148,13,2,123,225,0,0,4,44,8,2,40,25,2,0,6,19,4,17,7,9,88,19,7,17,7,7,47,7,17,4,57,201,254,255,255,2,40,26,2,0,6,19,6,17,6,45,2,20,42,17,6,19,11,17,11,40,65,1,0,6,17,6,115,27,2,0,6,42,0,19,48,3,0,47,0,0,0,89,0,0,17,3,2,26,148,89,2,25,148,89,107,2,24,148,107,34,0,0,0,64,91,89,10,6,40,159,0,0,10,44,10,18,1,254,21,59,0,0,27,7,42,6,115,160,0,0,10,42,0,19,48,3,0,128,0,0,0,51,0,0,17,22,10,22,13,43,20,2,9,148,19,4,17,4,45,2,22,42,6,17,4,88,10,9,23,88,13,9,27,50,232,6,29,47,2,22,42,6,30,98,29,91,11,7,24,91,12,7,2,22,148,30,98,89,40,161,0,0,10,8,47,65,7,2,23,148,30,98,89,40,161,0,0,10,8,47,50,25,7,90,2,24,148,30,98,89,40,161,0,0,10,25,8,90,47,31,7,2,25,148,30,98,89,40,161,0,0,10,8,47,16,7,2,26,148,30,98,89,40,161,0,0,10,8,254,4,42,22,42,19,48,3,0,138,0,0,0,100,0,0,17,22,10,22,13,43,20,2,9,148,19,4,17,4,45,2,22,42,6,17,4,88,10,9,23,88,13,9,27,50,232,6,29,47,2,22,42,6,107,34,0,0,224,64,91,11,7,34,190,159,170,63,91,12,7,2,22,148,107,89,40,155,0,0,10,8,52,69,7,2,23,148,107,89,40,155,0,0,10,8,52,55,34,0,0,64,64,7,90,2,24,148,107,89,40,155,0,0,10,34,0,0,64,64,8,90,52,29,7,2,25,148,107,89,40,155,0,0,10,8,52,15,7,2,26,148,107,89,40,155,0,0,10,8,254,4,42,22,42,78,2,2,123,226,0,0,4,40,17,2,0,6,2,123,226,0,0,4,42,0,0,19,48,3,0,19,0,0,0,1,0,0,17,22,10,43,8,3,6,22,158,6,23,88,10,6,3,142,105,50,242,42,110,3,22,3,24,148,158,3,23,3,25,148,158,3,24,3,26,148,158,3,25,23,158,3,26,22,158,42,0,19,48,4,0,97,1,0,0,101,0,0,17,2,40,16,2,0,6,10,22,11,43,16,6,24,143,72,0,0,1,37,74,23,88,84,7,23,88,11,3,7,50,23,4,7,50,19,2,123,223,0,0,4,4,7,89,3,7,89,111,41,6,0,6,45,213,6,24,148,45,18,22,42,6,23,143,72,0,0,1,37,74,23,88,84,7,23,88,11,3,7,50,23,4,7,50,19,2,123,223,0,0,4,4,7,89,3,7,89,111,41,6,0,6,44,213,6,23,148,45,18,22,42,6,22,143,72,0,0,1,37,74,23,88,84,7,23,88,11,3,7,50,23,4,7,50,19,2,123,223,0,0,4,4,7,89,3,7,89,111,41,6,0,6,45,213,6,22,148,45,2,22,42,2,123,223,0,0,4,111,32,6,0,6,12,2,123,223,0,0,4,111,31,6,0,6,13,23,11,43,16,6,24,143,72,0,0,1,37,74,23,88,84,7,23,88,11,3,7,88,8,47,43,4,7,88,9,47,37,2,123,223,0,0,4,4,7,88,3,7,88,111,41,6,0,6,45,209,43,16,6,25,143,72,0,0,1,37,74,23,88,84,7,23,88,11,3,7,88,8,47,25,4,7,88,9,47,19,2,123,223,0,0,4,4,7,88,3,7,88,111,41,6,0,6,44,209,6,25,148,45,18,22,42,6,26,143,72,0,0,1,37,74,23,88,84,7,23,88,11,3,7,88,8,47,25,4,7,88,9,47,19,2,123,223,0,0,4,4,7,88,3,7,88,111,41,6,0,6,45,209,6,26,148,45,2,22,42,6,40,15,2,0,6,42,0,0,0,19,48,3,0,188,1,0,0,91,0,0,17,2,123,223,0,0,4,111,32,6,0,6,10,2,40,16,2,0,6,11,3,12,43,16,7,24,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,15,2,123,223,0,0,4,4,8,111,41,6,0,6,45,221,8,22,47,27,18,4,254,21,59,0,0,27,17,4,42,7,23,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,21,2,123,223,0,0,4,4,8,111,41,6,0,6,45,6,7,23,148,5,49,215,8,22,50,6,7,23,148,5,49,27,18,4,254,21,59,0,0,27,17,4,42,7,22,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,21,2,123,223,0,0,4,4,8,111,41,6,0,6,44,6,7,22,148,5,49,215,7,22,148,5,49,11,18,4,254,21,59,0,0,27,17,4,42,3,23,88,12,43,16,7,24,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,15,2,123,223,0,0,4,4,8,111,41,6,0,6,45,221,8,6,51,27,18,4,254,21,59,0,0,27,17,4,42,7,25,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,21,2,123,223,0,0,4,4,8,111,41,6,0,6,45,6,7,25,148,5,50,215,8,6,46,6,7,25,148,5,50,27,18,4,254,21,59,0,0,27,17,4,42,7,26,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,21,2,123,223,0,0,4,4,8,111,41,6,0,6,44,6,7,26,148,5,50,215,7,26,148,5,50,11,18,4,254,21,59,0,0,27,17,4,42,7,22,148,7,23,148,88,7,24,148,88,7,25,148,88,7,26,148,88,13,27,9,14,4,89,40,161,0,0,10,90,24,14,4,90,50,11,18,4,254,21,59,0,0,27,17,4,42,7,40,14,2,0,6,45,11,18,4,254,21,59,0,0,27,17,4,42,7,8,40,13,2,0,6,42,19,48,3,0,186,1,0,0,91,0,0,17,2,123,223,0,0,4,111,31,6,0,6,10,2,40,16,2,0,6,11,3,12,43,16,7,24,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,15,2,123,223,0,0,4,8,4,111,41,6,0,6,45,221,8,22,47,27,18,4,254,21,59,0,0,27,17,4,42,7,23,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,21,2,123,223,0,0,4,8,4,111,41,6,0,6,45,6,7,23,148,5,49,215,8,22,50,6,7,23,148,5,49,27,18,4,254,21,59,0,0,27,17,4,42,7,22,143,72,0,0,1,37,74,23,88,84,8,23,89,12,8,22,50,21,2,123,223,0,0,4,8,4,111,41,6,0,6,44,6,7,22,148,5,49,215,7,22,148,5,49,11,18,4,254,21,59,0,0,27,17,4,42,3,23,88,12,43,16,7,24,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,15,2,123,223,0,0,4,8,4,111,41,6,0,6,45,221,8,6,51,27,18,4,254,21,59,0,0,27,17,4,42,7,25,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,21,2,123,223,0,0,4,8,4,111,41,6,0,6,45,6,7,25,148,5,50,215,8,6,46,6,7,25,148,5,50,27,18,4,254,21,59,0,0,27,17,4,42,7,26,143,72,0,0,1,37,74,23,88,84,8,23,88,12,8,6,47,21,2,123,223,0,0,4,8,4,111,41,6,0,6,44,6,7,26,148,5,50,215,7,26,148,5,50,11,18,4,254,21,59,0,0,27,17,4,42,7,22,148,7,23,148,88,7,24,148,88,7,25,148,88,7,26,148,88,13,27,9,14,4,89,40,161,0,0,10,90,14,4,50,11,18,4,254,21,59,0,0,27,17,4,42,7,40,14,2,0,6,45,11,18,4,254,21,59,0,0,27,17,4,42,7,8,40,13,2,0,6,42,42,2,3,4,5,40,23,2,0,6,42,0,0,0,19,48,6,0,75,1,0,0,102,0,0,17,3,22,148,3,23,148,88,3,24,148,88,3,25,148,88,3,26,148,88,10,3,5,40,13,2,0,6,11,18,1,40,162,0,0,10,45,2,22,42,2,4,18,1,40,163,0,0,10,105,3,24,148,6,40,20,2,0,6,12,18,2,40,162,0,0,10,57,2,1,0,0,2,18,1,40,163,0,0,10,105,18,2,40,163,0,0,10,105,3,24,148,6,40,21,2,0,6,11,18,1,40,162,0,0,10,57,219,0,0,0,2,18,2,40,163,0,0,10,105,18,1,40,163,0,0,10,105,40,19,2,0,6,57,192,0,0,0,6,107,34,0,0,224,64,91,13,22,19,4,22,19,5,43,98,2,123,224,0,0,4,17,5,111,168,0,0,10,19,6,17,6,9,18,2,40,163,0,0,10,18,1,40,163,0,0,10,111,6,2,0,6,44,53,2,123,224,0,0,4,17,5,111,169,0,0,10,2,123,224,0,0,4,17,5,17,6,18,2,40,163,0,0,10,18,1,40,163,0,0,10,9,111,7,2,0,6,111,170,0,0,10,23,19,4,43,21,17,5,23,88,19,5,17,5,2,123,224,0,0,4,111,171,0,0,10,50,143,17,4,45,56,18,1,40,163,0,0,10,18,2,40,163,0,0,10,9,115,2,2,0,6,19,7,2,123,224,0,0,4,17,7,111,172,0,0,10,2,123,227,0,0,4,44,13,2,123,227,0,0,4,17,7,111,69,1,0,6,23,42,22,42,0,27,48,3,0,135,0,0,0,103,0,0,17,2,123,224,0,0,4,111,171,0,0,10,23,48,2,22,42,20,10,2,123,224,0,0,4,111,173,0,0,10,11,43,74,18,1,40,174,0,0,10,12,8,111,5,2,0,6,24,50,57,6,45,4,8,10,43,50,2,23,125,225,0,0,4,6,111,60,1,0,6,8,111,60,1,0,6,89,40,155,0,0,10,6,111,61,1,0,6,8,111,61,1,0,6,89,40,155,0,0,10,89,105,24,91,13,222,27,18,1,40,175,0,0,10,45,173,222,14,18,1,254,22,63,0,0,27,111,60,0,0,10,220,22,42,9,42,0,1,16,0,0,2,0,30,0,87,117,0,14,0,0,0,0,27,48,3,0,176,0,0,0,104,0,0,17,22,10,34,0,0,0,0,11,2,123,224,0,0,4,111,171,0,0,10,12,2,123,224,0,0,4,111,173,0,0,10,19,5,43,33,18,5,40,174,0,0,10,19,6,17,6,111,5,2,0,6,24,50,14,6,23,88,10,7,17,6,111,4,2,0,6,88,11,18,5,40,175,0,0,10,45,214,222,14,18,5,254,22,63,0,0,27,111,60,0,0,10,220,6,25,47,2,22,42,7,8,107,91,13,34,0,0,0,0,19,4,22,19,7,43,40,2,123,224,0,0,4,17,7,111,168,0,0,10,19,8,17,4,17,8,111,4,2,0,6,9,89,40,155,0,0,10,88,19,4,17,7,23,88,19,7,17,7,8,50,211,17,4,34,205,204,76,61,7,90,254,3,22,254,1,42,1,16,0,0,2,0,33,0,46,79,0,14,0,0,0,0,27,48,5,0,179,1,0,0,105,0,0,17,2,123,224,0,0,4,111,171,0,0,10,10,6,25,47,2,20,42,6,25,62,222,0,0,0,34,0,0,0,0,11,34,0,0,0,0,12,2,123,224,0,0,4,111,173,0,0,10,19,6,43,27,18,6,40,174,0,0,10,111,4,2,0,6,19,7,7,17,7,88,11,8,17,7,17,7,90,88,12,18,6,40,175,0,0,10,45,220,222,14,18,6,254,22,63,0,0,27,111,60,0,0,10,220,7,6,107,91,13,8,6,107,91,9,9,90,89,108,40,176,0,0,10,107,19,4,2,123,224,0,0,4,9,115,190,8,0,6,111,177,0,0,10,34,205,204,76,62,9,90,17,4,40,178,0,0,10,19,5,22,19,8,43,54,2,123,224,0,0,4,17,8,111,168,0,0,10,111,4,2,0,6,9,89,40,155,0,0,10,17,5,54,19,2,123,224,0,0,4,17,8,111,169,0,0,10,17,8,23,89,19,8,17,8,23,88,19,8,17,8,2,123,224,0,0,4,111,171,0,0,10,47,14,2,123,224,0,0,4,111,171,0,0,10,25,48,173,2,123,224,0,0,4,111,171,0,0,10,25,49,122,34,0,0,0,0,19,9,2,123,224,0,0,4,111,173,0,0,10,19,6,43,21,18,6,40,174,0,0,10,19,11,17,9,17,11,111,4,2,0,6,88,19,9,18,6,40,175,0,0,10,45,226,222,14,18,6,254,22,63,0,0,27,111,60,0,0,10,220,17,9,2,123,224,0,0,4,111,171,0,0,10,107,91,19,10,2,123,224,0,0,4,17,10,115,192,8,0,6,111,177,0,0,10,2,2,123,224,0,0,4,22,25,111,179,0,0,10,125,224,0,0,4,25,141,69,0,0,2,37,22,2,123,224,0,0,4,22,111,168,0,0,10,162,37,23,2,123,224,0,0,4,23,111,168,0,0,10,162,37,24,2,123,224,0,0,4,24,111,168,0,0,10,162,42,0,1,28,0,0,2,0,50,0,40,90,0,14,0,0,0,0,2,0,25,1,34,59,1,14,0,0,0,0,138,2,40,20,0,0,10,2,3,22,154,125,228,0,0,4,2,3,23,154,125,229,0,0,4,2,3,24,154,125,230,0,0,4,42,30,2,123,228,0,0,4,42,30,2,123,229,0,0,4,42,30,2,123,230,0,0,4,42,86,2,40,20,0,0,10,2,3,125,231,0,0,4,2,4,125,232,0,0,4,42,30,2,123,231,0,0,4,42,30,2,123,232,0,0,4,42,0,0,0,19,48,3,0,59,0,0,0,1,0,0,17,2,40,20,0,0,10,2,4,141,64,0,0,27,125,233,0,0,4,22,10,43,18,2,123,233,0,0,4,6,3,141,74,0,0,1,162,6,23,88,10,6,4,50,234,2,3,125,234,0,0,4,2,4,125,235,0,0,4,42,30,2,123,235,0,0,4,42,30,2,123,234,0,0,4,42,46,2,123,233,0,0,4,4,154,3,145,42,54,2,123,233,0,0,4,4,154,3,5,210,156,42,30,2,123,233,0,0,4,42,50,2,123,233,0,0,4,4,154,3,5,156,42,78,2,123,233,0,0,4,4,154,3,5,45,3,22,43,1,23,210,156,42,0,0,19,48,3,0,48,0,0,0,106,0,0,17,22,10,43,34,2,123,233,0,0,4,6,154,11,22,12,43,8,7,8,3,156,8,23,88,12,8,2,123,234,0,0,4,50,239,6,23,88,10,6,2,123,235,0,0,4,50,213,42,19,48,2,0,138,0,0,0,107,0,0,17,24,2,123,234,0,0,4,90,2,123,235,0,0,4,90,24,88,115,22,0,0,10,10,22,11,43,95,2,123,233,0,0,4,7,154,12,22,13,43,60,8,9,145,19,4,17,4,44,7,17,4,23,46,16,43,28,6,114,77,11,0,112,111,119,0,0,10,38,43,26,6,114,83,11,0,112,111,119,0,0,10,38,43,12,6,114,89,11,0,112,111,119,0,0,10,38,9,23,88,13,9,2,123,234,0,0,4,50,187,6,31,10,111,23,0,0,10,38,7,23,88,11,7,2,123,235,0,0,4,50,152,6,111,25,0,0,10,42,114,2,40,69,2,0,6,2,40,70,2,0,6,88,2,40,71,2,0,6,88,2,40,74,2,0,6,88,42,38,2,3,20,40,46,2,0,6,42,0,0,0,19,48,5,0,19,2,0,0,108,0,0,17,4,44,9,4,26,111,126,0,0,10,43,1,22,4,44,23,4,26,111,126,0,0,10,44,14,4,26,111,127,0,0,10,116,63,0,0,1,43,1,20,10,6,45,6,126,237,0,0,4,10,45,16,126,237,0,0,4,6,111,180,0,0,10,22,254,1,43,1,23,11,2,6,40,51,2,0,6,12,115,6,6,0,6,13,8,126,190,0,0,4,254,1,7,95,44,66,6,40,72,6,0,6,19,12,17,12,44,54,4,44,40,4,31,10,111,126,0,0,10,44,30,4,31,10,111,127,0,0,10,44,20,4,31,10,111,127,0,0,10,111,25,0,0,10,40,181,0,0,10,43,1,22,45,8,17,12,9,40,67,2,0,6,4,44,10,4,31,18,111,126,0,0,10,43,1,22,44,41,4,31,18,111,127,0,0,10,44,31,4,31,18,111,127,0,0,10,111,25,0,0,10,40,181,0,0,10,44,11,126,193,0,0,4,9,40,60,2,0,6,8,9,40,60,2,0,6,115,6,6,0,6,19,4,2,8,17,4,6,40,62,2,0,6,4,44,67,4,31,17,111,126,0,0,10,44,57,4,31,17,111,127,0,0,10,111,25,0,0,10,40,182,0,0,10,40,229,1,0,6,19,5,8,9,17,4,17,5,40,48,2,0,6,17,5,3,40,55,2,0,6,45,23,114,95,11,0,112,115,104,1,0,6,122,3,8,9,17,4,40,47,2,0,6,19,5,115,6,6,0,6,19,6,17,6,9,111,21,6,0,6,8,126,190,0,0,4,46,8,2,111,30,0,0,10,43,7,17,4,111,3,6,0,6,17,5,8,17,6,40,61,2,0,6,17,6,17,4,111,21,6,0,6,17,5,3,111,227,1,0,6,19,7,17,5,111,225,1,0,6,17,7,111,185,8,0,6,89,19,8,17,8,17,6,40,56,2,0,6,17,6,17,5,111,225,1,0,6,17,8,17,7,111,184,8,0,6,40,58,2,0,6,115,97,2,0,6,37,3,111,101,2,0,6,37,8,111,99,2,0,6,37,17,5,111,103,2,0,6,19,9,17,5,111,226,1,0,6,37,115,34,2,0,6,19,10,37,3,17,5,17,10,40,53,2,0,6,19,11,17,9,17,11,111,105,2,0,6,3,17,5,17,11,17,10,40,78,2,0,6,17,9,17,10,111,107,2,0,6,17,9,42,0,19,48,4,0,37,0,0,0,85,0,0,17,3,4,5,23,40,229,1,0,6,40,48,2,0,6,2,40,54,2,0,6,10,3,4,5,6,40,48,2,0,6,2,40,54,2,0,6,42,90,3,111,2,6,0,6,2,5,111,214,1,0,6,88,4,111,2,6,0,6,88,42,82,2,126,236,0,0,4,142,105,47,8,126,236,0,0,4,2,148,42,21,42,34,2,20,40,51,2,0,6,42,0,0,19,48,2,0,113,0,0,0,109,0,0,17,114,165,11,0,112,3,40,180,0,0,10,44,14,2,40,52,2,0,6,44,6,126,192,0,0,4,42,22,10,22,11,22,12,43,45,2,8,111,27,0,0,10,13,9,31,48,50,9,9,31,57,48,4,23,10,43,19,9,40,49,2,0,6,21,46,4,23,11,43,6,126,190,0,0,4,42,8,23,88,12,8,2,111,30,0,0,10,50,202,7,44,6,126,188,0,0,4,42,6,44,6,126,187,0,0,4,42,126,190,0,0,4,42,0,0,0,27,48,2,0,100,0,0,0,110,0,0,17,114,165,11,0,112,40,146,0,0,10,2,111,183,0,0,10,10,222,5,38,22,12,222,74,6,142,105,11,7,24,93,44,2,22,42,22,13,43,53,6,9,145,32,255,0,0,0,95,19,4,17,4,32,129,0,0,0,50,9,17,4,32,159,0,0,0,49,20,17,4,32,224,0,0,0,50,9,17,4,32,235,0,0,0,49,2,22,42,9,24,88,13,9,7,50,199,23,42,8,42,1,16,0,0,0,0,0,0,19,19,0,5,23,0,0,1,19,48,5,0,51,0,0,0,111,0,0,17,32,255,255,255,127,10,21,11,22,12,43,29,2,3,4,8,5,40,78,2,0,6,5,40,44,2,0,6,13,9,6,47,4,9,10,8,11,8,23,88,12,8,126,249,0,0,4,50,219,7,42,0,19,48,3,0,43,0,0,0,112,0,0,17,23,10,43,23,6,40,229,1,0,6,11,2,7,3,40,55,2,0,6,44,2,7,42,6,23,88,10,6,31,40,49,228,114,185,11,0,112,115,104,1,0,6,122,0,19,48,3,0,34,0,0,0,2,0,0,17,3,111,225,1,0,6,3,4,111,227,1,0,6,111,185,8,0,6,10,6,89,2,29,88,30,91,11,7,254,4,22,254,1,42,0,0,19,48,4,0,201,0,0,0,113,0,0,17,2,25,98,10,3,111,2,6,0,6,6,49,56,26,141,13,0,0,1,37,22,114,211,11,0,112,162,37,23,3,111,2,6,0,6,140,72,0,0,1,162,37,24,114,27,12,0,112,162,37,25,6,140,72,0,0,1,162,40,134,0,0,10,115,104,1,0,6,122,22,13,43,11,3,22,111,18,6,0,6,9,23,88,13,9,26,47,9,3,111,2,6,0,6,6,50,232,3,111,2,6,0,6,29,95,11,7,22,49,23,7,19,4,43,13,3,22,111,18,6,0,6,17,4,23,88,19,4,17,4,30,50,238,2,3,111,3,6,0,6,89,12,22,19,5,43,28,3,17,5,23,95,44,4,31,17,43,5,32,236,0,0,0,30,111,20,6,0,6,17,5,23,88,19,5,17,5,8,50,223,3,111,2,6,0,6,6,46,11,114,35,12,0,112,115,104,1,0,6,122,42,0,0,0,19,48,4,0,140,0,0,0,114,0,0,17,5,4,50,11,114,103,12,0,112,115,104,1,0,6,122,2,4,93,10,4,6,89,11,2,4,91,37,23,88,12,3,4,91,13,9,23,88,19,4,9,89,19,5,8,17,4,89,19,6,17,5,17,6,46,11,114,141,12,0,112,115,104,1,0,6,122,4,7,6,88,46,11,114,177,12,0,112,115,104,1,0,6,122,2,9,17,5,88,7,90,17,4,17,6,88,6,90,88,46,11,114,215,12,0,112,115,104,1,0,6,122,5,7,47,12,14,4,22,9,158,14,5,22,17,5,158,42,14,4,22,17,4,158,14,5,22,17,6,158,42,27,48,6,0,179,1,0,0,115,0,0,17,2,111,3,6,0,6,4,46,11,114,1,13,0,112,115,104,1,0,6,122,22,10,22,11,22,12,5,115,184,0,0,10,13,22,19,5,43,120,23,141,72,0,0,1,19,6,23,141,72,0,0,1,19,7,3,4,5,17,5,17,6,17,7,40,57,2,0,6,17,6,22,148,19,8,17,8,141,74,0,0,1,19,9,2,30,6,90,17,9,22,17,8,111,23,6,0,6,17,9,17,7,22,148,40,59,2,0,6,19,10,9,17,9,17,10,115,31,2,0,6,111,185,0,0,10,7,17,8,40,139,0,0,10,11,8,17,10,142,105,40,139,0,0,10,12,6,17,6,22,148,88,10,17,5,23,88,19,5,17,5,5,50,131,4,6,46,11,114,91,13,0,112,115,104,1,0,6,122,115,6,6,0,6,19,4,22,19,11,43,76,9,111,186,0,0,10,19,12,43,35,18,12,40,187,0,0,10,111,32,2,0,6,19,13,17,11,17,13,142,105,47,13,17,4,17,13,17,11,145,30,111,20,6,0,6,18,12,40,188,0,0,10,45,212,222,14,18,12,254,22,66,0,0,27,111,60,0,0,10,220,17,11,23,88,19,11,17,11,7,50,175,22,19,14,43,76,9,111,186,0,0,10,19,12,43,35,18,12,40,187,0,0,10,111,33,2,0,6,19,15,17,14,17,15,142,105,47,13,17,4,17,15,17,14,145,30,111,20,6,0,6,18,12,40,188,0,0,10,45,212,222,14,18,12,254,22,66,0,0,27,111,60,0,0,10,220,17,14,23,88,19,14,17,14,8,50,175,3,17,4,111,3,6,0,6,46,65,27,141,13,0,0,1,37,22,114,157,13,0,112,162,37,23,3,140,72,0,0,1,162,37,24,114,199,13,0,112,162,37,25,17,4,111,3,6,0,6,140,72,0,0,1,162,37,26,114,211,13,0,112,162,40,134,0,0,10,115,104,1,0,6,122,17,4,42,0,1,28,0,0,2,0,198,0,48,246,0,14,0,0,0,0,2,0,28,1,48,76,1,14,0,0,0,0,19,48,5,0,90,0,0,0,116,0,0,17,2,142,105,10,6,3,88,141,72,0,0,1,11,22,13,43,16,7,9,2,9,145,32,255,0,0,0,95,158,9,23,88,13,9,6,50,236,126,95,3,0,4,115,215,6,0,6,7,3,40,217,6,0,6,3,141,74,0,0,1,12,22,19,4,43,17,8,17,4,7,6,17,4,88,148,210,156,17,4,23,88,19,4,17,4,3,50,234,8,42,58,3,2,111,215,1,0,6,26,111,20,6,0,6,42,0,0,0,19,48,5,0,61,0,0,0,1,0,0,17,4,3,111,214,1,0,6,10,2,23,6,31,31,95,98,50,35,2,140,72,0,0,1,114,229,13,0,112,23,6,31,31,95,98,23,89,140,72,0,0,1,40,75,0,0,10,115,104,1,0,6,122,5,2,6,111,20,6,0,6,42,0,0,0,19,48,3,0,102,0,0,0,0,0,0,0,3,126,187,0,0,4,111,189,0,0,10,44,8,2,4,40,63,2,0,6,42,3,126,188,0,0,4,111,189,0,0,10,44,8,2,4,40,64,2,0,6,42,3,126,190,0,0,4,111,189,0,0,10,44,9,2,4,5,40,65,2,0,6,42,3,126,192,0,0,4,111,189,0,0,10,44,8,2,4,40,66,2,0,6,42,114,7,14,0,112,3,40,91,0,0,10,115,104,1,0,6,122,0,0,19,48,4,0,138,0,0,0,113,0,0,17,2,111,30,0,0,10,10,22,11,43,122,2,7,111,27,0,0,10,31,48,89,12,7,24,88,6,47,53,2,7,23,88,111,27,0,0,10,31,48,89,13,2,7,24,88,111,27,0,0,10,31,48,89,19,4,3,8,31,100,90,9,31,10,90,88,17,4,88,31,10,111,20,6,0,6,7,25,88,11,43,52,7,23,88,6,47,34,2,7,23,88,111,27,0,0,10,31,48,89,19,5,3,8,31,10,90,17,5,88,29,111,20,6,0,6,7,24,88,11,43,12,3,8,26,111,20,6,0,6,7,23,88,11,7,6,50,130,42,0,0,19,48,3,0,102,0,0,0,111,0,0,17,2,111,30,0,0,10,10,22,11,43,86,2,7,111,27,0,0,10,40,49,2,0,6,12,8,21,51,6,115,103,1,0,6,122,7,23,88,6,47,45,2,7,23,88,111,27,0,0,10,40,49,2,0,6,13,9,21,51,6,115,103,1,0,6,122,3,8,31,45,90,9,88,31,11,111,20,6,0,6,7,24,88,11,43,12,3,8,28,111,20,6,0,6,7,23,88,11,7,6,50,166,42,0,0,27,48,3,0,60,0,0,0,117,0,0,17,4,40,146,0,0,10,2,111,183,0,0,10,10,222,14,11,7,111,97,0,0,10,7,115,105,1,0,6,122,6,12,22,13,43,18,8,9,145,19,4,3,17,4,30,111,20,6,0,6,9,23,88,13,9,8,142,105,50,232,42,1,16,0,0,0,0,0,0,15,15,0,14,23,0,0,1,27,48,3,0,197,0,0,0,118,0,0,17,114,165,11,0,112,40,146,0,0,10,2,111,183,0,0,10,10,222,14,12,8,111,97,0,0,10,8,115,105,1,0,6,122,6,142,105,11,22,13,56,145,0,0,0,6,9,145,32,255,0,0,0,95,19,4,6,9,23,88,145,32,255,0,0,0,95,19,5,17,4,30,98,17,5,96,19,6,21,19,7,17,6,32,64,129,0,0,50,21,17,6,32,252,159,0,0,48,12,17,6,32,64,129,0,0,89,19,7,43,28,17,6,32,64,224,0,0,50,19,17,6,32,191,235,0,0,48,10,17,6,32,64,193,0,0,89,19,7,17,7,21,51,11,114,37,14,0,112,115,104,1,0,6,122,17,7,30,99,32,192,0,0,0,90,17,7,32,255,0,0,0,95,88,19,8,3,17,8,31,13,111,20,6,0,6,9,24,88,13,9,7,63,104,255,255,255,42,0,0,0,1,16,0,0,0,0,0,0,19,19,0,14,23,0,0,1,126,3,126,191,0,0,4,111,215,1,0,6,26,111,20,6,0,6,3,2,111,136,6,0,6,30,111,20,6,0,6,42,138,31,96,141,72,0,0,1,37,208,54,5,0,4,40,153,0,0,10,128,236,0,0,4,114,81,14,0,112,128,237,0,0,4,42,66,2,23,40,76,2,0,6,2,22,40,76,2,0,6,88,42,19,48,4,0,119,0,0,0,119,0,0,17,22,10,2,111,39,2,0,6,11,2,111,36,2,0,6,12,2,111,35,2,0,6,13,22,19,4,43,80,7,17,4,154,19,5,7,17,4,23,88,154,19,6,22,19,7,43,48,17,5,17,7,145,19,8,17,8,17,5,17,7,23,88,145,51,24,17,8,17,6,17,7,145,51,15,17,8,17,6,17,7,23,88,145,51,4,6,23,88,10,17,7,23,88,19,7,17,7,8,23,89,50,201,17,4,23,88,19,4,17,4,9,23,89,50,169,25,6,90,42,0,19,48,5,0,58,1,0,0,120,0,0,17,22,10,2,111,39,2,0,6,11,2,111,36,2,0,6,12,2,111,35,2,0,6,13,22,19,4,56,14,1,0,0,22,19,5,56,248,0,0,0,7,17,4,154,19,6,17,5,28,88,8,47,103,17,6,17,5,145,23,51,95,17,6,17,5,23,88,145,45,86,17,6,17,5,24,88,145,23,51,76,17,6,17,5,25,88,145,23,51,66,17,6,17,5,26,88,145,23,51,56,17,6,17,5,27,88,145,45,47,17,6,17,5,28,88,145,23,51,37,17,6,17,5,26,89,17,5,40,72,2,0,6,45,18,17,6,17,5,29,88,17,5,31,11,88,40,72,2,0,6,44,4,6,23,88,10,17,4,28,88,9,47,119,7,17,4,154,17,5,145,23,51,109,7,17,4,23,88,154,17,5,145,45,98,7,17,4,24,88,154,17,5,145,23,51,86,7,17,4,25,88,154,17,5,145,23,51,74,7,17,4,26,88,154,17,5,145,23,51,62,7,17,4,27,88,154,17,5,145,45,51,7,17,4,28,88,154,17,5,145,23,51,39,7,17,5,17,4,26,89,17,4,40,73,2,0,6,45,19,7,17,5,17,4,29,88,17,4,31,11,88,40,73,2,0,6,44,4,6,23,88,10,17,5,23,88,19,5,17,5,8,63,0,255,255,255,17,4,23,88,19,4,17,4,9,63,234,254,255,255,6,31,40,90,42,0,0,19,48,2,0,42,0,0,0,1,0,0,17,3,22,40,139,0,0,10,16,1,4,2,142,105,40,140,0,0,10,16,2,3,10,43,12,2,6,145,23,51,2,22,42,6,23,88,10,6,4,50,240,23,42,0,0,19,48,2,0,44,0,0,0,1,0,0,17,4,22,40,139,0,0,10,16,2,5,2,142,105,40,140,0,0,10,16,3,4,10,43,14,2,6,154,3,145,23,51,2,22,42,6,23,88,10,6,5,50,238,23,42,19,48,2,0,124,0,0,0,121,0,0,17,22,10,2,111,39,2,0,6,11,2,111,36,2,0,6,12,2,111,35,2,0,6,13,22,19,5,43,40,7,17,5,154,19,6,22,19,7,43,18,17,6,17,7,145,23,51,4,6,23,88,10,17,7,23,88,19,7,17,7,8,50,233,17,5,23,88,19,5,17,5,9,50,211,2,111,35,2,0,6,2,111,36,2,0,6,90,19,4,6,108,17,4,108,91,35,0,0,0,0,0,0,224,63,89,40,190,0,0,10,35,0,0,0,0,0,0,52,64,90,105,31,10,90,42,19,48,3,0,155,0,0,0,2,0,0,17,2,69,8,0,0,0,2,0,0,0,10,0,0,0,16,0,0,0,22,0,0,0,30,0,0,0,42,0,0,0,56,0,0,0,72,0,0,0,43,88,4,3,88,23,95,10,43,102,4,23,95,10,43,96,3,25,93,10,43,90,4,3,88,25,93,10,43,82,4,23,100,3,25,91,88,23,95,10,43,70,4,3,90,11,7,23,95,7,25,93,88,10,43,56,4,3,90,11,7,23,95,7,25,93,88,23,95,10,43,40,4,3,90,11,7,25,93,4,3,88,23,95,88,23,95,10,43,22,114,103,14,0,112,2,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,6,22,254,1,42,0,19,48,4,0,155,0,0,0,122,0,0,17,22,10,3,45,8,2,111,36,2,0,6,43,6,2,111,35,2,0,6,11,3,45,8,2,111,35,2,0,6,43,6,2,111,36,2,0,6,12,2,111,39,2,0,6,13,22,19,4,43,98,22,19,5,21,19,6,22,19,7,43,62,3,45,9,9,17,7,154,17,4,145,43,7,9,17,4,154,17,7,145,19,8,17,8,17,6,51,8,17,5,23,88,19,5,43,21,17,5,27,50,9,6,25,17,5,27,89,88,88,10,23,19,5,17,8,19,6,17,7,23,88,19,7,17,7,8,50,189,17,5,27,50,9,6,25,17,5,27,89,88,88,10,17,4,23,88,19,4,17,4,7,50,153,6,42,34,2,24,111,42,2,0,6,42,170,14,4,40,77,2,0,6,4,14,4,40,79,2,0,6,3,5,14,4,40,80,2,0,6,4,14,4,40,81,2,0,6,2,5,14,4,40,82,2,0,6,42,106,3,40,94,2,0,6,3,40,89,2,0,6,2,3,40,95,2,0,6,3,40,88,2,0,6,42,0,0,19,48,4,0,140,0,0,0,123,0,0,17,115,6,6,0,6,10,2,3,6,40,85,2,0,6,22,11,43,112,6,6,111,2,6,0,6,23,89,7,89,111,4,6,0,6,45,3,22,43,1,23,12,126,245,0,0,4,7,154,37,22,148,13,23,148,19,4,4,9,17,4,8,111,38,2,0,6,7,30,47,28,4,111,36,2,0,6,7,89,23,89,19,5,30,19,6,4,17,5,17,6,8,111,38,2,0,6,43,28,30,19,7,4,111,35,2,0,6,29,89,7,30,89,88,19,8,4,17,7,17,8,8,111,38,2,0,6,7,23,88,11,7,6,111,2,6,0,6,50,135,42,19,48,4,0,110,0,0,0,124,0,0,17,2,111,223,1,0,6,29,47,1,42,115,6,6,0,6,10,2,6,40,86,2,0,6,31,17,11,22,12,43,75,22,13,43,63,6,7,111,4,6,0,6,45,3,22,43,1,23,19,4,7,23,89,11,3,8,3,111,35,2,0,6,31,11,89,9,88,17,4,111,38,2,0,6,3,3,111,35,2,0,6,31,11,89,9,88,8,17,4,111,38,2,0,6,9,23,88,13,9,25,50,189,8,23,88,12,8,28,50,177,42,0,0,19,48,4,0,241,0,0,0,114,0,0,17,22,10,21,11,4,111,36,2,0,6,23,89,12,4,111,35,2,0,6,23,89,13,56,141,0,0,0,8,28,51,113,8,23,89,12,43,107,22,19,4,43,93,8,17,4,89,19,5,4,17,5,9,111,37,2,0,6,40,87,2,0,6,44,65,6,2,111,2,6,0,6,47,21,2,6,111,4,6,0,6,45,3,22,43,1,23,19,6,6,23,88,10,43,3,22,19,6,3,21,46,17,3,17,5,9,40,75,2,0,6,44,6,17,6,23,97,19,6,4,17,5,9,17,6,111,38,2,0,6,17,4,23,88,19,4,17,4,24,50,158,9,7,88,13,9,22,50,9,9,4,111,35,2,0,6,50,136,7,101,11,9,7,88,13,8,24,89,12,8,22,61,108,255,255,255,6,2,111,2,6,0,6,46,56,26,141,13,0,0,1,37,22,114,149,14,0,112,162,37,23,6,140,72,0,0,1,162,37,24,114,197,14,0,112,162,37,25,2,111,2,6,0,6,140,72,0,0,1,162,40,134,0,0,10,115,104,1,0,6,122,42,0,0,0,19,48,2,0,18,0,0,0,1,0,0,17,22,10,43,9,2,23,100,16,0,6,23,88,10,2,45,244,6,42,0,0,19,48,4,0,66,0,0,0,1,0,0,17,3,45,16,114,201,14,0,112,114,229,14,0,112,115,108,0,0,10,122,3,40,83,2,0,6,10,2,6,23,89,31,31,95,98,16,0,43,17,2,3,2,40,83,2,0,6,6,89,31,31,95,98,97,16,0,2,40,83,2,0,6,6,47,230,2,42,0,0,19,48,3,0,123,0,0,0,125,0,0,17,3,40,109,2,0,6,45,11,114,239,14,0,112,115,104,1,0,6,122,2,111,195,1,0,6,25,98,3,96,10,4,6,27,111,20,6,0,6,6,32,55,5,0,0,40,84,2,0,6,11,4,7,31,10,111,20,6,0,6,115,6,6,0,6,12,8,32,18,84,0,0,31,15,111,20,6,0,6,4,8,111,22,6,0,6,4,111,2,6,0,6,31,15,46,27,114,25,15,0,112,4,111,2,6,0,6,140,72,0,0,1,40,91,0,0,10,115,104,1,0,6,122,42,0,19,48,3,0,77,0,0,0,1,0,0,17,3,2,111,223,1,0,6,28,111,20,6,0,6,2,111,223,1,0,6,32,37,31,0,0,40,84,2,0,6,10,3,6,31,12,111,20,6,0,6,3,111,2,6,0,6,31,18,46,27,114,25,15,0,112,3,111,2,6,0,6,140,72,0,0,1,40,91,0,0,10,115,104,1,0,6,122,42,22,2,24,254,1,42,0,19,48,4,0,74,0,0,0,2,0,0,17,30,10,43,58,6,23,88,24,93,11,2,6,28,111,37,2,0,6,40,87,2,0,6,44,9,2,6,28,7,111,38,2,0,6,2,28,6,111,37,2,0,6,40,87,2,0,6,44,9,2,28,6,7,111,38,2,0,6,6,23,88,10,6,2,111,36,2,0,6,30,89,50,187,42,162,2,30,2,111,35,2,0,6,30,89,111,37,2,0,6,45,6,115,103,1,0,6,122,2,30,2,111,35,2,0,6,30,89,23,111,38,2,0,6,42,0,19,48,4,0,47,0,0,0,1,0,0,17,22,10,43,38,4,2,6,88,3,111,37,2,0,6,40,87,2,0,6,45,6,115,103,1,0,6,122,4,2,6,88,3,22,111,38,2,0,6,6,23,88,10,6,30,50,214,42,0,19,48,4,0,47,0,0,0,1,0,0,17,22,10,43,38,4,2,3,6,88,111,37,2,0,6,40,87,2,0,6,45,6,115,103,1,0,6,122,4,2,3,6,88,22,111,38,2,0,6,6,23,88,10,6,29,50,214,42,0,19,48,5,0,48,0,0,0,126,0,0,17,22,10,43,39,126,243,0,0,4,6,154,11,22,12,43,19,4,2,8,88,3,6,88,7,8,148,111,38,2,0,6,8,23,88,12,8,27,50,233,6,23,88,10,6,27,50,213,42,19,48,5,0,48,0,0,0,126,0,0,17,22,10,43,39,126,242,0,0,4,6,154,11,22,12,43,19,4,2,8,88,3,6,88,7,8,148,111,38,2,0,6,8,23,88,12,8,29,50,233,6,23,88,10,6,29,50,213,42,19,48,3,0,127,0,0,0,1,0,0,17,126,242,0,0,4,22,154,142,105,10,22,22,2,40,93,2,0,6,2,111,36,2,0,6,6,89,22,2,40,93,2,0,6,22,2,111,36,2,0,6,6,89,2,40,93,2,0,6,22,29,2,40,90,2,0,6,2,111,36,2,0,6,30,89,29,2,40,90,2,0,6,22,2,111,36,2,0,6,30,89,2,40,90,2,0,6,29,22,2,40,91,2,0,6,2,111,35,2,0,6,29,89,23,89,22,2,40,91,2,0,6,29,2,111,35,2,0,6,29,89,2,40,91,2,0,6,42,0,19,48,3,0,119,0,0,0,127,0,0,17,2,111,223,1,0,6,24,47,1,42,2,111,223,1,0,6,23,89,10,126,244,0,0,4,6,154,11,7,12,22,13,43,79,8,9,148,19,4,17,4,22,50,65,7,19,5,22,19,6,43,49,17,5,17,6,148,19,7,17,7,22,50,31,3,17,7,17,4,111,37,2,0,6,40,87,2,0,6,44,14,17,7,24,89,17,4,24,89,3,40,92,2,0,6,17,6,23,88,19,6,17,6,17,5,142,105,50,199,9,23,88,13,9,8,142,105,50,171,42,0,19,48,7,0,79,5,0,0,0,0,0,0,29,141,55,0,0,27,37,22,29,141,72,0,0,1,37,208,95,5,0,4,40,153,0,0,10,162,37,23,29,141,72,0,0,1,37,22,23,158,37,28,23,158,162,37,24,29,141,72,0,0,1,37,208,175,4,0,4,40,153,0,0,10,162,37,25,29,141,72,0,0,1,37,208,175,4,0,4,40,153,0,0,10,162,37,26,29,141,72,0,0,1,37,208,175,4,0,4,40,153,0,0,10,162,37,27,29,141,72,0,0,1,37,22,23,158,37,28,23,158,162,37,28,29,141,72,0,0,1,37,208,95,5,0,4,40,153,0,0,10,162,128,242,0,0,4,27,141,55,0,0,27,37,22,27,141,72,0,0,1,37,208,128,4,0,4,40,153,0,0,10,162,37,23,27,141,72,0,0,1,37,22,23,158,37,26,23,158,162,37,24,27,141,72,0,0,1,37,208,150,4,0,4,40,153,0,0,10,162,37,25,27,141,72,0,0,1,37,22,23,158,37,26,23,158,162,37,26,27,141,72,0,0,1,37,208,128,4,0,4,40,153,0,0,10,162,128,243,0,0,4,31,40,141,55,0,0,27,37,22,29,141,72,0,0,1,37,208,222,4,0,4,40,153,0,0,10,162,37,23,29,141,72,0,0,1,37,208,69,4,0,4,40,153,0,0,10,162,37,24,29,141,72,0,0,1,37,208,172,4,0,4,40,153,0,0,10,162,37,25,29,141,72,0,0,1,37,208,209,4,0,4,40,153,0,0,10,162,37,26,29,141,72,0,0,1,37,208,169,5,0,4,40,153,0,0,10,162,37,27,29,141,72,0,0,1,37,208,57,5,0,4,40,153,0,0,10,162,37,28,29,141,72,0,0,1,37,208,145,5,0,4,40,153,0,0,10,162,37,29,29,141,72,0,0,1,37,208,144,5,0,4,40,153,0,0,10,162,37,30,29,141,72,0,0,1,37,208,107,4,0,4,40,153,0,0,10,162,37,31,9,29,141,72,0,0,1,37,208,211,4,0,4,40,153,0,0,10,162,37,31,10,29,141,72,0,0,1,37,208,149,4,0,4,40,153,0,0,10,162,37,31,11,29,141,72,0,0,1,37,208,80,4,0,4,40,153,0,0,10,162,37,31,12,29,141,72,0,0,1,37,208,199,5,0,4,40,153,0,0,10,162,37,31,13,29,141,72,0,0,1,37,208,58,5,0,4,40,153,0,0,10,162,37,31,14,29,141,72,0,0,1,37,208,92,5,0,4,40,153,0,0,10,162,37,31,15,29,141,72,0,0,1,37,208,67,5,0,4,40,153,0,0,10,162,37,31,16,29,141,72,0,0,1,37,208,62,5,0,4,40,153,0,0,10,162,37,31,17,29,141,72,0,0,1,37,208,251,4,0,4,40,153,0,0,10,162,37,31,18,29,141,72,0,0,1,37,208,161,5,0,4,40,153,0,0,10,162,37,31,19,29,141,72,0,0,1,37,208,44,5,0,4,40,153,0,0,10,162,37,31,20,29,141,72,0,0,1,37,208,187,5,0,4,40,153,0,0,10,162,37,31,21,29,141,72,0,0,1,37,208,181,4,0,4,40,153,0,0,10,162,37,31,22,29,141,72,0,0,1,37,208,71,5,0,4,40,153,0,0,10,162,37,31,23,29,141,72,0,0,1,37,208,178,5,0,4,40,153,0,0,10,162,37,31,24,29,141,72,0,0,1,37,208,48,4,0,4,40,153,0,0,10,162,37,31,25,29,141,72,0,0,1,37,208,8,5,0,4,40,153,0,0,10,162,37,31,26,29,141,72,0,0,1,37,208,183,5,0,4,40,153,0,0,10,162,37,31,27,29,141,72,0,0,1,37,208,79,4,0,4,40,153,0,0,10,162,37,31,28,29,141,72,0,0,1,37,208,115,4,0,4,40,153,0,0,10,162,37,31,29,29,141,72,0,0,1,37,208,168,4,0,4,40,153,0,0,10,162,37,31,30,29,141,72,0,0,1,37,208,176,4,0,4,40,153,0,0,10,162,37,31,31,29,141,72,0,0,1,37,208,49,5,0,4,40,153,0,0,10,162,37,31,32,29,141,72,0,0,1,37,208,233,4,0,4,40,153,0,0,10,162,37,31,33,29,141,72,0,0,1,37,208,164,5,0,4,40,153,0,0,10,162,37,31,34,29,141,72,0,0,1,37,208,173,5,0,4,40,153,0,0,10,162,37,31,35,29,141,72,0,0,1,37,208,115,5,0,4,40,153,0,0,10,162,37,31,36,29,141,72,0,0,1,37,208,47,4,0,4,40,153,0,0,10,162,37,31,37,29,141,72,0,0,1,37,208,163,4,0,4,40,153,0,0,10,162,37,31,38,29,141,72,0,0,1,37,208,116,5,0,4,40,153,0,0,10,162,37,31,39,29,141,72,0,0,1,37,208,70,4,0,4,40,153,0,0,10,162,128,244,0,0,4,31,15,141,55,0,0,27,37,22,24,141,72,0,0,1,37,22,30,158,162,37,23,24,141,72,0,0,1,37,22,30,158,37,23,23,158,162,37,24,24,141,72,0,0,1,37,22,30,158,37,23,24,158,162,37,25,24,141,72,0,0,1,37,22,30,158,37,23,25,158,162,37,26,24,141,72,0,0,1,37,22,30,158,37,23,26,158,162,37,27,24,141,72,0,0,1,37,22,30,158,37,23,27,158,162,37,28,24,141,72,0,0,1,37,22,30,158,37,23,29,158,162,37,29,24,141,72,0,0,1,37,22,30,158,37,23,30,158,162,37,30,24,141,72,0,0,1,37,22,29,158,37,23,30,158,162,37,31,9,24,141,72,0,0,1,37,22,27,158,37,23,30,158,162,37,31,10,24,141,72,0,0,1,37,22,26,158,37,23,30,158,162,37,31,11,24,141,72,0,0,1,37,22,25,158,37,23,30,158,162,37,31,12,24,141,72,0,0,1,37,22,24,158,37,23,30,158,162,37,31,13,24,141,72,0,0,1,37,22,23,158,37,23,30,158,162,37,31,14,24,141,72,0,0,1,37,23,30,158,162,128,245,0,0,4,42,58,2,40,20,0,0,10,2,21,40,105,2,0,6,42,30,2,123,250,0,0,4,42,34,2,3,125,250,0,0,4,42,30,2,123,251,0,0,4,42,34,2,3,125,251,0,0,4,42,30,2,123,252,0,0,4,42,34,2,3,125,252,0,0,4,42,30,2,123,253,0,0,4,42,34,2,3,125,253,0,0,4,42,30,2,123,254,0,0,4,42,34,2,3,125,254,0,0,4,42,0,19,48,2,0,216,0,0,0,47,0,0,17,32,200,0,0,0,115,22,0,0,10,10,6,114,87,15,0,112,111,119,0,0,10,38,6,114,95,15,0,112,111,119,0,0,10,38,6,2,40,98,2,0,6,111,118,0,0,10,38,6,114,111,15,0,112,111,119,0,0,10,38,6,2,40,100,2,0,6,111,118,0,0,10,38,6,114,135,15,0,112,111,119,0,0,10,38,2,40,102,2,0,6,45,14,6,114,159,15,0,112,111,119,0,0,10,38,43,13,6,2,40,102,2,0,6,111,118,0,0,10,38,6,114,169,15,0,112,111,119,0,0,10,38,6,2,40,104,2,0,6,111,191,0,0,10,38,2,40,106,2,0,6,45,14,6,114,201,15,0,112,111,119,0,0,10,38,43,30,6,114,233,15,0,112,111,119,0,0,10,38,6,2,40,106,2,0,6,111,25,0,0,10,111,119,0,0,10,38,6,114,255,15,0,112,111,119,0,0,10,38,6,111,25,0,0,10,42,62,2,22,50,9,2,126,249,0,0,4,254,4,42,22,42,30,30,128,249,0,0,4,42,138,2,40,140,6,0,6,29,111,126,0,0,10,44,18,2,40,140,6,0,6,29,111,127,0,0,10,165,71,0,0,1,42,22,42,78,2,40,140,6,0,6,29,3,140,71,0,0,1,111,129,0,0,10,42,138,2,40,140,6,0,6,30,111,126,0,0,10,44,18,2,40,140,6,0,6,30,111,127,0,0,10,165,98,0,0,2,42,22,42,78,2,40,140,6,0,6,30,3,140,98,0,0,2,111,129,0,0,10,42,146,2,40,140,6,0,6,31,9,111,126,0,0,10,44,19,2,40,140,6,0,6,31,9,111,127,0,0,10,116,99,0,0,2,42,20,42,62,2,40,140,6,0,6,31,9,3,111,129,0,0,10,42,0,19,48,3,0,80,0,0,0,128,0,0,17,2,40,140,6,0,6,25,111,126,0,0,10,44,64,2,40,140,6,0,6,25,111,127,0,0,10,10,6,117,102,0,0,2,44,7,6,165,102,0,0,2,42,6,117,72,0,0,1,44,28,208,102,0,0,2,40,192,0,0,10,6,111,25,0,0,10,23,40,193,0,0,10,165,102,0,0,2,42,24,42,78,2,40,140,6,0,6,25,3,140,102,0,0,2,111,129,0,0,10,42,19,48,3,0,80,0,0,0,128,0,0,17,2,40,140,6,0,6,28,111,126,0,0,10,44,64,2,40,140,6,0,6,28,111,127,0,0,10,10,6,117,95,0,0,2,44,7,6,165,95,0,0,2,42,6,117,72,0,0,1,44,28,208,95,0,0,2,40,192,0,0,10,6,111,25,0,0,10,23,40,193,0,0,10,165,95,0,0,2,42,26,42,78,2,40,140,6,0,6,28,3,140,95,0,0,2,111,129,0,0,10,42,30,2,40,221,6,0,6,42,27,48,4,0,77,0,0,0,129,0,0,17,2,44,8,2,111,194,0,0,10,45,6,126,7,1,0,4,42,2,111,194,0,0,10,141,72,0,0,1,10,22,11,2,111,195,0,0,10,12,43,15,8,111,196,0,0,10,13,6,7,37,23,88,11,9,158,8,111,59,0,0,10,45,233,222,10,8,44,6,8,111,60,0,0,10,220,6,42,0,0,0,1,16,0,0,2,0,38,0,27,65,0,10,0,0,0,0,19,48,3,0,42,0,0,0,1,0,0,17,126,8,1,0,4,2,32,255,255,3,0,106,95,105,40,4,0,0,43,10,6,22,47,2,21,42,126,9,1,0,4,6,148,23,89,126,0,1,0,4,93,42,0,0,19,48,3,0,125,0,0,0,0,0,0,0,21,128,255,0,0,4,32,161,3,0,0,128,0,1,0,4,126,0,1,0,4,23,89,128,1,1,0,4,25,128,2,1,0,4,31,90,128,3,1,0,4,31,17,128,4,1,0,4,31,18,128,5,1,0,4,30,128,6,1,0,4,22,141,72,0,0,1,128,7,1,0,4,32,227,10,0,0,141,72,0,0,1,37,208,143,4,0,4,40,153,0,0,10,128,8,1,0,4,32,227,10,0,0,141,72,0,0,1,37,208,167,5,0,4,40,153,0,0,10,128,9,1,0,4,42,38,2,3,20,40,131,2,0,6,42,0,19,48,3,0,19,0,0,0,130,0,0,17,3,4,22,40,134,2,0,6,10,6,142,45,2,20,42,6,22,154,42,38,2,3,20,40,133,2,0,6,42,38,3,4,23,40,134,2,0,6,42,0,27,48,7,0,201,0,0,0,131,0,0,17,115,198,0,0,10,10,2,3,4,40,39,3,0,6,11,7,57,173,0,0,0,7,111,50,3,0,6,111,199,0,0,10,12,56,128,0,0,0,18,2,40,200,0,0,10,13,7,111,48,3,0,6,9,26,154,9,27,154,9,28,154,9,29,154,9,40,138,2,0,6,9,40,137,2,0,6,40,14,3,0,6,19,4,17,4,44,79,17,4,111,77,6,0,6,17,4,111,73,6,0,6,9,32,0,4,0,0,115,50,1,0,6,19,5,17,5,25,17,4,111,81,6,0,6,111,54,1,0,6,17,4,111,92,6,0,6,116,81,0,0,2,19,6,17,6,44,11,17,5,31,10,17,6,111,54,1,0,6,6,17,5,111,201,0,0,10,18,2,40,202,0,0,10,58,116,255,255,255,222,14,18,2,254,22,72,0,0,27,111,60,0,0,10,220,6,111,203,0,0,10,42,0,0,0,1,16,0,0,2,0,33,0,147,180,0,14,0,0,0,0,114,2,44,3,3,45,2,22,42,2,111,60,1,0,6,3,111,60,1,0,6,89,40,155,0,0,10,105,42,130,2,44,3,3,45,6,32,255,255,255,127,42,2,111,60,1,0,6,3,111,60,1,0,6,89,40,155,0,0,10,105,42,0,0,19,48,5,0,84,0,0,0,0,0,0,0,2,22,154,2,26,154,40,135,2,0,6,2,28,154,2,24,154,40,135,2,0,6,126,4,1,0,4,90,126,5,1,0,4,91,40,139,0,0,10,2,23,154,2,27,154,40,135,2,0,6,2,29,154,2,25,154,40,135,2,0,6,126,4,1,0,4,90,126,5,1,0,4,91,40,139,0,0,10,40,139,0,0,10,42,19,48,5,0,84,0,0,0,0,0,0,0,2,22,154,2,26,154,40,136,2,0,6,2,28,154,2,24,154,40,136,2,0,6,126,4,1,0,4,90,126,5,1,0,4,91,40,140,0,0,10,2,23,154,2,27,154,40,136,2,0,6,2,29,154,2,25,154,40,136,2,0,6,126,4,1,0,4,90,126,5,1,0,4,91,40,140,0,0,10,40,140,0,0,10,42,30,2,123,10,1,0,4,42,34,2,3,125,10,1,0,4,42,30,2,123,11,1,0,4,42,34,2,3,125,11,1,0,4,42,30,2,123,12,1,0,4,42,34,2,3,125,12,1,0,4,42,30,2,123,13,1,0,4,42,34,2,3,125,13,1,0,4,42,19,48,7,0,96,2,0,0,132,0,0,17,4,32,0,4,0,0,46,22,114,7,16,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,115,70,3,0,6,10,31,30,11,24,12,26,13,14,5,57,32,2,0,0,14,5,29,111,126,0,0,10,44,34,14,5,29,111,127,0,0,10,44,24,6,14,5,29,111,127,0,0,10,111,25,0,0,10,40,181,0,0,10,111,81,3,0,6,14,5,30,111,126,0,0,10,44,84,14,5,30,111,127,0,0,10,44,74,208,98,0,0,2,40,192,0,0,10,14,5,30,111,127,0,0,10,111,25,0,0,10,40,204,0,0,10,44,44,208,98,0,0,2,40,192,0,0,10,14,5,30,111,127,0,0,10,111,25,0,0,10,23,40,193,0,0,10,165,98,0,0,2,19,4,6,17,4,111,80,3,0,6,14,5,31,9,111,126,0,0,10,44,50,14,5,31,9,111,127,0,0,10,116,99,0,0,2,19,5,6,17,5,111,67,3,0,6,17,5,111,66,3,0,6,17,5,111,69,3,0,6,17,5,111,68,3,0,6,111,79,3,0,6,14,5,27,111,126,0,0,10,44,29,14,5,27,111,127,0,0,10,44,19,14,5,27,111,127,0,0,10,111,25,0,0,10,40,137,0,0,10,11,14,5,28,111,126,0,0,10,44,101,14,5,28,111,127,0,0,10,44,91,14,5,28,111,127,0,0,10,19,6,17,6,117,95,0,0,2,45,9,17,6,117,72,0,0,1,44,10,17,6,165,72,0,0,1,13,43,53,208,95,0,0,2,40,192,0,0,10,17,6,111,25,0,0,10,40,204,0,0,10,44,29,208,95,0,0,2,40,192,0,0,10,17,6,111,25,0,0,10,23,40,193,0,0,10,165,95,0,0,2,13,14,5,25,111,126,0,0,10,44,101,14,5,25,111,127,0,0,10,44,91,14,5,25,111,127,0,0,10,19,7,17,7,117,102,0,0,2,45,9,17,7,117,72,0,0,1,44,10,17,7,165,72,0,0,1,12,43,53,208,102,0,0,2,40,192,0,0,10,17,7,111,25,0,0,10,40,204,0,0,10,44,29,208,102,0,0,2,40,192,0,0,10,17,7,111,25,0,0,10,23,40,193,0,0,10,165,102,0,0,2,12,14,5,26,111,126,0,0,10,44,27,14,5,26,111,127,0,0,10,116,63,0,0,1,19,8,17,8,44,8,6,17,8,111,82,3,0,6,14,5,31,10,111,126,0,0,10,44,36,14,5,31,10,111,127,0,0,10,44,25,6,14,5,31,10,111,127,0,0,10,111,25,0,0,10,40,181,0,0,10,111,83,3,0,6,6,3,8,5,14,4,7,9,40,152,2,0,6,42,54,2,3,4,5,14,4,20,40,150,2,0,6,42,0,0,19,48,6,0,159,0,0,0,133,0,0,17,5,14,4,50,15,2,3,4,5,14,4,15,6,111,77,3,0,6,43,13,2,3,4,14,4,5,15,6,111,77,3,0,6,2,111,72,3,0,6,23,14,6,111,58,3,0,6,10,22,11,14,4,5,254,2,6,22,154,142,105,6,142,105,254,4,46,9,6,40,154,2,0,6,10,23,11,5,6,22,154,142,105,91,12,14,4,6,142,105,91,13,8,9,47,5,8,19,4,43,3,9,19,4,17,4,23,49,42,2,111,72,3,0,6,17,4,17,4,14,6,90,111,58,3,0,6,19,5,7,44,9,17,5,40,154,2,0,6,19,5,17,5,14,5,40,153,2,0,6,42,6,14,5,40,153,2,0,6,42,0,19,48,4,0,98,0,0,0,134,0,0,17,2,22,154,142,105,24,3,90,88,2,142,105,24,3,90,88,115,36,6,0,6,10,6,111,32,6,0,6,3,89,23,89,11,22,12,43,53,2,8,154,13,9,142,105,19,4,22,19,5,43,25,9,17,5,144,23,51,12,6,17,5,3,88,7,23,111,42,6,0,6,17,5,23,88,19,5,17,5,17,4,50,225,8,23,88,12,7,23,89,11,8,2,142,105,50,197,6,42,0,0,19,48,4,0,94,0,0,0,135,0,0,17,2,22,154,142,105,141,73,0,0,27,10,22,11,43,15,6,7,2,142,105,141,90,0,0,1,162,7,23,88,11,7,2,22,154,142,105,50,233,22,12,43,44,2,142,105,8,89,23,89,13,22,19,4,43,18,6,17,4,154,9,2,8,154,17,4,144,156,17,4,23,88,19,4,17,4,2,22,154,142,105,50,229,8,23,88,12,8,2,142,105,50,206,6,42,30,2,123,17,1,0,4,42,34,2,3,125,17,1,0,4,42,30,2,123,18,1,0,4,42,34,2,3,125,18,1,0,4,42,30,2,123,19,1,0,4,42,34,2,3,125,19,1,0,4,42,30,2,123,20,1,0,4,42,34,2,3,125,20,1,0,4,42,30,2,123,21,1,0,4,42,34,2,3,125,21,1,0,4,42,182,2,40,20,0,0,10,2,3,40,157,2,0,6,2,14,4,40,159,2,0,6,2,4,40,161,2,0,6,2,5,40,163,2,0,6,2,5,4,88,40,165,2,0,6,42,0,0,0,19,48,3,0,33,0,0,0,1,0,0,17,2,123,22,1,0,4,3,18,0,111,205,0,0,10,38,6,23,88,10,2,123,22,1,0,4,3,6,111,206,0,0,10,42,0,0,0,27,48,2,0,118,0,0,0,136,0,0,17,21,10,115,207,0,0,10,11,2,123,22,1,0,4,111,208,0,0,10,12,43,69,8,111,209,0,0,10,13,18,3,40,210,0,0,10,6,49,29,18,3,40,210,0,0,10,10,7,111,211,0,0,10,7,18,3,40,212,0,0,10,111,213,0,0,10,43,23,18,3,40,210,0,0,10,6,51,13,7,18,3,40,212,0,0,10,111,213,0,0,10,8,111,59,0,0,10,45,179,222,10,8,44,6,8,111,60,0,0,10,220,7,111,214,0,0,10,42,0,0,1,16,0,0,2,0,20,0,81,101,0,10,0,0,0,0,118,2,123,22,1,0,4,3,111,215,0,0,10,45,2,22,42,2,123,22,1,0,4,3,111,216,0,0,10,42,74,2,115,217,0,0,10,125,22,1,0,4,2,40,20,0,0,10,42,30,2,123,24,1,0,4,42,34,2,3,125,24,1,0,4,42,30,2,123,25,1,0,4,42,34,2,3,125,25,1,0,4,42,30,2,123,26,1,0,4,42,34,2,3,125,26,1,0,4,42,30,2,123,27,1,0,4,42,34,2,3,125,27,1,0,4,42,30,2,123,28,1,0,4,42,34,2,3,125,28,1,0,4,42,30,2,123,29,1,0,4,42,34,2,3,125,29,1,0,4,42,30,2,123,30,1,0,4,42,34,2,3,125,30,1,0,4,42,30,2,123,31,1,0,4,42,34,2,3,125,31,1,0,4,42,162,3,45,3,5,44,20,4,45,4,14,4,44,13,3,44,3,4,44,7,5,44,6,14,4,45,2,20,42,2,3,4,5,14,4,115,189,2,0,6,42,146,2,123,23,1,0,4,2,111,171,2,0,6,2,111,175,2,0,6,2,111,173,2,0,6,2,111,177,2,0,6,115,189,2,0,6,42,202,2,40,20,0,0,10,2,3,125,23,1,0,4,2,4,40,172,2,0,6,2,14,4,40,174,2,0,6,2,5,40,176,2,0,6,2,14,5,40,178,2,0,6,2,40,192,2,0,6,42,186,2,45,2,3,42,3,45,2,2,42,2,123,23,1,0,4,2,111,171,2,0,6,2,111,175,2,0,6,3,111,173,2,0,6,3,111,177,2,0,6,115,189,2,0,6,42,0,0,0,19,48,5,0,204,0,0,0,137,0,0,17,2,40,171,2,0,6,10,2,40,175,2,0,6,11,2,40,173,2,0,6,12,2,40,177,2,0,6,13,3,22,49,62,5,45,8,2,40,173,2,0,6,43,6,2,40,171,2,0,6,37,111,61,1,0,6,105,3,89,19,4,17,4,22,47,3,22,19,4,111,60,1,0,6,17,4,107,115,59,1,0,6,19,5,5,44,5,17,5,10,43,3,17,5,12,4,22,49,84,5,45,8,2,40,177,2,0,6,43,6,2,40,175,2,0,6,37,111,61,1,0,6,105,4,88,19,6,17,6,2,123,23,1,0,4,111,32,6,0,6,50,15,2,123,23,1,0,4,111,32,6,0,6,23,89,19,6,111,60,1,0,6,17,6,107,115,59,1,0,6,19,7,5,44,5,17,7,11,43,3,17,7,13,2,40,192,2,0,6,2,123,23,1,0,4,6,7,8,9,115,189,2,0,6,42,19,48,3,0,25,1,0,0,0,0,0,0,2,40,171,2,0,6,45,56,2,34,0,0,0,0,2,40,173,2,0,6,111,61,1,0,6,115,59,1,0,6,40,172,2,0,6,2,34,0,0,0,0,2,40,177,2,0,6,111,61,1,0,6,115,59,1,0,6,40,176,2,0,6,43,80,2,40,173,2,0,6,45,72,2,2,123,23,1,0,4,111,31,6,0,6,23,89,107,2,40,171,2,0,6,111,61,1,0,6,115,59,1,0,6,40,174,2,0,6,2,2,123,23,1,0,4,111,31,6,0,6,23,89,107,2,40,171,2,0,6,111,61,1,0,6,115,59,1,0,6,40,178,2,0,6,2,2,40,171,2,0,6,111,60,1,0,6,2,40,175,2,0,6,111,60,1,0,6,40,218,0,0,10,105,40,180,2,0,6,2,2,40,173,2,0,6,111,60,1,0,6,2,40,177,2,0,6,111,60,1,0,6,40,178,0,0,10,105,40,182,2,0,6,2,2,40,171,2,0,6,111,61,1,0,6,2,40,173,2,0,6,111,61,1,0,6,40,218,0,0,10,105,40,184,2,0,6,2,2,40,175,2,0,6,111,61,1,0,6,2,40,177,2,0,6,111,61,1,0,6,40,178,0,0,10,105,40,186,2,0,6,42,58,2,3,40,178,2,0,6,2,40,192,2,0,6,42,30,2,123,33,1,0,4,42,34,2,3,125,33,1,0,4,42,30,2,123,34,1,0,4,42,34,2,3,125,34,1,0,4,42,30,2,123,35,1,0,4,42,34,2,3,125,35,1,0,4,42,30,2,123,36,1,0,4,42,34,2,3,125,36,1,0,4,42,30,2,123,37,1,0,4,42,34,2,3,125,37,1,0,4,42,190,2,40,20,0,0,10,2,3,40,195,2,0,6,2,4,40,197,2,0,6,2,5,40,199,2,0,6,2,14,4,40,201,2,0,6,2,126,32,1,0,4,40,203,2,0,6,42,58,2,40,196,2,0,6,2,40,194,2,0,6,89,42,54,2,2,40,202,2,0,6,40,207,2,0,6,42,98,3,126,32,1,0,4,46,14,2,40,198,2,0,6,3,25,93,25,90,254,1,42,22,42,110,2,2,40,200,2,0,6,31,30,91,25,90,2,40,198,2,0,6,25,91,88,40,203,2,0,6,42,134,2,40,202,2,0,6,140,72,0,0,1,114,75,16,0,112,2,40,200,2,0,6,140,72,0,0,1,40,75,0,0,10,42,30,21,128,32,1,0,4,42,0,0,0,19,48,5,0,115,0,0,0,138,0,0,17,114,79,16,0,112,40,152,0,0,10,128,57,1,0,4,114,139,16,0,112,40,152,0,0,10,128,58,1,0,4,31,16,141,5,0,0,2,128,59,1,0,4,126,59,1,0,4,22,126,13,0,0,4,162,32,132,3,0,0,106,115,40,0,0,6,10,126,59,1,0,4,23,6,162,24,11,43,26,126,59,1,0,4,7,126,59,1,0,4,7,23,89,154,6,40,60,0,0,6,162,7,23,88,11,7,126,59,1,0,4,142,105,50,220,42,0,19,48,5,0,52,1,0,0,139,0,0,17,2,142,105,24,90,115,22,0,0,10,10,23,11,2,7,37,23,88,11,148,12,115,149,2,0,6,13,20,19,4,56,232,0,0,0,8,32,132,3,0,0,89,69,3,0,0,0,50,0,0,0,61,0,0,0,109,0,0,0,8,32,145,3,0,0,46,84,8,32,154,3,0,0,89,69,7,0,0,0,121,0,0,0,121,0,0,0,13,0,0,0,104,0,0,0,98,0,0,0,72,0,0,0,110,0,0,0,43,121,2,7,6,40,215,2,0,6,11,43,123,8,2,17,4,37,45,14,38,126,158,1,0,4,40,213,2,0,6,37,19,4,7,6,40,217,2,0,6,11,43,92,6,2,7,37,23,88,11,148,209,111,23,0,0,10,38,43,75,2,7,6,40,218,2,0,6,11,43,64,2,7,37,23,88,11,148,40,71,6,0,6,111,66,6,0,6,40,213,2,0,6,19,4,43,38,7,24,88,11,43,32,7,23,88,11,43,26,2,7,9,40,214,2,0,6,11,43,15,20,42,7,23,89,11,2,7,6,40,215,2,0,6,11,7,22,47,2,20,42,7,2,142,105,47,10,2,7,37,23,88,11,148,12,43,2,20,42,7,2,22,148,63,15,255,255,255,6,111,120,0,0,10,45,2,20,42,20,6,111,25,0,0,10,20,3,115,94,6,0,6,37,9,111,93,6,0,6,42,27,48,1,0,20,0,0,0,140,0,0,17,20,10,2,40,146,0,0,10,10,222,5,38,20,11,222,2,6,42,7,42,1,16,0,0,0,0,2,0,9,11,0,5,23,0,0,1,19,48,4,0,6,1,0,0,141,0,0,17,3,24,88,2,22,148,49,2,21,42,24,141,72,0,0,1,10,22,13,43,15,6,9,2,3,148,158,9,23,88,13,3,23,88,16,1,9,24,50,237,6,24,40,219,2,0,6,11,7,45,2,21,42,4,7,40,182,0,0,10,111,142,2,0,6,115,115,0,0,10,12,2,3,8,40,215,2,0,6,16,1,4,8,111,25,0,0,10,111,144,2,0,6,2,3,148,19,4,17,4,32,154,3,0,0,59,138,0,0,0,17,4,32,155,3,0,0,64,138,0,0,0,3,23,88,16,1,2,22,148,3,89,141,72,0,0,1,19,5,22,19,6,22,19,7,43,61,2,3,37,23,88,16,1,148,19,8,17,8,32,132,3,0,0,47,14,17,5,17,6,37,23,88,19,6,17,8,158,43,28,17,8,32,154,3,0,0,51,17,4,23,111,148,2,0,6,3,23,88,16,1,23,19,7,43,2,21,42,3,2,22,148,47,4,17,7,44,185,4,17,6,141,72,0,0,1,111,146,2,0,6,17,5,4,111,145,2,0,6,17,6,40,219,0,0,10,43,12,4,23,111,148,2,0,6,3,23,88,16,1,3,42,0,0,19,48,4,0,213,0,0,0,142,0,0,17,2,22,148,3,89,23,98,141,72,0,0,1,10,2,22,148,3,89,23,98,141,72,0,0,1,11,22,12,22,13,56,155,0,0,0,2,3,37,23,88,16,1,148,19,4,17,4,32,132,3,0,0,47,24,6,8,17,4,31,30,91,158,6,8,23,88,17,4,31,30,93,158,8,24,88,12,43,112,17,4,32,134,3,0,0,48,22,17,4,32,132,3,0,0,46,44,17,4,32,133,3,0,0,89,23,54,47,43,81,17,4,32,145,3,0,0,46,45,17,4,32,154,3,0,0,89,24,54,25,17,4,32,160,3,0,0,46,16,43,50,6,8,37,23,88,12,32,132,3,0,0,158,43,36,3,23,89,16,1,23,13,43,27,6,8,32,145,3,0,0,158,2,3,37,23,88,16,1,148,19,4,7,8,17,4,158,8,23,88,12,3,2,22,148,47,6,9,57,89,255,255,255,6,7,8,4,40,216,2,0,6,3,42,0,0,0,19,48,3,0,170,2,0,0,143,0,0,17,22,10,22,11,22,12,56,151,2,0,0,2,8,148,13,18,4,254,21,80,0,0,27,6,69,6,0,0,0,5,0,0,0,133,0,0,0,7,1,0,0,148,1,0,0,222,1,0,0,17,2,0,0,56,77,2,0,0,9,31,26,47,17,18,4,31,65,9,88,209,40,220,0,0,10,56,55,2,0,0,9,31,26,89,69,4,0,0,0,21,0,0,0,35,0,0,0,42,0,0,0,49,0,0,0,9,32,132,3,0,0,46,66,9,32,145,3,0,0,46,42,56,9,2,0,0,18,4,31,32,40,220,0,0,10,56,251,1,0,0,23,10,56,244,1,0,0,24,10,56,237,1,0,0,6,11,27,10,56,228,1,0,0,5,3,8,148,209,111,23,0,0,10,38,56,212,1,0,0,22,10,56,205,1,0,0,9,31,26,47,17,18,4,31,97,9,88,209,40,220,0,0,10,56,183,1,0,0,9,31,26,89,69,4,0,0,0,21,0,0,0,35,0,0,0,44,0,0,0,51,0,0,0,9,32,132,3,0,0,46,68,9,32,145,3,0,0,46,44,56,137,1,0,0,18,4,31,32,40,220,0,0,10,56,123,1,0,0,6,11,26,10,56,114,1,0,0,24,10,56,107,1,0,0,6,11,27,10,56,98,1,0,0,5,3,8,148,209,111,23,0,0,10,38,56,82,1,0,0,22,10,56,75,1,0,0,9,31,25,47,19,18,4,126,58,1,0,4,9,147,40,220,0,0,10,56,51,1,0,0,9,31,25,89,69,5,0,0,0,21,0,0,0,28,0,0,0,42,0,0,0,49,0,0,0,56,0,0,0,9,32,132,3,0,0,46,73,9,32,145,3,0,0,46,49,56,1,1,0,0,25,10,56,250,0,0,0,18,4,31,32,40,220,0,0,10,56,236,0,0,0,23,10,56,229,0,0,0,22,10,56,222,0,0,0,6,11,27,10,56,213,0,0,0,5,3,8,148,209,111,23,0,0,10,38,56,197,0,0,0,22,10,56,190,0,0,0,9,31,29,47,19,18,4,126,57,1,0,4,9,147,40,220,0,0,10,56,166,0,0,0,9,31,29,46,21,9,32,132,3,0,0,46,33,9,32,145,3,0,0,46,12,56,140,0,0,0,22,10,56,133,0,0,0,5,3,8,148,209,111,23,0,0,10,38,43,120,22,10,43,116,7,10,9,31,26,47,14,18,4,31,65,9,88,209,40,220,0,0,10,43,95,9,31,26,46,10,9,32,132,3,0,0,46,13,43,80,18,4,31,32,40,220,0,0,10,43,69,22,10,43,65,7,10,9,31,29,47,16,18,4,126,57,1,0,4,9,147,40,220,0,0,10,43,42,9,31,29,46,18,9,32,132,3,0,0,46,27,9,32,145,3,0,0,46,6,43,19,22,10,43,15,5,3,8,148,209,111,23,0,0,10,38,43,2,22,10,18,4,40,221,0,0,10,44,14,5,18,4,40,222,0,0,10,111,23,0,0,10,38,8,23,88,12,8,4,63,98,253,255,255,42,0,0,27,48,5,0,171,1,0,0,144,0,0,17,22,10,22,106,11,22,12,115,223,0,0,10,13,2,32,133,3,0,0,46,16,2,32,156,3,0,0,59,84,1,0,0,56,91,1,0,0,28,141,72,0,0,1,19,5,3,5,37,23,88,16,3,148,19,6,43,121,17,5,6,37,23,88,10,17,6,158,32,132,3,0,0,106,7,90,17,6,106,88,11,3,5,37,23,88,16,3,148,19,6,17,6,32,132,3,0,0,89,24,54,20,17,6,32,154,3,0,0,89,24,54,9,17,6,32,160,3,0,0,51,9,5,23,89,16,3,23,12,43,48,6,27,93,45,43,6,22,49,39,22,19,7,43,24,9,7,30,27,17,7,89,90,31,63,95,99,210,111,224,0,0,10,17,7,23,88,19,7,17,7,28,50,227,22,106,11,22,10,5,3,22,148,47,6,8,57,123,255,255,255,5,3,22,148,51,19,17,6,32,132,3,0,0,47,10,17,5,6,37,23,88,10,17,6,158,22,19,8,43,18,9,17,5,17,8,148,210,111,224,0,0,10,17,8,23,88,19,8,17,8,6,50,233,56,136,0,0,0,3,5,37,23,88,16,3,148,19,9,17,9,32,132,3,0,0,47,19,6,23,88,10,32,132,3,0,0,106,7,90,17,9,106,88,11,43,38,17,9,32,132,3,0,0,89,24,54,20,17,9,32,154,3,0,0,89,24,54,9,17,9,32,160,3,0,0,51,7,5,23,89,16,3,23,12,6,27,93,45,43,6,22,49,39,22,19,10,43,24,9,7,30,27,17,10,89,90,31,63,95,99,210,111,224,0,0,10,17,10,23,88,19,10,17,10,28,50,227,22,106,11,22,10,5,3,22,148,47,6,8,57,120,255,255,255,9,111,225,0,0,10,19,4,14,4,4,17,4,22,17,4,142,105,111,147,0,0,10,111,119,0,0,10,38,222,10,9,44,6,9,111,60,0,0,10,220,5,42,0,65,28,0,0,2,0,0,0,13,0,0,0,146,1,0,0,159,1,0,0,10,0,0,0,0,0,0,0,19,48,4,0,149,0,0,0,145,0,0,17,22,10,22,11,31,15,141,72,0,0,1,12,43,121,2,3,37,23,88,16,1,148,13,3,2,22,148,51,2,23,11,9,32,132,3,0,0,47,10,8,6,9,158,6,23,88,10,43,35,9,32,132,3,0,0,89,23,54,18,9,32,154,3,0,0,89,24,54,8,9,32,160,3,0,0,51,7,3,23,89,16,1,23,11,6,31,15,93,44,10,9,32,134,3,0,0,254,1,43,1,23,7,96,44,30,6,22,49,26,8,6,40,219,2,0,6,19,4,17,4,45,2,21,42,4,17,4,111,119,0,0,10,38,22,10,3,2,22,148,47,6,7,57,123,255,255,255,3,42,0,0,0,19,48,4,0,78,0,0,0,146,0,0,17,126,12,0,0,4,10,22,12,43,36,6,126,59,1,0,4,3,8,89,23,89,154,2,8,148,106,115,40,0,0,6,40,60,0,0,6,40,58,0,0,6,10,8,23,88,12,8,3,50,216,6,111,25,0,0,10,11,7,22,111,27,0,0,10,31,49,46,2,20,42,7,23,111,226,0,0,10,42,30,2,123,62,1,0,4,42,34,2,3,125,62,1,0,4,42,30,2,123,63,1,0,4,42,34,2,3,125,63,1,0,4,42,30,2,123,64,1,0,4,42,34,2,3,125,64,1,0,4,42,30,2,123,65,1,0,4,42,34,2,3,125,65,1,0,4,42,50,2,40,220,2,0,6,111,164,2,0,6,42,50,2,40,220,2,0,6,111,158,2,0,6,42,210,2,40,20,0,0,10,2,3,40,221,2,0,6,2,4,40,225,2,0,6,2,3,111,156,2,0,6,40,227,2,0,6,2,2,40,226,2,0,6,24,88,141,89,0,0,2,40,223,2,0,6,42,0,0,0,19,48,4,0,65,0,0,0,2,0,0,17,2,2,40,222,2,0,6,22,154,40,232,2,0,6,2,2,40,222,2,0,6,2,40,226,2,0,6,23,88,154,40,232,2,0,6,126,1,1,0,4,10,6,11,2,40,233,2,0,6,10,6,22,49,4,6,7,50,239,2,40,222,2,0,6,42,86,3,44,17,3,116,90,0,0,2,2,40,220,2,0,6,111,2,3,0,6,42,0,19,48,4,0,85,0,0,0,147,0,0,17,2,40,234,2,0,6,10,6,45,2,22,42,23,11,43,56,2,40,222,2,0,6,7,154,111,244,2,0,6,12,22,13,43,28,8,9,154,44,19,8,9,154,111,206,2,0,6,45,9,2,7,9,8,40,239,2,0,6,9,23,88,13,9,8,142,105,50,222,7,23,88,11,7,2,40,226,2,0,6,23,88,50,189,6,42,82,2,40,235,2,0,6,2,40,237,2,0,6,2,40,236,2,0,6,88,42,0,0,19,48,3,0,184,0,0,0,148,0,0,17,2,40,222,2,0,6,22,154,44,17,2,40,222,2,0,6,2,40,226,2,0,6,23,88,154,45,1,42,2,40,222,2,0,6,22,154,111,244,2,0,6,10,2,40,222,2,0,6,2,40,226,2,0,6,23,88,154,111,244,2,0,6,11,22,12,43,110,6,8,154,44,101,7,8,154,44,96,6,8,154,111,202,2,0,6,7,8,154,111,202,2,0,6,51,78,23,13,43,65,2,40,222,2,0,6,9,154,111,244,2,0,6,8,154,19,4,17,4,44,40,17,4,6,8,154,111,202,2,0,6,111,203,2,0,6,17,4,111,206,2,0,6,45,16,2,40,222,2,0,6,9,154,111,244,2,0,6,8,20,162,9,23,88,13,9,2,40,226,2,0,6,49,182,8,23,88,12,8,6,142,105,50,140,42,19,48,3,0,150,0,0,0,149,0,0,17,2,40,222,2,0,6,2,40,226,2,0,6,23,88,154,45,2,22,42,22,10,2,40,222,2,0,6,2,40,226,2,0,6,23,88,154,111,244,2,0,6,11,22,12,43,96,7,8,154,44,87,7,8,154,111,202,2,0,6,13,22,19,4,2,40,226,2,0,6,23,88,19,5,43,53,2,40,222,2,0,6,17,5,154,111,244,2,0,6,8,154,19,6,17,6,44,25,9,17,4,17,6,40,238,2,0,6,19,4,17,6,111,206,2,0,6,45,4,6,23,88,10,17,5,23,89,19,5,17,5,22,49,5,17,4,24,50,193,8,23,88,12,8,7,142,105,50,154,6,42,0,0,19,48,3,0,136,0,0,0,149,0,0,17,2,40,222,2,0,6,22,154,45,2,22,42,22,10,2,40,222,2,0,6,22,154,111,244,2,0,6,11,22,12,43,96,7,8,154,44,87,7,8,154,111,202,2,0,6,13,22,19,4,23,19,5,43,53,2,40,222,2,0,6,17,5,154,111,244,2,0,6,8,154,19,6,17,6,44,25,9,17,4,17,6,40,238,2,0,6,19,4,17,6,111,206,2,0,6,45,4,6,23,88,10,17,5,23,88,19,5,17,5,2,40,226,2,0,6,23,88,47,5,17,4,24,50,186,8,23,88,12,8,7,142,105,50,154,6,42,166,4,45,2,3,42,4,111,206,2,0,6,45,26,4,2,111,207,2,0,6,44,12,4,2,111,203,2,0,6,22,16,1,43,5,3,23,88,16,1,3,42,0,0,19,48,5,0,236,0,0,0,150,0,0,17,5,4,154,10,2,40,222,2,0,6,3,23,89,154,111,244,2,0,6,11,7,12,2,40,222,2,0,6,3,23,88,154,44,16,2,40,222,2,0,6,3,23,88,154,111,244,2,0,6,12,31,14,141,86,0,0,2,13,9,24,7,4,154,162,9,25,8,4,154,162,4,22,49,24,9,22,5,4,23,89,154,162,9,26,7,4,23,89,154,162,9,27,8,4,23,89,154,162,4,23,49,26,9,30,5,4,24,89,154,162,9,31,10,7,4,24,89,154,162,9,31,11,8,4,24,89,154,162,4,5,142,105,23,89,47,24,9,23,5,4,23,88,154,162,9,28,7,4,23,88,154,162,9,29,8,4,23,88,154,162,4,5,142,105,24,89,47,27,9,31,9,5,4,24,88,154,162,9,31,12,7,4,24,88,154,162,9,31,13,8,4,24,88,154,162,9,19,4,22,19,5,43,24,17,4,17,5,154,19,6,6,17,6,40,240,2,0,6,44,1,42,17,5,23,88,19,5,17,5,17,4,142,105,50,224,42,174,3,45,2,22,42,3,111,206,2,0,6,44,28,3,111,198,2,0,6,2,111,198,2,0,6,51,14,2,3,111,202,2,0,6,111,203,2,0,6,23,42,22,42,19,48,7,0,241,0,0,0,151,0,0,17,115,115,0,0,10,10,2,40,222,2,0,6,22,154,11,7,45,16,2,40,222,2,0,6,2,40,226,2,0,6,23,88,154,11,22,12,56,179,0,0,0,6,40,227,0,0,10,114,191,16,0,112,23,141,13,0,0,1,37,22,8,140,72,0,0,1,162,111,107,0,0,10,38,22,13,43,116,2,40,222,2,0,6,9,154,45,14,6,114,211,16,0,112,111,119,0,0,10,38,43,88,2,40,222,2,0,6,9,154,111,244,2,0,6,8,154,19,4,17,4,45,14,6,114,211,16,0,112,111,119,0,0,10,38,43,53,6,40,227,0,0,10,114,229,16,0,112,24,141,13,0,0,1,37,22,17,4,111,202,2,0,6,140,72,0,0,1,162,37,23,17,4,111,200,2,0,6,140,72,0,0,1,162,111,107,0,0,10,38,9,23,88,13,9,2,40,226,2,0,6,24,88,50,129,6,114,85,10,0,112,111,119,0,0,10,38,8,23,88,12,8,7,111,244,2,0,6,142,105,63,63,255,255,255,6,111,25,0,0,10,42,30,2,123,67,1,0,4,42,34,2,3,125,67,1,0,4,42,30,2,123,68,1,0,4,42,34,2,3,125,68,1,0,4,42,222,2,40,20,0,0,10,2,3,40,188,2,0,6,40,243,2,0,6,2,2,40,242,2,0,6,111,185,2,0,6,2,40,242,2,0,6,111,183,2,0,6,89,23,88,141,86,0,0,2,40,245,2,0,6,42,58,3,2,40,242,2,0,6,111,183,2,0,6,89,42,58,2,40,242,2,0,6,111,183,2,0,6,3,88,42,62,2,40,244,2,0,6,2,3,40,251,2,0,6,154,42,0,0,0,19,48,2,0,90,0,0,0,152,0,0,17,2,3,40,249,2,0,6,10,6,44,2,6,42,23,11,43,67,2,3,40,251,2,0,6,7,89,12,8,22,50,14,2,40,244,2,0,6,8,154,10,6,44,2,6,42,2,3,40,251,2,0,6,7,88,12,8,2,40,244,2,0,6,142,105,47,14,2,40,244,2,0,6,8,154,10,6,44,2,6,42,7,23,88,11,7,27,50,185,20,42,66,2,40,244,2,0,6,2,3,40,247,2,0,6,4,162,42,0,19,48,9,0,149,0,0,0,153,0,0,17,115,115,0,0,10,10,22,11,2,40,244,2,0,6,12,22,13,43,117,8,9,154,19,4,17,4,45,38,6,40,227,0,0,10,114,255,16,0,112,23,141,13,0,0,1,37,22,7,37,23,88,11,140,72,0,0,1,162,111,107,0,0,10,38,43,66,6,40,227,0,0,10,114,31,17,0,112,25,141,13,0,0,1,37,22,7,37,23,88,11,140,72,0,0,1,162,37,23,17,4,111,202,2,0,6,140,72,0,0,1,162,37,24,17,4,111,200,2,0,6,140,72,0,0,1,162,111,107,0,0,10,38,9,23,88,13,9,8,142,105,50,133,6,111,25,0,0,10,42,30,2,123,69,1,0,4,42,34,2,3,125,69,1,0,4,42,62,2,3,40,246,2,0,6,2,4,40,255,2,0,6,42,0,0,19,48,2,0,35,0,0,0,154,0,0,17,2,40,244,2,0,6,10,22,11,43,17,6,7,154,12,8,44,6,8,111,208,2,0,6,7,23,88,11,7,6,142,105,50,233,42,0,19,48,3,0,76,1,0,0,155,0,0,17,2,40,244,2,0,6,10,2,40,1,3,0,6,2,6,3,40,6,3,0,6,2,40,254,2,0,6,45,13,2,40,242,2,0,6,111,173,2,0,6,43,11,2,40,242,2,0,6,111,171,2,0,6,11,2,40,254,2,0,6,45,13,2,40,242,2,0,6,111,177,2,0,6,43,11,2,40,242,2,0,6,111,175,2,0,6,12,2,7,111,61,1,0,6,105,40,251,2,0,6,2,8,111,61,1,0,6,105,40,251,2,0,6,13,21,19,4,23,19,5,22,19,6,19,7,56,193,0,0,0,6,17,7,154,19,8,17,8,57,174,0,0,0,17,8,111,202,2,0,6,17,4,89,19,9,17,9,45,11,17,6,23,88,19,6,56,147,0,0,0,17,9,23,51,25,17,5,17,6,40,139,0,0,10,19,5,23,19,6,17,8,111,202,2,0,6,19,4,43,117,17,9,22,50,21,17,8,111,202,2,0,6,3,111,164,2,0,6,47,6,17,9,17,7,49,7,6,17,7,20,162,43,84,17,5,24,49,11,17,5,24,89,17,9,90,19,10,43,4,17,9,19,10,17,10,17,7,254,2,19,11,23,19,12,43,18,6,17,7,17,12,89,154,20,254,3,19,11,17,12,23,88,19,12,17,12,17,10,48,4,17,11,44,228,17,11,44,7,6,17,7,20,162,43,12,17,8,111,202,2,0,6,19,4,23,19,6,17,7,23,88,19,7,17,7,9,63,55,255,255,255,42,19,48,3,0,92,0,0,0,156,0,0,17,2,40,5,3,0,6,10,6,45,2,20,42,2,6,40,4,3,0,6,6,111,164,2,0,6,141,72,0,0,1,11,2,40,244,2,0,6,12,22,13,43,42,8,9,154,19,4,17,4,44,29,17,4,111,202,2,0,6,19,5,17,5,7,142,105,47,13,7,17,5,143,72,0,0,1,37,74,23,88,84,9,23,88,13,9,8,142,105,50,208,7,42,19,48,3,0,235,0,0,0,157,0,0,17,2,40,254,2,0,6,45,13,2,40,242,2,0,6,111,173,2,0,6,43,11,2,40,242,2,0,6,111,171,2,0,6,10,2,40,254,2,0,6,45,13,2,40,242,2,0,6,111,177,2,0,6,43,11,2,40,242,2,0,6,111,175,2,0,6,11,2,6,111,61,1,0,6,105,40,251,2,0,6,2,7,111,61,1,0,6,105,40,251,2,0,6,12,2,40,244,2,0,6,13,21,19,4,23,19,5,22,19,6,19,7,43,116,9,17,7,154,19,8,17,8,44,100,17,8,111,208,2,0,6,17,8,111,202,2,0,6,17,4,89,19,9,17,9,45,8,17,6,23,88,19,6,43,69,17,9,23,51,25,17,5,17,6,40,139,0,0,10,19,5,23,19,6,17,8,111,202,2,0,6,19,4,43,39,17,8,111,202,2,0,6,3,111,164,2,0,6,49,12,2,40,244,2,0,6,17,7,20,162,43,12,17,8,111,202,2,0,6,19,4,23,19,6,17,7,23,88,19,7,17,7,8,50,135,42,0,19,48,5,0,60,1,0,0,158,0,0,17,2,40,244,2,0,6,10,115,170,2,0,6,11,115,170,2,0,6,12,115,170,2,0,6,13,115,170,2,0,6,19,4,6,19,10,22,19,11,56,133,0,0,0,17,10,17,11,154,19,12,17,12,44,116,17,12,111,208,2,0,6,17,12,111,200,2,0,6,31,30,93,19,13,17,12,111,202,2,0,6,19,14,2,40,254,2,0,6,45,6,17,14,24,88,19,14,17,14,25,93,19,15,17,15,69,3,0,0,0,2,0,0,0,16,0,0,0,39,0,0,0,43,47,8,17,13,25,90,23,88,111,167,2,0,6,43,33,17,4,17,13,25,91,111,167,2,0,6,9,17,13,25,93,111,167,2,0,6,43,10,7,17,13,23,88,111,167,2,0,6,17,11,23,88,19,11,17,11,17,10,142,105,63,112,255,255,255,7,111,168,2,0,6,19,5,8,111,168,2,0,6,19,6,9,111,168,2,0,6,19,7,17,4,111,168,2,0,6,19,8,17,5,142,44,54,17,6,142,44,49,17,7,142,44,44,17,8,142,44,39,17,5,22,148,23,50,32,17,6,22,148,17,7,22,148,88,126,2,1,0,4,50,16,17,6,22,148,17,7,22,148,88,126,3,1,0,4,49,2,20,42,17,5,22,148,17,6,22,148,17,7,22,148,17,8,22,148,115,166,2,0,6,19,9,2,6,17,9,40,6,3,0,6,17,9,42,19,48,3,0,161,0,0,0,159,0,0,17,22,10,56,144,0,0,0,3,6,154,11,7,57,130,0,0,0,7,111,200,2,0,6,31,30,93,12,7,111,202,2,0,6,13,9,4,111,164,2,0,6,50,6,3,6,20,162,43,98,2,40,254,2,0,6,45,4,9,24,88,13,9,25,93,19,4,17,4,69,3,0,0,0,0,0,0,0,19,0,0,0,47,0,0,0,8,25,90,23,88,4,111,160,2,0,6,46,49,3,6,20,162,43,43,8,25,93,4,111,162,2,0,6,51,11,8,25,91,4,111,158,2,0,6,46,21,3,6,20,162,43,15,8,23,88,4,111,156,2,0,6,46,4,3,6,20,162,6,23,88,10,6,3,142,105,63,103,255,255,255,42,0,0,0,19,48,4,0,36,0,0,0,160,0,0,17,114,71,17,0,112,2,40,254,2,0,6,10,18,0,40,228,0,0,10,114,91,17,0,112,2,40,253,2,0,6,40,229,0,0,10,42,19,48,4,0,163,0,0,0,161,0,0,17,126,8,1,0,4,142,105,141,81,0,0,27,128,70,1,0,4,22,10,43,21,126,70,1,0,4,6,126,6,1,0,4,141,80,0,0,1,162,6,23,88,10,6,126,70,1,0,4,142,105,50,225,22,11,43,96,126,8,1,0,4,7,148,12,8,23,95,13,22,19,4,43,66,34,0,0,0,0,19,5,43,14,17,5,34,0,0,128,63,88,19,5,8,23,99,12,8,23,95,9,46,236,8,23,95,13,126,70,1,0,4,7,154,126,6,1,0,4,17,4,89,23,89,17,5,126,4,1,0,4,107,91,160,17,4,23,88,19,4,17,4,126,6,1,0,4,50,181,7,23,88,11,7,126,8,1,0,4,142,105,50,150,42,0,19,48,2,0,29,0,0,0,1,0,0,17,2,40,10,3,0,6,40,11,3,0,6,10,6,126,255,0,0,4,46,2,6,42,2,40,13,3,0,6,42,0,0,0,19,48,3,0,102,0,0,0,162,0,0,17,2,40,221,6,0,6,107,10,126,6,1,0,4,141,72,0,0,1,11,22,12,22,13,22,19,4,43,63,6,24,126,4,1,0,4,90,107,91,17,4,107,6,90,126,4,1,0,4,107,91,88,19,5,9,2,8,148,88,107,17,5,53,10,9,2,8,148,88,13,8,23,88,12,7,8,143,72,0,0,1,37,74,23,88,84,17,4,23,88,19,4,17,4,126,4,1,0,4,50,184,7,42,0,0,19,48,2,0,29,0,0,0,1,0,0,17,2,40,12,3,0,6,10,6,106,40,128,2,0,6,126,255,0,0,4,46,2,6,42,126,255,0,0,4,42,0,0,0,19,48,3,0,55,0,0,0,163,0,0,17,22,106,10,22,106,11,43,37,22,12,43,21,6,23,98,7,24,106,94,44,4,22,106,43,2,23,106,96,10,8,23,88,12,8,2,7,138,148,50,228,7,23,106,88,11,7,2,142,105,106,55,212,6,105,42,0,19,48,4,0,169,0,0,0,164,0,0,17,2,40,221,6,0,6,10,126,6,1,0,4,141,80,0,0,1,11,6,23,49,30,22,19,4,43,18,7,17,4,2,17,4,148,107,6,107,91,160,17,4,23,88,19,4,17,4,7,142,105,50,231,34,255,255,127,127,12,126,255,0,0,4,13,22,19,5,43,87,34,0,0,0,0,19,6,126,70,1,0,4,17,5,154,19,7,22,19,8,43,33,17,7,17,8,152,7,17,8,152,89,19,9,17,6,17,9,17,9,90,88,19,6,17,6,8,47,15,17,8,23,88,19,8,17,8,126,6,1,0,4,50,214,17,6,8,52,12,17,6,12,126,8,1,0,4,17,5,148,13,17,5,23,88,19,5,17,5,126,70,1,0,4,142,105,50,158,9,42,0,0,0,19,48,8,0,191,1,0,0,165,0,0,17,2,3,4,5,14,4,40,187,2,0,6,10,6,45,2,20,42,20,11,20,12,20,13,22,19,6,43,121,3,44,14,2,6,3,23,14,5,14,6,40,19,3,0,6,11,5,44,14,2,6,5,22,14,5,14,6,40,19,3,0,6,12,7,8,40,15,3,0,6,13,9,45,2,20,42,17,6,45,55,9,111,224,2,0,6,44,47,9,111,224,2,0,6,111,183,2,0,6,6,111,183,2,0,6,50,19,9,111,224,2,0,6,111,185,2,0,6,6,111,185,2,0,6,49,9,9,111,224,2,0,6,10,43,9,9,6,111,225,2,0,6,43,11,17,6,23,88,19,6,17,6,24,50,130,9,111,226,2,0,6,23,88,19,4,9,111,222,2,0,6,22,7,162,9,111,222,2,0,6,17,4,8,162,7,20,254,3,19,5,23,19,7,56,234,0,0,0,17,5,45,7,17,4,17,7,89,43,2,17,7,19,8,9,111,222,2,0,6,17,8,154,58,199,0,0,0,17,8,44,6,17,8,17,4,51,15,6,17,8,22,254,1,115,0,3,0,6,19,9,43,8,6,115,246,2,0,6,19,9,9,111,222,2,0,6,17,8,17,9,162,21,19,10,17,10,19,11,6,111,183,2,0,6,19,12,43,125,9,17,8,17,12,17,5,40,25,3,0,6,19,10,17,10,22,50,10,17,10,6,111,181,2,0,6,49,9,17,11,21,46,85,17,11,19,10,2,6,111,179,2,0,6,6,111,181,2,0,6,17,5,17,10,17,12,14,5,14,6,40,26,3,0,6,19,13,17,13,44,47,17,9,17,12,17,13,111,252,2,0,6,17,10,19,11,14,5,17,13,111,205,2,0,6,40,140,0,0,10,16,5,14,6,17,13,111,205,2,0,6,40,139,0,0,10,16,6,17,12,23,88,19,12,17,12,6,111,185,2,0,6,62,118,255,255,255,17,7,23,88,19,7,17,7,17,4,62,13,255,255,255,9,40,21,3,0,6,42,0,19,48,2,0,47,0,0,0,166,0,0,17,2,45,5,3,45,2,20,42,2,3,40,18,3,0,6,10,6,45,2,20,42,2,40,16,3,0,6,3,40,16,3,0,6,40,190,2,0,6,11,6,7,115,230,2,0,6,42,0,19,48,4,0,193,0,0,0,167,0,0,17,2,45,2,20,42,2,111,3,3,0,6,10,6,45,2,20,42,6,40,17,3,0,6,11,22,12,6,19,5,22,19,6,43,25,17,5,17,6,148,19,7,8,7,17,7,89,88,12,17,7,22,48,14,17,6,23,88,19,6,17,6,17,5,142,105,50,223,2,111,244,2,0,6,13,22,19,8,43,10,8,23,89,12,17,8,23,88,19,8,8,22,49,6,9,17,8,154,44,236,22,19,4,6,142,105,23,89,19,9,43,24,17,4,7,6,17,9,148,89,88,19,4,6,17,9,148,22,48,11,17,9,23,89,19,9,17,9,22,47,227,9,142,105,23,89,19,10,43,12,17,4,23,89,19,4,17,10,23,89,19,10,17,4,22,49,6,9,17,10,154,44,233,2,111,242,2,0,6,8,17,4,2,111,254,2,0,6,111,191,2,0,6,42,0,0,0,19,48,3,0,30,0,0,0,2,0,0,17,21,10,2,142,105,23,89,11,43,14,6,2,7,148,40,139,0,0,10,10,7,23,89,11,7,22,47,238,6,42,0,0,19,48,2,0,86,0,0,0,168,0,0,17,2,44,10,2,111,5,3,0,6,37,10,45,12,3,44,7,3,111,5,3,0,6,42,20,42,3,44,10,3,111,5,3,0,6,37,11,45,2,6,42,6,111,156,2,0,6,7,111,156,2,0,6,46,30,6,111,158,2,0,6,7,111,158,2,0,6,46,16,6,111,164,2,0,6,7,111,164,2,0,6,46,2,20,42,6,42,0,0,19,48,8,0,133,0,0,0,169,0,0,17,3,5,115,0,3,0,6,10,22,11,43,115,7,44,3,21,43,1,23,12,4,111,60,1,0,6,105,13,4,111,61,1,0,6,105,19,4,43,64,2,22,2,111,31,6,0,6,5,9,17,4,14,4,14,5,40,26,3,0,6,19,5,17,5,44,31,6,17,4,17,5,111,252,2,0,6,5,44,10,17,5,111,194,2,0,6,13,43,8,17,5,111,196,2,0,6,13,17,4,8,88,19,4,17,4,3,111,185,2,0,6,48,10,17,4,3,111,183,2,0,6,47,172,7,23,88,11,7,24,50,137,6,42,0,0,0,19,48,2,0,81,0,0,0,170,0,0,17,3,22,154,23,154,10,6,111,168,2,0,6,11,2,111,226,2,0,6,2,111,228,2,0,6,90,2,111,229,2,0,6,40,28,3,0,6,89,12,7,142,45,23,8,23,50,8,8,126,1,1,0,4,49,2,22,42,6,8,111,167,2,0,6,43,13,7,22,148,8,46,7,6,8,111,167,2,0,6,23,42,0,0,0,19,48,5,0,255,0,0,0,171,0,0,17,2,40,23,3,0,6,10,6,45,2,20,42,2,6,40,20,3,0,6,45,2,20,42,115,207,0,0,10,11,2,111,228,2,0,6,2,111,226,2,0,6,90,141,72,0,0,1,12,115,230,0,0,10,13,115,207,0,0,10,19,4,22,19,6,43,106,22,19,7,43,85,6,17,6,154,17,7,23,88,154,111,168,2,0,6,19,8,17,6,2,111,226,2,0,6,90,17,7,88,19,9,17,8,142,45,10,7,17,9,111,213,0,0,10,43,34,17,8,142,105,23,51,10,8,17,9,17,8,22,148,158,43,17,17,4,17,9,111,213,0,0,10,9,17,8,111,231,0,0,10,17,7,23,88,19,7,17,7,2,111,226,2,0,6,50,161,17,6,23,88,19,6,17,6,2,111,228,2,0,6,50,140,9,111,232,0,0,10,141,55,0,0,27,19,5,22,19,10,43,19,17,5,17,10,9,17,10,111,233,0,0,10,162,17,10,23,88,19,10,17,10,17,5,142,105,50,229,2,111,229,2,0,6,8,7,111,214,0,0,10,17,4,111,214,0,0,10,17,5,40,22,3,0,6,42,0,27,48,5,0,147,0,0,0,172,0,0,17,5,142,105,141,72,0,0,1,10,31,100,11,43,120,22,12,43,17,3,5,8,148,14,4,8,154,6,8,148,148,158,8,23,88,12,8,6,142,105,50,233,0,3,2,4,40,31,3,0,6,13,9,44,5,9,19,4,222,85,222,3,38,222,0,6,142,45,2,20,42,22,19,5,43,52,6,17,5,148,14,4,17,5,154,142,105,23,89,47,15,6,17,5,143,72,0,0,1,37,74,23,88,84,43,29,6,17,5,22,158,17,5,6,142,105,23,89,51,2,20,42,17,5,23,88,19,5,17,5,6,142,105,50,197,7,37,23,89,11,22,48,128,20,42,17,4,42,0,1,16,0,0,0,0,42,0,19,61,0,3,37,0,0,2,19,48,4,0,192,0,0,0,173,0,0,17,2,111,228,2,0,6,141,83,0,0,27,10,22,12,43,46,6,8,2,111,226,2,0,6,24,88,141,84,0,0,2,162,22,13,43,14,6,8,154,9,115,170,2,0,6,162,9,23,88,13,9,6,8,154,142,105,50,234,8,23,88,12,8,6,142,105,50,204,22,11,2,111,231,2,0,6,19,4,22,19,5,43,99,17,4,17,5,154,19,6,17,6,44,78,17,6,111,244,2,0,6,19,7,22,19,8,43,56,17,7,17,8,154,19,9,17,9,44,39,17,9,111,202,2,0,6,19,10,17,10,22,50,25,17,10,6,142,105,47,18,6,17,10,154,7,154,17,9,111,200,2,0,6,111,167,2,0,6,17,8,23,88,19,8,17,8,17,7,142,105,50,192,7,23,88,11,17,5,23,88,19,5,17,5,17,4,142,105,50,149,6,42,74,3,22,50,12,3,2,111,222,2,0,6,142,105,254,4,42,22,42,0,19,48,4,0,18,1,0,0,174,0,0,17,5,45,3,21,43,1,23,10,20,11,2,3,6,89,40,24,3,0,6,44,17,2,111,222,2,0,6,3,6,89,154,4,111,249,2,0,6,11,7,44,17,5,45,7,7,111,194,2,0,6,42,7,111,196,2,0,6,42,2,111,222,2,0,6,3,154,4,111,250,2,0,6,11,7,44,17,5,45,7,7,111,196,2,0,6,42,7,111,194,2,0,6,42,2,3,6,89,40,24,3,0,6,44,17,2,111,222,2,0,6,3,6,89,154,4,111,250,2,0,6,11,7,44,17,5,45,7,7,111,194,2,0,6,42,7,111,196,2,0,6,42,22,12,43,91,3,6,89,16,1,2,111,222,2,0,6,3,154,111,244,2,0,6,13,22,19,4,43,56,9,17,4,154,19,5,17,5,44,40,5,45,9,17,5,111,194,2,0,6,43,7,17,5,111,196,2,0,6,6,8,90,17,5,111,196,2,0,6,17,5,111,194,2,0,6,89,90,88,42,17,4,23,88,19,4,17,4,9,142,105,50,193,8,23,88,12,2,3,6,89,40,24,3,0,6,45,154,5,45,12,2,111,224,2,0,6,111,181,2,0,6,42,2,111,224,2,0,6,111,179,2,0,6,42,0,0,19,48,6,0,165,0,0,0,175,0,0,17,2,3,4,5,14,4,14,5,40,29,3,0,6,16,4,2,3,4,5,14,4,14,5,40,27,3,0,6,10,6,45,2,20,42,6,40,221,6,0,6,12,5,44,7,14,4,8,88,11,43,60,22,19,5,43,38,6,17,5,148,19,6,6,17,5,6,6,142,105,23,89,17,5,89,148,158,6,6,142,105,23,89,17,5,89,17,6,158,17,5,23,88,19,5,17,5,6,142,105,23,99,50,209,14,4,11,7,8,89,16,4,8,14,6,14,7,40,30,3,0,6,45,2,20,42,6,40,9,3,0,6,13,9,106,40,128,2,0,6,19,4,17,4,21,51,2,20,42,14,4,7,9,40,35,3,0,6,17,4,115,204,2,0,6,42,0,0,0,19,48,3,0,119,0,0,0,176,0,0,17,14,4,10,30,141,72,0,0,1,11,22,12,5,45,3,21,43,1,23,13,5,19,4,43,42,2,6,14,5,111,41,6,0,6,17,4,51,18,7,8,143,72,0,0,1,37,74,23,88,84,6,9,88,10,43,11,8,23,88,12,17,4,22,254,1,19,4,5,45,9,6,3,254,4,22,254,1,43,4,6,4,254,4,44,6,8,7,142,105,50,190,8,7,142,105,46,18,6,5,45,3,3,43,1,4,51,10,8,7,142,105,23,89,51,2,7,42,20,42,30,24,2,31,31,95,98,42,0,19,48,4,0,83,0,0,0,64,0,0,17,14,4,10,5,45,3,23,43,1,21,11,22,12,43,62,14,4,6,89,40,161,0,0,10,24,49,3,14,4,42,6,7,88,10,5,45,6,6,4,254,4,43,7,6,3,254,4,22,254,1,44,12,5,2,6,14,5,111,41,6,0,6,46,207,7,101,11,5,22,254,1,16,3,8,23,88,12,8,24,50,209,6,42,74,3,24,89,2,48,10,2,4,24,88,254,2,22,254,1,42,22,42,0,0,19,48,3,0,76,0,0,0,177,0,0,17,2,142,45,2,20,42,23,3,23,88,31,31,95,98,10,2,4,6,40,32,3,0,6,11,7,22,47,2,20,42,2,6,40,33,3,0,6,45,2,20,42,2,15,1,40,234,0,0,10,40,212,2,0,6,12,8,44,16,8,7,111,85,6,0,6,8,4,142,105,111,89,6,0,6,8,42,19,48,5,0,48,0,0,0,1,0,0,17,3,44,10,3,142,105,4,24,91,25,88,48,12,4,22,50,8,4,32,0,2,0,0,49,2,21,42,126,74,1,0,4,2,4,3,18,0,111,109,3,0,6,45,2,21,42,6,42,19,48,4,0,43,0,0,0,1,0,0,17,2,142,105,26,47,2,22,42,2,22,148,10,6,2,142,105,49,2,22,42,6,45,18,3,2,142,105,47,10,2,22,2,142,105,3,89,158,43,2,22,42,23,42,0,19,48,3,0,54,0,0,0,178,0,0,17,30,141,72,0,0,1,10,22,11,6,142,105,23,89,12,2,23,95,7,46,12,2,23,95,11,8,23,89,12,8,22,50,19,6,8,143,72,0,0,1,37,74,23,88,84,2,23,99,16,0,43,219,6,42,50,2,40,34,3,0,6,40,36,3,0,6,42,90,2,22,148,2,24,148,89,2,26,148,88,2,28,148,89,31,9,88,31,9,93,42,0,0,19,48,9,0,179,0,0,0,179,0,0,17,115,115,0,0,10,10,22,11,56,150,0,0,0,6,40,227,0,0,10,114,97,17,0,112,23,141,13,0,0,1,37,22,7,140,72,0,0,1,162,111,107,0,0,10,38,22,12,43,90,2,7,154,8,154,13,9,111,168,2,0,6,19,4,17,4,142,45,14,6,114,121,17,0,112,111,119,0,0,10,38,43,53,6,40,227,0,0,10,114,139,17,0,112,24,141,13,0,0,1,37,22,17,4,22,148,140,72,0,0,1,162,37,23,9,17,4,22,148,111,169,2,0,6,140,72,0,0,1,162,111,107,0,0,10,38,8,23,88,12,8,2,7,154,142,105,50,158,6,114,85,10,0,112,111,119,0,0,10,38,7,23,88,11,7,2,142,105,63,97,255,255,255,6,111,25,0,0,10,42,46,115,108,3,0,6,128,74,1,0,4,42,0,19,48,2,0,65,0,0,0,180,0,0,17,2,111,177,0,0,6,10,6,45,2,20,42,4,6,40,40,3,0,6,11,7,44,8,7,111,235,0,0,10,45,26,6,111,60,6,0,6,116,204,0,0,2,10,6,111,50,6,0,6,4,6,40,40,3,0,6,11,6,7,115,52,3,0,6,42,0,0,0,27,48,3,0,225,0,0,0,181,0,0,17,115,236,0,0,10,10,22,11,22,12,22,13,56,194,0,0,0,3,7,8,40,41,3,0,6,19,4,17,4,22,154,45,113,17,4,25,154,45,107,9,57,178,0,0,0,22,13,22,12,6,111,199,0,0,10,19,5,43,56,18,5,40,200,0,0,10,19,6,17,6,23,154,44,18,7,107,17,6,23,154,111,61,1,0,6,40,178,0,0,10,105,11,17,6,25,154,44,17,7,17,6,25,154,111,61,1,0,6,105,40,139,0,0,10,11,18,5,40,202,0,0,10,45,191,222,14,18,5,254,22,72,0,0,27,111,60,0,0,10,220,7,27,88,11,43,65,23,13,6,17,4,111,237,0,0,10,2,44,64,17,4,24,154,44,24,17,4,24,154,111,60,1,0,6,105,12,17,4,24,154,111,61,1,0,6,105,11,43,22,17,4,26,154,111,60,1,0,6,105,12,17,4,26,154,111,61,1,0,6,105,11,7,3,111,32,6,0,6,63,50,255,255,255,6,42,0,0,0,1,16,0,0,2,0,57,0,69,126,0,14,0,0,0,0,19,48,7,0,102,0,0,0,182,0,0,17,2,111,32,6,0,6,10,2,111,31,6,0,6,11,30,141,40,0,0,2,12,8,2,6,7,3,4,126,81,1,0,4,40,43,3,0,6,126,75,1,0,4,40,42,3,0,6,8,26,154,44,22,8,26,154,111,60,1,0,6,105,16,2,8,26,154,111,61,1,0,6,105,16,1,8,2,6,7,3,4,126,82,1,0,4,40,43,3,0,6,126,76,1,0,4,40,42,3,0,6,8,42,0,0,19,48,4,0,23,0,0,0,1,0,0,17,22,10,43,12,2,4,6,148,3,6,154,162,6,23,88,10,6,4,142,105,50,238,42,0,19,48,7,0,73,1,0,0,183,0,0,17,26,141,40,0,0,2,10,22,11,14,5,142,105,141,72,0,0,1,12,43,103,2,14,4,5,4,22,14,5,8,40,44,3,0,6,19,4,17,4,44,78,43,38,2,14,4,5,23,89,37,16,3,4,22,14,5,8,40,44,3,0,6,19,5,17,5,44,6,17,5,19,4,43,7,5,23,88,16,3,43,4,5,22,48,214,6,22,17,4,22,148,107,5,107,115,59,1,0,6,162,6,23,17,4,23,148,107,5,107,115,59,1,0,6,162,23,11,43,9,5,27,88,16,3,5,3,50,149,5,23,88,13,7,57,159,0,0,0,22,19,6,24,141,72,0,0,1,37,22,6,22,154,111,60,1,0,6,105,158,37,23,6,23,154,111,60,1,0,6,105,158,19,7,43,81,2,17,7,22,148,9,4,22,14,5,8,40,44,3,0,6,19,8,17,8,44,43,17,7,22,148,17,8,22,148,89,40,161,0,0,10,27,47,26,17,7,23,148,17,8,23,148,89,40,161,0,0,10,27,47,9,17,8,19,7,22,19,6,43,12,17,6,31,25,48,14,17,6,23,88,19,6,9,23,88,13,9,3,50,171,9,17,6,23,88,89,13,6,24,17,7,22,148,107,9,107,115,59,1,0,6,162,6,25,17,7,23,148,107,9,107,115,59,1,0,6,162,9,5,89,31,10,47,23,22,19,9,43,11,6,17,9,20,162,17,9,23,88,19,9,17,9,6,142,105,50,238,6,42,0,0,0,19,48,6,0,241,0,0,0,184,0,0,17,14,6,22,40,5,0,0,43,3,10,22,11,43,4,6,23,89,10,2,6,4,111,41,6,0,6,44,12,6,22,49,8,7,37,23,88,11,25,50,230,6,12,22,13,14,5,142,105,19,4,14,4,19,5,56,131,0,0,0,2,8,4,111,41,6,0,6,17,5,46,15,14,6,9,143,72,0,0,1,37,74,23,88,84,43,100,9,17,4,23,89,51,77,14,6,14,5,32,204,0,0,0,40,45,3,0,6,31,107,47,15,24,141,72,0,0,1,37,22,6,158,37,23,8,158,42,6,14,6,22,148,14,6,23,148,88,88,10,14,6,24,14,6,22,9,23,89,40,94,0,0,10,14,6,9,23,89,22,158,14,6,9,22,158,9,23,89,13,43,4,9,23,88,13,14,6,9,23,158,17,5,22,254,1,19,5,8,23,88,12,8,5,63,118,255,255,255,9,17,4,23,89,51,35,14,6,14,5,32,204,0,0,0,40,45,3,0,6,31,107,47,17,24,141,72,0,0,1,37,22,6,158,37,23,8,23,89,158,42,20,42,0,0,0,19,48,3,0,139,0,0,0,185,0,0,17,2,142,105,10,22,11,22,12,22,19,5,43,20,7,2,17,5,148,88,11,8,3,17,5,148,88,12,17,5,23,88,19,5,17,5,6,50,231,7,8,47,6,32,255,255,255,127,42,7,30,98,8,91,13,4,9,90,30,99,16,2,22,19,4,22,19,6,43,60,2,17,6,148,30,98,19,7,3,17,6,148,9,90,19,8,17,7,17,8,48,7,17,8,17,7,89,43,5,17,7,17,8,89,19,9,17,9,4,49,6,32,255,255,255,127,42,17,4,17,9,88,19,4,17,6,23,88,19,6,17,6,6,50,191,17,4,7,91,42,0,19,48,3,0,90,0,0,0,0,0,0,0,26,141,72,0,0,1,37,208,170,4,0,4,40,153,0,0,10,128,75,1,0,4,26,141,72,0,0,1,37,208,172,5,0,4,40,153,0,0,10,128,76,1,0,4,30,141,72,0,0,1,37,208,218,4,0,4,40,153,0,0,10,128,81,1,0,4,31,9,141,72,0,0,1,37,208,4,5,0,4,40,153,0,0,10,128,82,1,0,4,42,30,2,123,88,1,0,4,42,34,2,3,125,88,1,0,4,42,30,2,123,89,1,0,4,42,34,2,3,125,89,1,0,4,42,86,2,40,20,0,0,10,2,3,40,49,3,0,6,2,4,40,51,3,0,6,42,0,0,19,48,5,0,97,0,0,0,2,0,0,17,2,40,20,0,0,10,2,3,141,97,0,0,2,125,96,1,0,4,22,10,2,123,96,1,0,4,142,105,11,43,37,2,123,96,1,0,4,6,4,31,17,90,31,34,88,5,45,3,24,43,1,22,31,17,90,88,23,88,115,59,3,0,6,162,6,23,88,10,6,7,50,215,2,4,31,17,90,125,99,1,0,4,2,3,125,98,1,0,4,2,21,125,97,1,0,4,42,66,2,123,96,1,0,4,4,154,3,5,111,61,3,0,6,42,62,2,2,123,97,1,0,4,23,88,125,97,1,0,4,42,58,2,123,96,1,0,4,2,123,97,1,0,4,154,42,38,2,23,23,40,58,3,0,6,42,0,19,48,5,0,95,0,0,0,186,0,0,17,2,123,98,1,0,4,4,90,141,73,0,0,27,10,22,12,43,20,6,8,2,123,99,1,0,4,3,90,141,90,0,0,1,162,8,23,88,12,8,2,123,98,1,0,4,4,90,50,225,2,123,98,1,0,4,4,90,11,22,13,43,27,6,7,9,89,23,89,2,123,96,1,0,4,9,4,91,154,3,111,64,3,0,6,162,9,23,88,13,9,7,50,225,6,42,106,2,40,20,0,0,10,2,3,141,90,0,0,1,125,101,1,0,4,2,22,125,102,1,0,4,42,38,2,123,101,1,0,4,3,144,42,42,2,123,101,1,0,4,3,4,156,42,70,2,123,101,1,0,4,3,4,45,3,22,43,1,23,103,156,42,0,0,0,19,48,4,0,37,0,0,0,2,0,0,17,22,10,43,28,2,2,2,123,102,1,0,4,11,7,23,88,125,102,1,0,4,7,3,40,62,3,0,6,6,23,88,10,6,4,50,224,42,0,0,0,19,48,5,0,45,0,0,0,187,0,0,17,2,123,101,1,0,4,142,105,3,90,141,90,0,0,1,10,22,11,43,17,6,7,2,123,101,1,0,4,7,3,91,144,156,7,23,88,11,7,6,142,105,50,233,6,42,146,2,40,20,0,0,10,2,3,125,108,1,0,4,2,4,125,109,1,0,4,2,5,125,110,1,0,4,2,14,4,125,111,1,0,4,42,30,2,123,108,1,0,4,42,30,2,123,109,1,0,4,42,30,2,123,110,1,0,4,42,30,2,123,111,1,0,4,42,34,2,22,40,71,3,0,6,42,0,19,48,2,0,65,0,0,0,0,0,0,0,2,40,20,0,0,10,2,3,125,119,1,0,4,2,22,125,120,1,0,4,2,20,125,121,1,0,4,2,22,125,122,1,0,4,2,24,125,123,1,0,4,2,31,30,125,124,1,0,4,2,31,90,125,125,1,0,4,2,25,125,126,1,0,4,42,30,2,123,118,1,0,4,42,0,0,0,19,48,3,0,28,0,0,0,1,0,0,17,2,23,88,3,88,4,91,23,88,10,4,6,90,2,23,88,3,88,4,88,50,4,6,23,89,10,6,42,19,48,3,0,20,0,0,0,1,0,0,17,4,5,90,3,89,10,6,2,23,88,48,2,22,42,6,2,89,23,89,42,19,48,3,0,75,0,0,0,188,0,0,17,23,3,23,89,31,31,95,98,10,2,6,95,22,254,3,11,22,12,22,13,43,40,2,6,95,22,254,3,19,4,7,17,4,51,6,8,23,88,12,43,13,4,7,8,111,63,3,0,6,17,4,11,23,12,6,23,99,10,9,23,88,13,9,3,50,212,4,7,8,111,63,3,0,6,42,0,19,48,3,0,36,1,0,0,113,0,0,17,22,10,22,11,56,19,1,0,0,7,25,93,12,14,5,111,55,3,0,6,32,168,254,1,0,31,17,14,5,111,56,3,0,6,40,75,3,0,6,8,45,27,31,30,7,25,91,90,5,23,89,25,91,88,13,31,30,7,25,91,90,4,23,89,88,19,4,43,68,8,23,51,34,31,30,7,25,91,90,14,4,25,90,88,5,23,89,25,93,88,13,31,30,7,25,91,90,5,23,89,25,91,88,19,4,43,30,31,30,7,25,91,90,4,23,89,88,13,31,30,7,25,91,90,14,4,25,90,88,5,23,89,25,93,88,19,4,126,114,1,0,4,8,154,9,148,31,17,14,5,111,56,3,0,6,40,75,3,0,6,22,19,5,43,39,126,114,1,0,4,8,154,3,6,111,27,0,0,10,148,31,17,14,5,111,56,3,0,6,40,75,3,0,6,6,23,88,10,17,5,23,88,19,5,17,5,4,50,212,2,123,119,1,0,4,44,20,32,41,250,3,0,23,14,5,111,56,3,0,6,40,75,3,0,6,43,43,126,114,1,0,4,8,154,17,4,148,31,17,14,5,111,56,3,0,6,40,75,3,0,6,32,41,250,3,0,31,18,14,5,111,56,3,0,6,40,75,3,0,6,7,23,88,11,7,5,63,230,254,255,255,42,19,48,6,0,0,1,0,0,189,0,0,17,3,2,123,120,1,0,4,2,123,121,1,0,4,2,123,122,1,0,4,40,91,3,0,6,10,6,111,30,0,0,10,11,4,7,40,86,3,0,6,16,2,4,40,85,3,0,6,12,2,7,8,5,14,4,14,5,40,78,3,0,6,37,22,148,13,23,148,19,4,7,8,9,17,4,40,74,3,0,6,19,5,7,8,88,23,88,32,161,3,0,0,49,32,114,165,17,0,112,3,111,30,0,0,10,140,72,0,0,1,114,37,18,0,112,40,75,0,0,10,115,104,1,0,6,122,7,17,5,88,23,88,19,6,17,6,115,22,0,0,10,19,7,17,7,17,6,209,111,23,0,0,10,38,17,7,6,111,119,0,0,10,38,22,19,10,43,19,17,7,32,132,3,0,0,111,23,0,0,10,38,17,10,23,88,19,10,17,10,17,5,50,231,17,7,111,25,0,0,10,37,4,40,88,3,0,6,19,8,17,8,40,238,0,0,10,19,9,2,17,4,9,2,123,119,1,0,4,115,53,3,0,6,125,118,1,0,4,2,17,9,9,17,4,4,2,123,118,1,0,4,40,76,3,0,6,42,19,48,4,0,165,1,0,0,190,0,0,17,31,34,2,123,119,1,0,4,45,3,24,43,1,22,31,17,90,23,88,10,6,88,11,34,0,0,0,0,12,20,13,22,19,4,22,19,5,32,255,255,255,127,19,6,22,19,7,5,7,31,17,88,50,60,5,7,89,31,17,91,2,123,124,1,0,4,40,140,0,0,10,19,5,14,4,14,5,74,91,2,123,125,1,0,4,40,140,0,0,10,19,4,3,4,17,5,40,73,3,0,6,19,6,17,6,17,4,254,2,22,254,1,19,7,14,5,74,27,50,73,14,4,2,123,125,1,0,4,40,140,0,0,10,19,4,26,19,8,17,4,17,6,50,14,17,4,17,6,91,17,8,40,140,0,0,10,19,8,14,5,17,8,84,14,4,14,5,74,91,2,123,125,1,0,4,40,140,0,0,10,19,4,17,6,17,4,254,2,22,254,1,19,7,2,123,123,1,0,4,19,9,43,127,3,4,17,9,40,73,3,0,6,19,10,17,10,2,123,126,1,0,4,63,129,0,0,0,17,10,2,123,125,1,0,4,48,87,17,10,17,4,254,2,17,7,95,45,76,31,17,17,9,90,7,88,107,34,180,200,182,62,90,17,10,107,34,0,0,0,64,90,91,19,11,9,44,27,17,11,34,0,0,64,64,89,40,155,0,0,10,8,34,0,0,64,64,89,40,155,0,0,10,48,20,17,11,12,24,141,72,0,0,1,37,22,17,9,158,37,23,17,10,158,13,17,9,23,88,19,9,17,9,2,123,124,1,0,4,48,16,17,7,57,112,255,255,255,17,9,17,5,62,103,255,255,255,9,45,46,3,4,2,123,123,1,0,4,40,73,3,0,6,2,123,126,1,0,4,47,25,24,141,72,0,0,1,37,22,2,123,123,1,0,4,158,37,23,2,123,126,1,0,4,158,13,9,45,11,114,53,18,0,112,115,104,1,0,6,122,9,42,122,2,3,125,124,1,0,4,2,4,125,123,1,0,4,2,5,125,125,1,0,4,2,14,4,125,126,1,0,4,42,34,2,3,125,120,1,0,4,42,34,2,3,125,119,1,0,4,42,54,2,3,40,146,0,0,10,125,121,1,0,4,42,34,2,3,125,122,1,0,4,42,0,0,0,19,48,6,0,84,0,0,0,0,0,0,0,25,141,55,0,0,27,37,22,32,161,3,0,0,141,72,0,0,1,37,208,124,4,0,4,40,153,0,0,10,162,37,23,32,161,3,0,0,141,72,0,0,1,37,208,138,4,0,4,40,153,0,0,10,162,37,24,32,161,3,0,0,141,72,0,0,1,37,208,167,4,0,4,40,153,0,0,10,162,128,114,1,0,4,42,114,2,22,50,4,2,30,49,11,114,119,18,0,112,115,31,0,0,10,122,23,2,23,88,31,31,95,98,42,58,2,31,9,51,7,3,40,87,3,0,6,42,2,42,194,2,31,40,48,2,24,42,2,32,160,0,0,0,48,2,25,42,2,32,64,1,0,0,48,2,26,42,2,32,95,3,0,0,48,2,27,42,114,215,18,0,112,115,104,1,0,6,122,0,0,0,19,48,5,0,255,0,0,0,191,0,0,17,3,31,9,51,8,3,40,87,3,0,6,16,1,3,40,85,3,0,6,10,6,141,64,0,0,1,11,2,111,30,0,0,10,12,22,19,4,56,141,0,0,0,2,17,4,111,27,0,0,10,7,7,142,105,23,89,147,88,32,161,3,0,0,93,19,5,6,23,89,19,8,43,57,17,5,126,127,1,0,4,3,154,17,8,148,90,32,161,3,0,0,93,19,6,32,161,3,0,0,17,6,89,19,7,7,17,8,7,17,8,23,89,147,17,7,88,32,161,3,0,0,93,209,157,17,8,23,89,19,8,17,8,23,47,194,17,5,126,127,1,0,4,3,154,22,148,90,32,161,3,0,0,93,19,6,32,161,3,0,0,17,6,89,19,7,7,22,17,7,32,161,3,0,0,93,209,157,17,4,23,88,19,4,17,4,8,63,107,255,255,255,6,115,22,0,0,10,13,6,23,89,19,9,43,38,7,17,9,147,44,15,7,17,9,32,161,3,0,0,7,17,9,147,89,209,157,9,7,17,9,147,111,23,0,0,10,38,17,9,23,89,19,9,17,9,22,47,213,9,111,25,0,0,10,42,0,19,48,7,0,210,0,0,0,0,0,0,0,31,9,141,55,0,0,27,37,22,24,141,72,0,0,1,37,22,31,27,158,37,23,32,149,3,0,0,158,162,37,23,26,141,72,0,0,1,37,208,78,4,0,4,40,153,0,0,10,162,37,24,30,141,72,0,0,1,37,208,166,5,0,4,40,153,0,0,10,162,37,25,31,16,141,72,0,0,1,37,208,136,4,0,4,40,153,0,0,10,162,37,26,31,32,141,72,0,0,1,37,208,240,4,0,4,40,153,0,0,10,162,37,27,31,64,141,72,0,0,1,37,208,112,5,0,4,40,153,0,0,10,162,37,28,32,128,0,0,0,141,72,0,0,1,37,208,210,4,0,4,40,153,0,0,10,162,37,29,32,0,1,0,0,141,72,0,0,1,37,208,134,5,0,4,40,153,0,0,10,162,37,30,32,0,2,0,0,141,72,0,0,1,37,208,219,4,0,4,40,153,0,0,10,162,128,127,1,0,4,42,0,0,19,48,3,0,226,0,0,0,192,0,0,17,31,30,141,90,0,0,1,37,208,33,5,0,4,40,153,0,0,10,128,154,1,0,4,31,30,141,90,0,0,1,37,208,202,5,0,4,40,153,0,0,10,128,155,1,0,4,32,128,0,0,0,141,90,0,0,1,128,156,1,0,4,32,128,0,0,0,141,90,0,0,1,128,157,1,0,4,114,81,14,0,112,128,158,1,0,4,22,10,43,12,126,156,1,0,4,6,21,156,6,23,88,10,6,126,156,1,0,4,142,105,50,234,22,11,43,25,126,154,1,0,4,7,144,12,8,22,49,9,126,156,1,0,4,8,7,103,156,7,23,88,11,7,126,154,1,0,4,142,105,50,221,22,13,43,12,126,157,1,0,4,9,21,156,9,23,88,13,9,126,157,1,0,4,142,105,50,234,22,19,4,43,32,126,155,1,0,4,17,4,144,19,5,17,5,22,49,11,126,157,1,0,4,17,5,17,4,103,156,17,4,23,88,19,4,17,4,126,155,1,0,4,142,105,50,213,42,0,0,19,48,5,0,157,1,0,0,193,0,0,17,2,111,30,0,0,10,115,22,0,0,10,10,4,44,52,5,45,49,126,158,1,0,4,4,111,239,0,0,10,26,40,240,0,0,10,44,30,4,111,239,0,0,10,40,72,6,0,6,19,4,17,4,44,13,17,4,111,136,6,0,6,6,40,107,3,0,6,2,111,30,0,0,10,11,22,12,22,13,3,23,89,69,3,0,0,0,2,0,0,0,18,0,0,0,46,0,0,0,43,70,2,8,7,6,9,40,95,3,0,6,38,56,34,1,0,0,2,4,40,93,3,0,6,19,5,17,5,8,17,5,142,105,23,6,40,96,3,0,6,56,6,1,0,0,6,32,134,3,0,0,111,23,0,0,10,38,2,8,7,6,40,97,3,0,6,56,236,0,0,0,22,19,6,20,19,7,56,218,0,0,0,2,8,40,104,3,0,6,19,8,17,8,31,13,50,37,6,32,134,3,0,0,111,23,0,0,10,38,24,19,6,22,13,2,8,17,8,6,40,97,3,0,6,8,17,8,88,12,56,166,0,0,0,2,8,40,105,3,0,6,19,9,17,9,27,47,5,17,8,7,51,40,17,6,44,17,6,32,132,3,0,0,111,23,0,0,10,38,22,19,6,22,13,2,8,17,9,6,9,40,95,3,0,6,13,8,17,9,88,12,43,107,17,7,45,9,2,4,40,93,3,0,6,19,7,2,17,7,8,4,40,106,3,0,6,19,10,17,10,45,3,23,19,10,17,10,23,51,17,17,6,45,13,17,7,22,23,22,6,40,96,3,0,6,43,48,17,7,2,22,8,111,241,0,0,10,4,40,93,3,0,6,142,105,2,8,17,10,111,241,0,0,10,4,40,93,3,0,6,142,105,17,6,6,40,96,3,0,6,23,19,6,22,13,8,17,10,88,12,8,7,63,31,255,255,255,6,111,25,0,0,10,42,0,0,0,27,48,2,0,62,0,0,0,194,0,0,17,2,45,57,126,158,1,0,4,40,146,0,0,10,16,0,222,3,38,222,0,2,45,37,114,13,19,0,112,40,146,0,0,10,16,0,222,23,10,114,25,19,0,112,126,158,1,0,4,40,238,0,0,10,6,115,105,1,0,6,122,2,42,0,0,1,28,0,0,0,0,3,0,14,17,0,3,23,0,0,1,0,0,23,0,14,37,0,23,23,0,0,1,54,3,40,92,3,0,6,2,111,183,0,0,10,42,90,3,40,92,3,0,6,23,141,64,0,0,1,37,22,2,157,111,242,0,0,10,42,0,0,0,19,48,3,0,89,2,0,0,195,0,0,17,4,115,22,0,0,10,10,14,4,11,22,12,2,3,8,88,111,27,0,0,10,19,5,7,69,3,0,0,0,5,0,0,0,126,0,0,0,8,1,0,0,56,152,1,0,0,17,5,40,99,3,0,6,44,38,17,5,31,32,51,14,6,31,26,111,23,0,0,10,38,56,166,1,0,0,6,17,5,31,65,89,209,111,23,0,0,10,38,56,148,1,0,0,17,5,40,100,3,0,6,44,13,23,11,6,31,27,111,23,0,0,10,38,43,153,17,5,40,101,3,0,6,44,13,24,11,6,31,28,111,23,0,0,10,38,43,131,6,31,29,111,23,0,0,10,38,6,126,157,1,0,4,17,5,144,209,111,23,0,0,10,38,56,74,1,0,0,17,5,40,100,3,0,6,44,38,17,5,31,32,51,14,6,31,26,111,23,0,0,10,38,56,45,1,0,0,6,17,5,31,97,89,209,111,23,0,0,10,38,56,27,1,0,0,17,5,40,99,3,0,6,44,27,6,31,27,111,23,0,0,10,38,6,17,5,31,65,89,209,111,23,0,0,10,38,56,247,0,0,0,17,5,40,101,3,0,6,44,16,24,11,6,31,28,111,23,0,0,10,38,56,249,254,255,255,6,31,29,111,23,0,0,10,38,6,126,157,1,0,4,17,5,144,209,111,23,0,0,10,38,56,192,0,0,0,17,5,40,101,3,0,6,44,21,6,126,156,1,0,4,17,5,144,209,111,23,0,0,10,38,56,162,0,0,0,17,5,40,99,3,0,6,44,16,22,11,6,31,28,111,23,0,0,10,38,56,164,254,255,255,17,5,40,100,3,0,6,44,16,23,11,6,31,27,111,23,0,0,10,38,56,139,254,255,255,3,8,88,23,88,4,47,34,2,3,8,88,23,88,111,27,0,0,10,40,102,3,0,6,44,16,25,11,6,31,25,111,23,0,0,10,38,56,97,254,255,255,6,31,29,111,23,0,0,10,38,6,126,157,1,0,4,17,5,144,209,111,23,0,0,10,38,43,43,17,5,40,102,3,0,6,44,18,6,126,157,1,0,4,17,5,144,209,111,23,0,0,10,38,43,16,22,11,6,31,29,111,23,0,0,10,38,56,27,254,255,255,8,23,88,12,8,4,63,16,254,255,255,22,13,6,111,120,0,0,10,19,4,22,19,6,43,49,17,6,24,93,22,254,3,44,25,9,31,30,90,6,17,6,111,149,0,0,10,88,209,13,5,9,111,23,0,0,10,38,43,9,6,17,6,111,149,0,0,10,13,17,6,23,88,19,6,17,6,17,4,50,201,17,4,24,93,44,15,5,9,31,30,90,31,29,88,209,111,23,0,0,10,38,7,42,0,0,0,19,48,4,0,228,0,0,0,196,0,0,17,4,23,51,18,5,45,15,14,4,32,145,3,0,0,111,23,0,0,10,38,43,33,4,28,93,45,15,14,4,32,156,3,0,0,111,23,0,0,10,38,43,13,14,4,32,133,3,0,0,111,23,0,0,10,38,3,10,4,28,50,125,27,141,64,0,0,1,11,43,108,22,106,12,22,13,43,23,8,30,98,12,8,2,6,9,88,145,32,255,0,0,0,95,106,88,12,9,23,88,13,9,28,50,229,22,19,4,43,28,7,17,4,8,32,132,3,0,0,106,93,209,157,8,32,132,3,0,0,106,91,12,17,4,23,88,19,4,17,4,27,50,223,7,142,105,23,89,19,5,43,18,14,4,7,17,5,147,111,23,0,0,10,38,17,5,23,89,19,5,17,5,22,47,233,6,28,88,10,3,4,88,6,89,28,47,140,6,19,6,43,29,2,17,6,145,32,255,0,0,0,95,19,7,14,4,17,7,209,111,23,0,0,10,38,17,6,23,88,19,6,17,6,3,4,88,50,220,42,19,48,4,0,183,0,0,0,197,0,0,17,22,10,4,25,91,23,88,115,22,0,0,10,11,32,132,3,0,0,106,115,40,0,0,6,12,22,106,115,40,0,0,6,13,56,135,0,0,0,7,22,111,121,0,0,10,31,44,4,6,89,40,140,0,0,10,19,4,114,85,19,0,112,2,3,6,88,17,4,111,241,0,0,10,40,238,0,0,10,40,48,0,0,6,19,5,17,5,8,40,62,0,0,6,19,6,7,17,6,111,243,0,0,10,209,111,23,0,0,10,38,17,5,8,40,61,0,0,6,19,5,17,5,9,111,44,0,0,6,44,211,7,111,120,0,0,10,23,89,19,7,43,21,5,7,17,7,111,149,0,0,10,111,23,0,0,10,38,17,7,23,89,19,7,17,7,22,47,230,6,17,4,88,10,6,4,23,89,63,112,255,255,255,42,66,2,31,48,50,9,2,31,57,254,2,22,254,1,42,22,42,94,2,31,32,46,16,2,31,65,50,9,2,31,90,254,2,22,254,1,42,22,42,23,42,94,2,31,32,46,16,2,31,97,50,9,2,31,122,254,2,22,254,1,42,22,42,23,42,58,126,156,1,0,4,2,144,21,254,1,22,254,1,42,58,126,157,1,0,4,2,144,21,254,1,22,254,1,42,134,2,31,9,46,26,2,31,10,46,21,2,31,13,46,16,2,31,32,50,9,2,31,126,254,2,22,254,1,42,22,42,23,42,19,48,2,0,59,0,0,0,198,0,0,17,22,10,2,111,30,0,0,10,11,3,12,8,7,47,42,2,8,111,27,0,0,10,13,43,20,6,23,88,10,8,23,88,12,8,7,47,8,2,8,111,27,0,0,10,13,9,40,98,3,0,6,44,4,8,7,50,224,6,42,0,19,48,2,0,103,0,0,0,199,0,0,17,2,111,30,0,0,10,10,3,11,43,84,2,7,111,27,0,0,10,12,22,13,43,20,9,23,88,13,7,23,88,11,7,6,47,8,2,7,111,27,0,0,10,12,9,31,13,47,12,8,40,98,3,0,6,44,4,7,6,50,219,9,31,13,50,6,7,3,89,9,89,42,9,22,48,20,2,7,111,27,0,0,10,12,8,40,103,3,0,6,44,8,7,23,88,11,7,6,50,168,7,3,89,42,0,19,48,4,0,202,0,0,0,200,0,0,17,2,111,30,0,0,10,10,4,11,7,12,5,40,92,3,0,6,16,3,56,167,0,0,0,2,7,111,27,0,0,10,13,22,19,4,43,26,17,4,23,88,19,4,7,17,4,88,19,5,17,5,6,47,23,2,17,5,111,27,0,0,10,13,17,4,31,13,47,8,9,40,98,3,0,6,45,216,17,4,31,13,50,4,7,4,89,42,2,7,111,27,0,0,10,13,3,8,145,31,63,51,65,9,31,63,46,60,27,141,13,0,0,1,37,22,114,89,19,0,112,162,37,23,18,3,40,28,0,0,10,162,37,24,114,159,19,0,112,162,37,25,9,140,72,0,0,1,162,37,26,114,183,19,0,112,162,40,134,0,0,10,115,104,1,0,6,122,7,23,88,11,8,23,88,12,9,5,40,94,3,0,6,142,105,23,49,4,8,23,88,12,7,6,63,82,255,255,255,7,4,89,42,0,0,19,48,3,0,145,0,0,0,0,0,0,0,2,22,50,30,2,32,132,3,0,0,47,22,3,32,159,3,0,0,111,23,0,0,10,38,3,2,209,111,23,0,0,10,38,42,2,32,148,95,12,0,47,45,3,32,158,3,0,0,111,23,0,0,10,38,3,2,32,132,3,0,0,91,23,89,209,111,23,0,0,10,38,3,2,32,132,3,0,0,93,209,111,23,0,0,10,38,42,2,32,24,99,12,0,47,28,3,32,157,3,0,0,111,23,0,0,10,38,3,32,148,95,12,0,2,89,209,111,23,0,0,10,38,42,114,187,19,0,112,2,140,72,0,0,1,40,91,0,0,10,115,104,1,0,6,122,74,2,40,20,0,0,10,2,126,160,1,0,4,125,159,1,0,4,42,19,48,7,0,119,1,0,0,201,0,0,17,2,123,159,1,0,4,3,115,127,3,0,6,10,4,141,72,0,0,1,11,22,12,14,4,22,84,4,19,10,43,41,6,2,123,159,1,0,4,17,10,111,121,3,0,6,111,132,3,0,6,19,11,7,4,17,10,89,17,11,158,17,11,44,2,23,12,17,10,23,89,19,10,17,10,22,48,210,8,45,2,23,42,2,123,159,1,0,4,111,115,3,0,6,13,5,44,99,5,19,12,22,19,13,43,83,17,12,17,13,148,19,14,2,123,159,1,0,4,3,142,105,23,89,17,14,89,111,121,3,0,6,19,15,2,123,159,1,0,4,24,141,72,0,0,1,37,22,2,123,159,1,0,4,22,17,15,111,120,3,0,6,158,37,23,23,158,115,127,3,0,6,19,16,9,17,16,111,135,3,0,6,13,17,13,23,88,19,13,17,13,17,12,142,105,50,165,2,123,159,1,0,4,7,115,127,3,0,6,19,4,2,2,123,159,1,0,4,4,23,111,118,3,0,6,17,4,4,40,110,3,0,6,19,5,17,5,45,2,22,42,17,5,22,154,19,6,17,5,23,154,19,7,17,6,44,4,17,7,45,2,22,42,2,17,6,40,111,3,0,6,19,8,17,8,45,2,22,42,2,17,7,17,6,17,8,40,112,3,0,6,19,9,22,19,17,43,61,3,142,105,23,89,2,123,159,1,0,4,17,8,17,17,148,111,122,3,0,6,89,19,18,17,18,22,47,2,22,42,3,17,18,2,123,159,1,0,4,3,17,18,148,17,9,17,17,148,111,120,3,0,6,158,17,17,23,88,19,17,17,17,17,8,142,105,50,187,14,4,17,8,142,105,84,23,42,0,19,48,4,0,71,1,0,0,202,0,0,17,3,111,129,3,0,6,4,111,129,3,0,6,47,6,3,4,16,1,16,2,3,10,4,11,2,123,159,1,0,4,111,113,3,0,6,12,2,123,159,1,0,4,111,115,3,0,6,13,56,193,0,0,0,6,19,8,8,19,9,7,10,9,12,6,111,130,3,0,6,44,2,20,42,17,8,11,2,123,159,1,0,4,111,113,3,0,6,19,10,6,6,111,129,3,0,6,111,131,3,0,6,19,11,2,123,159,1,0,4,17,11,111,123,3,0,6,19,12,43,83,7,111,129,3,0,6,6,111,129,3,0,6,89,19,13,2,123,159,1,0,4,7,7,111,129,3,0,6,111,131,3,0,6,17,12,111,124,3,0,6,19,14,17,10,2,123,159,1,0,4,17,13,17,14,111,118,3,0,6,111,133,3,0,6,19,10,7,6,17,13,17,14,111,138,3,0,6,111,134,3,0,6,11,7,111,129,3,0,6,6,111,129,3,0,6,50,8,7,111,130,3,0,6,44,151,17,10,8,111,135,3,0,6,17,9,111,134,3,0,6,111,136,3,0,6,13,7,111,129,3,0,6,5,24,91,60,49,255,255,255,9,22,111,131,3,0,6,19,4,17,4,45,2,20,42,2,123,159,1,0,4,17,4,111,123,3,0,6,19,5,9,17,5,111,137,3,0,6,19,6,7,17,5,111,137,3,0,6,19,7,24,141,106,0,0,2,37,22,17,6,162,37,23,17,7,162,42,0,19,48,4,0,78,0,0,0,203,0,0,17,3,111,129,3,0,6,10,6,141,72,0,0,1,11,22,12,23,13,43,32,3,9,111,132,3,0,6,45,19,7,8,2,123,159,1,0,4,9,111,123,3,0,6,158,8,23,88,12,9,23,88,13,9,2,123,159,1,0,4,111,125,3,0,6,47,4,8,6,50,206,8,6,46,2,20,42,7,42,0,0,19,48,6,0,181,0,0,0,204,0,0,17,4,111,129,3,0,6,10,6,141,72,0,0,1,11,23,19,5,43,33,7,6,17,5,89,2,123,159,1,0,4,17,5,4,17,5,111,131,3,0,6,111,124,3,0,6,158,17,5,23,88,19,5,17,5,6,49,218,2,123,159,1,0,4,7,115,127,3,0,6,12,5,142,105,13,9,141,72,0,0,1,19,4,22,19,6,43,86,2,123,159,1,0,4,5,17,6,148,111,123,3,0,6,19,7,2,123,159,1,0,4,22,3,17,7,111,132,3,0,6,111,120,3,0,6,19,8,2,123,159,1,0,4,8,17,7,111,132,3,0,6,111,123,3,0,6,19,9,17,4,17,6,2,123,159,1,0,4,17,8,17,9,111,124,3,0,6,158,17,6,23,88,19,6,17,6,9,50,165,17,4,42,30,2,123,163,1,0,4,42,34,2,3,125,163,1,0,4,42,30,2,123,164,1,0,4,42,34,2,3,125,164,1,0,4,42,0,19,48,6,0,137,0,0,0,64,0,0,17,2,40,20,0,0,10,2,3,125,165,1,0,4,2,3,141,72,0,0,1,125,161,1,0,4,2,3,141,72,0,0,1,125,162,1,0,4,23,10,22,11,43,19,2,123,161,1,0,4,7,6,158,6,4,90,3,93,10,7,23,88,11,7,3,50,233,22,12,43,20,2,123,162,1,0,4,2,123,161,1,0,4,8,148,8,158,8,23,88,12,8,3,23,89,50,230,2,2,23,141,72,0,0,1,115,127,3,0,6,40,114,3,0,6,2,2,23,141,72,0,0,1,37,22,23,158,115,127,3,0,6,40,116,3,0,6,42,0,0,0,19,48,3,0,41,0,0,0,205,0,0,17,3,22,47,6,115,74,0,0,10,122,4,45,7,2,40,113,3,0,6,42,3,23,88,141,72,0,0,1,10,6,22,4,158,2,6,115,127,3,0,6,42,46,3,4,88,2,123,165,1,0,4,93,42,74,2,123,165,1,0,4,3,88,4,89,2,123,165,1,0,4,93,42,38,2,123,161,1,0,4,3,148,42,74,3,45,6,115,74,0,0,10,122,2,123,162,1,0,4,3,148,42,138,3,45,6,115,244,0,0,10,122,2,123,161,1,0,4,2,123,165,1,0,4,2,123,162,1,0,4,3,148,89,23,89,148,42,170,3,44,3,4,45,2,22,42,2,123,161,1,0,4,2,123,162,1,0,4,3,148,2,123,162,1,0,4,4,148,88,2,123,165,1,0,4,23,89,93,148,42,30,2,123,165,1,0,4,42,70,126,0,1,0,4,25,115,117,3,0,6,128,160,1,0,4,42,0,0,0,19,48,5,0,115,0,0,0,2,0,0,17,2,40,20,0,0,10,4,142,45,6,115,74,0,0,10,122,2,3,125,166,1,0,4,4,142,105,10,6,23,49,76,4,22,148,45,71,23,11,43,4,7,23,88,11,7,6,47,5,4,7,148,44,243,7,6,51,13,2,23,141,72,0,0,1,125,167,1,0,4,42,2,6,7,89,141,72,0,0,1,125,167,1,0,4,4,7,2,123,167,1,0,4,22,2,123,167,1,0,4,142,105,40,94,0,0,10,42,2,4,125,167,1,0,4,42,30,2,123,167,1,0,4,42,46,2,123,167,1,0,4,142,105,23,89,42,50,2,123,167,1,0,4,22,148,22,254,1,42,82,2,123,167,1,0,4,2,123,167,1,0,4,142,105,23,89,3,89,148,42,0,0,0,19,48,4,0,130,0,0,0,206,0,0,17,3,45,8,2,22,40,131,3,0,6,42,22,10,3,23,51,43,2,123,167,1,0,4,12,22,13,43,24,8,9,148,19,4,2,123,166,1,0,4,6,17,4,111,119,3,0,6,10,9,23,88,13,9,8,142,105,50,226,6,42,2,123,167,1,0,4,22,148,10,2,123,167,1,0,4,142,105,11,23,19,5,43,40,2,123,166,1,0,4,2,123,166,1,0,4,3,6,111,124,3,0,6,2,123,167,1,0,4,17,5,148,111,119,3,0,6,10,17,5,23,88,19,5,17,5,7,50,211,6,42,0,0,19,48,6,0,159,0,0,0,207,0,0,17,2,123,166,1,0,4,3,123,166,1,0,4,111,189,0,0,10,45,11,114,41,20,0,112,115,31,0,0,10,122,2,40,130,3,0,6,44,2,3,42,3,111,130,3,0,6,44,2,2,42,2,123,167,1,0,4,10,3,123,167,1,0,4,11,6,142,105,7,142,105,49,4,6,7,10,11,7,142,105,141,72,0,0,1,12,7,142,105,6,142,105,89,13,7,22,8,22,9,40,94,0,0,10,9,19,4,43,31,8,17,4,2,123,166,1,0,4,6,17,4,9,89,148,7,17,4,148,111,119,3,0,6,158,17,4,23,88,19,4,17,4,7,142,105,50,218,2,123,166,1,0,4,8,115,127,3,0,6,42,214,2,123,166,1,0,4,3,123,166,1,0,4,111,189,0,0,10,45,11,114,41,20,0,112,115,31,0,0,10,122,3,111,130,3,0,6,44,2,2,42,2,3,111,136,3,0,6,40,133,3,0,6,42,0,0,0,19,48,8,0,188,0,0,0,208,0,0,17,2,123,166,1,0,4,3,123,166,1,0,4,111,189,0,0,10,45,11,114,41,20,0,112,115,31,0,0,10,122,2,40,130,3,0,6,45,8,3,111,130,3,0,6,44,12,2,123,166,1,0,4,111,113,3,0,6,42,2,123,167,1,0,4,10,6,142,105,11,3,123,167,1,0,4,12,8,142,105,13,7,9,88,23,89,141,72,0,0,1,19,4,22,19,5,43,72,6,17,5,148,19,6,22,19,7,43,50,17,4,17,5,17,7,88,2,123,166,1,0,4,17,4,17,5,17,7,88,148,2,123,166,1,0,4,17,6,8,17,7,148,111,124,3,0,6,111,119,3,0,6,158,17,7,23,88,19,7,17,7,9,50,201,17,5,23,88,19,5,17,5,7,50,179,2,123,166,1,0,4,17,4,115,127,3,0,6,42,19,48,6,0,64,0,0,0,126,0,0,17,2,123,167,1,0,4,142,105,10,6,141,72,0,0,1,11,22,12,43,27,7,8,2,123,166,1,0,4,22,2,123,167,1,0,4,8,148,111,120,3,0,6,158,8,23,88,12,8,6,50,225,2,123,166,1,0,4,7,115,127,3,0,6,42,19,48,5,0,85,0,0,0,126,0,0,17,3,45,12,2,123,166,1,0,4,111,113,3,0,6,42,3,23,51,2,2,42,2,123,167,1,0,4,142,105,10,6,141,72,0,0,1,11,22,12,43,27,7,8,2,123,166,1,0,4,2,123,167,1,0,4,8,148,3,111,124,3,0,6,158,8,23,88,12,8,6,50,225,2,123,166,1,0,4,7,115,127,3,0,6,42,0,0,0,19,48,5,0,91,0,0,0,126,0,0,17,3,22,47,6,115,74,0,0,10,122,4,45,12,2,123,166,1,0,4,111,113,3,0,6,42,2,123,167,1,0,4,142,105,10,6,3,88,141,72,0,0,1,11,22,12,43,27,7,8,2,123,166,1,0,4,2,123,167,1,0,4,8,148,4,111,124,3,0,6,158,8,23,88,12,8,6,50,225,2,123,166,1,0,4,7,115,127,3,0,6,42,0,19,48,2,0,144,0,0,0,209,0,0,17,30,2,40,129,3,0,6,90,115,22,0,0,10,10,2,40,129,3,0,6,11,43,110,2,7,40,131,3,0,6,12,8,44,95,8,22,47,17,6,114,133,20,0,112,111,119,0,0,10,38,8,101,12,43,21,6,111,120,0,0,10,22,49,12,6,114,141,20,0,112,111,119,0,0,10,38,7,44,4,8,23,46,8,6,8,111,191,0,0,10,38,7,44,35,7,23,51,11,6,31,120,111,23,0,0,10,38,43,20,6,114,149,20,0,112,111,119,0,0,10,38,6,7,111,191,0,0,10,38,7,23,89,11,7,22,47,142,6,111,25,0,0,10,42,162,2,40,9,4,0,6,2,31,20,115,22,0,0,10,125,175,1,0,4,2,31,80,141,72,0,0,1,125,176,1,0,4,2,22,125,177,1,0,4,42,0,0,0,19,48,7,0,76,2,0,0,210,0,0,17,22,19,10,43,16,2,123,176,1,0,4,17,10,22,158,17,10,23,88,19,10,17,10,2,123,176,1,0,4,142,105,50,228,2,4,40,143,3,0,6,45,2,20,42,2,40,145,3,0,6,10,6,22,47,2,20,42,6,11,2,123,175,1,0,4,22,111,121,0,0,10,2,7,40,147,3,0,6,19,11,17,11,21,51,2,20,42,2,123,175,1,0,4,17,11,209,111,23,0,0,10,38,7,30,88,11,2,123,175,1,0,4,111,120,0,0,10,23,49,20,126,174,1,0,4,126,171,1,0,4,17,11,147,40,146,3,0,6,45,9,7,2,123,177,1,0,4,50,178,2,123,176,1,0,4,7,23,89,148,12,22,13,31,248,19,12,43,20,9,2,123,176,1,0,4,7,17,12,88,148,88,13,17,12,23,88,19,12,17,12,21,50,231,7,2,123,177,1,0,4,47,8,8,9,24,91,47,2,20,42,2,6,40,142,3,0,6,45,2,20,42,22,19,13,43,38,2,123,175,1,0,4,17,13,126,171,1,0,4,2,123,175,1,0,4,17,13,111,149,0,0,10,147,111,245,0,0,10,17,13,23,88,19,13,17,13,2,123,175,1,0,4,111,120,0,0,10,50,203,2,123,175,1,0,4,22,111,149,0,0,10,19,4,126,174,1,0,4,17,4,40,146,3,0,6,45,2,20,42,2,123,175,1,0,4,2,123,175,1,0,4,111,120,0,0,10,23,89,111,149,0,0,10,19,5,126,174,1,0,4,17,5,40,146,3,0,6,45,2,20,42,2,123,175,1,0,4,111,120,0,0,10,25,48,2,20,42,5,31,13,22,40,6,0,0,43,45,40,2,123,175,1,0,4,2,123,175,1,0,4,111,120,0,0,10,23,89,23,111,150,0,0,10,38,2,123,175,1,0,4,22,23,111,150,0,0,10,38,22,19,6,22,19,14,43,20,17,6,2,123,176,1,0,4,17,14,148,88,19,6,17,14,23,88,19,14,17,14,6,50,231,17,6,107,19,7,6,19,15,43,20,17,6,2,123,176,1,0,4,17,15,148,88,19,6,17,15,23,88,19,15,17,15,7,23,89,50,229,17,6,107,19,8,5,29,20,40,7,0,0,43,19,9,17,9,44,32,17,9,17,7,3,107,115,59,1,0,6,111,69,1,0,6,17,9,17,8,3,107,115,59,1,0,6,111,69,1,0,6,2,123,175,1,0,4,111,25,0,0,10,20,24,141,40,0,0,2,37,22,17,7,3,107,115,59,1,0,6,162,37,23,17,8,3,107,115,59,1,0,6,162,24,115,50,1,0,6,42,19,48,7,0,140,1,0,0,211,0,0,17,26,141,72,0,0,1,10,26,141,72,0,0,1,11,2,123,175,1,0,4,111,120,0,0,10,23,89,12,3,13,22,19,6,126,172,1,0,4,2,123,175,1,0,4,17,6,111,149,0,0,10,148,19,7,28,19,8,43,61,17,8,23,95,17,7,23,95,24,90,88,19,9,6,17,9,143,72,0,0,1,37,74,2,123,176,1,0,4,9,17,8,88,148,88,84,7,17,9,143,72,0,0,1,37,74,23,88,84,17,7,23,99,19,7,17,8,23,89,19,8,17,8,22,47,190,17,6,8,47,12,9,30,88,13,17,6,23,88,19,6,43,147,26,141,72,0,0,1,19,4,26,141,72,0,0,1,19,5,22,19,10,43,106,17,5,17,10,22,158,17,5,17,10,24,88,6,17,10,148,126,10,2,0,4,31,31,95,98,7,17,10,148,91,6,17,10,24,88,148,126,10,2,0,4,31,31,95,98,7,17,10,24,88,148,91,88,23,99,158,17,4,17,10,17,5,17,10,24,88,148,158,17,4,17,10,24,88,6,17,10,24,88,148,126,168,1,0,4,90,126,169,1,0,4,88,7,17,10,24,88,148,91,158,17,10,23,88,19,10,17,10,24,50,145,3,13,22,19,11,126,172,1,0,4,2,123,175,1,0,4,17,11,111,149,0,0,10,148,19,12,28,19,13,43,67,17,13,23,95,17,12,23,95,24,90,88,19,14,2,123,176,1,0,4,9,17,13,88,148,126,10,2,0,4,31,31,95,98,19,15,17,15,17,5,17,14,148,50,9,17,15,17,4,17,14,148,49,2,22,42,17,12,23,99,19,12,17,13,23,89,19,13,17,13,22,47,184,17,11,8,47,12,9,30,88,13,17,11,23,88,19,11,43,141,23,42,19,48,2,0,81,0,0,0,212,0,0,17,2,22,125,177,1,0,4,3,22,111,13,6,0,6,10,3,111,2,6,0,6,11,6,7,50,2,22,42,23,12,22,13,43,34,3,6,111,4,6,0,6,8,46,6,9,23,88,13,43,14,2,9,40,144,3,0,6,23,13,8,22,254,1,12,6,23,88,10,6,7,50,218,2,9,40,144,3,0,6,23,42,0,0,0,19,48,5,0,86,0,0,0,205,0,0,17,2,123,176,1,0,4,2,123,177,1,0,4,3,158,2,2,123,177,1,0,4,23,88,125,177,1,0,4,2,123,177,1,0,4,2,123,176,1,0,4,142,105,50,41,2,123,177,1,0,4,24,90,141,72,0,0,1,10,2,123,176,1,0,4,22,6,22,2,123,177,1,0,4,40,94,0,0,10,2,6,125,176,1,0,4,42,0,0,19,48,3,0,98,0,0,0,111,0,0,17,23,10,43,83,2,6,40,147,3,0,6,11,7,21,46,67,126,174,1,0,4,126,171,1,0,4,7,147,40,146,3,0,6,44,48,22,12,6,13,43,15,8,2,123,176,1,0,4,9,148,88,12,9,23,88,13,9,6,29,88,50,235,6,23,46,15,2,123,176,1,0,4,6,23,89,148,8,24,91,50,2,6,42,6,24,88,10,6,2,123,177,1,0,4,50,164,21,42,0,0,19,48,2,0,29,0,0,0,57,0,0,17,2,44,24,2,10,22,11,43,12,6,7,147,3,51,2,23,42,7,23,88,11,7,6,142,105,50,238,22,42,0,0,0,19,48,3,0,240,0,0,0,213,0,0,17,3,29,88,10,6,2,123,177,1,0,4,50,2,21,42,2,123,176,1,0,4,11,22,12,32,255,255,255,127,13,3,19,10,43,28,7,17,10,148,19,11,17,11,9,47,3,17,11,13,17,11,8,49,3,17,11,12,17,10,24,88,19,10,17,10,6,50,223,9,8,88,24,91,19,4,22,19,5,32,255,255,255,127,19,6,3,23,88,19,12,43,32,7,17,12,148,19,13,17,13,17,6,47,4,17,13,19,6,17,13,17,5,49,4,17,13,19,5,17,12,24,88,19,12,17,12,6,50,219,17,6,17,5,88,24,91,19,7,32,128,0,0,0,19,8,22,19,9,22,19,14,43,43,17,14,23,95,44,4,17,7,43,2,17,4,19,15,17,8,23,99,19,8,7,3,17,14,88,148,17,15,49,7,17,9,17,8,96,19,9,17,14,23,88,19,14,17,14,29,50,208,22,19,16,43,21,126,172,1,0,4,17,16,148,17,9,51,3,17,16,42,17,16,23,88,19,16,17,16,126,172,1,0,4,142,105,50,224,21,42,19,48,3,0,97,0,0,0,0,0,0,0,126,11,2,0,4,107,34,0,0,0,64,90,105,128,168,1,0,4,126,11,2,0,4,107,34,0,0,192,63,90,105,128,169,1,0,4,114,155,20,0,112,40,152,0,0,10,128,171,1,0,4,31,20,141,72,0,0,1,37,208,53,4,0,4,40,153,0,0,10,128,172,1,0,4,26,141,64,0,0,1,37,208,90,5,0,4,40,153,0,0,10,128,174,1,0,4,42,0,0,0,19,48,3,0,138,2,0,0,214,0,0,17,3,111,30,0,0,10,24,47,39,126,181,1,0,4,13,18,3,40,28,0,0,10,3,126,181,1,0,4,13,18,3,40,28,0,0,10,40,246,0,0,10,16,1,56,195,0,0,0,3,22,111,27,0,0,10,40,247,0,0,10,19,4,3,3,111,30,0,0,10,23,89,111,27,0,0,10,40,247,0,0,10,19,5,126,178,1,0,4,17,4,40,146,3,0,6,126,178,1,0,4,17,5,40,146,3,0,6,19,6,126,179,1,0,4,17,4,40,146,3,0,6,19,7,126,179,1,0,4,17,5,40,146,3,0,6,19,8,44,21,17,6,45,100,114,197,20,0,112,3,40,238,0,0,10,115,31,0,0,10,122,17,7,44,21,17,8,45,75,114,197,20,0,112,3,40,238,0,0,10,115,31,0,0,10,122,17,6,17,8,96,44,17,114,197,20,0,112,3,40,238,0,0,10,115,31,0,0,10,122,126,181,1,0,4,13,18,3,40,28,0,0,10,3,126,181,1,0,4,13,18,3,40,28,0,0,10,40,246,0,0,10,16,1,31,20,10,23,19,9,43,116,3,17,9,111,27,0,0,10,40,248,0,0,10,45,24,3,17,9,111,27,0,0,10,31,45,46,12,3,17,9,111,27,0,0,10,31,36,51,7,6,31,9,88,10,43,64,126,180,1,0,4,3,17,9,111,27,0,0,10,40,146,3,0,6,44,7,6,31,10,88,10,43,37,114,251,20,0,112,3,17,9,111,27,0,0,10,13,18,3,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,17,9,23,88,19,9,17,9,3,111,30,0,0,10,23,89,50,128,6,3,111,30,0,0,10,23,89,88,10,6,141,71,0,0,1,11,22,12,22,19,10,56,228,0,0,0,3,17,10,111,27,0,0,10,40,247,0,0,10,19,11,17,10,44,12,17,10,3,111,30,0,0,10,23,89,51,54,17,11,31,69,53,14,17,11,31,42,46,32,17,11,31,69,46,32,43,34,17,11,31,78,46,12,17,11,31,84,51,22,31,65,19,11,43,16,31,66,19,11,43,10,31,67,19,11,43,4,31,68,19,11,22,19,12,22,19,16,43,30,17,11,126,171,1,0,4,17,16,147,51,12,126,172,1,0,4,17,16,148,19,12,43,17,17,16,23,88,19,16,17,16,126,171,1,0,4,142,105,50,215,23,19,13,22,19,14,22,19,15,43,52,7,8,17,13,156,8,23,88,12,17,12,28,17,15,89,31,31,95,99,23,95,44,5,17,14,23,51,18,17,13,22,254,1,19,13,17,15,23,88,19,15,22,19,14,43,6,17,14,23,88,19,14,17,15,29,50,199,17,10,3,111,30,0,0,10,23,89,47,8,7,8,22,156,8,23,88,12,17,10,23,88,19,10,17,10,3,111,30,0,0,10,63,15,255,255,255,7,42,30,2,40,255,3,0,6,42,0,0,19,48,3,0,79,0,0,0,0,0,0,0,26,141,64,0,0,1,37,208,90,5,0,4,40,153,0,0,10,128,178,1,0,4,26,141,64,0,0,1,37,208,74,4,0,4,40,153,0,0,10,128,179,1,0,4,26,141,64,0,0,1,37,208,75,4,0,4,40,153,0,0,10,128,180,1,0,4,126,178,1,0,4,22,147,128,181,1,0,4,42,146,2,40,140,6,0,6,31,14,111,126,0,0,10,44,19,2,40,140,6,0,6,31,14,111,127,0,0,10,165,71,0,0,1,42,22,42,82,2,40,140,6,0,6,31,14,3,140,71,0,0,1,111,129,0,0,10,42,0,0,0,19,48,6,0,5,1,0,0,215,0,0,17,2,111,2,6,0,6,10,2,22,111,12,6,0,6,22,11,28,141,72,0,0,1,12,37,13,22,19,4,8,142,105,19,5,19,6,56,211,0,0,0,2,17,6,111,4,6,0,6,17,4,46,17,8,7,143,72,0,0,1,37,74,23,88,84,56,176,0,0,0,7,17,5,23,89,64,151,0,0,0,126,183,1,0,4,19,7,21,19,8,31,103,19,9,43,41,8,126,182,1,0,4,17,9,154,126,184,1,0,4,40,7,4,0,6,19,10,17,10,17,7,47,8,17,10,19,7,17,9,19,8,17,9,23,88,19,9,17,9,31,105,49,209,17,8,22,50,45,2,22,9,17,6,9,89,24,91,89,40,139,0,0,10,9,22,111,17,6,0,6,44,21,25,141,72,0,0,1,37,22,9,158,37,23,17,6,158,37,24,17,8,158,42,9,8,22,148,8,23,148,88,88,13,8,24,8,22,7,23,89,40,94,0,0,10,8,7,23,89,22,158,8,7,22,158,7,23,89,11,43,4,7,23,88,11,8,7,23,158,17,4,22,254,1,19,4,17,6,23,88,19,6,17,6,6,63,37,255,255,255,20,42,0,0,0,19,48,3,0,78,0,0,0,216,0,0,17,5,21,84,2,4,3,40,4,4,0,6,45,2,22,42,126,183,1,0,4,10,22,11,43,34,126,182,1,0,4,7,154,12,3,8,126,184,1,0,4,40,7,4,0,6,13,9,6,47,5,9,10,5,7,84,7,23,88,11,7,126,182,1,0,4,142,105,50,212,5,74,22,254,4,22,254,1,42,0,0,19,48,7,0,61,5,0,0,217,0,0,17,5,44,10,5,31,12,111,44,0,0,10,43,1,22,10,4,40,155,3,0,6,11,7,45,2,20,42,7,24,148,12,31,20,115,249,0,0,10,13,9,8,210,111,250,0,0,10,8,31,103,89,69,3,0,0,0,2,0,0,0,8,0,0,0,14,0,0,0,43,18,31,101,19,4,43,14,31,100,19,4,43,8,31,99,19,4,43,2,20,42,22,19,5,22,19,6,31,20,115,22,0,0,10,19,7,7,22,148,19,8,7,23,148,19,9,28,141,72,0,0,1,19,10,22,19,11,22,19,12,8,19,13,22,19,14,23,19,15,22,19,16,22,19,17,56,96,3,0,0,17,6,19,25,22,19,6,17,12,19,11,4,17,10,17,9,18,12,40,156,3,0,6,45,2,20,42,9,17,12,210,111,250,0,0,10,17,12,31,106,46,3,23,19,15,17,12,31,106,46,16,17,14,23,88,19,14,17,13,17,14,17,12,90,88,19,13,17,9,19,8,17,10,19,26,22,19,27,43,20,17,26,17,27,148,19,28,17,9,17,28,88,19,9,17,27,23,88,19,27,17,27,17,26,142,105,50,228,17,12,31,103,89,24,53,2,20,42,17,4,31,99,89,69,3,0,0,0,57,2,0,0,56,1,0,0,5,0,0,0,56,189,2,0,0,17,12,31,64,47,50,17,17,17,16,51,16,17,7,31,32,17,12,88,209,111,23,0,0,10,38,43,20,17,7,31,32,17,12,88,32,128,0,0,0,88,209,111,23,0,0,10,38,22,19,17,56,133,2,0,0,17,12,31,96,47,44,17,17,17,16,51,16,17,7,17,12,31,64,89,209,111,23,0,0,10,38,43,14,17,7,17,12,31,64,88,209,111,23,0,0,10,38,22,19,17,56,83,2,0,0,17,12,31,106,46,3,22,19,15,17,12,31,96,89,69,11,0,0,0,20,2,0,0,20,2,0,0,100,0,0,0,121,0,0,0,112,0,0,0,53,0,0,0,5,0,0,0,20,2,0,0,20,2,0,0,20,2,0,0,130,0,0,0,56,15,2,0,0,6,57,9,2,0,0,17,7,111,120,0,0,10,45,18,17,7,114,35,21,0,112,111,119,0,0,10,38,56,238,1,0,0,17,7,31,29,111,23,0,0,10,38,56,223,1,0,0,17,16,22,254,1,17,17,95,44,11,23,19,16,22,19,17,56,202,1,0,0,17,16,17,17,95,44,11,22,19,16,22,19,17,56,184,1,0,0,23,19,17,56,176,1,0,0,23,19,6,31,100,19,4,56,164,1,0,0,31,100,19,4,56,155,1,0,0,31,99,19,4,56,146,1,0,0,23,19,5,56,138,1,0,0,17,12,31,96,47,50,17,17,17,16,51,16,17,7,31,32,17,12,88,209,111,23,0,0,10,38,43,20,17,7,31,32,17,12,88,32,128,0,0,0,88,209,111,23,0,0,10,38,22,19,17,56,82,1,0,0,17,12,31,106,46,3,22,19,15,17,12,31,96,89,69,11,0,0,0,19,1,0,0,19,1,0,0,100,0,0,0,121,0,0,0,53,0,0,0,112,0,0,0,5,0,0,0,19,1,0,0,19,1,0,0,19,1,0,0,130,0,0,0,56,14,1,0,0,6,57,8,1,0,0,17,7,111,120,0,0,10,45,18,17,7,114,35,21,0,112,111,119,0,0,10,38,56,237,0,0,0,17,7,31,29,111,23,0,0,10,38,56,222,0,0,0,17,16,22,254,1,17,17,95,44,11,23,19,16,22,19,17,56,201,0,0,0,17,16,17,17,95,44,11,22,19,16,22,19,17,56,183,0,0,0,23,19,17,56,175,0,0,0,23,19,6,31,101,19,4,56,163,0,0,0,31,101,19,4,56,154,0,0,0,31,99,19,4,56,145,0,0,0,23,19,5,56,137,0,0,0,17,12,31,100,47,28,17,12,31,10,47,10,17,7,31,48,111,23,0,0,10,38,17,7,17,12,111,191,0,0,10,38,43,103,17,12,31,106,46,3,22,19,15,17,12,31,100,89,69,7,0,0,0,47,0,0,0,41,0,0,0,2,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,53,0,0,0,43,54,6,44,51,17,7,111,120,0,0,10,45,15,17,7,114,35,21,0,112,111,119,0,0,10,38,43,27,17,7,31,29,111,23,0,0,10,38,43,15,31,101,19,4,43,9,31,100,19,4,43,3,23,19,5,17,25,44,14,17,4,31,101,46,4,31,101,43,2,31,100,19,4,17,5,57,153,252,255,255,17,9,17,8,89,19,18,4,17,9,111,13,6,0,6,19,9,4,17,9,4,111,2,6,0,6,17,9,17,9,17,8,89,24,91,88,40,140,0,0,10,22,111,17,6,0,6,45,2,20,42,17,13,17,14,17,11,90,89,19,13,17,13,31,103,93,17,11,46,2,20,42,17,7,111,120,0,0,10,19,19,17,19,45,2,20,42,17,19,22,254,2,17,15,95,44,34,17,4,31,99,51,15,17,7,17,19,24,89,24,111,150,0,0,10,38,43,13,17,7,17,19,23,89,23,111,150,0,0,10,38,7,23,148,7,22,148,88,107,34,0,0,0,64,91,19,20,17,8,107,17,18,107,34,0,0,0,64,91,88,19,21,5,44,23,5,29,111,44,0,0,10,44,14,5,29,111,77,0,0,10,116,41,0,0,2,43,1,20,19,22,17,22,44,32,17,22,17,20,3,107,115,59,1,0,6,111,69,1,0,6,17,22,17,21,3,107,115,59,1,0,6,111,69,1,0,6,9,111,251,0,0,10,19,23,17,23,141,74,0,0,1,19,24,22,19,29,43,19,17,24,17,29,9,17,29,111,252,0,0,10,156,17,29,23,88,19,29,17,29,17,23,50,231,17,7,111,25,0,0,10,17,24,24,141,40,0,0,2,37,22,17,20,3,107,115,59,1,0,6,162,37,23,17,21,3,107,115,59,1,0,6,162,31,16,115,50,1,0,6,42,30,2,40,9,4,0,6,42,0,0,0,19,48,6,0,239,8,0,0,0,0,0,0,31,107,141,55,0,0,27,37,22,28,141,72,0,0,1,37,208,196,5,0,4,40,153,0,0,10,162,37,23,28,141,72,0,0,1,37,208,135,5,0,4,40,153,0,0,10,162,37,24,28,141,72,0,0,1,37,208,110,5,0,4,40,153,0,0,10,162,37,25,28,141,72,0,0,1,37,208,197,5,0,4,40,153,0,0,10,162,37,26,28,141,72,0,0,1,37,208,171,4,0,4,40,153,0,0,10,162,37,27,28,141,72,0,0,1,37,208,17,5,0,4,40,153,0,0,10,162,37,28,28,141,72,0,0,1,37,208,195,4,0,4,40,153,0,0,10,162,37,29,28,141,72,0,0,1,37,208,157,5,0,4,40,153,0,0,10,162,37,30,28,141,72,0,0,1,37,208,139,4,0,4,40,153,0,0,10,162,37,31,9,28,141,72,0,0,1,37,208,142,4,0,4,40,153,0,0,10,162,37,31,10,28,141,72,0,0,1,37,208,1,5,0,4,40,153,0,0,10,162,37,31,11,28,141,72,0,0,1,37,208,253,4,0,4,40,153,0,0,10,162,37,31,12,28,141,72,0,0,1,37,208,202,4,0,4,40,153,0,0,10,162,37,31,13,28,141,72,0,0,1,37,208,154,4,0,4,40,153,0,0,10,162,37,31,14,28,141,72,0,0,1,37,208,186,4,0,4,40,153,0,0,10,162,37,31,15,28,141,72,0,0,1,37,208,235,4,0,4,40,153,0,0,10,162,37,31,16,28,141,72,0,0,1,37,208,59,5,0,4,40,153,0,0,10,162,37,31,17,28,141,72,0,0,1,37,208,155,5,0,4,40,153,0,0,10,162,37,31,18,28,141,72,0,0,1,37,208,153,5,0,4,40,153,0,0,10,162,37,31,19,28,141,72,0,0,1,37,208,108,5,0,4,40,153,0,0,10,162,37,31,20,28,141,72,0,0,1,37,208,165,5,0,4,40,153,0,0,10,162,37,31,21,28,141,72,0,0,1,37,208,231,4,0,4,40,153,0,0,10,162,37,31,22,28,141,72,0,0,1,37,208,82,5,0,4,40,153,0,0,10,162,37,31,23,28,141,72,0,0,1,37,208,178,4,0,4,40,153,0,0,10,162,37,31,24,28,141,72,0,0,1,37,208,107,5,0,4,40,153,0,0,10,162,37,31,25,28,141,72,0,0,1,37,208,125,4,0,4,40,153,0,0,10,162,37,31,26,28,141,72,0,0,1,37,208,76,5,0,4,40,153,0,0,10,162,37,31,27,28,141,72,0,0,1,37,208,28,5,0,4,40,153,0,0,10,162,37,31,28,28,141,72,0,0,1,37,208,23,5,0,4,40,153,0,0,10,162,37,31,29,28,141,72,0,0,1,37,208,154,5,0,4,40,153,0,0,10,162,37,31,30,28,141,72,0,0,1,37,208,221,4,0,4,40,153,0,0,10,162,37,31,31,28,141,72,0,0,1,37,208,15,5,0,4,40,153,0,0,10,162,37,31,32,28,141,72,0,0,1,37,208,208,4,0,4,40,153,0,0,10,162,37,31,33,28,141,72,0,0,1,37,208,26,5,0,4,40,153,0,0,10,162,37,31,34,28,141,72,0,0,1,37,208,87,4,0,4,40,153,0,0,10,162,37,31,35,28,141,72,0,0,1,37,208,91,4,0,4,40,153,0,0,10,162,37,31,36,28,141,72,0,0,1,37,208,6,5,0,4,40,153,0,0,10,162,37,31,37,28,141,72,0,0,1,37,208,141,5,0,4,40,153,0,0,10,162,37,31,38,28,141,72,0,0,1,37,208,99,5,0,4,40,153,0,0,10,162,37,31,39,28,141,72,0,0,1,37,208,89,5,0,4,40,153,0,0,10,162,37,31,40,28,141,72,0,0,1,37,208,212,4,0,4,40,153,0,0,10,162,37,31,41,28,141,72,0,0,1,37,208,103,4,0,4,40,153,0,0,10,162,37,31,42,28,141,72,0,0,1,37,208,132,5,0,4,40,153,0,0,10,162,37,31,43,28,141,72,0,0,1,37,208,55,4,0,4,40,153,0,0,10,162,37,31,44,28,141,72,0,0,1,37,208,89,4,0,4,40,153,0,0,10,162,37,31,45,28,141,72,0,0,1,37,208,157,4,0,4,40,153,0,0,10,162,37,31,46,28,141,72,0,0,1,37,208,56,4,0,4,40,153,0,0,10,162,37,31,47,28,141,72,0,0,1,37,208,66,4,0,4,40,153,0,0,10,162,37,31,48,28,141,72,0,0,1,37,208,80,5,0,4,40,153,0,0,10,162,37,31,49,28,141,72,0,0,1,37,208,39,5,0,4,40,153,0,0,10,162,37,31,50,28,141,72,0,0,1,37,208,40,5,0,4,40,153,0,0,10,162,37,31,51,28,141,72,0,0,1,37,208,228,4,0,4,40,153,0,0,10,162,37,31,52,28,141,72,0,0,1,37,208,94,5,0,4,40,153,0,0,10,162,37,31,53,28,141,72,0,0,1,37,208,52,4,0,4,40,153,0,0,10,162,37,31,54,28,141,72,0,0,1,37,208,237,4,0,4,40,153,0,0,10,162,37,31,55,28,141,72,0,0,1,37,208,21,5,0,4,40,153,0,0,10,162,37,31,56,28,141,72,0,0,1,37,208,158,4,0,4,40,153,0,0,10,162,37,31,57,28,141,72,0,0,1,37,208,189,4,0,4,40,153,0,0,10,162,37,31,58,28,141,72,0,0,1,37,208,30,5,0,4,40,153,0,0,10,162,37,31,59,28,141,72,0,0,1,37,208,128,5,0,4,40,153,0,0,10,162,37,31,60,28,141,72,0,0,1,37,208,194,5,0,4,40,153,0,0,10,162,37,31,61,28,141,72,0,0,1,37,208,226,5,0,4,40,153,0,0,10,162,37,31,62,28,141,72,0,0,1,37,208,152,5,0,4,40,153,0,0,10,162,37,31,63,28,141,72,0,0,1,37,208,192,5,0,4,40,153,0,0,10,162,37,31,64,28,141,72,0,0,1,37,208,31,5,0,4,40,153,0,0,10,162,37,31,65,28,141,72,0,0,1,37,208,62,4,0,4,40,153,0,0,10,162,37,31,66,28,141,72,0,0,1,37,208,201,5,0,4,40,153,0,0,10,162,37,31,67,28,141,72,0,0,1,37,208,71,4,0,4,40,153,0,0,10,162,37,31,68,28,141,72,0,0,1,37,208,60,5,0,4,40,153,0,0,10,162,37,31,69,28,141,72,0,0,1,37,208,133,5,0,4,40,153,0,0,10,162,37,31,70,28,141,72,0,0,1,37,208,160,4,0,4,40,153,0,0,10,162,37,31,71,28,141,72,0,0,1,37,208,236,4,0,4,40,153,0,0,10,162,37,31,72,28,141,72,0,0,1,37,208,83,5,0,4,40,153,0,0,10,162,37,31,73,28,141,72,0,0,1,37,208,171,5,0,4,40,153,0,0,10,162,37,31,74,28,141,72,0,0,1,37,208,162,4,0,4,40,153,0,0,10,162,37,31,75,28,141,72,0,0,1,37,208,129,4,0,4,40,153,0,0,10,162,37,31,76,28,141,72,0,0,1,37,208,97,4,0,4,40,153,0,0,10,162,37,31,77,28,141,72,0,0,1,37,208,99,4,0,4,40,153,0,0,10,162,37,31,78,28,141,72,0,0,1,37,208,133,4,0,4,40,153,0,0,10,162,37,31,79,28,141,72,0,0,1,37,208,179,5,0,4,40,153,0,0,10,162,37,31,80,28,141,72,0,0,1,37,208,100,5,0,4,40,153,0,0,10,162,37,31,81,28,141,72,0,0,1,37,208,114,5,0,4,40,153,0,0,10,162,37,31,82,28,141,72,0,0,1,37,208,0,5,0,4,40,153,0,0,10,162,37,31,83,28,141,72,0,0,1,37,208,90,4,0,4,40,153,0,0,10,162,37,31,84,28,141,72,0,0,1,37,208,84,4,0,4,40,153,0,0,10,162,37,31,85,28,141,72,0,0,1,37,208,226,4,0,4,40,153,0,0,10,162,37,31,86,28,141,72,0,0,1,37,208,162,5,0,4,40,153,0,0,10,162,37,31,87,28,141,72,0,0,1,37,208,215,4,0,4,40,153,0,0,10,162,37,31,88,28,141,72,0,0,1,37,208,127,5,0,4,40,153,0,0,10,162,37,31,89,28,141,72,0,0,1,37,208,86,5,0,4,40,153,0,0,10,162,37,31,90,28,141,72,0,0,1,37,208,170,5,0,4,40,153,0,0,10,162,37,31,91,28,141,72,0,0,1,37,208,127,4,0,4,40,153,0,0,10,162,37,31,92,28,141,72,0,0,1,37,208,193,5,0,4,40,153,0,0,10,162,37,31,93,28,141,72,0,0,1,37,208,129,5,0,4,40,153,0,0,10,162,37,31,94,28,141,72,0,0,1,37,208,224,5,0,4,40,153,0,0,10,162,37,31,95,28,141,72,0,0,1,37,208,141,4,0,4,40,153,0,0,10,162,37,31,96,28,141,72,0,0,1,37,208,63,4,0,4,40,153,0,0,10,162,37,31,97,28,141,72,0,0,1,37,208,243,4,0,4,40,153,0,0,10,162,37,31,98,28,141,72,0,0,1,37,208,11,5,0,4,40,153,0,0,10,162,37,31,99,28,141,72,0,0,1,37,208,146,4,0,4,40,153,0,0,10,162,37,31,100,28,141,72,0,0,1,37,208,106,5,0,4,40,153,0,0,10,162,37,31,101,28,141,72,0,0,1,37,208,250,4,0,4,40,153,0,0,10,162,37,31,102,28,141,72,0,0,1,37,208,163,5,0,4,40,153,0,0,10,162,37,31,103,28,141,72,0,0,1,37,208,146,5,0,4,40,153,0,0,10,162,37,31,104,28,141,72,0,0,1,37,208,200,4,0,4,40,153,0,0,10,162,37,31,105,28,141,72,0,0,1,37,208,123,4,0,4,40,153,0,0,10,162,37,31,106,29,141,72,0,0,1,37,208,176,5,0,4,40,153,0,0,10,162,128,182,1,0,4,126,11,2,0,4,107,34,0,0,128,62,90,105,128,183,1,0,4,126,11,2,0,4,107,34,51,51,51,63,90,105,128,184,1,0,4,42,0,19,48,6,0,177,0,0,0,0,0,0,0,4,31,16,46,22,114,43,21,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,14,5,44,43,14,5,31,14,111,126,0,0,10,44,32,14,5,31,14,111,127,0,0,10,44,21,14,5,31,14,111,127,0,0,10,111,25,0,0,10,40,181,0,0,10,43,1,22,125,214,1,0,4,14,5,44,78,14,5,31,18,111,126,0,0,10,44,67,14,5,31,18,111,127,0,0,10,44,56,14,5,31,18,111,127,0,0,10,111,25,0,0,10,40,181,0,0,10,44,35,3,40,124,0,0,10,45,27,3,22,111,27,0,0,10,32,241,0,0,0,46,13,114,113,21,0,112,3,40,238,0,0,10,16,1,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,0,0,27,48,5,0,81,2,0,0,218,0,0,17,3,111,30,0,0,10,10,6,23,50,5,6,31,80,49,22,114,117,21,0,112,6,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,22,19,9,43,74,3,17,9,111,27,0,0,10,19,10,17,10,32,241,0,0,0,89,69,4,0,0,0,29,0,0,0,29,0,0,0,29,0,0,0,29,0,0,0,17,10,31,127,49,23,114,245,21,0,112,18,10,40,28,0,0,10,40,238,0,0,10,115,31,0,0,10,122,17,9,23,88,19,9,17,9,6,50,177,115,230,0,0,10,11,22,12,23,13,22,19,4,22,19,5,56,254,0,0,0,2,3,17,5,17,4,40,163,3,0,6,19,11,17,11,17,4,64,161,0,0,0,3,17,5,111,27,0,0,10,19,13,17,13,32,241,0,0,0,89,69,4,0,0,0,2,0,0,0,8,0,0,0,14,0,0,0,20,0,0,0,43,36,31,102,19,12,43,106,31,97,19,12,43,100,31,96,19,12,43,94,17,11,31,101,51,6,31,101,19,12,43,82,31,100,19,12,43,76,17,4,31,100,46,33,17,4,31,101,51,42,3,17,5,111,27,0,0,10,31,32,89,19,12,17,12,22,47,46,17,12,31,96,88,19,12,43,37,3,17,5,111,27,0,0,10,31,32,89,19,12,43,22,3,17,5,24,111,241,0,0,10,40,182,0,0,10,19,12,17,5,23,88,19,5,17,5,23,88,19,5,43,42,17,4,45,30,17,11,31,100,46,12,17,11,31,101,51,12,31,103,19,12,43,16,31,104,19,12,43,10,31,105,19,12,43,4,17,11,19,12,17,11,19,4,7,126,182,1,0,4,17,12,154,111,231,0,0,10,8,17,12,9,90,88,12,17,5,44,4,9,23,88,13,17,5,6,63,250,254,255,255,8,31,103,93,12,7,126,182,1,0,4,8,154,111,231,0,0,10,7,126,182,1,0,4,31,106,154,111,231,0,0,10,22,19,6,7,111,253,0,0,10,19,14,43,42,18,14,40,254,0,0,10,19,15,22,19,16,43,20,17,15,17,16,148,19,17,17,6,17,17,88,19,6,17,16,23,88,19,16,17,16,17,15,142,105,50,228,18,14,40,255,0,0,10,45,205,222,14,18,14,254,22,85,0,0,27,111,60,0,0,10,220,17,6,141,71,0,0,1,19,7,22,19,8,7,111,253,0,0,10,19,14,43,26,18,14,40,254,0,0,10,19,18,17,8,17,7,17,8,17,18,23,40,251,3,0,6,88,19,8,18,14,40,255,0,0,10,45,221,222,14,18,14,254,22,85,0,0,27,111,60,0,0,10,220,17,7,42,0,0,0,1,28,0,0,2,0,192,1,55,247,1,14,0,0,0,0,2,0,25,2,39,64,2,14,0,0,0,0,19,48,3,0,75,0,0,0,219,0,0,17,2,111,30,0,0,10,10,3,6,50,2,22,42,2,3,111,27,0,0,10,11,7,32,241,0,0,0,51,2,25,42,7,31,48,50,5,7,31,57,49,2,22,42,3,23,88,6,50,2,23,42,2,3,23,88,111,27,0,0,10,11,7,31,48,50,5,7,31,57,49,2,23,42,24,42,0,19,48,3,0,209,0,0,0,220,0,0,17,3,4,40,162,3,0,6,10,6,23,51,3,31,100,42,6,45,38,4,3,111,30,0,0,10,47,26,3,4,111,27,0,0,10,11,7,31,32,50,10,5,31,101,51,8,7,31,96,47,3,31,101,42,31,100,42,5,31,99,51,3,31,99,42,5,31,100,51,105,6,25,51,3,31,100,42,3,4,24,88,40,162,3,0,6,10,6,44,4,6,23,51,3,31,100,42,6,25,51,31,3,4,25,88,40,162,3,0,6,10,6,24,51,14,2,123,214,1,0,4,45,3,31,99,42,31,100,42,31,100,42,4,26,88,12,43,4,8,24,88,12,3,8,40,162,3,0,6,37,10,24,46,240,6,23,51,3,31,100,42,2,123,214,1,0,4,45,3,31,99,42,31,100,42,6,25,51,10,3,4,23,88,40,162,3,0,6,10,6,24,51,14,2,123,214,1,0,4,45,3,31,99,42,31,100,42,31,100,42,26,126,215,1,0,4,42,34,2,22,40,167,3,0,6,42,38,2,3,22,40,168,3,0,6,42,190,2,40,9,4,0,6,2,3,125,218,1,0,4,2,4,125,219,1,0,4,2,31,20,115,22,0,0,10,125,220,1,0,4,2,31,9,141,72,0,0,1,125,221,1,0,4,42,0,19,48,7,0,194,2,0,0,221,0,0,17,22,19,13,43,16,2,123,221,1,0,4,17,13,22,158,17,13,23,88,19,13,17,13,2,123,221,1,0,4,142,105,50,228,2,123,220,1,0,4,22,111,121,0,0,10,4,2,123,221,1,0,4,40,170,3,0,6,10,6,45,2,20,42,4,6,23,148,111,12,6,0,6,11,4,111,2,6,0,6,12,4,7,2,123,221,1,0,4,40,4,4,0,6,45,2,20,42,2,123,221,1,0,4,40,171,3,0,6,19,14,17,14,22,47,2,20,42,17,14,18,3,40,172,3,0,6,45,2,20,42,2,123,220,1,0,4,9,111,23,0,0,10,38,7,19,4,2,123,221,1,0,4,19,15,22,19,16,43,18,17,15,17,16,148,19,17,7,17,17,88,11,17,16,23,88,19,16,17,16,17,15,142,105,50,230,4,7,111,12,6,0,6,11,9,31,42,51,138,2,123,220,1,0,4,2,123,220,1,0,4,111,120,0,0,10,23,89,111,121,0,0,10,22,19,5,2,123,221,1,0,4,19,15,22,19,16,43,20,17,15,17,16,148,19,18,17,5,17,18,88,19,5,17,16,23,88,19,16,17,16,17,15,142,105,50,228,7,17,4,89,17,5,89,19,6,7,8,46,10,17,6,23,98,17,5,47,2,20,42,2,123,218,1,0,4,19,7,5,44,23,5,28,111,44,0,0,10,44,14,5,28,111,77,0,0,10,165,71,0,0,1,19,7,17,7,44,108,2,123,220,1,0,4,111,120,0,0,10,23,89,19,19,22,19,20,22,19,21,43,34,17,20,126,215,1,0,4,2,123,220,1,0,4,17,21,111,149,0,0,10,111,0,1,0,10,88,19,20,17,21,23,88,19,21,17,21,17,19,50,216,2,123,220,1,0,4,17,19,111,149,0,0,10,126,215,1,0,4,17,20,31,43,93,111,27,0,0,10,46,2,20,42,2,123,220,1,0,4,17,19,111,121,0,0,10,2,123,220,1,0,4,111,120,0,0,10,45,2,20,42,2,123,219,1,0,4,19,8,5,44,25,5,31,9,111,44,0,0,10,44,15,5,31,9,111,77,0,0,10,165,71,0,0,1,19,8,17,8,44,67,2,123,220,1,0,4,111,25,0,0,10,40,173,3,0,6,19,9,17,9,45,58,5,44,40,5,31,10,111,44,0,0,10,44,30,5,31,10,111,77,0,0,10,40,1,1,0,10,44,15,2,123,220,1,0,4,111,25,0,0,10,19,9,43,15,20,42,2,123,220,1,0,4,111,25,0,0,10,19,9,6,23,148,6,22,148,88,107,34,0,0,0,64,91,19,10,17,4,107,17,5,107,34,0,0,0,64,91,88,19,11,5,44,23,5,29,111,44,0,0,10,44,14,5,29,111,77,0,0,10,116,41,0,0,2,43,1,20,19,12,17,12,44,32,17,12,17,10,3,107,115,59,1,0,6,111,69,1,0,6,17,12,17,11,3,107,115,59,1,0,6,111,69,1,0,6,17,9,20,24,141,40,0,0,2,37,22,17,10,3,107,115,59,1,0,6,162,37,23,17,11,3,107,115,59,1,0,6,162,26,115,50,1,0,6,42,0,0,19,48,6,0,184,0,0,0,222,0,0,17,2,111,2,6,0,6,10,2,22,111,12,6,0,6,22,11,37,12,22,13,3,142,105,19,4,19,5,56,142,0,0,0,2,17,5,111,4,6,0,6,9,46,14,3,7,143,72,0,0,1,37,74,23,88,84,43,111,7,17,4,23,89,51,91,3,40,171,3,0,6,126,217,1,0,4,51,40,2,22,8,17,5,8,89,23,99,89,40,139,0,0,10,8,22,111,17,6,0,6,44,16,24,141,72,0,0,1,37,22,8,158,37,23,17,5,158,42,8,3,22,148,3,23,148,88,88,12,3,24,3,22,7,23,89,40,94,0,0,10,3,7,23,89,22,158,3,7,22,158,7,23,89,11,43,4,7,23,88,11,3,7,23,158,9,22,254,1,13,17,5,23,88,19,5,17,5,6,63,106,255,255,255,20,42,19,48,4,0,179,0,0,0,223,0,0,17,2,142,105,10,22,11,32,255,255,255,127,13,2,19,6,22,19,7,43,26,17,6,17,7,148,19,8,17,8,9,47,8,17,8,7,49,3,17,8,13,17,7,23,88,19,7,17,7,17,6,142,105,50,222,9,11,22,12,22,19,4,22,19,5,22,19,9,43,44,2,17,9,148,19,10,17,10,7,49,27,17,5,23,6,23,89,17,9,89,31,31,95,98,96,19,5,8,23,88,12,17,4,17,10,88,19,4,17,9,23,88,19,9,17,9,6,50,207,8,25,51,48,22,19,11,43,31,2,17,11,148,19,12,17,12,7,49,14,8,23,89,12,17,12,23,98,17,4,50,2,21,42,17,11,23,88,19,11,17,11,6,47,4,8,22,48,216,17,5,42,8,25,61,85,255,255,255,21,42,0,19,48,3,0,56,0,0,0,1,0,0,17,22,10,43,29,126,216,1,0,4,6,148,2,51,15,3,126,215,1,0,4,6,111,27,0,0,10,83,23,42,6,23,88,10,6,126,216,1,0,4,142,105,50,217,3,31,42,83,2,126,217,1,0,4,254,1,42,19,48,3,0,147,1,0,0,224,0,0,17,2,111,30,0,0,10,10,6,115,22,0,0,10,11,22,12,56,112,1,0,0,2,8,111,27,0,0,10,13,9,31,43,46,18,9,31,36,46,13,9,31,37,46,8,9,31,47,64,69,1,0,0,8,23,88,2,111,30,0,0,10,50,2,20,42,2,8,23,88,111,27,0,0,10,19,4,22,19,5,9,31,37,53,15,9,31,36,46,55,9,31,37,46,77,56,7,1,0,0,9,31,43,46,13,9,31,47,59,214,0,0,0,56,245,0,0,0,17,4,31,65,50,19,17,4,31,90,48,13,17,4,31,32,88,209,19,5,56,220,0,0,0,20,42,17,4,31,65,50,19,17,4,31,90,48,13,17,4,31,64,89,209,19,5,56,193,0,0,0,20,42,17,4,31,65,50,19,17,4,31,69,48,13,17,4,31,38,89,209,19,5,56,166,0,0,0,17,4,31,70,50,19,17,4,31,74,48,13,17,4,31,11,89,209,19,5,56,141,0,0,0,17,4,31,75,50,16,17,4,31,79,48,10,17,4,31,16,88,209,19,5,43,119,17,4,31,80,50,16,17,4,31,84,48,10,17,4,31,43,88,209,19,5,43,97,17,4,31,85,51,5,22,19,5,43,86,17,4,31,86,51,6,31,64,19,5,43,74,17,4,31,87,51,6,31,96,19,5,43,62,17,4,31,88,46,12,17,4,31,89,46,6,17,4,31,90,51,6,31,127,19,5,43,38,20,42,17,4,31,65,50,16,17,4,31,79,48,10,17,4,31,32,89,209,19,5,43,14,17,4,31,90,51,6,31,58,19,5,43,2,20,42,7,17,5,111,23,0,0,10,38,8,23,88,12,43,8,7,9,111,23,0,0,10,38,8,23,88,12,8,6,63,137,254,255,255,7,111,25,0,0,10,42,178,114,39,22,0,112,128,215,1,0,4,31,43,141,72,0,0,1,37,208,51,4,0,4,40,153,0,0,10,128,216,1,0,4,32,148,0,0,0,128,217,1,0,4,42,162,4,26,46,22,114,127,22,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,0,0,19,48,5,0,162,1,0,0,225,0,0,17,3,111,30,0,0,10,10,6,31,80,49,22,114,195,22,0,112,6,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,22,19,6,43,115,126,215,1,0,4,3,17,6,111,27,0,0,10,111,0,1,0,10,22,47,88,3,17,6,111,27,0,0,10,19,7,3,40,178,3,0,6,16,1,3,45,28,114,67,23,0,112,18,7,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,3,111,30,0,0,10,10,6,31,80,49,38,114,195,22,0,112,6,140,72,0,0,1,114,179,23,0,112,40,75,0,0,10,115,31,0,0,10,122,17,6,23,88,19,6,17,6,6,50,136,31,9,141,72,0,0,1,11,31,25,6,88,12,22,19,8,43,74,126,215,1,0,4,3,17,8,111,27,0,0,10,111,0,1,0,10,19,9,126,216,1,0,4,17,9,148,7,40,177,3,0,6,7,19,10,22,19,11,43,18,17,10,17,11,148,19,12,8,17,12,88,12,17,11,23,88,19,11,17,11,17,10,142,105,50,230,17,8,23,88,19,8,17,8,6,50,177,8,141,71,0,0,1,13,126,217,1,0,4,7,40,177,3,0,6,9,22,7,23,40,251,3,0,6,19,4,23,141,72,0,0,1,37,22,23,158,19,5,17,4,9,17,4,17,5,22,40,251,3,0,6,88,19,4,22,19,13,43,71,126,215,1,0,4,3,17,13,111,27,0,0,10,111,0,1,0,10,19,14,126,216,1,0,4,17,14,148,7,40,177,3,0,6,17,4,9,17,4,7,23,40,251,3,0,6,88,19,4,17,4,9,17,4,17,5,22,40,251,3,0,6,88,19,4,17,13,23,88,19,13,17,13,6,50,180,126,217,1,0,4,7,40,177,3,0,6,9,17,4,7,23,40,251,3,0,6,38,9,42,0,0,19,48,4,0,35,0,0,0,2,0,0,17,22,10,43,25,2,23,30,6,89,31,31,95,98,95,11,3,6,7,44,3,24,43,1,23,158,6,23,88,10,6,31,9,50,226,42,0,19,48,4,0,28,2,0,0,226,0,0,17,2,111,30,0,0,10,10,115,115,0,0,10,11,22,12,56,250,1,0,0,2,8,111,27,0,0,10,13,9,31,45,48,15,9,44,29,9,31,32,46,41,9,31,45,46,53,43,119,9,31,46,46,63,9,31,64,46,75,9,31,96,46,87,43,102,7,114,235,23,0,112,111,119,0,0,10,38,56,184,1,0,0,7,114,241,23,0,112,111,119,0,0,10,38,56,167,1,0,0,7,114,245,23,0,112,111,119,0,0,10,38,56,150,1,0,0,7,114,249,23,0,112,111,119,0,0,10,38,56,133,1,0,0,7,114,253,23,0,112,111,119,0,0,10,38,56,116,1,0,0,7,114,3,24,0,112,111,119,0,0,10,38,56,99,1,0,0,9,22,49,36,9,31,27,47,31,7,114,9,24,0,112,111,119,0,0,10,38,7,31,65,9,23,89,88,209,111,23,0,0,10,38,56,59,1,0,0,9,31,26,49,37,9,31,32,47,32,7,114,13,24,0,112,111,119,0,0,10,38,7,31,65,9,31,27,89,88,209,111,23,0,0,10,38,56,17,1,0,0,9,31,32,49,5,9,31,45,50,10,9,31,47,46,5,9,31,58,51,32,7,114,197,14,0,112,111,119,0,0,10,38,7,31,65,9,31,33,89,88,209,111,23,0,0,10,38,56,221,0,0,0,9,31,47,49,25,9,31,58,47,20,7,31,48,9,31,48,89,88,209,111,23,0,0,10,38,56,191,0,0,0,9,31,58,49,37,9,31,64,47,32,7,114,13,24,0,112,111,119,0,0,10,38,7,31,70,9,31,59,89,88,209,111,23,0,0,10,38,56,149,0,0,0,9,31,64,49,22,9,31,91,47,17,7,31,65,9,31,65,89,88,209,111,23,0,0,10,38,43,122,9,31,90,49,34,9,31,96,47,29,7,114,13,24,0,112,111,119,0,0,10,38,7,31,75,9,31,91,89,88,209,111,23,0,0,10,38,43,83,9,31,96,49,34,9,31,123,47,29,7,114,17,24,0,112,111,119,0,0,10,38,7,31,65,9,31,97,89,88,209,111,23,0,0,10,38,43,44,9,31,122,49,37,9,32,128,0,0,0,47,29,7,114,13,24,0,112,111,119,0,0,10,38,7,31,80,9,31,123,89,88,209,111,23,0,0,10,38,43,2,20,42,8,23,88,12,8,6,63,255,253,255,255,7,111,25,0,0,10,42,130,2,40,9,4,0,6,2,31,20,115,22,0,0,10,125,226,1,0,4,2,28,141,72,0,0,1,125,227,1,0,4,42,0,0,0,19,48,7,0,232,1,0,0,227,0,0,17,22,19,10,43,16,2,123,227,1,0,4,17,10,22,158,17,10,23,88,19,10,17,10,2,123,227,1,0,4,142,105,50,228,2,123,226,1,0,4,22,111,121,0,0,10,2,4,40,182,3,0,6,10,6,45,2,20,42,4,6,23,148,111,12,6,0,6,11,4,111,2,6,0,6,12,4,7,2,123,227,1,0,4,40,4,4,0,6,45,2,20,42,2,123,227,1,0,4,40,183,3,0,6,19,11,17,11,22,47,2,20,42,17,11,18,3,40,184,3,0,6,45,2,20,42,2,123,226,1,0,4,9,111,23,0,0,10,38,7,19,4,2,123,227,1,0,4,19,12,22,19,13,43,18,17,12,17,13,148,19,14,7,17,14,88,11,17,13,23,88,19,13,17,13,17,12,142,105,50,230,4,7,111,12,6,0,6,11,9,31,42,51,138,2,123,226,1,0,4,2,123,226,1,0,4,111,120,0,0,10,23,89,23,111,150,0,0,10,38,22,19,5,2,123,227,1,0,4,19,12,22,19,13,43,20,17,12,17,13,148,19,15,17,5,17,15,88,19,5,17,13,23,88,19,13,17,13,17,12,142,105,50,228,7,8,46,9,4,7,111,4,6,0,6,45,2,20,42,2,123,226,1,0,4,111,120,0,0,10,24,47,2,20,42,2,123,226,1,0,4,40,186,3,0,6,45,2,20,42,2,123,226,1,0,4,2,123,226,1,0,4,111,120,0,0,10,24,89,111,121,0,0,10,2,123,226,1,0,4,40,185,3,0,6,19,6,17,6,45,2,20,42,6,23,148,6,22,148,88,107,34,0,0,0,64,91,19,7,17,4,107,17,5,107,34,0,0,0,64,91,88,19,8,5,44,23,5,29,111,44,0,0,10,44,14,5,29,111,77,0,0,10,116,41,0,0,2,43,1,20,19,9,17,9,44,32,17,9,17,7,3,107,115,59,1,0,6,111,69,1,0,6,17,9,17,8,3,107,115,59,1,0,6,111,69,1,0,6,17,6,20,24,141,40,0,0,2,37,22,17,7,3,107,115,59,1,0,6,162,37,23,17,8,3,107,115,59,1,0,6,162,30,115,50,1,0,6,42,19,48,6,0,252,0,0,0,228,0,0,17,3,111,2,6,0,6,10,3,22,111,12,6,0,6,11,22,19,6,43,16,2,123,227,1,0,4,17,6,22,158,17,6,23,88,19,6,17,6,2,123,227,1,0,4,142,105,50,228,22,12,7,13,22,19,4,2,123,227,1,0,4,142,105,19,5,7,19,7,56,169,0,0,0,3,17,7,111,4,6,0,6,17,4,46,22,2,123,227,1,0,4,8,143,72,0,0,1,37,74,23,88,84,56,129,0,0,0,8,17,5,23,89,51,102,2,123,227,1,0,4,40,183,3,0,6,126,225,1,0,4,51,16,24,141,72,0,0,1,37,22,9,158,37,23,17,7,158,42,9,2,123,227,1,0,4,22,148,2,123,227,1,0,4,23,148,88,88,13,2,123,227,1,0,4,24,2,123,227,1,0,4,22,8,23,89,40,94,0,0,10,2,123,227,1,0,4,8,23,89,22,158,2,123,227,1,0,4,8,22,158,8,23,89,12,43,4,8,23,88,12,2,123,227,1,0,4,8,23,158,17,4,22,254,1,19,4,17,7,23,88,19,7,17,7,6,63,79,255,255,255,20,42,19,48,4,0,154,0,0,0,229,0,0,17,2,142,105,10,22,11,2,13,22,19,4,43,17,9,17,4,148,19,5,7,17,5,88,11,17,4,23,88,19,4,17,4,9,142,105,50,232,22,12,22,19,6,43,103,2,17,6,148,126,10,2,0,4,31,31,95,98,31,9,90,7,91,37,126,10,2,0,4,31,31,95,99,19,7,32,255,0,0,0,95,31,127,49,6,17,7,23,88,19,7,17,7,23,50,5,17,7,26,49,2,21,42,17,6,23,95,45,25,22,19,8,43,12,8,23,98,23,96,12,17,8,23,88,19,8,17,8,17,7,50,238,43,8,8,17,7,31,31,95,98,12,17,6,23,88,19,6,17,6,6,50,148,8,42,0,0,19,48,3,0,45,0,0,0,1,0,0,17,22,10,43,25,126,224,1,0,4,6,148,2,51,11,3,126,223,1,0,4,6,147,83,23,42,6,23,88,10,6,126,224,1,0,4,142,105,50,221,3,31,42,83,22,42,0,0,0,19,48,3,0,80,1,0,0,224,0,0,17,2,111,120,0,0,10,10,6,115,22,0,0,10,11,22,12,56,45,1,0,0,2,8,111,149,0,0,10,13,9,31,97,63,17,1,0,0,9,31,100,61,9,1,0,0,8,6,23,89,50,2,20,42,2,8,23,88,111,149,0,0,10,19,4,22,19,5,9,31,97,89,69,4,0,0,0,32,0,0,0,59,0,0,0,167,0,0,0,5,0,0,0,56,198,0,0,0,17,4,31,65,50,19,17,4,31,90,48,13,17,4,31,32,88,209,19,5,56,173,0,0,0,20,42,17,4,31,65,50,19,17,4,31,90,48,13,17,4,31,64,89,209,19,5,56,146,0,0,0,20,42,17,4,31,65,50,16,17,4,31,69,48,10,17,4,31,38,89,209,19,5,43,122,17,4,31,70,50,16,17,4,31,74,48,10,17,4,31,11,89,209,19,5,43,100,17,4,31,75,50,16,17,4,31,79,48,10,17,4,31,16,88,209,19,5,43,78,17,4,31,80,50,16,17,4,31,83,48,10,17,4,31,43,88,209,19,5,43,56,17,4,31,84,50,12,17,4,31,90,48,6,31,127,19,5,43,38,20,42,17,4,31,65,50,16,17,4,31,79,48,10,17,4,31,32,89,209,19,5,43,14,17,4,31,90,51,6,31,58,19,5,43,2,20,42,7,17,5,111,23,0,0,10,38,8,23,88,12,43,8,7,9,111,23,0,0,10,38,8,23,88,12,8,6,63,204,254,255,255,7,111,25,0,0,10,42,19,48,3,0,39,0,0,0,1,0,0,17,2,111,120,0,0,10,10,2,6,24,89,31,20,40,187,3,0,6,45,2,22,42,2,6,23,89,31,15,40,187,3,0,6,45,2,22,42,23,42,0,19,48,5,0,73,0,0,0,64,0,0,17,23,10,22,11,3,23,89,12,43,36,7,6,114,21,24,0,112,2,8,111,149,0,0,10,40,0,1,0,10,90,88,11,6,23,88,37,10,4,49,2,23,10,8,23,89,12,8,22,47,216,2,3,111,149,0,0,10,126,223,1,0,4,7,31,47,93,147,46,2,22,42,23,42,210,114,21,24,0,112,40,152,0,0,10,128,223,1,0,4,31,48,141,72,0,0,1,37,208,7,5,0,4,40,153,0,0,10,128,224,1,0,4,126,224,1,0,4,31,47,148,128,225,1,0,4,42,162,4,30,46,22,114,119,24,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,19,48,4,0,21,1,0,0,230,0,0,17,3,111,30,0,0,10,10,6,31,80,49,22,114,195,22,0,112,6,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,31,9,141,72,0,0,1,11,3,111,30,0,0,10,24,88,24,88,31,9,90,23,88,126,224,1,0,4,31,47,148,7,40,191,3,0,6,141,71,0,0,1,12,8,22,7,40,193,3,0,6,13,22,19,6,43,51,114,21,24,0,112,3,17,6,111,27,0,0,10,40,0,1,0,10,19,7,126,224,1,0,4,17,7,148,7,40,191,3,0,6,9,8,9,7,40,193,3,0,6,88,13,17,6,23,88,19,6,17,6,6,50,200,3,31,20,40,194,3,0,6,19,4,126,224,1,0,4,17,4,148,7,40,191,3,0,6,9,8,9,7,40,193,3,0,6,88,13,3,114,21,24,0,112,17,4,40,27,0,0,10,19,8,18,8,40,28,0,0,10,40,238,0,0,10,16,1,3,31,15,40,194,3,0,6,19,5,126,224,1,0,4,17,5,148,7,40,191,3,0,6,9,8,9,7,40,193,3,0,6,88,13,126,224,1,0,4,31,47,148,7,40,191,3,0,6,9,8,9,7,40,193,3,0,6,88,13,8,9,23,156,8,42,0,0,0,19,48,4,0,35,0,0,0,2,0,0,17,22,10,43,25,2,23,30,6,89,31,31,95,98,95,11,3,6,7,44,3,23,43,1,22,158,6,23,88,10,6,31,9,50,226,42,38,2,3,4,40,193,3,0,6,42,0,0,0,19,48,4,0,35,0,0,0,178,0,0,17,4,10,22,11,43,20,6,7,148,12,2,3,37,23,88,16,1,8,22,254,3,156,7,23,88,11,7,6,142,105,50,230,31,9,42,0,19,48,3,0,62,0,0,0,111,0,0,17,23,10,22,11,2,111,30,0,0,10,23,89,12,43,38,114,21,24,0,112,2,8,111,27,0,0,10,40,0,1,0,10,13,7,9,6,90,88,11,6,23,88,37,10,3,49,2,23,10,8,23,89,12,8,22,47,214,7,31,47,93,42,78,2,40,41,4,0,6,2,26,141,72,0,0,1,125,229,1,0,4,42,0,0,19,48,5,0,12,1,0,0,231,0,0,17,2,123,229,1,0,4,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,4,23,148,12,22,13,22,19,5,43,93,3,6,8,126,36,2,0,4,18,6,40,51,4,0,6,45,2,21,42,5,31,48,17,6,31,10,93,88,209,111,23,0,0,10,38,6,19,7,22,19,8,43,18,17,7,17,8,148,19,9,8,17,9,88,12,17,8,23,88,19,8,17,8,17,7,142,105,50,230,17,6,31,10,50,12,9,23,27,17,5,89,31,31,95,98,96,13,17,5,23,88,19,5,17,5,28,47,4,8,7,50,154,5,9,40,199,3,0,6,45,2,21,42,3,8,23,126,33,2,0,4,40,49,4,0,6,19,4,17,4,45,2,21,42,17,4,23,148,12,22,19,10,43,72,3,6,8,126,35,2,0,4,18,11,40,51,4,0,6,45,2,21,42,5,31,48,17,11,88,209,111,23,0,0,10,38,6,19,7,22,19,8,43,18,17,7,17,8,148,19,12,8,17,12,88,12,17,8,23,88,19,8,17,8,17,7,142,105,50,230,17,10,23,88,19,10,17,10,28,47,4,8,7,50,175,8,42,26,32,128,0,0,0,42,0,19,48,7,0,49,0,0,0,1,0,0,17,22,10,43,38,3,126,228,1,0,4,6,148,51,24,2,22,23,141,64,0,0,1,37,22,31,48,6,88,209,157,111,151,0,0,10,38,23,42,6,23,88,10,6,31,10,50,213,22,42,98,31,10,141,72,0,0,1,37,208,119,5,0,4,40,153,0,0,10,128,228,1,0,4,42,178,4,32,128,0,0,0,46,22,114,187,24,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,27,48,5,0,95,1,0,0,232,0,0,17,3,111,30,0,0,10,10,6,31,12,46,7,6,31,13,46,52,43,87,3,40,47,4,0,6,19,5,18,5,40,131,0,0,10,45,11,114,253,24,0,112,115,31,0,0,10,122,3,18,5,40,132,0,0,10,140,72,0,0,1,40,91,0,0,10,16,1,43,64,0,3,40,46,4,0,6,45,11,114,55,25,0,112,115,31,0,0,10,122,222,42,19,6,114,115,25,0,112,17,6,115,2,1,0,10,122,114,149,25,0,112,3,111,30,0,0,10,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,3,22,23,111,241,0,0,10,40,182,0,0,10,11,126,228,1,0,4,7,148,12,31,95,141,71,0,0,1,13,22,19,4,17,4,9,17,4,126,32,2,0,4,23,40,251,3,0,6,88,19,4,23,19,7,43,65,3,17,7,23,111,241,0,0,10,40,182,0,0,10,19,8,8,28,17,7,89,31,31,95,99,23,95,23,51,7,17,8,31,10,88,19,8,17,4,9,17,4,126,36,2,0,4,17,8,154,22,40,251,3,0,6,88,19,4,17,7,23,88,19,7,17,7,28,49,186,17,4,9,17,4,126,33,2,0,4,22,40,251,3,0,6,88,19,4,29,19,9,43,44,3,17,9,23,111,241,0,0,10,40,182,0,0,10,19,10,17,4,9,17,4,126,35,2,0,4,17,10,154,23,40,251,3,0,6,88,19,4,17,9,23,88,19,9,17,9,31,12,49,206,9,17,4,126,32,2,0,4,23,40,251,3,0,6,38,9,42,0,1,16,0,0,0,0,70,0,21,91,0,15,22,0,0,2,30,2,40,55,4,0,6,42,78,2,40,41,4,0,6,2,26,141,72,0,0,1,125,231,1,0,4,42,19,48,5,0,231,0,0,0,233,0,0,17,2,123,231,1,0,4,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,4,23,148,12,22,19,4,43,72,3,6,8,126,35,2,0,4,18,5,40,51,4,0,6,45,2,21,42,5,31,48,17,5,88,209,111,23,0,0,10,38,6,19,6,22,19,7,43,18,17,6,17,7,148,19,8,8,17,8,88,12,17,7,23,88,19,7,17,7,17,6,142,105,50,230,17,4,23,88,19,4,17,4,26,47,4,8,7,50,175,3,8,23,126,33,2,0,4,40,49,4,0,6,13,9,45,2,21,42,9,23,148,12,22,19,9,43,72,3,6,8,126,35,2,0,4,18,10,40,51,4,0,6,45,2,21,42,5,31,48,17,10,88,209,111,23,0,0,10,38,6,19,6,22,19,7,43,18,17,6,17,7,148,19,11,8,17,11,88,12,17,7,23,88,19,7,17,7,17,6,142,105,50,230,17,9,23,88,19,9,17,9,26,47,4,8,7,50,175,8,42,14,31,64,42,166,4,31,64,46,22,114,64,26,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,0,0,27,48,5,0,34,1,0,0,234,0,0,17,3,111,30,0,0,10,10,6,29,46,6,6,30,46,51,43,86,3,40,47,4,0,6,13,18,3,40,131,0,0,10,45,11,114,253,24,0,112,115,31,0,0,10,122,3,18,3,40,132,0,0,10,140,72,0,0,1,40,91,0,0,10,16,1,43,64,0,3,40,46,4,0,6,45,11,114,55,25,0,112,115,31,0,0,10,122,222,42,19,4,114,115,25,0,112,17,4,115,2,1,0,10,122,114,128,26,0,112,3,111,30,0,0,10,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,31,67,141,71,0,0,1,11,22,12,8,7,8,126,32,2,0,4,23,40,251,3,0,6,88,12,22,19,5,43,41,3,17,5,23,111,241,0,0,10,40,182,0,0,10,19,6,8,7,8,126,35,2,0,4,17,6,154,22,40,251,3,0,6,88,12,17,5,23,88,19,5,17,5,25,49,210,8,7,8,126,33,2,0,4,22,40,251,3,0,6,88,12,26,19,7,43,41,3,17,7,23,111,241,0,0,10,40,182,0,0,10,19,8,8,7,8,126,35,2,0,4,17,8,154,23,40,251,3,0,6,88,12,17,7,23,88,19,7,17,7,29,49,210,7,8,126,32,2,0,4,23,40,251,3,0,6,38,7,42,0,0,1,16,0,0,0,0,67,0,21,88,0,15,22,0,0,2,19,48,3,0,104,0,0,0,235,0,0,17,2,40,212,3,0,6,3,22,25,111,241,0,0,10,40,182,0,0,10,10,2,123,233,1,0,4,111,232,0,0,10,11,22,12,43,62,2,123,233,1,0,4,8,111,233,0,0,10,13,9,22,148,19,4,6,17,4,47,2,20,42,9,142,105,23,46,5,9,23,148,43,2,17,4,19,5,6,17,5,48,13,2,123,234,1,0,4,8,111,3,1,0,10,42,8,23,88,12,8,7,50,190,20,42,102,2,123,233,1,0,4,3,111,231,0,0,10,2,123,234,1,0,4,4,111,4,1,0,10,42,0,0,19,48,5,0,37,11,0,0,0,0,0,0,2,123,233,1,0,4,111,232,0,0,10,44,1,42,2,24,141,72,0,0,1,37,23,31,19,158,114,39,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,31,30,158,37,23,31,39,158,114,51,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,31,60,158,37,23,32,139,0,0,0,158,114,39,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,44,1,0,0,158,37,23,32,123,1,0,0,158,114,57,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,124,1,0,0,158,114,63,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,127,1,0,0,158,114,69,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,129,1,0,0,158,114,75,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,131,1,0,0,158,114,81,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,144,1,0,0,158,37,23,32,184,1,0,0,158,114,87,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,194,1,0,0,158,37,23,32,203,1,0,0,158,114,93,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,204,1,0,0,158,37,23,32,213,1,0,0,158,114,99,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,215,1,0,0,158,114,105,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,218,1,0,0,158,114,111,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,219,1,0,0,158,114,117,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,220,1,0,0,158,114,123,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,221,1,0,0,158,114,129,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,222,1,0,0,158,114,135,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,223,1,0,0,158,114,141,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,224,1,0,0,158,114,147,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,225,1,0,0,158,114,153,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,226,1,0,0,158,114,159,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,228,1,0,0,158,114,165,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,229,1,0,0,158,114,171,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,230,1,0,0,158,114,177,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,231,1,0,0,158,114,183,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,233,1,0,0,158,114,189,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,234,1,0,0,158,37,23,32,243,1,0,0,158,114,93,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,244,1,0,0,158,37,23,32,253,1,0,0,158,114,195,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,8,2,0,0,158,114,201,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,16,2,0,0,158,114,207,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,17,2,0,0,158,114,213,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,19,2,0,0,158,114,219,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,23,2,0,0,158,114,225,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,27,2,0,0,158,114,231,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,28,2,0,0,158,37,23,32,37,2,0,0,158,114,237,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,48,2,0,0,158,114,249,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,57,2,0,0,158,114,255,27,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,58,2,0,0,158,37,23,32,67,2,0,0,158,114,5,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,78,2,0,0,158,114,11,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,82,2,0,0,158,114,17,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,87,2,0,0,158,114,23,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,88,2,0,0,158,37,23,32,89,2,0,0,158,114,29,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,91,2,0,0,158,114,35,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,96,2,0,0,158,114,41,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,97,2,0,0,158,114,47,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,99,2,0,0,158,114,53,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,101,2,0,0,158,114,59,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,104,2,0,0,158,114,65,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,106,2,0,0,158,114,71,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,107,2,0,0,158,114,77,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,109,2,0,0,158,114,83,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,110,2,0,0,158,114,89,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,112,2,0,0,158,114,95,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,113,2,0,0,158,114,101,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,114,2,0,0,158,114,107,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,115,2,0,0,158,114,113,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,116,2,0,0,158,114,119,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,117,2,0,0,158,114,125,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,128,2,0,0,158,37,23,32,137,2,0,0,158,114,131,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,178,2,0,0,158,37,23,32,183,2,0,0,158,114,137,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,188,2,0,0,158,37,23,32,197,2,0,0,158,114,143,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,217,2,0,0,158,114,149,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,218,2,0,0,158,37,23,32,227,2,0,0,158,114,155,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,228,2,0,0,158,114,161,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,229,2,0,0,158,114,167,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,230,2,0,0,158,114,173,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,231,2,0,0,158,114,179,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,232,2,0,0,158,114,185,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,233,2,0,0,158,114,191,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,234,2,0,0,158,114,197,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,238,2,0,0,158,114,203,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,242,2,0,0,158,37,23,32,243,2,0,0,158,114,209,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,247,2,0,0,158,114,215,28,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,248,2,0,0,158,37,23,32,1,3,0,0,158,114,221,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,2,3,0,0,158,114,227,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,5,3,0,0,158,114,233,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,7,3,0,0,158,114,239,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,9,3,0,0,158,114,245,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,11,3,0,0,158,114,251,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,12,3,0,0,158,114,1,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,16,3,0,0,158,114,7,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,17,3,0,0,158,114,239,28,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,18,3,0,0,158,114,13,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,21,3,0,0,158,37,23,32,22,3,0,0,158,114,19,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,32,3,0,0,158,37,23,32,71,3,0,0,158,114,25,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,72,3,0,0,158,37,23,32,81,3,0,0,158,114,31,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,82,3,0,0,158,114,37,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,90,3,0,0,158,114,43,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,91,3,0,0,158,114,49,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,92,3,0,0,158,114,55,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,97,3,0,0,158,114,61,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,99,3,0,0,158,114,67,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,100,3,0,0,158,37,23,32,101,3,0,0,158,114,73,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,102,3,0,0,158,37,23,32,111,3,0,0,158,114,79,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,112,3,0,0,158,114,85,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,117,3,0,0,158,114,91,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,120,3,0,0,158,114,97,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,122,3,0,0,158,114,103,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,125,3,0,0,158,114,109,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,128,3,0,0,158,114,115,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,131,3,0,0,158,114,121,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,132,3,0,0,158,37,23,32,151,3,0,0,158,114,127,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,162,3,0,0,158,37,23,32,171,3,0,0,158,114,133,29,0,112,40,211,3,0,6,2,24,141,72,0,0,1,37,22,32,172,3,0,0,158,37,23,32,181,3,0,0,158,114,123,27,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,187,3,0,0,158,114,139,29,0,112,40,211,3,0,6,2,23,141,72,0,0,1,37,22,32,190,3,0,0,158,114,145,29,0,112,40,211,3,0,6,42,118,2,115,230,0,0,10,125,233,1,0,4,2,115,5,1,0,10,125,234,1,0,4,2,40,20,0,0,10,42,0,19,48,7,0,59,1,0,0,236,0,0,17,2,4,40,216,3,0,6,10,6,45,2,20,42,2,4,40,219,3,0,6,11,7,45,2,20,42,31,20,115,22,0,0,10,12,4,6,23,148,7,22,148,8,40,215,3,0,6,45,2,20,42,8,111,25,0,0,10,13,20,19,4,31,14,19,5,5,44,26,5,27,111,44,0,0,10,44,17,5,27,111,77,0,0,10,116,55,0,0,27,19,4,22,19,5,17,4,45,11,126,240,1,0,4,19,4,31,14,19,5,9,111,30,0,0,10,19,6,17,6,31,14,254,2,19,7,17,7,45,70,17,4,19,9,22,19,10,43,34,17,9,17,10,148,19,11,17,6,17,11,51,5,23,19,7,43,24,17,11,17,5,49,4,17,11,19,5,17,10,23,88,19,10,17,10,17,9,142,105,50,214,17,7,45,9,17,6,17,5,49,3,23,19,7,17,7,45,2,20,42,5,44,23,5,29,111,44,0,0,10,44,14,5,29,111,77,0,0,10,116,41,0,0,2,43,1,20,19,8,17,8,44,36,17,8,6,23,148,107,3,107,115,59,1,0,6,111,69,1,0,6,17,8,7,22,148,107,3,107,115,59,1,0,6,111,69,1,0,6,9,20,24,141,40,0,0,2,37,22,6,23,148,107,3,107,115,59,1,0,6,162,37,23,7,22,148,107,3,107,115,59,1,0,6,162,32,0,1,0,0,115,50,1,0,6,42,0,19,48,5,0,171,0,0,0,237,0,0,17,31,10,141,72,0,0,1,10,27,141,72,0,0,1,11,27,141,72,0,0,1,12,56,135,0,0,0,2,3,6,40,4,4,0,6,45,2,22,42,22,19,4,43,30,17,4,23,98,19,5,7,17,4,6,17,5,148,158,8,17,4,6,17,5,23,88,148,158,17,4,23,88,19,4,17,4,27,50,221,7,18,3,40,221,3,0,6,45,2,22,42,5,31,48,9,88,209,111,23,0,0,10,38,8,18,3,40,221,3,0,6,45,2,22,42,5,31,48,9,88,209,111,23,0,0,10,38,6,19,6,22,19,7,43,19,17,6,17,7,148,19,8,3,17,8,88,16,1,17,7,23,88,19,7,17,7,17,6,142,105,50,229,3,4,63,114,255,255,255,23,42,0,19,48,4,0,62,0,0,0,238,0,0,17,3,40,218,3,0,6,10,6,22,47,2,20,42,3,6,126,243,1,0,4,40,220,3,0,6,11,7,45,2,20,42,2,7,23,148,7,22,148,89,24,99,125,242,1,0,4,2,3,7,22,148,40,217,3,0,6,45,2,20,42,7,42,0,0,19,48,2,0,57,0,0,0,2,0,0,17,2,123,242,1,0,4,31,10,90,10,6,4,50,3,4,43,1,6,10,4,23,89,11,43,17,3,7,111,4,6,0,6,45,16,6,23,89,10,7,23,89,11,6,22,49,4,7,22,47,231,6,44,2,22,42,23,42,0,0,0,19,48,2,0,23,0,0,0,2,0,0,17,2,111,2,6,0,6,10,2,22,111,12,6,0,6,11,7,6,51,2,21,42,7,42,0,19,48,5,0,119,0,0,0,126,0,0,17,3,111,24,6,0,6,3,40,218,3,0,6,10,6,22,47,2,20,42,3,6,126,244,1,0,4,22,154,40,220,3,0,6,11,7,45,15,3,6,126,244,1,0,4,23,154,40,220,3,0,6,11,7,45,8,3,111,24,6,0,6,20,42,2,3,7,22,148,40,217,3,0,6,45,8,3,111,24,6,0,6,20,42,7,22,148,12,7,22,3,111,2,6,0,6,7,23,148,89,158,7,23,3,111,2,6,0,6,8,89,158,3,111,24,6,0,6,7,42,0,19,48,6,0,180,0,0,0,239,0,0,17,4,142,105,10,6,141,72,0,0,1,11,2,111,2,6,0,6,12,22,13,22,19,4,3,19,5,3,19,6,56,136,0,0,0,2,17,6,111,4,6,0,6,9,46,15,7,17,4,143,72,0,0,1,37,74,23,88,84,43,104,17,4,6,23,89,51,81,7,4,126,236,1,0,4,40,7,4,0,6,126,235,1,0,4,47,17,24,141,72,0,0,1,37,22,17,5,158,37,23,17,6,158,42,17,5,7,22,148,7,23,148,88,88,19,5,7,24,7,22,17,4,23,89,40,94,0,0,10,7,17,4,23,89,22,158,7,17,4,22,158,17,4,23,89,19,4,43,6,17,4,23,88,19,4,7,17,4,23,158,9,22,254,1,13,17,6,23,88,19,6,17,6,8,63,112,255,255,255,20,42,19,48,3,0,88,0,0,0,240,0,0,17,126,235,1,0,4,10,3,21,84,126,245,1,0,4,142,105,11,22,12,43,47,126,245,1,0,4,8,154,13,2,9,126,236,1,0,4,40,7,4,0,6,19,4,17,4,6,47,8,17,4,10,3,8,84,43,8,17,4,6,51,3,3,21,84,8,23,88,12,8,7,50,205,3,74,22,50,9,3,3,74,31,10,93,84,23,42,22,42,58,2,21,125,242,1,0,4,2,40,9,4,0,6,42,0,19,48,6,0,43,2,0,0,0,0,0,0,126,11,2,0,4,107,34,92,143,194,62,90,105,128,235,1,0,4,126,11,2,0,4,107,34,0,0,0,63,90,105,128,236,1,0,4,27,141,72,0,0,1,37,208,166,4,0,4,40,153,0,0,10,128,240,1,0,4,26,141,72,0,0,1,37,208,164,4,0,4,40,153,0,0,10,128,243,1,0,4,24,141,55,0,0,27,37,22,25,141,72,0,0,1,37,208,248,4,0,4,40,153,0,0,10,162,37,23,25,141,72,0,0,1,37,208,249,4,0,4,40,153,0,0,10,162,128,244,1,0,4,31,20,141,55,0,0,27,37,22,27,141,72,0,0,1,37,208,205,5,0,4,40,153,0,0,10,162,37,23,27,141,72,0,0,1,37,208,254,4,0,4,40,153,0,0,10,162,37,24,27,141,72,0,0,1,37,208,57,4,0,4,40,153,0,0,10,162,37,25,27,141,72,0,0,1,37,208,96,5,0,4,40,153,0,0,10,162,37,26,27,141,72,0,0,1,37,208,192,4,0,4,40,153,0,0,10,162,37,27,27,141,72,0,0,1,37,208,100,4,0,4,40,153,0,0,10,162,37,28,27,141,72,0,0,1,37,208,117,4,0,4,40,153,0,0,10,162,37,29,27,141,72,0,0,1,37,208,137,4,0,4,40,153,0,0,10,162,37,30,27,141,72,0,0,1,37,208,105,4,0,4,40,153,0,0,10,162,37,31,9,27,141,72,0,0,1,37,208,245,4,0,4,40,153,0,0,10,162,37,31,10,27,141,72,0,0,1,37,208,179,4,0,4,40,153,0,0,10,162,37,31,11,27,141,72,0,0,1,37,208,204,4,0,4,40,153,0,0,10,162,37,31,12,27,141,72,0,0,1,37,208,66,5,0,4,40,153,0,0,10,162,37,31,13,27,141,72,0,0,1,37,208,205,4,0,4,40,153,0,0,10,162,37,31,14,27,141,72,0,0,1,37,208,196,4,0,4,40,153,0,0,10,162,37,31,15,27,141,72,0,0,1,37,208,22,5,0,4,40,153,0,0,10,162,37,31,16,27,141,72,0,0,1,37,208,109,4,0,4,40,153,0,0,10,162,37,31,17,27,141,72,0,0,1,37,208,113,5,0,4,40,153,0,0,10,162,37,31,18,27,141,72,0,0,1,37,208,114,4,0,4,40,153,0,0,10,162,37,31,19,27,141,72,0,0,1,37,208,102,4,0,4,40,153,0,0,10,162,128,245,1,0,4,42,178,4,32,0,1,0,0,46,22,114,151,29,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,19,48,5,0,52,1,0,0,241,0,0,17,3,111,30,0,0,10,10,6,24,93,44,11,114,211,29,0,112,115,31,0,0,10,122,6,31,80,49,22,114,195,22,0,112,6,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,22,13,43,55,3,9,111,27,0,0,10,40,248,0,0,10,45,37,114,33,30,0,112,3,9,111,27,0,0,10,19,4,18,4,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,9,23,88,13,9,6,50,197,31,9,31,9,6,90,88,141,71,0,0,1,11,7,22,126,246,1,0,4,23,40,251,3,0,6,12,22,19,5,56,136,0,0,0,3,17,5,111,27,0,0,10,19,4,18,4,40,28,0,0,10,31,10,40,6,1,0,10,19,6,3,17,5,23,88,111,27,0,0,10,19,4,18,4,40,28,0,0,10,31,10,40,6,1,0,10,19,7,31,10,141,72,0,0,1,19,8,22,19,9,43,44,17,8,17,9,23,98,126,250,1,0,4,17,6,154,17,9,148,158,17,8,17,9,23,98,23,88,126,250,1,0,4,17,7,154,17,9,148,158,17,9,23,88,19,9,17,9,27,50,207,8,7,8,17,8,23,40,251,3,0,6,88,12,17,5,24,88,19,5,17,5,6,63,112,255,255,255,7,8,126,247,1,0,4,23,40,251,3,0,6,38,7,42,19,48,6,0,2,1,0,0,0,0,0,0,26,141,72,0,0,1,37,208,164,4,0,4,40,153,0,0,10,128,246,1,0,4,25,141,72,0,0,1,37,208,220,5,0,4,40,153,0,0,10,128,247,1,0,4,31,10,141,55,0,0,27,37,22,27,141,72,0,0,1,37,208,179,4,0,4,40,153,0,0,10,162,37,23,27,141,72,0,0,1,37,208,204,4,0,4,40,153,0,0,10,162,37,24,27,141,72,0,0,1,37,208,66,5,0,4,40,153,0,0,10,162,37,25,27,141,72,0,0,1,37,208,205,4,0,4,40,153,0,0,10,162,37,26,27,141,72,0,0,1,37,208,196,4,0,4,40,153,0,0,10,162,37,27,27,141,72,0,0,1,37,208,22,5,0,4,40,153,0,0,10,162,37,28,27,141,72,0,0,1,37,208,109,4,0,4,40,153,0,0,10,162,37,29,27,141,72,0,0,1,37,208,113,5,0,4,40,153,0,0,10,162,37,30,27,141,72,0,0,1,37,208,114,4,0,4,40,153,0,0,10,162,37,31,9,27,141,72,0,0,1,37,208,102,4,0,4,40,153,0,0,10,162,128,250,1,0,4,42,34,2,22,40,229,3,0,6,42,158,2,40,9,4,0,6,2,3,125,0,2,0,4,2,31,20,115,22,0,0,10,125,1,2,0,4,2,30,141,72,0,0,1,125,2,2,0,4,42,0,19,48,7,0,236,1,0,0,242,0,0,17,22,19,9,43,16,2,123,2,2,0,4,17,9,22,158,17,9,23,88,19,9,17,9,2,123,2,2,0,4,142,105,50,228,2,123,1,2,0,4,22,111,121,0,0,10,2,4,2,123,2,2,0,4,40,231,3,0,6,10,6,45,2,20,42,4,6,23,148,111,12,6,0,6,11,7,13,4,7,2,123,2,2,0,4,30,40,5,4,0,6,45,31,2,4,7,2,123,2,2,0,4,40,232,3,0,6,19,10,17,10,45,2,20,42,7,13,17,10,23,148,11,43,123,2,2,123,2,2,0,4,30,40,234,3,0,6,18,2,40,235,3,0,6,45,31,2,4,7,2,123,2,2,0,4,40,232,3,0,6,19,11,17,11,45,2,20,42,7,13,17,11,23,148,11,43,70,2,123,1,2,0,4,8,111,23,0,0,10,38,7,13,2,123,2,2,0,4,19,12,22,19,13,43,18,17,12,17,13,148,19,14,7,17,14,88,11,17,13,23,88,19,13,17,13,17,12,142,105,50,230,4,7,111,12,6,0,6,11,8,31,42,64,86,255,255,255,2,123,1,2,0,4,111,120,0,0,10,25,47,2,20,42,40,7,1,0,10,2,123,1,2,0,4,111,25,0,0,10,111,183,0,0,10,19,4,2,123,1,2,0,4,111,25,0,0,10,19,5,2,123,0,2,0,4,44,48,17,5,22,17,5,111,30,0,0,10,23,89,111,241,0,0,10,19,15,17,15,40,236,3,0,6,31,48,88,209,17,5,17,15,111,30,0,0,10,111,27,0,0,10,46,2,20,42,6,23,148,6,22,148,88,107,34,0,0,0,64,91,19,6,7,9,88,107,34,0,0,0,64,91,19,7,5,44,23,5,29,111,44,0,0,10,44,14,5,29,111,77,0,0,10,116,41,0,0,2,43,1,20,19,8,17,8,44,32,17,8,17,6,3,107,115,59,1,0,6,111,69,1,0,6,17,8,17,7,3,107,115,59,1,0,6,111,69,1,0,6,17,5,17,4,24,141,40,0,0,2,37,22,17,6,3,107,115,59,1,0,6,162,37,23,17,7,3,107,115,59,1,0,6,162,32,0,0,2,0,115,50,1,0,6,42,19,48,5,0,224,0,0,0,243,0,0,17,3,111,2,6,0,6,10,3,22,111,12,6,0,6,22,11,37,12,22,13,4,22,22,158,4,23,22,158,19,4,56,179,0,0,0,3,17,4,111,4,6,0,6,9,97,44,17,4,7,143,72,0,0,1,37,74,23,88,84,56,144,0,0,0,7,23,51,127,4,22,148,107,4,23,148,107,91,19,5,17,5,108,35,0,0,0,0,0,0,248,63,55,68,17,5,34,0,0,160,64,53,59,2,4,24,40,233,3,0,6,2,4,24,40,234,3,0,6,28,51,40,3,22,8,17,4,8,89,23,99,89,40,139,0,0,10,8,22,111,17,6,0,6,44,16,24,141,72,0,0,1,37,22,8,158,37,23,17,4,158,42,8,4,22,148,4,23,148,88,88,12,4,24,4,22,22,40,94,0,0,10,4,22,22,158,4,23,22,158,7,23,89,11,43,4,7,23,88,11,4,7,23,158,9,22,254,1,13,17,4,23,88,19,4,17,4,6,63,69,255,255,255,20,42,19,48,4,0,193,0,0,0,244,0,0,17,3,111,2,6,0,6,10,22,11,4,12,22,13,5,22,22,158,5,23,22,158,5,24,22,158,4,19,4,56,150,0,0,0,3,17,4,111,4,6,0,6,9,97,44,14,5,7,143,72,0,0,1,37,74,23,88,84,43,118,7,24,51,101,5,23,148,107,5,22,148,107,91,19,5,17,5,108,35,0,0,0,0,0,0,248,63,55,74,17,5,34,0,0,160,64,53,65,2,5,25,40,234,3,0,6,31,9,51,53,3,111,2,6,0,6,23,89,17,4,17,4,8,89,23,99,88,40,140,0,0,10,19,6,3,17,4,17,6,22,111,17,6,0,6,44,16,24,141,72,0,0,1,37,22,8,158,37,23,17,4,158,42,20,42,7,23,88,11,5,7,23,158,9,22,254,1,13,17,4,23,88,19,4,17,4,6,63,98,255,255,255,20,42,0,0,0,19,48,4,0,52,0,0,0,111,0,0,17,32,255,255,255,127,10,22,11,22,12,43,20,3,8,148,13,9,6,47,2,9,10,9,7,49,2,9,11,8,23,88,12,8,4,50,232,2,7,30,98,6,30,98,88,24,91,125,3,2,0,4,42,19,48,2,0,55,0,0,0,111,0,0,17,22,10,23,11,25,12,22,13,43,39,3,9,148,30,98,2,123,3,2,0,4,47,8,6,23,98,7,96,10,43,6,6,24,98,8,96,10,7,23,97,11,8,25,97,12,9,23,88,13,9,4,50,213,6,42,0,19,48,3,0,45,0,0,0,1,0,0,17,22,10,43,25,126,253,1,0,4,6,148,2,51,11,3,126,252,1,0,4,6,147,83,23,42,6,23,88,10,6,126,253,1,0,4,142,105,50,221,3,31,42,83,22,42,0,0,0,19,48,3,0,89,0,0,0,51,0,0,17,22,10,2,111,30,0,0,10,24,89,11,43,19,2,7,111,27,0,0,10,31,48,89,12,6,8,88,10,7,24,89,11,7,22,47,233,2,111,30,0,0,10,23,89,13,43,27,126,4,2,0,4,2,9,111,27,0,0,10,31,48,89,148,19,4,6,17,4,88,10,9,24,89,13,9,22,47,225,31,10,6,31,10,93,89,31,10,93,42,0,0,0,19,48,3,0,72,0,0,0,0,0,0,0,114,147,30,0,112,128,251,1,0,4,126,251,1,0,4,111,152,0,0,10,128,252,1,0,4,31,10,141,72,0,0,1,37,208,158,5,0,4,40,153,0,0,10,128,253,1,0,4,31,10,141,72,0,0,1,37,208,220,4,0,4,40,153,0,0,10,128,4,2,0,4,42,178,4,32,0,0,2,0,46,22,114,169,30,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,0,0,19,48,5,0,179,0,0,0,245,0,0,17,3,111,30,0,0,10,10,22,13,43,61,126,251,1,0,4,3,9,111,27,0,0,10,111,0,1,0,10,22,47,37,114,229,30,0,112,3,9,111,27,0,0,10,19,4,18,4,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,9,23,88,13,9,6,50,191,25,6,31,12,90,88,26,88,141,71,0,0,1,11,7,22,126,5,2,0,4,23,40,251,3,0,6,12,22,19,5,43,49,126,251,1,0,4,3,17,5,111,27,0,0,10,111,0,1,0,10,19,6,126,7,2,0,4,17,6,154,19,7,8,7,8,17,7,23,40,251,3,0,6,88,12,17,5,23,88,19,5,17,5,6,50,202,7,8,126,6,2,0,4,23,40,251,3,0,6,38,7,42,0,19,48,6,0,255,0,0,0,0,0,0,0,24,141,72,0,0,1,37,22,24,158,37,23,23,158,128,5,2,0,4,25,141,72,0,0,1,37,208,109,5,0,4,40,153,0,0,10,128,6,2,0,4,31,10,141,55,0,0,27,37,22,30,141,72,0,0,1,37,208,190,4,0,4,40,153,0,0,10,162,37,23,30,141,72,0,0,1,37,208,132,4,0,4,40,153,0,0,10,162,37,24,30,141,72,0,0,1,37,208,79,5,0,4,40,153,0,0,10,162,37,25,30,141,72,0,0,1,37,208,138,5,0,4,40,153,0,0,10,162,37,26,30,141,72,0,0,1,37,208,203,5,0,4,40,153,0,0,10,162,37,27,30,141,72,0,0,1,37,208,210,5,0,4,40,153,0,0,10,162,37,28,30,141,72,0,0,1,37,208,5,5,0,4,40,153,0,0,10,162,37,29,30,141,72,0,0,1,37,208,52,5,0,4,40,153,0,0,10,162,37,30,30,141,72,0,0,1,37,208,184,4,0,4,40,153,0,0,10,162,37,31,9,30,141,72,0,0,1,37,208,188,5,0,4,40,153,0,0,10,162,128,7,2,0,4,42,0,19,48,3,0,216,2,0,0,246,0,0,17,2,40,9,4,0,6,3,44,23,3,24,111,44,0,0,10,44,14,3,24,111,77,0,0,10,116,31,0,0,27,43,1,20,10,2,115,8,1,0,10,125,8,2,0,4,6,57,211,1,0,0,6,32,222,241,0,0,111,55,0,0,10,45,49,6,32,128,0,0,0,111,55,0,0,10,45,36,6,32,0,64,0,0,111,55,0,0,10,45,23,6,31,64,111,55,0,0,10,45,13,6,32,0,128,0,0,111,55,0,0,10,44,17,2,123,8,2,0,4,3,115,245,3,0,6,111,9,1,0,10,6,32,0,0,2,0,111,55,0,0,10,44,42,3,30,111,44,0,0,10,45,3,22,43,12,3,30,111,77,0,0,10,165,71,0,0,1,11,2,123,8,2,0,4,7,115,229,3,0,6,111,9,1,0,10,6,26,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,70,3,28,111,44,0,0,10,44,14,3,28,111,77,0,0,10,165,71,0,0,1,43,1,22,12,3,31,9,111,44,0,0,10,44,15,3,31,9,111,77,0,0,10,165,71,0,0,1,43,1,22,13,2,123,8,2,0,4,8,9,115,168,3,0,6,111,9,1,0,10,6,30,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,16,2,123,8,2,0,4,115,180,3,0,6,111,9,1,0,10,6,31,16,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,16,2,123,8,2,0,4,115,158,3,0,6,111,9,1,0,10,6,32,0,1,0,0,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,16,2,123,8,2,0,4,115,222,3,0,6,111,9,1,0,10,6,24,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,16,2,123,8,2,0,4,115,140,3,0,6,111,9,1,0,10,6,32,0,16,0,0,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,16,2,123,8,2,0,4,115,103,4,0,6,111,9,1,0,10,6,32,0,32,0,0,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,16,2,123,8,2,0,4,115,165,4,0,6,111,9,1,0,10,2,123,8,2,0,4,111,10,1,0,10,58,193,0,0,0,3,44,23,3,28,111,44,0,0,10,44,14,3,28,111,77,0,0,10,165,71,0,0,1,43,1,22,19,4,3,44,25,3,31,9,111,44,0,0,10,44,15,3,31,9,111,77,0,0,10,165,71,0,0,1,43,1,22,19,5,2,123,8,2,0,4,3,115,245,3,0,6,111,9,1,0,10,2,123,8,2,0,4,17,4,17,5,115,168,3,0,6,111,9,1,0,10,2,123,8,2,0,4,115,140,3,0,6,111,9,1,0,10,2,123,8,2,0,4,115,180,3,0,6,111,9,1,0,10,2,123,8,2,0,4,115,158,3,0,6,111,9,1,0,10,2,123,8,2,0,4,115,222,3,0,6,111,9,1,0,10,2,123,8,2,0,4,115,103,4,0,6,111,9,1,0,10,2,123,8,2,0,4,115,165,4,0,6,111,9,1,0,10,42,27,48,4,0,60,0,0,0,247,0,0,17,2,123,8,2,0,4,111,11,1,0,10,10,43,22,6,111,12,1,0,10,3,4,5,111,8,4,0,6,11,7,44,4,7,12,222,22,6,111,59,0,0,10,45,226,222,10,6,44,6,6,111,60,0,0,10,220,20,42,8,42,1,16,0,0,2,0,12,0,34,46,0,10,0,0,0,0,27,48,1,0,46,0,0,0,248,0,0,17,2,123,8,2,0,4,111,11,1,0,10,10,43,11,6,111,12,1,0,10,111,31,1,0,6,6,111,59,0,0,10,45,237,222,10,6,44,6,6,111,60,0,0,10,220,42,0,0,1,16,0,0,2,0,12,0,23,35,0,10,0,0,0,0,19,48,2,0,247,0,0,0,249,0,0,17,2,40,9,4,0,6,3,44,23,3,24,111,44,0,0,10,44,14,3,24,111,77,0,0,10,116,31,0,0,27,43,1,20,10,115,13,1,0,10,11,6,57,147,0,0,0,6,32,128,0,0,0,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,13,7,115,196,3,0,6,111,14,1,0,10,43,37,6,32,0,64,0,0,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,11,7,115,21,4,0,6,111,14,1,0,10,6,31,64,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,11,7,115,204,3,0,6,111,14,1,0,10,6,32,0,128,0,0,111,55,0,0,10,45,13,6,32,222,241,0,0,111,55,0,0,10,44,11,7,115,56,4,0,6,111,14,1,0,10,7,111,15,1,0,10,45,33,7,115,196,3,0,6,111,14,1,0,10,7,115,204,3,0,6,111,14,1,0,10,7,115,56,4,0,6,111,14,1,0,10,2,7,111,16,1,0,10,125,9,2,0,4,42,0,19,48,5,0,210,0,0,0,250,0,0,17,4,40,42,4,0,6,10,6,45,2,20,42,2,123,9,2,0,4,11,22,12,56,173,0,0,0,7,8,154,3,4,6,5,111,44,4,0,6,13,9,57,150,0,0,0,9,111,42,1,0,6,32,128,0,0,0,51,18,9,111,36,1,0,6,22,111,27,0,0,10,31,48,254,1,43,1,22,5,44,23,5,24,111,44,0,0,10,44,14,5,24,111,77,0,0,10,116,31,0,0,27,43,1,20,19,4,17,4,44,28,17,4,32,0,64,0,0,111,55,0,0,10,45,14,17,4,32,222,241,0,0,111,55,0,0,10,43,1,23,19,5,17,5,95,44,47,9,111,36,1,0,6,23,111,226,0,0,10,9,111,38,1,0,6,9,111,40,1,0,6,32,0,64,0,0,115,50,1,0,6,37,9,111,44,1,0,6,111,55,1,0,6,42,9,42,8,23,88,12,8,7,142,105,63,74,255,255,255,20,42,0,0,19,48,2,0,30,0,0,0,251,0,0,17,2,123,9,2,0,4,10,22,11,43,12,6,7,154,111,31,1,0,6,7,23,88,11,7,6,142,105,50,238,42,54,2,3,4,5,14,4,20,111,249,3,0,6,42,19,48,4,0,140,0,0,0,252,0,0,17,3,40,124,0,0,10,44,11,114,135,9,0,112,115,31,0,0,10,122,5,22,50,5,14,4,22,47,52,26,141,13,0,0,1,37,22,114,87,31,0,112,162,37,23,5,140,72,0,0,1,162,37,24,114,2,6,0,112,162,37,25,14,4,140,72,0,0,1,162,40,134,0,0,10,115,31,0,0,10,122,2,111,252,3,0,6,10,14,5,44,32,14,5,27,111,126,0,0,10,45,3,20,43,8,14,5,27,111,127,0,0,10,11,7,44,7,7,40,17,1,0,10,10,2,3,111,253,3,0,6,5,14,4,6,40,250,3,0,6,42,19,48,5,0,91,0,0,0,253,0,0,17,2,142,105,10,6,5,88,11,3,7,40,139,0,0,10,23,4,40,139,0,0,10,12,37,7,91,13,37,6,9,90,89,24,91,19,4,8,115,36,6,0,6,19,5,22,19,6,17,4,19,7,43,30,2,17,6,145,44,12,17,5,17,7,22,9,8,111,47,6,0,6,17,6,23,88,19,6,17,7,9,88,19,7,17,6,6,50,221,17,5,42,0,19,48,4,0,63,0,0,0,254,0,0,17,5,10,22,11,4,12,22,13,43,45,8,9,148,19,4,22,19,5,43,15,2,3,37,23,88,16,1,6,156,17,5,23,88,19,5,17,5,17,4,50,235,7,17,4,88,11,6,22,254,1,10,9,23,88,13,9,8,142,105,50,205,7,42,14,31,10,42,0,19,48,4,0,94,0,0,0,111,0,0,17,22,10,22,11,2,111,30,0,0,10,23,89,12,43,17,6,2,8,111,27,0,0,10,31,48,89,88,10,8,24,89,12,8,22,47,235,2,111,30,0,0,10,24,89,13,43,17,7,2,9,111,27,0,0,10,31,48,89,88,11,9,24,89,13,9,22,47,235,2,31,10,6,25,90,7,88,31,10,93,89,31,10,93,140,72,0,0,1,40,91,0,0,10,42,38,2,3,20,111,1,4,0,6,42,19,48,5,0,230,0,0,0,255,0,0,17,2,3,4,111,3,4,0,6,10,6,58,213,0,0,0,4,44,9,4,25,111,44,0,0,10,43,1,22,4,44,10,4,31,11,111,44,0,0,10,43,1,22,11,57,180,0,0,0,7,58,174,0,0,0,3,111,180,0,0,6,57,163,0,0,0,3,111,181,0,0,6,12,2,8,4,111,3,4,0,6,10,6,45,2,20,42,6,111,44,1,0,6,13,32,14,1,0,0,19,4,9,44,32,9,23,111,51,0,0,10,44,23,17,4,9,23,111,53,0,0,10,165,72,0,0,1,88,32,104,1,0,0,93,19,4,6,23,17,4,140,72,0,0,1,111,54,1,0,6,6,111,40,1,0,6,19,5,17,5,44,67,8,111,175,0,0,6,19,6,22,19,7,43,46,17,5,17,7,17,6,107,17,5,17,7,154,111,61,1,0,6,89,34,0,0,128,63,89,17,5,17,7,154,111,60,1,0,6,115,59,1,0,6,162,17,7,23,88,19,7,17,7,17,5,142,105,50,202,6,42,0,0,27,48,5,0,165,1,0,0,0,1,0,17,3,111,174,0,0,6,10,3,111,175,0,0,6,11,6,115,7,6,0,6,12,4,44,9,4,25,111,44,0,0,10,43,1,22,13,23,7,9,45,3,27,43,1,30,31,31,95,99,40,139,0,0,10,19,4,9,44,5,7,19,5,43,4,31,15,19,5,7,23,99,19,6,22,19,7,56,74,1,0,0,17,7,23,88,23,99,19,8,17,7,23,95,22,254,1,19,9,17,6,17,4,17,9,45,5,17,8,101,43,2,17,8,90,88,19,10,17,10,22,63,39,1,0,0,17,10,7,60,31,1,0,0,3,17,10,8,111,176,0,0,6,12,8,57,0,1,0,0,22,19,11,56,240,0,0,0,17,11,23,51,102,8,111,24,6,0,6,4,44,93,4,29,111,44,0,0,10,44,84,115,18,1,0,10,19,13,4,111,19,1,0,10,19,14,43,40,17,14,111,20,1,0,10,19,15,18,15,40,21,1,0,10,29,46,21,17,13,18,15,40,21,1,0,10,18,15,40,22,1,0,10,111,23,1,0,10,17,14,111,59,0,0,10,45,207,222,12,17,14,44,7,17,14,111,60,0,0,10,220,17,13,16,2,2,17,10,8,4,111,8,4,0,6,19,12,17,12,44,111,17,11,23,51,103,17,12,23,32,180,0,0,0,140,72,0,0,1,111,54,1,0,6,17,12,111,40,1,0,6,19,16,17,16,44,72,17,16,22,6,107,17,16,22,154,111,60,1,0,6,89,34,0,0,128,63,89,17,16,22,154,111,61,1,0,6,115,59,1,0,6,162,17,16,23,6,107,17,16,23,154,111,60,1,0,6,89,34,0,0,128,63,89,17,16,23,154,111,61,1,0,6,115,59,1,0,6,162,17,12,42,17,11,23,88,19,11,17,11,24,63,8,255,255,255,17,7,23,88,19,7,17,7,17,5,63,173,254,255,255,20,42,0,0,0,1,16,0,0,2,0,194,0,53,247,0,12,0,0,0,0,50,2,3,4,4,142,105,40,5,4,0,6,42,0,0,0,19,48,3,0,119,0,0,0,1,1,0,17,22,19,4,43,11,4,17,4,22,158,17,4,23,88,19,4,17,4,5,50,240,2,111,2,6,0,6,10,3,6,50,2,22,42,2,3,111,4,6,0,6,22,254,1,11,22,12,3,13,43,45,2,9,111,4,6,0,6,7,46,14,4,8,143,72,0,0,1,37,74,23,88,84,43,17,8,23,88,12,8,5,46,17,4,8,23,158,7,22,254,1,11,9,23,88,13,9,6,50,207,8,5,46,13,8,5,23,89,51,5,9,6,254,1,42,22,42,23,42,0,19,48,3,0,63,0,0,0,2,1,0,17,4,142,105,10,2,3,111,4,6,0,6,11,43,24,2,3,23,89,37,16,1,111,4,6,0,6,7,46,9,6,23,89,10,7,22,254,1,11,3,22,49,4,6,22,47,224,6,22,50,2,22,42,2,3,23,88,4,40,4,4,0,6,42,0,19,48,3,0,160,0,0,0,185,0,0,17,2,142,105,10,22,11,22,12,22,19,5,43,20,7,2,17,5,148,88,11,8,3,17,5,148,88,12,17,5,23,88,19,5,17,5,6,50,231,7,8,47,6,32,255,255,255,127,42,7,126,10,2,0,4,31,31,95,98,8,91,13,4,9,90,126,10,2,0,4,31,31,95,99,16,2,22,19,4,22,19,6,43,67,2,17,6,148,126,10,2,0,4,31,31,95,98,19,7,3,17,6,148,9,90,19,8,17,7,17,8,48,7,17,8,17,7,89,43,5,17,7,17,8,89,19,9,17,9,4,49,6,32,255,255,255,127,42,17,4,17,9,88,19,4,17,6,23,88,19,6,17,6,6,50,184,17,4,7,91,42,90,30,128,10,2,0,4,23,126,10,2,0,4,31,31,95,98,128,11,2,0,4,42,178,4,32,0,0,4,0,46,22,114,163,31,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,19,48,5,0,187,1,0,0,3,1,0,17,3,111,30,0,0,10,10,22,19,5,43,65,114,231,31,0,112,3,17,5,111,27,0,0,10,40,0,1,0,10,22,47,38,114,229,30,0,112,3,17,5,111,27,0,0,10,19,6,18,6,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,17,5,23,88,19,5,17,5,6,50,186,32,200,0,0,0,6,31,100,90,88,32,200,0,0,0,88,31,25,88,31,100,88,31,100,88,141,71,0,0,1,11,26,6,90,30,88,141,74,0,0,1,12,22,13,31,100,19,4,17,4,7,17,4,126,13,2,0,4,23,40,251,3,0,6,88,19,4,22,19,7,43,106,114,231,31,0,112,3,17,7,111,27,0,0,10,40,0,1,0,10,19,8,126,16,2,0,4,17,8,154,19,9,17,4,7,17,4,17,9,23,40,251,3,0,6,88,19,4,8,9,37,23,88,13,17,8,23,95,210,156,8,9,37,23,88,13,17,8,23,99,23,95,210,156,8,9,37,23,88,13,17,8,24,99,23,95,210,156,8,9,37,23,88,13,17,8,25,99,23,95,210,156,17,7,23,88,19,7,17,7,6,50,145,22,19,10,43,53,8,17,10,145,44,41,22,19,11,43,30,8,17,10,17,11,88,143,74,0,0,1,37,71,126,17,2,0,4,17,11,145,97,210,82,17,11,23,88,19,11,17,11,31,9,50,220,17,10,23,88,19,10,17,10,26,6,90,50,196,22,19,12,43,67,8,6,26,90,17,12,88,145,19,13,17,13,44,7,17,13,23,46,23,43,40,17,4,7,17,4,126,18,2,0,4,23,40,251,3,0,6,88,19,4,43,19,17,4,7,17,4,126,19,2,0,4,23,40,251,3,0,6,88,19,4,17,12,23,88,19,12,17,12,30,50,184,17,4,7,17,4,126,14,2,0,4,23,40,251,3,0,6,88,19,4,7,17,4,126,15,2,0,4,22,40,251,3,0,6,38,7,42,0,19,48,6,0,208,1,0,0,0,0,0,0,30,141,72,0,0,1,37,208,161,4,0,4,40,153,0,0,10,128,13,2,0,4,23,141,72,0,0,1,37,22,31,25,158,128,14,2,0,4,30,141,72,0,0,1,37,208,87,5,0,4,40,153,0,0,10,128,15,2,0,4,31,16,141,55,0,0,27,37,22,30,141,72,0,0,1,37,208,148,5,0,4,40,153,0,0,10,162,37,23,30,141,72,0,0,1,37,208,216,4,0,4,40,153,0,0,10,162,37,24,30,141,72,0,0,1,37,208,208,5,0,4,40,153,0,0,10,162,37,25,30,141,72,0,0,1,37,208,102,5,0,4,40,153,0,0,10,162,37,26,30,141,72,0,0,1,37,208,174,4,0,4,40,153,0,0,10,162,37,27,30,141,72,0,0,1,37,208,214,5,0,4,40,153,0,0,10,162,37,28,30,141,72,0,0,1,37,208,18,5,0,4,40,153,0,0,10,162,37,29,30,141,72,0,0,1,37,208,130,5,0,4,40,153,0,0,10,162,37,30,30,141,72,0,0,1,37,208,227,4,0,4,40,153,0,0,10,162,37,31,9,30,141,72,0,0,1,37,208,65,4,0,4,40,153,0,0,10,162,37,31,10,30,141,72,0,0,1,37,208,180,5,0,4,40,153,0,0,10,162,37,31,11,30,141,72,0,0,1,37,208,161,4,0,4,40,153,0,0,10,162,37,31,12,30,141,72,0,0,1,37,208,121,4,0,4,40,153,0,0,10,162,37,31,13,30,141,72,0,0,1,37,208,177,4,0,4,40,153,0,0,10,162,37,31,14,30,141,72,0,0,1,37,208,206,5,0,4,40,153,0,0,10,162,37,31,15,30,141,72,0,0,1,37,208,156,4,0,4,40,153,0,0,10,162,128,16,2,0,4,31,9,141,74,0,0,1,37,208,182,4,0,4,40,153,0,0,10,128,17,2,0,4,24,141,72,0,0,1,37,22,27,158,37,23,31,20,158,128,18,2,0,4,24,141,72,0,0,1,37,22,31,14,158,37,23,31,11,158,128,19,2,0,4,42,90,2,123,20,2,0,4,3,4,5,14,4,111,44,4,0,6,40,20,4,0,6,42,82,2,123,20,2,0,4,3,4,5,111,8,4,0,6,40,20,4,0,6,42,78,2,123,20,2,0,4,3,4,111,1,4,0,6,40,20,4,0,6,42,26,32,0,64,0,0,42,62,2,123,20,2,0,4,3,4,5,111,53,4,0,6,42,0,19,48,4,0,50,0,0,0,4,1,0,17,2,45,2,20,42,2,111,36,1,0,6,10,6,22,111,27,0,0,10,31,48,51,25,6,23,111,226,0,0,10,20,2,111,40,1,0,6,32,0,64,0,0,115,50,1,0,6,42,20,42,74,2,115,196,3,0,6,125,20,2,0,4,2,40,41,4,0,6,42,54,2,3,4,5,14,4,20,40,23,4,0,6,42,254,4,32,0,64,0,0,46,22,114,9,32,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,123,21,2,0,4,114,73,32,0,112,3,40,238,0,0,10,32,128,0,0,0,5,14,4,14,5,111,249,3,0,6,42,74,2,115,203,3,0,6,125,21,2,0,4,2,40,20,0,0,10,42,0,0,19,48,8,0,109,0,0,0,5,1,0,17,2,123,23,2,0,4,10,6,22,111,121,0,0,10,2,4,5,6,40,26,4,0,6,11,7,22,47,2,20,42,6,111,25,0,0,10,37,40,27,4,0,6,12,20,24,141,40,0,0,2,37,22,5,22,148,5,23,148,88,107,34,0,0,0,64,91,3,107,115,59,1,0,6,162,37,23,7,107,3,107,115,59,1,0,6,162,32,0,0,1,0,115,50,1,0,6,13,8,44,7,9,8,111,55,1,0,6,9,42,0,0,0,19,48,5,0,195,0,0,0,6,1,0,17,2,123,22,2,0,4,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,4,23,148,12,22,13,22,19,4,43,114,3,6,8,126,36,2,0,4,18,5,40,51,4,0,6,45,2,21,42,5,31,48,17,5,31,10,93,88,209,111,23,0,0,10,38,6,19,6,22,19,7,43,18,17,6,17,7,148,19,8,8,17,8,88,12,17,7,23,88,19,7,17,7,17,6,142,105,50,230,17,5,31,10,50,12,9,23,23,17,4,89,31,31,95,98,96,13,17,4,23,46,16,3,8,111,12,6,0,6,12,3,8,111,13,6,0,6,12,17,4,23,88,19,4,17,4,24,47,4,8,7,50,133,5,111,120,0,0,10,24,46,2,21,42,5,111,25,0,0,10,40,182,0,0,10,26,93,9,46,2,21,42,8,42,142,2,111,30,0,0,10,24,46,2,20,42,115,100,0,0,10,37,26,2,40,137,0,0,10,140,72,0,0,1,111,52,0,0,10,42,122,2,26,141,72,0,0,1,125,22,2,0,4,2,115,115,0,0,10,125,23,2,0,4,2,40,20,0,0,10,42,0,0,19,48,8,0,109,0,0,0,5,1,0,17,2,123,26,2,0,4,10,6,22,111,121,0,0,10,2,4,5,6,40,30,4,0,6,11,7,22,47,2,20,42,6,111,25,0,0,10,37,40,33,4,0,6,12,20,24,141,40,0,0,2,37,22,5,22,148,5,23,148,88,107,34,0,0,0,64,91,3,107,115,59,1,0,6,162,37,23,7,107,3,107,115,59,1,0,6,162,32,0,0,1,0,115,50,1,0,6,13,8,44,7,9,8,111,55,1,0,6,9,42,0,0,0,19,48,5,0,206,0,0,0,7,1,0,17,2,123,25,2,0,4,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,4,23,148,12,22,13,22,19,5,43,114,3,6,8,126,36,2,0,4,18,6,40,51,4,0,6,45,2,21,42,5,31,48,17,6,31,10,93,88,209,111,23,0,0,10,38,6,19,7,22,19,8,43,18,17,7,17,8,148,19,9,8,17,9,88,12,17,8,23,88,19,8,17,8,17,7,142,105,50,230,17,6,31,10,50,12,9,23,26,17,5,89,31,31,95,98,96,13,17,5,26,46,16,3,8,111,12,6,0,6,12,3,8,111,13,6,0,6,12,17,5,23,88,19,5,17,5,27,47,4,8,7,50,133,5,111,120,0,0,10,27,46,2,21,42,9,18,4,40,32,4,0,6,45,2,21,42,5,111,25,0,0,10,40,31,4,0,6,17,4,46,2,21,42,8,42,0,0,19,48,3,0,76,0,0,0,111,0,0,17,2,111,30,0,0,10,10,22,11,6,24,89,12,43,17,7,2,8,111,27,0,0,10,31,48,89,88,11,8,24,89,12,8,22,47,235,7,25,90,11,6,23,89,13,43,17,7,2,9,111,27,0,0,10,31,48,89,88,11,9,24,89,13,9,22,47,235,7,25,90,11,7,31,10,93,42,130,3,22,84,43,19,2,126,24,2,0,4,3,74,148,51,2,23,42,3,3,74,23,88,84,3,74,31,10,50,231,22,42,0,0,0,19,48,4,0,37,0,0,0,128,0,0,17,2,111,30,0,0,10,27,46,2,20,42,2,40,34,4,0,6,10,6,45,2,20,42,115,100,0,0,10,37,27,6,111,52,0,0,10,42,0,0,0,19,48,4,0,187,0,0,0,8,1,0,17,2,22,111,27,0,0,10,19,4,17,4,31,48,46,14,17,4,31,53,46,16,17,4,31,57,46,18,43,77,114,77,32,0,112,10,43,75,114,9,24,0,112,10,43,67,114,81,32,0,112,2,40,180,0,0,10,44,2,20,42,114,93,32,0,112,2,40,180,0,0,10,44,6,114,105,32,0,112,42,114,115,32,0,112,2,40,180,0,0,10,44,6,114,127,32,0,112,42,114,137,32,0,112,10,43,6,114,137,32,0,112,10,2,23,111,226,0,0,10,40,182,0,0,10,37,31,100,91,19,5,18,5,40,234,0,0,10,11,31,100,93,12,8,31,10,50,9,18,2,40,234,0,0,10,43,16,114,73,32,0,112,8,140,72,0,0,1,40,91,0,0,10,13,6,7,114,249,23,0,112,9,40,229,0,0,10,42,122,2,26,141,72,0,0,1,125,25,2,0,4,2,115,115,0,0,10,125,26,2,0,4,2,40,20,0,0,10,42,98,31,10,141,72,0,0,1,37,208,25,5,0,4,40,153,0,0,10,128,24,2,0,4,42,0,19,48,4,0,54,0,0,0,9,1,0,17,4,5,22,126,27,2,0,4,40,49,4,0,6,10,6,45,2,20,42,2,123,29,2,0,4,3,4,6,111,29,4,0,6,11,7,45,15,2,123,28,2,0,4,3,4,6,111,25,4,0,6,11,7,42,118,2,115,28,4,0,6,125,28,2,0,4,2,115,35,4,0,6,125,29,2,0,4,2,40,20,0,0,10,42,94,25,141,72,0,0,1,37,208,248,4,0,4,40,153,0,0,10,128,27,2,0,4,42,19,48,6,0,159,1,0,0,10,1,0,17,126,11,2,0,4,107,34,143,194,245,62,90,105,128,30,2,0,4,126,11,2,0,4,107,34,51,51,51,63,90,105,128,31,2,0,4,25,141,72,0,0,1,37,208,199,4,0,4,40,153,0,0,10,128,32,2,0,4,27,141,72,0,0,1,37,208,128,4,0,4,40,153,0,0,10,128,33,2,0,4,28,141,72,0,0,1,37,208,184,5,0,4,40,153,0,0,10,128,34,2,0,4,31,10,141,55,0,0,27,37,22,26,141,72,0,0,1,37,208,177,5,0,4,40,153,0,0,10,162,37,23,26,141,72,0,0,1,37,208,45,5,0,4,40,153,0,0,10,162,37,24,26,141,72,0,0,1,37,208,68,4,0,4,40,153,0,0,10,162,37,25,26,141,72,0,0,1,37,208,209,5,0,4,40,153,0,0,10,162,37,26,26,141,72,0,0,1,37,208,185,5,0,4,40,153,0,0,10,162,37,27,26,141,72,0,0,1,37,208,255,4,0,4,40,153,0,0,10,162,37,28,26,141,72,0,0,1,37,208,212,5,0,4,40,153,0,0,10,162,37,29,26,141,72,0,0,1,37,208,173,4,0,4,40,153,0,0,10,162,37,30,26,141,72,0,0,1,37,208,207,4,0,4,40,153,0,0,10,162,37,31,9,26,141,72,0,0,1,37,208,191,4,0,4,40,153,0,0,10,162,128,35,2,0,4,31,20,141,55,0,0,27,128,36,2,0,4,126,35,2,0,4,22,126,36,2,0,4,22,31,10,40,94,0,0,10,31,10,10,43,58,126,35,2,0,4,6,31,10,89,154,11,7,142,105,141,72,0,0,1,12,22,13,43,16,8,9,7,7,142,105,9,89,23,89,148,158,9,23,88,13,9,7,142,105,50,234,126,36,2,0,4,6,8,162,6,23,88,10,6,31,20,50,193,42,170,2,40,9,4,0,6,2,31,20,115,22,0,0,10,125,37,2,0,4,2,115,38,4,0,6,125,38,2,0,4,2,115,213,3,0,6,125,39,2,0,4,42,0,0,19,48,5,0,108,0,0,0,11,1,0,17,22,10,20,11,22,12,126,32,2,0,4,142,105,141,72,0,0,1,13,43,82,22,19,6,43,11,9,17,6,22,158,17,6,23,88,19,6,17,6,126,32,2,0,4,142,105,50,234,2,8,22,126,32,2,0,4,9,40,50,4,0,6,11,7,45,2,20,42,7,22,148,19,4,7,23,148,12,17,4,8,17,4,89,89,19,5,17,5,22,50,12,2,17,5,17,4,22,111,17,6,0,6,10,6,44,171,7,42,66,2,3,4,4,40,42,4,0,6,5,111,44,4,0,6,42,0,0,0,19,48,7,0,16,2,0,0,12,1,0,17,14,4,44,25,14,4,29,111,44,0,0,10,44,15,14,4,29,111,77,0,0,10,116,41,0,0,2,43,1,20,10,6,44,27,6,5,22,148,5,23,148,88,107,34,0,0,0,64,91,3,107,115,59,1,0,6,111,69,1,0,6,2,123,37,2,0,4,11,7,22,111,121,0,0,10,2,4,5,7,111,53,4,0,6,12,8,22,47,2,20,42,6,44,15,6,8,107,3,107,115,59,1,0,6,111,69,1,0,6,2,4,8,111,48,4,0,6,13,9,45,2,20,42,6,44,27,6,9,22,148,9,23,148,88,107,34,0,0,0,64,91,3,107,115,59,1,0,6,111,69,1,0,6,9,23,148,19,4,17,4,17,4,9,22,148,89,88,19,5,17,5,4,111,2,6,0,6,47,13,4,17,4,17,5,22,111,17,6,0,6,45,2,20,42,7,111,25,0,0,10,19,6,17,6,111,30,0,0,10,30,47,2,20,42,2,17,6,111,45,4,0,6,45,2,20,42,5,23,148,5,22,148,88,107,34,0,0,0,64,91,19,7,9,23,148,9,22,148,88,107,34,0,0,0,64,91,19,8,2,111,52,4,0,6,19,9,17,6,20,24,141,40,0,0,2,37,22,17,7,3,107,115,59,1,0,6,162,37,23,17,8,3,107,115,59,1,0,6,162,17,9,115,50,1,0,6,19,10,2,123,38,2,0,4,3,4,9,23,148,111,37,4,0,6,19,11,17,11,57,145,0,0,0,17,10,29,17,11,111,36,1,0,6,111,54,1,0,6,17,10,17,11,111,44,1,0,6,111,55,1,0,6,17,10,17,11,111,40,1,0,6,111,56,1,0,6,17,11,111,36,1,0,6,111,30,0,0,10,19,12,14,4,44,11,14,4,31,14,111,44,0,0,10,45,3,20,43,14,14,4,31,14,111,77,0,0,10,116,55,0,0,27,19,13,17,13,44,50,22,19,14,17,13,19,15,22,19,16,43,24,17,15,17,16,148,19,17,17,12,17,17,51,5,23,19,14,43,14,17,16,23,88,19,16,17,16,17,15,142,105,50,224,17,14,45,2,20,42,17,9,32,128,0,0,0,46,9,17,9,32,0,64,0,0,51,29,2,123,39,2,0,4,17,6,111,210,3,0,6,19,18,17,18,44,10,17,10,28,17,18,111,54,1,0,6,17,10,42,30,3,40,46,4,0,6,42,19,48,5,0,61,0,0,0,13,1,0,17,2,111,30,0,0,10,10,6,45,2,22,42,2,6,23,89,111,27,0,0,10,31,48,89,2,22,6,23,89,111,241,0,0,10,40,47,4,0,6,11,12,18,1,40,24,1,0,10,8,46,2,22,42,18,1,40,131,0,0,10,42,0,0,0,19,48,3,0,189,0,0,0,14,1,0,17,2,111,30,0,0,10,10,22,11,6,23,89,12,43,65,2,8,111,27,0,0,10,31,48,89,13,9,22,50,5,9,31,9,49,37,114,139,32,0,112,2,8,111,27,0,0,10,19,4,18,4,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,7,9,88,11,8,24,89,12,8,22,47,187,7,25,90,11,6,24,89,19,5,43,73,2,17,5,111,27,0,0,10,31,48,89,19,6,17,6,22,50,6,17,6,31,9,49,38,114,139,32,0,112,2,17,5,111,27,0,0,10,19,4,18,4,40,28,0,0,10,114,31,21,0,112,40,246,0,0,10,115,31,0,0,10,122,7,17,6,88,11,17,5,24,89,19,5,17,5,22,47,178,32,232,3,0,0,7,89,31,10,93,115,130,0,0,10,42,58,3,4,22,126,32,2,0,4,40,49,4,0,6,42,74,2,3,4,5,5,142,105,141,72,0,0,1,40,50,4,0,6,42,0,19,48,6,0,192,0,0,0,15,1,0,17,5,142,105,10,2,111,2,6,0,6,11,4,12,4,45,9,2,3,111,12,6,0,6,43,7,2,3,111,13,6,0,6,16,1,22,13,3,19,4,3,19,5,56,135,0,0,0,2,17,5,111,4,6,0,6,8,46,15,14,4,9,143,72,0,0,1,37,74,23,88,84,43,103,9,6,23,89,51,83,14,4,5,126,31,2,0,4,40,7,4,0,6,126,30,2,0,4,47,17,24,141,72,0,0,1,37,22,17,4,158,37,23,17,5,158,42,17,4,14,4,22,148,14,4,23,148,88,88,19,4,14,4,24,14,4,22,9,23,89,40,94,0,0,10,14,4,9,23,89,22,158,14,4,9,22,158,9,23,89,13,43,4,9,23,88,13,14,4,9,23,158,8,22,254,1,12,17,5,23,88,19,5,17,5,7,63,113,255,255,255,20,42,19,48,3,0,78,0,0,0,240,0,0,17,14,4,21,84,2,4,3,40,4,4,0,6,45,2,22,42,126,30,2,0,4,10,5,142,105,11,22,12,43,34,5,8,154,13,3,9,126,31,2,0,4,40,7,4,0,6,19,4,17,4,6,47,7,17,4,10,14,4,8,84,8,23,88,12,8,7,50,218,14,4,74,22,254,4,22,254,1,42,14,31,9,42,78,2,40,41,4,0,6,2,26,141,72,0,0,1,125,42,2,0,4,42,0,0,19,48,5,0,156,0,0,0,6,1,0,17,2,123,42,2,0,4,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,4,23,148,12,22,13,22,19,4,43,93,3,6,8,126,36,2,0,4,18,5,40,51,4,0,6,45,2,21,42,5,31,48,17,5,31,10,93,88,209,111,23,0,0,10,38,6,19,6,22,19,7,43,18,17,6,17,7,148,19,8,8,17,8,88,12,17,7,23,88,19,7,17,7,17,6,142,105,50,230,17,5,31,10,50,12,9,23,27,17,4,89,31,31,95,98,96,13,17,4,23,88,19,4,17,4,28,47,4,8,7,50,154,5,9,40,60,4,0,6,45,2,21,42,8,42,58,3,4,23,126,40,2,0,4,40,49,4,0,6,42,54,2,3,40,62,4,0,6,40,45,4,0,6,42,0,0,0,19,48,7,0,75,0,0,0,2,0,0,17,22,10,43,65,22,11,43,52,3,126,41,2,0,4,6,154,7,148,51,36,2,22,23,141,64,0,0,1,37,22,31,48,6,88,209,157,111,151,0,0,10,38,2,31,48,7,88,209,111,23,0,0,10,38,23,42,7,23,88,11,7,31,10,50,199,6,23,88,10,6,23,49,187,22,42,26,32,0,128,0,0,42,0,0,19,48,4,0,244,0,0,0,16,1,0,17,2,23,28,111,241,0,0,10,10,31,12,115,22,0,0,10,11,7,2,22,111,27,0,0,10,111,23,0,0,10,38,6,27,111,27,0,0,10,12,8,31,48,89,69,5,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,44,0,0,0,78,0,0,0,43,114,7,6,22,24,111,25,1,0,10,38,7,8,111,23,0,0,10,38,7,114,233,32,0,112,111,119,0,0,10,38,7,6,24,25,111,25,1,0,10,38,43,102,7,6,22,25,111,25,1,0,10,38,7,114,243,32,0,112,111,119,0,0,10,38,7,6,25,24,111,25,1,0,10,38,43,68,7,6,22,26,111,25,1,0,10,38,7,114,243,32,0,112,111,119,0,0,10,38,7,6,26,111,27,0,0,10,111,23,0,0,10,38,43,30,7,6,22,27,111,25,1,0,10,38,7,114,233,32,0,112,111,119,0,0,10,38,7,8,111,23,0,0,10,38,2,111,30,0,0,10,30,50,14,7,2,29,111,27,0,0,10,111,23,0,0,10,38,7,111,25,0,0,10,42,19,48,6,0,76,0,0,0,0,0,0,0,28,141,72,0,0,1,37,208,184,5,0,4,40,153,0,0,10,128,40,2,0,4,24,141,55,0,0,27,37,22,31,10,141,72,0,0,1,37,208,121,5,0,4,40,153,0,0,10,162,37,23,31,10,141,72,0,0,1,37,208,134,4,0,4,40,153,0,0,10,162,128,41,2,0,4,42,178,4,32,0,128,0,0,46,22,114,255,32,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,2,3,4,5,14,4,14,5,40,249,3,0,6,42,0,0,0,27,48,5,0,58,1,0,0,17,1,0,17,3,111,30,0,0,10,10,6,29,46,6,6,30,46,57,43,92,3,40,62,4,0,6,40,47,4,0,6,19,6,18,6,40,131,0,0,10,45,11,114,253,24,0,112,115,31,0,0,10,122,3,18,6,40,132,0,0,10,140,72,0,0,1,40,91,0,0,10,16,1,43,59,0,3,40,46,4,0,6,45,11,114,55,25,0,112,115,31,0,0,10,122,222,37,19,7,114,115,25,0,112,17,7,115,2,1,0,10,122,114,63,33,0,112,6,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,3,22,23,111,241,0,0,10,40,182,0,0,10,11,7,44,15,7,23,46,11,114,169,33,0,112,115,31,0,0,10,122,3,29,23,111,241,0,0,10,40,182,0,0,10,12,126,41,2,0,4,7,154,8,148,13,31,51,141,71,0,0,1,19,4,22,19,5,17,5,17,4,17,5,126,32,2,0,4,23,40,251,3,0,6,88,19,5,23,19,8,43,66,3,17,8,23,111,241,0,0,10,40,182,0,0,10,19,9,9,28,17,8,89,31,31,95,99,23,95,23,51,7,17,9,31,10,88,19,9,17,5,17,4,17,5,126,36,2,0,4,17,9,154,22,40,251,3,0,6,88,19,5,17,8,23,88,19,8,17,8,28,49,185,17,4,17,5,126,34,2,0,4,22,40,251,3,0,6,38,17,4,42,0,0,1,16,0,0,0,0,73,0,21,94,0,15,22,0,0,2,19,48,3,0,97,0,0,0,0,0,0,0,2,40,9,4,0,6,2,26,141,72,0,0,1,125,48,2,0,4,2,30,141,72,0,0,1,125,49,2,0,4,2,26,141,80,0,0,1,125,50,2,0,4,2,26,141,80,0,0,1,125,51,2,0,4,2,2,123,49,2,0,4,142,105,24,91,141,72,0,0,1,125,52,2,0,4,2,2,123,49,2,0,4,142,105,24,91,141,72,0,0,1,125,53,2,0,4,42,30,2,123,48,2,0,4,42,30,2,123,49,2,0,4,42,30,2,123,50,2,0,4,42,30,2,123,51,2,0,4,42,30,2,123,52,2,0,4,42,30,2,123,53,2,0,4,42,178,4,22,84,43,30,2,3,4,74,154,126,45,2,0,4,40,7,4,0,6,126,44,2,0,4,47,2,23,42,4,4,74,23,88,84,4,74,3,142,105,50,219,22,42,0,0,19,48,3,0,45,0,0,0,18,1,0,17,22,10,3,22,152,11,23,12,43,16,3,8,152,7,54,6,3,8,152,11,8,10,8,23,88,12,8,2,142,105,50,234,2,6,143,72,0,0,1,37,74,23,88,84,42,0,0,0,19,48,3,0,45,0,0,0,18,1,0,17,22,10,3,22,152,11,23,12,43,16,3,8,152,7,52,6,3,8,152,11,8,10,8,23,88,12,8,2,142,105,50,234,2,6,143,72,0,0,1,37,74,23,89,84,42,0,0,0,19,48,4,0,105,0,0,0,19,1,0,17,2,22,148,2,23,148,88,37,2,24,148,88,2,25,148,88,10,107,6,107,91,11,7,34,171,170,74,63,55,73,7,34,73,146,100,63,53,65,32,255,255,255,127,12,32,0,0,0,128,13,2,19,4,22,19,5,43,29,17,4,17,5,148,19,6,17,6,9,49,3,17,6,13,17,6,8,47,3,17,6,12,17,5,23,88,19,5,17,5,17,4,142,105,50,219,9,31,10,8,90,254,4,42,22,42,150,126,11,2,0,4,107,34,205,204,76,62,90,105,128,44,2,0,4,126,11,2,0,4,107,34,102,102,230,62,90,105,128,45,2,0,4,42,30,2,123,54,2,0,4,42,34,2,3,125,54,2,0,4,42,30,2,123,55,2,0,4,42,34,2,3,125,55,2,0,4,42,86,2,40,20,0,0,10,2,3,40,81,4,0,6,2,4,40,83,4,0,6,42,226,26,141,13,0,0,1,37,22,2,40,80,4,0,6,140,72,0,0,1,162,37,23,114,227,33,0,112,162,37,24,2,40,82,4,0,6,140,72,0,0,1,162,37,25,114,183,19,0,112,162,40,134,0,0,10,42,19,48,2,0,48,0,0,0,20,1,0,17,3,117,140,0,0,2,45,2,22,42,3,116,140,0,0,2,10,2,40,80,4,0,6,6,111,80,4,0,6,51,15,2,40,82,4,0,6,6,111,82,4,0,6,254,1,42,22,42,58,2,40,80,4,0,6,2,40,82,4,0,6,97,42,30,2,123,56,2,0,4,42,34,2,3,125,56,2,0,4,42,30,2,123,57,2,0,4,42,34,2,3,125,57,2,0,4,42,30,2,123,58,2,0,4,42,34,2,3,125,58,2,0,4,42,242,2,40,20,0,0,10,2,3,40,89,4,0,6,2,4,40,91,4,0,6,2,24,141,40,0,0,2,37,22,5,107,14,5,107,115,59,1,0,6,162,37,23,14,4,107,14,5,107,115,59,1,0,6,162,40,93,4,0,6,42,0,19,48,2,0,32,0,0,0,21,1,0,17,3,117,141,0,0,2,45,2,22,42,3,116,141,0,0,2,10,2,40,88,4,0,6,6,111,88,4,0,6,254,1,42,30,2,40,88,4,0,6,42,30,2,123,59,2,0,4,42,34,2,3,125,59,2,0,4,42,30,2,123,60,2,0,4,42,34,2,3,125,60,2,0,4,42,66,2,3,4,40,84,4,0,6,2,5,40,98,4,0,6,42,0,19,48,3,0,17,0,0,0,1,0,0,17,2,40,99,4,0,6,10,2,6,23,88,40,100,4,0,6,42,118,2,40,67,4,0,6,2,115,26,1,0,10,125,68,2,0,4,2,115,26,1,0,10,125,69,2,0,4,42,0,19,48,5,0,184,0,0,0,22,1,0,17,2,4,22,3,5,40,109,4,0,6,10,2,123,68,2,0,4,6,40,105,4,0,6,4,111,24,6,0,6,2,4,23,3,5,40,109,4,0,6,11,2,123,69,2,0,4,7,40,105,4,0,6,4,111,24,6,0,6,2,123,68,2,0,4,111,27,1,0,10,12,22,13,43,104,2,123,68,2,0,4,9,111,28,1,0,10,19,4,17,4,111,99,4,0,6,23,49,76,2,123,69,2,0,4,111,27,1,0,10,19,5,22,19,6,43,52,2,123,69,2,0,4,17,6,111,28,1,0,10,19,7,17,7,111,99,4,0,6,23,49,21,17,4,17,7,40,108,4,0,6,44,10,17,4,17,7,40,107,4,0,6,42,17,6,23,88,19,6,17,6,17,5,50,198,9,23,88,13,9,8,50,148,20,42,27,48,2,0,77,0,0,0,23,1,0,17,3,45,1,42,22,10,2,111,29,1,0,10,11,43,31,7,111,30,1,0,10,12,8,111,80,4,0,6,3,111,80,4,0,6,51,10,8,111,102,4,0,6,23,10,222,20,7,111,59,0,0,10,45,217,222,10,7,44,6,7,111,60,0,0,10,220,6,45,7,2,3,111,31,1,0,10,42,0,0,0,1,16,0,0,2,0,13,0,43,56,0,10,0,0,0,0,94,2,123,68,2,0,4,111,32,1,0,10,2,123,69,2,0,4,111,32,1,0,10,42,19,48,7,0,230,0,0,0,24,1,0,17,32,245,58,69,0,106,2,111,80,4,0,6,106,90,3,111,80,4,0,6,106,88,10,18,0,40,33,1,0,10,11,31,14,115,22,0,0,10,12,31,13,7,111,30,0,0,10,89,19,6,43,15,8,31,48,111,23,0,0,10,38,17,6,23,89,19,6,17,6,22,48,236,8,7,111,119,0,0,10,38,22,13,22,19,7,43,36,8,17,7,111,149,0,0,10,31,48,89,19,8,9,17,7,23,95,44,4,17,8,43,4,25,17,8,90,88,13,17,7,23,88,19,7,17,7,31,13,50,214,31,10,9,31,10,93,89,13,9,31,10,51,2,22,13,8,9,111,191,0,0,10,38,2,111,97,4,0,6,111,92,4,0,6,19,4,3,111,97,4,0,6,111,92,4,0,6,19,5,8,111,25,0,0,10,20,26,141,40,0,0,2,37,22,17,4,22,154,162,37,23,17,4,23,154,162,37,24,17,5,22,154,162,37,25,17,5,23,154,162,32,0,16,0,0,115,50,1,0,6,42,0,0,19,48,3,0,67,0,0,0,1,0,0,17,2,111,82,4,0,6,31,16,3,111,82,4,0,6,90,88,31,79,93,31,9,2,111,97,4,0,6,111,88,4,0,6,90,3,111,97,4,0,6,111,88,4,0,6,88,10,6,31,72,49,4,6,23,89,10,6,30,49,4,6,23,89,10,6,254,1,42,0,19,48,5,0,187,0,0,0,25,1,0,17,2,3,4,40,111,4,0,6,10,6,45,2,20,42,2,3,5,4,6,40,112,4,0,6,11,7,45,2,20,42,14,4,44,25,14,4,29,111,44,0,0,10,44,15,14,4,29,111,77,0,0,10,116,41,0,0,2,43,1,20,12,8,44,48,6,22,148,6,23,148,88,107,34,0,0,0,64,91,19,5,4,44,14,3,111,2,6,0,6,23,89,107,17,5,89,19,5,8,17,5,5,107,115,59,1,0,6,111,69,1,0,6,2,3,7,23,40,110,4,0,6,13,9,45,2,20,42,2,3,7,22,40,110,4,0,6,19,4,17,4,45,2,20,42,32,61,6,0,0,9,111,80,4,0,6,90,17,4,111,80,4,0,6,88,9,111,82,4,0,6,26,17,4,111,82,4,0,6,90,88,7,115,101,4,0,6,42,0,19,48,4,0,103,2,0,0,26,1,0,17,2,40,69,4,0,6,10,22,19,12,43,11,6,17,12,22,158,17,12,23,88,19,12,17,12,6,142,105,50,238,5,44,19,3,4,111,90,4,0,6,22,148,6,40,6,4,0,6,45,73,20,42,3,4,111,90,4,0,6,23,148,23,88,6,40,4,4,0,6,45,2,20,42,22,19,13,6,142,105,23,89,19,14,43,32,6,17,13,148,19,15,6,17,13,6,17,14,148,158,6,17,14,17,15,158,17,13,23,88,19,13,17,14,23,89,19,14,17,13,17,14,50,218,5,45,4,31,15,43,2,31,16,11,6,40,221,6,0,6,107,7,107,91,12,2,40,72,4,0,6,13,2,40,73,4,0,6,19,4,2,40,70,4,0,6,19,5,2,40,71,4,0,6,19,6,22,19,16,43,93,6,17,16,148,107,8,91,19,17,17,17,34,0,0,0,63,88,105,19,18,17,18,23,47,5,23,19,18,43,8,17,18,30,49,3,30,19,18,17,16,23,99,19,19,17,16,23,95,45,19,9,17,19,17,18,158,17,5,17,19,17,17,17,18,107,89,160,43,18,17,4,17,19,17,18,158,17,6,17,19,17,17,17,18,107,89,160,17,16,23,88,19,16,17,16,6,142,105,50,156,2,5,7,40,113,4,0,6,45,2,20,42,22,19,7,22,19,8,9,142,105,23,89,19,20,43,31,17,8,31,9,90,19,8,17,8,9,17,20,148,88,19,8,17,7,9,17,20,148,88,19,7,17,20,23,89,19,20,17,20,22,47,220,22,19,9,22,19,10,17,4,142,105,23,89,19,21,43,33,17,9,31,9,90,19,9,17,9,17,4,17,21,148,88,19,9,17,10,17,4,17,21,148,88,19,10,17,21,23,89,19,21,17,21,22,47,218,17,8,25,17,9,90,88,19,11,5,44,103,17,7,23,95,45,11,17,7,31,12,48,5,17,7,26,47,2,20,42,31,12,17,7,89,24,91,19,22,126,65,2,0,4,17,22,148,19,23,31,9,17,23,89,19,24,9,17,23,22,40,115,4,0,6,17,4,17,24,23,40,115,4,0,6,19,25,126,61,2,0,4,17,22,148,19,26,126,63,2,0,4,17,22,148,19,27,17,26,90,17,25,88,17,27,88,17,11,115,84,4,0,6,42,17,10,23,95,45,11,17,10,31,10,48,5,17,10,26,47,2,20,42,31,10,17,10,89,24,91,19,28,126,66,2,0,4,17,28,148,19,29,31,9,17,29,89,19,30,9,17,29,23,40,115,4,0,6,19,31,17,4,17,30,22,40,115,4,0,6,126,62,2,0,4,17,28,148,19,32,126,64,2,0,4,17,28,148,19,33,17,32,90,17,31,88,17,33,88,17,11,115,84,4,0,6,42,0,19,48,4,0,195,0,0,0,27,1,0,17,2,40,68,4,0,6,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,22,12,22,13,43,19,3,9,111,4,6,0,6,22,254,1,12,4,8,46,8,9,23,88,13,9,7,50,233,22,19,4,9,19,5,9,19,6,43,118,3,17,6,111,4,6,0,6,8,46,15,6,17,4,143,72,0,0,1,37,74,23,88,84,43,86,17,4,25,51,65,6,40,78,4,0,6,44,17,24,141,72,0,0,1,37,22,17,5,158,37,23,17,6,158,42,17,5,6,22,148,6,23,148,88,88,19,5,6,22,6,24,148,158,6,23,6,25,148,158,6,24,22,158,6,25,22,158,17,4,23,89,19,4,43,6,17,4,23,88,19,4,6,17,4,23,158,8,22,254,1,12,17,6,23,88,19,6,17,6,7,50,133,20,42,0,19,48,6,0,159,0,0,0,28,1,0,17,3,14,4,22,148,111,4,6,0,6,10,14,4,22,148,23,89,11,43,4,7,23,89,11,7,22,50,10,6,3,7,111,4,6,0,6,51,238,7,23,88,11,14,4,22,148,7,89,12,2,40,68,4,0,6,13,9,22,9,23,9,142,105,23,89,40,94,0,0,10,9,22,8,158,9,126,67,2,0,4,18,4,40,74,4,0,6,45,2,20,42,7,19,5,14,4,23,148,19,6,5,44,26,3,111,2,6,0,6,23,89,17,5,89,19,5,3,111,2,6,0,6,23,89,17,6,89,19,6,17,4,24,141,72,0,0,1,37,22,7,158,37,23,14,4,23,148,158,17,5,17,6,4,115,94,4,0,6,42,0,19,48,2,0,76,1,0,0,29,1,0,17,2,40,72,4,0,6,40,221,6,0,6,10,2,40,73,4,0,6,40,221,6,0,6,11,6,7,88,4,89,12,6,23,95,3,45,3,22,43,1,23,254,1,13,7,23,95,23,254,1,19,4,22,19,5,22,19,6,22,19,7,22,19,8,3,44,36,6,31,12,49,5,23,19,6,43,7,6,26,47,3,23,19,5,7,31,12,49,5,23,19,8,43,43,7,26,47,39,23,19,7,43,34,6,31,11,49,5,23,19,6,43,7,6,27,47,3,23,19,5,7,31,10,49,5,23,19,8,43,7,7,26,47,3,23,19,7,8,23,51,25,9,44,11,17,4,44,2,22,42,23,19,6,43,80,17,4,45,2,22,42,23,19,8,43,69,8,21,51,25,9,44,11,17,4,44,2,22,42,23,19,5,43,51,17,4,45,2,22,42,23,19,7,43,40,8,45,35,9,44,26,17,4,45,2,22,42,6,7,47,8,23,19,5,23,19,8,43,16,23,19,6,23,19,7,43,8,17,4,44,4,22,42,22,42,17,5,44,23,17,6,44,2,22,42,2,40,72,4,0,6,2,40,70,4,0,6,40,76,4,0,6,17,6,44,17,2,40,72,4,0,6,2,40,70,4,0,6,40,77,4,0,6,17,7,44,23,17,8,44,2,22,42,2,40,73,4,0,6,2,40,70,4,0,6,40,76,4,0,6,17,8,44,17,2,40,73,4,0,6,2,40,71,4,0,6,40,77,4,0,6,23,42,19,48,6,0,69,1,0,0,0,0,0,0,27,141,72,0,0,1,37,208,181,5,0,4,40,153,0,0,10,128,61,2,0,4,26,141,72,0,0,1,37,208,152,4,0,4,40,153,0,0,10,128,62,2,0,4,27,141,72,0,0,1,37,208,91,5,0,4,40,153,0,0,10,128,63,2,0,4,26,141,72,0,0,1,37,208,150,5,0,4,40,153,0,0,10,128,64,2,0,4,27,141,72,0,0,1,37,208,27,5,0,4,40,153,0,0,10,128,65,2,0,4,26,141,72,0,0,1,37,208,137,5,0,4,40,153,0,0,10,128,66,2,0,4,31,9,141,55,0,0,27,37,22,26,141,72,0,0,1,37,208,182,5,0,4,40,153,0,0,10,162,37,23,26,141,72,0,0,1,37,208,195,5,0,4,40,153,0,0,10,162,37,24,26,141,72,0,0,1,37,208,16,5,0,4,40,153,0,0,10,162,37,25,26,141,72,0,0,1,37,208,63,5,0,4,40,153,0,0,10,162,37,26,26,141,72,0,0,1,37,208,38,5,0,4,40,153,0,0,10,162,37,27,26,141,72,0,0,1,37,208,234,4,0,4,40,153,0,0,10,162,37,28,26,141,72,0,0,1,37,208,55,5,0,4,40,153,0,0,10,162,37,29,26,141,72,0,0,1,37,208,229,4,0,4,40,153,0,0,10,162,37,30,26,141,72,0,0,1,37,208,147,4,0,4,40,153,0,0,10,162,128,67,2,0,4,42,0,0,0,19,48,4,0,31,1,0,0,30,1,0,17,2,142,105,10,22,11,2,19,4,22,19,5,43,18,17,4,17,5,148,19,6,7,17,6,88,11,17,5,23,88,19,5,17,5,17,4,142,105,50,230,22,12,22,13,22,19,7,56,223,0,0,0,23,19,8,9,23,17,7,31,31,95,98,96,13,56,183,0,0,0,7,17,8,89,23,89,6,17,7,89,24,89,40,116,4,0,6,19,9,4,44,47,9,45,44,7,17,8,89,6,17,7,89,23,89,89,6,17,7,89,23,89,50,25,17,9,7,17,8,89,6,17,7,89,89,6,17,7,89,24,89,40,116,4,0,6,89,19,9,6,17,7,89,23,89,23,49,70,22,19,10,7,17,8,89,6,17,7,89,24,89,89,19,11,43,31,17,10,7,17,8,89,17,11,89,23,89,6,17,7,89,25,89,40,116,4,0,6,88,19,10,17,11,23,89,19,11,17,11,3,48,220,17,9,17,10,6,23,89,17,7,89,90,89,19,9,43,13,7,17,8,89,3,49,6,17,9,23,89,19,9,8,17,9,88,12,17,8,23,88,19,8,9,23,17,7,31,31,95,98,102,95,13,17,8,2,17,7,148,63,62,255,255,255,7,17,8,89,11,17,7,23,88,19,7,17,7,6,23,89,63,23,255,255,255,8,42,0,19,48,2,0,73,0,0,0,51,0,0,17,2,3,89,3,49,8,3,11,2,3,89,10,43,6,2,3,89,11,3,10,23,12,23,13,2,19,4,43,23,8,17,4,90,12,9,7,48,8,8,9,91,12,9,23,88,13,17,4,23,89,19,4,17,4,6,48,228,43,8,8,9,91,12,9,23,88,13,9,7,49,244,8,42,0,0,0,19,48,4,0,8,1,0,0,31,1,0,17,2,111,34,1,0,10,23,98,23,89,10,2,2,111,34,1,0,10,23,89,111,35,1,0,10,111,122,4,0,6,45,4,6,23,89,10,31,12,6,90,115,7,6,0,6,11,22,12,2,22,111,35,1,0,10,111,122,4,0,6,111,80,4,0,6,13,31,11,19,4,43,29,9,23,17,4,31,31,95,98,95,44,8,7,8,23,111,5,6,0,6,8,23,88,12,17,4,23,89,19,4,17,4,22,47,222,23,19,5,56,135,0,0,0,2,17,5,111,35,1,0,10,19,6,17,6,111,120,4,0,6,111,80,4,0,6,19,7,31,11,19,8,43,30,17,7,23,17,8,31,31,95,98,95,44,8,7,8,23,111,5,6,0,6,8,23,88,12,17,8,23,89,19,8,17,8,22,47,221,17,6,111,122,4,0,6,44,55,17,6,111,122,4,0,6,111,80,4,0,6,19,9,31,11,19,10,43,30,17,9,23,17,10,31,31,95,98,95,44,8,7,8,23,111,5,6,0,6,8,23,88,12,17,10,23,89,19,10,17,10,22,47,221,17,5,23,88,19,5,17,5,2,111,34,1,0,10,63,108,255,255,255,7,42,30,2,123,70,2,0,4,42,34,2,3,125,70,2,0,4,42,30,2,123,71,2,0,4,42,34,2,3,125,71,2,0,4,42,30,2,123,72,2,0,4,42,34,2,3,125,72,2,0,4,42,30,2,123,73,2,0,4,42,34,2,3,125,73,2,0,4,42,146,2,40,20,0,0,10,2,3,40,121,4,0,6,2,4,40,123,4,0,6,2,5,40,125,4,0,6,2,14,4,40,119,4,0,6,42,42,2,40,122,4,0,6,20,254,1,42,19,48,4,0,99,0,0,0,1,0,0,17,29,141,13,0,0,1,37,22,114,231,33,0,112,162,37,23,2,40,120,4,0,6,162,37,24,114,237,33,0,112,162,37,25,2,40,122,4,0,6,162,37,26,114,245,33,0,112,162,37,27,2,40,124,4,0,6,44,21,2,40,124,4,0,6,111,88,4,0,6,10,18,0,40,234,0,0,10,43,5,114,159,15,0,112,162,37,28,114,253,33,0,112,162,40,134,0,0,10,42,0,19,48,2,0,75,0,0,0,32,1,0,17,3,117,146,0,0,2,45,2,22,42,3,116,146,0,0,2,10,2,40,120,4,0,6,6,111,120,4,0,6,40,130,4,0,6,44,37,2,40,122,4,0,6,6,111,122,4,0,6,40,130,4,0,6,44,18,2,40,124,4,0,6,6,111,124,4,0,6,40,130,4,0,6,42,22,42,66,2,44,8,2,3,111,189,0,0,10,42,3,20,254,1,42,146,2,40,120,4,0,6,40,132,4,0,6,2,40,122,4,0,6,40,132,4,0,6,97,2,40,124,4,0,6,40,132,4,0,6,97,42,50,2,44,7,2,111,243,0,0,10,42,22,42,134,2,40,20,0,0,10,2,3,115,36,1,0,10,40,135,4,0,6,2,4,40,137,4,0,6,2,5,40,139,4,0,6,42,30,2,123,74,2,0,4,42,34,2,3,125,74,2,0,4,42,30,2,123,75,2,0,4,42,34,2,3,125,75,2,0,4,42,30,2,123,76,2,0,4,42,34,2,3,125,76,2,0,4,42,54,2,40,134,4,0,6,3,111,189,0,0,10,42,90,114,3,34,0,112,2,40,134,4,0,6,114,9,34,0,112,40,75,0,0,10,42,19,48,2,0,53,0,0,0,33,1,0,17,3,117,147,0,0,2,45,2,22,42,3,116,147,0,0,2,10,2,40,134,4,0,6,6,111,134,4,0,6,111,189,0,0,10,44,15,2,40,138,4,0,6,6,111,138,4,0,6,254,1,42,22,42,0,0,0,19,48,2,0,27,0,0,0,160,0,0,17,2,40,134,4,0,6,111,243,0,0,10,2,40,138,4,0,6,10,18,0,40,37,1,0,10,97,42,30,2,123,90,2,0,4,42,0,19,48,3,0,82,0,0,0,0,0,0,0,2,123,90,2,0,4,111,38,1,0,10,2,22,125,93,2,0,4,2,3,4,40,147,4,0,6,44,12,2,123,90,2,0,4,40,155,4,0,6,42,2,123,90,2,0,4,111,38,1,0,10,2,23,125,93,2,0,4,2,3,4,40,147,4,0,6,44,12,2,123,90,2,0,4,40,155,4,0,6,42,20,42,94,2,123,90,2,0,4,111,38,1,0,10,2,123,91,2,0,4,111,39,1,0,10,42,0,0,19,48,4,0,105,0,0,0,32,1,0,17,2,4,2,123,90,2,0,4,3,40,158,4,0,6,10,6,44,14,2,123,90,2,0,4,6,111,40,1,0,10,43,224,2,123,90,2,0,4,111,34,1,0,10,45,2,22,42,2,40,156,4,0,6,44,2,23,42,2,123,91,2,0,4,111,41,1,0,10,22,254,3,2,3,22,40,151,4,0,6,44,22,2,22,40,148,4,0,6,44,2,23,42,2,23,40,148,4,0,6,44,2,23,42,22,42,0,0,0,19,48,3,0,80,0,0,0,0,0,0,0,2,123,91,2,0,4,111,41,1,0,10,31,25,49,13,2,123,91,2,0,4,111,39,1,0,10,20,42,2,123,90,2,0,4,111,38,1,0,10,3,44,11,2,123,91,2,0,4,111,42,1,0,10,2,115,43,1,0,10,22,40,149,4,0,6,3,44,11,2,123,91,2,0,4,111,42,1,0,10,42,19,48,4,0,185,0,0,0,34,1,0,17,4,10,56,159,0,0,0,2,123,91,2,0,4,6,111,44,1,0,10,11,2,123,90,2,0,4,111,38,1,0,10,3,111,41,1,0,10,12,22,19,5,43,30,2,123,90,2,0,4,3,17,5,111,44,1,0,10,111,134,4,0,6,111,45,1,0,10,17,5,23,88,19,5,17,5,8,50,221,2,123,90,2,0,4,7,111,134,4,0,6,111,45,1,0,10,2,123,90,2,0,4,40,150,4,0,6,44,54,2,40,156,4,0,6,44,7,2,123,90,2,0,4,42,115,43,1,0,10,13,9,3,111,46,1,0,10,9,7,111,47,1,0,10,2,9,6,23,88,40,149,4,0,6,19,4,17,4,44,3,17,4,42,6,23,88,10,6,2,123,91,2,0,4,111,41,1,0,10,63,80,255,255,255,20,42,0,0,0,19,48,3,0,93,0,0,0,35,1,0,17,126,88,2,0,4,10,22,11,43,75,6,7,154,12,2,111,34,1,0,10,8,142,105,48,56,23,13,22,19,4,43,34,2,17,4,111,35,1,0,10,111,124,4,0,6,111,88,4,0,6,8,17,4,148,46,4,22,13,43,16,17,4,23,88,19,4,17,4,2,111,34,1,0,10,50,212,9,44,2,23,42,7,23,88,11,7,6,142,105,50,175,22,42,0,0,0,19,48,5,0,145,0,0,0,36,1,0,17,22,10,22,11,22,12,43,54,2,123,91,2,0,4,6,111,44,1,0,10,13,9,111,136,4,0,6,3,49,15,9,2,123,90,2,0,4,111,140,4,0,6,12,43,31,9,2,123,90,2,0,4,111,140,4,0,6,11,6,23,88,10,6,2,123,91,2,0,4,111,41,1,0,10,50,188,8,7,96,44,1,42,2,123,90,2,0,4,2,123,91,2,0,4,40,153,4,0,6,44,1,42,2,123,91,2,0,4,6,2,123,90,2,0,4,3,4,115,133,4,0,6,111,48,1,0,10,2,123,90,2,0,4,2,123,91,2,0,4,40,152,4,0,6,42,0,0,0,27,48,2,0,185,0,0,0,37,1,0,17,22,10,56,165,0,0,0,3,6,111,44,1,0,10,11,7,111,134,4,0,6,111,34,1,0,10,2,111,34,1,0,10,59,131,0,0,0,23,12,7,111,134,4,0,6,111,49,1,0,10,13,43,80,18,3,40,50,1,0,10,19,4,22,19,5,2,111,49,1,0,10,19,6,43,25,18,6,40,50,1,0,10,19,7,17,4,17,7,111,189,0,0,10,44,5,23,19,5,222,25,18,6,40,51,1,0,10,45,222,222,14,18,6,254,22,102,0,0,27,111,60,0,0,10,220,17,5,45,4,22,12,222,25,18,3,40,51,1,0,10,45,167,222,14,18,3,254,22,102,0,0,27,111,60,0,0,10,220,8,44,7,3,6,111,52,1,0,10,6,23,88,10,6,3,111,41,1,0,10,63,79,255,255,255,42,0,0,0,1,28,0,0,2,0,73,0,38,111,0,14,0,0,0,0,2,0,51,0,93,144,0,14,0,0,0,0,27,48,2,0,170,0,0,0,38,1,0,17,3,111,53,1,0,10,10,56,130,0,0,0,6,111,54,1,0,10,11,23,12,2,111,55,1,0,10,13,43,84,9,111,56,1,0,10,19,4,22,19,5,7,111,134,4,0,6,111,49,1,0,10,19,6,43,25,18,6,40,50,1,0,10,19,7,17,4,17,7,111,189,0,0,10,44,5,23,19,5,222,25,18,6,40,51,1,0,10,45,222,222,14,18,6,254,22,102,0,0,27,111,60,0,0,10,220,17,5,45,4,22,12,222,20,9,111,59,0,0,10,45,164,222,10,9,44,6,9,111,60,0,0,10,220,8,44,5,23,19,8,222,25,6,111,59,0,0,10,58,115,255,255,255,222,10,6,44,6,6,111,60,0,0,10,220,22,42,17,8,42,0,0,1,40,0,0,2,0,54,0,38,92,0,14,0,0,0,0,2,0,28,0,96,124,0,10,0,0,0,0,2,0,7,0,148,155,0,10,0,0,0,0,30,2,123,91,2,0,4,42,19,48,7,0,108,0,0,0,39,1,0,17,2,40,117,4,0,6,40,171,4,0,6,111,170,4,0,6,10,6,45,2,20,42,2,22,111,35,1,0,10,111,124,4,0,6,111,92,4,0,6,11,2,2,111,34,1,0,10,23,89,111,35,1,0,10,111,124,4,0,6,111,92,4,0,6,12,6,20,26,141,40,0,0,2,37,22,7,22,154,162,37,23,7,23,154,162,37,24,8,22,154,162,37,25,8,23,154,162,32,0,32,0,0,115,50,1,0,6,42,19,48,3,0,154,0,0,0,40,1,0,17,2,123,90,2,0,4,22,111,35,1,0,10,37,111,120,4,0,6,10,111,122,4,0,6,11,7,45,2,22,42,7,111,82,4,0,6,12,24,13,23,19,4,43,67,2,123,90,2,0,4,17,4,111,35,1,0,10,19,5,8,17,5,111,120,4,0,6,111,82,4,0,6,88,12,9,23,88,13,17,5,111,122,4,0,6,19,6,17,6,44,14,8,17,6,111,82,4,0,6,88,12,9,23,88,13,17,4,23,88,19,4,17,4,2,123,90,2,0,4,111,34,1,0,10,50,174,8,32,211,0,0,0,93,12,32,211,0,0,0,9,26,89,90,8,88,6,111,80,4,0,6,254,1,42,0,0,19,48,2,0,45,0,0,0,1,0,0,17,2,3,111,4,6,0,6,44,18,2,3,111,13,6,0,6,10,2,6,111,12,6,0,6,10,43,16,2,3,111,12,6,0,6,10,2,6,111,13,6,0,6,10,6,42,0,0,0,19,48,5,0,150,0,0,0,41,1,0,17,4,111,34,1,0,10,24,93,22,254,1,10,2,123,93,2,0,4,44,5,6,22,254,1,10,23,12,21,13,2,3,4,9,40,159,4,0,6,45,2,20,42,2,3,5,6,40,161,4,0,6,11,7,45,17,3,2,123,92,2,0,4,22,148,40,157,4,0,6,13,43,2,22,12,8,45,208,2,3,7,6,23,40,162,4,0,6,19,4,17,4,45,2,20,42,4,111,34,1,0,10,44,23,4,4,111,34,1,0,10,23,89,111,35,1,0,10,111,127,4,0,6,44,2,20,42,2,3,7,6,22,40,162,4,0,6,19,5,17,4,17,5,7,23,115,126,4,0,6,42,0,0,19,48,4,0,43,1,0,0,42,1,0,17,2,40,68,4,0,6,10,6,22,22,158,6,23,22,158,6,24,22,158,6,25,22,158,3,111,2,6,0,6,11,5,22,50,4,5,12,43,39,4,111,34,1,0,10,45,4,22,12,43,27,4,4,111,34,1,0,10,23,89,111,35,1,0,10,111,124,4,0,6,111,90,4,0,6,23,148,12,4,111,34,1,0,10,24,93,22,254,3,13,2,123,93,2,0,4,44,5,9,22,254,1,13,22,19,4,43,20,3,8,111,4,6,0,6,22,254,1,19,4,17,4,44,8,8,23,88,12,8,7,50,232,22,19,5,8,19,6,8,19,7,56,144,0,0,0,3,17,7,111,4,6,0,6,17,4,46,15,6,17,5,143,72,0,0,1,37,74,23,88,84,43,111,17,5,25,51,88,9,44,6,6,40,160,4,0,6,6,40,78,4,0,6,44,22,2,123,92,2,0,4,22,17,6,158,2,123,92,2,0,4,23,17,7,158,23,42,9,44,6,6,40,160,4,0,6,17,6,6,22,148,6,23,148,88,88,19,6,6,22,6,24,148,158,6,23,6,25,148,158,6,24,22,158,6,25,22,158,17,5,23,89,19,5,43,6,17,5,23,88,19,5,6,17,5,23,158,17,4,22,254,1,19,4,17,7,23,88,19,7,17,7,7,63,104,255,255,255,22,42,0,19,48,5,0,41,0,0,0,64,0,0,17,2,142,105,10,22,11,43,26,2,7,148,12,2,7,2,6,7,89,23,89,148,158,2,6,7,89,23,89,8,158,7,23,88,11,7,6,24,91,50,224,42,0,0,0,19,48,6,0,174,0,0,0,235,0,0,17,5,44,67,2,123,92,2,0,4,22,148,23,89,19,5,43,6,17,5,23,89,19,5,17,5,22,50,10,3,17,5,111,4,6,0,6,44,235,17,5,23,88,19,5,2,123,92,2,0,4,22,148,17,5,89,10,17,5,11,2,123,92,2,0,4,23,148,12,43,37,2,123,92,2,0,4,22,148,11,3,2,123,92,2,0,4,23,148,23,88,111,13,6,0,6,12,8,2,123,92,2,0,4,23,148,89,10,2,40,68,4,0,6,13,9,22,9,23,9,142,105,23,89,40,94,0,0,10,9,22,6,158,9,126,80,2,0,4,18,4,40,74,4,0,6,45,2,20,42,17,4,24,141,72,0,0,1,37,22,7,158,37,23,8,158,7,8,4,115,94,4,0,6,42,0,0,19,48,4,0,121,2,0,0,43,1,0,17,2,40,69,4,0,6,10,22,19,18,43,11,6,17,18,22,158,17,18,23,88,19,18,17,18,6,142,105,50,238,14,4,44,19,3,4,111,90,4,0,6,22,148,6,40,6,4,0,6,45,71,20,42,3,4,111,90,4,0,6,23,148,6,40,4,4,0,6,45,2,20,42,22,19,19,6,142,105,23,89,19,20,43,32,6,17,19,148,19,21,6,17,19,6,17,20,148,158,6,17,20,17,21,158,17,19,23,88,19,19,17,20,23,89,19,20,17,19,17,20,50,218,6,40,221,6,0,6,107,34,0,0,136,65,91,11,4,111,90,4,0,6,23,148,4,111,90,4,0,6,22,148,89,107,34,0,0,112,65,91,12,7,8,89,40,155,0,0,10,8,91,34,154,153,153,62,54,2,20,42,2,40,72,4,0,6,13,2,40,73,4,0,6,19,4,2,40,70,4,0,6,19,5,2,40,71,4,0,6,19,6,22,19,22,43,121,34,0,0,128,63,6,17,22,148,107,90,7,91,19,23,17,23,34,0,0,0,63,88,105,19,24,17,24,23,47,16,17,23,34,154,153,153,62,52,2,20,42,23,19,24,43,19,17,24,30,49,14,17,23,34,51,51,11,65,54,2,20,42,30,19,24,17,22,23,99,19,25,17,22,23,95,45,19,9,17,25,17,24,158,17,5,17,25,17,23,17,24,107,89,160,43,18,17,4,17,25,17,24,158,17,6,17,25,17,23,17,24,107,89,160,17,22,23,88,19,22,17,22,6,142,105,50,128,2,31,17,40,164,4,0,6,45,2,20,42,26,4,111,88,4,0,6,90,5,45,3,24,43,1,22,88,14,4,45,3,23,43,1,22,88,23,89,19,7,22,19,8,22,19,9,9,142,105,23,89,19,26,43,53,4,5,14,4,40,163,4,0,6,44,27,126,81,2,0,4,17,7,154,24,17,26,90,148,19,27,17,9,9,17,26,148,17,27,90,88,19,9,17,8,9,17,26,148,88,19,8,17,26,23,89,19,26,17,26,22,47,198,22,19,10,17,4,142,105,23,89,19,28,43,47,4,5,14,4,40,163,4,0,6,44,30,126,81,2,0,4,17,7,154,24,17,28,90,23,88,148,19,29,17,10,17,4,17,28,148,17,29,90,88,19,10,17,28,23,89,19,28,17,28,22,47,204,17,9,17,10,88,19,11,17,8,23,95,45,11,17,8,31,13,48,5,17,8,26,47,2,20,42,31,13,17,8,89,24,91,19,12,126,77,2,0,4,17,12,148,19,13,31,9,17,13,89,19,14,9,17,13,23,40,115,4,0,6,17,4,17,14,22,40,115,4,0,6,19,15,126,78,2,0,4,17,12,148,19,16,126,79,2,0,4,17,12,148,19,17,17,16,90,17,15,88,17,17,88,17,11,115,84,4,0,6,42,70,2,111,88,4,0,6,22,254,1,3,95,4,95,22,254,1,42,0,19,48,2,0,31,1,0,0,29,1,0,17,2,40,72,4,0,6,40,221,6,0,6,10,2,40,73,4,0,6,40,221,6,0,6,11,6,7,88,3,89,12,6,23,95,23,254,1,13,7,23,95,22,254,1,19,4,22,19,5,22,19,6,6,31,13,49,5,23,19,6,43,7,6,26,47,3,23,19,5,22,19,7,22,19,8,7,31,13,49,5,23,19,8,43,7,7,26,47,3,23,19,7,8,23,51,25,9,44,11,17,4,44,2,22,42,23,19,6,43,80,17,4,45,2,22,42,23,19,8,43,69,8,21,51,25,9,44,11,17,4,44,2,22,42,23,19,5,43,51,17,4,45,2,22,42,23,19,7,43,40,8,45,35,9,44,26,17,4,45,2,22,42,6,7,47,8,23,19,5,23,19,8,43,16,23,19,6,23,19,7,43,8,17,4,44,4,22,42,22,42,17,5,44,23,17,6,44,2,22,42,2,40,72,4,0,6,2,40,70,4,0,6,40,76,4,0,6,17,6,44,17,2,40,72,4,0,6,2,40,70,4,0,6,40,77,4,0,6,17,7,44,23,17,8,44,2,22,42,2,40,73,4,0,6,2,40,70,4,0,6,40,76,4,0,6,17,8,44,17,2,40,73,4,0,6,2,40,71,4,0,6,40,77,4,0,6,23,42,174,2,31,11,115,57,1,0,10,125,90,2,0,4,2,115,43,1,0,10,125,91,2,0,4,2,24,141,72,0,0,1,125,92,2,0,4,2,40,67,4,0,6,42,0,19,48,7,0,118,3,0,0,0,0,0,0,27,141,72,0,0,1,37,208,106,4,0,4,40,153,0,0,10,128,77,2,0,4,27,141,72,0,0,1,37,208,155,4,0,4,40,153,0,0,10,128,78,2,0,4,27,141,72,0,0,1,37,208,24,5,0,4,40,153,0,0,10,128,79,2,0,4,28,141,55,0,0,27,37,22,26,141,72,0,0,1,37,208,238,4,0,4,40,153,0,0,10,162,37,23,26,141,72,0,0,1,37,208,42,5,0,4,40,153,0,0,10,162,37,24,26,141,72,0,0,1,37,208,60,4,0,4,40,153,0,0,10,162,37,25,26,141,72,0,0,1,37,208,101,4,0,4,40,153,0,0,10,162,37,26,26,141,72,0,0,1,37,208,13,5,0,4,40,153,0,0,10,162,37,27,26,141,72,0,0,1,37,208,211,5,0,4,40,153,0,0,10,162,128,80,2,0,4,31,23,141,55,0,0,27,37,22,30,141,72,0,0,1,37,208,159,4,0,4,40,153,0,0,10,162,37,23,30,141,72,0,0,1,37,208,2,5,0,4,40,153,0,0,10,162,37,24,30,141,72,0,0,1,37,208,14,5,0,4,40,153,0,0,10,162,37,25,30,141,72,0,0,1,37,208,67,4,0,4,40,153,0,0,10,162,37,26,30,141,72,0,0,1,37,208,213,4,0,4,40,153,0,0,10,162,37,27,30,141,72,0,0,1,37,208,213,5,0,4,40,153,0,0,10,162,37,28,30,141,72,0,0,1,37,208,232,4,0,4,40,153,0,0,10,162,37,29,30,141,72,0,0,1,37,208,145,4,0,4,40,153,0,0,10,162,37,30,30,141,72,0,0,1,37,208,200,5,0,4,40,153,0,0,10,162,37,31,9,30,141,72,0,0,1,37,208,29,5,0,4,40,153,0,0,10,162,37,31,10,30,141,72,0,0,1,37,208,117,5,0,4,40,153,0,0,10,162,37,31,11,30,141,72,0,0,1,37,208,143,5,0,4,40,153,0,0,10,162,37,31,12,30,141,72,0,0,1,37,208,169,4,0,4,40,153,0,0,10,162,37,31,13,30,141,72,0,0,1,37,208,122,5,0,4,40,153,0,0,10,162,37,31,14,30,141,72,0,0,1,37,208,93,5,0,4,40,153,0,0,10,162,37,31,15,30,141,72,0,0,1,37,208,9,5,0,4,40,153,0,0,10,162,37,31,16,30,141,72,0,0,1,37,208,54,4,0,4,40,153,0,0,10,162,37,31,17,30,141,72,0,0,1,37,208,61,5,0,4,40,153,0,0,10,162,37,31,18,30,141,72,0,0,1,37,208,37,5,0,4,40,153,0,0,10,162,37,31,19,30,141,72,0,0,1,37,208,77,5,0,4,40,153,0,0,10,162,37,31,20,30,141,72,0,0,1,37,208,180,4,0,4,40,153,0,0,10,162,37,31,21,30,141,72,0,0,1,37,208,84,5,0,4,40,153,0,0,10,162,37,31,22,30,141,72,0,0,1,37,208,73,5,0,4,40,153,0,0,10,162,128,81,2,0,4,31,10,141,55,0,0,27,37,22,24,141,72,0,0,1,162,37,23,25,141,72,0,0,1,37,23,23,158,37,24,23,158,162,37,24,26,141,72,0,0,1,37,208,131,5,0,4,40,153,0,0,10,162,37,25,27,141,72,0,0,1,37,208,58,4,0,4,40,153,0,0,10,162,37,26,28,141,72,0,0,1,37,208,72,4,0,4,40,153,0,0,10,162,37,27,29,141,72,0,0,1,37,208,51,5,0,4,40,153,0,0,10,162,37,28,30,141,72,0,0,1,37,208,201,4,0,4,40,153,0,0,10,162,37,29,31,9,141,72,0,0,1,37,208,223,4,0,4,40,153,0,0,10,162,37,30,31,10,141,72,0,0,1,37,208,72,5,0,4,40,153,0,0,10,162,37,31,9,31,11,141,72,0,0,1,37,208,64,4,0,4,40,153,0,0,10,162,128,88,2,0,4,42,106,2,40,20,0,0,10,2,3,125,94,2,0,4,2,3,115,245,4,0,6,125,95,2,0,4,42,30,2,123,94,2,0,4,42,30,2,123,95,2,0,4,42,0,0,0,19,48,3,0,52,1,0,0,64,0,0,17,2,23,111,4,6,0,6,44,7,2,115,192,4,0,6,42,2,24,111,4,6,0,6,45,7,2,115,204,4,0,6,42,2,23,26,40,250,4,0,6,10,6,26,46,6,6,27,46,9,43,14,2,115,172,4,0,6,42,2,115,175,4,0,6,42,2,23,27,40,250,4,0,6,11,7,31,12,46,7,7,31,13,46,9,43,14,2,115,178,4,0,6,42,2,115,180,4,0,6,42,2,23,29,40,250,4,0,6,12,8,31,56,89,69,8,0,0,0,5,0,0,0,22,0,0,0,39,0,0,0,56,0,0,0,73,0,0,0,90,0,0,0,107,0,0,0,124,0,0,0,56,136,0,0,0,2,114,15,34,0,112,114,23,34,0,112,115,183,4,0,6,42,2,114,29,34,0,112,114,23,34,0,112,115,183,4,0,6,42,2,114,15,34,0,112,114,37,34,0,112,115,183,4,0,6,42,2,114,29,34,0,112,114,37,34,0,112,115,183,4,0,6,42,2,114,15,34,0,112,114,43,34,0,112,115,183,4,0,6,42,2,114,29,34,0,112,114,43,34,0,112,115,183,4,0,6,42,2,114,15,34,0,112,114,49,34,0,112,115,183,4,0,6,42,2,114,29,34,0,112,114,49,34,0,112,115,183,4,0,6,42,114,55,34,0,112,2,40,91,0,0,10,115,34,0,0,10,122,34,2,3,40,189,4,0,6,42,54,3,114,91,34,0,112,111,119,0,0,10,38,42,10,3,42,138,4,32,16,39,0,0,47,13,3,114,105,34,0,112,111,119,0,0,10,38,42,3,114,119,34,0,112,111,119,0,0,10,38,42,74,3,32,16,39,0,0,47,2,3,42,3,32,16,39,0,0,89,42,34,2,3,40,195,4,0,6,42,0,0,0,19,48,3,0,127,0,0,0,44,1,0,17,2,40,168,4,0,6,111,2,6,0,6,30,126,109,2,0,4,88,47,2,20,42,115,115,0,0,10,10,2,6,30,40,196,4,0,6,2,40,169,4,0,6,30,126,109,2,0,4,88,24,111,249,4,0,6,11,6,114,133,34,0,112,111,119,0,0,10,38,6,7,111,191,0,0,10,38,6,31,41,111,23,0,0,10,38,2,40,169,4,0,6,30,126,109,2,0,4,88,24,88,20,111,251,4,0,6,12,6,8,111,227,4,0,6,111,119,0,0,10,38,6,111,25,0,0,10,42,0,19,48,3,0,229,0,0,0,45,1,0,17,2,40,168,4,0,6,111,2,6,0,6,126,98,2,0,4,126,109,2,0,4,88,47,2,20,42,115,115,0,0,10,10,2,6,126,98,2,0,4,40,196,4,0,6,2,40,169,4,0,6,126,98,2,0,4,126,109,2,0,4,88,126,99,2,0,4,111,249,4,0,6,11,6,114,143,34,0,112,111,119,0,0,10,38,6,7,111,191,0,0,10,38,6,31,41,111,23,0,0,10,38,2,40,169,4,0,6,126,98,2,0,4,126,109,2,0,4,88,126,99,2,0,4,88,126,100,2,0,4,111,249,4,0,6,12,8,31,100,91,45,9,6,31,48,111,23,0,0,10,38,8,31,10,91,45,9,6,31,48,111,23,0,0,10,38,6,8,111,191,0,0,10,38,2,40,169,4,0,6,126,98,2,0,4,126,109,2,0,4,88,126,99,2,0,4,88,126,100,2,0,4,88,20,111,251,4,0,6,13,6,9,111,227,4,0,6,111,119,0,0,10,38,6,111,25,0,0,10,42,82,30,128,98,2,0,4,24,128,99,2,0,4,31,10,128,100,2,0,4,42,90,2,3,40,200,4,0,6,2,5,125,104,2,0,4,2,4,125,105,2,0,4,42,0,0,0,19,48,4,0,110,0,0,0,47,0,0,17,2,40,168,4,0,6,111,2,6,0,6,126,101,2,0,4,126,109,2,0,4,88,126,102,2,0,4,88,126,103,2,0,4,88,46,2,20,42,115,115,0,0,10,10,2,6,126,101,2,0,4,40,196,4,0,6,2,6,126,101,2,0,4,126,109,2,0,4,88,126,102,2,0,4,40,201,4,0,6,2,6,126,101,2,0,4,126,109,2,0,4,88,126,102,2,0,4,88,40,185,4,0,6,6,111,25,0,0,10,42,0,0,19,48,3,0,152,0,0,0,111,0,0,17,2,40,169,4,0,6,4,126,103,2,0,4,111,249,4,0,6,10,6,32,0,150,0,0,51,1,42,3,31,40,111,23,0,0,10,38,3,2,123,104,2,0,4,111,119,0,0,10,38,3,31,41,111,23,0,0,10,38,6,31,32,93,11,6,31,32,91,10,6,31,12,93,23,88,12,6,31,12,91,10,6,13,9,31,10,91,45,9,3,31,48,111,23,0,0,10,38,3,9,111,191,0,0,10,38,8,31,10,91,45,9,3,31,48,111,23,0,0,10,38,3,8,111,191,0,0,10,38,7,31,10,91,45,9,3,31,48,111,23,0,0,10,38,3,7,111,191,0,0,10,38,42,19,48,2,0,48,0,0,0,1,0,0,17,4,32,160,134,1,0,91,10,3,31,40,111,23,0,0,10,38,3,2,123,105,2,0,4,111,119,0,0,10,38,3,6,111,191,0,0,10,38,3,31,41,111,23,0,0,10,38,42,34,3,32,160,134,1,0,93,42,86,30,128,101,2,0,4,31,20,128,102,2,0,4,31,16,128,103,2,0,4,42,34,2,3,40,200,4,0,6,42,19,48,4,0,80,0,0,0,47,0,0,17,2,40,168,4,0,6,111,2,6,0,6,126,106,2,0,4,126,109,2,0,4,88,126,107,2,0,4,88,46,2,20,42,115,115,0,0,10,10,2,6,126,106,2,0,4,40,196,4,0,6,2,6,126,106,2,0,4,126,109,2,0,4,88,126,107,2,0,4,40,201,4,0,6,6,111,25,0,0,10,42,58,27,128,106,2,0,4,31,15,128,107,2,0,4,42,0,19,48,4,0,87,0,0,0,209,0,0,17,115,115,0,0,10,10,6,114,153,34,0,112,111,119,0,0,10,38,6,111,120,0,0,10,11,2,40,169,4,0,6,126,108,2,0,4,26,111,249,4,0,6,12,6,8,111,191,0,0,10,38,2,6,126,108,2,0,4,26,88,7,40,197,4,0,6,2,40,169,4,0,6,6,126,108,2,0,4,31,44,88,111,246,4,0,6,42,30,26,128,108,2,0,4,42,34,2,3,40,167,4,0,6,42,19,48,4,0,38,0,0,0,1,0,0,17,3,114,153,34,0,112,111,119,0,0,10,38,3,111,120,0,0,10,10,3,31,57,111,23,0,0,10,38,2,3,4,6,40,197,4,0,6,42,0,0,19,48,4,0,78,0,0,0,2,0,0,17,22,10,43,62,2,40,169,4,0,6,4,31,10,6,90,88,31,10,111,249,4,0,6,11,7,31,100,91,45,9,3,31,48,111,23,0,0,10,38,7,31,10,91,45,9,3,31,48,111,23,0,0,10,38,3,7,111,191,0,0,10,38,6,23,88,10,6,26,50,190,3,5,40,198,4,0,6,42,0,0,19,48,3,0,66,0,0,0,64,0,0,17,22,10,22,11,43,31,2,7,3,88,111,149,0,0,10,31,48,89,12,6,7,23,95,44,3,8,43,3,25,8,90,88,10,7,23,88,11,7,31,13,50,220,31,10,6,31,10,93,89,10,6,31,10,51,2,22,10,2,6,111,191,0,0,10,38,42,34,31,40,128,109,2,0,4,42,0,19,48,3,0,76,0,0,0,111,0,0,17,2,40,169,4,0,6,4,5,111,249,4,0,6,10,2,3,6,111,202,4,0,6,2,6,111,203,4,0,6,11,32,160,134,1,0,12,22,13,43,23,7,8,91,45,9,3,31,48,111,23,0,0,10,38,8,31,10,91,12,9,23,88,13,9,27,50,229,3,7,111,191,0,0,10,38,42,19,48,3,0,24,0,0,0,47,0,0,17,115,115,0,0,10,10,2,40,169,4,0,6,6,126,110,2,0,4,111,246,4,0,6,42,30,27,128,110,2,0,4,42,38,2,20,3,40,208,4,0,6,42,86,2,40,20,0,0,10,2,4,125,112,2,0,4,2,3,125,111,2,0,4,42,30,2,123,111,2,0,4,42,30,2,123,112,2,0,4,42,86,2,40,20,0,0,10,2,22,125,113,2,0,4,2,22,125,114,2,0,4,42,30,2,123,113,2,0,4,42,34,2,3,125,113,2,0,4,42,62,2,2,123,113,2,0,4,3,88,125,113,2,0,4,42,42,2,123,114,2,0,4,23,254,1,42,42,2,123,114,2,0,4,22,254,1,42,42,2,123,114,2,0,4,24,254,1,42,34,2,22,125,114,2,0,4,42,34,2,23,125,114,2,0,4,42,34,2,24,125,114,2,0,4,42,62,2,3,40,240,4,0,6,2,4,125,115,2,0,4,42,30,2,123,115,2,0,4,42,58,2,123,115,2,0,4,126,116,2,0,4,254,1,42,34,31,36,128,116,2,0,4,42,118,2,3,40,240,4,0,6,2,4,125,117,2,0,4,2,22,125,119,2,0,4,2,22,125,118,2,0,4,42,118,2,3,40,240,4,0,6,2,23,125,119,2,0,4,2,5,125,118,2,0,4,2,4,125,117,2,0,4,42,30,2,123,117,2,0,4,42,30,2,123,119,2,0,4,42,30,2,123,118,2,0,4,42,206,2,3,40,240,4,0,6,4,22,50,14,4,31,10,48,9,5,22,50,5,5,31,10,49,11,114,163,34,0,112,115,191,0,0,6,122,2,4,125,120,2,0,4,2,5,125,121,2,0,4,42,30,2,123,120,2,0,4,42,30,2,123,121,2,0,4,42,70,2,123,120,2,0,4,31,10,90,2,123,121,2,0,4,88,42,58,2,123,120,2,0,4,126,122,2,0,4,254,1,42,58,2,123,121,2,0,4,126,122,2,0,4,254,1,42,118,2,123,120,2,0,4,126,122,2,0,4,46,14,2,123,121,2,0,4,126,122,2,0,4,254,1,42,23,42,34,31,10,128,122,2,0,4,42,30,2,123,123,2,0,4,42,34,2,3,125,123,2,0,4,42,58,2,40,20,0,0,10,2,3,40,239,4,0,6,42,0,0,19,48,6,0,37,14,0,0,46,1,0,17,115,20,0,0,10,128,124,2,0,4,115,58,1,0,10,10,6,114,231,34,0,112,23,141,13,0,0,1,37,22,31,18,140,72,0,0,1,162,111,59,1,0,10,6,114,237,34,0,112,23,141,13,0,0,1,37,22,31,14,140,72,0,0,1,162,111,59,1,0,10,6,114,243,34,0,112,23,141,13,0,0,1,37,22,31,14,140,72,0,0,1,162,111,59,1,0,10,6,114,249,34,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,20,140,72,0,0,1,162,111,59,1,0,10,6,114,23,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,255,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,37,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,43,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,49,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,5,35,0,112,23,141,13,0,0,1,37,22,24,140,72,0,0,1,162,111,59,1,0,10,6,114,11,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,20,140,72,0,0,1,162,111,59,1,0,10,6,114,17,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,29,140,72,0,0,1,162,111,59,1,0,10,6,114,23,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,30,140,72,0,0,1,162,111,59,1,0,10,6,114,29,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,30,140,72,0,0,1,162,111,59,1,0,10,6,114,35,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,41,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,47,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,53,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,59,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,65,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,71,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,77,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,83,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,89,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,128,125,2,0,4,115,58,1,0,10,10,6,114,95,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,103,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,111,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,28,140,72,0,0,1,162,111,59,1,0,10,6,114,119,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,127,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,135,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,17,140,72,0,0,1,162,111,59,1,0,10,6,114,143,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,20,140,72,0,0,1,162,111,59,1,0,10,6,114,151,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,159,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,167,35,0,112,23,141,13,0,0,1,37,22,31,17,140,72,0,0,1,162,111,59,1,0,10,6,114,175,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,183,35,0,112,23,141,13,0,0,1,37,22,31,13,140,72,0,0,1,162,111,59,1,0,10,6,114,191,35,0,112,23,141,13,0,0,1,37,22,31,13,140,72,0,0,1,162,111,59,1,0,10,6,114,199,35,0,112,23,141,13,0,0,1,37,22,31,13,140,72,0,0,1,162,111,59,1,0,10,6,114,207,35,0,112,23,141,13,0,0,1,37,22,31,13,140,72,0,0,1,162,111,59,1,0,10,6,114,215,35,0,112,23,141,13,0,0,1,37,22,31,13,140,72,0,0,1,162,111,59,1,0,10,6,114,223,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,20,140,72,0,0,1,162,111,59,1,0,10,6,114,231,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,15,140,72,0,0,1,162,111,59,1,0,10,6,114,239,35,0,112,23,141,13,0,0,1,37,22,25,140,72,0,0,1,162,111,59,1,0,10,6,114,247,35,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,15,140,72,0,0,1,162,111,59,1,0,10,6,114,255,35,0,112,23,141,13,0,0,1,37,22,25,140,72,0,0,1,162,111,59,1,0,10,6,114,7,36,0,112,23,141,13,0,0,1,37,22,25,140,72,0,0,1,162,111,59,1,0,10,6,114,15,36,0,112,23,141,13,0,0,1,37,22,25,140,72,0,0,1,162,111,59,1,0,10,6,128,126,2,0,4,115,58,1,0,10,10,6,114,15,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,23,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,31,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,39,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,47,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,55,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,63,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,29,34,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,71,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,79,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,87,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,95,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,103,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,111,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,119,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,127,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,135,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,143,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,151,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,159,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,167,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,175,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,183,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,191,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,199,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,207,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,215,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,223,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,231,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,239,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,247,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,255,36,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,7,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,15,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,23,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,31,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,39,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,47,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,55,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,63,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,71,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,79,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,87,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,95,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,103,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,111,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,119,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,127,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,135,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,143,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,151,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,159,37,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,167,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,15,140,72,0,0,1,162,111,59,1,0,10,6,114,175,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,18,140,72,0,0,1,162,111,59,1,0,10,6,114,183,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,15,140,72,0,0,1,162,111,59,1,0,10,6,114,191,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,18,140,72,0,0,1,162,111,59,1,0,10,6,114,199,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,128,127,2,0,4,115,58,1,0,10,10,6,114,207,37,0,112,23,141,13,0,0,1,37,22,31,13,140,72,0,0,1,162,111,59,1,0,10,6,114,217,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,227,37,0,112,23,141,13,0,0,1,37,22,31,10,140,72,0,0,1,162,111,59,1,0,10,6,114,237,37,0,112,23,141,13,0,0,1,37,22,31,14,140,72,0,0,1,162,111,59,1,0,10,6,114,247,37,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,20,140,72,0,0,1,162,111,59,1,0,10,6,114,1,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,11,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,21,38,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,31,38,0,112,23,141,13,0,0,1,37,22,31,18,140,72,0,0,1,162,111,59,1,0,10,6,114,41,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,30,140,72,0,0,1,162,111,59,1,0,10,6,114,51,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,12,140,72,0,0,1,162,111,59,1,0,10,6,114,61,38,0,112,23,141,13,0,0,1,37,22,31,18,140,72,0,0,1,162,111,59,1,0,10,6,114,71,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,25,140,72,0,0,1,162,111,59,1,0,10,6,114,81,38,0,112,23,141,13,0,0,1,37,22,28,140,72,0,0,1,162,111,59,1,0,10,6,114,91,38,0,112,23,141,13,0,0,1,37,22,31,10,140,72,0,0,1,162,111,59,1,0,10,6,114,101,38,0,112,23,141,13,0,0,1,37,22,24,140,72,0,0,1,162,111,59,1,0,10,6,114,111,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,70,140,72,0,0,1,162,111,59,1,0,10,6,114,121,38,0,112,24,141,13,0,0,1,37,22,126,124,2,0,4,162,37,23,31,70,140,72,0,0,1,162,111,59,1,0,10,6,128,128,2,0,4,42,0,0,0,19,48,3,0,96,1,0,0,47,1,0,17,2,40,124,0,0,10,44,2,20,42,2,111,30,0,0,10,24,47,2,20,42,2,22,24,111,241,0,0,10,10,126,125,2,0,4,6,111,60,1,0,10,44,54,126,125,2,0,4,6,111,61,1,0,10,13,9,22,154,126,124,2,0,4,51,16,24,9,23,154,165,72,0,0,1,2,40,244,4,0,6,42,24,9,22,154,165,72,0,0,1,2,40,243,4,0,6,42,2,111,30,0,0,10,25,47,2,20,42,2,22,25,111,241,0,0,10,11,126,126,2,0,4,7,111,60,1,0,10,44,58,126,126,2,0,4,7,111,61,1,0,10,19,4,17,4,22,154,126,124,2,0,4,51,17,25,17,4,23,154,165,72,0,0,1,2,40,244,4,0,6,42,25,17,4,22,154,165,72,0,0,1,2,40,243,4,0,6,42,126,127,2,0,4,7,111,60,1,0,10,44,58,126,127,2,0,4,7,111,61,1,0,10,19,5,17,5,22,154,126,124,2,0,4,51,17,26,17,5,23,154,165,72,0,0,1,2,40,244,4,0,6,42,26,17,5,22,154,165,72,0,0,1,2,40,243,4,0,6,42,2,111,30,0,0,10,26,47,2,20,42,2,22,26,111,241,0,0,10,12,126,128,2,0,4,8,111,60,1,0,10,44,58,126,128,2,0,4,8,111,61,1,0,10,19,6,17,6,22,154,126,124,2,0,4,51,17,26,17,6,23,154,165,72,0,0,1,2,40,244,4,0,6,42,26,17,6,22,154,165,72,0,0,1,2,40,243,4,0,6,42,20,42,19,48,5,0,88,0,0,0,48,1,0,17,4,111,30,0,0,10,2,47,2,20,42,4,22,2,111,241,0,0,10,10,4,111,30,0,0,10,2,3,88,47,2,20,42,4,2,3,111,241,0,0,10,11,4,2,3,88,111,226,0,0,10,114,227,33,0,112,6,114,183,19,0,112,7,40,229,0,0,10,12,40,242,4,0,6,13,9,44,8,8,9,40,238,0,0,10,42,8,42,19,48,5,0,91,0,0,0,49,1,0,17,4,22,2,111,241,0,0,10,10,4,111,30,0,0,10,2,3,88,47,9,4,111,30,0,0,10,11,43,4,2,3,88,11,4,2,7,2,89,111,241,0,0,10,12,4,7,111,226,0,0,10,114,227,33,0,112,6,114,183,19,0,112,8,40,229,0,0,10,13,40,242,4,0,6,19,4,17,4,44,9,9,17,4,40,238,0,0,10,42,9,42,146,2,115,211,4,0,6,125,130,2,0,4,2,115,115,0,0,10,125,131,2,0,4,2,40,20,0,0,10,2,3,125,129,2,0,4,42,19,48,3,0,89,0,0,0,50,1,0,17,4,10,20,11,2,6,7,40,251,4,0,6,12,8,111,227,4,0,6,40,242,4,0,6,13,9,44,8,3,9,111,119,0,0,10,38,8,111,228,4,0,6,44,18,8,111,229,4,0,6,19,4,18,4,40,234,0,0,10,11,43,2,20,11,6,8,111,238,4,0,6,46,9,8,111,238,4,0,6,10,43,178,3,111,25,0,0,10,42,0,0,0,19,48,3,0,81,0,0,0,1,0,0,17,3,29,88,2,123,129,2,0,4,111,2,6,0,6,49,20,3,26,88,2,123,129,2,0,4,111,2,6,0,6,254,2,22,254,1,42,3,10,43,20,2,123,129,2,0,4,6,111,4,6,0,6,44,2,23,42,6,23,88,10,6,3,25,88,50,230,2,123,129,2,0,4,3,25,88,111,4,6,0,6,42,0,0,0,19,48,3,0,114,0,0,0,64,0,0,17,3,29,88,2,123,129,2,0,4,111,2,6,0,6,49,64,2,3,26,40,249,4,0,6,10,6,45,27,2,123,129,2,0,4,111,2,6,0,6,126,122,2,0,4,126,122,2,0,4,115,230,4,0,6,42,2,123,129,2,0,4,111,2,6,0,6,6,23,89,126,122,2,0,4,115,230,4,0,6,42,2,3,29,40,249,4,0,6,10,6,30,89,31,11,91,11,6,30,89,31,11,93,12,3,29,88,7,8,115,230,4,0,6,42,58,2,123,129,2,0,4,3,4,40,250,4,0,6,42,0,0,0,19,48,4,0,40,0,0,0,2,0,0,17,22,10,22,11,43,28,2,3,7,88,111,4,6,0,6,44,13,6,23,4,7,89,23,89,31,31,95,98,96,10,7,23,88,11,7,4,50,224,6,42,19,48,3,0,120,0,0,0,51,1,0,17,2,123,131,2,0,4,22,111,121,0,0,10,4,44,13,2,123,131,2,0,4,4,111,119,0,0,10,38,2,123,130,2,0,4,3,111,213,4,0,6,2,40,252,4,0,6,10,6,44,42,6,111,228,4,0,6,44,34,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,6,111,229,4,0,6,115,226,4,0,6,42,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,115,225,4,0,6,42,19,48,2,0,114,0,0,0,52,1,0,17,2,123,130,2,0,4,111,212,4,0,6,2,123,130,2,0,4,111,215,4,0,6,44,16,2,40,255,4,0,6,11,7,111,210,4,0,6,10,43,43,2,123,130,2,0,4,111,217,4,0,6,44,16,2,40,254,4,0,6,11,7,111,210,4,0,6,10,43,14,2,40,253,4,0,6,11,7,111,210,4,0,6,10,2,123,130,2,0,4,111,212,4,0,6,254,1,22,254,1,45,3,6,44,3,6,44,149,7,111,209,4,0,6,42,0,0,19,48,3,0,21,1,0,0,53,1,0,17,56,201,0,0,0,2,2,123,130,2,0,4,111,212,4,0,6,40,248,4,0,6,10,2,123,130,2,0,4,6,111,238,4,0,6,111,213,4,0,6,6,111,234,4,0,6,44,80,6,111,235,4,0,6,44,30,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,115,225,4,0,6,11,43,34,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,6,111,232,4,0,6,115,226,4,0,6,11,7,23,115,208,4,0,6,42,2,123,131,2,0,4,6,111,231,4,0,6,111,191,0,0,10,38,6,111,235,4,0,6,44,34,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,115,225,4,0,6,23,115,208,4,0,6,42,2,123,131,2,0,4,6,111,232,4,0,6,111,191,0,0,10,38,2,2,123,130,2,0,4,111,212,4,0,6,40,247,4,0,6,58,33,255,255,255,2,2,123,130,2,0,4,111,212,4,0,6,40,6,5,0,6,44,23,2,123,130,2,0,4,111,219,4,0,6,2,123,130,2,0,4,26,111,214,4,0,6,22,115,207,4,0,6,42,0,0,0,19,48,2,0,3,1,0,0,54,1,0,17,43,95,2,2,123,130,2,0,4,111,212,4,0,6,40,1,5,0,6,10,2,123,130,2,0,4,6,111,238,4,0,6,111,213,4,0,6,6,111,223,4,0,6,44,34,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,115,225,4,0,6,23,115,208,4,0,6,42,2,123,131,2,0,4,6,111,222,4,0,6,111,23,0,0,10,38,2,2,123,130,2,0,4,111,212,4,0,6,40,0,5,0,6,45,142,2,2,123,130,2,0,4,111,212,4,0,6,40,5,5,0,6,44,25,2,123,130,2,0,4,25,111,214,4,0,6,2,123,130,2,0,4,111,218,4,0,6,43,92,2,2,123,130,2,0,4,111,212,4,0,6,40,4,5,0,6,44,73,2,123,130,2,0,4,111,212,4,0,6,27,88,2,123,129,2,0,4,111,2,6,0,6,47,14,2,123,130,2,0,4,27,111,214,4,0,6,43,22,2,123,130,2,0,4,2,123,129,2,0,4,111,2,6,0,6,111,213,4,0,6,2,123,130,2,0,4,111,219,4,0,6,22,115,207,4,0,6,42,0,19,48,2,0,3,1,0,0,54,1,0,17,43,95,2,2,123,130,2,0,4,111,212,4,0,6,40,3,5,0,6,10,2,123,130,2,0,4,6,111,238,4,0,6,111,213,4,0,6,6,111,223,4,0,6,44,34,2,123,130,2,0,4,111,212,4,0,6,2,123,131,2,0,4,111,25,0,0,10,115,225,4,0,6,23,115,208,4,0,6,42,2,123,131,2,0,4,6,111,222,4,0,6,111,23,0,0,10,38,2,2,123,130,2,0,4,111,212,4,0,6,40,2,5,0,6,45,142,2,2,123,130,2,0,4,111,212,4,0,6,40,5,5,0,6,44,25,2,123,130,2,0,4,25,111,214,4,0,6,2,123,130,2,0,4,111,218,4,0,6,43,92,2,2,123,130,2,0,4,111,212,4,0,6,40,4,5,0,6,44,73,2,123,130,2,0,4,111,212,4,0,6,27,88,2,123,129,2,0,4,111,2,6,0,6,47,14,2,123,130,2,0,4,27,111,214,4,0,6,43,22,2,123,130,2,0,4,2,123,129,2,0,4,111,2,6,0,6,111,213,4,0,6,2,123,130,2,0,4,111,220,4,0,6,22,115,207,4,0,6,42,0,19,48,3,0,123,0,0,0,64,0,0,17,3,27,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,2,3,27,40,249,4,0,6,10,6,27,50,7,6,31,16,47,2,23,42,3,29,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,2,3,29,40,249,4,0,6,11,7,31,64,50,7,7,31,116,47,2,23,42,3,30,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,2,3,30,40,249,4,0,6,12,8,32,232,0,0,0,50,9,8,32,253,0,0,0,254,4,42,22,42,0,19,48,3,0,96,1,0,0,198,0,0,17,2,3,27,40,249,4,0,6,10,6,31,15,51,14,3,27,88,126,116,2,0,4,115,221,4,0,6,42,6,27,50,21,6,31,15,47,16,3,27,88,31,48,6,88,27,89,209,115,221,4,0,6,42,2,3,29,40,249,4,0,6,11,7,31,64,50,18,7,31,90,47,13,3,29,88,7,23,88,209,115,221,4,0,6,42,7,31,90,50,18,7,31,116,47,13,3,29,88,7,29,88,209,115,221,4,0,6,42,2,3,30,40,249,4,0,6,12,8,32,232,0,0,0,89,69,21,0,0,0,2,0,0,0,7,0,0,0,12,0,0,0,17,0,0,0,22,0,0,0,27,0,0,0,32,0,0,0,37,0,0,0,42,0,0,0,47,0,0,0,52,0,0,0,57,0,0,0,62,0,0,0,67,0,0,0,72,0,0,0,77,0,0,0,82,0,0,0,87,0,0,0,92,0,0,0,97,0,0,0,102,0,0,0,43,105,31,33,13,43,122,31,34,13,43,117,31,37,13,43,112,31,38,13,43,107,31,39,13,43,102,31,40,13,43,97,31,41,13,43,92,31,42,13,43,87,31,43,13,43,82,31,44,13,43,77,31,45,13,43,72,31,46,13,43,67,31,47,13,43,62,31,58,13,43,57,31,59,13,43,52,31,60,13,43,47,31,61,13,43,42,31,62,13,43,37,31,63,13,43,32,31,95,13,43,27,31,32,13,43,22,114,131,38,0,112,8,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,3,30,88,9,115,221,4,0,6,42,19,48,3,0,78,0,0,0,2,0,0,17,3,27,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,2,3,27,40,249,4,0,6,10,6,27,50,7,6,31,16,47,2,23,42,3,28,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,2,3,28,40,249,4,0,6,11,7,31,16,50,6,7,31,63,254,4,42,22,42,0,0,19,48,3,0,174,0,0,0,55,1,0,17,2,3,27,40,249,4,0,6,10,6,31,15,51,14,3,27,88,126,116,2,0,4,115,221,4,0,6,42,6,27,50,21,6,31,15,47,16,3,27,88,31,48,6,88,27,89,209,115,221,4,0,6,42,2,3,28,40,249,4,0,6,11,7,31,32,50,19,7,31,58,47,14,3,28,88,7,31,33,88,209,115,221,4,0,6,42,7,31,58,89,69,5,0,0,0,2,0,0,0,7,0,0,0,12,0,0,0,17,0,0,0,22,0,0,0,43,25,31,42,12,43,42,31,44,12,43,37,31,45,12,43,32,31,46,12,43,27,31,47,12,43,22,114,205,38,0,112,7,140,72,0,0,1,40,91,0,0,10,115,34,0,0,10,122,3,28,88,8,115,221,4,0,6,42,0,0,19,48,3,0,88,0,0,0,1,0,0,17,3,23,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,22,10,43,44,6,24,51,18,2,123,129,2,0,4,3,24,88,111,4,6,0,6,45,20,22,42,2,123,129,2,0,4,3,6,88,111,4,6,0,6,44,2,22,42,6,23,88,10,6,27,47,16,6,3,88,2,123,129,2,0,4,111,2,6,0,6,50,192,23,42,19,48,3,0,50,0,0,0,1,0,0,17,3,25,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,3,10,43,20,2,123,129,2,0,4,6,111,4,6,0,6,44,2,22,42,6,23,88,10,6,3,25,88,50,230,23,42,0,0,19,48,3,0,66,0,0,0,1,0,0,17,3,23,88,2,123,129,2,0,4,111,2,6,0,6,49,2,22,42,22,10,43,22,2,123,129,2,0,4,3,6,88,111,4,6,0,6,44,2,22,42,6,23,88,10,6,26,47,16,6,3,88,2,123,129,2,0,4,111,2,6,0,6,50,214,23,42,58,2,40,20,0,0,10,2,3,125,132,2,0,4,42,38,2,3,20,40,9,5,0,6,42,0,19,48,6,0,230,0,0,0,56,1,0,17,3,111,174,0,0,6,3,111,175,0,0,6,10,24,91,11,6,24,91,12,2,123,132,2,0,4,3,22,22,7,8,111,179,0,0,6,4,111,30,1,0,6,13,9,44,2,9,42,2,123,132,2,0,4,3,7,22,7,8,111,179,0,0,6,4,111,30,1,0,6,13,9,44,15,9,111,40,1,0,6,7,22,40,11,5,0,6,9,42,2,123,132,2,0,4,3,22,8,7,8,111,179,0,0,6,4,111,30,1,0,6,13,9,44,15,9,111,40,1,0,6,22,8,40,11,5,0,6,9,42,2,123,132,2,0,4,3,7,8,7,8,111,179,0,0,6,4,111,30,1,0,6,13,9,44,15,9,111,40,1,0,6,7,8,40,11,5,0,6,9,42,7,24,91,19,4,8,24,91,19,5,3,17,4,17,5,7,8,111,179,0,0,6,19,6,2,123,132,2,0,4,17,6,4,111,30,1,0,6,13,9,44,15,9,111,40,1,0,6,17,4,17,5,40,11,5,0,6,9,42,50,2,123,132,2,0,4,111,31,1,0,6,42,0,19,48,5,0,48,0,0,0,57,1,0,17,2,44,44,22,10,43,34,2,6,154,11,2,6,7,111,60,1,0,6,3,107,88,7,111,61,1,0,6,4,107,88,115,59,1,0,6,162,6,23,88,10,6,2,142,105,50,216,42,58,2,40,20,0,0,10,2,3,125,135,2,0,4,42,38,2,3,20,40,14,5,0,6,42,0,0,0,19,48,7,0,66,0,0,0,58,1,0,17,115,198,0,0,10,10,2,3,4,6,22,22,22,40,15,5,0,6,6,111,62,1,0,10,45,2,20,42,6,111,62,1,0,10,11,7,141,38,0,0,2,12,22,13,43,14,8,9,6,9,111,63,1,0,10,162,9,23,88,13,9,7,50,238,8,42,0,0,19,48,8,0,148,1,0,0,59,1,0,17,14,6,26,49,1,42,2,123,135,2,0,4,3,4,111,30,1,0,6,10,6,45,1,42,22,11,22,19,9,43,36,5,17,9,111,64,1,0,10,111,36,1,0,6,6,111,36,1,0,6,111,180,0,0,10,44,4,23,11,43,16,17,9,23,88,19,9,17,9,5,111,65,1,0,10,50,210,7,45,16,5,6,14,4,14,5,40,16,5,0,6,111,66,1,0,10,6,111,40,1,0,6,12,8,44,4,8,142,45,1,42,3,111,174,0,0,6,13,3,111,175,0,0,6,19,4,9,107,19,5,17,4,107,19,6,34,0,0,0,0,19,7,34,0,0,0,0,19,8,22,19,10,43,74,8,17,10,154,19,11,17,11,44,58,17,11,111,60,1,0,6,19,12,17,11,111,61,1,0,6,19,13,17,12,17,5,52,4,17,12,19,5,17,13,17,6,52,4,17,13,19,6,17,12,17,7,54,4,17,12,19,7,17,13,17,8,54,4,17,13,19,8,17,10,23,88,19,10,17,10,8,142,105,50,175,17,5,34,0,0,240,65,54,29,2,3,22,22,17,5,105,17,4,111,179,0,0,6,4,5,14,4,14,5,14,6,23,88,40,15,5,0,6,17,6,34,0,0,240,65,54,28,2,3,22,22,9,17,6,105,111,179,0,0,6,4,5,14,4,14,5,14,6,23,88,40,15,5,0,6,17,7,9,31,30,89,107,52,37,2,3,17,7,105,22,9,17,7,105,89,17,4,111,179,0,0,6,4,5,14,4,17,7,105,88,14,5,14,6,23,88,40,15,5,0,6,17,8,17,4,31,30,89,107,52,37,2,3,22,17,8,105,9,17,4,17,8,105,89,111,179,0,0,6,4,5,14,4,14,5,17,8,105,88,14,6,23,88,40,15,5,0,6,42,19,48,5,0,106,0,0,0,60,1,0,17,2,111,40,1,0,6,10,6,142,105,141,40,0,0,2,11,22,12,43,37,6,8,154,13,9,44,26,7,8,9,111,60,1,0,6,3,107,88,9,111,61,1,0,6,4,107,88,115,59,1,0,6,162,8,23,88,12,8,6,142,105,50,213,2,111,36,1,0,6,2,111,38,1,0,6,2,111,48,1,0,6,7,2,111,42,1,0,6,115,51,1,0,6,37,2,111,44,1,0,6,111,55,1,0,6,42,54,2,123,135,2,0,4,3,111,29,1,0,6,42,58,2,123,135,2,0,4,3,4,111,30,1,0,6,42,50,2,123,135,2,0,4,111,31,1,0,6,42,38,2,3,20,40,23,5,0,6,42,0,0,19,48,4,0,11,1,0,0,61,1,0,17,115,198,0,0,10,10,3,111,177,0,0,6,115,28,5,0,6,4,40,29,5,0,6,11,22,12,56,202,0,0,0,7,8,154,13,2,40,153,1,0,6,9,111,131,6,0,6,4,111,191,1,0,6,19,4,17,4,57,167,0,0,0,9,111,133,6,0,6,19,5,17,4,111,92,6,0,6,117,64,0,0,2,19,6,17,6,44,9,17,6,17,5,111,221,1,0,6,17,4,111,77,6,0,6,17,4,111,73,6,0,6,17,5,32,0,8,0,0,115,50,1,0,6,19,7,17,4,111,79,6,0,6,19,8,17,8,44,10,17,7,24,17,8,111,54,1,0,6,17,4,111,81,6,0,6,19,9,17,9,44,10,17,7,25,17,9,111,54,1,0,6,17,4,111,83,6,0,6,44,41,17,7,30,17,4,111,86,6,0,6,140,72,0,0,1,111,54,1,0,6,17,7,31,9,17,4,111,90,6,0,6,140,72,0,0,1,111,54,1,0,6,6,17,7,111,201,0,0,10,8,23,88,12,8,7,142,105,63,45,255,255,255,6,111,62,1,0,10,45,2,20,42,2,6,40,24,5,0,6,10,6,111,203,0,0,10,42,0,27,48,5,0,103,2,0,0,62,1,0,17,22,10,3,111,67,1,0,10,19,11,43,24,18,11,40,68,1,0,10,111,44,1,0,6,30,111,51,0,0,10,44,4,23,10,222,25,18,11,40,69,1,0,10,45,223,222,14,18,11,254,22,111,0,0,27,111,60,0,0,10,220,6,45,2,3,42,115,198,0,0,10,11,115,198,0,0,10,12,3,111,67,1,0,10,19,11,43,40,18,11,40,68,1,0,10,19,12,7,17,12,111,201,0,0,10,17,12,111,44,1,0,6,30,111,51,0,0,10,44,8,8,17,12,111,201,0,0,10,18,11,40,69,1,0,10,45,207,222,14,18,11,254,22,111,0,0,27,111,60,0,0,10,220,8,2,254,6,25,5,0,6,115,70,1,0,10,111,71,1,0,10,126,73,0,0,10,13,22,19,4,22,19,5,8,111,67,1,0,10,19,11,43,120,18,11,40,68,1,0,10,19,13,9,17,13,111,36,1,0,6,40,238,0,0,10,13,17,4,17,13,111,38,1,0,6,142,105,88,19,4,17,13,111,44,1,0,6,24,111,51,0,0,10,44,68,17,13,111,44,1,0,6,24,111,53,0,0,10,116,113,0,0,27,111,72,1,0,10,19,14,43,18,17,14,111,73,1,0,10,19,15,17,5,17,15,142,105,88,19,5,17,14,111,59,0,0,10,45,229,222,12,17,14,44,7,17,14,111,60,0,0,10,220,18,11,40,69,1,0,10,58,124,255,255,255,222,14,18,11,254,22,111,0,0,27,111,60,0,0,10,220,17,4,141,74,0,0,1,19,6,17,5,141,74,0,0,1,19,7,22,19,8,22,19,9,8,111,67,1,0,10,19,11,56,148,0,0,0,18,11,40,68,1,0,10,19,16,17,16,111,38,1,0,6,22,17,6,17,8,17,16,111,38,1,0,6,142,105,40,94,0,0,10,17,8,17,16,111,38,1,0,6,142,105,88,19,8,17,16,111,44,1,0,6,24,111,51,0,0,10,44,84,17,16,111,44,1,0,6,24,111,53,0,0,10,116,113,0,0,27,111,72,1,0,10,19,14,43,34,17,14,111,73,1,0,10,19,17,17,17,22,17,7,17,9,17,17,142,105,40,94,0,0,10,17,9,17,17,142,105,88,19,9,17,14,111,59,0,0,10,45,213,222,12,17,14,44,7,17,14,111,60,0,0,10,220,18,11,40,69,1,0,10,58,96,255,255,255,222,14,18,11,254,22,111,0,0,27,111,60,0,0,10,220,9,17,6,126,136,2,0,4,32,0,8,0,0,115,50,1,0,6,19,10,17,5,22,49,26,115,74,1,0,10,19,18,17,18,17,7,111,75,1,0,10,17,10,24,17,18,111,54,1,0,6,7,17,10,111,201,0,0,10,7,42,0,1,76,0,0,2,0,10,0,37,47,0,14,0,0,0,0,2,0,86,0,53,139,0,14,0,0,0,0,2,0,14,1,31,45,1,12,0,0,0,0,2,0,191,0,136,71,1,14,0,0,0,0,2,0,211,1,47,2,2,12,0,0,0,0,2,0,117,1,167,28,2,14,0,0,0,0,19,48,3,0,38,0,0,0,1,0,0,17,3,111,44,1,0,6,30,111,53,0,0,10,165,72,0,0,1,4,111,44,1,0,6,30,111,53,0,0,10,165,72,0,0,1,10,6,89,42,30,2,40,159,1,0,6,42,50,22,141,40,0,0,2,128,136,2,0,4,42,34,2,3,40,244,1,0,6,42,19,48,3,0,132,0,0,0,63,1,0,17,2,111,245,1,0,6,3,44,23,3,29,111,44,0,0,10,44,14,3,29,111,77,0,0,10,116,41,0,0,2,43,1,20,10,6,115,32,5,0,6,3,111,34,5,0,6,11,7,142,45,6,126,137,2,0,4,42,115,76,1,0,10,12,7,13,22,19,4,43,34,9,17,4,154,19,5,2,17,5,111,249,1,0,6,19,6,17,6,44,8,8,17,6,111,77,1,0,10,17,4,23,88,19,4,17,4,9,142,105,50,215,8,111,78,1,0,10,45,6,126,137,2,0,4,42,8,111,79,1,0,10,42,50,22,141,210,0,0,2,128,137,2,0,4,42,34,2,3,40,8,2,0,6,42,38,2,3,4,40,9,2,0,6,42,19,48,8,0,92,2,0,0,64,1,0,17,2,111,11,2,0,6,10,6,111,171,0,0,10,11,7,25,47,2,20,42,7,25,51,46,23,141,116,0,0,27,37,22,25,141,69,0,0,2,37,22,6,22,111,168,0,0,10,162,37,23,6,23,111,168,0,0,10,162,37,24,6,24,111,168,0,0,10,162,162,42,6,115,195,8,0,6,111,177,0,0,10,115,80,1,0,10,12,22,13,56,228,1,0,0,6,9,111,168,0,0,10,19,4,17,4,57,208,1,0,0,9,23,88,19,5,56,188,1,0,0,6,17,5,111,168,0,0,10,19,6,17,6,57,165,1,0,0,17,4,111,4,2,0,6,17,6,111,4,2,0,6,89,17,4,111,4,2,0,6,17,6,111,4,2,0,6,40,218,0,0,10,91,19,7,17,4,111,4,2,0,6,17,6,111,4,2,0,6,89,40,155,0,0,10,34,0,0,0,63,54,12,17,7,126,141,2,0,4,60,105,1,0,0,17,5,23,88,19,8,56,70,1,0,0,6,17,8,111,168,0,0,10,19,9,17,9,57,47,1,0,0,17,6,111,4,2,0,6,17,9,111,4,2,0,6,89,17,6,111,4,2,0,6,17,9,111,4,2,0,6,40,218,0,0,10,91,19,10,17,6,111,4,2,0,6,17,9,111,4,2,0,6,89,40,155,0,0,10,34,0,0,0,63,54,12,17,10,126,141,2,0,4,60,241,0,0,0,25,141,69,0,0,2,37,22,17,4,162,37,23,17,6,162,37,24,17,9,162,19,11,17,11,19,18,17,18,40,65,1,0,6,17,11,115,27,2,0,6,19,12,17,12,111,29,2,0,6,17,12,111,28,2,0,6,40,66,1,0,6,19,13,17,12,111,30,2,0,6,17,12,111,28,2,0,6,40,66,1,0,6,19,14,17,12,111,29,2,0,6,17,12,111,30,2,0,6,40,66,1,0,6,19,15,17,13,17,15,88,17,4,111,4,2,0,6,34,0,0,0,64,90,91,19,16,17,16,126,139,2,0,4,48,91,17,16,126,140,2,0,4,50,82,17,13,17,15,89,17,13,17,15,40,218,0,0,10,91,40,155,0,0,10,34,205,204,204,61,47,55,17,13,17,13,90,17,15,17,15,90,88,108,40,176,0,0,10,107,19,17,17,14,17,17,89,17,14,17,17,40,218,0,0,10,91,40,155,0,0,10,34,205,204,204,61,47,8,8,17,11,111,81,1,0,10,17,8,23,88,19,8,17,8,7,63,178,254,255,255,17,5,23,88,19,5,17,5,7,23,89,63,58,254,255,255,9,23,88,13,9,7,24,89,63,19,254,255,255,8,111,82,1,0,10,44,7,8,111,83,1,0,10,42,20,42,19,48,4,0,129,1,0,0,65,1,0,17,3,44,9,3,25,111,44,0,0,10,43,1,22,10,2,111,10,2,0,6,11,7,111,32,6,0,6,12,7,111,31,6,0,6,13,25,8,90,32,132,1,0,0,91,19,4,17,4,25,254,4,6,96,44,3,25,19,4,27,141,72,0,0,1,19,5,17,4,23,89,19,8,56,197,0,0,0,2,17,5,40,17,2,0,6,22,19,9,22,19,10,56,142,0,0,0,7,17,10,17,8,111,41,6,0,6,44,29,17,9,23,95,23,51,6,17,9,23,88,19,9,17,5,17,9,143,72,0,0,1,37,74,23,88,84,43,95,17,9,23,95,45,75,17,9,26,51,49,17,5,40,14,2,0,6,44,27,2,17,5,17,8,17,10,40,23,2,0,6,44,13,22,19,9,2,17,5,40,17,2,0,6,43,48,2,17,5,40,18,2,0,6,25,19,9,43,35,17,5,17,9,23,88,37,19,9,143,72,0,0,1,37,74,23,88,84,43,14,17,5,17,9,143,72,0,0,1,37,74,23,88,84,17,10,23,88,19,10,17,10,9,63,106,255,255,255,17,5,40,14,2,0,6,44,12,2,17,5,17,8,9,40,23,2,0,6,38,17,8,17,4,88,19,8,17,8,8,63,51,255,255,255,2,40,33,5,0,6,19,6,17,6,45,6,126,138,2,0,4,42,115,84,1,0,10,19,7,17,6,19,11,22,19,12,43,38,17,11,17,12,154,19,13,17,13,19,14,17,14,40,65,1,0,6,17,7,17,13,115,27,2,0,6,111,85,1,0,10,17,12,23,88,19,12,17,12,17,11,142,105,50,210,17,7,111,86,1,0,10,45,6,126,138,2,0,4,42,17,7,111,87,1,0,10,42,170,22,141,71,0,0,2,128,138,2,0,4,34,0,0,52,67,128,139,2,0,4,34,0,0,16,65,128,140,2,0,4,34,205,204,76,61,128,141,2,0,4,42,38,2,3,20,40,37,5,0,6,42,0,0,19,48,4,0,98,0,0,0,66,1,0,17,4,44,45,4,23,111,44,0,0,10,44,36,3,111,177,0,0,6,40,39,5,0,6,13,9,45,2,20,42,2,123,146,2,0,4,9,4,111,57,5,0,6,10,6,45,4,20,42,20,42,6,111,77,6,0,6,6,111,73,6,0,6,126,143,2,0,4,32,0,2,0,0,115,50,1,0,6,11,6,111,81,6,0,6,12,8,44,8,7,25,8,111,54,1,0,6,7,42,0,0,19,48,4,0,142,0,0,0,67,1,0,17,2,111,51,6,0,6,10,6,45,2,20,42,6,22,148,11,6,23,148,12,6,24,148,13,6,25,148,19,4,31,30,31,33,115,36,6,0,6,19,5,22,19,6,43,88,8,17,6,17,4,90,17,4,24,91,88,31,33,91,88,19,7,22,19,8,43,54,7,17,8,9,90,9,24,91,88,17,6,23,95,9,90,24,91,88,31,30,91,88,19,9,2,17,9,17,7,111,41,6,0,6,44,12,17,5,17,8,17,6,23,111,42,6,0,6,17,8,23,88,19,8,17,8,31,30,50,196,17,6,23,88,19,6,17,6,31,33,50,162,17,5,42,74,2,115,55,5,0,6,125,146,2,0,4,2,40,20,0,0,10,42,50,22,141,40,0,0,2,128,143,2,0,4,42,58,2,40,20,0,0,10,2,3,125,148,2,0,4,42,0,0,0,19,48,6,0,129,0,0,0,68,1,0,17,32,144,0,0,0,141,74,0,0,1,10,2,123,148,2,0,4,111,32,6,0,6,11,2,123,148,2,0,4,111,31,6,0,6,12,22,13,43,84,126,147,2,0,4,9,154,19,4,22,19,5,43,61,17,4,17,5,148,19,6,17,6,22,50,43,2,123,148,2,0,4,17,5,9,111,41,6,0,6,44,27,6,17,6,28,91,143,74,0,0,1,37,71,23,27,17,6,28,93,89,31,31,95,98,210,96,210,82,17,5,23,88,19,5,17,5,8,50,190,9,23,88,13,9,7,50,168,6,42,0,0,0,19,48,6,0,218,2,0,0,0,0,0,0,31,33,141,55,0,0,27,37,22,31,30,141,72,0,0,1,37,208,105,5,0,4,40,153,0,0,10,162,37,23,31,30,141,72,0,0,1,37,208,83,4,0,4,40,153,0,0,10,162,37,24,31,30,141,72,0,0,1,37,208,3,5,0,4,40,153,0,0,10,162,37,25,31,30,141,72,0,0,1,37,208,126,5,0,4,40,153,0,0,10,162,37,26,31,30,141,72,0,0,1,37,208,216,5,0,4,40,153,0,0,10,162,37,27,31,30,141,72,0,0,1,37,208,198,4,0,4,40,153,0,0,10,162,37,28,31,30,141,72,0,0,1,37,208,190,5,0,4,40,153,0,0,10,162,37,29,31,30,141,72,0,0,1,37,208,101,5,0,4,40,153,0,0,10,162,37,30,31,30,141,72,0,0,1,37,208,165,4,0,4,40,153,0,0,10,162,37,31,9,31,30,141,72,0,0,1,37,208,73,4,0,4,40,153,0,0,10,162,37,31,10,31,30,141,72,0,0,1,37,208,147,5,0,4,40,153,0,0,10,162,37,31,11,31,30,141,72,0,0,1,37,208,61,4,0,4,40,153,0,0,10,162,37,31,12,31,30,141,72,0,0,1,37,208,225,4,0,4,40,153,0,0,10,162,37,31,13,31,30,141,72,0,0,1,37,208,122,4,0,4,40,153,0,0,10,162,37,31,14,31,30,141,72,0,0,1,37,208,88,4,0,4,40,153,0,0,10,162,37,31,15,31,30,141,72,0,0,1,37,208,81,5,0,4,40,153,0,0,10,162,37,31,16,31,30,141,72,0,0,1,37,208,215,5,0,4,40,153,0,0,10,162,37,31,17,31,30,141,72,0,0,1,37,208,111,5,0,4,40,153,0,0,10,162,37,31,18,31,30,141,72,0,0,1,37,208,10,5,0,4,40,153,0,0,10,162,37,31,19,31,30,141,72,0,0,1,37,208,241,4,0,4,40,153,0,0,10,162,37,31,20,31,30,141,72,0,0,1,37,208,124,5,0,4,40,153,0,0,10,162,37,31,21,31,30,141,72,0,0,1,37,208,20,5,0,4,40,153,0,0,10,162,37,31,22,31,30,141,72,0,0,1,37,208,113,4,0,4,40,153,0,0,10,162,37,31,23,31,30,141,72,0,0,1,37,208,74,5,0,4,40,153,0,0,10,162,37,31,24,31,30,141,72,0,0,1,37,208,111,4,0,4,40,153,0,0,10,162,37,31,25,31,30,141,72,0,0,1,37,208,159,5,0,4,40,153,0,0,10,162,37,31,26,31,30,141,72,0,0,1,37,208,82,4,0,4,40,153,0,0,10,162,37,31,27,31,30,141,72,0,0,1,37,208,156,5,0,4,40,153,0,0,10,162,37,31,28,31,30,141,72,0,0,1,37,208,214,4,0,4,40,153,0,0,10,162,37,31,29,31,30,141,72,0,0,1,37,208,85,4,0,4,40,153,0,0,10,162,37,31,30,31,30,141,72,0,0,1,37,208,96,4,0,4,40,153,0,0,10,162,37,31,31,31,30,141,72,0,0,1,37,208,153,4,0,4,40,153,0,0,10,162,37,31,32,31,30,141,72,0,0,1,37,208,189,5,0,4,40,153,0,0,10,162,128,147,2,0,4,42,0,0,19,48,6,0,81,1,0,0,69,1,0,17,32,144,0,0,0,115,22,0,0,10,10,3,24,89,69,4,0,0,0,5,0,0,0,5,0,0,0,247,0,0,0,9,1,0,0,56,20,1,0,0,3,24,51,39,2,40,51,5,0,6,19,4,114,25,39,0,112,22,2,40,50,5,0,6,40,241,0,0,10,19,5,18,4,17,5,40,88,1,0,10,11,43,7,2,40,52,5,0,6,11,2,40,48,5,0,6,19,6,18,6,114,47,39,0,112,40,88,1,0,10,12,2,40,49,5,0,6,19,6,18,6,114,47,39,0,112,40,88,1,0,10,13,6,2,31,10,31,84,40,53,5,0,6,111,119,0,0,10,38,6,111,25,0,0,10,114,55,39,0,112,111,89,1,0,10,44,58,6,31,9,28,141,63,0,0,1,37,22,7,162,37,23,114,71,39,0,112,162,37,24,8,162,37,25,114,71,39,0,112,162,37,26,9,162,37,27,114,71,39,0,112,162,40,90,1,0,10,111,91,1,0,10,38,43,91,6,22,28,141,63,0,0,1,37,22,7,162,37,23,114,71,39,0,112,162,37,24,8,162,37,25,114,71,39,0,112,162,37,26,9,162,37,27,114,71,39,0,112,162,40,90,1,0,10,111,91,1,0,10,38,43,34,6,2,23,31,93,40,53,5,0,6,111,119,0,0,10,38,43,16,6,2,23,31,77,40,53,5,0,6,111,119,0,0,10,38,2,6,111,25,0,0,10,20,15,1,40,234,0,0,10,115,94,6,0,6,42,110,2,23,89,16,0,3,2,28,91,145,23,27,2,28,93,89,31,31,95,98,95,44,2,23,42,22,42,0,0,0,19,48,4,0,56,0,0,0,2,0,0,17,3,142,45,11,114,2,6,0,112,115,31,0,0,10,122,22,10,22,11,43,27,6,3,7,145,2,40,46,5,0,6,3,142,105,7,89,23,89,31,31,95,98,88,10,7,23,88,11,7,3,142,105,50,223,6,42,102,2,31,10,141,74,0,0,1,37,208,136,5,0,4,40,153,0,0,10,40,47,5,0,6,42,102,2,31,10,141,74,0,0,1,37,208,75,5,0,4,40,153,0,0,10,40,47,5,0,6,42,98,2,28,141,74,0,0,1,37,208,183,4,0,4,40,153,0,0,10,40,47,5,0,6,42,102,2,31,30,141,74,0,0,1,37,208,34,5,0,4,40,153,0,0,10,40,47,5,0,6,42,0,19,48,8,0,240,0,0,0,0,0,0,0,28,141,64,0,0,1,37,22,126,167,2,0,4,22,154,2,28,141,74,0,0,1,37,208,183,4,0,4,40,153,0,0,10,40,47,5,0,6,111,27,0,0,10,157,37,23,126,167,2,0,4,22,154,2,28,141,74,0,0,1,37,208,120,4,0,4,40,153,0,0,10,40,47,5,0,6,111,27,0,0,10,157,37,24,126,167,2,0,4,22,154,2,28,141,74,0,0,1,37,208,193,4,0,4,40,153,0,0,10,40,47,5,0,6,111,27,0,0,10,157,37,25,126,167,2,0,4,22,154,2,28,141,74,0,0,1,37,208,203,4,0,4,40,153,0,0,10,40,47,5,0,6,111,27,0,0,10,157,37,26,126,167,2,0,4,22,154,2,28,141,74,0,0,1,37,208,188,4,0,4,40,153,0,0,10,40,47,5,0,6,111,27,0,0,10,157,37,27,126,167,2,0,4,22,154,2,28,141,74,0,0,1,37,208,206,4,0,4,40,153,0,0,10,40,47,5,0,6,111,27,0,0,10,157,115,123,0,0,10,42,19,48,4,0,68,1,0,0,70,1,0,17,115,115,0,0,10,10,21,11,22,12,22,13,3,19,4,56,241,0,0,0,126,167,2,0,4,8,154,2,17,4,145,111,27,0,0,10,19,5,17,5,32,240,255,0,0,89,69,12,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,35,0,0,0,43,0,0,0,5,0,0,0,14,0,0,0,134,0,0,0,138,0,0,0,51,0,0,0,56,133,0,0,0,22,12,21,11,56,133,0,0,0,23,12,21,11,43,127,8,13,17,5,32,240,255,0,0,89,12,23,11,43,112,8,13,22,12,24,11,43,104,8,13,22,12,25,11,43,96,2,17,4,23,88,37,19,4,145,31,24,98,2,17,4,23,88,37,19,4,145,31,18,98,88,2,17,4,23,88,37,19,4,145,31,12,98,88,2,17,4,23,88,37,19,4,145,28,98,88,2,17,4,23,88,37,19,4,145,88,19,6,6,18,6,114,75,39,0,112,40,88,1,0,10,111,119,0,0,10,38,43,13,21,11,43,9,6,17,5,111,23,0,0,10,38,7,37,23,89,11,45,2,9,12,17,4,23,88,19,4,17,4,3,4,88,63,5,255,255,255,43,14,6,6,111,120,0,0,10,23,89,111,121,0,0,10,6,111,120,0,0,10,22,49,21,6,6,111,120,0,0,10,23,89,111,149,0,0,10,32,252,255,0,0,46,212,6,111,25,0,0,10,42,242,28,141,63,0,0,1,37,22,114,95,39,0,112,162,37,23,114,226,39,0,112,162,37,24,114,101,40,0,112,162,37,25,114,229,40,0,112,162,37,26,114,104,41,0,112,162,37,27,114,235,41,0,112,162,128,167,2,0,4,42,94,2,40,20,0,0,10,2,126,98,3,0,4,115,210,6,0,6,125,171,2,0,4,42,38,2,3,20,40,57,5,0,6,42,0,19,48,6,0,178,0,0,0,71,1,0,17,3,115,42,5,0,6,111,43,5,0,6,10,2,6,22,31,10,31,10,22,40,58,5,0,6,45,2,20,42,6,22,145,31,15,95,11,7,24,89,24,54,6,7,27,46,48,43,92,2,6,31,20,31,84,31,40,23,40,58,5,0,6,45,2,20,42,2,6,31,20,31,84,31,40,24,40,58,5,0,6,45,2,20,42,31,94,141,74,0,0,1,12,43,48,2,6,31,20,31,68,31,56,23,40,58,5,0,6,45,2,20,42,2,6,31,20,31,68,31,56,24,40,58,5,0,6,45,2,20,42,31,78,141,74,0,0,1,12,43,2,20,42,6,22,8,22,31,10,40,94,0,0,10,6,31,20,8,31,10,8,142,105,31,10,89,40,94,0,0,10,8,7,40,45,5,0,6,42,0,0,19,48,5,0,129,0,0,0,72,1,0,17,5,14,4,88,10,14,5,44,3,24,43,1,23,11,6,7,91,141,72,0,0,1,12,22,13,43,33,14,5,44,9,9,24,93,14,5,23,89,51,16,8,9,7,91,3,9,4,88,145,32,255,0,0,0,95,158,9,23,88,13,9,6,50,219,2,123,171,2,0,4,8,14,4,7,91,111,211,6,0,6,45,2,22,42,22,19,4,43,33,14,5,44,10,17,4,24,93,14,5,23,89,51,13,3,17,4,4,88,8,17,4,7,91,148,210,156,17,4,23,88,19,4,17,4,5,50,218,23,42,0,0,0,19,48,4,0,6,3,0,0,73,1,0,17,31,13,141,72,0,0,1,37,208,53,5,0,4,40,153,0,0,10,128,173,2,0,4,31,13,141,72,0,0,1,37,208,139,5,0,4,40,153,0,0,10,128,174,2,0,4,31,13,141,72,0,0,1,37,208,12,5,0,4,40,153,0,0,10,128,175,2,0,4,31,13,141,72,0,0,1,37,208,116,4,0,4,40,153,0,0,10,128,176,2,0,4,31,13,141,72,0,0,1,37,208,218,5,0,4,40,153,0,0,10,128,177,2,0,4,31,13,141,72,0,0,1,37,208,191,5,0,4,40,153,0,0,10,128,178,2,0,4,31,13,141,72,0,0,1,37,208,85,5,0,4,40,153,0,0,10,128,179,2,0,4,31,13,141,72,0,0,1,37,208,92,4,0,4,40,153,0,0,10,128,180,2,0,4,31,13,141,72,0,0,1,37,208,207,5,0,4,40,153,0,0,10,128,181,2,0,4,31,13,141,72,0,0,1,37,208,217,5,0,4,40,153,0,0,10,128,182,2,0,4,31,10,141,55,0,0,27,37,22,126,173,2,0,4,162,37,23,126,174,2,0,4,162,37,24,126,175,2,0,4,162,37,25,126,176,2,0,4,162,37,26,126,177,2,0,4,162,37,27,126,178,2,0,4,162,37,28,126,179,2,0,4,162,37,29,126,180,2,0,4,162,37,30,126,181,2,0,4,162,37,31,9,126,182,2,0,4,162,128,183,2,0,4,31,13,141,64,0,0,1,37,208,130,4,0,4,40,153,0,0,10,128,184,2,0,4,31,13,141,64,0,0,1,37,208,239,4,0,4,40,153,0,0,10,128,185,2,0,4,31,13,141,64,0,0,1,37,208,104,5,0,4,40,153,0,0,10,128,186,2,0,4,31,13,141,64,0,0,1,37,208,140,4,0,4,40,153,0,0,10,128,187,2,0,4,31,13,141,64,0,0,1,37,208,125,5,0,4,40,153,0,0,10,128,188,2,0,4,31,13,141,64,0,0,1,37,208,50,5,0,4,40,153,0,0,10,128,189,2,0,4,31,13,141,64,0,0,1,37,208,168,5,0,4,40,153,0,0,10,128,190,2,0,4,31,13,141,64,0,0,1,37,208,223,5,0,4,40,153,0,0,10,128,191,2,0,4,31,13,141,64,0,0,1,37,208,94,4,0,4,40,153,0,0,10,128,192,2,0,4,31,13,141,64,0,0,1,37,208,93,4,0,4,40,153,0,0,10,128,193,2,0,4,31,10,141,119,0,0,27,37,22,126,184,2,0,4,162,37,23,126,185,2,0,4,162,37,24,126,186,2,0,4,162,37,25,126,187,2,0,4,162,37,26,126,188,2,0,4,162,37,27,126,189,2,0,4,162,37,28,126,190,2,0,4,162,37,29,126,191,2,0,4,162,37,30,126,192,2,0,4,162,37,31,9,126,193,2,0,4,162,128,194,2,0,4,32,7,5,0,0,141,95,0,0,1,37,208,244,4,0,4,40,153,0,0,10,10,31,78,141,95,0,0,1,37,208,126,4,0,4,40,153,0,0,10,11,32,208,7,0,0,115,92,1,0,10,128,205,2,0,4,32,200,0,0,0,115,92,1,0,10,128,206,2,0,4,22,12,43,18,126,205,2,0,4,6,8,147,8,111,93,1,0,10,8,23,88,12,8,6,142,105,50,232,22,13,43,18,126,206,2,0,4,7,9,147,9,111,93,1,0,10,9,23,88,13,9,7,142,105,50,232,42,66,2,3,125,207,2,0,4,2,3,4,40,3,4,0,6,42,58,2,40,2,4,0,6,2,20,125,207,2,0,4,42,0,0,19,48,3,0,69,0,0,0,74,1,0,17,35,0,0,0,0,0,0,0,64,3,111,30,0,0,10,23,89,108,40,94,1,0,10,209,10,22,11,3,12,22,13,43,25,8,9,111,27,0,0,10,31,49,51,5,7,6,88,209,11,6,24,91,209,10,9,23,88,13,9,8,111,30,0,0,10,50,222,7,42,0,0,0,19,48,2,0,64,0,0,0,75,1,0,17,114,137,32,0,112,10,3,11,22,12,43,41,7,8,111,27,0,0,10,31,49,51,14,6,114,73,32,0,112,40,238,0,0,10,10,43,12,6,114,85,19,0,112,40,238,0,0,10,10,8,23,88,12,8,7,111,30,0,0,10,50,206,6,42,19,48,5,0,159,1,0,0,76,1,0,17,31,10,141,18,0,0,1,10,22,12,43,17,6,8,114,110,42,0,112,115,95,1,0,10,162,8,23,88,12,8,31,10,50,234,22,13,56,132,0,0,0,4,9,111,27,0,0,10,31,68,46,22,4,9,111,27,0,0,10,31,65,46,11,4,9,111,27,0,0,10,31,70,51,95,9,23,88,19,4,22,19,5,43,79,22,19,6,43,62,14,5,17,5,154,17,6,148,17,4,51,44,14,6,17,5,154,17,6,147,4,9,111,27,0,0,10,46,11,4,9,111,27,0,0,10,31,70,51,16,6,17,5,154,31,12,17,6,89,31,49,111,245,0,0,10,17,6,23,88,19,6,17,6,31,13,50,188,17,5,23,88,19,5,17,5,31,10,50,171,9,23,88,13,9,31,65,63,116,255,255,255,31,10,141,95,0,0,1,11,22,19,7,43,25,7,17,7,2,6,17,7,154,111,25,0,0,10,40,62,5,0,6,157,17,7,23,88,19,7,17,7,31,10,50,225,22,19,8,43,84,5,7,17,8,147,111,215,0,0,10,45,66,14,4,7,17,8,147,111,215,0,0,10,45,53,6,17,8,154,6,17,8,154,111,25,0,0,10,2,6,17,8,154,111,25,0,0,10,40,63,5,0,6,111,96,1,0,10,38,7,17,8,2,6,17,8,154,111,25,0,0,10,40,62,5,0,6,157,17,8,23,88,19,8,17,8,7,142,105,50,165,3,31,10,141,72,0,0,1,81,22,19,9,43,72,5,7,17,9,147,111,215,0,0,10,45,39,14,4,7,17,9,147,111,215,0,0,10,44,24,3,80,17,9,14,4,7,17,9,147,111,216,0,0,10,32,7,5,0,0,88,158,43,17,22,42,3,80,17,9,5,7,17,9,147,111,216,0,0,10,158,17,9,23,88,19,9,17,9,31,10,50,178,23,42,0,19,48,7,0,194,2,0,0,77,1,0,17,2,18,0,3,126,205,2,0,4,126,206,2,0,4,126,183,2,0,4,126,194,2,0,4,40,64,5,0,6,58,139,0,0,0,3,111,30,0,0,10,115,22,0,0,10,19,5,3,111,30,0,0,10,23,89,19,6,43,70,3,17,6,111,27,0,0,10,31,65,51,12,17,5,31,68,111,23,0,0,10,38,43,40,3,17,6,111,27,0,0,10,31,68,51,12,17,5,31,65,111,23,0,0,10,38,43,16,17,5,3,17,6,111,27,0,0,10,111,23,0,0,10,38,17,6,23,89,19,6,17,6,22,47,181,2,18,0,17,5,111,25,0,0,10,126,205,2,0,4,126,206,2,0,4,126,183,2,0,4,126,194,2,0,4,40,64,5,0,6,45,2,20,42,6,22,148,32,146,2,0,0,49,16,6,22,143,72,0,0,1,37,74,32,147,2,0,0,89,84,6,31,9,143,72,0,0,1,37,74,24,91,84,6,22,148,40,70,0,0,6,11,23,19,7,43,37,7,32,85,5,0,0,40,70,0,0,6,40,82,0,0,6,6,17,7,148,40,70,0,0,6,40,80,0,0,6,11,17,7,23,88,19,7,17,7,30,49,214,7,32,124,2,0,0,40,70,0,0,6,40,82,0,0,6,6,31,9,148,40,70,0,0,6,40,80,0,0,6,11,31,20,141,72,0,0,1,12,31,19,19,8,43,42,8,17,8,7,31,10,40,70,0,0,6,40,84,0,0,6,40,71,0,0,6,158,7,31,10,40,70,0,0,6,40,83,0,0,6,11,17,8,23,89,19,8,17,8,24,47,209,8,23,7,27,40,70,0,0,6,40,84,0,0,6,40,71,0,0,6,158,7,27,40,70,0,0,6,40,83,0,0,6,11,8,22,7,31,10,40,70,0,0,6,40,84,0,0,6,40,71,0,0,6,158,7,31,10,40,70,0,0,6,40,83,0,0,6,11,114,137,32,0,112,13,8,19,9,22,19,10,43,27,17,9,17,10,148,19,11,9,18,11,40,234,0,0,10,40,238,0,0,10,13,17,10,23,88,19,10,17,10,17,9,142,105,50,221,7,32,0,202,154,59,40,70,0,0,6,40,75,0,0,6,44,77,7,32,0,202,154,59,40,70,0,0,6,40,81,0,0,6,32,160,134,1,0,40,70,0,0,6,40,81,0,0,6,23,40,70,0,0,6,40,81,0,0,6,40,72,0,0,6,19,4,9,18,4,40,97,1,0,10,31,11,31,48,111,98,1,0,10,40,238,0,0,10,13,56,132,0,0,0,7,32,160,134,1,0,40,70,0,0,6,40,75,0,0,6,44,59,7,32,160,134,1,0,40,70,0,0,6,40,81,0,0,6,23,40,70,0,0,6,40,81,0,0,6,40,72,0,0,6,19,4,9,18,4,40,97,1,0,10,31,9,31,48,111,98,1,0,10,40,238,0,0,10,13,43,55,7,22,40,70,0,0,6,40,75,0,0,6,44,41,7,23,40,70,0,0,6,40,81,0,0,6,40,72,0,0,6,19,4,9,18,4,40,97,1,0,10,27,31,48,111,98,1,0,10,40,238,0,0,10,13,9,42,0,0,19,48,2,0,181,0,0,0,78,1,0,17,22,10,14,7,11,56,162,0,0,0,3,7,111,4,6,0,6,44,77,6,58,143,0,0,0,23,10,14,4,80,23,111,213,0,0,10,4,7,111,4,6,0,6,44,11,14,5,80,23,111,213,0,0,10,43,9,14,5,80,22,111,213,0,0,10,5,7,111,4,6,0,6,44,11,14,6,80,23,111,213,0,0,10,43,83,14,6,80,22,111,213,0,0,10,43,72,6,44,67,14,4,80,22,111,213,0,0,10,4,7,111,4,6,0,6,44,11,14,5,80,23,111,213,0,0,10,43,9,14,5,80,22,111,213,0,0,10,5,7,111,4,6,0,6,44,11,14,6,80,23,111,213,0,0,10,43,9,14,6,80,22,111,213,0,0,10,22,10,7,23,88,11,7,14,8,62,86,255,255,255,42,0,0,0,19,48,2,0,208,0,0,0,80,1,0,17,3,111,2,6,0,6,10,3,22,111,12,6,0,6,11,4,7,84,4,74,12,22,13,22,19,4,22,19,5,22,19,6,22,19,7,22,19,8,22,19,9,22,19,10,7,19,11,56,141,0,0,0,3,17,11,111,4,6,0,6,44,56,22,19,7,17,4,45,38,9,23,48,6,17,9,19,10,43,18,17,10,17,9,46,12,23,19,8,17,9,19,10,23,13,4,8,84,9,23,88,13,23,19,4,17,11,12,22,19,9,17,5,23,88,19,5,43,69,22,19,4,17,7,45,56,17,8,23,88,19,8,23,19,7,9,23,48,6,17,5,19,6,43,34,17,6,17,5,46,17,23,13,23,19,8,22,19,10,4,8,84,17,5,19,6,43,11,9,31,65,51,6,5,17,11,84,43,23,22,19,5,17,9,23,88,19,9,17,11,23,88,19,11,17,11,6,63,107,255,255,255,14,4,17,6,84,9,42,19,48,2,0,69,0,0,0,9,0,0,17,22,10,22,11,22,12,4,13,43,53,3,9,111,4,6,0,6,44,24,6,45,2,23,10,8,23,88,12,9,5,51,27,8,14,4,51,22,7,23,88,11,43,16,6,44,9,8,14,4,51,4,7,23,88,11,22,10,22,12,9,23,88,13,9,5,49,199,7,42,0,0,0,19,48,9,0,248,1,0,0,81,1,0,17,2,123,207,2,0,4,45,2,20,42,22,10,2,123,207,2,0,4,111,174,0,0,6,23,89,11,22,12,2,4,18,0,18,1,18,2,40,67,5,0,6,31,65,46,2,20,42,2,123,207,2,0,4,111,174,0,0,6,115,7,6,0,6,13,2,123,207,2,0,4,111,174,0,0,6,115,7,6,0,6,19,4,3,19,5,3,19,6,17,5,22,48,2,20,42,17,5,23,89,19,5,2,123,207,2,0,4,17,5,9,111,176,0,0,6,13,2,9,6,7,8,40,68,5,0,6,31,65,47,214,17,6,2,123,207,2,0,4,111,175,0,0,6,23,89,50,2,20,42,17,6,23,88,19,6,2,123,207,2,0,4,17,6,17,4,111,176,0,0,6,19,4,2,17,4,6,7,8,40,68,5,0,6,31,65,47,199,115,207,0,0,10,19,7,115,207,0,0,10,19,8,115,207,0,0,10,19,9,2,4,9,17,4,18,7,18,8,18,9,6,7,40,66,5,0,6,114,137,32,0,112,19,10,22,19,13,43,127,17,7,17,13,111,99,1,0,10,44,110,17,9,17,13,111,99,1,0,10,23,51,28,17,8,17,13,111,99,1,0,10,23,51,16,17,10,114,138,42,0,112,40,238,0,0,10,19,10,43,70,17,9,17,13,111,99,1,0,10,23,51,16,17,10,114,142,42,0,112,40,238,0,0,10,19,10,43,42,17,8,17,13,111,99,1,0,10,23,51,16,17,10,114,146,42,0,112,40,238,0,0,10,19,10,43,14,17,10,114,150,42,0,112,40,238,0,0,10,19,10,17,13,23,88,19,13,17,13,17,7,111,100,1,0,10,63,115,255,255,255,2,17,10,40,65,5,0,6,19,11,17,11,45,2,20,42,5,44,23,5,29,111,44,0,0,10,44,14,5,29,111,77,0,0,10,116,41,0,0,2,43,1,20,19,12,17,12,44,32,17,12,6,107,3,107,115,59,1,0,6,111,69,1,0,6,17,12,7,107,3,107,115,59,1,0,6,111,69,1,0,6,17,11,20,24,141,40,0,0,2,37,22,6,107,3,107,115,59,1,0,6,162,37,23,7,107,3,107,115,59,1,0,6,162,32,0,0,8,0,115,50,1,0,6,42,38,2,3,20,40,72,5,0,6,42,0,0,19,48,4,0,171,0,0,0,82,1,0,17,4,44,50,4,23,111,44,0,0,10,44,41,3,111,177,0,0,6,40,74,5,0,6,19,5,17,5,45,2,20,42,2,123,209,2,0,4,17,5,111,235,5,0,6,10,126,208,2,0,4,11,43,51,3,111,177,0,0,6,115,249,5,0,6,40,250,5,0,6,19,6,17,6,45,2,20,42,2,123,209,2,0,4,17,6,111,131,6,0,6,111,235,5,0,6,10,17,6,111,133,6,0,6,11,6,45,2,20,42,6,111,77,6,0,6,6,111,73,6,0,6,7,31,32,115,50,1,0,6,12,6,111,79,6,0,6,13,9,44,8,8,24,9,111,54,1,0,6,6,111,81,6,0,6,19,4,17,4,44,9,8,25,17,4,111,54,1,0,6,8,42,0,19,48,4,0,185,0,0,0,83,1,0,17,2,111,52,6,0,6,10,2,111,53,6,0,6,11,6,44,3,7,45,2,20,42,6,2,18,2,40,75,5,0,6,45,2,20,42,6,23,148,13,7,23,148,19,4,6,22,148,19,5,7,22,148,17,5,89,23,88,8,91,19,6,17,4,9,89,23,88,8,91,19,7,17,6,22,49,5,17,7,22,48,2,20,42,8,23,99,19,8,9,17,8,88,13,17,5,17,8,88,19,5,17,6,17,7,115,36,6,0,6,19,9,22,19,10,43,60,9,17,10,8,90,88,19,11,22,19,12,43,35,2,17,5,17,12,8,90,88,17,11,111,41,6,0,6,44,12,17,9,17,12,17,10,23,111,42,6,0,6,17,12,23,88,19,12,17,12,17,6,50,215,17,10,23,88,19,10,17,10,17,7,50,190,17,9,42,0,0,0,19,48,4,0,59,0,0,0,64,0,0,17,3,111,31,6,0,6,10,2,22,148,11,2,23,148,12,43,4,7,23,88,11,7,6,47,10,3,7,8,111,41,6,0,6,45,238,7,6,51,5,4,22,84,22,42,4,7,2,22,148,89,84,4,74,45,2,22,42,23,42,74,2,115,233,5,0,6,125,209,2,0,4,2,40,20,0,0,10,42,50,22,141,40,0,0,2,128,208,2,0,4,42,54,2,3,4,5,14,4,20,40,79,5,0,6,42,0,0,0,19,48,6,0,144,1,0,0,84,1,0,17,3,40,124,0,0,10,44,12,114,135,9,0,112,3,115,108,0,0,10,122,4,31,32,46,22,114,154,42,0,112,4,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,5,22,50,5,14,4,22,47,52,26,141,13,0,0,1,37,22,114,230,42,0,112,162,37,23,5,140,72,0,0,1,162,37,24,114,2,6,0,112,162,37,25,14,4,140,72,0,0,1,162,40,134,0,0,10,115,31,0,0,10,122,22,10,22,11,20,12,20,13,14,5,57,207,0,0,0,14,5,31,11,111,126,0,0,10,44,83,14,5,31,11,111,127,0,0,10,19,7,17,7,117,194,0,0,2,44,10,17,7,165,194,0,0,2,10,43,53,208,194,0,0,2,40,192,0,0,10,17,7,111,25,0,0,10,40,204,0,0,10,44,29,208,194,0,0,2,40,192,0,0,10,17,7,111,25,0,0,10,23,40,193,0,0,10,165,194,0,0,2,10,14,5,31,12,111,126,0,0,10,45,3,20,43,14,14,5,31,12,111,127,0,0,10,117,20,0,0,2,19,5,17,5,44,3,17,5,12,14,5,31,13,111,126,0,0,10,45,3,20,43,14,14,5,31,13,111,127,0,0,10,117,20,0,0,2,19,6,17,6,44,3,17,6,13,14,5,31,15,111,126,0,0,10,44,28,14,5,31,15,111,127,0,0,10,19,8,17,8,44,13,17,8,111,25,0,0,10,40,137,0,0,10,11,3,6,8,9,7,40,166,5,0,6,37,111,30,0,0,10,6,8,9,23,40,187,5,0,6,19,4,17,4,40,161,5,0,6,17,4,111,190,5,0,6,17,4,111,191,5,0,6,115,111,5,0,6,37,111,118,5,0,6,17,4,5,14,4,40,80,5,0,6,42,19,48,6,0,49,1,0,0,85,1,0,17,3,111,190,5,0,6,10,3,111,191,5,0,6,11,3,111,192,5,0,6,3,111,193,5,0,6,115,34,2,0,6,12,22,13,22,19,4,56,246,0,0,0,17,4,3,123,4,3,0,4,93,45,50,22,19,5,22,19,6,43,28,8,17,5,9,17,6,24,93,22,254,1,111,41,2,0,6,17,5,23,88,19,5,17,6,23,88,19,6,17,6,3,111,192,5,0,6,50,218,9,23,88,13,22,19,5,22,19,7,43,99,17,7,3,123,3,3,0,4,93,45,16,8,17,5,9,23,111,41,2,0,6,17,5,23,88,19,5,8,17,5,9,2,17,7,17,4,111,115,5,0,6,111,41,2,0,6,17,5,23,88,19,5,17,7,3,123,3,3,0,4,93,3,123,3,3,0,4,23,89,51,22,8,17,5,9,17,4,24,93,22,254,1,111,41,2,0,6,17,5,23,88,19,5,17,7,23,88,19,7,17,7,6,50,152,9,23,88,13,17,4,3,123,4,3,0,4,93,3,123,4,3,0,4,23,89,51,44,22,19,5,22,19,8,43,22,8,17,5,9,23,111,41,2,0,6,17,5,23,88,19,5,17,8,23,88,19,8,17,8,3,111,192,5,0,6,50,224,9,23,88,13,17,4,23,88,19,4,17,4,7,63,2,255,255,255,8,4,5,40,81,5,0,6,42,0,0,0,19,48,5,0,180,0,0,0,86,1,0,17,2,111,36,2,0,6,10,2,111,35,2,0,6,11,3,6,40,139,0,0,10,4,7,40,139,0,0,10,12,37,6,91,8,7,91,40,140,0,0,10,13,6,9,90,89,24,91,19,4,8,7,9,90,89,24,91,19,5,4,7,50,4,3,6,47,17,22,19,4,22,19,5,6,7,115,36,6,0,6,19,6,43,9,3,4,115,36,6,0,6,19,6,17,6,111,46,6,0,6,22,19,7,17,5,19,8,43,64,22,19,9,17,4,19,10,43,38,2,17,9,17,7,111,37,2,0,6,23,51,13,17,6,17,10,17,8,9,9,111,47,6,0,6,17,9,23,88,19,9,17,10,9,88,19,10,17,9,6,50,213,17,7,23,88,19,7,17,8,9,88,19,8,17,7,7,50,187,17,6,42,19,48,2,0,49,0,0,0,87,1,0,17,2,40,140,6,0,6,31,11,111,126,0,0,10,44,24,2,40,140,6,0,6,31,11,111,127,0,0,10,165,194,0,0,2,115,101,1,0,10,42,18,0,254,21,120,0,0,27,6,42,238,15,1,40,102,1,0,10,45,30,2,40,140,6,0,6,31,11,111,126,0,0,10,44,34,2,40,140,6,0,6,31,11,111,128,0,0,10,38,42,2,40,140,6,0,6,31,11,3,140,120,0,0,27,111,129,0,0,10,42,146,2,40,140,6,0,6,31,12,111,126,0,0,10,44,19,2,40,140,6,0,6,31,12,111,127,0,0,10,116,20,0,0,2,42,20,42,194,3,45,30,2,40,140,6,0,6,31,12,111,126,0,0,10,44,29,2,40,140,6,0,6,31,12,111,128,0,0,10,38,42,2,40,140,6,0,6,31,12,3,111,129,0,0,10,42,146,2,40,140,6,0,6,31,13,111,126,0,0,10,44,19,2,40,140,6,0,6,31,13,111,127,0,0,10,116,20,0,0,2,42,20,42,194,3,45,30,2,40,140,6,0,6,31,13,111,126,0,0,10,44,29,2,40,140,6,0,6,31,13,111,128,0,0,10,38,42,2,40,140,6,0,6,31,13,3,111,129,0,0,10,42,0,0,0,19,48,2,0,49,0,0,0,65,0,0,17,2,40,140,6,0,6,31,15,111,126,0,0,10,44,24,2,40,140,6,0,6,31,15,111,127,0,0,10,165,72,0,0,1,115,130,0,0,10,42,18,0,254,21,51,0,0,27,6,42,238,15,1,40,131,0,0,10,45,30,2,40,140,6,0,6,31,15,111,126,0,0,10,44,34,2,40,140,6,0,6,31,15,111,128,0,0,10,38,42,2,40,140,6,0,6,31,15,3,140,51,0,0,27,111,129,0,0,10,42,0,0,0,19,48,5,0,128,1,0,0,88,1,0,17,3,111,157,5,0,6,3,111,152,5,0,6,40,178,5,0,6,24,50,62,3,3,111,157,5,0,6,3,111,152,5,0,6,111,27,0,0,10,3,111,157,5,0,6,3,111,152,5,0,6,23,88,111,27,0,0,10,40,94,5,0,6,111,142,5,0,6,3,37,111,152,5,0,6,24,88,111,153,5,0,6,42,3,111,139,5,0,6,10,3,111,157,5,0,6,3,111,152,5,0,6,2,40,92,5,0,6,40,167,5,0,6,11,7,2,40,92,5,0,6,59,147,0,0,0,7,23,89,69,5,0,0,0,21,0,0,0,59,0,0,0,40,0,0,0,78,0,0,0,2,0,0,0,43,95,3,32,231,0,0,0,111,142,5,0,6,3,27,111,144,5,0,6,42,3,32,230,0,0,0,111,142,5,0,6,3,23,111,144,5,0,6,42,3,32,238,0,0,0,111,142,5,0,6,3,25,111,144,5,0,6,42,3,32,239,0,0,0,111,142,5,0,6,3,24,111,144,5,0,6,42,3,32,240,0,0,0,111,142,5,0,6,3,26,111,144,5,0,6,42,114,56,43,0,112,7,140,72,0,0,1,40,91,0,0,10,115,34,0,0,10,122,6,40,171,5,0,6,44,44,3,32,235,0,0,0,111,142,5,0,6,3,6,32,128,0,0,0,89,23,88,209,111,142,5,0,6,3,37,111,152,5,0,6,12,8,23,88,111,153,5,0,6,42,6,31,29,51,28,3,111,158,5,0,6,45,20,3,32,232,0,0,0,111,142,5,0,6,3,23,111,159,5,0,6,43,10,3,6,23,88,209,111,142,5,0,6,3,37,111,152,5,0,6,12,8,23,88,111,153,5,0,6,42,19,48,3,0,66,0,0,0,0,0,0,0,2,40,170,5,0,6,44,28,3,40,170,5,0,6,44,20,2,31,48,89,31,10,90,3,31,48,89,88,32,130,0,0,0,88,209,42,114,86,43,0,112,15,0,40,28,0,0,10,15,1,40,28,0,0,10,40,246,0,0,10,115,31,0,0,10,122,10,27,42,0,0,0,19,48,7,0,47,1,0,0,89,1,0,17,115,115,0,0,10,10,6,22,111,23,0,0,10,38,43,75,3,111,139,5,0,6,19,4,6,17,4,111,23,0,0,10,38,3,37,111,152,5,0,6,19,5,17,5,23,88,111,153,5,0,6,3,111,157,5,0,6,3,111,152,5,0,6,2,40,96,5,0,6,40,167,5,0,6,2,40,96,5,0,6,46,9,3,22,111,144,5,0,6,43,8,3,111,146,5,0,6,45,173,6,111,120,0,0,10,23,89,11,3,111,143,5,0,6,7,88,23,88,12,3,8,111,150,5,0,6,3,111,155,5,0,6,123,1,3,0,4,8,89,22,254,2,13,3,111,146,5,0,6,9,96,44,97,7,32,249,0,0,0,48,11,6,22,7,209,111,245,0,0,10,43,78,7,32,19,6,0,0,48,48,6,22,7,32,250,0,0,0,91,32,249,0,0,0,88,209,111,245,0,0,10,6,23,23,141,64,0,0,1,37,22,7,32,250,0,0,0,93,209,157,111,151,0,0,10,38,43,22,114,112,43,0,112,7,140,72,0,0,1,40,91,0,0,10,115,34,0,0,10,122,6,111,120,0,0,10,19,6,22,19,7,43,33,3,6,17,7,111,149,0,0,10,3,111,143,5,0,6,23,88,40,98,5,0,6,111,142,5,0,6,17,7,23,88,19,7,17,7,17,6,50,217,42,0,19,48,2,0,40,0,0,0,2,0,0,17,32,149,0,0,0,3,90,32,255,0,0,0,93,23,88,10,2,6,88,11,7,32,255,0,0,0,48,3,7,209,42,7,32,0,1,0,0,89,209,42,19,48,5,0,248,0,0,0,90,1,0,17,115,115,0,0,10,10,56,217,0,0,0,3,111,139,5,0,6,11,3,37,111,152,5,0,6,19,6,17,6,23,88,111,153,5,0,6,2,7,6,111,105,5,0,6,12,6,111,120,0,0,10,25,91,24,90,13,3,111,143,5,0,6,9,88,19,4,3,17,4,111,150,5,0,6,3,111,155,5,0,6,123,1,3,0,4,17,4,89,19,5,3,111,146,5,0,6,45,80,115,115,0,0,10,19,7,6,111,120,0,0,10,25,93,24,51,36,17,5,24,50,5,17,5,24,49,26,2,3,6,17,7,8,40,102,5,0,6,12,43,12,2,3,6,17,7,8,40,102,5,0,6,12,6,111,120,0,0,10,25,93,23,51,76,8,25,48,5,17,5,23,51,224,8,25,48,220,43,61,6,111,120,0,0,10,25,93,45,40,3,111,157,5,0,6,3,111,152,5,0,6,2,111,100,5,0,6,40,167,5,0,6,2,111,100,5,0,6,46,9,3,22,111,144,5,0,6,43,11,3,111,146,5,0,6,58,28,255,255,255,2,3,6,111,104,5,0,6,42,19,48,3,0,62,0,0,0,91,1,0,17,4,111,120,0,0,10,10,4,6,14,4,89,14,4,111,150,0,0,10,38,3,37,111,152,5,0,6,12,8,23,89,111,153,5,0,6,3,111,139,5,0,6,11,2,7,5,111,105,5,0,6,16,4,3,111,151,5,0,6,14,4,42,94,2,3,22,40,106,5,0,6,111,141,5,0,6,3,22,25,111,150,0,0,10,38,42,0,0,19,48,3,0,234,0,0,0,51,0,0,17,4,111,120,0,0,10,25,91,24,90,10,4,111,120,0,0,10,25,93,11,3,111,143,5,0,6,6,88,12,3,8,111,150,5,0,6,3,111,155,5,0,6,123,1,3,0,4,8,89,13,7,24,51,50,4,22,111,23,0,0,10,38,43,7,3,4,40,103,5,0,6,4,111,120,0,0,10,25,47,240,3,111,146,5,0,6,57,135,0,0,0,3,32,254,0,0,0,111,142,5,0,6,43,122,9,23,51,61,7,23,51,57,43,7,3,4,40,103,5,0,6,4,111,120,0,0,10,25,47,240,3,111,146,5,0,6,44,11,3,32,254,0,0,0,111,142,5,0,6,3,37,111,152,5,0,6,19,4,17,4,23,89,111,153,5,0,6,43,57,7,45,43,43,7,3,4,40,103,5,0,6,4,111,120,0,0,10,25,47,240,9,22,48,8,3,111,146,5,0,6,44,24,3,32,254,0,0,0,111,142,5,0,6,43,11,114,186,43,0,112,115,34,0,0,10,122,3,22,111,144,5,0,6,42,0,0,19,48,4,0,34,1,0,0,0,0,0,0,3,31,32,51,10,4,25,111,23,0,0,10,38,23,42,3,31,48,50,21,3,31,57,48,16,4,3,31,48,89,26,88,209,111,23,0,0,10,38,23,42,3,31,65,50,22,3,31,90,48,17,4,3,31,65,89,31,14,88,209,111,23,0,0,10,38,23,42,3,22,50,23,3,31,31,48,18,4,22,111,23,0,0,10,38,4,3,111,23,0,0,10,38,24,42,3,31,33,50,27,3,31,47,48,22,4,23,111,23,0,0,10,38,4,3,31,33,89,209,111,23,0,0,10,38,24,42,3,31,58,50,30,3,31,64,48,25,4,23,111,23,0,0,10,38,4,3,31,58,89,31,15,88,209,111,23,0,0,10,38,24,42,3,31,91,50,30,3,31,95,48,25,4,23,111,23,0,0,10,38,4,3,31,91,89,31,22,88,209,111,23,0,0,10,38,24,42,3,31,96,50,27,3,31,127,48,22,4,24,111,23,0,0,10,38,4,3,31,96,89,209,111,23,0,0,10,38,24,42,3,32,128,0,0,0,50,30,4,114,250,43,0,112,111,119,0,0,10,38,24,2,3,32,128,0,0,0,89,209,4,111,105,5,0,6,88,42,114,0,44,0,112,15,1,40,28,0,0,10,40,238,0,0,10,115,34,0,0,10,122,0,0,19,48,4,0,83,0,0,0,92,1,0,17,2,3,111,149,0,0,10,10,2,3,23,88,111,149,0,0,10,11,2,3,24,88,111,149,0,0,10,12,32,64,6,0,0,6,90,31,40,7,90,88,8,88,23,88,37,32,0,1,0,0,91,209,13,32,0,1,0,0,93,209,19,4,24,141,64,0,0,1,37,22,9,157,37,23,17,4,157,115,123,0,0,10,42,0,19,48,9,0,27,0,0,0,0,0,0,0,2,22,32,22,6,0,0,32,108,2,0,0,31,22,31,22,31,36,21,31,62,40,182,5,0,6,42,66,3,30,49,6,32,155,0,0,0,42,32,156,0,0,0,42,218,2,40,20,0,0,10,2,3,125,210,2,0,4,2,4,125,212,2,0,4,2,5,125,211,2,0,4,2,4,5,90,141,74,0,0,1,125,213,2,0,4,2,123,213,2,0,4,24,40,8,0,0,43,42,30,2,123,211,2,0,4,42,30,2,123,212,2,0,4,42,30,2,123,213,2,0,4,42,86,2,123,213,2,0,4,4,2,123,212,2,0,4,90,3,88,145,23,254,1,42,106,2,123,213,2,0,4,4,2,123,212,2,0,4,90,3,88,5,45,3,22,43,1,23,210,156,42,86,2,123,213,2,0,4,4,2,123,212,2,0,4,90,3,88,145,24,254,4,42,0,0,19,48,6,0,105,1,0,0,64,0,0,17,22,10,26,11,22,12,7,2,123,211,2,0,4,51,14,8,45,11,2,6,37,23,88,10,40,121,5,0,6,7,2,123,211,2,0,4,24,89,51,24,8,45,21,2,123,212,2,0,4,26,93,44,11,2,6,37,23,88,10,40,122,5,0,6,7,2,123,211,2,0,4,24,89,51,25,8,45,22,2,123,212,2,0,4,30,93,26,51,11,2,6,37,23,88,10,40,123,5,0,6,7,2,123,211,2,0,4,26,88,51,25,8,24,51,21,2,123,212,2,0,4,30,93,45,11,2,6,37,23,88,10,40,124,5,0,6,7,2,123,211,2,0,4,47,27,8,22,50,23,2,8,7,40,117,5,0,6,45,13,2,7,8,6,37,23,88,10,40,120,5,0,6,7,24,89,11,8,24,88,12,7,22,50,9,8,2,123,212,2,0,4,50,199,7,23,88,11,8,25,88,12,7,22,50,32,8,2,123,212,2,0,4,47,23,2,8,7,40,117,5,0,6,45,13,2,7,8,6,37,23,88,10,40,120,5,0,6,7,24,88,11,8,24,89,12,7,2,123,211,2,0,4,47,4,8,22,47,199,7,25,88,11,8,23,88,12,7,2,123,211,2,0,4,63,240,254,255,255,8,2,123,212,2,0,4,63,228,254,255,255,2,2,123,212,2,0,4,23,89,2,123,211,2,0,4,23,89,40,117,5,0,6,45,46,2,2,123,212,2,0,4,23,89,2,123,211,2,0,4,23,89,23,40,116,5,0,6,2,2,123,212,2,0,4,24,89,2,123,211,2,0,4,24,89,23,40,116,5,0,6,42,0,0,0,19,48,5,0,98,0,0,0,1,0,0,17,3,22,47,26,3,2,123,211,2,0,4,88,16,1,4,26,2,123,211,2,0,4,26,88,30,93,89,88,16,2,4,22,47,26,4,2,123,212,2,0,4,88,16,2,3,26,2,123,212,2,0,4,26,88,30,93,89,88,16,1,2,123,210,2,0,4,5,111,27,0,0,10,10,6,23,30,14,4,89,31,31,95,98,95,10,2,4,3,6,22,254,3,40,116,5,0,6,42,0,0,19,48,5,0,103,0,0,0,0,0,0,0,2,3,24,89,4,24,89,5,23,40,119,5,0,6,2,3,24,89,4,23,89,5,24,40,119,5,0,6,2,3,23,89,4,24,89,5,25,40,119,5,0,6,2,3,23,89,4,23,89,5,26,40,119,5,0,6,2,3,23,89,4,5,27,40,119,5,0,6,2,3,4,24,89,5,28,40,119,5,0,6,2,3,4,23,89,5,29,40,119,5,0,6,2,3,4,5,30,40,119,5,0,6,42,0,19,48,5,0,137,0,0,0,0,0,0,0,2,2,123,211,2,0,4,23,89,22,3,23,40,119,5,0,6,2,2,123,211,2,0,4,23,89,23,3,24,40,119,5,0,6,2,2,123,211,2,0,4,23,89,24,3,25,40,119,5,0,6,2,22,2,123,212,2,0,4,24,89,3,26,40,119,5,0,6,2,22,2,123,212,2,0,4,23,89,3,27,40,119,5,0,6,2,23,2,123,212,2,0,4,23,89,3,28,40,119,5,0,6,2,24,2,123,212,2,0,4,23,89,3,29,40,119,5,0,6,2,25,2,123,212,2,0,4,23,89,3,30,40,119,5,0,6,42,0,0,0,19,48,5,0,137,0,0,0,0,0,0,0,2,2,123,211,2,0,4,25,89,22,3,23,40,119,5,0,6,2,2,123,211,2,0,4,24,89,22,3,24,40,119,5,0,6,2,2,123,211,2,0,4,23,89,22,3,25,40,119,5,0,6,2,22,2,123,212,2,0,4,26,89,3,26,40,119,5,0,6,2,22,2,123,212,2,0,4,25,89,3,27,40,119,5,0,6,2,22,2,123,212,2,0,4,24,89,3,28,40,119,5,0,6,2,22,2,123,212,2,0,4,23,89,3,29,40,119,5,0,6,2,23,2,123,212,2,0,4,23,89,3,30,40,119,5,0,6,42,0,0,0,19,48,5,0,137,0,0,0,0,0,0,0,2,2,123,211,2,0,4,25,89,22,3,23,40,119,5,0,6,2,2,123,211,2,0,4,24,89,22,3,24,40,119,5,0,6,2,2,123,211,2,0,4,23,89,22,3,25,40,119,5,0,6,2,22,2,123,212,2,0,4,24,89,3,26,40,119,5,0,6,2,22,2,123,212,2,0,4,23,89,3,27,40,119,5,0,6,2,23,2,123,212,2,0,4,23,89,3,28,40,119,5,0,6,2,24,2,123,212,2,0,4,23,89,3,29,40,119,5,0,6,2,25,2,123,212,2,0,4,23,89,3,30,40,119,5,0,6,42,0,0,0,19,48,5,0,144,0,0,0,0,0,0,0,2,2,123,211,2,0,4,23,89,22,3,23,40,119,5,0,6,2,2,123,211,2,0,4,23,89,2,123,212,2,0,4,23,89,3,24,40,119,5,0,6,2,22,2,123,212,2,0,4,25,89,3,25,40,119,5,0,6,2,22,2,123,212,2,0,4,24,89,3,26,40,119,5,0,6,2,22,2,123,212,2,0,4,23,89,3,27,40,119,5,0,6,2,23,2,123,212,2,0,4,25,89,3,28,40,119,5,0,6,2,23,2,123,212,2,0,4,24,89,3,29,40,119,5,0,6,2,23,2,123,212,2,0,4,23,89,3,30,40,119,5,0,6,42,10,26,42,0,19,48,3,0,132,0,0,0,3,0,0,17,115,115,0,0,10,10,43,99,3,111,139,5,0,6,6,40,128,5,0,6,3,37,111,152,5,0,6,11,7,23,88,111,153,5,0,6,6,111,120,0,0,10,26,50,62,3,6,22,40,129,5,0,6,111,141,5,0,6,6,22,26,111,150,0,0,10,38,3,111,157,5,0,6,3,111,152,5,0,6,2,40,125,5,0,6,40,167,5,0,6,2,40,125,5,0,6,46,9,3,22,111,144,5,0,6,43,8,3,111,146,5,0,6,45,149,6,31,31,111,23,0,0,10,38,3,6,40,127,5,0,6,42,27,48,4,0,0,1,0,0,93,1,0,17,3,111,120,0,0,10,10,6,45,5,221,240,0,0,0,6,23,51,85,2,111,149,5,0,6,2,111,155,5,0,6,123,1,3,0,4,2,111,143,5,0,6,89,19,4,2,111,148,5,0,6,37,17,4,49,34,2,2,111,143,5,0,6,23,88,111,150,5,0,6,2,111,155,5,0,6,123,1,3,0,4,2,111,143,5,0,6,89,19,4,17,4,48,10,17,4,24,48,5,221,151,0,0,0,6,26,49,11,114,40,44,0,112,115,34,0,0,10,122,6,23,89,11,3,22,40,129,5,0,6,12,2,111,146,5,0,6,22,254,1,44,9,7,24,254,2,22,254,1,43,1,22,13,7,24,48,56,2,2,111,143,5,0,6,7,88,111,150,5,0,6,2,111,155,5,0,6,123,1,3,0,4,2,111,143,5,0,6,89,25,50,21,22,13,2,2,111,143,5,0,6,8,111,30,0,0,10,88,111,150,5,0,6,9,44,22,2,111,151,5,0,6,2,37,111,152,5,0,6,7,89,111,153,5,0,6,222,17,2,8,111,141,5,0,6,222,8,2,22,111,144,5,0,6,220,42,1,16,0,0,2,0,0,0,247,247,0,8,0,0,0,0,198,2,31,32,50,14,2,31,63,48,9,3,2,111,23,0,0,10,38,42,2,31,64,50,18,2,31,94,48,13,3,2,31,64,89,209,111,23,0,0,10,38,42,2,40,179,5,0,6,42,0,0,19,48,4,0,183,0,0,0,94,1,0,17,2,111,120,0,0,10,3,89,37,45,11,114,88,44,0,112,115,34,0,0,10,122,2,3,111,149,0,0,10,10,37,24,47,3,22,43,9,2,3,23,88,111,149,0,0,10,11,37,25,47,3,22,43,9,2,3,24,88,111,149,0,0,10,12,37,26,47,3,22,43,9,2,3,25,88,111,149,0,0,10,13,6,31,18,98,7,31,12,98,88,8,28,98,88,9,88,37,31,16,99,32,255,0,0,0,95,209,19,4,37,30,99,32,255,0,0,0,95,209,19,5,32,255,0,0,0,95,209,19,6,25,115,22,0,0,10,19,7,17,7,17,4,111,23,0,0,10,38,37,24,50,10,17,7,17,5,111,23,0,0,10,38,25,50,10,17,7,17,6,111,23,0,0,10,38,17,7,111,25,0,0,10,42,66,114,13,19,0,112,40,146,0,0,10,128,229,2,0,4,42,19,48,3,0,156,0,0,0,95,1,0,17,2,40,20,0,0,10,126,229,2,0,4,3,111,183,0,0,10,10,6,142,105,115,22,0,0,10,11,6,142,105,12,22,13,43,73,6,9,145,32,255,0,0,0,95,209,19,4,17,4,31,63,51,42,3,9,111,27,0,0,10,31,63,46,31,114,152,44,0,112,126,229,2,0,4,111,239,0,0,10,114,226,44,0,112,40,246,0,0,10,115,31,0,0,10,122,7,17,4,111,23,0,0,10,38,9,23,88,13,9,8,50,179,2,7,111,25,0,0,10,125,220,2,0,4,2,22,125,221,2,0,4,2,3,111,30,0,0,10,115,22,0,0,10,125,224,2,0,4,2,21,125,226,2,0,4,42,34,2,3,125,221,2,0,4,42,62,2,3,125,222,2,0,4,2,4,125,223,2,0,4,42,34,2,3,125,228,2,0,4,42,74,2,123,220,2,0,4,2,123,225,2,0,4,111,27,0,0,10,42,58,2,123,224,2,0,4,3,111,119,0,0,10,38,42,58,2,123,224,2,0,4,3,111,23,0,0,10,38,42,50,2,123,224,2,0,4,111,120,0,0,10,42,34,2,3,125,226,2,0,4,42,34,2,21,125,226,2,0,4,42,62,2,123,225,2,0,4,2,40,147,5,0,6,254,4,42,78,2,123,220,2,0,4,111,30,0,0,10,2,123,228,2,0,4,89,42,58,2,40,147,5,0,6,2,123,225,2,0,4,89,42,54,2,2,40,143,5,0,6,40,150,5,0,6,42,218,2,123,227,2,0,4,44,14,3,2,123,227,2,0,4,123,1,3,0,4,49,31,2,3,2,123,221,2,0,4,2,123,222,2,0,4,2,123,223,2,0,4,23,40,187,5,0,6,125,227,2,0,4,42,34,2,20,125,227,2,0,4,42,30,2,123,225,2,0,4,42,34,2,3,125,225,2,0,4,42,30,2,123,224,2,0,4,42,30,2,123,227,2,0,4,42,30,2,123,226,2,0,4,42,30,2,123,220,2,0,4,42,30,2,123,230,2,0,4,42,34,2,3,125,230,2,0,4,42,0,0,0,19,48,6,0,205,1,0,0,2,0,0,17,31,16,141,72,0,0,1,37,208,246,4,0,4,40,153,0,0,10,128,231,2,0,4,31,16,141,55,0,0,27,37,22,27,141,72,0,0,1,37,208,76,4,0,4,40,153,0,0,10,162,37,23,29,141,72,0,0,1,37,208,142,5,0,4,40,153,0,0,10,162,37,24,31,10,141,72,0,0,1,37,208,47,5,0,4,40,153,0,0,10,162,37,25,31,11,141,72,0,0,1,37,208,86,4,0,4,40,153,0,0,10,162,37,26,31,12,141,72,0,0,1,37,208,242,4,0,4,40,153,0,0,10,162,37,27,31,14,141,72,0,0,1,37,208,197,4,0,4,40,153,0,0,10,162,37,28,31,18,141,72,0,0,1,37,208,222,5,0,4,40,153,0,0,10,162,37,29,31,20,141,72,0,0,1,37,208,149,5,0,4,40,153,0,0,10,162,37,30,31,24,141,72,0,0,1,37,208,175,5,0,4,40,153,0,0,10,162,37,31,9,31,28,141,72,0,0,1,37,208,148,4,0,4,40,153,0,0,10,162,37,31,10,31,36,141,72,0,0,1,37,208,118,4,0,4,40,153,0,0,10,162,37,31,11,31,42,141,72,0,0,1,37,208,77,4,0,4,40,153,0,0,10,162,37,31,12,31,48,141,72,0,0,1,37,208,140,5,0,4,40,153,0,0,10,162,37,31,13,31,56,141,72,0,0,1,37,208,119,4,0,4,40,153,0,0,10,162,37,31,14,31,62,141,72,0,0,1,37,208,32,5,0,4,40,153,0,0,10,162,37,31,15,31,68,141,72,0,0,1,37,208,118,5,0,4,40,153,0,0,10,162,128,232,2,0,4,32,0,1,0,0,141,72,0,0,1,128,234,2,0,4,32,255,0,0,0,141,72,0,0,1,128,235,2,0,4,23,10,22,11,43,40,126,235,2,0,4,7,6,158,126,234,2,0,4,6,7,158,6,23,98,10,6,32,0,1,0,0,50,8,6,32,45,1,0,0,97,10,7,23,88,11,7,32,255,0,0,0,50,208,42,0,0,0,19,48,6,0,93,1,0,0,96,1,0,17,2,111,30,0,0,10,3,123,1,3,0,4,46,11,114,248,44,0,112,115,31,0,0,10,122,3,123,1,3,0,4,3,123,2,3,0,4,88,115,22,0,0,10,10,6,2,111,119,0,0,10,38,3,111,195,5,0,6,11,7,23,51,26,2,3,123,2,3,0,4,40,162,5,0,6,12,6,8,111,119,0,0,10,38,56,253,0,0,0,6,6,111,103,1,0,10,111,121,0,0,10,7,141,72,0,0,1,13,7,141,72,0,0,1,19,4,7,141,72,0,0,1,19,5,22,19,6,43,63,9,17,6,3,17,6,23,88,111,196,5,0,6,158,17,4,17,6,3,17,6,23,88,111,197,5,0,6,158,17,5,17,6,22,158,17,6,22,49,17,17,5,17,6,17,5,17,6,23,89,148,9,17,6,148,88,158,17,6,23,88,19,6,17,6,7,50,188,22,19,7,56,129,0,0,0,9,17,7,148,115,22,0,0,10,19,8,17,7,19,11,43,22,17,8,2,17,11,111,27,0,0,10,111,23,0,0,10,38,17,11,7,88,19,11,17,11,3,123,1,3,0,4,50,224,17,8,111,25,0,0,10,17,4,17,7,148,40,162,5,0,6,19,9,22,19,10,17,7,19,12,43,35,6,3,123,1,3,0,4,17,12,88,17,9,17,10,37,23,88,19,10,111,27,0,0,10,111,245,0,0,10,17,12,7,88,19,12,17,12,17,4,17,7,148,7,90,50,210,17,7,23,88,19,7,17,7,7,63,119,255,255,255,6,111,25,0,0,10,42,62,2,22,2,111,30,0,0,10,3,40,163,5,0,6,42,0,0,0,19,48,8,0,60,1,0,0,97,1,0,17,21,10,22,19,4,43,22,126,231,2,0,4,17,4,148,5,51,5,17,4,10,43,17,17,4,23,88,19,4,17,4,126,231,2,0,4,142,105,50,223,6,22,47,22,114,110,45,0,112,5,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,126,232,2,0,4,6,154,11,5,141,64,0,0,1,12,22,19,5,43,11,8,17,5,22,157,17,5,23,88,19,5,17,5,5,50,240,3,19,6,56,154,0,0,0,8,5,23,89,147,2,17,6,111,27,0,0,10,97,19,7,5,23,89,19,8,43,71,17,7,44,51,7,17,8,148,44,45,8,17,8,8,17,8,23,89,147,126,235,2,0,4,126,234,2,0,4,17,7,148,126,234,2,0,4,7,17,8,148,148,88,32,255,0,0,0,93,148,97,209,157,43,10,8,17,8,8,17,8,23,89,147,157,17,8,23,89,19,8,17,8,22,48,180,17,7,44,41,7,22,148,44,36,8,22,126,235,2,0,4,126,234,2,0,4,17,7,148,126,234,2,0,4,7,22,148,148,88,32,255,0,0,0,93,148,209,157,43,4,8,22,22,157,17,6,23,88,19,6,17,6,3,4,88,63,92,255,255,255,5,141,64,0,0,1,13,22,19,9,43,18,9,17,9,8,5,17,9,89,23,89,147,157,17,9,23,88,19,9,17,9,5,50,233,9,115,123,0,0,10,42,19,48,2,0,40,0,0,0,2,0,0,17,32,149,0,0,0,3,90,32,253,0,0,0,93,23,88,10,2,6,88,11,7,32,254,0,0,0,49,9,7,32,254,0,0,0,89,43,1,7,209,42,46,2,22,20,20,22,40,166,5,0,6,42,19,48,4,0,254,1,0,0,98,1,0,17,28,141,189,0,0,2,37,22,115,95,5,0,6,162,37,23,115,107,5,0,6,162,37,24,115,202,5,0,6,162,37,25,115,207,5,0,6,162,37,26,115,130,5,0,6,162,37,27,115,99,5,0,6,162,10,2,115,135,5,0,6,11,7,3,111,136,5,0,6,7,4,5,111,137,5,0,6,2,114,224,45,0,112,111,89,1,0,10,44,56,2,114,240,45,0,112,111,104,1,0,10,44,43,7,32,236,0,0,0,111,142,5,0,6,7,24,111,138,5,0,6,7,37,111,152,5,0,6,114,224,45,0,112,40,30,0,0,10,88,111,153,5,0,6,43,67,2,114,246,45,0,112,111,89,1,0,10,44,54,2,114,240,45,0,112,111,104,1,0,10,44,41,7,32,237,0,0,0,111,142,5,0,6,7,24,111,138,5,0,6,7,37,111,152,5,0,6,114,246,45,0,112,40,30,0,0,10,88,111,153,5,0,6,14,4,12,8,69,6,0,0,0,120,0,0,0,15,0,0,0,41,0,0,0,28,0,0,0,54,0,0,0,2,0,0,0,43,65,7,32,231,0,0,0,111,142,5,0,6,43,105,7,32,230,0,0,0,111,142,5,0,6,43,92,7,32,238,0,0,0,111,142,5,0,6,43,79,7,32,239,0,0,0,111,142,5,0,6,43,66,7,32,240,0,0,0,111,142,5,0,6,43,53,114,56,43,0,112,8,140,72,0,0,1,40,91,0,0,10,115,34,0,0,10,122,6,8,154,7,111,133,5,0,6,7,111,156,5,0,6,22,50,13,7,111,156,5,0,6,12,7,111,145,5,0,6,7,111,146,5,0,6,45,217,7,111,154,5,0,6,111,120,0,0,10,7,111,149,5,0,6,7,111,155,5,0,6,123,1,3,0,4,13,9,47,22,8,44,19,8,27,46,15,8,26,46,11,7,32,254,0,0,0,111,142,5,0,6,7,111,154,5,0,6,19,4,17,4,111,120,0,0,10,9,47,42,17,4,32,129,0,0,0,111,23,0,0,10,38,43,27,17,4,32,129,0,0,0,17,4,111,120,0,0,10,23,88,40,164,5,0,6,111,23,0,0,10,38,17,4,111,120,0,0,10,9,50,219,7,111,154,5,0,6,111,25,0,0,10,42,0,0,19,48,4,0,154,3,0,0,99,1,0,17,3,2,111,30,0,0,10,50,2,4,42,4,45,20,28,141,80,0,0,1,37,208,48,5,0,4,40,153,0,0,10,10,43,26,28,141,80,0,0,1,37,208,70,5,0,4,40,153,0,0,10,10,6,4,34,0,0,0,0,160,22,11,3,7,88,2,111,30,0,0,10,51,110,32,255,255,255,127,13,28,141,74,0,0,1,19,4,28,141,72,0,0,1,19,5,6,17,5,9,17,4,40,168,5,0,6,13,17,4,40,169,5,0,6,19,6,17,5,22,148,9,51,2,22,42,17,6,23,51,9,17,4,27,145,22,49,2,27,42,17,6,23,51,9,17,4,26,145,22,49,2,26,42,17,6,23,51,9,17,4,24,145,22,49,2,24,42,17,6,23,51,9,17,4,25,145,22,49,2,25,42,23,42,2,3,7,88,111,27,0,0,10,12,7,23,88,11,8,40,170,5,0,6,44,18,6,22,143,80,0,0,1,37,78,34,0,0,0,63,88,86,43,68,8,40,171,5,0,6,44,31,6,22,6,22,152,108,40,105,1,0,10,107,160,6,22,143,80,0,0,1,37,78,34,0,0,0,64,88,86,43,29,6,22,6,22,152,108,40,105,1,0,10,107,160,6,22,143,80,0,0,1,37,78,34,0,0,128,63,88,86,8,40,172,5,0,6,44,18,6,23,143,80,0,0,1,37,78,34,171,170,42,63,88,86,43,42,8,40,171,5,0,6,44,18,6,23,143,80,0,0,1,37,78,34,171,170,42,64,88,86,43,16,6,23,143,80,0,0,1,37,78,34,171,170,170,63,88,86,8,40,173,5,0,6,44,18,6,24,143,80,0,0,1,37,78,34,171,170,42,63,88,86,43,42,8,40,171,5,0,6,44,18,6,24,143,80,0,0,1,37,78,34,171,170,42,64,88,86,43,16,6,24,143,80,0,0,1,37,78,34,171,170,170,63,88,86,8,40,174,5,0,6,44,18,6,25,143,80,0,0,1,37,78,34,171,170,42,63,88,86,43,42,8,40,171,5,0,6,44,18,6,25,143,80,0,0,1,37,78,34,171,170,138,64,88,86,43,16,6,25,143,80,0,0,1,37,78,34,85,85,85,64,88,86,8,40,176,5,0,6,44,18,6,26,143,80,0,0,1,37,78,34,0,0,64,63,88,86,43,42,8,40,171,5,0,6,44,18,6,26,143,80,0,0,1,37,78,34,0,0,136,64,88,86,43,16,6,26,143,80,0,0,1,37,78,34,0,0,80,64,88,86,8,40,177,5,0,6,44,18,6,27,143,80,0,0,1,37,78,34,0,0,128,64,88,86,43,16,6,27,143,80,0,0,1,37,78,34,0,0,128,63,88,86,7,26,63,218,253,255,255,28,141,72,0,0,1,19,7,28,141,74,0,0,1,19,8,6,17,7,32,255,255,255,127,17,8,40,168,5,0,6,38,17,8,40,169,5,0,6,19,9,17,7,22,148,17,7,27,148,47,42,17,7,22,148,17,7,23,148,47,32,17,7,22,148,17,7,24,148,47,22,17,7,22,148,17,7,25,148,47,12,17,7,22,148,17,7,26,148,47,2,22,42,17,7,27,148,17,7,22,148,50,21,17,8,23,145,17,8,24,145,88,17,8,25,145,88,17,8,26,145,88,45,2,27,42,17,9,23,51,9,17,8,26,145,22,49,2,26,42,17,9,23,51,9,17,8,24,145,22,49,2,24,42,17,9,23,51,9,17,8,25,145,22,49,2,25,42,17,7,23,148,23,88,17,7,22,148,60,35,253,255,255,17,7,23,148,23,88,17,7,27,148,60,20,253,255,255,17,7,23,148,23,88,17,7,26,148,60,5,253,255,255,17,7,23,148,23,88,17,7,24,148,60,246,252,255,255,17,7,23,148,17,7,25,148,47,2,23,42,17,7,23,148,17,7,25,148,64,221,252,255,255,3,7,88,23,88,19,10,43,36,2,17,10,111,27,0,0,10,19,11,17,11,40,175,5,0,6,44,2,25,42,17,11,40,174,5,0,6,44,16,17,10,23,88,19,10,17,10,2,111,30,0,0,10,50,210,23,42,0,0,19,48,4,0,69,0,0,0,2,0,0,17,5,22,40,8,0,0,43,22,10,43,52,3,6,2,6,152,108,40,105,1,0,10,105,158,3,6,148,11,4,7,49,10,7,16,2,5,22,40,8,0,0,43,4,7,51,13,5,6,143,74,0,0,1,37,71,23,88,210,82,6,23,88,10,6,28,50,200,4,42,0,0,0,19,48,3,0,22,0,0,0,2,0,0,17,22,10,22,11,43,10,6,2,7,145,88,10,7,23,88,11,7,28,50,242,6,42,90,2,32,128,0,0,0,50,12,2,32,255,0,0,0,254,2,22,254,1,42,22,42,134,2,31,32,46,26,2,31,48,50,5,2,31,57,49,16,2,31,65,50,9,2,31,90,254,2,22,254,1,42,22,42,23,42,134,2,31,32,46,26,2,31,48,50,5,2,31,57,49,16,2,31,97,50,5,2,31,122,49,6,2,31,29,254,1,42,23,42,166,2,40,175,5,0,6,45,31,2,31,32,46,26,2,31,48,50,5,2,31,57,49,16,2,31,65,50,9,2,31,90,254,2,22,254,1,42,22,42,23,42,74,2,31,13,46,11,2,31,42,46,6,2,31,62,254,1,42,23,42,66,2,31,32,50,9,2,31,94,254,2,22,254,1,42,22,42,0,19,48,2,0,59,0,0,0,198,0,0,17,22,10,2,111,30,0,0,10,11,3,12,8,7,47,42,2,8,111,27,0,0,10,13,43,20,6,23,88,10,8,23,88,12,8,7,47,8,2,8,111,27,0,0,10,13,9,40,170,5,0,6,44,4,8,7,50,224,6,42,162,114,6,46,0,112,24,141,13,0,0,1,37,22,2,140,64,0,0,1,162,37,23,2,140,72,0,0,1,162,40,106,1,0,10,115,31,0,0,10,122,30,2,128,255,2,0,4,42,19,48,9,0,18,0,0,0,0,0,0,0,2,3,4,5,14,4,14,5,14,6,4,5,40,182,5,0,6,42,0,0,19,48,2,0,68,0,0,0,0,0,0,0,2,40,20,0,0,10,2,3,125,0,3,0,4,2,4,125,1,3,0,4,2,5,125,2,3,0,4,2,14,4,125,3,3,0,4,2,14,5,125,4,3,0,4,2,14,6,125,5,3,0,4,2,14,7,125,6,3,0,4,2,14,8,125,7,3,0,4,42,38,2,22,23,40,186,5,0,6,42,38,2,3,23,40,186,5,0,6,42,19,48,3,0,17,0,0,0,100,1,0,17,3,45,3,23,43,1,22,10,2,6,4,40,186,5,0,6,42,46,2,3,20,20,4,40,187,5,0,6,42,0,0,0,19,48,2,0,149,0,0,0,101,1,0,17,126,255,2,0,4,10,22,11,43,105,6,7,154,12,3,23,51,8,8,123,0,3,0,4,45,85,3,24,51,8,8,123,0,3,0,4,44,73,4,44,28,8,111,192,5,0,6,4,111,185,0,0,6,50,56,8,111,193,5,0,6,4,111,186,0,0,6,50,42,5,44,28,8,111,192,5,0,6,5,111,185,0,0,6,48,25,8,111,193,5,0,6,5,111,186,0,0,6,48,11,2,8,123,1,3,0,4,48,2,8,42,7,23,88,11,7,6,142,105,50,145,14,4,44,22,114,72,46,0,112,2,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,20,42,0,0,0,19,48,2,0,62,0,0,0,1,0,0,17,2,123,5,3,0,4,10,6,23,89,69,4,0,0,0,12,0,0,0,14,0,0,0,20,0,0,0,14,0,0,0,6,31,16,46,11,6,31,36,46,8,43,8,23,42,24,42,26,42,28,42,114,223,46,0,112,115,34,0,0,10,122,0,0,19,48,2,0,54,0,0,0,1,0,0,17,2,123,5,3,0,4,10,6,26,48,12,6,23,89,23,54,18,6,26,46,16,43,20,6,31,16,46,11,6,31,36,46,8,43,8,23,42,24,42,26,42,28,42,114,223,46,0,112,115,34,0,0,10,122,58,2,40,188,5,0,6,2,123,3,3,0,4,90,42,58,2,40,189,5,0,6,2,123,4,3,0,4,90,42,66,2,40,190,5,0,6,2,40,188,5,0,6,24,90,88,42,66,2,40,191,5,0,6,2,40,189,5,0,6,24,90,88,42,58,2,123,1,3,0,4,2,123,2,3,0,4,88,42,58,2,123,1,3,0,4,2,123,6,3,0,4,91,42,30,2,123,6,3,0,4,42,30,2,123,7,3,0,4,42,19,48,3,0,202,0,0,0,0,0,0,0,115,115,0,0,10,37,2,123,0,3,0,4,45,7,114,51,47,0,112,43,5,114,81,47,0,112,111,119,0,0,10,38,37,114,121,47,0,112,111,119,0,0,10,2,123,3,3,0,4,111,191,0,0,10,31,120,111,23,0,0,10,2,123,4,3,0,4,111,191,0,0,10,38,37,114,149,47,0,112,111,119,0,0,10,2,40,192,5,0,6,111,191,0,0,10,31,120,111,23,0,0,10,2,40,193,5,0,6,111,191,0,0,10,38,37,114,179,47,0,112,111,119,0,0,10,2,40,190,5,0,6,111,191,0,0,10,31,120,111,23,0,0,10,2,40,191,5,0,6,111,191,0,0,10,38,37,114,219,47,0,112,111,119,0,0,10,2,123,1,3,0,4,111,191,0,0,10,31,43,111,23,0,0,10,2,123,2,3,0,4,111,191,0,0,10,38,111,25,0,0,10,42,0,0,19,48,11,0,167,2,0,0,0,0,0,0,31,30,141,193,0,0,2,37,22,22,25,27,30,30,23,115,181,5,0,6,162,37,23,22,27,29,31,10,31,10,23,115,181,5,0,6,162,37,24,23,27,29,31,16,28,23,115,181,5,0,6,162,37,25,22,30,31,10,31,12,31,12,23,115,181,5,0,6,162,37,26,23,31,10,31,11,31,14,28,24,115,181,5,0,6,162,37,27,22,31,12,31,12,31,14,31,14,23,115,181,5,0,6,162,37,28,23,31,16,31,14,31,24,31,10,23,115,181,5,0,6,162,37,29,22,31,18,31,14,31,16,31,16,23,115,181,5,0,6,162,37,30,22,31,22,31,18,31,18,31,18,23,115,181,5,0,6,162,37,31,9,23,31,22,31,18,31,16,31,10,24,115,181,5,0,6,162,37,31,10,22,31,30,31,20,31,20,31,20,23,115,181,5,0,6,162,37,31,11,23,31,32,31,24,31,16,31,14,24,115,181,5,0,6,162,37,31,12,22,31,36,31,24,31,22,31,22,23,115,181,5,0,6,162,37,31,13,22,31,44,31,28,31,24,31,24,23,115,181,5,0,6,162,37,31,14,23,31,49,31,28,31,22,31,14,24,115,181,5,0,6,162,37,31,15,22,31,62,31,36,31,14,31,14,26,115,181,5,0,6,162,37,31,16,22,31,86,31,42,31,16,31,16,26,115,181,5,0,6,162,37,31,17,22,31,114,31,48,31,18,31,18,26,115,181,5,0,6,162,37,31,18,22,32,144,0,0,0,31,56,31,20,31,20,26,115,181,5,0,6,162,37,31,19,22,32,174,0,0,0,31,68,31,22,31,22,26,115,181,5,0,6,162,37,31,20,22,32,204,0,0,0,31,84,31,24,31,24,26,31,102,31,42,115,182,5,0,6,162,37,31,21,22,32,24,1,0,0,31,112,31,14,31,14,31,16,32,140,0,0,0,31,56,115,182,5,0,6,162,37,31,22,22,32,112,1,0,0,32,144,0,0,0,31,16,31,16,31,16,31,92,31,36,115,182,5,0,6,162,37,31,23,22,32,200,1,0,0,32,192,0,0,0,31,18,31,18,31,16,31,114,31,48,115,182,5,0,6,162,37,31,24,22,32,64,2,0,0,32,224,0,0,0,31,20,31,20,31,16,32,144,0,0,0,31,56,115,182,5,0,6,162,37,31,25,22,32,184,2,0,0,32,16,1,0,0,31,22,31,22,31,16,32,174,0,0,0,31,68,115,182,5,0,6,162,37,31,26,22,32,48,3,0,0,32,80,1,0,0,31,24,31,24,31,16,32,136,0,0,0,31,56,115,182,5,0,6,162,37,31,27,22,32,26,4,0,0,32,152,1,0,0,31,18,31,18,31,36,32,175,0,0,0,31,68,115,182,5,0,6,162,37,31,28,22,32,24,5,0,0,32,240,1,0,0,31,20,31,20,31,36,32,163,0,0,0,31,62,115,182,5,0,6,162,37,31,29,115,108,5,0,6,162,128,254,2,0,4,126,254,2,0,4,128,255,2,0,4,42,10,24,42,0,0,19,48,4,0,83,1,0,0,0,0,0,0,3,31,32,51,10,4,25,111,23,0,0,10,38,23,42,3,31,48,50,21,3,31,57,48,16,4,3,31,48,89,26,88,209,111,23,0,0,10,38,23,42,3,31,97,50,22,3,31,122,48,17,4,3,31,97,89,31,14,88,209,111,23,0,0,10,38,23,42,3,22,50,23,3,31,31,48,18,4,22,111,23,0,0,10,38,4,3,111,23,0,0,10,38,24,42,3,31,33,50,27,3,31,47,48,22,4,23,111,23,0,0,10,38,4,3,31,33,89,209,111,23,0,0,10,38,24,42,3,31,58,50,30,3,31,64,48,25,4,23,111,23,0,0,10,38,4,3,31,58,89,31,15,88,209,111,23,0,0,10,38,24,42,3,31,91,50,30,3,31,95,48,25,4,23,111,23,0,0,10,38,4,3,31,91,89,31,22,88,209,111,23,0,0,10,38,24,42,3,31,96,51,22,4,24,111,23,0,0,10,38,4,3,31,96,89,209,111,23,0,0,10,38,24,42,3,31,65,50,29,3,31,90,48,24,4,24,111,23,0,0,10,38,4,3,31,65,89,23,88,209,111,23,0,0,10,38,24,42,3,31,123,50,30,3,31,127,48,25,4,24,111,23,0,0,10,38,4,3,31,123,89,31,27,88,209,111,23,0,0,10,38,24,42,3,32,128,0,0,0,50,30,4,114,250,43,0,112,111,119,0,0,10,38,24,2,3,32,128,0,0,0,89,209,4,111,105,5,0,6,88,42,3,40,179,5,0,6,21,42,30,2,40,107,5,0,6,42,10,25,42,0,0,19,48,3,0,111,0,0,0,102,1,0,17,115,115,0,0,10,10,2,111,100,5,0,6,11,43,79,3,111,139,5,0,6,12,3,37,111,152,5,0,6,13,9,23,88,111,153,5,0,6,2,8,6,111,105,5,0,6,38,6,111,120,0,0,10,25,93,45,37,3,6,40,103,5,0,6,3,111,157,5,0,6,3,111,152,5,0,6,7,40,167,5,0,6,7,46,9,3,22,111,144,5,0,6,43,8,3,111,146,5,0,6,45,169,2,3,6,111,104,5,0,6,42,0,19,48,3,0,130,0,0,0,0,0,0,0,3,31,32,53,12,3,31,13,46,19,3,31,32,46,44,43,52,3,31,42,46,17,3,31,62,46,22,43,40,4,22,111,23,0,0,10,38,43,89,4,23,111,23,0,0,10,38,43,79,4,24,111,23,0,0,10,38,43,69,4,25,111,23,0,0,10,38,43,59,3,31,48,50,21,3,31,57,48,16,4,3,31,48,89,26,88,209,111,23,0,0,10,38,43,33,3,31,65,50,22,3,31,90,48,17,4,3,31,65,89,31,14,88,209,111,23,0,0,10,38,43,6,3,40,179,5,0,6,23,42,0,0,19,48,3,0,96,0,0,0,2,0,0,17,3,111,149,5,0,6,3,111,155,5,0,6,123,1,3,0,4,3,111,143,5,0,6,89,10,4,111,120,0,0,10,11,3,37,111,152,5,0,6,7,89,111,153,5,0,6,3,111,148,5,0,6,23,48,13,6,23,48,9,3,111,148,5,0,6,6,46,11,3,32,254,0,0,0,111,142,5,0,6,3,111,156,5,0,6,22,47,7,3,22,111,144,5,0,6,42,19,48,3,0,98,0,0,0,1,0,0,17,2,40,20,0,0,10,3,111,32,6,0,6,10,6,30,50,13,6,32,144,0,0,0,48,5,6,23,95,44,1,42,2,3,40,210,5,0,6,125,14,3,0,4,2,123,14,3,0,4,44,46,2,2,3,40,218,5,0,6,125,12,3,0,4,2,2,123,12,3,0,4,111,31,6,0,6,2,123,12,3,0,4,111,32,6,0,6,115,36,6,0,6,125,13,3,0,4,42,30,2,123,14,3,0,4,42,0,0,19,48,2,0,20,0,0,0,1,0,0,17,2,111,32,6,0,6,2,111,31,6,0,6,10,6,40,245,5,0,6,42,19,48,7,0,187,1,0,0,103,1,0,17,2,123,14,3,0,4,111,243,5,0,6,141,74,0,0,1,10,22,11,26,12,22,13,2,123,12,3,0,4,111,32,6,0,6,19,4,2,123,12,3,0,4,111,31,6,0,6,19,5,22,19,6,22,19,7,22,19,8,22,19,9,8,17,4,51,41,9,45,38,17,6,45,34,6,7,37,23,88,11,2,17,4,17,5,40,214,5,0,6,210,156,8,24,89,12,9,24,88,13,23,19,6,56,46,1,0,0,8,17,4,24,89,51,47,9,45,44,17,5,25,95,44,38,17,7,45,34,6,7,37,23,88,11,2,17,4,17,5,40,215,5,0,6,210,156,8,24,89,12,9,24,88,13,23,19,7,56,248,0,0,0,8,17,4,26,88,51,48,9,24,51,44,17,5,29,95,45,38,17,8,45,34,6,7,37,23,88,11,2,17,4,17,5,40,216,5,0,6,210,156,8,24,89,12,9,24,88,13,23,19,8,56,193,0,0,0,8,17,4,24,89,51,48,9,45,45,17,5,29,95,26,51,38,17,9,45,34,6,7,37,23,88,11,2,17,4,17,5,40,217,5,0,6,210,156,8,24,89,12,9,24,88,13,23,19,9,56,138,0,0,0,8,17,4,47,39,9,22,50,35,2,123,13,3,0,4,9,8,111,41,6,0,6,45,20,6,7,37,23,88,11,2,8,9,17,4,17,5,40,213,5,0,6,210,156,8,24,89,12,9,24,88,13,8,22,50,5,9,17,5,50,195,8,23,88,12,9,25,88,13,8,22,50,40,9,17,5,47,35,2,123,13,3,0,4,9,8,111,41,6,0,6,45,20,6,7,37,23,88,11,2,8,9,17,4,17,5,40,213,5,0,6,210,156,8,24,88,12,9,24,89,13,8,17,4,47,4,9,22,47,195,8,25,88,12,9,23,88,13,8,17,4,63,156,254,255,255,9,17,5,63,148,254,255,255,7,2,123,14,3,0,4,111,243,5,0,6,46,2,20,42,6,42,0,19,48,4,0,70,0,0,0,0,0,0,0,3,22,47,16,3,5,88,16,1,4,26,5,26,88,29,95,89,88,16,2,4,22,47,18,4,14,4,88,16,2,3,26,14,4,26,88,29,95,89,88,16,1,2,123,13,3,0,4,4,3,23,111,42,6,0,6,2,123,12,3,0,4,4,3,111,41,6,0,6,42,0,0,19,48,5,0,190,0,0,0,1,0,0,17,22,10,2,3,24,89,4,24,89,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,24,89,4,23,89,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,4,24,89,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,4,23,89,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,4,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,4,24,89,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,4,23,89,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,4,5,14,4,40,212,5,0,6,44,4,6,23,96,10,6,42,0,0,19,48,5,0,176,0,0,0,1,0,0,17,22,10,2,3,23,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,23,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,24,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,24,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,23,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,24,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,25,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,42,19,48,5,0,176,0,0,0,1,0,0,17,22,10,2,3,25,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,24,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,26,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,25,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,24,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,23,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,42,19,48,5,0,178,0,0,0,1,0,0,17,22,10,2,3,23,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,25,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,24,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,23,4,25,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,23,4,24,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,23,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,42,0,0,19,48,5,0,176,0,0,0,1,0,0,17,22,10,2,3,25,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,24,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,3,23,89,22,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,24,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,22,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,23,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,24,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,23,98,10,2,25,4,23,89,3,4,40,212,5,0,6,44,4,6,23,96,10,6,42,19,48,4,0,243,0,0,0,104,1,0,17,2,123,14,3,0,4,111,239,5,0,6,10,2,123,14,3,0,4,111,240,5,0,6,3,111,32,6,0,6,6,46,11,114,245,47,0,112,115,31,0,0,10,122,2,123,14,3,0,4,111,241,5,0,6,11,2,123,14,3,0,4,111,242,5,0,6,12,6,7,91,13,8,91,19,4,9,7,90,19,5,17,4,8,90,17,5,115,36,6,0,6,19,6,22,19,7,56,131,0,0,0,17,7,7,90,19,8,22,19,9,43,108,17,9,8,90,19,10,22,19,11,43,86,17,7,7,24,88,90,23,88,17,11,88,19,12,17,8,17,11,88,19,13,22,19,14,43,50,17,9,8,24,88,90,23,88,17,14,88,19,15,3,17,15,17,12,111,41,6,0,6,44,19,17,10,17,14,88,19,16,17,6,17,16,17,13,23,111,42,6,0,6,17,14,23,88,19,14,17,14,8,50,201,17,11,23,88,19,11,17,11,7,50,165,17,9,23,88,19,9,17,9,17,4,50,142,17,7,23,88,19,7,17,7,9,63,117,255,255,255,17,6,42,86,2,40,20,0,0,10,2,3,125,15,3,0,4,2,4,125,16,3,0,4,42,0,0,0,19,48,6,0,168,1,0,0,105,1,0,17,3,111,244,5,0,6,10,22,11,6,111,199,8,0,6,12,8,19,11,22,19,12,43,23,17,11,17,12,154,19,13,7,17,13,111,201,8,0,6,88,11,17,12,23,88,19,12,17,12,17,11,142,105,50,225,7,141,198,0,0,2,13,22,19,4,8,19,11,22,19,12,43,78,17,11,17,12,154,19,14,22,19,15,43,49,17,14,111,202,8,0,6,19,16,6,111,198,8,0,6,17,16,88,19,17,9,17,4,37,23,88,19,4,17,16,17,17,141,74,0,0,1,115,219,5,0,6,162,17,15,23,88,19,15,17,15,17,14,111,201,8,0,6,50,196,17,12,23,88,19,12,17,12,17,11,142,105,50,170,9,22,154,123,16,3,0,4,142,105,6,111,198,8,0,6,89,19,5,17,5,23,89,19,6,22,19,7,22,19,18,43,44,22,19,19,43,27,9,17,19,154,123,16,3,0,4,17,18,2,17,7,37,23,88,19,7,145,156,17,19,23,88,19,19,17,19,17,4,50,223,17,18,23,88,19,18,17,18,17,6,50,206,3,111,238,5,0,6,31,24,254,1,19,8,17,8,45,4,17,4,43,1,30,19,9,22,19,20,43,29,9,17,20,154,123,16,3,0,4,17,5,23,89,2,17,7,37,23,88,19,7,145,156,17,20,23,88,19,20,17,20,17,9,50,221,9,22,154,123,16,3,0,4,142,105,19,10,17,5,19,21,43,80,22,19,22,43,63,17,8,45,4,17,22,43,7,17,22,30,88,17,4,93,19,23,17,8,44,5,17,23,29,48,4,17,21,43,4,17,21,23,89,19,24,9,17,23,154,123,16,3,0,4,17,24,2,17,7,37,23,88,19,7,145,156,17,22,23,88,19,22,17,22,17,4,50,187,17,21,23,88,19,21,17,21,17,10,50,170,17,7,2,142,105,46,6,115,74,0,0,10,122,9,42,30,2,123,15,3,0,4,42,30,2,123,16,3,0,4,42,19,48,4,0,204,0,0,0,106,1,0,17,2,115,61,6,0,6,10,31,100,115,22,0,0,10,11,22,115,22,0,0,10,12,23,115,142,0,0,10,13,23,19,4,17,4,23,51,14,6,7,8,18,4,40,224,5,0,6,45,94,20,42,17,4,24,89,69,5,0,0,0,2,0,0,0,13,0,0,0,24,0,0,0,35,0,0,0,46,0,0,0,43,56,6,7,40,225,5,0,6,45,49,20,42,6,7,40,226,5,0,6,45,38,20,42,6,7,40,227,5,0,6,45,27,20,42,6,7,40,229,5,0,6,45,16,20,42,6,7,9,40,230,5,0,6,45,4,20,42,20,42,23,19,4,17,4,44,9,6,111,65,6,0,6,22,48,132,8,111,120,0,0,10,22,49,13,7,8,111,25,0,0,10,111,119,0,0,10,38,2,7,111,25,0,0,10,9,111,145,0,0,10,44,3,9,43,1,20,20,115,94,6,0,6,42,19,48,3,0,52,1,0,0,107,1,0,17,22,10,5,23,84,2,30,111,64,6,0,6,11,7,45,2,22,42,7,32,128,0,0,0,48,27,6,44,8,7,32,128,0,0,0,88,11,3,7,23,89,209,111,23,0,0,10,38,5,23,84,23,42,7,32,129,0,0,0,51,5,5,22,84,23,42,7,32,229,0,0,0,48,35,7,32,130,0,0,0,89,12,8,31,10,47,9,3,31,48,111,23,0,0,10,38,3,8,111,191,0,0,10,38,56,182,0,0,0,7,32,230,0,0,0,89,69,12,0,0,0,2,0,0,0,7,0,0,0,12,0,0,0,122,0,0,0,122,0,0,0,23,0,0,0,27,0,0,0,54,0,0,0,81,0,0,0,86,0,0,0,91,0,0,0,122,0,0,0,43,94,5,24,84,23,42,5,28,84,23,42,3,31,29,111,23,0,0,10,38,43,99,23,10,43,95,3,114,224,45,0,112,111,119,0,0,10,38,4,22,114,240,45,0,112,111,91,1,0,10,38,43,68,3,114,246,45,0,112,111,119,0,0,10,38,4,22,114,240,45,0,112,111,91,1,0,10,38,43,41,5,26,84,23,42,5,25,84,23,42,5,27,84,23,42,7,32,242,0,0,0,50,18,7,32,254,0,0,0,51,8,2,111,65,6,0,6,44,2,22,42,2,111,65,6,0,6,22,61,214,254,255,255,5,23,84,23,42,19,48,3,0,117,1,0,0,108,1,0,17,22,10,25,141,72,0,0,1,11,22,12,2,111,65,6,0,6,30,51,2,23,42,2,30,111,64,6,0,6,13,9,32,254,0,0,0,51,2,23,42,9,2,30,111,64,6,0,6,7,40,228,5,0,6,22,19,4,56,33,1,0,0,7,17,4,148,19,5,8,69,4,0,0,0,5,0,0,0,83,0,0,0,123,0,0,0,213,0,0,0,56,248,0,0,0,17,5,25,47,10,17,5,23,88,12,56,235,0,0,0,17,5,126,17,3,0,4,142,105,47,50,126,17,3,0,4,17,5,147,19,6,6,44,23,3,17,6,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,56,188,0,0,0,3,17,6,111,23,0,0,10,38,56,174,0,0,0,22,42,6,44,20,3,17,5,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,43,10,3,17,5,209,111,23,0,0,10,38,22,12,56,132,0,0,0,17,5,126,18,3,0,4,142,105,47,44,126,18,3,0,4,17,5,147,19,7,6,44,20,3,17,7,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,43,42,3,17,7,111,23,0,0,10,38,43,31,17,5,31,27,46,8,17,5,31,30,46,13,43,15,3,31,29,111,23,0,0,10,38,43,6,23,10,43,2,22,42,22,12,43,42,6,44,20,3,17,5,32,224,0,0,0,88,209,111,23,0,0,10,38,22,10,43,13,3,17,5,31,96,88,209,111,23,0,0,10,38,22,12,43,2,22,42,17,4,23,88,19,4,17,4,25,63,215,254,255,255,2,111,65,6,0,6,22,61,152,254,255,255,23,42,0,0,0,19,48,3,0,136,1,0,0,109,1,0,17,22,10,25,141,72,0,0,1,11,22,12,2,111,65,6,0,6,30,51,2,23,42,2,30,111,64,6,0,6,13,9,32,254,0,0,0,51,2,23,42,9,2,30,111,64,6,0,6,7,40,228,5,0,6,22,19,4,56,52,1,0,0,7,17,4,148,19,5,8,69,4,0,0,0,5,0,0,0,83,0,0,0,123,0,0,0,213,0,0,0,56,11,1,0,0,17,5,25,47,10,17,5,23,88,12,56,254,0,0,0,17,5,126,19,3,0,4,142,105,47,50,126,19,3,0,4,17,5,147,19,6,6,44,23,3,17,6,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,56,207,0,0,0,3,17,6,111,23,0,0,10,38,56,193,0,0,0,22,42,6,44,20,3,17,5,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,43,10,3,17,5,209,111,23,0,0,10,38,22,12,56,151,0,0,0,17,5,126,20,3,0,4,142,105,47,44,126,20,3,0,4,17,5,147,19,7,6,44,20,3,17,7,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,43,42,3,17,7,111,23,0,0,10,38,43,31,17,5,31,27,46,8,17,5,31,30,46,13,43,15,3,31,29,111,23,0,0,10,38,43,6,23,10,43,2,22,42,22,12,43,61,17,5,126,21,3,0,4,142,105,47,46,126,21,3,0,4,17,5,147,19,8,6,44,20,3,17,8,32,128,0,0,0,88,209,111,23,0,0,10,38,22,10,43,9,3,17,8,111,23,0,0,10,38,22,12,43,4,22,42,22,42,17,4,23,88,19,4,17,4,25,63,196,254,255,255,2,111,65,6,0,6,22,61,133,254,255,255,23,42,19,48,3,0,188,0,0,0,101,0,0,17,25,141,72,0,0,1,10,2,111,65,6,0,6,30,51,2,23,42,2,30,111,64,6,0,6,11,7,32,254,0,0,0,51,2,23,42,7,2,30,111,64,6,0,6,6,40,228,5,0,6,22,12,43,116,6,8,148,13,9,69,4,0,0,0,2,0,0,0,13,0,0,0,24,0,0,0,35,0,0,0,43,44,3,31,13,111,23,0,0,10,38,43,73,3,31,42,111,23,0,0,10,38,43,62,3,31,62,111,23,0,0,10,38,43,51,3,31,32,111,23,0,0,10,38,43,40,9,31,14,47,14,3,9,31,44,88,209,111,23,0,0,10,38,43,21,9,31,40,47,14,3,9,31,51,88,209,111,23,0,0,10,38,43,2,22,42,8,23,88,12,8,25,50,136,2,111,65,6,0,6,22,61,77,255,255,255,23,42,19,48,5,0,49,0,0,0,2,0,0,17,2,30,98,3,88,23,89,10,6,32,64,6,0,0,91,11,4,22,7,158,6,7,32,64,6,0,0,90,89,10,6,31,40,91,11,4,23,7,158,4,24,6,7,31,40,90,89,158,42,0,0,0,19,48,2,0,91,0,0,0,64,0,0,17,2,111,65,6,0,6,31,16,48,2,23,42,22,10,43,60,2,28,111,64,6,0,6,11,7,31,31,51,23,30,2,111,62,6,0,6,89,12,8,30,46,8,2,8,111,64,6,0,6,38,23,42,7,31,32,95,45,5,7,31,64,96,11,3,7,209,111,23,0,0,10,38,6,23,88,10,6,26,50,192,2,111,65,6,0,6,22,48,167,23,42,0,27,48,6,0,205,0,0,0,110,1,0,17,23,2,111,63,6,0,6,88,10,2,30,111,64,6,0,6,6,37,23,88,10,40,231,5,0,6,11,7,45,11,2,111,65,6,0,6,30,91,12,43,44,7,32,250,0,0,0,47,4,7,12,43,32,32,250,0,0,0,7,32,249,0,0,0,89,90,2,30,111,64,6,0,6,6,37,23,88,10,40,231,5,0,6,88,12,8,22,47,2,22,42,8,141,74,0,0,1,13,22,19,4,43,39,2,111,65,6,0,6,30,47,2,22,42,9,17,4,2,30,111,64,6,0,6,6,37,23,88,10,40,231,5,0,6,210,156,17,4,23,88,19,4,17,4,8,50,212,4,9,111,148,0,0,10,3,114,81,14,0,112,40,146,0,0,10,9,22,9,142,105,111,147,0,0,10,111,119,0,0,10,38,222,20,19,5,114,91,48,0,112,17,5,40,91,0,0,10,115,34,0,0,10,122,23,42,0,0,0,1,16,0,0,0,0,154,0,29,183,0,20,23,0,0,1,19,48,2,0,34,0,0,0,2,0,0,17,32,149,0,0,0,3,90,32,255,0,0,0,93,23,88,10,2,6,89,11,7,22,47,8,7,32,0,1,0,0,88,42,7,42,0,0,19,48,3,0,103,0,0,0,0,0,0,0,31,40,141,64,0,0,1,37,208,219,5,0,4,40,153,0,0,10,128,17,3,0,4,31,27,141,64,0,0,1,37,208,135,4,0,4,40,153,0,0,10,128,18,3,0,4,31,40,141,64,0,0,1,37,208,78,5,0,4,40,153,0,0,10,128,19,3,0,4,126,18,3,0,4,128,20,3,0,4,31,32,141,64,0,0,1,37,208,123,5,0,4,40,153,0,0,10,128,21,3,0,4,42,94,2,40,20,0,0,10,2,126,96,3,0,4,115,210,6,0,6,125,22,3,0,4,42,54,2,3,40,39,6,0,6,40,235,5,0,6,42,0,0,0,19,48,4,0,187,0,0,0,111,1,0,17,3,115,208,5,0,6,10,6,111,209,5,0,6,45,2,20,42,6,111,211,5,0,6,11,7,45,2,20,42,7,6,111,209,5,0,6,40,220,5,0,6,12,22,13,8,19,6,22,19,7,43,23,17,6,17,7,154,19,8,9,17,8,111,221,5,0,6,88,13,17,7,23,88,19,7,17,7,17,6,142,105,50,225,9,141,74,0,0,1,19,4,8,142,105,19,5,22,19,9,43,72,8,17,9,154,37,111,222,5,0,6,19,10,111,221,5,0,6,19,11,2,17,10,17,11,40,236,5,0,6,45,2,20,42,22,19,12,43,22,17,4,17,12,17,5,90,17,9,88,17,10,17,12,145,156,17,12,23,88,19,12,17,12,17,11,50,228,17,9,23,88,19,9,17,9,17,5,50,178,17,4,40,223,5,0,6,42,0,19,48,4,0,85,0,0,0,80,0,0,17,3,142,105,10,6,141,72,0,0,1,11,22,13,43,16,7,9,3,9,145,32,255,0,0,0,95,158,9,23,88,13,9,6,50,236,3,142,105,4,89,12,2,123,22,3,0,4,7,8,111,211,6,0,6,45,2,22,42,22,19,4,43,15,3,17,4,7,17,4,148,210,156,17,4,23,88,19,4,17,4,4,50,236,23,42,0,0,0,19,48,4,0,116,0,0,0,112,1,0,17,2,40,20,0,0,10,2,3,125,24,3,0,4,2,4,125,25,3,0,4,2,5,125,26,3,0,4,2,14,4,125,27,3,0,4,2,14,5,125,28,3,0,4,2,14,6,125,29,3,0,4,22,10,14,6,111,198,8,0,6,11,14,6,111,199,8,0,6,12,22,13,43,29,8,9,154,19,4,6,17,4,111,201,8,0,6,17,4,111,202,8,0,6,7,88,90,88,10,9,23,88,13,9,8,142,105,50,221,2,6,125,30,3,0,4,42,30,2,123,24,3,0,4,42,30,2,123,25,3,0,4,42,30,2,123,26,3,0,4,42,30,2,123,27,3,0,4,42,30,2,123,28,3,0,4,42,30,2,123,30,3,0,4,42,30,2,123,29,3,0,4,42,19,48,2,0,58,0,0,0,113,1,0,17,2,23,95,45,5,3,23,95,44,2,20,42,126,23,3,0,4,10,22,11,43,28,6,7,154,12,8,123,25,3,0,4,2,51,11,8,123,26,3,0,4,3,51,2,8,42,7,23,88,11,7,6,142,105,50,222,20,42,0,0,19,48,1,0,15,0,0,0,1,0,0,17,2,123,24,3,0,4,10,18,0,40,234,0,0,10,42,0,19,48,12,0,24,4,0,0,0,0,0,0,31,30,141,201,0,0,2,37,22,23,31,10,31,10,30,30,27,23,25,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,23,24,31,12,31,12,31,10,31,10,29,23,27,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,24,25,31,14,31,14,31,12,31,12,31,10,23,30,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,25,26,31,16,31,16,31,14,31,14,31,12,23,31,12,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,26,27,31,18,31,18,31,16,31,16,31,14,23,31,18,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,27,28,31,20,31,20,31,18,31,18,31,18,23,31,22,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,28,29,31,22,31,22,31,20,31,20,31,20,23,31,30,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,29,30,31,24,31,24,31,22,31,22,31,24,23,31,36,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,30,31,9,31,26,31,26,31,24,31,24,31,28,23,31,44,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,9,31,10,31,32,31,32,31,14,31,14,31,36,23,31,62,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,10,31,11,31,36,31,36,31,16,31,16,31,42,23,31,86,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,11,31,12,31,40,31,40,31,18,31,18,31,48,23,31,114,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,12,31,13,31,44,31,44,31,20,31,20,31,56,23,32,144,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,13,31,14,31,48,31,48,31,22,31,22,31,68,23,32,174,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,14,31,15,31,52,31,52,31,24,31,24,31,42,24,31,102,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,15,31,16,31,64,31,64,31,14,31,14,31,56,24,32,140,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,16,31,17,31,72,31,72,31,16,31,16,31,36,26,31,92,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,17,31,18,31,80,31,80,31,18,31,18,31,48,26,31,114,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,18,31,19,31,88,31,88,31,20,31,20,31,56,26,32,144,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,19,31,20,31,96,31,96,31,22,31,22,31,68,26,32,174,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,20,31,21,31,104,31,104,31,24,31,24,31,56,28,32,136,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,21,31,22,31,120,31,120,31,18,31,18,31,68,28,32,175,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,22,31,23,32,132,0,0,0,32,132,0,0,0,31,20,31,20,31,62,30,32,163,0,0,0,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,23,31,24,32,144,0,0,0,32,144,0,0,0,31,22,31,22,31,62,30,32,156,0,0,0,115,200,8,0,6,24,32,155,0,0,0,115,200,8,0,6,115,197,8,0,6,115,237,5,0,6,162,37,31,24,31,25,30,31,18,28,31,16,29,23,27,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,25,31,26,30,31,32,28,31,14,31,11,23,31,10,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,26,31,27,31,12,31,26,31,10,31,24,31,14,23,31,16,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,27,31,28,31,12,31,36,31,10,31,16,31,18,23,31,22,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,28,31,29,31,16,31,36,31,14,31,16,31,24,23,31,32,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,37,31,29,31,30,31,16,31,48,31,14,31,22,31,28,23,31,49,115,200,8,0,6,115,196,8,0,6,115,237,5,0,6,162,42,46,40,247,5,0,6,128,23,3,0,4,42,106,2,40,20,0,0,10,2,3,125,31,3,0,4,2,3,40,226,6,0,6,125,32,3,0,4,42,0,27,48,7,0,249,2,0,0,114,1,0,17,2,123,32,3,0,4,45,2,20,42,2,123,32,3,0,4,111,230,6,0,6,10,6,45,2,20,42,6,22,154,11,6,23,154,12,6,24,154,13,6,25,154,19,4,26,115,107,1,0,10,37,2,7,8,40,1,6,0,6,111,108,1,0,10,37,2,7,9,40,1,6,0,6,111,108,1,0,10,37,2,8,17,4,40,1,6,0,6,111,108,1,0,10,37,2,9,17,4,40,1,6,0,6,111,108,1,0,10,37,115,212,8,0,6,111,109,1,0,10,37,22,111,110,1,0,10,19,5,23,111,110,1,0,10,19,6,115,111,1,0,10,19,7,17,7,17,5,111,203,8,0,6,40,255,5,0,6,17,7,17,5,111,205,8,0,6,40,255,5,0,6,17,7,17,6,111,203,8,0,6,40,255,5,0,6,17,7,17,6,111,205,8,0,6,40,255,5,0,6,20,19,8,20,19,9,20,19,10,17,7,111,112,1,0,10,19,18,43,48,18,18,40,113,1,0,10,19,19,18,19,40,114,1,0,10,19,20,18,19,40,115,1,0,10,24,51,6,17,20,19,9,43,14,17,8,45,6,17,20,19,8,43,4,17,20,19,10,18,18,40,116,1,0,10,45,199,222,14,18,18,254,22,123,0,0,27,111,60,0,0,10,220,17,8,44,8,17,9,44,4,17,10,45,2,20,42,25,141,40,0,0,2,37,22,17,8,162,37,23,17,9,162,37,24,17,10,162,37,40,65,1,0,6,37,22,154,19,11,37,23,154,19,9,24,154,19,12,17,7,7,111,117,1,0,10,45,5,7,19,13,43,34,17,7,8,111,117,1,0,10,45,5,8,19,13,43,19,17,7,9,111,117,1,0,10,45,5,9,19,13,43,4,17,4,19,13,2,17,12,17,13,40,1,6,0,6,111,207,8,0,6,19,14,2,17,11,17,13,40,1,6,0,6,111,207,8,0,6,19,15,17,14,23,95,23,51,6,17,14,23,88,19,14,17,14,24,88,19,14,17,15,23,95,23,51,6,17,15,23,88,19,15,17,15,24,88,19,15,26,17,14,90,29,17,15,90,47,10,26,17,15,90,29,17,14,90,50,115,2,17,9,17,11,17,12,17,13,17,14,17,15,40,251,5,0,6,19,17,17,17,45,4,17,13,19,17,2,17,12,17,17,40,1,6,0,6,111,207,8,0,6,19,14,2,17,11,17,17,40,1,6,0,6,111,207,8,0,6,19,15,17,14,23,95,23,51,6,17,14,23,88,19,14,17,15,23,95,23,51,6,17,15,23,88,19,15,2,123,31,3,0,4,17,12,17,9,17,11,17,17,17,14,17,15,40,0,6,0,6,19,16,43,118,17,15,17,14,40,140,0,0,10,19,21,2,17,9,17,11,17,12,17,13,17,21,40,252,5,0,6,19,17,17,17,45,4,17,13,19,17,2,17,12,17,17,40,1,6,0,6,111,207,8,0,6,2,17,11,17,17,40,1,6,0,6,111,207,8,0,6,40,139,0,0,10,19,22,17,22,23,88,19,22,17,22,23,95,23,51,6,17,22,23,88,19,22,2,123,31,3,0,4,17,12,17,9,17,11,17,17,17,22,17,22,40,0,6,0,6,19,16,17,16,45,2,20,42,17,16,26,141,40,0,0,2,37,22,17,12,162,37,23,17,9,162,37,24,17,11,162,37,25,17,17,162,115,135,6,0,6,42,0,0,0,1,16,0,0,2,0,217,0,61,22,1,14,0,0,0,0,19,48,6,0,68,1,0,0,115,1,0,17,3,4,40,254,5,0,6,107,14,5,107,91,10,5,14,4,40,254,5,0,6,11,7,45,2,20,42,14,4,111,60,1,0,6,5,111,60,1,0,6,89,7,107,91,12,14,4,111,61,1,0,6,5,111,61,1,0,6,89,7,107,91,13,14,4,111,60,1,0,6,6,8,90,88,14,4,111,61,1,0,6,6,9,90,88,115,59,1,0,6,19,4,3,5,40,254,5,0,6,107,14,6,107,91,10,4,14,4,40,254,5,0,6,11,7,45,2,20,42,14,4,111,60,1,0,6,4,111,60,1,0,6,89,7,107,91,12,14,4,111,61,1,0,6,4,111,61,1,0,6,89,7,107,91,13,14,4,111,60,1,0,6,6,8,90,88,14,4,111,61,1,0,6,6,9,90,88,115,59,1,0,6,19,5,2,17,4,40,253,5,0,6,45,15,2,17,5,40,253,5,0,6,44,3,17,5,42,20,42,2,17,5,40,253,5,0,6,45,3,17,4,42,14,5,2,5,17,4,40,1,6,0,6,111,207,8,0,6,89,40,161,0,0,10,14,6,2,4,17,4,40,1,6,0,6,111,207,8,0,6,89,40,161,0,0,10,88,14,5,2,5,17,5,40,1,6,0,6,111,207,8,0,6,89,40,161,0,0,10,14,6,2,4,17,5,40,1,6,0,6,111,207,8,0,6,89,40,161,0,0,10,88,19,6,17,6,48,3,17,4,42,17,5,42,19,48,5,0,46,1,0,0,115,1,0,17,3,4,40,254,5,0,6,107,14,5,107,91,10,5,14,4,40,254,5,0,6,11,7,45,2,20,42,14,4,111,60,1,0,6,5,111,60,1,0,6,89,7,107,91,12,14,4,111,61,1,0,6,5,111,61,1,0,6,89,7,107,91,13,14,4,111,60,1,0,6,6,8,90,88,14,4,111,61,1,0,6,6,9,90,88,115,59,1,0,6,19,4,3,5,40,254,5,0,6,107,14,5,107,91,10,4,14,4,40,254,5,0,6,11,7,45,2,20,42,14,4,111,60,1,0,6,4,111,60,1,0,6,89,7,107,91,12,14,4,111,61,1,0,6,4,111,61,1,0,6,89,7,107,91,13,14,4,111,60,1,0,6,6,8,90,88,14,4,111,61,1,0,6,6,9,90,88,115,59,1,0,6,19,5,2,17,4,40,253,5,0,6,45,15,2,17,5,40,253,5,0,6,44,3,17,5,42,20,42,2,17,5,40,253,5,0,6,45,3,17,4,42,2,5,17,4,40,1,6,0,6,111,207,8,0,6,2,4,17,4,40,1,6,0,6,111,207,8,0,6,89,40,161,0,0,10,2,5,17,5,40,1,6,0,6,111,207,8,0,6,2,4,17,5,40,1,6,0,6,111,207,8,0,6,89,40,161,0,0,10,19,6,17,6,49,3,17,5,42,17,4,42,0,0,19,48,2,0,69,0,0,0,0,0,0,0,3,111,60,1,0,6,34,0,0,0,0,55,54,3,111,60,1,0,6,2,123,31,3,0,4,111,31,6,0,6,107,52,34,3,111,61,1,0,6,34,0,0,0,0,54,21,3,111,61,1,0,6,2,123,31,3,0,4,111,32,6,0,6,107,254,4,42,22,42,54,2,3,40,66,1,0,6,40,218,6,0,6,42,0,19,48,4,0,37,0,0,0,1,0,0,17,2,3,111,118,1,0,10,44,19,2,3,111,119,1,0,10,10,2,3,6,23,88,111,120,1,0,10,42,2,3,23,111,120,1,0,10,42,0,0,0,19,48,20,0,122,0,0,0,0,0,0,0,40,160,6,0,6,2,14,5,14,6,34,0,0,0,63,34,0,0,0,63,14,5,107,34,0,0,0,63,89,34,0,0,0,63,14,5,107,34,0,0,0,63,89,14,6,107,34,0,0,0,63,89,34,0,0,0,63,14,6,107,34,0,0,0,63,89,3,111,60,1,0,6,3,111,61,1,0,6,14,4,111,60,1,0,6,14,4,111,61,1,0,6,5,111,60,1,0,6,5,111,61,1,0,6,4,111,60,1,0,6,4,111,61,1,0,6,111,162,6,0,6,42,0,0,19,48,3,0,253,0,0,0,116,1,0,17,3,111,60,1,0,6,105,10,3,111,61,1,0,6,105,11,4,111,60,1,0,6,105,12,4,111,61,1,0,6,105,13,9,7,89,40,161,0,0,10,8,6,89,40,161,0,0,10,254,2,19,4,17,4,44,8,6,7,10,11,8,9,12,13,8,6,89,40,161,0,0,10,19,5,9,7,89,40,161,0,0,10,19,6,17,5,101,23,99,19,7,7,9,50,3,21,43,1,23,19,8,6,8,50,3,21,43,1,23,19,9,22,19,10,2,123,31,3,0,4,17,4,45,3,6,43,1,7,17,4,45,3,7,43,1,6,111,41,6,0,6,19,11,6,19,12,7,19,13,43,87,2,123,31,3,0,4,17,4,45,4,17,12,43,2,17,13,17,4,45,4,17,13,43,2,17,12,111,41,6,0,6,19,14,17,14,17,11,46,10,17,10,23,88,19,10,17,14,19,11,17,7,17,6,88,19,7,17,7,22,49,19,17,13,9,46,26,17,13,17,8,88,19,13,17,7,17,5,89,19,7,17,12,17,9,88,19,12,17,12,8,51,164,3,4,17,10,115,209,8,0,6,42,30,2,123,34,3,0,4,42,46,2,123,34,3,0,4,29,88,25,99,42,98,2,123,33,3,0,4,3,27,99,148,23,3,31,31,95,31,31,95,98,95,22,254,3,42,126,4,44,27,2,123,33,3,0,4,3,27,99,143,72,0,0,1,37,74,23,3,31,31,95,31,31,95,98,96,84,42,106,2,40,20,0,0,10,2,22,125,34,3,0,4,2,23,141,72,0,0,1,125,33,3,0,4,42,166,2,40,20,0,0,10,3,23,47,11,114,183,48,0,112,115,31,0,0,10,122,2,3,125,34,3,0,4,2,3,40,25,6,0,6,125,33,3,0,4,42,86,2,40,20,0,0,10,2,3,125,33,3,0,4,2,4,125,34,3,0,4,42,0,0,0,19,48,5,0,50,0,0,0,205,0,0,17,3,2,123,33,3,0,4,142,105,27,98,49,36,3,40,25,6,0,6,10,2,123,33,3,0,4,22,6,22,2,123,33,3,0,4,142,105,40,94,0,0,10,2,6,125,33,3,0,4,42,114,2,123,33,3,0,4,3,27,99,143,72,0,0,1,37,74,23,3,31,31,95,31,31,95,98,97,84,42,0,19,48,2,0,24,0,0,0,1,0,0,17,2,101,2,95,31,37,93,10,6,22,47,4,6,21,90,10,126,35,3,0,4,6,148,42,19,48,4,0,109,0,0,0,64,0,0,17,3,2,123,34,3,0,4,50,7,2,123,34,3,0,4,42,3,27,99,10,2,123,33,3,0,4,6,148,11,7,23,3,31,31,95,31,31,95,98,23,89,102,95,11,43,31,6,23,88,37,10,2,123,33,3,0,4,142,105,51,7,2,123,34,3,0,4,42,2,123,33,3,0,4,6,148,11,7,44,222,6,27,98,7,40,11,6,0,6,88,12,8,2,123,34,3,0,4,48,2,8,42,2,123,34,3,0,4,42,0,0,0,19,48,4,0,111,0,0,0,64,0,0,17,3,2,123,34,3,0,4,50,7,2,123,34,3,0,4,42,3,27,99,10,2,123,33,3,0,4,6,148,102,11,7,23,3,31,31,95,31,31,95,98,23,89,102,95,11,43,32,6,23,88,37,10,2,123,33,3,0,4,142,105,51,7,2,123,34,3,0,4,42,2,123,33,3,0,4,6,148,102,11,7,44,221,6,27,98,7,40,11,6,0,6,88,12,8,2,123,34,3,0,4,48,2,8,42,2,123,34,3,0,4,42,50,2,123,33,3,0,4,3,27,99,4,158,42,19,48,4,0,114,0,0,0,113,0,0,17,4,3,50,13,3,22,50,9,4,2,123,34,3,0,4,49,6,115,74,0,0,10,122,4,3,51,1,42,4,23,89,16,2,3,27,99,10,4,27,99,11,6,12,43,64,8,6,48,6,3,31,31,95,43,1,22,13,8,7,50,6,4,31,31,95,43,2,31,31,19,4,24,17,4,31,31,95,98,23,9,31,31,95,98,89,19,5,2,123,33,3,0,4,8,143,72,0,0,1,37,74,17,5,96,84,8,23,88,12,8,7,49,188,42,0,0,19,48,3,0,31,0,0,0,2,0,0,17,2,123,33,3,0,4,142,105,10,22,11,43,13,2,123,33,3,0,4,7,22,158,7,23,88,11,7,6,50,239,42,0,19,48,4,0,121,0,0,0,113,0,0,17,4,3,50,13,3,22,50,9,4,2,123,34,3,0,4,49,6,115,74,0,0,10,122,4,3,51,2,23,42,4,23,89,16,2,3,27,99,10,4,27,99,11,6,12,43,69,8,6,48,6,3,31,31,95,43,1,22,13,8,7,50,6,4,31,31,95,43,2,31,31,19,4,24,17,4,31,31,95,98,23,9,31,31,95,98,89,19,5,2,123,33,3,0,4,8,148,17,5,95,5,45,3,22,43,2,17,5,46,2,22,42,8,23,88,12,8,7,49,183,23,42,0,0,0,19,48,5,0,69,0,0,0,0,0,0,0,2,2,123,34,3,0,4,23,88,40,9,6,0,6,3,44,37,2,123,33,3,0,4,2,123,34,3,0,4,27,99,143,72,0,0,1,37,74,23,2,123,34,3,0,4,31,31,95,31,31,95,98,96,84,2,2,123,34,3,0,4,23,88,125,34,3,0,4,42,30,2,123,33,3,0,4,42,0,0,0,19,48,4,0,66,0,0,0,1,0,0,17,4,22,50,5,4,31,32,49,11,114,231,48,0,112,115,31,0,0,10,122,2,2,123,34,3,0,4,4,88,40,9,6,0,6,4,10,43,23,2,3,6,23,89,31,31,95,99,23,95,23,254,1,40,18,6,0,6,6,23,89,10,6,22,48,229,42,0,0,19,48,3,0,47,0,0,0,2,0,0,17,3,123,34,3,0,4,10,2,2,123,34,3,0,4,6,88,40,9,6,0,6,22,11,43,17,2,3,7,111,4,6,0,6,40,18,6,0,6,7,23,88,11,7,6,50,235,42,0,19,48,4,0,69,0,0,0,1,0,0,17,2,123,34,3,0,4,3,123,34,3,0,4,46,11,114,43,49,0,112,115,31,0,0,10,122,22,10,43,28,2,123,33,3,0,4,6,143,72,0,0,1,37,74,3,123,33,3,0,4,6,148,97,84,6,23,88,10,6,2,123,33,3,0,4,142,105,50,217,42,0,0,0,19,48,4,0,60,0,0,0,64,0,0,17,22,10,43,50,22,11,22,12,43,29,2,3,40,4,6,0,6,44,11,7,23,29,8,89,31,31,95,98,96,11,3,23,88,16,1,8,23,88,12,8,30,50,223,4,5,6,88,7,210,156,6,23,88,10,6,14,4,50,201,42,19,48,4,0,44,1,0,0,117,1,0,17,2,123,33,3,0,4,142,105,141,72,0,0,1,10,2,123,34,3,0,4,23,89,27,99,11,7,23,88,12,22,13,56,150,0,0,0,2,123,33,3,0,4,9,148,106,19,4,17,4,23,99,32,85,85,85,85,106,95,17,4,32,85,85,85,85,106,95,23,98,96,19,4,17,4,24,99,32,51,51,51,51,106,95,17,4,32,51,51,51,51,106,95,24,98,96,19,4,17,4,26,99,32,15,15,15,15,106,95,17,4,32,15,15,15,15,106,95,26,98,96,19,4,17,4,30,99,32,255,0,255,0,106,95,17,4,32,255,0,255,0,106,95,30,98,96,19,4,17,4,31,16,99,32,255,255,0,0,106,95,17,4,32,255,255,0,0,106,95,31,16,98,96,19,4,6,7,9,89,17,4,105,158,9,23,88,13,9,8,63,99,255,255,255,2,123,34,3,0,4,8,31,32,90,46,87,8,31,32,90,2,123,34,3,0,4,89,19,5,6,22,148,17,5,31,31,95,100,19,6,23,19,7,43,46,6,17,7,148,19,8,17,6,17,8,31,32,17,5,89,31,31,95,98,96,19,6,6,17,7,23,89,17,6,158,17,8,17,5,31,31,95,100,19,6,17,7,23,88,19,7,17,7,8,50,205,6,8,23,89,17,6,158,2,6,125,33,3,0,4,42,50,2,31,31,88,27,99,141,72,0,0,1,42,0,0,0,19,48,3,0,69,0,0,0,118,1,0,17,3,117,203,0,0,2,10,6,45,2,22,42,2,123,34,3,0,4,6,123,34,3,0,4,46,2,22,42,22,11,43,24,2,123,33,3,0,4,7,148,6,123,33,3,0,4,7,148,46,2,22,42,7,23,88,11,7,2,123,33,3,0,4,142,105,50,221,23,42,0,0,0,19,48,2,0,47,0,0,0,203,0,0,17,2,123,34,3,0,4,10,2,123,33,3,0,4,11,22,12,43,21,7,8,148,13,31,31,6,90,18,3,40,121,1,0,10,88,10,8,23,88,12,8,7,142,105,50,229,6,42,0,19,48,3,0,72,0,0,0,3,0,0,17,2,123,34,3,0,4,115,22,0,0,10,10,22,11,43,40,7,29,95,45,9,6,31,32,111,23,0,0,10,38,6,2,7,40,4,6,0,6,45,4,31,46,43,2,31,88,111,23,0,0,10,38,7,23,88,11,7,2,123,34,3,0,4,50,207,6,111,25,0,0,10,42,114,2,123,33,3,0,4,111,122,1,0,10,116,55,0,0,27,2,123,34,3,0,4,115,8,6,0,6,42,98,31,37,141,72,0,0,1,37,208,186,5,0,4,40,153,0,0,10,128,35,3,0,4,42,30,2,123,36,3,0,4,42,30,2,123,37,3,0,4,42,130,2,123,36,3,0,4,2,123,37,3,0,4,46,11,114,79,49,0,112,115,31,0,0,10,122,2,123,36,3,0,4,42,30,2,123,38,3,0,4,42,38,2,3,3,40,36,6,0,6,42,0,0,0,19,48,3,0,71,0,0,0,0,0,0,0,2,40,20,0,0,10,3,23,50,4,4,23,47,11,114,167,49,0,112,115,31,0,0,10,122,2,3,125,36,3,0,4,2,4,125,37,3,0,4,2,3,31,31,88,27,99,125,38,3,0,4,2,2,123,38,3,0,4,4,90,141,72,0,0,1,125,39,3,0,4,42,146,2,40,20,0,0,10,2,3,125,36,3,0,4,2,4,125,37,3,0,4,2,5,125,38,3,0,4,2,14,4,125,39,3,0,4,42,162,2,40,20,0,0,10,2,3,125,36,3,0,4,2,4,125,37,3,0,4,2,3,31,31,88,27,99,125,38,3,0,4,2,5,125,39,3,0,4,42,0,0,0,19,48,5,0,67,0,0,0,119,1,0,17,2,142,105,10,2,22,154,142,105,11,7,6,115,36,6,0,6,12,22,13,43,39,2,9,154,19,4,22,19,5,43,20,8,17,5,9,17,4,17,5,145,111,42,6,0,6,17,5,23,88,19,5,17,5,7,50,231,9,23,88,13,9,6,50,213,8,42,0,19,48,4,0,82,1,0,0,120,1,0,17,2,45,6,115,74,0,0,10,122,2,111,30,0,0,10,141,71,0,0,1,10,22,11,22,12,21,13,22,19,4,22,19,5,56,199,0,0,0,2,17,5,23,111,241,0,0,10,114,85,10,0,112,111,180,0,0,10,45,21,2,17,5,23,111,241,0,0,10,114,245,49,0,112,111,180,0,0,10,44,47,7,8,49,35,9,21,51,6,7,8,89,13,43,17,7,8,89,9,46,11,114,249,49,0,112,115,31,0,0,10,122,7,12,17,4,23,88,19,4,17,5,23,88,19,5,43,110,2,17,5,3,111,30,0,0,10,111,241,0,0,10,3,111,180,0,0,10,44,21,17,5,3,111,30,0,0,10,88,19,5,6,7,23,156,7,23,88,11,43,67,2,17,5,4,111,30,0,0,10,111,241,0,0,10,4,111,180,0,0,10,44,21,17,5,4,111,30,0,0,10,88,19,5,6,7,22,156,7,23,88,11,43,24,114,43,50,0,112,2,17,5,111,226,0,0,10,40,238,0,0,10,115,31,0,0,10,122,17,5,2,111,30,0,0,10,63,44,255,255,255,7,8,49,33,9,21,51,6,7,8,89,13,43,17,7,8,89,9,46,11,114,249,49,0,112,115,31,0,0,10,122,17,4,23,88,19,4,9,17,4,115,36,6,0,6,19,6,22,19,7,43,28,6,17,7,145,44,16,17,6,17,7,9,93,17,7,9,91,23,111,42,6,0,6,17,7,23,88,19,7,17,7,7,50,223,17,6,42,0,0,19,48,3,0,35,0,0,0,1,0,0,17,4,2,123,38,3,0,4,90,3,27,99,88,10,2,123,39,3,0,4,6,148,3,31,31,95,31,31,95,100,23,95,22,254,3,42,0,19,48,5,0,83,0,0,0,2,0,0,17,5,44,39,4,2,123,38,3,0,4,90,3,27,99,88,10,2,123,39,3,0,4,6,143,72,0,0,1,37,74,23,3,31,31,95,31,31,95,98,96,84,42,4,2,123,38,3,0,4,90,3,31,32,91,88,11,2,123,39,3,0,4,7,143,72,0,0,1,37,74,23,3,31,31,95,31,31,95,98,102,95,84,42,0,19,48,5,0,39,0,0,0,1,0,0,17,4,2,123,38,3,0,4,90,3,27,99,88,10,2,123,39,3,0,4,6,143,72,0,0,1,37,74,23,3,31,31,95,31,31,95,98,97,84,42,0,19,48,5,0,83,0,0,0,64,0,0,17,22,10,43,69,22,11,43,52,3,6,7,111,123,1,0,10,44,38,6,2,123,38,3,0,4,90,7,27,99,88,12,2,123,39,3,0,4,8,143,72,0,0,1,37,74,23,7,31,31,95,31,31,95,98,97,84,7,23,88,11,7,2,123,36,3,0,4,50,195,6,23,88,10,6,2,123,37,3,0,4,50,178,42,0,19,48,4,0,155,0,0,0,121,1,0,17,2,123,36,3,0,4,3,111,31,6,0,6,51,28,2,123,37,3,0,4,3,111,32,6,0,6,51,14,2,123,38,3,0,4,3,111,34,6,0,6,46,11,114,107,50,0,112,115,31,0,0,10,122,2,123,36,3,0,4,31,32,91,23,88,115,7,6,0,6,10,22,11,43,71,7,2,123,38,3,0,4,90,12,3,7,6,111,48,6,0,6,111,19,6,0,6,13,22,19,4,43,29,2,123,39,3,0,4,8,17,4,88,143,72,0,0,1,37,74,9,17,4,148,97,84,17,4,23,88,19,4,17,4,2,123,38,3,0,4,50,217,7,23,88,11,7,2,123,37,3,0,4,50,176,42,0,19,48,3,0,31,0,0,0,2,0,0,17,2,123,39,3,0,4,142,105,10,22,11,43,13,2,123,39,3,0,4,7,22,158,7,23,88,11,7,6,50,239,42,0,19,48,5,0,146,0,0,0,51,0,0,17,4,22,50,4,3,22,47,11,114,181,50,0,112,115,31,0,0,10,122,14,4,23,50,4,5,23,47,11,114,247,50,0,112,115,31,0,0,10,122,3,5,88,10,4,14,4,88,11,7,2,123,37,3,0,4,48,9,6,2,123,36,3,0,4,49,11,114,63,51,0,112,115,31,0,0,10,122,4,12,43,60,8,2,123,38,3,0,4,90,13,3,19,4,43,37,2,123,39,3,0,4,9,17,4,27,99,88,143,72,0,0,1,37,74,23,17,4,31,31,95,31,31,95,98,96,84,17,4,23,88,19,4,17,4,6,50,214,8,23,88,12,8,7,50,192,42,0,0,19,48,5,0,85,0,0,0,2,0,0,17,4,44,14,4,111,2,6,0,6,2,123,36,3,0,4,47,15,2,123,36,3,0,4,115,7,6,0,6,16,2,43,6,4,111,16,6,0,6,3,2,123,38,3,0,4,90,10,22,11,43,23,4,7,27,98,2,123,39,3,0,4,6,7,88,148,111,14,6,0,6,7,23,88,11,7,2,123,38,3,0,4,50,224,4,42,134,4,111,19,6,0,6,22,2,123,39,3,0,4,3,2,123,38,3,0,4,90,2,123,38,3,0,4,40,94,0,0,10,42,0,19,48,3,0,97,0,0,0,122,1,0,17,2,40,31,6,0,6,2,40,32,6,0,6,10,37,115,7,6,0,6,11,115,7,6,0,6,12,22,13,43,58,2,9,7,40,48,6,0,6,11,2,6,23,89,9,89,8,40,48,6,0,6,12,7,111,24,6,0,6,8,111,24,6,0,6,2,9,8,40,49,6,0,6,2,6,23,89,9,89,7,40,49,6,0,6,9,23,88,13,9,6,23,88,24,91,50,190,42,0,0,0,19,48,5,0,3,1,0,0,123,1,0,17,2,123,36,3,0,4,10,2,123,37,3,0,4,11,21,12,21,13,22,19,4,56,179,0,0,0,22,19,5,56,152,0,0,0,2,123,39,3,0,4,17,4,2,123,38,3,0,4,90,17,5,88,148,19,6,17,6,44,121,17,4,7,47,3,17,4,11,17,4,9,49,3,17,4,13,17,5,31,32,90,6,47,44,22,19,7,43,6,17,7,23,88,19,7,17,6,31,31,17,7,89,31,31,95,98,44,237,17,5,31,32,90,17,7,88,6,47,9,17,5,31,32,90,17,7,88,10,17,5,31,32,90,31,31,88,8,49,42,31,31,19,8,43,6,17,8,23,89,19,8,17,6,17,8,31,31,95,100,44,240,17,5,31,32,90,17,8,88,8,49,9,17,5,31,32,90,17,8,88,12,17,5,23,88,19,5,17,5,2,123,38,3,0,4,63,91,255,255,255,17,4,23,88,19,4,17,4,2,123,37,3,0,4,63,64,255,255,255,8,6,50,4,9,7,47,2,20,42,26,141,72,0,0,1,37,22,6,158,37,23,7,158,37,24,8,6,89,23,88,158,37,25,9,7,89,23,88,158,42,0,19,48,4,0,114,0,0,0,51,0,0,17,22,10,43,4,6,23,88,10,6,2,123,39,3,0,4,142,105,47,10,2,123,39,3,0,4,6,148,44,231,6,2,123,39,3,0,4,142,105,51,2,20,42,6,2,123,38,3,0,4,91,11,6,2,123,38,3,0,4,93,27,98,12,2,123,39,3,0,4,6,148,13,22,19,4,43,6,17,4,23,88,19,4,9,31,31,17,4,89,31,31,95,98,44,238,8,17,4,88,12,24,141,72,0,0,1,37,22,8,158,37,23,7,158,42,0,0,19,48,4,0,107,0,0,0,51,0,0,17,2,123,39,3,0,4,142,105,23,89,10,43,4,6,23,89,10,6,22,50,10,2,123,39,3,0,4,6,148,44,238,6,22,47,2,20,42,6,2,123,38,3,0,4,91,11,6,2,123,38,3,0,4,93,27,98,12,2,123,39,3,0,4,6,148,13,31,31,19,4,43,6,17,4,23,89,19,4,9,17,4,31,31,95,100,44,241,8,17,4,88,12,24,141,72,0,0,1,37,22,8,158,37,23,7,158,42,0,19,48,3,0,120,0,0,0,124,1,0,17,3,117,204,0,0,2,45,2,22,42,3,116,204,0,0,2,10,2,123,36,3,0,4,6,123,36,3,0,4,51,46,2,123,37,3,0,4,6,123,37,3,0,4,51,32,2,123,38,3,0,4,6,123,38,3,0,4,51,18,2,123,39,3,0,4,142,105,6,123,39,3,0,4,142,105,46,2,22,42,22,11,43,24,2,123,39,3,0,4,7,148,6,123,39,3,0,4,7,148,46,2,22,42,7,23,88,11,7,2,123,39,3,0,4,142,105,50,221,23,42,19,48,2,0,83,0,0,0,203,0,0,17,2,123,36,3,0,4,10,31,31,6,90,2,123,36,3,0,4,88,10,31,31,6,90,2,123,37,3,0,4,88,10,31,31,6,90,2,123,38,3,0,4,88,10,2,123,39,3,0,4,11,22,12,43,21,7,8,148,13,31,31,6,90,18,3,40,121,1,0,10,88,10,8,23,88,12,8,7,142,105,50,229,6,42,90,2,114,139,51,0,112,114,89,11,0,112,40,144,0,0,10,40,58,6,0,6,42,58,2,3,4,40,144,0,0,10,40,59,6,0,6,42,42,2,3,4,5,40,59,6,0,6,42,19,48,4,0,91,0,0,0,209,0,0,17,2,123,37,3,0,4,2,123,36,3,0,4,23,88,90,115,22,0,0,10,10,22,11,43,50,22,12,43,25,6,2,8,7,40,41,6,0,6,45,3,4,43,1,3,111,119,0,0,10,38,8,23,88,12,8,2,123,36,3,0,4,50,222,6,5,111,119,0,0,10,38,7,23,88,11,7,2,123,37,3,0,4,50,197,6,111,25,0,0,10,42,162,2,123,36,3,0,4,2,123,37,3,0,4,2,123,38,3,0,4,2,123,39,3,0,4,111,122,1,0,10,116,55,0,0,27,115,37,6,0,6,42,58,2,40,20,0,0,10,2,3,125,40,3,0,4,42,30,2,123,42,3,0,4,42,30,2,123,41,3,0,4,42,0,19,48,4,0,30,1,0,0,114,0,0,17,3,23,50,14,3,31,32,48,9,3,2,40,65,6,0,6,49,18,15,1,40,234,0,0,10,114,145,51,0,112,115,108,0,0,10,122,22,10,2,123,42,3,0,4,22,49,112,30,2,123,42,3,0,4,89,11,3,7,50,3,7,43,1,3,12,7,8,89,13,32,255,0,0,0,30,8,89,31,31,95,99,9,31,31,95,98,19,4,2,123,40,3,0,4,2,123,41,3,0,4,145,17,4,95,9,31,31,95,99,10,3,8,89,16,1,2,2,123,42,3,0,4,8,88,125,42,3,0,4,2,123,42,3,0,4,30,51,21,2,22,125,42,3,0,4,2,2,123,41,3,0,4,23,88,125,41,3,0,4,3,22,49,121,43,43,6,30,98,2,123,40,3,0,4,2,123,41,3,0,4,145,32,255,0,0,0,95,96,10,2,2,123,41,3,0,4,23,88,125,41,3,0,4,3,30,89,16,1,3,30,47,209,3,22,49,68,30,3,89,19,5,32,255,0,0,0,17,5,31,31,95,99,17,5,31,31,95,98,19,6,6,3,31,31,95,98,2,123,40,3,0,4,2,123,41,3,0,4,145,17,6,95,17,5,31,31,95,99,96,10,2,2,123,42,3,0,4,3,88,125,42,3,0,4,6,42,102,30,2,123,40,3,0,4,142,105,2,123,41,3,0,4,89,90,2,123,42,3,0,4,89,42,30,2,123,45,3,0,4,42,19,48,5,0,72,3,0,0,0,0,0,0,115,124,1,0,10,128,43,3,0,4,115,125,1,0,10,128,44,3,0,4,22,114,161,51,0,112,40,69,6,0,6,23,24,141,63,0,0,1,37,22,114,81,14,0,112,162,37,23,114,173,51,0,112,162,40,70,6,0,6,24,114,161,51,0,112,40,69,6,0,6,25,24,141,63,0,0,1,37,22,114,81,14,0,112,162,37,23,114,173,51,0,112,162,40,70,6,0,6,26,24,141,63,0,0,1,37,22,114,193,51,0,112,162,37,23,114,215,51,0,112,162,40,70,6,0,6,27,24,141,63,0,0,1,37,22,114,235,51,0,112,162,37,23,114,1,52,0,112,162,40,70,6,0,6,28,24,141,63,0,0,1,37,22,114,21,52,0,112,162,37,23,114,43,52,0,112,162,40,70,6,0,6,29,24,141,63,0,0,1,37,22,114,63,52,0,112,162,37,23,114,85,52,0,112,162,40,70,6,0,6,30,24,141,63,0,0,1,37,22,114,105,52,0,112,162,37,23,114,127,52,0,112,162,40,70,6,0,6,31,9,24,141,63,0,0,1,37,22,114,147,52,0,112,162,37,23,114,169,52,0,112,162,40,70,6,0,6,31,10,24,141,63,0,0,1,37,22,114,189,52,0,112,162,37,23,114,211,52,0,112,162,40,70,6,0,6,31,11,24,141,63,0,0,1,37,22,114,231,52,0,112,162,37,23,114,253,52,0,112,162,40,70,6,0,6,31,12,25,141,63,0,0,1,37,22,114,21,52,0,112,162,37,23,114,17,53,0,112,162,37,24,114,41,53,0,112,162,40,70,6,0,6,31,13,24,141,63,0,0,1,37,22,114,63,53,0,112,162,37,23,114,87,53,0,112,162,40,70,6,0,6,31,15,24,141,63,0,0,1,37,22,114,109,53,0,112,162,37,23,114,133,53,0,112,162,40,70,6,0,6,31,16,25,141,63,0,0,1,37,22,114,81,14,0,112,162,37,23,114,155,53,0,112,162,37,24,114,179,53,0,112,162,40,70,6,0,6,31,17,24,141,63,0,0,1,37,22,114,201,53,0,112,162,37,23,114,225,53,0,112,162,40,70,6,0,6,31,18,25,141,63,0,0,1,37,22,114,235,51,0,112,162,37,23,114,247,53,0,112,162,37,24,114,15,54,0,112,162,40,70,6,0,6,31,20,24,141,63,0,0,1,37,22,114,37,54,0,112,162,37,23,114,165,11,0,112,162,40,70,6,0,6,31,21,24,141,63,0,0,1,37,22,114,47,54,0,112,162,37,23,114,73,54,0,112,162,40,70,6,0,6,31,22,24,141,63,0,0,1,37,22,114,87,54,0,112,162,37,23,114,113,54,0,112,162,40,70,6,0,6,31,23,24,141,63,0,0,1,37,22,114,127,54,0,112,162,37,23,114,153,54,0,112,162,40,70,6,0,6,31,24,24,141,63,0,0,1,37,22,114,167,54,0,112,162,37,23,114,193,54,0,112,162,40,70,6,0,6,31,25,24,141,63,0,0,1,37,22,114,207,54,0,112,162,37,23,114,225,54,0,112,162,40,70,6,0,6,31,26,24,141,63,0,0,1,37,22,114,13,19,0,112,162,37,23,114,247,54,0,112,162,40,70,6,0,6,31,27,114,1,55,0,112,40,69,6,0,6,32,170,0,0,0,114,1,55,0,112,40,69,6,0,6,31,28,114,19,55,0,112,40,69,6,0,6,31,29,26,141,63,0,0,1,37,22,114,29,55,0,112,162,37,23,114,45,55,0,112,162,37,24,114,59,55,0,112,162,37,25,114,73,55,0,112,162,40,70,6,0,6,31,30,24,141,63,0,0,1,37,22,114,81,55,0,112,162,37,23,114,95,55,0,112,162,40,70,6,0,6,42,62,2,3,40,138,6,0,6,2,4,125,45,3,0,4,42,19,48,3,0,33,0,0,0,125,1,0,17,2,3,115,68,6,0,6,10,126,43,3,0,4,2,6,111,126,1,0,10,126,44,3,0,4,3,6,111,127,1,0,10,42,0,0,0,19,48,3,0,55,0,0,0,126,1,0,17,2,3,22,154,115,68,6,0,6,10,126,43,3,0,4,2,6,111,126,1,0,10,3,11,22,12,43,20,7,8,154,13,126,44,3,0,4,9,6,111,127,1,0,10,8,23,88,12,8,7,142,105,50,230,42,106,2,22,50,8,2,32,132,3,0,0,50,2,20,42,126,43,3,0,4,2,111,128,1,0,10,42,70,126,44,3,0,4,2,111,135,0,0,10,111,129,1,0,10,42,30,2,123,46,3,0,4,42,34,2,3,125,46,3,0,4,42,30,2,123,47,3,0,4,42,34,2,3,125,47,3,0,4,42,30,2,123,48,3,0,4,42,34,2,3,125,48,3,0,4,42,30,2,123,49,3,0,4,42,34,2,3,125,49,3,0,4,42,30,2,123,50,3,0,4,42,34,2,3,125,50,3,0,4,42,98,2,40,90,6,0,6,22,50,13,2,40,86,6,0,6,22,254,4,22,254,1,42,22,42,30,2,123,51,3,0,4,42,34,2,3,125,51,3,0,4,42,30,2,123,52,3,0,4,42,34,2,3,125,52,3,0,4,42,30,2,123,53,3,0,4,42,34,2,3,125,53,3,0,4,42,30,2,123,54,3,0,4,42,34,2,3,125,54,3,0,4,42,30,2,123,55,3,0,4,42,34,2,3,125,55,3,0,4,42,58,2,3,4,5,14,4,21,21,40,95,6,0,6,42,110,2,3,3,44,7,30,3,142,105,90,43,1,22,4,5,14,4,14,5,14,6,40,97,6,0,6,42,66,2,3,4,5,14,4,14,5,21,21,40,97,6,0,6,42,0,19,48,2,0,72,0,0,0,0,0,0,0,2,40,20,0,0,10,3,45,9,5,45,6,115,74,0,0,10,122,2,3,40,74,6,0,6,2,4,40,76,6,0,6,2,5,40,78,6,0,6,2,14,4,40,80,6,0,6,2,14,5,40,82,6,0,6,2,14,7,40,91,6,0,6,2,14,6,40,87,6,0,6,42,30,2,123,56,3,0,4,42,34,2,3,125,56,3,0,4,42,0,0,0,19,48,3,0,41,0,0,0,127,1,0,17,2,123,57,3,0,4,10,6,11,7,3,40,47,0,0,10,116,14,0,0,27,12,2,124,57,3,0,4,8,7,40,9,0,0,43,10,6,7,51,223,42,0,0,0,19,48,3,0,41,0,0,0,127,1,0,17,2,123,57,3,0,4,10,6,11,7,3,40,49,0,0,10,116,14,0,0,27,12,2,124,57,3,0,4,8,7,40,9,0,0,43,10,6,7,51,223,42,138,2,40,98,6,0,6,25,111,44,0,0,10,44,18,2,40,98,6,0,6,25,111,77,0,0,10,165,71,0,0,1,42,22,42,202,3,44,19,2,40,98,6,0,6,25,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,25,111,44,0,0,10,44,13,2,40,98,6,0,6,25,111,46,0,0,10,38,42,138,2,40,98,6,0,6,23,111,44,0,0,10,44,18,2,40,98,6,0,6,23,111,77,0,0,10,165,71,0,0,1,42,22,42,202,3,44,19,2,40,98,6,0,6,23,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,23,111,44,0,0,10,44,13,2,40,98,6,0,6,23,111,46,0,0,10,38,42,138,2,40,98,6,0,6,26,111,44,0,0,10,44,18,2,40,98,6,0,6,26,111,77,0,0,10,116,63,0,0,1,42,20,42,182,3,44,14,2,40,98,6,0,6,26,3,111,45,0,0,10,42,2,40,98,6,0,6,26,111,44,0,0,10,44,13,2,40,98,6,0,6,26,111,46,0,0,10,38,42,138,2,40,98,6,0,6,24,111,44,0,0,10,44,18,2,40,98,6,0,6,24,111,77,0,0,10,116,31,0,0,27,42,20,42,182,3,44,14,2,40,98,6,0,6,24,3,111,45,0,0,10,42,2,40,98,6,0,6,24,111,44,0,0,10,44,13,2,40,98,6,0,6,24,111,46,0,0,10,38,42,146,2,40,98,6,0,6,31,9,111,44,0,0,10,44,19,2,40,98,6,0,6,31,9,111,77,0,0,10,165,71,0,0,1,42,22,42,82,2,40,98,6,0,6,31,9,3,140,71,0,0,1,111,45,0,0,10,42,146,2,40,98,6,0,6,31,10,111,44,0,0,10,44,19,2,40,98,6,0,6,31,10,111,77,0,0,10,165,71,0,0,1,42,22,42,214,3,44,20,2,40,98,6,0,6,31,10,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,31,10,111,44,0,0,10,44,14,2,40,98,6,0,6,31,10,111,46,0,0,10,38,42,138,2,40,98,6,0,6,28,111,44,0,0,10,44,18,2,40,98,6,0,6,28,111,77,0,0,10,165,71,0,0,1,42,22,42,202,3,44,19,2,40,98,6,0,6,28,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,28,111,44,0,0,10,44,13,2,40,98,6,0,6,28,111,46,0,0,10,38,42,146,2,40,98,6,0,6,31,13,111,44,0,0,10,44,19,2,40,98,6,0,6,31,13,111,77,0,0,10,165,71,0,0,1,42,22,42,214,3,44,20,2,40,98,6,0,6,31,13,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,31,13,111,44,0,0,10,44,14,2,40,98,6,0,6,31,13,111,46,0,0,10,38,42,146,2,40,98,6,0,6,31,12,111,44,0,0,10,44,19,2,40,98,6,0,6,31,12,111,77,0,0,10,165,71,0,0,1,42,22,42,214,3,44,20,2,40,98,6,0,6,31,12,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,31,12,111,44,0,0,10,44,14,2,40,98,6,0,6,31,12,111,46,0,0,10,38,42,138,2,40,98,6,0,6,30,111,44,0,0,10,44,18,2,40,98,6,0,6,30,111,77,0,0,10,165,71,0,0,1,42,22,42,202,3,44,19,2,40,98,6,0,6,30,23,140,71,0,0,1,111,45,0,0,10,42,2,40,98,6,0,6,30,111,44,0,0,10,44,13,2,40,98,6,0,6,30,111,46,0,0,10,38,42,138,2,40,98,6,0,6,27,111,44,0,0,10,44,18,2,40,98,6,0,6,27,111,77,0,0,10,116,55,0,0,27,42,20,42,198,3,44,18,3,142,44,14,2,40,98,6,0,6,27,3,111,45,0,0,10,42,2,40,98,6,0,6,27,111,44,0,0,10,44,13,2,40,98,6,0,6,27,111,46,0,0,10,38,42,146,2,40,98,6,0,6,31,14,111,44,0,0,10,44,19,2,40,98,6,0,6,31,14,111,77,0,0,10,116,55,0,0,27,42,20,42,210,3,44,19,3,142,44,15,2,40,98,6,0,6,31,14,3,111,45,0,0,10,42,2,40,98,6,0,6,31,14,111,44,0,0,10,44,14,2,40,98,6,0,6,31,14,111,46,0,0,10,38,42,0,0,0,19,48,3,0,52,0,0,0,128,1,0,17,2,40,20,0,0,10,115,130,1,0,10,10,2,6,40,99,6,0,6,2,23,40,111,6,0,6,2,23,40,113,6,0,6,6,2,254,6,127,6,0,6,115,43,0,0,10,111,131,1,0,10,42,106,2,123,57,3,0,4,44,17,2,123,57,3,0,4,2,126,132,1,0,10,111,133,1,0,10,42,0,19,48,16,0,49,0,0,0,129,1,0,17,14,4,14,5,14,6,14,7,14,8,14,9,14,10,14,11,14,12,14,13,14,14,14,15,14,16,14,17,14,18,14,19,40,176,6,0,6,10,2,3,4,5,6,111,163,6,0,6,42,0,0,0,27,48,6,0,227,0,0,0,130,1,0,17,4,22,49,4,5,22,48,2,20,42,4,5,115,36,6,0,6,10,4,23,98,141,80,0,0,1,11,22,12,56,181,0,0,0,7,142,105,13,8,107,34,0,0,0,63,88,19,4,22,19,5,43,29,7,17,5,17,5,23,99,107,34,0,0,0,63,88,160,7,17,5,23,88,17,4,160,17,5,24,88,19,5,17,5,9,50,222,14,4,7,111,177,6,0,6,3,7,40,164,6,0,6,45,2,20,42,0,3,111,31,6,0,6,19,6,3,111,32,6,0,6,19,7,22,19,8,43,70,7,17,8,152,105,19,9,7,17,8,23,88,152,105,19,10,17,9,22,50,17,17,9,17,6,47,11,17,10,22,50,6,17,10,17,7,50,5,20,19,11,222,53,6,17,8,23,99,8,3,17,9,17,10,111,41,6,0,6,111,42,6,0,6,17,8,24,88,19,8,17,8,9,50,181,222,6,38,20,19,11,222,13,8,23,88,12,8,5,63,68,255,255,255,6,42,17,11,42,0,1,16,0,0,0,0,107,0,98,205,0,6,57,0,0,1,30,2,40,165,6,0,6,42,30,2,123,58,3,0,4,42,34,2,3,125,58,3,0,4,42,30,2,123,59,3,0,4,42,34,2,3,125,59,3,0,4,42,86,2,40,20,0,0,10,2,3,40,132,6,0,6,2,4,40,134,6,0,6,42,30,2,123,60,3,0,4,42,34,2,3,125,60,3,0,4,42,58,2,40,20,0,0,10,2,3,40,137,6,0,6,42,206,2,22,50,8,2,32,63,66,15,0,49,22,114,109,55,0,112,2,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,2,32,132,3,0,0,47,7,2,40,71,6,0,6,42,20,42,30,2,123,61,3,0,4,42,34,2,3,125,61,3,0,4,42,138,2,40,140,6,0,6,23,111,126,0,0,10,44,18,2,40,140,6,0,6,23,111,127,0,0,10,165,72,0,0,1,42,22,42,78,2,40,140,6,0,6,23,3,140,72,0,0,1,111,129,0,0,10,42,138,2,40,140,6,0,6,22,111,126,0,0,10,44,18,2,40,140,6,0,6,22,111,127,0,0,10,165,72,0,0,1,42,22,42,78,2,40,140,6,0,6,22,3,140,72,0,0,1,111,129,0,0,10,42,138,2,40,140,6,0,6,24,111,126,0,0,10,44,18,2,40,140,6,0,6,24,111,127,0,0,10,165,71,0,0,1,42,22,42,78,2,40,140,6,0,6,24,3,140,71,0,0,1,111,129,0,0,10,42,138,2,40,140,6,0,6,27,111,126,0,0,10,44,18,2,40,140,6,0,6,27,111,127,0,0,10,165,72,0,0,1,42,22,42,78,2,40,140,6,0,6,27,3,140,72,0,0,1,111,129,0,0,10,42,146,2,40,140,6,0,6,31,18,111,126,0,0,10,44,19,2,40,140,6,0,6,31,18,111,127,0,0,10,165,71,0,0,1,42,22,42,82,2,40,140,6,0,6,31,18,3,140,71,0,0,1,111,129,0,0,10,42,74,2,40,20,0,0,10,2,115,134,1,0,10,40,141,6,0,6,42,130,2,3,40,165,0,0,6,2,126,65,3,0,4,125,66,3,0,4,2,31,32,141,72,0,0,1,125,67,3,0,4,42,0,19,48,3,0,251,0,0,0,131,1,0,17,2,111,166,0,0,6,37,111,250,0,0,6,10,4,44,9,4,111,2,6,0,6,6,47,10,6,115,7,6,0,6,16,2,43,6,4,111,16,6,0,6,2,6,40,157,6,0,6,3,2,123,66,3,0,4,111,248,0,0,6,11,2,123,67,3,0,4,12,22,19,4,43,29,8,7,17,4,145,32,255,0,0,0,95,25,99,143,72,0,0,1,37,74,23,88,84,17,4,23,88,19,4,17,4,6,50,222,8,18,3,40,158,6,0,6,45,2,20,42,6,25,47,40,22,19,5,43,28,7,17,5,145,32,255,0,0,0,95,9,47,9,4,17,5,23,111,5,6,0,6,17,5,23,88,19,5,17,5,6,50,223,43,86,7,22,145,32,255,0,0,0,95,19,6,7,23,145,32,255,0,0,0,95,19,7,23,19,8,43,52,7,17,8,23,88,145,32,255,0,0,0,95,19,9,17,7,26,90,17,6,89,17,9,89,24,91,9,47,9,4,17,8,23,111,5,6,0,6,17,7,19,6,17,9,19,7,17,8,23,88,19,8,17,8,6,23,89,50,197,4,42,0,19,48,5,0,231,0,0,0,132,1,0,17,2,111,166,0,0,6,10,6,111,250,0,0,6,12,6,111,252,0,0,6,13,8,9,115,36,6,0,6,19,4,2,8,40,157,6,0,6,2,123,67,3,0,4,19,5,23,19,7,43,83,9,17,7,90,27,91,19,8,6,17,8,2,123,66,3,0,4,111,248,0,0,6,11,8,24,98,27,91,19,9,8,27,91,19,10,43,34,7,17,10,145,32,255,0,0,0,95,19,11,17,5,17,11,25,99,143,72,0,0,1,37,74,23,88,84,17,10,23,88,19,10,17,10,17,9,50,216,17,7,23,88,19,7,17,7,27,50,168,17,5,18,6,40,158,6,0,6,45,2,20,42,6,111,249,0,0,6,11,22,19,12,43,60,17,12,8,90,19,13,22,19,14,43,38,7,17,13,17,14,88,145,32,255,0,0,0,95,19,15,17,4,17,14,17,12,17,15,17,6,254,4,111,42,6,0,6,17,14,23,88,19,14,17,14,8,50,213,17,12,23,88,19,12,17,12,9,50,191,17,4,42,30,3,115,153,6,0,6,42,0,19,48,3,0,46,0,0,0,1,0,0,17,2,123,66,3,0,4,142,105,3,47,12,2,3,141,74,0,0,1,125,66,3,0,4,22,10,43,13,2,123,67,3,0,4,6,22,158,6,23,88,10,6,31,32,50,238,42,0,0,19,48,4,0,203,0,0,0,133,1,0,17,3,22,84,2,142,105,10,22,11,22,12,22,13,22,19,8,43,33,2,17,8,148,9,49,8,17,8,12,2,17,8,148,13,2,17,8,148,7,49,5,2,17,8,148,11,17,8,23,88,19,8,17,8,6,50,218,22,19,4,22,19,5,22,19,9,43,38,17,9,8,89,19,10,2,17,9,148,17,10,90,17,10,90,19,11,17,11,17,5,49,8,17,9,19,4,17,11,19,5,17,9,23,88,19,9,17,9,6,50,213,8,17,4,49,6,8,17,4,12,19,4,17,4,8,89,6,26,99,48,2,22,42,17,4,23,89,19,6,21,19,7,17,4,23,89,19,12,43,41,17,12,8,89,37,90,17,4,17,12,89,90,7,2,17,12,148,89,90,19,13,17,13,17,7,49,8,17,12,19,6,17,13,19,7,17,12,23,89,19,12,17,12,8,48,210,3,17,6,25,98,84,23,42,50,22,141,74,0,0,1,128,65,3,0,4,42,26,126,68,3,0,4,42,66,2,45,6,115,74,0,0,10,122,2,128,68,3,0,4,42,26,115,135,1,0,10,122,0,19,48,4,0,23,1,0,0,134,1,0,17,2,111,31,6,0,6,10,2,111,32,6,0,6,11,23,12,22,13,43,108,3,9,152,105,19,4,3,9,23,88,152,105,19,5,17,4,21,50,15,17,4,6,48,10,17,5,21,50,5,17,5,7,49,2,22,42,22,12,17,4,21,51,12,3,9,34,0,0,0,0,160,23,12,43,14,17,4,6,51,9,3,9,6,23,89,107,160,23,12,17,5,21,51,14,3,9,23,88,34,0,0,0,0,160,23,12,43,16,17,5,7,51,11,3,9,23,88,7,23,89,107,160,23,12,9,24,88,13,9,3,142,105,254,4,8,95,45,138,23,12,3,142,105,24,89,19,6,43,116,3,17,6,152,105,19,7,3,17,6,23,88,152,105,19,8,17,7,21,50,15,17,7,6,48,10,17,8,21,50,5,17,8,7,49,2,22,42,22,12,17,7,21,51,13,3,17,6,34,0,0,0,0,160,23,12,43,15,17,7,6,51,10,3,17,6,6,23,89,107,160,23,12,17,8,21,51,15,3,17,6,23,88,34,0,0,0,0,160,23,12,43,17,17,8,7,51,12,3,17,6,23,88,7,23,89,107,160,23,12,17,6,24,89,19,6,17,6,22,254,4,22,254,1,8,95,45,128,23,42,46,115,130,6,0,6,128,68,3,0,4,42,54,2,40,170,6,0,6,2,123,74,3,0,4,42,34,2,3,40,153,6,0,6,42,30,3,115,168,6,0,6,42,0,0,19,48,7,0,132,0,0,0,135,1,0,17,2,123,74,3,0,4,45,123,2,111,166,0,0,6,10,6,111,250,0,0,6,11,6,111,252,0,0,6,12,7,31,40,50,85,8,31,40,50,80,6,111,249,0,0,6,7,25,99,13,7,29,95,44,4,9,23,88,13,8,25,99,19,4,8,29,95,44,6,17,4,23,88,19,4,37,9,17,4,7,8,40,174,6,0,6,19,5,7,8,115,36,6,0,6,19,6,9,17,4,7,8,17,5,17,6,40,171,6,0,6,2,17,6,125,74,3,0,4,42,2,2,40,155,6,0,6,125,74,3,0,4,42,19,48,6,0,208,0,0,0,136,1,0,17,14,4,30,89,10,5,30,89,11,22,12,56,184,0,0,0,8,25,98,13,9,6,49,2,6,13,8,24,4,25,89,40,172,6,0,6,19,4,22,19,5,56,142,0,0,0,17,5,25,98,19,6,17,6,7,49,3,7,19,6,17,5,24,3,25,89,40,172,6,0,6,19,7,22,19,8,31,254,19,10,43,74,14,5,17,4,17,10,88,154,19,11,17,8,17,11,17,7,24,89,148,88,19,8,17,8,17,11,17,7,23,89,148,88,19,8,17,8,17,11,17,7,148,88,19,8,17,8,17,11,17,7,23,88,148,88,19,8,17,8,17,11,17,7,24,88,148,88,19,8,17,10,23,88,19,10,17,10,24,49,177,17,8,31,25,91,19,9,2,17,6,9,17,9,5,14,6,40,173,6,0,6,17,5,23,88,19,5,17,5,3,63,106,255,255,255,8,23,88,12,8,4,63,65,255,255,255,42,58,2,3,50,8,2,4,48,2,2,42,4,42,3,42,0,19,48,5,0,69,0,0,0,111,0,0,17,4,14,4,90,3,88,10,22,11,43,53,22,12,43,36,2,6,8,88,145,32,255,0,0,0,95,13,14,5,3,8,88,4,7,88,9,5,254,2,22,254,1,111,42,6,0,6,8,23,88,12,8,30,50,216,7,23,88,11,6,14,4,88,10,7,30,50,199,42,0,0,0,19,48,5,0,133,1,0,0,137,1,0,17,14,4,30,89,10,5,30,89,11,4,141,55,0,0,27,12,22,13,43,13,8,9,3,141,72,0,0,1,162,9,23,88,13,9,4,50,239,22,19,4,56,78,1,0,0,17,4,25,98,19,5,17,5,6,49,3,6,19,5,8,17,4,154,19,6,17,4,22,48,3,20,43,6,8,17,4,23,89,154,19,7,22,19,8,56,20,1,0,0,17,8,25,98,19,9,17,9,7,49,3,7,19,9,22,19,10,32,255,0,0,0,19,11,22,19,12,22,19,14,17,5,5,90,17,9,88,19,15,56,144,0,0,0,22,19,16,43,48,2,17,15,17,16,88,145,32,255,0,0,0,95,19,17,17,10,17,17,88,19,10,17,17,17,11,47,4,17,17,19,11,17,17,17,12,49,4,17,17,19,12,17,16,23,88,19,16,17,16,30,50,203,17,12,17,11,89,31,24,49,65,17,14,23,88,19,14,17,15,5,88,19,15,43,46,22,19,18,43,24,17,10,2,17,15,17,18,88,145,32,255,0,0,0,95,88,19,10,17,18,23,88,19,18,17,18,30,50,227,17,14,23,88,19,14,17,15,5,88,19,15,17,14,30,50,205,17,14,23,88,19,14,17,15,5,88,19,15,17,14,30,63,104,255,255,255,17,10,28,99,19,13,17,12,17,11,89,31,24,48,52,17,11,23,99,19,13,17,7,44,42,17,8,22,49,37,17,7,17,8,148,24,17,6,17,8,23,89,148,90,88,17,7,17,8,23,89,148,88,24,99,19,19,17,11,17,19,47,4,17,19,19,13,17,6,17,8,17,13,158,17,8,23,88,19,8,17,8,3,63,228,254,255,255,17,4,23,88,19,4,17,4,4,63,170,254,255,255,8,42,0,0,0,19,48,2,0,76,0,0,0,0,0,0,0,2,40,20,0,0,10,2,3,125,75,3,0,4,2,14,4,125,76,3,0,4,2,14,7,125,77,3,0,4,2,4,125,78,3,0,4,2,14,5,125,79,3,0,4,2,14,8,125,80,3,0,4,2,5,125,81,3,0,4,2,14,6,125,82,3,0,4,2,14,9,125,83,3,0,4,42,19,48,8,0,46,0,0,0,129,1,0,17,2,3,4,5,14,4,14,5,14,6,14,7,40,180,6,0,6,10,14,8,14,9,14,10,14,11,14,12,14,13,14,14,14,15,40,179,6,0,6,6,111,182,6,0,6,42,0,0,19,48,5,0,161,0,0,0,138,1,0,17,3,142,105,10,2,123,75,3,0,4,11,2,123,76,3,0,4,12,2,123,77,3,0,4,13,2,123,78,3,0,4,19,4,2,123,79,3,0,4,19,5,2,123,80,3,0,4,19,6,2,123,81,3,0,4,19,7,2,123,82,3,0,4,19,8,2,123,83,3,0,4,19,9,22,19,10,43,77,3,17,10,152,19,11,3,17,10,23,88,152,19,12,9,17,11,90,17,6,17,12,90,88,17,9,88,19,13,3,17,10,7,17,11,90,17,4,17,12,90,88,17,7,88,17,13,91,160,3,17,10,23,88,8,17,11,90,17,5,17,12,90,88,17,8,88,17,13,91,160,17,10,24,88,19,10,17,10,6,50,174,42,0,0,0,19,48,5,0,111,0,0,0,139,1,0,17,3,142,105,10,22,11,43,98,3,7,152,12,4,7,152,13,2,123,77,3,0,4,8,90,2,123,80,3,0,4,9,90,88,2,123,83,3,0,4,88,19,4,3,7,2,123,75,3,0,4,8,90,2,123,78,3,0,4,9,90,88,2,123,81,3,0,4,88,17,4,91,160,4,7,2,123,76,3,0,4,8,90,2,123,79,3,0,4,9,90,88,2,123,82,3,0,4,88,17,4,91,160,7,23,88,11,7,6,50,154,42,0,19,48,9,0,182,0,0,0,140,1,0,17,2,4,89,14,4,88,14,6,89,10,3,5,89,14,5,88,14,7,89,11,6,34,0,0,0,0,51,45,7,34,0,0,0,0,51,37,4,2,89,14,4,4,89,2,5,3,89,14,5,5,89,3,34,0,0,0,0,34,0,0,0,0,34,0,0,128,63,115,175,6,0,6,42,4,14,4,89,14,6,14,4,89,12,5,14,5,89,13,14,7,14,5,89,19,4,37,17,4,90,8,9,90,89,19,5,6,17,4,90,8,7,90,89,17,5,91,19,6,7,90,6,9,90,89,17,5,91,19,7,4,2,89,17,6,4,90,88,14,6,2,89,17,7,14,6,90,88,2,5,3,89,17,6,5,90,88,14,7,3,89,17,7,14,7,90,88,3,17,6,17,7,34,0,0,128,63,115,175,6,0,6,42,94,2,3,4,5,14,4,14,5,14,6,14,7,40,179,6,0,6,111,181,6,0,6,42,0,0,19,48,11,0,249,0,0,0,0,0,0,0,2,123,79,3,0,4,2,123,83,3,0,4,90,2,123,80,3,0,4,2,123,82,3,0,4,90,89,2,123,80,3,0,4,2,123,81,3,0,4,90,2,123,78,3,0,4,2,123,83,3,0,4,90,89,2,123,78,3,0,4,2,123,82,3,0,4,90,2,123,79,3,0,4,2,123,81,3,0,4,90,89,2,123,77,3,0,4,2,123,82,3,0,4,90,2,123,76,3,0,4,2,123,83,3,0,4,90,89,2,123,75,3,0,4,2,123,83,3,0,4,90,2,123,77,3,0,4,2,123,81,3,0,4,90,89,2,123,76,3,0,4,2,123,81,3,0,4,90,2,123,75,3,0,4,2,123,82,3,0,4,90,89,2,123,76,3,0,4,2,123,80,3,0,4,90,2,123,77,3,0,4,2,123,79,3,0,4,90,89,2,123,77,3,0,4,2,123,78,3,0,4,90,2,123,75,3,0,4,2,123,80,3,0,4,90,89,2,123,75,3,0,4,2,123,79,3,0,4,90,2,123,76,3,0,4,2,123,78,3,0,4,90,89,115,175,6,0,6,42,0,0,0,19,48,11,0,119,1,0,0,0,0,0,0,2,123,75,3,0,4,3,123,75,3,0,4,90,2,123,78,3,0,4,3,123,76,3,0,4,90,88,2,123,81,3,0,4,3,123,77,3,0,4,90,88,2,123,75,3,0,4,3,123,78,3,0,4,90,2,123,78,3,0,4,3,123,79,3,0,4,90,88,2,123,81,3,0,4,3,123,80,3,0,4,90,88,2,123,75,3,0,4,3,123,81,3,0,4,90,2,123,78,3,0,4,3,123,82,3,0,4,90,88,2,123,81,3,0,4,3,123,83,3,0,4,90,88,2,123,76,3,0,4,3,123,75,3,0,4,90,2,123,79,3,0,4,3,123,76,3,0,4,90,88,2,123,82,3,0,4,3,123,77,3,0,4,90,88,2,123,76,3,0,4,3,123,78,3,0,4,90,2,123,79,3,0,4,3,123,79,3,0,4,90,88,2,123,82,3,0,4,3,123,80,3,0,4,90,88,2,123,76,3,0,4,3,123,81,3,0,4,90,2,123,79,3,0,4,3,123,82,3,0,4,90,88,2,123,82,3,0,4,3,123,83,3,0,4,90,88,2,123,77,3,0,4,3,123,75,3,0,4,90,2,123,80,3,0,4,3,123,76,3,0,4,90,88,2,123,83,3,0,4,3,123,77,3,0,4,90,88,2,123,77,3,0,4,3,123,78,3,0,4,90,2,123,80,3,0,4,3,123,79,3,0,4,90,88,2,123,83,3,0,4,3,123,80,3,0,4,90,88,2,123,77,3,0,4,3,123,81,3,0,4,90,2,123,80,3,0,4,3,123,82,3,0,4,90,88,2,123,83,3,0,4,3,123,83,3,0,4,90,88,115,175,6,0,6,42,0,19,48,2,0,115,2,0,0,141,1,0,17,3,44,30,3,26,111,44,0,0,10,44,21,3,26,111,77,0,0,10,116,63,0,0,1,19,16,17,16,44,3,17,16,42,2,142,105,10,23,11,23,12,23,13,22,19,4,22,19,5,22,19,6,22,19,7,22,19,8,22,19,9,22,19,10,22,19,11,22,19,12,22,19,13,22,19,14,2,142,105,25,49,32,2,22,145,32,239,0,0,0,51,22,2,23,145,32,187,0,0,0,51,12,2,24,145,32,191,0,0,0,254,1,43,1,22,19,15,22,19,17,56,100,1,0,0,2,17,17,145,32,255,0,0,0,95,19,18,9,44,112,17,4,22,49,22,17,18,32,128,0,0,0,95,45,4,22,13,43,93,17,4,23,89,19,4,43,85,17,18,32,128,0,0,0,95,44,75,17,18,31,64,95,45,4,22,13,43,64,17,4,23,88,19,4,17,18,31,32,95,45,8,17,5,23,88,19,5,43,43,17,4,23,88,19,4,17,18,31,16,95,45,8,17,6,23,88,19,6,43,22,17,4,23,88,19,4,17,18,30,95,45,8,17,7,23,88,19,7,43,2,22,13,7,44,61,17,18,31,127,49,13,17,18,32,160,0,0,0,47,4,22,11,43,42,17,18,32,159,0,0,0,49,33,17,18,32,192,0,0,0,50,18,17,18,32,215,0,0,0,46,9,17,18,32,247,0,0,0,51,6,17,14,23,88,19,14,8,57,153,0,0,0,17,8,22,49,33,17,18,31,64,50,15,17,18,31,127,46,9,17,18,32,252,0,0,0,49,4,22,12,43,123,17,8,23,89,19,8,43,115,17,18,32,128,0,0,0,46,18,17,18,32,160,0,0,0,46,9,17,18,32,239,0,0,0,49,4,22,12,43,84,17,18,32,160,0,0,0,49,36,17,18,32,224,0,0,0,47,27,17,9,23,88,19,9,22,19,11,17,10,23,88,19,10,17,10,17,12,49,45,17,10,19,12,43,39,17,18,31,127,49,27,17,8,23,88,19,8,22,19,10,17,11,23,88,19,11,17,11,17,13,49,12,17,11,19,13,43,6,22,19,10,22,19,11,17,17,23,88,19,17,17,17,6,47,10,7,8,96,9,96,58,141,254,255,255,9,44,7,17,4,22,49,2,22,13,8,44,7,17,8,22,49,2,22,12,9,44,21,17,15,45,11,17,5,17,6,88,17,7,88,22,49,6,114,13,19,0,112,42,8,44,23,126,90,3,0,4,45,10,17,12,25,47,5,17,13,25,50,6,126,85,3,0,4,42,7,8,95,44,30,17,12,24,51,5,17,9,24,46,14,17,14,31,10,90,6,47,6,114,81,14,0,112,42,126,85,3,0,4,42,7,44,6,114,81,14,0,112,42,8,44,6,126,85,3,0,4,42,9,38,114,13,19,0,112,42,0,19,48,3,0,66,0,0,0,0,0,0,0,114,37,54,0,112,128,85,3,0,4,114,45,55,0,112,128,86,3,0,4,126,85,3,0,4,114,13,19,0,112,27,40,240,0,0,10,44,21,114,141,55,0,112,114,13,19,0,112,27,40,240,0,0,10,22,254,1,43,1,23,128,90,3,0,4,42,0,0,19,48,6,0,163,0,0,0,64,0,0,17,2,40,20,0,0,10,2,3,125,104,3,0,4,2,4,125,103,3,0,4,2,5,125,105,3,0,4,2,4,141,72,0,0,1,125,99,3,0,4,2,4,141,72,0,0,1,125,100,3,0,4,23,10,22,11,43,31,2,123,99,3,0,4,7,6,158,6,23,98,10,6,4,50,10,6,3,97,10,6,4,23,89,95,10,7,23,88,11,7,4,50,221,22,12,43,20,2,123,100,3,0,4,2,123,99,3,0,4,8,148,8,158,8,23,88,12,8,4,23,89,50,230,2,2,23,141,72,0,0,1,115,198,6,0,6,125,101,3,0,4,2,2,23,141,72,0,0,1,37,22,23,158,115,198,6,0,6,125,102,3,0,4,42,30,2,123,101,3,0,4,42,30,2,123,102,3,0,4,42,0,19,48,3,0,41,0,0,0,205,0,0,17,3,22,47,6,115,74,0,0,10,122,4,45,7,2,123,101,3,0,4,42,3,23,88,141,72,0,0,1,10,6,22,4,158,2,6,115,198,6,0,6,42,18,2,3,97,42,38,2,123,99,3,0,4,3,148,42,74,3,45,6,115,74,0,0,10,122,2,123,100,3,0,4,3,148,42,138,3,45,6,115,244,0,0,10,122,2,123,99,3,0,4,2,123,103,3,0,4,2,123,100,3,0,4,3,148,89,23,89,148,42,170,3,44,3,4,45,2,22,42,2,123,99,3,0,4,2,123,100,3,0,4,3,148,2,123,100,3,0,4,4,148,88,2,123,103,3,0,4,23,89,93,148,42,30,2,123,103,3,0,4,42,30,2,123,105,3,0,4,42,0,0,0,19,48,5,0,72,0,0,0,1,0,0,17,27,141,13,0,0,1,37,22,114,155,55,0,112,162,37,23,2,123,104,3,0,4,10,18,0,114,167,55,0,112,40,88,1,0,10,162,37,24,114,171,55,0,112,162,37,25,2,123,103,3,0,4,140,72,0,0,1,162,37,26,114,183,19,0,112,162,40,134,0,0,10,42,19,48,3,0,135,0,0,0,0,0,0,0,32,105,16,0,0,32,0,16,0,0,23,115,185,6,0,6,128,91,3,0,4,32,9,4,0,0,32,0,4,0,0,23,115,185,6,0,6,128,92,3,0,4,31,67,31,64,23,115,185,6,0,6,128,93,3,0,4,31,19,31,16,23,115,185,6,0,6,128,94,3,0,4,32,29,1,0,0,32,0,1,0,0,22,115,185,6,0,6,128,95,3,0,4,32,45,1,0,0,32,0,1,0,0,23,115,185,6,0,6,128,96,3,0,4,126,96,3,0,4,128,97,3,0,4,126,93,3,0,4,128,98,3,0,4,42,0,19,48,5,0,115,0,0,0,2,0,0,17,2,40,20,0,0,10,4,142,45,6,115,74,0,0,10,122,2,3,125,106,3,0,4,4,142,105,10,6,23,49,76,4,22,148,45,71,23,11,43,4,7,23,88,11,7,6,47,5,4,7,148,44,243,7,6,51,13,2,23,141,72,0,0,1,125,107,3,0,4,42,2,6,7,89,141,72,0,0,1,125,107,3,0,4,4,7,2,123,107,3,0,4,22,2,123,107,3,0,4,142,105,40,94,0,0,10,42,2,4,125,107,3,0,4,42,30,2,123,107,3,0,4,42,46,2,123,107,3,0,4,142,105,23,89,42,50,2,123,107,3,0,4,22,148,22,254,1,42,82,2,123,107,3,0,4,2,123,107,3,0,4,142,105,23,89,3,89,148,42,0,0,0,19,48,3,0,118,0,0,0,206,0,0,17,22,10,3,45,8,2,22,40,202,6,0,6,42,3,23,51,37,2,123,107,3,0,4,12,22,13,43,18,8,9,148,19,4,6,17,4,40,189,6,0,6,10,9,23,88,13,9,8,142,105,50,232,6,42,2,123,107,3,0,4,22,148,10,2,123,107,3,0,4,142,105,11,23,19,5,43,34,2,123,106,3,0,4,3,6,111,193,6,0,6,2,123,107,3,0,4,17,5,148,40,189,6,0,6,10,17,5,23,88,19,5,17,5,7,50,217,6,42,0,0,19,48,5,0,153,0,0,0,207,0,0,17,2,123,106,3,0,4,3,123,106,3,0,4,111,189,0,0,10,45,11,114,175,55,0,112,115,31,0,0,10,122,2,40,201,6,0,6,44,2,3,42,3,111,201,6,0,6,44,2,2,42,2,123,107,3,0,4,10,3,123,107,3,0,4,11,6,142,105,7,142,105,49,4,6,7,10,11,7,142,105,141,72,0,0,1,12,7,142,105,6,142,105,89,13,7,22,8,22,9,40,94,0,0,10,9,19,4,43,25,8,17,4,6,17,4,9,89,148,7,17,4,148,40,189,6,0,6,158,17,4,23,88,19,4,17,4,7,142,105,50,224,2,123,106,3,0,4,8,115,198,6,0,6,42,0,0,0,19,48,7,0,182,0,0,0,208,0,0,17,2,123,106,3,0,4,3,123,106,3,0,4,111,189,0,0,10,45,11,114,175,55,0,112,115,31,0,0,10,122,2,40,201,6,0,6,45,8,3,111,201,6,0,6,44,12,2,123,106,3,0,4,111,186,6,0,6,42,2,123,107,3,0,4,10,6,142,105,11,3,123,107,3,0,4,12,8,142,105,13,7,9,88,23,89,141,72,0,0,1,19,4,22,19,5,43,66,6,17,5,148,19,6,22,19,7,43,44,17,4,17,5,17,7,88,17,4,17,5,17,7,88,148,2,123,106,3,0,4,17,6,8,17,7,148,111,193,6,0,6,40,189,6,0,6,158,17,7,23,88,19,7,17,7,9,50,207,17,5,23,88,19,5,17,5,7,50,185,2,123,106,3,0,4,17,4,115,198,6,0,6,42,0,0,19,48,5,0,85,0,0,0,126,0,0,17,3,45,12,2,123,106,3,0,4,111,186,6,0,6,42,3,23,51,2,2,42,2,123,107,3,0,4,142,105,10,6,141,72,0,0,1,11,22,12,43,27,7,8,2,123,106,3,0,4,2,123,107,3,0,4,8,148,3,111,193,6,0,6,158,8,23,88,12,8,6,50,225,2,123,106,3,0,4,7,115,198,6,0,6,42,0,0,0,19,48,5,0,91,0,0,0,126,0,0,17,3,22,47,6,115,74,0,0,10,122,4,45,12,2,123,106,3,0,4,111,186,6,0,6,42,2,123,107,3,0,4,142,105,10,6,3,88,141,72,0,0,1,11,22,12,43,27,7,8,2,123,106,3,0,4,2,123,107,3,0,4,8,148,4,111,193,6,0,6,158,8,23,88,12,8,6,50,225,2,123,106,3,0,4,7,115,198,6,0,6,42,0,19,48,4,0,216,0,0,0,142,1,0,17,2,123,106,3,0,4,3,123,106,3,0,4,111,189,0,0,10,45,11,114,175,55,0,112,115,31,0,0,10,122,3,111,201,6,0,6,44,11,114,15,56,0,112,115,31,0,0,10,122,2,123,106,3,0,4,111,186,6,0,6,10,2,11,3,3,111,200,6,0,6,111,202,6,0,6,12,2,123,106,3,0,4,8,111,192,6,0,6,13,43,88,7,111,200,6,0,6,3,111,200,6,0,6,89,19,4,2,123,106,3,0,4,7,7,111,200,6,0,6,111,202,6,0,6,9,111,193,6,0,6,19,5,3,17,4,17,5,111,207,6,0,6,19,6,2,123,106,3,0,4,17,4,17,5,111,188,6,0,6,19,7,6,17,7,111,204,6,0,6,10,7,17,6,111,204,6,0,6,11,7,111,200,6,0,6,3,111,200,6,0,6,50,8,7,111,201,6,0,6,44,146,24,141,219,0,0,2,37,22,6,162,37,23,7,162,42,19,48,2,0,207,0,0,0,143,1,0,17,30,2,40,200,6,0,6,90,115,22,0,0,10,10,2,40,200,6,0,6,11,56,167,0,0,0,2,7,40,202,6,0,6,12,8,57,149,0,0,0,8,22,47,17,6,114,133,20,0,112,111,119,0,0,10,38,8,101,12,43,21,6,111,120,0,0,10,22,49,12,6,114,141,20,0,112,111,119,0,0,10,38,7,44,4,8,23,46,62,2,123,106,3,0,4,8,111,191,6,0,6,13,9,45,11,6,31,49,111,23,0,0,10,38,43,35,9,23,51,11,6,31,97,111,23,0,0,10,38,43,20,6,114,39,56,0,112,111,119,0,0,10,38,6,9,111,191,0,0,10,38,7,44,35,7,23,51,11,6,31,120,111,23,0,0,10,38,43,20,6,114,149,20,0,112,111,119,0,0,10,38,6,7,111,191,0,0,10,38,7,23,89,11,7,22,60,82,255,255,255,6,111,25,0,0,10,42,58,2,40,20,0,0,10,2,3,125,108,3,0,4,42,0,0,19,48,5,0,246,0,0,0,144,1,0,17,2,123,108,3,0,4,3,115,198,6,0,6,10,4,141,72,0,0,1,11,23,12,22,19,9,43,57,6,2,123,108,3,0,4,17,9,2,123,108,3,0,4,111,195,6,0,6,88,111,190,6,0,6,111,203,6,0,6,19,10,7,7,142,105,23,89,17,9,89,17,10,158,17,10,44,2,22,12,17,9,23,88,19,9,17,9,4,50,194,8,44,2,23,42,2,123,108,3,0,4,7,115,198,6,0,6,13,2,2,123,108,3,0,4,4,23,111,188,6,0,6,9,4,40,212,6,0,6,19,4,17,4,45,2,22,42,17,4,22,154,19,5,2,17,5,40,213,6,0,6,19,6,17,6,45,2,22,42,17,4,23,154,19,7,2,17,7,17,6,40,214,6,0,6,19,8,22,19,11,43,55,3,142,105,23,89,2,123,108,3,0,4,17,6,17,11,148,111,191,6,0,6,89,19,12,17,12,22,47,2,22,42,3,17,12,3,17,12,148,17,8,17,11,148,40,189,6,0,6,158,17,11,23,88,19,11,17,11,17,6,142,105,50,193,23,42,0,0,19,48,4,0,82,1,0,0,145,1,0,17,3,111,200,6,0,6,4,111,200,6,0,6,47,6,3,4,16,1,16,2,3,10,4,11,2,123,108,3,0,4,111,186,6,0,6,12,2,123,108,3,0,4,111,187,6,0,6,13,56,204,0,0,0,6,19,8,8,19,9,7,10,9,12,6,111,201,6,0,6,44,2,20,42,17,8,11,2,123,108,3,0,4,111,186,6,0,6,19,10,6,6,111,200,6,0,6,111,202,6,0,6,19,11,2,123,108,3,0,4,17,11,111,192,6,0,6,19,12,43,83,7,111,200,6,0,6,6,111,200,6,0,6,89,19,13,2,123,108,3,0,4,7,7,111,200,6,0,6,111,202,6,0,6,17,12,111,193,6,0,6,19,14,17,10,2,123,108,3,0,4,17,13,17,14,111,188,6,0,6,111,204,6,0,6,19,10,7,6,17,13,17,14,111,207,6,0,6,111,204,6,0,6,11,7,111,200,6,0,6,6,111,200,6,0,6,50,8,7,111,201,6,0,6,44,151,17,10,8,111,205,6,0,6,17,9,111,204,6,0,6,13,7,111,200,6,0,6,6,111,200,6,0,6,50,2,20,42,7,111,200,6,0,6,5,24,91,60,38,255,255,255,9,22,111,202,6,0,6,19,4,17,4,45,2,20,42,2,123,108,3,0,4,17,4,111,192,6,0,6,19,5,9,17,5,111,206,6,0,6,19,6,7,17,5,111,206,6,0,6,19,7,24,141,219,0,0,2,37,22,17,6,162,37,23,17,7,162,42,0,0,19,48,5,0,99,0,0,0,203,0,0,17,3,111,200,6,0,6,10,6,23,51,17,23,141,72,0,0,1,37,22,3,23,111,202,6,0,6,158,42,6,141,72,0,0,1,11,22,12,23,13,43,32,3,9,111,203,6,0,6,45,19,7,8,2,123,108,3,0,4,9,111,192,6,0,6,158,8,23,88,12,9,23,88,13,9,2,123,108,3,0,4,111,194,6,0,6,47,4,8,6,50,206,8,6,46,2,20,42,7,42,0,19,48,6,0,189,0,0,0,146,1,0,17,4,142,105,10,6,141,72,0,0,1,11,22,12,56,162,0,0,0,2,123,108,3,0,4,4,8,148,111,192,6,0,6,13,23,19,4,22,19,5,43,65,8,17,5,46,54,2,123,108,3,0,4,4,17,5,148,9,111,193,6,0,6,19,6,17,6,23,95,44,7,17,6,31,254,95,43,4,17,6,23,96,19,7,2,123,108,3,0,4,17,4,17,7,111,193,6,0,6,19,4,17,5,23,88,19,5,17,5,6,50,186,7,8,2,123,108,3,0,4,3,9,111,203,6,0,6,2,123,108,3,0,4,17,4,111,192,6,0,6,111,193,6,0,6,158,2,123,108,3,0,4,111,195,6,0,6,44,18,7,8,2,123,108,3,0,4,7,8,148,9,111,193,6,0,6,158,8,23,88,12,8,6,63,87,255,255,255,7,42,210,2,40,20,0,0,10,2,3,125,109,3,0,4,2,115,136,1,0,10,125,110,3,0,4,2,123,110,3,0,4,3,23,141,72,0,0,1,37,22,23,158,115,198,6,0,6,111,137,1,0,10,42,0,0,19,48,8,0,145,0,0,0,147,1,0,17,3,2,123,110,3,0,4,111,138,1,0,10,50,118,2,123,110,3,0,4,2,123,110,3,0,4,111,138,1,0,10,23,89,111,139,1,0,10,10,2,123,110,3,0,4,111,138,1,0,10,11,43,75,6,2,123,109,3,0,4,24,141,72,0,0,1,37,22,23,158,37,23,2,123,109,3,0,4,7,23,89,2,123,109,3,0,4,111,195,6,0,6,88,111,190,6,0,6,158,115,198,6,0,6,111,205,6,0,6,12,2,123,110,3,0,4,8,111,137,1,0,10,8,10,7,23,88,11,7,3,49,177,2,123,110,3,0,4,3,111,139,1,0,10,42,0,0,0,19,48,5,0,140,0,0,0,148,1,0,17,4,45,11,114,45,56,0,112,115,31,0,0,10,122,3,142,105,4,89,10,6,22,48,11,114,97,56,0,112,115,31,0,0,10,122,2,4,40,216,6,0,6,11,6,141,72,0,0,1,12,3,22,8,22,6,40,94,0,0,10,2,123,109,3,0,4,8,115,198,6,0,6,4,23,111,207,6,0,6,7,111,208,6,0,6,23,154,111,199,6,0,6,13,4,9,142,105,89,19,4,22,19,5,43,13,3,6,17,5,88,22,158,17,5,23,88,19,5,17,5,17,4,50,237,9,22,3,6,17,4,88,9,142,105,40,94,0,0,10,42,194,2,40,159,0,0,10,44,2,22,42,2,40,140,1,0,10,44,6,32,255,255,255,127,42,2,2,34,0,0,0,0,50,7,34,0,0,0,63,43,5,34,0,0,0,191,88,105,42,0,0,0,19,48,3,0,21,0,0,0,87,0,0,17,2,4,89,3,5,89,10,37,90,6,6,90,88,108,40,176,0,0,10,107,42,0,0,0,19,48,3,0,21,0,0,0,1,0,0,17,2,4,89,3,5,89,10,37,90,6,6,90,88,108,40,176,0,0,10,107,42,0,0,0,19,48,2,0,28,0,0,0,203,0,0,17,22,10,2,11,22,12,43,12,7,8,148,13,6,9,88,10,8,23,88,12,8,7,142,105,50,238,6,42,58,2,40,20,0,0,10,2,3,125,112,3,0,4,42,0,19,48,11,0,46,1,0,0,149,1,0,17,2,123,112,3,0,4,111,32,6,0,6,10,2,123,112,3,0,4,111,31,6,0,6,11,6,23,99,12,7,23,99,13,23,6,32,0,1,0,0,91,40,139,0,0,10,19,4,23,7,32,0,1,0,0,91,40,139,0,0,10,19,5,22,19,6,6,19,7,22,19,8,7,19,9,2,9,22,17,8,17,9,8,17,4,101,17,6,17,7,9,23,99,40,224,6,0,6,19,10,17,10,45,2,20,42,17,10,111,61,1,0,6,105,23,89,19,6,2,9,17,5,101,17,8,17,9,8,22,17,6,17,7,8,23,99,40,224,6,0,6,19,11,17,11,45,2,20,42,17,11,111,60,1,0,6,105,23,89,19,8,2,9,17,5,17,8,17,9,8,22,17,6,17,7,8,23,99,40,224,6,0,6,19,12,17,12,45,2,20,42,17,12,111,60,1,0,6,105,23,88,19,9,2,9,22,17,8,17,9,8,17,4,17,6,17,7,9,23,99,40,224,6,0,6,19,13,17,13,45,2,20,42,17,13,111,61,1,0,6,105,23,88,19,7,2,9,22,17,8,17,9,8,17,4,101,17,6,17,7,9,24,99,40,224,6,0,6,19,10,17,10,45,2,20,42,26,141,40,0,0,2,37,22,17,10,162,37,23,17,11,162,37,24,17,12,162,37,25,17,13,162,42,0,0,19,48,6,0,225,0,0,0,150,1,0,17,20,10,14,5,11,3,12,56,189,0,0,0,4,45,16,2,7,14,9,5,14,4,23,40,225,6,0,6,13,43,15,2,8,14,9,14,7,14,8,22,40,225,6,0,6,13,9,58,138,0,0,0,6,45,2,20,42,4,45,65,7,14,6,89,19,4,6,22,148,3,47,40,6,23,148,3,49,21,6,14,6,22,48,3,23,43,1,22,148,107,17,4,107,115,59,1,0,6,42,6,22,148,107,17,4,107,115,59,1,0,6,42,6,23,148,107,17,4,107,115,59,1,0,6,42,8,4,89,19,5,6,22,148,14,5,47,40,6,23,148,14,5,49,20,17,5,107,6,4,22,50,3,23,43,1,22,148,107,115,59,1,0,6,42,17,5,107,6,22,148,107,115,59,1,0,6,42,17,5,107,6,23,148,107,115,59,1,0,6,42,9,10,7,14,6,88,11,8,4,88,12,7,14,8,47,17,7,14,7,50,12,8,14,4,47,7,8,5,60,45,255,255,255,20,42,0,0,0,19,48,4,0,6,1,0,0,114,0,0,17,5,14,4,88,23,99,10,6,11,43,102,14,5,45,15,2,123,112,3,0,4,3,7,111,41,6,0,6,43,13,2,123,112,3,0,4,7,3,111,41,6,0,6,44,6,7,23,89,11,43,62,7,13,7,23,89,11,7,5,50,34,14,5,45,15,2,123,112,3,0,4,3,7,111,41,6,0,6,43,13,2,123,112,3,0,4,7,3,111,41,6,0,6,44,214,9,7,89,19,4,7,5,50,5,17,4,4,49,4,9,11,43,4,7,5,47,150,7,23,88,11,6,12,43,107,14,5,45,15,2,123,112,3,0,4,3,8,111,41,6,0,6,43,13,2,123,112,3,0,4,8,3,111,41,6,0,6,44,6,8,23,88,12,43,67,8,19,5,8,23,88,12,8,14,4,47,34,14,5,45,15,2,123,112,3,0,4,3,8,111,41,6,0,6,43,13,2,123,112,3,0,4,8,3,111,41,6,0,6,44,213,8,17,5,89,19,6,8,14,4,47,5,17,6,4,49,5,17,5,12,43,5,8,14,4,50,144,8,23,89,12,8,7,48,2,20,42,24,141,72,0,0,1,37,22,7,158,37,23,8,158,42,0,0,19,48,2,0,62,0,0,0,151,1,0,17,2,45,2,20,42,2,115,228,6,0,6,10,6,123,121,3,0,4,22,50,37,6,123,118,3,0,4,22,50,28,6,123,120,3,0,4,6,123,116,3,0,4,47,14,6,123,119,3,0,4,6,123,117,3,0,4,50,2,20,42,6,42,0,0,19,48,4,0,60,0,0,0,151,1,0,17,2,3,4,5,115,229,6,0,6,10,6,123,121,3,0,4,22,50,37,6,123,118,3,0,4,22,50,28,6,123,120,3,0,4,6,123,116,3,0,4,47,14,6,123,119,3,0,4,6,123,117,3,0,4,50,2,20,42,6,42,106,2,3,31,10,3,111,31,6,0,6,24,91,3,111,32,6,0,6,24,91,40,229,6,0,6,42,0,19,48,3,0,80,0,0,0,1,0,0,17,2,40,20,0,0,10,2,3,125,115,3,0,4,2,3,111,32,6,0,6,125,116,3,0,4,2,3,111,31,6,0,6,125,117,3,0,4,4,24,91,10,2,5,6,89,125,118,3,0,4,2,5,6,88,125,119,3,0,4,2,14,4,6,89,125,121,3,0,4,2,14,4,6,88,125,120,3,0,4,42,19,48,5,0,76,2,0,0,152,1,0,17,2,123,118,3,0,4,10,2,123,119,3,0,4,11,2,123,121,3,0,4,12,2,123,120,3,0,4,13,22,19,4,23,19,5,22,19,6,22,19,7,22,19,8,22,19,9,22,19,10,56,28,1,0,0,22,19,5,23,19,11,43,36,2,8,9,7,22,40,233,6,0,6,19,11,17,11,44,12,7,23,88,11,23,19,5,23,19,7,43,8,17,7,45,4,7,23,88,11,17,11,45,4,17,7,45,9,7,2,123,117,3,0,4,50,203,7,2,123,117,3,0,4,50,8,23,19,4,56,213,0,0,0,23,19,12,43,36,2,6,7,9,23,40,233,6,0,6,19,12,17,12,44,12,9,23,88,13,23,19,5,23,19,8,43,8,17,8,45,4,9,23,88,13,17,12,45,4,17,8,45,9,9,2,123,116,3,0,4,50,203,9,2,123,116,3,0,4,50,8,23,19,4,56,138,0,0,0,23,19,13,43,36,2,8,9,6,22,40,233,6,0,6,19,13,17,13,44,12,6,23,89,10,23,19,5,23,19,9,43,8,17,9,45,4,6,23,89,10,17,13,45,4,17,9,45,4,6,22,47,208,6,22,47,5,23,19,4,43,76,23,19,14,43,36,2,6,7,8,23,40,233,6,0,6,19,14,17,14,44,12,8,23,89,12,23,19,5,23,19,10,43,8,17,10,45,4,8,23,89,12,17,14,45,4,17,10,45,4,8,22,47,208,8,22,47,5,23,19,4,43,14,17,5,44,3,23,19,6,17,5,58,221,254,255,255,17,4,22,254,1,17,6,95,57,228,0,0,0,7,6,89,19,15,20,19,16,23,19,20,43,28,2,6,107,9,17,20,89,107,6,17,20,88,107,9,107,40,231,6,0,6,19,16,17,20,23,88,19,20,17,16,45,6,17,20,17,15,50,218,17,16,45,2,20,42,20,19,17,23,19,21,43,28,2,6,107,8,17,21,88,107,6,17,21,88,107,8,107,40,231,6,0,6,19,17,17,21,23,88,19,21,17,17,45,6,17,21,17,15,50,218,17,17,45,2,20,42,20,19,18,23,19,22,43,28,2,7,107,8,17,22,88,107,7,17,22,89,107,8,107,40,231,6,0,6,19,18,17,22,23,88,19,22,17,18,45,6,17,22,17,15,50,218,17,18,45,2,20,42,20,19,19,23,19,23,43,28,2,7,107,9,17,23,89,107,7,17,23,89,107,9,107,40,231,6,0,6,19,19,17,23,23,88,19,23,17,19,45,6,17,23,17,15,50,218,17,19,45,2,20,42,2,17,19,17,16,17,18,17,17,40,232,6,0,6,42,20,42,19,48,4,0,100,0,0,0,153,1,0,17,3,4,5,14,4,40,219,6,0,6,40,218,6,0,6,10,5,3,89,6,107,91,11,14,4,4,89,6,107,91,12,22,13,43,59,3,9,107,7,90,88,40,218,6,0,6,19,4,4,9,107,8,90,88,40,218,6,0,6,19,5,2,123,115,3,0,4,17,4,17,5,111,41,6,0,6,44,12,17,4,107,17,5,107,115,59,1,0,6,42,9,23,88,13,9,6,50,193,20,42,19,48,6,0,20,1,0,0,140,1,0,17,3,111,60,1,0,6,10,3,111,61,1,0,6,11,4,111,60,1,0,6,12,4,111,61,1,0,6,13,5,111,60,1,0,6,19,4,5,111,61,1,0,6,19,5,14,4,111,60,1,0,6,19,6,14,4,111,61,1,0,6,19,7,6,2,123,117,3,0,4,107,34,0,0,0,64,91,52,99,26,141,40,0,0,2,37,22,17,6,34,0,0,128,63,89,17,7,34,0,0,128,63,88,115,59,1,0,6,162,37,23,8,34,0,0,128,63,88,9,34,0,0,128,63,88,115,59,1,0,6,162,37,24,17,4,34,0,0,128,63,89,17,5,34,0,0,128,63,89,115,59,1,0,6,162,37,25,6,34,0,0,128,63,88,7,34,0,0,128,63,89,115,59,1,0,6,162,42,26,141,40,0,0,2,37,22,17,6,34,0,0,128,63,88,17,7,34,0,0,128,63,88,115,59,1,0,6,162,37,23,8,34,0,0,128,63,88,9,34,0,0,128,63,89,115,59,1,0,6,162,37,24,17,4,34,0,0,128,63,89,17,5,34,0,0,128,63,88,115,59,1,0,6,162,37,25,6,34,0,0,128,63,89,7,34,0,0,128,63,89,115,59,1,0,6,162,42,19,48,3,0,66,0,0,0,2,0,0,17,14,4,44,31,3,10,43,21,2,123,115,3,0,4,6,5,111,41,6,0,6,44,2,23,42,6,23,88,10,6,4,49,231,43,29,3,11,43,21,2,123,115,3,0,4,5,7,111,41,6,0,6,44,2,23,42,7,23,88,11,7,4,49,231,22,42,46,2,3,31,59,4,40,129,7,0,6,42,46,2,3,31,59,4,40,131,7,0,6,42,30,2,40,134,7,0,6,42,0,0,19,48,16,0,181,0,0,0,154,1,0,17,3,111,36,1,0,6,10,6,44,28,6,114,143,56,0,112,111,141,1,0,10,22,50,14,6,114,79,10,0,112,111,141,1,0,10,22,47,2,20,42,114,157,56,0,112,6,31,13,23,40,131,7,0,6,11,114,171,56,0,112,6,31,13,23,40,131,7,0,6,12,114,185,56,0,112,25,6,23,40,238,6,0,6,13,114,193,56,0,112,25,6,23,40,238,6,0,6,19,4,114,203,56,0,112,6,31,13,22,40,131,7,0,6,19,5,114,219,56,0,112,6,31,13,23,40,131,7,0,6,19,6,17,6,44,13,23,141,63,0,0,1,37,22,17,6,162,43,1,20,19,7,7,40,122,7,0,6,20,8,9,20,17,4,20,20,17,5,17,7,20,20,20,20,20,20,115,244,6,0,6,42,0,0,0,19,48,4,0,72,0,0,0,155,1,0,17,20,10,23,11,43,50,2,7,140,72,0,0,1,114,229,56,0,112,40,75,0,0,10,4,31,13,5,40,131,7,0,6,12,8,44,24,6,45,6,115,5,1,0,10,10,6,8,111,142,1,0,10,7,23,88,11,7,3,49,202,6,45,2,20,42,6,40,94,1,0,6,42,19,48,16,0,206,0,0,0,156,1,0,17,3,111,36,1,0,6,10,6,44,13,6,114,233,56,0,112,111,89,1,0,10,45,2,20,42,114,249,56,0,112,6,23,40,234,6,0,6,11,7,45,2,20,42,7,22,154,40,241,6,0,6,114,255,56,0,112,6,23,40,235,6,0,6,12,114,13,57,0,112,6,23,40,234,6,0,6,13,114,23,57,0,112,6,23,40,234,6,0,6,19,4,114,37,57,0,112,6,22,40,235,6,0,6,19,5,114,49,57,0,112,6,23,40,234,6,0,6,19,6,114,59,57,0,112,6,23,40,235,6,0,6,19,7,17,7,30,40,125,7,0,6,45,3,20,19,7,114,71,57,0,112,6,23,40,234,6,0,6,19,8,114,81,57,0,112,6,23,40,235,6,0,6,19,9,40,122,7,0,6,20,8,9,20,17,4,20,20,17,5,17,6,20,17,9,17,7,20,17,8,20,115,244,6,0,6,42,0,0,19,48,5,0,43,0,0,0,1,0,0,17,2,31,44,111,0,1,0,10,10,6,22,50,28,2,6,23,88,111,226,0,0,10,114,241,23,0,112,2,22,6,111,241,0,0,10,40,246,0,0,10,42,2,42,30,2,40,236,6,0,6,42,0,19,48,17,0,27,0,0,0,0,0,0,0,2,3,20,20,4,5,14,4,14,5,20,20,14,6,14,7,20,20,20,20,20,40,244,6,0,6,42,0,19,48,2,0,232,0,0,0,0,0,0,0,2,22,40,104,7,0,6,14,4,44,25,14,5,44,21,14,4,142,105,14,5,142,105,46,11,114,91,57,0,112,115,31,0,0,10,122,14,6,44,25,14,7,44,21,14,6,142,105,14,7,142,105,46,11,114,169,57,0,112,115,31,0,0,10,122,14,10,44,25,14,11,44,21,14,10,142,105,14,11,142,105,46,11,114,233,57,0,112,115,31,0,0,10,122,2,3,125,122,3,0,4,2,4,125,123,3,0,4,2,5,125,124,3,0,4,2,14,4,125,125,3,0,4,2,14,5,125,126,3,0,4,2,14,6,125,127,3,0,4,2,14,7,125,128,3,0,4,2,14,8,125,129,3,0,4,2,14,9,125,130,3,0,4,2,14,10,125,131,3,0,4,2,14,11,125,132,3,0,4,2,14,12,125,133,3,0,4,2,14,13,125,134,3,0,4,2,14,14,125,135,3,0,4,2,14,15,125,136,3,0,4,2,14,16,125,137,3,0,4,2,2,40,5,7,0,6,125,184,3,0,4,42,30,2,123,122,3,0,4,42,30,2,123,123,3,0,4,42,30,2,123,124,3,0,4,42,30,2,123,125,3,0,4,42,30,2,123,126,3,0,4,42,30,2,123,127,3,0,4,42,30,2,123,128,3,0,4,42,30,2,123,129,3,0,4,42,30,2,123,130,3,0,4,42,30,2,123,131,3,0,4,42,30,2,123,132,3,0,4,42,30,2,123,135,3,0,4,42,30,2,123,133,3,0,4,42,30,2,123,136,3,0,4,42,30,2,123,134,3,0,4,42,30,2,123,137,3,0,4,42,19,48,2,0,171,0,0,0,47,0,0,17,31,100,115,22,0,0,10,10,2,123,122,3,0,4,6,40,109,7,0,6,2,123,123,3,0,4,6,40,109,7,0,6,2,123,124,3,0,4,6,40,108,7,0,6,2,123,135,3,0,4,6,40,108,7,0,6,2,123,133,3,0,4,6,40,108,7,0,6,2,123,131,3,0,4,6,40,109,7,0,6,2,123,125,3,0,4,6,40,109,7,0,6,2,123,127,3,0,4,6,40,109,7,0,6,2,123,129,3,0,4,6,40,108,7,0,6,2,123,136,3,0,4,6,40,109,7,0,6,2,123,134,3,0,4,6,40,108,7,0,6,2,123,137,3,0,4,6,40,109,7,0,6,2,123,130,3,0,4,6,40,108,7,0,6,6,111,25,0,0,10,42,0,19,48,16,0,195,0,0,0,157,1,0,17,3,111,36,1,0,6,10,6,44,13,6,114,47,58,0,112,111,89,1,0,10,45,2,20,42,114,249,56,0,112,6,23,40,235,6,0,6,114,65,58,0,112,6,23,40,235,6,0,6,11,7,40,8,7,0,6,114,71,58,0,112,6,23,40,235,6,0,6,12,114,77,58,0,112,6,23,40,235,6,0,6,13,114,83,58,0,112,6,23,40,234,6,0,6,19,4,114,89,58,0,112,6,23,40,235,6,0,6,19,5,114,95,58,0,112,6,23,40,235,6,0,6,19,6,114,101,58,0,112,6,23,40,235,6,0,6,19,7,114,107,58,0,112,6,23,40,235,6,0,6,19,8,40,122,7,0,6,20,20,17,5,17,6,17,7,40,7,7,0,6,20,17,8,40,122,7,0,6,20,20,20,17,4,20,9,20,8,20,20,115,244,6,0,6,42,0,19,48,2,0,53,0,0,0,158,1,0,17,115,5,1,0,10,10,2,44,7,6,2,111,4,1,0,10,3,44,7,6,3,111,4,1,0,10,4,44,7,6,4,111,4,1,0,10,6,111,143,1,0,10,45,2,20,42,6,40,94,1,0,6,42,94,2,45,2,3,42,3,44,13,2,114,241,23,0,112,3,40,246,0,0,10,42,2,42,0,0,0,19,48,3,0,78,0,0,0,159,1,0,17,3,111,36,1,0,6,10,6,44,13,6,114,113,58,0,112,111,89,1,0,10,45,2,20,42,114,127,58,0,112,6,23,40,235,6,0,6,11,114,71,57,0,112,6,23,40,234,6,0,6,12,8,45,2,20,42,8,22,154,13,9,40,181,7,0,6,45,2,20,42,9,7,115,176,7,0,6,42,0,0,27,48,7,0,71,1,0,0,160,1,0,17,2,30,40,104,7,0,6,2,3,125,141,3,0,4,2,4,40,24,7,0,6,125,142,3,0,4,222,11,111,25,0,0,10,115,31,0,0,10,122,5,45,59,14,4,40,26,7,0,6,11,2,7,22,106,50,29,2,123,142,3,0,4,22,22,22,22,7,105,115,144,1,0,10,40,145,1,0,10,115,146,1,0,10,43,9,18,2,254,21,135,0,0,27,8,125,144,3,0,4,43,31,0,2,5,40,24,7,0,6,115,146,1,0,10,125,144,3,0,4,222,11,111,25,0,0,10,115,31,0,0,10,122,2,4,111,30,0,0,10,30,254,1,125,143,3,0,4,2,5,44,11,5,111,30,0,0,10,30,254,1,43,1,22,125,145,3,0,4,2,14,5,125,146,3,0,4,2,14,6,125,147,3,0,4,2,14,7,125,148,3,0,4,2,14,8,125,149,3,0,4,2,14,9,125,150,3,0,4,2,14,10,125,151,3,0,4,31,100,115,22,0,0,10,10,3,6,40,108,7,0,6,2,123,143,3,0,4,2,123,142,3,0,4,115,146,1,0,10,40,25,7,0,6,6,40,108,7,0,6,2,123,145,3,0,4,2,123,144,3,0,4,40,25,7,0,6,6,40,108,7,0,6,14,5,6,40,108,7,0,6,14,6,6,40,108,7,0,6,14,7,6,40,109,7,0,6,14,8,6,40,108,7,0,6,2,6,111,25,0,0,10,125,184,3,0,4,42,0,1,28,0,0,0,0,14,0,14,28,0,11,23,0,0,1,0,0,102,0,19,121,0,11,23,0,0,1,30,2,123,141,3,0,4,42,30,2,123,142,3,0,4,42,30,2,123,143,3,0,4,42,30,2,123,144,3,0,4,42,30,2,123,145,3,0,4,42,30,2,123,146,3,0,4,42,30,2,123,147,3,0,4,42,30,2,123,148,3,0,4,42,30,2,123,149,3,0,4,42,30,2,123,150,3,0,4,42,30,2,123,151,3,0,4,42,19,48,5,0,124,0,0,0,0,0,0,0,126,140,3,0,4,2,111,147,1,0,10,111,148,1,0,10,45,26,114,141,58,0,112,23,141,13,0,0,1,37,22,2,162,40,106,1,0,10,115,31,0,0,10,122,2,111,30,0,0,10,30,51,17,2,114,181,58,0,112,40,227,0,0,10,40,149,1,0,10,42,2,111,30,0,0,10,31,16,51,37,2,31,15,111,27,0,0,10,31,90,51,25,2,22,31,15,111,241,0,0,10,40,27,7,0,6,126,1,0,0,4,40,1,0,0,6,42,2,40,27,7,0,6,42,19,48,3,0,66,0,0,0,43,0,0,17,15,1,40,150,1,0,10,45,2,20,42,2,44,26,15,1,40,151,1,0,10,10,18,0,114,142,42,0,112,40,152,1,0,10,40,153,1,0,10,42,15,1,40,151,1,0,10,10,18,0,114,138,42,0,112,40,152,1,0,10,40,153,1,0,10,42,0,0,19,48,3,0,98,0,0,0,161,1,0,17,2,45,3,21,106,42,126,138,3,0,4,2,111,147,1,0,10,10,6,111,148,1,0,10,45,3,21,106,42,22,106,11,22,12,43,50,6,111,154,1,0,10,8,23,88,111,155,1,0,10,111,156,1,0,10,13,9,40,124,0,0,10,45,18,7,126,139,3,0,4,8,150,9,40,182,0,0,10,106,90,88,11,8,23,88,12,8,126,139,3,0,4,142,105,50,196,7,42,70,2,114,199,58,0,112,40,227,0,0,10,40,149,1,0,10,42,214,114,235,58,0,112,115,157,1,0,10,128,138,3,0,4,27,141,65,0,0,1,37,208,98,5,0,4,40,153,0,0,10,128,139,3,0,4,114,122,59,0,112,115,157,1,0,10,128,140,3,0,4,42,114,2,40,30,7,0,6,44,18,2,40,30,7,0,6,142,44,9,2,40,30,7,0,6,22,154,42,20,42,30,2,123,152,3,0,4,42,34,2,3,125,152,3,0,4,42,30,2,123,153,3,0,4,42,34,2,3,125,153,3,0,4,42,30,2,123,154,3,0,4,42,34,2,3,125,154,3,0,4,42,30,2,123,155,3,0,4,42,34,2,3,125,155,3,0,4,42,30,2,123,156,3,0,4,42,34,2,3,125,156,3,0,4,42,26,114,184,59,0,112,42,86,2,23,141,63,0,0,1,37,22,3,162,20,20,20,20,40,42,7,0,6,42,0,0,0,19,48,2,0,125,0,0,0,47,0,0,17,2,23,40,104,7,0,6,2,3,40,31,7,0,6,2,4,40,33,7,0,6,2,5,40,35,7,0,6,2,14,4,40,37,7,0,6,2,14,5,40,39,7,0,6,31,30,115,22,0,0,10,10,2,40,30,7,0,6,6,40,109,7,0,6,2,40,32,7,0,6,6,40,109,7,0,6,2,40,34,7,0,6,6,40,109,7,0,6,2,40,36,7,0,6,6,40,108,7,0,6,2,40,38,7,0,6,6,40,108,7,0,6,2,6,111,25,0,0,10,125,184,3,0,4,42,0,0,0,19,48,5,0,29,1,0,0,162,1,0,17,3,111,36,1,0,6,10,6,45,2,20,42,6,111,158,1,0,10,114,184,59,0,112,111,89,1,0,10,57,235,0,0,0,6,29,111,226,0,0,10,11,7,31,63,111,0,1,0,10,12,8,22,50,9,7,22,8,111,241,0,0,10,11,7,40,132,7,0,6,11,20,13,7,40,124,0,0,10,45,12,126,157,3,0,4,7,111,159,1,0,10,13,6,40,127,7,0,6,19,4,20,19,5,20,19,6,20,19,7,20,19,8,17,4,57,134,0,0,0,9,45,33,17,4,114,200,59,0,112,18,11,111,160,1,0,10,44,17,17,11,44,13,126,157,3,0,4,17,11,111,159,1,0,10,13,17,4,114,206,59,0,112,18,9,111,160,1,0,10,44,18,17,9,44,14,126,157,3,0,4,17,9,111,159,1,0,10,19,5,17,4,114,212,59,0,112,18,10,111,160,1,0,10,44,18,17,10,44,14,126,157,3,0,4,17,10,111,159,1,0,10,19,6,17,4,114,220,59,0,112,18,7,111,160,1,0,10,38,17,4,114,236,59,0,112,18,8,111,160,1,0,10,38,9,17,5,17,6,17,7,17,8,115,42,7,0,6,42,6,40,47,7,0,6,45,2,20,42,6,115,41,7,0,6,42,66,114,171,55,0,112,115,157,1,0,10,128,157,3,0,4,42,0,0,19,48,5,0,108,0,0,0,163,1,0,17,3,111,36,1,0,6,10,6,114,246,59,0,112,111,89,1,0,10,45,2,20,42,114,6,60,0,112,6,23,40,234,6,0,6,11,7,45,2,20,42,22,19,4,43,19,7,17,4,154,40,47,7,0,6,45,2,20,42,17,4,23,88,19,4,17,4,7,142,105,50,230,114,14,60,0,112,6,22,40,235,6,0,6,12,114,24,60,0,112,6,22,40,235,6,0,6,13,7,20,20,8,9,115,42,7,0,6,42,154,2,44,33,126,158,3,0,4,2,111,147,1,0,10,111,148,1,0,10,44,15,2,31,64,111,0,1,0,10,22,254,4,22,254,1,42,22,42,66,114,36,60,0,112,115,157,1,0,10,128,158,3,0,4,42,19,48,2,0,132,0,0,0,0,0,0,0,2,24,40,104,7,0,6,2,3,125,161,3,0,4,2,4,125,162,3,0,4,2,5,125,163,3,0,4,2,14,4,125,164,3,0,4,2,14,5,125,165,3,0,4,2,14,6,125,166,3,0,4,2,14,7,125,167,3,0,4,2,14,8,125,168,3,0,4,2,14,9,125,169,3,0,4,2,14,10,125,170,3,0,4,2,14,11,125,171,3,0,4,2,14,12,125,172,3,0,4,2,14,13,125,173,3,0,4,2,14,14,125,174,3,0,4,2,14,15,125,175,3,0,4,2,4,125,184,3,0,4,42,19,48,2,0,27,1,0,0,164,1,0,17,3,117,235,0,0,2,45,2,22,42,3,116,235,0,0,2,10,2,123,162,3,0,4,6,123,162,3,0,4,40,52,7,0,6,57,242,0,0,0,2,123,163,3,0,4,6,123,163,3,0,4,40,52,7,0,6,57,220,0,0,0,2,123,164,3,0,4,6,123,164,3,0,4,40,52,7,0,6,57,198,0,0,0,2,123,165,3,0,4,6,123,165,3,0,4,40,52,7,0,6,57,176,0,0,0,2,123,167,3,0,4,6,123,167,3,0,4,40,52,7,0,6,57,154,0,0,0,2,123,168,3,0,4,6,123,168,3,0,4,40,52,7,0,6,57,132,0,0,0,2,123,169,3,0,4,6,123,169,3,0,4,40,52,7,0,6,44,113,2,123,170,3,0,4,6,123,170,3,0,4,40,52,7,0,6,44,94,2,123,171,3,0,4,6,123,171,3,0,4,40,52,7,0,6,44,75,2,123,172,3,0,4,6,123,172,3,0,4,40,52,7,0,6,44,56,2,123,173,3,0,4,6,123,173,3,0,4,40,52,7,0,6,44,37,2,123,174,3,0,4,6,123,174,3,0,4,40,52,7,0,6,44,18,2,123,175,3,0,4,6,123,175,3,0,4,40,53,7,0,6,42,22,42,0,27,48,3,0,114,0,0,0,165,1,0,17,2,45,5,3,20,254,1,42,2,111,161,1,0,10,3,111,161,1,0,10,46,2,22,42,2,111,162,1,0,10,10,43,57,6,111,163,1,0,10,11,3,18,1,40,164,1,0,10,111,165,1,0,10,45,4,22,12,222,53,18,1,40,166,1,0,10,3,18,1,40,164,1,0,10,111,167,1,0,10,111,180,0,0,10,45,4,22,12,222,22,6,111,59,0,0,10,45,191,222,10,6,44,6,6,111,60,0,0,10,220,23,42,8,42,0,0,1,16,0,0,2,0,31,0,69,100,0,10,0,0,0,0,19,48,2,0,158,0,0,0,0,0,0,0,22,2,123,162,3,0,4,40,55,7,0,6,97,2,123,163,3,0,4,40,55,7,0,6,97,2,123,164,3,0,4,40,55,7,0,6,97,2,123,165,3,0,4,40,55,7,0,6,97,2,123,167,3,0,4,40,55,7,0,6,97,2,123,168,3,0,4,40,55,7,0,6,97,2,123,169,3,0,4,40,55,7,0,6,97,2,123,170,3,0,4,40,55,7,0,6,97,2,123,171,3,0,4,40,55,7,0,6,97,2,123,172,3,0,4,40,55,7,0,6,97,2,123,173,3,0,4,40,55,7,0,6,97,2,123,174,3,0,4,40,55,7,0,6,97,2,123,175,3,0,4,40,55,7,0,6,97,42,30,2,123,161,3,0,4,42,30,2,123,162,3,0,4,42,30,2,123,163,3,0,4,42,30,2,123,164,3,0,4,42,30,2,123,165,3,0,4,42,30,2,123,166,3,0,4,42,30,2,123,167,3,0,4,42,30,2,123,168,3,0,4,42,30,2,123,169,3,0,4,42,30,2,123,170,3,0,4,42,30,2,123,171,3,0,4,42,30,2,123,172,3,0,4,42,30,2,123,173,3,0,4,42,30,2,123,174,3,0,4,42,30,2,123,175,3,0,4,42,86,114,122,60,0,112,128,159,3,0,4,114,207,27,0,112,128,160,3,0,4,42,19,48,15,0,76,3,0,0,166,1,0,17,3,111,42,1,0,6,32,0,32,0,0,46,2,20,42,3,111,36,1,0,6,10,20,11,20,12,20,13,20,19,4,20,19,5,20,19,6,20,19,7,20,19,8,20,19,9,20,19,10,20,19,11,20,19,12,20,19,13,115,168,1,0,10,19,14,22,19,15,56,214,2,0,0,17,15,6,40,74,7,0,6,19,16,17,16,45,2,20,42,17,15,17,16,111,30,0,0,10,24,88,88,19,15,17,15,6,40,75,7,0,6,19,17,17,15,17,17,111,30,0,0,10,88,19,15,114,231,34,0,112,17,16,40,180,0,0,10,44,8,17,17,12,56,140,2,0,0,114,237,34,0,112,17,16,40,180,0,0,10,44,8,17,17,11,56,118,2,0,0,114,249,34,0,112,17,16,40,180,0,0,10,44,8,17,17,13,56,96,2,0,0,114,23,34,0,112,17,16,40,180,0,0,10,44,9,17,17,19,4,56,73,2,0,0,114,37,34,0,112,17,16,40,180,0,0,10,44,9,17,17,19,5,56,50,2,0,0,114,43,34,0,112,17,16,40,180,0,0,10,44,9,17,17,19,6,56,27,2,0,0,114,49,34,0,112,17,16,40,180,0,0,10,44,9,17,17,19,7,56,4,2,0,0,114,128,60,0,112,17,16,40,180,0,0,10,45,126,114,138,60,0,112,17,16,40,180,0,0,10,45,112,114,148,60,0,112,17,16,40,180,0,0,10,45,98,114,158,60,0,112,17,16,40,180,0,0,10,45,84,114,168,60,0,112,17,16,40,180,0,0,10,45,70,114,178,60,0,112,17,16,40,180,0,0,10,45,56,114,188,60,0,112,17,16,40,180,0,0,10,45,42,114,198,60,0,112,17,16,40,180,0,0,10,45,28,114,208,60,0,112,17,16,40,180,0,0,10,45,14,114,218,60,0,112,17,16,40,180,0,0,10,44,26,17,17,19,8,126,159,3,0,4,19,9,17,16,25,111,226,0,0,10,19,10,56,94,1,0,0,114,228,60,0,112,17,16,40,180,0,0,10,45,126,114,238,60,0,112,17,16,40,180,0,0,10,45,112,114,248,60,0,112,17,16,40,180,0,0,10,45,98,114,2,61,0,112,17,16,40,180,0,0,10,45,84,114,12,61,0,112,17,16,40,180,0,0,10,45,70,114,22,61,0,112,17,16,40,180,0,0,10,45,56,114,32,61,0,112,17,16,40,180,0,0,10,45,42,114,42,61,0,112,17,16,40,180,0,0,10,45,28,114,52,61,0,112,17,16,40,180,0,0,10,45,14,114,62,61,0,112,17,16,40,180,0,0,10,44,26,17,17,19,8,126,160,3,0,4,19,9,17,16,25,111,226,0,0,10,19,10,56,184,0,0,0,114,72,61,0,112,17,16,40,180,0,0,10,45,42,114,82,61,0,112,17,16,40,180,0,0,10,45,28,114,92,61,0,112,17,16,40,180,0,0,10,45,14,114,102,61,0,112,17,16,40,180,0,0,10,44,16,17,17,19,11,17,16,25,111,226,0,0,10,19,12,43,112,114,112,61,0,112,17,16,40,180,0,0,10,45,42,114,122,61,0,112,17,16,40,180,0,0,10,45,28,114,132,61,0,112,17,16,40,180,0,0,10,45,14,114,142,61,0,112,17,16,40,180,0,0,10,44,45,17,17,111,30,0,0,10,26,47,2,20,42,17,17,25,111,226,0,0,10,19,11,17,17,22,25,111,241,0,0,10,19,13,17,16,25,111,226,0,0,10,19,12,43,11,17,14,17,16,17,17,111,169,1,0,10,17,15,6,111,30,0,0,10,63,29,253,255,255,6,7,8,9,17,4,17,5,17,6,17,7,17,8,17,9,17,10,17,11,17,12,17,13,17,14,115,50,7,0,6,42,19,48,3,0,93,0,0,0,167,1,0,17,3,2,111,27,0,0,10,31,40,46,2,20,42,3,2,23,88,111,226,0,0,10,10,115,115,0,0,10,11,22,12,43,44,6,8,111,27,0,0,10,13,9,31,41,51,7,7,111,25,0,0,10,42,9,31,48,50,5,9,31,57,49,2,20,42,7,9,111,23,0,0,10,38,8,23,88,12,8,6,111,30,0,0,10,50,203,7,111,25,0,0,10,42,0,0,0,19,48,2,0,79,0,0,0,168,1,0,17,115,115,0,0,10,10,3,2,111,226,0,0,10,11,22,12,43,45,7,8,111,27,0,0,10,13,9,31,40,51,20,8,7,40,74,7,0,6,45,32,6,31,40,111,23,0,0,10,38,43,8,6,9,111,23,0,0,10,38,8,23,88,12,8,7,111,30,0,0,10,50,202,6,111,25,0,0,10,42,0,19,48,2,0,73,0,0,0,0,0,0,0,2,27,40,104,7,0,6,2,3,40,79,7,0,6,2,4,40,81,7,0,6,2,5,40,83,7,0,6,2,14,4,40,85,7,0,6,2,2,40,91,7,0,6,40,87,7,0,6,2,2,40,92,7,0,6,40,89,7,0,6,2,2,40,90,7,0,6,125,184,3,0,4,42,30,2,123,176,3,0,4,42,34,2,3,125,176,3,0,4,42,30,2,123,177,3,0,4,42,34,2,3,125,177,3,0,4,42,30,2,123,178,3,0,4,42,34,2,3,125,178,3,0,4,42,30,2,123,179,3,0,4,42,34,2,3,125,179,3,0,4,42,30,2,123,180,3,0,4,42,34,2,3,125,180,3,0,4,42,30,2,123,181,3,0,4,42,34,2,3,125,181,3,0,4,42,0,19,48,7,0,218,0,0,0,47,0,0,17,31,20,115,22,0,0,10,10,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,78,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,6,114,190,61,0,112,111,119,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,80,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,2,40,82,7,0,6,35,0,0,0,0,0,0,0,0,54,58,6,114,190,61,0,112,111,119,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,82,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,6,31,109,111,23,0,0,10,38,2,40,84,7,0,6,44,34,6,114,196,61,0,112,111,119,0,0,10,38,6,2,40,84,7,0,6,111,119,0,0,10,38,6,31,41,111,23,0,0,10,38,6,111,25,0,0,10,42,0,0,19,48,7,0,201,0,0,0,47,0,0,17,115,115,0,0,10,10,6,114,202,61,0,112,111,119,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,78,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,6,31,44,111,23,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,80,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,2,40,82,7,0,6,35,0,0,0,0,0,0,0,0,54,46,6,31,44,111,23,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,82,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,2,40,84,7,0,6,44,22,6,31,63,111,23,0,0,10,38,6,2,40,84,7,0,6,111,119,0,0,10,38,6,111,25,0,0,10,42,0,0,0,19,48,7,0,201,0,0,0,143,1,0,17,31,50,115,22,0,0,10,10,6,114,212,61,0,112,111,119,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,78,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,6,31,44,111,23,0,0,10,38,6,40,227,0,0,10,114,152,61,0,112,23,141,13,0,0,1,37,22,2,40,80,7,0,6,140,101,0,0,1,162,111,107,0,0,10,38,2,40,82,7,0,6,35,0,0,0,0,0,0,0,0,54,74,2,40,82,7,0,6,35,61,10,215,163,112,61,10,64,90,35,0,0,0,0,0,64,143,64,91,105,11,22,12,43,8,7,23,99,11,8,23,88,12,7,23,49,5,8,31,18,50,239,31,19,8,89,13,6,114,12,62,0,112,111,119,0,0,10,38,6,9,111,191,0,0,10,38,6,111,25,0,0,10,42,0,0,0,19,48,4,0,36,1,0,0,169,1,0,17,3,111,36,1,0,6,10,6,45,2,20,42,126,182,3,0,4,6,111,147,1,0,10,11,7,111,148,1,0,10,45,2,20,42,7,111,154,1,0,10,26,111,155,1,0,10,111,156,1,0,10,12,8,40,124,0,0,10,44,2,20,12,35,0,0,0,0,0,0,0,0,19,5,7,111,154,1,0,10,23,111,155,1,0,10,111,156,1,0,10,32,167,0,0,0,40,227,0,0,10,18,3,40,170,1,0,10,45,2,20,42,9,35,0,0,0,0,0,128,86,64,48,12,9,35,0,0,0,0,0,128,86,192,52,2,20,42,7,111,154,1,0,10,24,111,155,1,0,10,111,156,1,0,10,32,167,0,0,0,40,227,0,0,10,18,4,40,170,1,0,10,45,2,20,42,17,4,35,0,0,0,0,0,128,102,64,48,13,17,4,35,0,0,0,0,0,128,102,192,52,2,20,42,7,111,154,1,0,10,25,111,155,1,0,10,111,156,1,0,10,40,124,0,0,10,45,53,7,111,154,1,0,10,25,111,155,1,0,10,111,156,1,0,10,32,167,0,0,0,40,227,0,0,10,18,5,40,170,1,0,10,45,2,20,42,17,5,35,0,0,0,0,0,0,0,0,52,2,20,42,9,17,4,17,5,8,115,77,7,0,6,42,70,114,20,62,0,112,23,115,171,1,0,10,128,182,3,0,4,42,94,2,31,10,40,104,7,0,6,2,3,40,98,7,0,6,2,3,125,184,3,0,4,42,30,2,123,183,3,0,4,42,34,2,3,125,183,3,0,4,42,0,19,48,2,0,69,0,0,0,4,1,0,17,3,111,42,1,0,6,32,128,0,0,0,46,2,20,42,3,111,36,1,0,6,10,6,111,30,0,0,10,31,13,46,2,20,42,6,114,148,62,0,112,111,89,1,0,10,45,15,6,114,156,62,0,112,111,89,1,0,10,45,2,20,42,6,115,96,7,0,6,42,30,2,123,185,3,0,4,42,34,2,3,125,185,3,0,4,42,30,2,123,184,3,0,4,42,58,2,40,20,0,0,10,2,3,40,102,7,0,6,42,30,2,111,103,7,0,6,42,0,0,0,19,48,2,0,65,0,0,0,170,1,0,17,3,117,241,0,0,2,10,6,45,2,22,42,6,111,101,7,0,6,11,18,1,2,111,101,7,0,6,140,242,0,0,2,254,22,242,0,0,2,111,189,0,0,10,44,18,6,111,103,7,0,6,2,111,103,7,0,6,111,180,0,0,10,42,22,42,0,0,0,19,48,2,0,33,0,0,0,171,1,0,17,2,111,101,7,0,6,10,18,0,254,22,242,0,0,2,111,243,0,0,10,2,111,103,7,0,6,111,243,0,0,10,88,42,146,2,40,124,0,0,10,44,1,42,3,111,120,0,0,10,22,49,9,3,31,10,111,23,0,0,10,38,3,2,111,119,0,0,10,38,42,0,0,19,48,2,0,29,0,0,0,172,1,0,17,2,44,25,2,10,22,11,43,13,6,7,154,3,40,108,7,0,6,7,23,88,11,7,6,142,105,50,237,42,38,2,3,3,40,111,7,0,6,42,118,2,24,40,104,7,0,6,2,3,40,113,7,0,6,2,4,40,115,7,0,6,2,3,125,184,3,0,4,42,30,2,123,199,3,0,4,42,34,2,3,125,199,3,0,4,42,30,2,123,200,3,0,4,42,34,2,3,125,200,3,0,4,42,0,19,48,2,0,102,0,0,0,173,1,0,17,3,111,42,1,0,6,10,6,32,0,64,0,0,46,23,6,32,0,128,0,0,46,15,6,31,64,46,10,6,32,128,0,0,0,46,2,20,42,3,111,36,1,0,6,11,7,45,2,20,42,7,7,111,30,0,0,10,40,125,7,0,6,45,2,20,42,6,32,0,128,0,0,51,18,7,111,30,0,0,10,30,51,9,7,40,62,4,0,6,12,43,2,7,12,7,8,115,111,7,0,6,42,0,0,19,48,2,0,48,0,0,0,174,1,0,17,126,201,3,0,4,10,22,11,43,19,6,7,154,2,111,118,7,0,6,12,8,44,2,8,42,7,23,88,11,7,6,142,105,50,231,2,111,36,1,0,6,20,115,165,7,0,6,42,86,2,44,17,3,31,10,111,23,0,0,10,38,3,2,111,119,0,0,10,38,42,0,0,19,48,3,0,37,0,0,0,1,0,0,17,2,44,33,22,10,43,23,3,31,10,111,23,0,0,10,38,3,2,6,154,111,119,0,0,10,38,6,23,88,10,6,2,142,105,50,227,42,66,2,44,11,23,141,63,0,0,1,37,22,2,162,42,20,42,0,0,19,48,4,0,108,0,0,0,175,1,0,17,2,44,103,2,31,92,111,0,1,0,10,10,6,22,50,90,2,111,30,0,0,10,11,7,23,89,115,22,0,0,10,12,8,2,111,152,0,0,10,22,6,111,172,1,0,10,38,22,13,6,19,4,43,40,2,17,4,111,27,0,0,10,19,5,9,45,6,17,5,31,92,46,13,8,17,5,111,23,0,0,10,38,22,13,43,2,23,13,17,4,23,88,19,4,17,4,7,50,211,8,111,25,0,0,10,42,2,42,214,2,31,97,50,13,2,31,102,48,41,31,10,2,31,97,89,88,42,2,31,65,50,13,2,31,70,48,23,31,10,2,31,65,89,88,42,2,31,48,50,10,2,31,57,48,5,2,31,48,89,42,21,42,142,2,44,30,3,22,49,26,3,2,111,30,0,0,10,51,17,126,202,3,0,4,2,111,147,1,0,10,111,148,1,0,10,42,22,42,0,0,19,48,4,0,43,0,0,0,1,0,0,17,2,44,4,4,22,48,2,22,42,3,4,88,10,2,111,30,0,0,10,6,50,19,126,202,3,0,4,2,3,4,111,173,1,0,10,111,148,1,0,10,42,22,42,0,19,48,4,0,67,0,0,0,176,1,0,17,2,31,63,111,0,1,0,10,10,6,22,47,2,20,42,25,115,174,1,0,10,11,126,203,3,0,4,2,6,23,88,111,226,0,0,10,111,159,1,0,10,12,22,13,43,13,8,9,154,7,40,128,7,0,6,9,23,88,13,9,8,142,105,50,237,7,42,0,27,48,3,0,66,0,0,0,177,1,0,17,126,204,3,0,4,2,24,111,175,1,0,10,10,6,142,105,24,51,46,6,22,154,11,6,23,154,12,8,40,132,7,0,6,12,3,7,8,111,176,1,0,10,222,13,13,114,164,62,0,112,9,115,177,1,0,10,122,3,7,8,111,176,1,0,10,42,0,0,1,16,0,0,0,0,27,0,17,44,0,13,23,0,0,1,19,48,4,0,183,0,0,0,178,1,0,17,20,10,22,11,3,111,30,0,0,10,12,56,140,0,0,0,3,2,7,111,178,1,0,10,11,7,22,63,131,0,0,0,7,2,111,30,0,0,10,88,11,7,13,22,19,4,43,104,3,4,7,111,179,1,0,10,11,7,22,47,12,3,111,30,0,0,10,11,23,19,4,43,79,3,7,40,130,7,0,6,24,93,44,6,7,23,88,11,43,62,6,45,6,115,5,1,0,10,10,3,9,7,9,89,111,241,0,0,10,40,123,7,0,6,19,5,5,44,9,17,5,111,180,1,0,10,19,5,17,5,40,124,0,0,10,45,8,6,17,5,111,142,1,0,10,7,23,88,11,23,19,4,17,4,44,148,7,8,63,109,255,255,255,6,44,8,6,111,113,0,0,10,45,2,20,42,6,40,94,1,0,6,42,0,19,48,2,0,33,0,0,0,2,0,0,17,22,10,3,23,89,11,43,19,2,7,111,27,0,0,10,31,92,51,12,6,23,88,10,7,23,89,11,7,22,47,233,6,42,0,0,0,19,48,4,0,19,0,0,0,55,0,0,17,2,3,4,5,40,129,7,0,6,10,6,44,4,6,22,154,42,20,42,0,19,48,4,0,225,0,0,0,179,1,0,17,2,45,2,20,42,2,111,152,0,0,10,10,6,40,133,7,0,6,11,7,22,47,2,2,42,6,142,105,12,8,24,89,115,22,0,0,10,13,9,6,22,7,111,172,1,0,10,38,7,19,4,56,154,0,0,0,6,17,4,147,19,5,17,5,31,43,51,11,9,31,32,111,23,0,0,10,38,43,125,17,5,31,37,51,110,17,4,8,24,89,50,11,9,31,37,111,23,0,0,10,38,43,101,6,17,4,23,88,37,19,4,147,40,124,7,0,6,19,6,6,17,4,23,88,37,19,4,147,40,124,7,0,6,19,7,17,6,22,50,5,17,7,22,47,33,9,31,37,111,23,0,0,10,38,9,6,17,4,23,89,147,111,23,0,0,10,38,9,6,17,4,147,111,23,0,0,10,38,9,17,6,26,98,17,7,88,209,111,23,0,0,10,38,43,9,9,17,5,111,23,0,0,10,38,17,4,23,88,19,4,17,4,8,63,94,255,255,255,9,111,25,0,0,10,42,0,0,0,19,48,2,0,34,0,0,0,55,1,0,17,2,142,105,10,22,11,43,20,2,7,147,12,8,31,43,46,5,8,31,37,51,2,7,42,7,23,88,11,7,6,50,232,21,42,0,0,19,48,4,0,229,0,0,0,0,0,0,0,31,20,141,245,0,0,2,37,22,115,11,7,0,6,162,37,23,115,242,6,0,6,162,37,24,115,48,7,0,6,162,37,25,115,239,6,0,6,162,37,26,115,197,7,0,6,162,37,27,115,9,7,0,6,162,37,28,115,203,7,0,6,162,37,29,115,44,7,0,6,162,37,30,115,155,7,0,6,162,37,31,9,115,164,7,0,6,162,37,31,10,115,138,7,0,6,162,37,31,11,115,153,7,0,6,162,37,31,12,115,94,7,0,6,162,37,31,13,115,253,7,0,6,162,37,31,14,115,185,7,0,6,162,37,31,15,115,182,7,0,6,162,37,31,16,115,100,7,0,6,162,37,31,17,115,117,7,0,6,162,37,31,18,115,76,7,0,6,162,37,31,19,115,231,7,0,6,162,128,201,3,0,4,114,204,62,0,112,115,157,1,0,10,128,202,3,0,4,114,228,62,0,112,115,157,1,0,10,128,203,3,0,4,114,232,62,0,112,115,157,1,0,10,128,204,3,0,4,42,0,0,0,19,48,5,0,17,1,0,0,180,1,0,17,3,111,36,1,0,6,10,6,44,52,6,114,236,62,0,112,111,89,1,0,10,45,41,6,114,246,62,0,112,111,89,1,0,10,45,28,6,114,0,63,0,112,111,89,1,0,10,45,15,6,114,10,63,0,112,111,89,1,0,10,45,2,20,42,6,40,127,7,0,6,11,20,12,20,13,22,19,4,7,44,35,7,111,161,1,0,10,44,27,7,114,220,59,0,112,111,167,1,0,10,12,7,114,236,59,0,112,111,167,1,0,10,13,23,19,4,6,31,63,26,111,179,1,0,10,19,5,17,5,22,50,4,17,4,45,11,6,26,111,226,0,0,10,19,6,43,13,6,26,17,5,26,89,111,241,0,0,10,19,6,21,19,7,23,115,181,1,0,10,19,9,23,115,181,1,0,10,19,10,43,30,17,6,17,7,23,88,17,8,111,241,0,0,10,19,11,17,9,17,10,17,11,40,137,7,0,6,17,8,19,7,17,6,31,44,17,7,23,88,111,179,1,0,10,37,19,8,17,7,48,206,17,9,17,10,17,6,17,7,23,88,111,226,0,0,10,40,137,7,0,6,17,9,40,94,1,0,6,17,10,40,94,1,0,6,8,9,115,140,7,0,6,42,0,0,0,19,48,4,0,85,0,0,0,181,1,0,17,4,31,59,111,0,1,0,10,10,6,22,47,15,2,4,111,142,1,0,10,3,20,111,142,1,0,10,42,2,4,22,6,111,241,0,0,10,111,142,1,0,10,4,6,23,88,111,226,0,0,10,11,7,114,20,63,0,112,111,89,1,0,10,44,10,7,26,111,226,0,0,10,12,43,2,20,12,3,8,111,142,1,0,10,42,122,2,23,141,63,0,0,1,37,22,3,162,23,141,63,0,0,1,37,22,4,162,5,14,4,40,140,7,0,6,42,19,48,2,0,105,0,0,0,47,0,0,17,2,29,40,104,7,0,6,2,3,40,143,7,0,6,2,4,40,145,7,0,6,2,5,40,147,7,0,6,2,14,4,40,149,7,0,6,2,2,40,141,7,0,6,40,151,7,0,6,31,100,115,22,0,0,10,10,2,40,142,7,0,6,6,40,109,7,0,6,2,40,146,7,0,6,6,40,108,7,0,6,2,40,148,7,0,6,6,40,108,7,0,6,2,6,111,25,0,0,10,125,184,3,0,4,42,0,0,0,19,48,3,0,231,0,0,0,182,1,0,17,115,115,0,0,10,10,6,114,236,62,0,112,111,119,0,0,10,38,23,11,22,19,4,43,85,7,44,4,22,11,43,9,6,31,44,111,23,0,0,10,38,6,2,40,142,7,0,6,17,4,154,111,119,0,0,10,38,2,40,144,7,0,6,44,39,2,40,144,7,0,6,17,4,154,44,28,6,114,30,63,0,112,111,119,0,0,10,38,6,2,40,144,7,0,6,17,4,154,111,119,0,0,10,38,17,4,23,88,19,4,17,4,2,40,142,7,0,6,142,105,50,159,2,40,148,7,0,6,20,254,3,12,2,40,146,7,0,6,20,254,3,13,8,9,96,44,77,6,31,63,111,23,0,0,10,38,8,44,25,6,114,42,63,0,112,111,119,0,0,10,38,6,2,40,148,7,0,6,111,119,0,0,10,38,9,44,37,8,44,9,6,31,38,111,23,0,0,10,38,6,114,54,63,0,112,111,119,0,0,10,38,6,2,40,146,7,0,6,111,119,0,0,10,38,6,111,25,0,0,10,42,30,2,123,205,3,0,4,42,34,2,3,125,205,3,0,4,42,30,2,123,206,3,0,4,42,34,2,3,125,206,3,0,4,42,30,2,123,207,3,0,4,42,34,2,3,125,207,3,0,4,42,30,2,123,208,3,0,4,42,34,2,3,125,208,3,0,4,42,30,2,123,209,3,0,4,42,34,2,3,125,209,3,0,4,42,19,48,4,0,113,0,0,0,183,1,0,17,3,111,36,1,0,6,10,6,114,72,63,0,112,111,89,1,0,10,45,41,6,114,86,63,0,112,111,89,1,0,10,45,28,6,114,100,63,0,112,111,89,1,0,10,45,15,6,114,114,63,0,112,111,89,1,0,10,45,2,20,42,6,28,111,226,0,0,10,11,20,12,7,31,58,111,0,1,0,10,13,9,22,50,19,7,9,23,88,111,226,0,0,10,12,7,22,9,111,241,0,0,10,11,7,20,20,8,115,139,7,0,6,42,0,0,0,19,48,5,0,139,0,0,0,184,1,0,17,3,111,36,1,0,6,10,6,114,128,63,0,112,111,89,1,0,10,45,15,6,114,140,63,0,112,111,89,1,0,10,45,2,20,42,6,27,111,226,0,0,10,11,20,12,20,13,7,31,58,111,0,1,0,10,19,4,17,4,22,50,57,7,17,4,23,88,111,226,0,0,10,12,7,22,17,4,111,241,0,0,10,11,8,31,58,111,0,1,0,10,19,4,17,4,22,50,21,8,17,4,23,88,111,226,0,0,10,13,8,22,17,4,111,241,0,0,10,12,23,141,63,0,0,1,37,22,7,162,20,20,8,9,115,42,7,0,6,42,0,19,48,2,0,63,0,0,0,47,0,0,17,2,28,40,104,7,0,6,2,3,40,158,7,0,6,2,4,40,160,7,0,6,2,5,40,162,7,0,6,31,20,115,22,0,0,10,10,3,6,40,108,7,0,6,5,6,40,108,7,0,6,2,6,111,25,0,0,10,125,184,3,0,4,42,30,2,123,210,3,0,4,42,34,2,3,125,210,3,0,4,42,30,2,123,211,3,0,4,42,34,2,3,125,211,3,0,4,42,30,2,123,212,3,0,4,42,34,2,3,125,212,3,0,4,42,0,0,19,48,4,0,113,0,0,0,75,1,0,17,3,111,36,1,0,6,10,6,44,26,6,114,152,63,0,112,111,89,1,0,10,45,15,6,114,13,57,0,112,111,89,1,0,10,45,2,20,42,6,114,13,57,0,112,111,89,1,0,10,45,3,6,43,17,114,152,63,0,112,6,26,111,226,0,0,10,40,238,0,0,10,11,6,31,63,26,111,179,1,0,10,12,8,22,50,12,6,26,8,26,89,111,241,0,0,10,43,7,6,26,111,226,0,0,10,7,20,115,156,7,0,6,42,118,2,26,40,104,7,0,6,2,3,40,167,7,0,6,2,4,40,169,7,0,6,2,3,125,184,3,0,4,42,30,2,123,213,3,0,4,42,34,2,3,125,213,3,0,4,42,30,2,123,214,3,0,4,42,34,2,3,125,214,3,0,4,42,30,2,123,216,3,0,4,42,34,2,3,125,216,3,0,4,42,30,2,123,217,3,0,4,42,34,2,3,125,217,3,0,4,42,30,2,123,218,3,0,4,42,34,2,3,125,218,3,0,4,42,19,48,3,0,98,0,0,0,47,0,0,17,2,25,40,104,7,0,6,2,3,40,177,7,0,6,40,171,7,0,6,2,4,40,173,7,0,6,2,126,215,3,0,4,2,40,170,7,0,6,111,147,1,0,10,111,148,1,0,10,40,175,7,0,6,31,30,115,22,0,0,10,10,2,40,172,7,0,6,6,40,108,7,0,6,2,40,170,7,0,6,6,40,108,7,0,6,2,6,111,25,0,0,10,125,184,3,0,4,42,0,0,19,48,2,0,37,0,0,0,1,0,0,17,2,31,58,111,0,1,0,10,10,6,22,50,9,2,6,40,178,7,0,6,44,13,114,162,63,0,112,2,40,238,0,0,10,16,0,2,42,0,0,0,19,48,4,0,36,0,0,0,2,0,0,17,3,23,88,10,2,31,47,6,111,179,1,0,10,11,7,22,47,7,2,111,30,0,0,10,11,2,6,7,6,89,40,126,7,0,6,42,66,114,178,63,0,112,115,157,1,0,10,128,215,3,0,4,42,0,0,0,19,48,2,0,77,0,0,0,4,1,0,17,3,111,36,1,0,6,10,6,114,71,57,0,112,111,89,1,0,10,45,13,6,114,214,63,0,112,111,89,1,0,10,44,19,6,26,111,226,0,0,10,111,180,1,0,10,20,115,176,7,0,6,42,6,111,180,1,0,10,10,6,40,181,7,0,6,45,2,20,42,6,20,115,176,7,0,6,42,0,0,0,19,48,2,0,78,0,0,0,185,1,0,17,2,114,241,23,0,112,111,141,1,0,10,22,50,2,22,42,126,219,3,0,4,2,111,147,1,0,10,10,6,111,148,1,0,10,44,10,6,111,182,1,0,10,45,2,23,42,126,220,3,0,4,2,111,147,1,0,10,10,6,111,148,1,0,10,44,10,6,111,182,1,0,10,22,254,1,42,22,42,126,114,224,63,0,112,115,157,1,0,10,128,219,3,0,4,114,18,64,0,112,115,157,1,0,10,128,220,3,0,4,42,0,0,19,48,4,0,88,0,0,0,186,1,0,17,3,111,36,1,0,6,10,6,44,26,6,114,128,64,0,112,111,89,1,0,10,45,15,6,114,142,64,0,112,111,89,1,0,10,45,2,20,42,6,31,58,28,111,179,1,0,10,11,7,22,47,2,20,42,7,28,49,12,6,28,7,28,89,111,241,0,0,10,43,1,20,12,6,7,23,88,111,226,0,0,10,8,115,176,7,0,6,42,19,48,16,0,171,1,0,0,187,1,0,17,3,111,36,1,0,6,10,126,221,3,0,4,6,111,147,1,0,10,11,7,111,148,1,0,10,44,8,7,111,182,1,0,10,44,2,20,42,114,156,64,0,112,6,23,22,40,187,7,0,6,12,8,45,20,114,162,64,0,112,6,23,22,40,187,7,0,6,12,8,40,195,7,0,6,114,166,64,0,112,6,23,22,40,190,7,0,6,13,9,44,19,126,229,3,0,4,9,22,111,3,1,0,10,111,159,1,0,10,43,1,20,19,4,114,185,56,0,112,6,23,22,40,187,7,0,6,19,5,114,184,64,0,112,6,23,22,40,187,7,0,6,19,6,114,196,64,0,112,6,22,22,40,190,7,0,6,19,7,114,206,64,0,112,6,23,23,40,187,7,0,6,19,8,114,214,64,0,112,6,23,23,40,190,7,0,6,19,9,114,222,64,0,112,6,23,22,40,190,7,0,6,19,10,17,10,44,18,17,10,22,111,3,1,0,10,40,194,7,0,6,45,3,20,19,10,114,232,64,0,112,6,23,22,40,190,7,0,6,19,11,114,244,64,0,112,6,23,22,40,187,7,0,6,19,12,114,252,64,0,112,6,23,22,40,190,7,0,6,19,13,114,6,65,0,112,6,23,22,40,190,7,0,6,19,14,17,14,44,20,126,230,3,0,4,17,14,22,111,3,1,0,10,111,159,1,0,10,43,1,20,19,15,17,15,44,10,17,15,142,105,24,46,3,20,19,15,8,40,192,7,0,6,17,4,20,17,5,40,192,7,0,6,17,5,40,193,7,0,6,17,6,40,192,7,0,6,17,6,40,193,7,0,6,17,13,40,191,7,0,6,17,7,40,191,7,0,6,17,8,40,192,7,0,6,17,8,40,193,7,0,6,17,9,40,191,7,0,6,17,10,40,191,7,0,6,17,11,40,191,7,0,6,17,12,40,192,7,0,6,17,15,115,244,6,0,6,42,0,27,48,4,0,224,2,0,0,188,1,0,17,20,10,22,11,3,111,30,0,0,10,12,56,199,2,0,0,114,14,65,0,112,2,114,30,65,0,112,40,246,0,0,10,23,115,171,1,0,10,7,22,49,4,7,23,89,11,3,7,111,183,1,0,10,13,9,111,148,1,0,10,57,157,2,0,0,9,111,182,1,0,10,9,111,184,1,0,10,88,11,9,111,154,1,0,10,23,111,155,1,0,10,111,156,1,0,10,19,4,20,19,5,22,19,6,20,19,7,20,19,8,17,4,57,176,0,0,0,126,227,3,0,4,17,4,111,159,1,0,10,19,10,22,19,11,56,143,0,0,0,17,10,17,11,154,19,12,17,5,45,8,23,115,181,1,0,10,19,5,17,5,17,12,111,4,1,0,10,126,226,3,0,4,17,12,24,111,175,1,0,10,19,13,17,13,142,105,23,49,87,17,13,22,154,19,14,17,13,23,154,19,15,114,60,65,0,112,17,14,27,40,240,0,0,10,45,20,114,78,65,0,112,17,15,27,40,240,0,0,10,45,5,23,19,6,43,40,114,112,65,0,112,17,14,27,40,240,0,0,10,45,6,17,15,19,7,43,19,114,128,65,0,112,17,14,27,40,240,0,0,10,45,4,17,15,19,8,17,11,23,88,19,11,17,11,17,10,142,105,63,102,255,255,255,7,19,9,43,85,7,3,111,30,0,0,10,23,89,47,32,3,7,23,88,111,27,0,0,10,31,32,46,13,3,7,23,88,111,27,0,0,10,31,9,51,6,7,24,88,11,43,42,17,6,44,52,7,23,50,13,3,7,23,89,111,27,0,0,10,31,61,46,17,7,24,50,31,3,7,24,89,111,27,0,0,10,31,61,51,18,7,23,88,11,3,31,10,7,111,179,1,0,10,37,11,22,47,157,7,22,47,7,8,11,56,63,1,0,0,7,17,9,62,51,1,0,0,6,45,7,23,115,185,1,0,10,10,7,23,50,17,3,7,23,89,111,27,0,0,10,31,13,51,4,7,23,89,11,3,17,9,7,17,9,89,111,241,0,0,10,19,16,4,44,9,17,16,111,180,1,0,10,19,16,17,6,44,40,17,16,17,7,40,188,7,0,6,19,16,5,44,110,126,228,3,0,4,17,16,114,85,10,0,112,111,186,1,0,10,111,180,1,0,10,19,16,43,84,5,44,24,126,228,3,0,4,17,16,114,85,10,0,112,111,186,1,0,10,111,180,1,0,10,19,16,126,223,3,0,4,17,16,114,137,32,0,112,111,186,1,0,10,19,16,126,224,3,0,4,17,16,114,85,10,0,112,111,186,1,0,10,19,16,126,225,3,0,4,17,16,114,140,65,0,112,111,186,1,0,10,19,16,114,146,65,0,112,17,8,40,180,0,0,10,44,53,17,16,22,18,17,40,187,1,0,10,44,36,17,17,111,188,1,0,10,17,17,111,189,1,0,10,114,229,56,0,112,40,238,0,0,10,114,137,32,0,112,111,143,0,0,10,19,16,222,3,38,222,0,17,5,45,27,23,115,181,1,0,10,19,18,17,18,17,16,111,4,1,0,10,6,17,18,111,190,1,0,10,43,18,17,5,22,17,16,111,191,1,0,10,6,17,5,111,190,1,0,10,7,23,88,11,43,4,7,23,88,11,7,8,63,50,253,255,255,6,42,1,16,0,0,0,0,103,2,50,153,2,3,23,0,0,1,19,48,3,0,181,0,0,0,189,1,0,17,2,111,30,0,0,10,10,6,115,22,0,0,10,11,115,223,0,0,10,12,22,13,56,132,0,0,0,2,9,111,27,0,0,10,19,4,17,4,31,10,46,113,17,4,31,13,46,107,17,4,31,61,51,84,9,6,24,89,47,95,2,9,23,88,111,27,0,0,10,19,5,17,5,31,13,46,78,17,5,31,10,46,72,2,9,24,88,111,27,0,0,10,17,5,40,124,7,0,6,19,6,40,124,7,0,6,19,7,17,6,22,50,19,17,7,22,50,14,8,17,6,26,98,17,7,96,210,111,224,0,0,10,9,24,88,13,43,17,8,3,7,40,189,7,0,6,7,17,4,111,23,0,0,10,38,9,23,88,13,9,6,63,117,255,255,255,8,3,7,40,189,7,0,6,7,111,25,0,0,10,42,0,0,0,27,48,4,0,104,0,0,0,190,1,0,17,2,111,192,1,0,10,22,106,49,93,2,111,225,0,0,10,10,3,45,18,40,7,1,0,10,6,22,6,142,105,111,147,0,0,10,11,43,39,0,3,40,146,0,0,10,6,22,6,142,105,111,147,0,0,10,11,222,19,38,40,7,1,0,10,6,22,6,142,105,111,147,0,0,10,11,222,0,2,22,106,22,111,193,1,0,10,38,2,22,106,111,194,1,0,10,4,7,111,119,0,0,10,38,42,1,16,0,0,0,0,39,0,19,58,0,19,23,0,0,1,19,48,4,0,31,0,0,0,191,1,0,17,2,3,4,5,40,187,7,0,6,10,6,44,16,6,111,195,1,0,10,44,8,6,22,111,196,1,0,10,42,20,42,86,2,44,16,2,111,143,1,0,10,44,8,2,22,111,3,1,0,10,42,20,42,0,0,0,27,48,2,0,89,0,0,0,192,1,0,17,2,44,8,2,111,197,1,0,10,45,2,20,42,2,111,197,1,0,10,115,181,1,0,10,10,2,111,198,1,0,10,11,43,28,7,111,199,1,0,10,22,111,3,1,0,10,12,8,40,124,0,0,10,45,7,6,8,111,4,1,0,10,7,111,59,0,0,10,45,220,222,10,7,44,6,7,111,60,0,0,10,220,6,40,94,1,0,6,42,0,0,0,1,16,0,0,2,0,32,0,40,72,0,10,0,0,0,0,27,48,4,0,180,0,0,0,193,1,0,17,2,44,8,2,111,197,1,0,10,45,2,20,42,2,111,197,1,0,10,115,181,1,0,10,10,2,111,198,1,0,10,11,43,119,7,111,199,1,0,10,12,8,22,111,3,1,0,10,40,124,0,0,10,45,98,20,13,23,19,4,43,74,8,17,4,111,3,1,0,10,19,5,17,5,31,61,111,0,1,0,10,19,6,17,6,22,47,5,17,5,13,43,53,114,154,65,0,112,17,5,22,17,6,111,241,0,0,10,27,40,240,0,0,10,45,14,17,5,17,6,23,88,111,226,0,0,10,13,43,16,17,4,23,88,19,4,17,4,8,111,143,1,0,10,50,172,6,9,111,4,1,0,10,7,111,59,0,0,10,45,129,222,10,7,44,6,7,111,60,0,0,10,220,6,40,94,1,0,6,42,1,16,0,0,2,0,32,0,131,163,0,10,0,0,0,0,90,2,44,17,126,222,3,0,4,2,111,147,1,0,10,111,148,1,0,10,42,23,42,0,27,48,6,0,211,0,0,0,194,1,0,17,2,57,204,0,0,0,2,111,198,1,0,10,10,56,169,0,0,0,6,111,199,1,0,10,11,7,22,111,3,1,0,10,12,27,141,63,0,0,1,13,22,19,4,22,19,6,43,29,9,17,6,8,17,4,17,5,17,4,89,111,241,0,0,10,162,17,6,23,88,19,6,17,5,23,88,19,4,17,6,9,142,105,23,89,47,16,8,31,59,17,4,111,179,1,0,10,37,19,5,22,47,202,9,17,6,8,17,4,111,226,0,0,10,162,31,100,115,22,0,0,10,19,7,9,25,17,7,40,196,7,0,6,9,23,17,7,40,196,7,0,6,9,24,17,7,40,196,7,0,6,9,22,17,7,40,196,7,0,6,9,26,17,7,40,196,7,0,6,7,22,17,7,111,25,0,0,10,111,180,1,0,10,111,191,1,0,10,6,111,59,0,0,10,58,76,255,255,255,222,10,6,44,6,6,111,60,0,0,10,220,42,0,1,16,0,0,2,0,13,0,187,200,0,10,0,0,0,0,158,2,3,154,40,124,0,0,10,45,28,4,111,120,0,0,10,22,49,9,4,31,32,111,23,0,0,10,38,4,2,3,154,111,119,0,0,10,38,42,19,48,2,0,152,0,0,0,0,0,0,0,114,164,65,0,112,23,115,171,1,0,10,128,221,3,0,4,114,188,65,0,112,115,157,1,0,10,128,222,3,0,4,114,244,65,0,112,115,157,1,0,10,128,223,3,0,4,114,2,66,0,112,115,157,1,0,10,128,224,3,0,4,114,16,66,0,112,115,157,1,0,10,128,225,3,0,4,114,232,62,0,112,115,157,1,0,10,128,226,3,0,4,114,38,66,0,112,115,157,1,0,10,128,227,3,0,4,114,42,66,0,112,115,157,1,0,10,128,228,3,0,4,114,171,55,0,112,115,157,1,0,10,128,229,3,0,4,114,62,66,0,112,115,157,1,0,10,128,230,3,0,4,42,27,48,10,0,88,1,0,0,195,1,0,17,3,111,36,1,0,6,10,6,45,2,20,42,6,114,72,66,0,112,111,141,1,0,10,22,47,2,20,42,114,98,66,0,112,6,23,40,200,7,0,6,11,114,114,66,0,112,6,23,40,200,7,0,6,12,8,45,2,20,42,114,130,66,0,112,6,23,40,200,7,0,6,13,114,142,66,0,112,6,23,40,200,7,0,6,19,4,114,160,66,0,112,6,23,40,200,7,0,6,19,5,114,178,66,0,112,6,23,40,200,7,0,6,40,202,7,0,6,19,6,114,198,66,0,112,6,23,40,201,7,0,6,19,7,17,7,44,34,22,19,12,43,21,17,7,17,12,17,7,17,12,154,40,202,7,0,6,162,17,12,23,88,19,12,17,12,17,7,142,105,50,227,114,216,66,0,112,6,23,40,200,7,0,6,19,8,114,6,65,0,112,6,23,40,200,7,0,6,19,9,17,9,45,24,35,0,0,0,0,0,0,248,255,19,10,35,0,0,0,0,0,0,248,255,19,11,43,81,17,9,31,59,111,0,1,0,10,19,13,17,13,22,47,2,20,42,17,9,22,17,13,111,241,0,0,10,32,167,0,0,0,40,227,0,0,10,18,10,40,170,1,0,10,45,2,20,42,17,9,17,13,23,88,111,226,0,0,10,32,167,0,0,0,40,227,0,0,10,18,11,40,170,1,0,10,45,2,20,42,0,7,8,9,17,4,17,5,17,6,17,7,17,8,17,10,17,11,115,12,7,0,6,19,14,222,6,38,20,19,14,222,0,17,14,42,1,16,0,0,0,0,53,1,26,79,1,6,46,0,0,1,19,48,4,0,31,0,0,0,158,1,0,17,2,3,4,22,40,190,7,0,6,10,6,44,16,6,111,143,1,0,10,44,8,6,22,111,3,1,0,10,42,20,42,0,19,48,4,0,67,0,0,0,196,1,0,17,2,3,4,22,40,187,7,0,6,10,6,44,8,6,111,195,1,0,10,45,2,20,42,6,111,195,1,0,10,11,7,141,63,0,0,1,12,22,13,43,20,8,9,6,9,111,196,1,0,10,22,111,3,1,0,10,162,9,23,88,13,9,7,50,232,8,42,162,2,44,35,2,114,184,59,0,112,111,89,1,0,10,45,13,2,114,240,66,0,112,111,89,1,0,10,44,9,2,29,111,226,0,0,10,16,0,2,42,30,2,123,231,3,0,4,42,34,2,3,125,231,3,0,4,42,30,2,123,232,3,0,4,42,34,2,3,125,232,3,0,4,42,30,2,123,233,3,0,4,42,34,2,3,125,233,3,0,4,42,30,2,123,234,3,0,4,42,34,2,3,125,234,3,0,4,42,30,2,123,235,3,0,4,42,34,2,3,125,235,3,0,4,42,30,2,123,236,3,0,4,42,34,2,3,125,236,3,0,4,42,30,2,123,237,3,0,4,42,34,2,3,125,237,3,0,4,42,30,2,123,238,3,0,4,42,34,2,3,125,238,3,0,4,42,30,2,123,239,3,0,4,42,34,2,3,125,239,3,0,4,42,0,0,0,19,48,2,0,78,0,0,0,0,0,0,0,2,31,11,40,104,7,0,6,2,3,40,205,7,0,6,2,4,40,207,7,0,6,2,5,40,209,7,0,6,2,14,4,40,211,7,0,6,2,14,5,40,213,7,0,6,2,14,6,40,215,7,0,6,2,14,7,40,217,7,0,6,2,14,8,40,219,7,0,6,2,14,9,40,221,7,0,6,42,0,0,19,48,2,0,163,0,0,0,47,0,0,17,31,50,115,22,0,0,10,10,6,2,40,206,7,0,6,111,119,0,0,10,31,32,111,23,0,0,10,38,6,2,40,208,7,0,6,111,119,0,0,10,31,32,111,23,0,0,10,38,6,2,40,210,7,0,6,111,119,0,0,10,31,10,111,23,0,0,10,38,2,40,212,7,0,6,44,20,6,2,40,212,7,0,6,111,119,0,0,10,31,32,111,23,0,0,10,38,6,2,40,216,7,0,6,111,191,0,0,10,31,32,111,23,0,0,10,38,6,2,40,218,7,0,6,111,23,0,0,10,31,32,111,23,0,0,10,38,6,2,40,220,7,0,6,111,119,0,0,10,31,10,111,23,0,0,10,38,6,111,25,0,0,10,42,0,27,48,10,0,165,0,0,0,197,1,0,17,3,111,42,1,0,6,26,46,7,20,12,221,147,0,0,0,3,111,36,1,0,6,10,126,240,3,0,4,6,114,137,32,0,112,111,186,1,0,10,111,180,1,0,10,10,126,241,3,0,4,6,111,147,1,0,10,111,148,1,0,10,45,4,20,12,222,96,6,40,225,7,0,6,45,4,20,12,222,84,6,22,25,111,241,0,0,10,11,6,7,6,25,28,111,241,0,0,10,6,31,9,30,111,241,0,0,10,7,40,230,7,0,6,6,25,27,111,241,0,0,10,6,31,9,111,27,0,0,10,40,229,7,0,6,6,31,10,111,27,0,0,10,6,31,11,111,226,0,0,10,115,222,7,0,6,12,222,5,38,20,12,222,0,8,42,0,0,0,1,16,0,0,0,0,0,0,158,158,0,5,13,0,0,1,19,48,4,0,64,0,0,0,91,1,0,17,22,10,22,12,43,28,6,8,23,88,40,227,7,0,6,2,8,111,27,0,0,10,40,226,7,0,6,90,88,10,8,23,88,12,8,2,111,30,0,0,10,50,219,2,30,111,27,0,0,10,6,31,11,93,40,228,7,0,6,11,7,254,1,42,19,48,2,0,79,0,0,0,0,0,0,0,2,31,65,50,12,2,31,73,48,7,2,31,65,89,23,88,42,2,31,74,50,12,2,31,82,48,7,2,31,74,89,23,88,42,2,31,83,50,12,2,31,90,48,7,2,31,83,89,24,88,42,2,31,48,50,10,2,31,57,48,5,2,31,48,89,42,15,0,40,28,0,0,10,115,31,0,0,10,122,194,2,23,50,9,2,29,48,5,31,9,2,89,42,2,30,51,3,31,10,42,2,31,9,51,2,22,42,2,31,10,50,10,2,31,17,48,5,31,19,2,89,42,115,74,0,0,10,122,102,2,31,10,47,6,31,48,2,88,209,42,2,31,10,51,3,31,88,42,115,74,0,0,10,122,0,0,19,48,2,0,150,0,0,0,0,0,0,0,2,31,69,50,16,2,31,72,48,11,2,31,69,89,32,192,7,0,0,88,42,2,31,74,50,16,2,31,78,48,11,2,31,74,89,32,196,7,0,0,88,42,2,31,80,51,6,32,201,7,0,0,42,2,31,82,50,16,2,31,84,48,11,2,31,82,89,32,202,7,0,0,88,42,2,31,86,50,16,2,31,89,48,11,2,31,86,89,32,205,7,0,0,88,42,2,31,49,50,16,2,31,57,48,11,2,31,49,89,32,209,7,0,0,88,42,2,31,65,50,16,2,31,68,48,11,2,31,65,89,32,218,7,0,0,88,42,15,0,40,28,0,0,10,115,31,0,0,10,122,0,0,19,48,2,0,128,1,0,0,198,1,0,17,2,22,111,27,0,0,10,10,2,23,111,27,0,0,10,11,6,31,49,89,69,9,0,0,0,82,0,0,0,88,0,0,0,94,0,0,0,82,0,0,0,82,0,0,0,65,1,0,0,65,1,0,0,65,1,0,0,116,0,0,0,6,31,74,89,69,17,0,0,0,71,0,0,0,93,0,0,0,115,0,0,0,121,0,0,0,244,0,0,0,244,0,0,0,244,0,0,0,244,0,0,0,244,0,0,0,137,0,0,0,244,0,0,0,244,0,0,0,169,0,0,0,201,0,0,0,207,0,0,0,244,0,0,0,228,0,0,0,56,239,0,0,0,114,51,27,0,112,42,114,209,28,0,112,42,7,31,65,63,219,0,0,0,7,31,87,61,211,0,0,0,114,203,28,0,112,42,7,31,65,50,5,7,31,69,49,16,7,31,51,63,187,0,0,0,7,31,57,61,179,0,0,0,114,19,29,0,112,42,7,31,65,63,165,0,0,0,7,31,84,61,157,0,0,0,114,93,27,0,112,42,7,31,76,63,143,0,0,0,7,31,82,61,135,0,0,0,114,0,67,0,112,42,114,137,28,0,112,42,7,31,65,50,118,7,31,69,48,113,114,103,29,0,112,42,7,31,65,50,11,7,31,77,48,6,114,6,67,0,112,42,7,31,78,50,86,7,31,84,48,81,114,87,27,0,112,42,7,31,70,50,11,7,31,82,48,6,114,57,27,0,112,42,7,31,83,50,54,7,31,87,48,49,114,31,29,0,112,42,114,87,27,0,112,42,7,31,48,46,10,7,31,51,50,27,7,31,57,48,22,114,99,27,0,112,42,7,31,65,50,11,7,31,82,48,6,114,25,29,0,112,42,20,42,126,114,12,67,0,112,115,157,1,0,10,128,240,3,0,4,114,24,67,0,112,115,157,1,0,10,128,241,3,0,4,42,46,2,3,4,5,22,40,234,7,0,6,42,19,48,9,0,16,0,0,0,0,0,0,0,2,3,4,5,14,4,20,20,20,20,40,235,7,0,6,42,19,48,2,0,194,0,0,0,199,1,0,17,2,31,9,40,104,7,0,6,2,4,40,237,7,0,6,2,3,40,239,7,0,6,2,5,40,241,7,0,6,2,14,4,40,243,7,0,6,2,14,5,40,245,7,0,6,2,14,6,40,247,7,0,6,2,14,7,40,249,7,0,6,2,14,8,40,251,7,0,6,31,80,115,22,0,0,10,10,2,40,236,7,0,6,6,40,108,7,0,6,2,40,238,7,0,6,6,40,108,7,0,6,2,40,240,7,0,6,6,40,108,7,0,6,2,40,242,7,0,6,11,18,1,40,228,0,0,10,6,40,108,7,0,6,2,40,244,7,0,6,6,40,108,7,0,6,2,40,246,7,0,6,6,40,108,7,0,6,2,40,248,7,0,6,6,40,108,7,0,6,2,40,250,7,0,6,6,40,108,7,0,6,2,6,111,25,0,0,10,125,184,3,0,4,42,30,2,123,242,3,0,4,42,34,2,3,125,242,3,0,4,42,30,2,123,243,3,0,4,42,34,2,3,125,243,3,0,4,42,30,2,123,244,3,0,4,42,34,2,3,125,244,3,0,4,42,30,2,123,245,3,0,4,42,34,2,3,125,245,3,0,4,42,30,2,123,246,3,0,4,42,34,2,3,125,246,3,0,4,42,30,2,123,247,3,0,4,42,34,2,3,125,247,3,0,4,42,30,2,123,248,3,0,4,42,34,2,3,125,248,3,0,4,42,30,2,123,249,3,0,4,42,34,2,3,125,249,3,0,4,42,0,0,19,48,8,0,207,0,0,0,200,1,0,17,3,111,36,1,0,6,10,6,114,66,67,0,112,111,89,1,0,10,45,2,20,42,6,114,66,67,0,112,40,30,0,0,10,111,226,0,0,10,10,114,78,67,0,112,6,31,59,22,40,131,7,0,6,11,7,40,124,0,0,10,44,2,20,42,114,84,67,0,112,6,31,59,22,40,131,7,0,6,12,114,71,58,0,112,6,31,59,22,40,131,7,0,6,37,45,6,38,114,90,67,0,112,22,13,114,104,67,0,112,6,31,59,22,40,131,7,0,6,18,3,40,200,1,0,10,38,114,110,67,0,112,6,31,59,22,40,131,7,0,6,19,4,114,83,58,0,112,6,31,59,22,40,131,7,0,6,19,5,114,107,58,0,112,6,31,59,22,40,131,7,0,6,19,6,114,104,67,0,112,6,31,59,22,40,131,7,0,6,19,7,7,8,9,17,4,17,5,17,6,17,7,115,235,7,0,6,42,38,2,3,20,40,255,7,0,6,42,0,0,0,19,48,5,0,22,1,0,0,201,1,0,17,3,111,177,0,0,6,10,6,45,2,20,42,6,115,40,8,0,6,11,20,12,20,13,7,22,111,42,8,0,6,19,4,17,4,44,21,17,4,111,133,6,0,6,12,115,38,8,0,6,17,4,40,27,8,0,6,13,9,45,41,7,23,111,42,8,0,6,19,4,17,4,45,2,20,42,17,4,111,133,6,0,6,12,115,38,8,0,6,17,4,40,27,8,0,6,13,9,45,2,20,42,4,44,65,4,29,111,44,0,0,10,44,56,4,29,111,77,0,0,10,116,41,0,0,2,19,8,17,8,44,38,8,19,9,22,19,10,43,22,17,9,17,10,154,19,11,17,8,17,11,111,69,1,0,6,17,10,23,88,19,10,17,10,17,9,142,105,50,226,9,111,77,6,0,6,9,111,73,6,0,6,9,111,75,6,0,6,8,23,115,51,1,0,6,19,5,9,111,79,6,0,6,19,6,17,6,44,10,17,5,24,17,6,111,54,1,0,6,9,111,81,6,0,6,19,7,17,7,44,10,17,5,25,17,7,111,54,1,0,6,17,5,31,11,17,4,111,20,8,0,6,17,4,111,22,8,0,6,17,4,111,24,8,0,6,115,8,8,0,6,111,54,1,0,6,17,5,42,30,2,123,250,3,0,4,42,34,2,3,125,250,3,0,4,42,30,2,123,251,3,0,4,42,34,2,3,125,251,3,0,4,42,30,2,123,252,3,0,4,42,34,2,3,125,252,3,0,4,42,114,2,40,20,0,0,10,2,3,40,3,8,0,6,2,4,40,5,8,0,6,2,5,40,7,8,0,6,42,66,114,13,19,0,112,40,146,0,0,10,128,253,3,0,4,42,54,2,3,4,5,14,4,20,40,11,8,0,6,42,0,0,0,19,48,7,0,129,0,0,0,202,1,0,17,126,253,3,0,4,10,31,33,11,22,12,14,5,44,100,14,5,26,111,126,0,0,10,44,24,14,5,26,111,127,0,0,10,13,9,44,12,9,111,25,0,0,10,40,146,0,0,10,10,14,5,25,111,126,0,0,10,44,22,14,5,25,111,127,0,0,10,19,4,17,4,44,8,17,4,40,17,1,0,10,11,14,5,31,16,111,126,0,0,10,44,23,14,5,31,16,111,127,0,0,10,19,5,17,5,44,8,17,5,40,17,1,0,10,12,3,4,5,14,4,6,7,8,40,12,8,0,6,42,206,3,23,46,22,114,116,67,0,112,3,140,8,0,0,2,40,91,0,0,10,115,31,0,0,10,122,14,4,2,111,183,0,0,10,14,5,14,6,40,76,8,0,6,4,5,40,13,8,0,6,42,0,0,0,19,48,5,0,177,0,0,0,203,1,0,17,2,111,69,8,0,6,10,6,45,11,114,190,67,0,112,115,34,0,0,10,122,6,111,31,6,0,6,11,6,111,32,6,0,6,12,3,7,40,139,0,0,10,13,4,8,40,139,0,0,10,19,4,9,7,91,17,4,8,91,40,140,0,0,10,19,5,9,7,17,5,90,89,24,91,19,6,17,4,8,17,5,90,89,24,91,9,17,4,115,36,6,0,6,19,7,22,19,8,19,9,43,67,22,19,10,17,6,19,11,43,40,6,17,10,17,8,111,41,6,0,6,44,15,17,7,17,11,17,9,17,5,17,5,111,47,6,0,6,17,10,23,88,19,10,17,11,17,5,88,19,11,17,10,7,50,211,17,8,23,88,19,8,17,9,17,5,88,19,9,17,8,8,50,184,17,7,42,0,0,0,19,48,2,0,47,0,0,0,65,0,0,17,2,40,140,6,0,6,25,111,126,0,0,10,44,23,2,40,140,6,0,6,25,111,127,0,0,10,165,72,0,0,1,115,130,0,0,10,42,18,0,254,21,51,0,0,27,6,42,226,15,1,40,131,0,0,10,45,28,2,40,140,6,0,6,25,111,126,0,0,10,44,32,2,40,140,6,0,6,25,111,128,0,0,10,38,42,2,40,140,6,0,6,25,3,140,51,0,0,27,111,129,0,0,10,42,19,48,2,0,49,0,0,0,65,0,0,17,2,40,140,6,0,6,31,16,111,126,0,0,10,44,24,2,40,140,6,0,6,31,16,111,127,0,0,10,165,72,0,0,1,115,130,0,0,10,42,18,0,254,21,51,0,0,27,6,42,238,15,1,40,131,0,0,10,45,30,2,40,140,6,0,6,31,16,111,126,0,0,10,44,34,2,40,140,6,0,6,31,16,111,128,0,0,10,38,42,2,40,140,6,0,6,31,16,3,140,51,0,0,27,111,129,0,0,10,42,30,2,123,254,3,0,4,42,34,2,3,125,254,3,0,4,42,30,2,123,255,3,0,4,42,34,2,3,125,255,3,0,4,42,30,2,123,0,4,0,4,42,34,2,3,125,0,4,0,4,42,130,2,3,4,40,135,6,0,6,2,5,40,21,8,0,6,2,14,4,40,23,8,0,6,2,14,5,40,25,8,0,6,42,0,0,0,19,48,5,0,70,0,0,0,204,1,0,17,2,3,125,8,4,0,4,3,111,131,6,0,6,10,2,6,40,33,8,0,6,11,7,45,2,20,42,2,7,40,32,8,0,6,12,8,45,2,20,42,8,40,29,8,0,6,13,9,45,2,20,42,8,40,36,8,0,6,8,142,105,9,20,20,115,96,6,0,6,42,30,2,40,29,8,0,6,42,0,0,19,48,3,0,67,1,0,0,205,1,0,17,2,142,105,10,22,11,22,12,126,1,4,0,4,13,31,20,115,22,0,0,10,19,4,22,19,5,56,20,1,0,0,8,27,64,140,0,0,0,6,17,5,89,27,63,11,1,0,0,2,17,5,27,40,34,8,0,6,19,6,17,5,27,88,19,5,17,6,45,33,6,17,5,89,31,11,63,235,0,0,0,2,17,5,31,11,40,34,8,0,6,31,31,88,19,6,17,5,31,11,88,19,5,22,19,7,43,46,6,17,5,89,30,47,5,6,19,5,43,40,2,17,5,30,40,34,8,0,6,19,8,17,4,17,8,209,111,23,0,0,10,38,17,5,30,88,19,5,17,7,23,88,19,7,17,7,17,6,50,204,7,12,126,6,4,0,4,8,111,201,1,0,10,13,56,129,0,0,0,8,25,46,3,27,43,1,26,19,9,6,17,5,89,17,9,50,119,2,17,5,17,9,40,34,8,0,6,19,10,17,5,17,9,88,19,5,9,17,10,40,31,8,0,6,19,11,17,11,114,232,67,0,112,111,89,1,0,10,44,44,8,11,17,11,27,111,27,0,0,10,40,30,8,0,6,12,126,6,4,0,4,8,111,201,1,0,10,13,17,11,28,111,27,0,0,10,31,76,51,28,8,11,43,24,17,4,17,11,111,119,0,0,10,38,7,12,126,6,4,0,4,8,111,201,1,0,10,13,17,5,6,63,228,254,255,255,17,4,111,25,0,0,10,42,154,126,7,4,0,4,2,111,202,1,0,10,45,13,126,7,4,0,4,31,85,111,203,1,0,10,42,126,7,4,0,4,2,111,203,1,0,10,42,18,2,3,154,42,0,19,48,6,0,129,1,0,0,206,1,0,17,2,123,8,4,0,4,111,24,8,0,6,24,48,10,28,11,126,93,3,0,4,10,43,59,2,123,8,4,0,4,111,24,8,0,6,30,48,10,30,11,126,97,3,0,4,10,43,35,2,123,8,4,0,4,111,24,8,0,6,31,22,48,11,31,10,11,126,92,3,0,4,10,43,9,31,12,11,126,91,3,0,4,10,2,123,8,4,0,4,111,22,8,0,6,12,3,142,105,7,91,13,9,8,47,2,20,42,3,142,105,7,93,19,4,9,8,89,19,5,9,141,72,0,0,1,19,6,22,19,11,43,26,17,6,17,11,3,17,4,7,40,34,8,0,6,158,17,11,23,88,19,11,17,4,7,88,19,4,17,11,9,50,225,6,115,210,6,0,6,17,6,17,5,111,211,6,0,6,45,2,20,42,23,7,31,31,95,98,23,89,19,7,22,19,8,22,19,12,43,44,17,6,17,12,148,19,13,17,13,44,6,17,13,17,7,51,2,20,42,17,13,23,46,8,17,13,17,7,23,89,51,6,17,8,23,88,19,8,17,12,23,88,19,12,17,12,8,50,207,8,7,90,17,8,89,141,71,0,0,1,19,9,22,19,10,22,19,14,43,97,17,6,17,14,148,19,15,17,15,23,46,8,17,15,17,7,23,89,51,30,17,9,17,10,17,10,7,88,23,89,17,15,23,254,2,40,10,0,0,43,17,10,7,23,89,88,19,10,43,41,7,23,89,19,16,43,29,17,9,17,10,37,23,88,19,10,17,15,23,17,16,31,31,95,98,95,22,254,3,156,17,16,23,89,19,16,17,16,22,47,222,17,14,23,88,19,14,17,14,8,50,154,17,10,17,9,142,105,46,2,20,42,17,9,42,0,0,0,19,48,7,0,171,1,0,0,207,1,0,17,2,123,8,4,0,4,111,20,8,0,6,10,2,123,8,4,0,4,111,24,8,0,6,11,6,45,4,31,14,43,2,31,11,7,26,90,88,12,8,141,72,0,0,1,13,7,6,40,37,8,0,6,141,71,0,0,1,19,4,6,44,26,22,19,5,43,12,9,17,5,17,5,158,17,5,23,88,19,5,17,5,9,142,105,50,237,43,80,8,23,88,24,8,24,91,23,89,31,15,91,90,88,8,24,91,19,6,24,91,19,7,22,19,8,43,46,17,8,17,8,31,15,91,88,19,9,9,17,6,17,8,89,23,89,17,7,17,9,89,23,89,158,9,17,6,17,8,88,17,7,17,9,88,23,88,158,17,8,23,88,19,8,17,8,17,6,50,204,22,19,10,22,19,11,56,237,0,0,0,7,17,10,89,26,90,6,45,4,31,12,43,2,31,9,88,19,12,17,10,24,90,19,13,8,23,89,17,13,89,19,14,22,19,15,56,173,0,0,0,17,15,24,90,19,16,22,19,17,56,145,0,0,0,17,4,17,11,17,16,88,17,17,88,3,9,17,13,17,17,88,148,9,17,13,17,15,88,148,111,41,6,0,6,156,17,4,17,11,24,17,12,90,88,17,16,88,17,17,88,3,9,17,13,17,15,88,148,9,17,14,17,17,89,148,111,41,6,0,6,156,17,4,17,11,26,17,12,90,88,17,16,88,17,17,88,3,9,17,14,17,17,89,148,9,17,14,17,15,89,148,111,41,6,0,6,156,17,4,17,11,28,17,12,90,88,17,16,88,17,17,88,3,9,17,14,17,15,89,148,9,17,13,17,17,88,148,111,41,6,0,6,156,17,17,23,88,19,17,17,17,24,63,103,255,255,255,17,15,23,88,19,15,17,15,17,12,63,74,255,255,255,17,11,17,12,30,90,88,19,11,17,10,23,88,19,10,17,10,7,63,11,255,255,255,17,4,42,0,19,48,3,0,31,0,0,0,2,0,0,17,22,10,3,11,43,17,6,23,98,10,2,7,145,44,4,6,23,88,10,7,23,88,11,7,3,4,88,50,233,6,42,0,19,48,3,0,37,0,0,0,1,0,0,17,2,142,105,3,89,10,6,30,50,10,2,3,30,40,34,8,0,6,210,42,2,3,6,40,34,8,0,6,30,6,89,31,31,95,98,210,42,0,0,0,19,48,5,0,41,0,0,0,208,1,0,17,2,142,105,29,88,30,91,141,74,0,0,1,10,22,11,43,16,6,7,2,30,7,90,40,35,8,0,6,156,7,23,88,11,7,6,142,105,50,234,6,42,70,3,45,4,31,112,43,2,31,88,31,16,2,90,88,2,90,42,0,19,48,4,0,174,5,0,0,0,0,0,0,31,32,141,63,0,0,1,37,22,114,244,67,0,112,162,37,23,114,241,23,0,112,162,37,24,114,146,42,0,112,162,37,25,114,4,68,0,112,162,37,26,114,8,68,0,112,162,37,27,114,142,42,0,112,162,37,28,114,12,68,0,112,162,37,29,114,138,42,0,112,162,37,30,114,16,68,0,112,162,37,31,9,114,75,10,0,112,162,37,31,10,114,20,68,0,112,162,37,31,11,114,24,68,0,112,162,37,31,12,114,28,68,0,112,162,37,31,13,114,63,10,0,112,162,37,31,14,114,67,10,0,112,162,37,31,15,114,162,64,0,112,162,37,31,16,114,32,68,0,112,162,37,31,17,114,36,68,0,112,162,37,31,18,114,71,10,0,112,162,37,31,19,114,40,68,0,112,162,37,31,20,114,44,68,0,112,162,37,31,21,114,150,42,0,112,162,37,31,22,114,48,68,0,112,162,37,31,23,114,52,68,0,112,162,37,31,24,114,56,68,0,112,162,37,31,25,114,167,55,0,112,162,37,31,26,114,60,68,0,112,162,37,31,27,114,64,68,0,112,162,37,31,28,114,68,68,0,112,162,37,31,29,114,84,68,0,112,162,37,31,30,114,100,68,0,112,162,37,31,31,114,116,68,0,112,162,128,1,4,0,4,31,32,141,63,0,0,1,37,22,114,244,67,0,112,162,37,23,114,241,23,0,112,162,37,24,114,132,68,0,112,162,37,25,114,136,68,0,112,162,37,26,114,140,68,0,112,162,37,27,114,144,68,0,112,162,37,28,114,148,68,0,112,162,37,29,114,152,68,0,112,162,37,30,114,156,68,0,112,162,37,31,9,114,160,68,0,112,162,37,31,10,114,164,68,0,112,162,37,31,11,114,168,68,0,112,162,37,31,12,114,172,68,0,112,162,37,31,13,114,176,68,0,112,162,37,31,14,114,180,68,0,112,162,37,31,15,114,184,68,0,112,162,37,31,16,114,188,68,0,112,162,37,31,17,114,192,68,0,112,162,37,31,18,114,196,68,0,112,162,37,31,19,114,200,68,0,112,162,37,31,20,114,204,68,0,112,162,37,31,21,114,208,68,0,112,162,37,31,22,114,212,68,0,112,162,37,31,23,114,216,68,0,112,162,37,31,24,114,220,68,0,112,162,37,31,25,114,2,6,0,112,162,37,31,26,114,224,68,0,112,162,37,31,27,114,228,68,0,112,162,37,31,28,114,232,68,0,112,162,37,31,29,114,84,68,0,112,162,37,31,30,114,100,68,0,112,162,37,31,31,114,116,68,0,112,162,128,2,4,0,4,31,32,141,63,0,0,1,37,22,114,244,67,0,112,162,37,23,114,241,23,0,112,162,37,24,114,248,68,0,112,162,37,25,114,252,68,0,112,162,37,26,114,0,69,0,112,162,37,27,114,4,69,0,112,162,37,28,114,8,69,0,112,162,37,29,114,12,69,0,112,162,37,30,114,16,69,0,112,162,37,31,9,114,20,69,0,112,162,37,31,10,114,24,69,0,112,162,37,31,11,114,85,10,0,112,162,37,31,12,114,245,49,0,112,162,37,31,13,114,28,69,0,112,162,37,31,14,114,245,49,0,112,162,37,31,15,114,32,69,0,112,162,37,31,16,114,36,69,0,112,162,37,31,17,114,40,69,0,112,162,37,31,18,114,9,24,0,112,162,37,31,19,114,13,24,0,112,162,37,31,20,114,44,69,0,112,162,37,31,21,114,48,69,0,112,162,37,31,22,114,52,69,0,112,162,37,31,23,114,56,69,0,112,162,37,31,24,114,60,69,0,112,162,37,31,25,114,75,16,0,112,162,37,31,26,114,64,69,0,112,162,37,31,27,114,68,69,0,112,162,37,31,28,114,68,68,0,112,162,37,31,29,114,72,69,0,112,162,37,31,30,114,88,69,0,112,162,37,31,31,114,116,68,0,112,162,128,3,4,0,4,31,32,141,63,0,0,1,37,22,114,137,32,0,112,162,37,23,114,245,49,0,112,162,37,24,114,79,10,0,112,162,37,25,114,104,69,0,112,162,37,26,114,190,61,0,112,162,37,27,114,110,69,0,112,162,37,28,114,32,69,0,112,162,37,29,114,36,69,0,112,162,37,30,114,40,69,0,112,162,37,31,9,114,9,24,0,112,162,37,31,10,114,13,24,0,112,162,37,31,11,114,228,62,0,112,162,37,31,12,114,31,21,0,112,162,37,31,13,114,227,33,0,112,162,37,31,14,114,183,19,0,112,162,37,31,15,114,116,69,0,112,162,37,31,16,114,17,24,0,112,162,37,31,17,114,171,55,0,112,162,37,31,18,114,245,23,0,112,162,37,31,19,114,249,23,0,112,162,37,31,20,114,197,14,0,112,162,37,31,21,114,229,56,0,112,162,37,31,22,114,38,66,0,112,162,37,31,23,114,120,69,0,112,162,37,31,24,114,232,62,0,112,162,37,31,25,114,124,69,0,112,162,37,31,26,114,128,69,0,112,162,37,31,27,114,104,8,0,112,162,37,31,28,114,132,69,0,112,162,37,31,29,114,136,69,0,112,162,37,31,30,114,140,69,0,112,162,37,31,31,114,72,69,0,112,162,128,4,4,0,4,31,16,141,63,0,0,1,37,22,114,244,67,0,112,162,37,23,114,241,23,0,112,162,37,24,114,73,32,0,112,162,37,25,114,85,19,0,112,162,37,26,114,144,69,0,112,162,37,27,114,148,69,0,112,162,37,28,114,152,69,0,112,162,37,29,114,156,69,0,112,162,37,30,114,160,69,0,112,162,37,31,9,114,164,69,0,112,162,37,31,10,114,168,69,0,112,162,37,31,11,114,172,69,0,112,162,37,31,12,114,171,55,0,112,162,37,31,13,114,249,23,0,112,162,37,31,14,114,72,69,0,112,162,37,31,15,114,232,68,0,112,162,128,5,4,0,4,115,204,1,0,10,37,22,126,1,4,0,4,111,205,1,0,10,37,23,126,2,4,0,4,111,205,1,0,10,37,24,126,3,4,0,4,111,205,1,0,10,37,26,126,4,4,0,4,111,205,1,0,10,37,25,126,5,4,0,4,111,205,1,0,10,37,27,20,111,205,1,0,10,128,6,4,0,4,115,206,1,0,10,37,31,85,22,111,207,1,0,10,37,31,76,23,111,207,1,0,10,37,31,77,24,111,207,1,0,10,37,31,80,26,111,207,1,0,10,37,31,68,25,111,207,1,0,10,37,31,66,27,111,207,1,0,10,128,7,4,0,4,42,58,2,40,20,0,0,10,2,3,125,10,4,0,4,42,34,2,22,40,42,8,0,6,42,0,0,19,48,8,0,158,0,0,0,209,1,0,17,2,40,47,8,0,6,10,6,45,2,20,42,2,6,40,46,8,0,6,11,7,45,2,20,42,3,44,16,7,22,154,19,4,7,22,7,24,154,162,7,24,17,4,162,2,7,40,43,8,0,6,45,2,20,42,2,2,123,10,4,0,4,7,2,123,15,4,0,4,26,93,154,7,2,123,15,4,0,4,23,88,26,93,154,7,2,123,15,4,0,4,24,88,26,93,154,7,2,123,15,4,0,4,25,88,26,93,154,40,49,8,0,6,12,8,45,2,20,42,2,7,40,48,8,0,6,13,9,45,2,20,42,8,9,2,123,11,4,0,4,2,123,13,4,0,4,2,123,12,4,0,4,115,26,8,0,6,42,0,0,19,48,7,0,61,1,0,0,210,1,0,17,2,3,22,154,40,56,8,0,6,44,33,2,3,23,154,40,56,8,0,6,44,22,2,3,24,154,40,56,8,0,6,44,11,2,3,25,154,40,56,8,0,6,45,2,22,42,24,2,123,14,4,0,4,90,10,26,141,72,0,0,1,37,22,2,3,22,154,3,23,154,6,40,50,8,0,6,158,37,23,2,3,23,154,3,24,154,6,40,50,8,0,6,158,37,24,2,3,24,154,3,25,154,6,40,50,8,0,6,158,37,25,2,3,25,154,3,22,154,6,40,50,8,0,6,158,11,2,7,6,40,44,8,0,6,125,15,4,0,4,2,123,15,4,0,4,22,47,2,22,42,22,106,12,22,19,4,43,73,7,2,123,15,4,0,4,17,4,88,26,93,148,19,5,2,123,11,4,0,4,44,17,8,29,98,12,8,17,5,23,99,31,127,95,106,88,12,43,27,8,31,10,98,12,8,17,5,24,99,32,224,3,0,0,95,17,5,23,99,31,31,95,88,106,88,12,17,4,23,88,19,4,17,4,26,50,178,8,2,123,11,4,0,4,40,45,8,0,6,13,9,22,47,2,22,42,2,123,11,4,0,4,44,25,2,9,28,99,23,88,125,12,4,0,4,2,9,31,63,95,23,88,125,13,4,0,4,43,27,2,9,31,11,99,23,88,125,12,4,0,4,2,9,32,255,7,0,0,95,23,88,125,13,4,0,4,23,42,0,0,0,19,48,3,0,95,0,0,0,211,1,0,17,22,10,2,11,22,12,43,31,7,8,148,13,9,3,24,89,31,31,95,99,23,98,9,23,95,88,19,4,6,25,98,17,4,88,10,8,23,88,12,8,7,142,105,50,219,6,23,95,31,11,98,6,23,99,88,10,22,19,5,43,27,6,126,9,4,0,4,17,5,148,97,40,99,1,0,6,24,48,3,17,5,42,17,5,23,88,19,5,17,5,26,50,224,21,42,0,19,48,4,0,111,0,0,0,212,1,0,17,3,44,6,29,10,24,11,43,5,31,10,10,26,11,6,7,89,12,6,141,72,0,0,1,13,6,23,89,19,5,43,20,9,17,5,2,105,31,15,95,158,2,26,99,16,0,17,5,23,89,19,5,17,5,22,47,231,126,94,3,0,4,115,210,6,0,6,9,8,111,211,6,0,6,45,2,21,42,22,19,4,22,19,6,43,17,17,4,26,98,9,17,6,148,88,19,4,17,6,23,88,19,6,17,6,7,50,234,17,4,42,0,19,48,5,0,174,1,0,0,213,1,0,17,3,10,3,11,3,12,3,13,23,19,4,2,23,125,14,4,0,4,56,175,0,0,0,2,6,17,4,23,21,40,53,8,0,6,19,9,2,7,17,4,23,23,40,53,8,0,6,19,10,2,8,17,4,21,23,40,53,8,0,6,19,11,2,9,17,4,21,21,40,53,8,0,6,19,12,2,123,14,4,0,4,24,49,81,17,12,17,9,40,57,8,0,6,2,123,14,4,0,4,107,90,9,6,40,57,8,0,6,2,123,14,4,0,4,24,88,107,90,91,19,13,17,13,108,35,0,0,0,0,0,0,232,63,50,76,17,13,108,35,0,0,0,0,0,0,244,63,48,62,2,17,9,17,10,17,11,17,12,40,51,8,0,6,44,46,17,9,10,17,10,11,17,11,12,17,12,13,17,4,22,254,1,19,4,2,2,123,14,4,0,4,23,88,125,14,4,0,4,2,123,14,4,0,4,31,9,63,68,255,255,255,2,123,14,4,0,4,27,46,11,2,123,14,4,0,4,29,46,2,20,42,2,2,123,14,4,0,4,27,254,1,125,11,4,0,4,6,111,234,8,0,6,107,34,0,0,0,63,88,6,111,236,8,0,6,107,34,0,0,0,63,89,115,59,1,0,6,19,5,7,111,234,8,0,6,107,34,0,0,0,63,88,7,111,236,8,0,6,107,34,0,0,0,63,88,115,59,1,0,6,19,6,8,111,234,8,0,6,107,34,0,0,0,63,89,8,111,236,8,0,6,107,34,0,0,0,63,88,115,59,1,0,6,19,7,9,111,234,8,0,6,107,34,0,0,0,63,89,9,111,236,8,0,6,107,34,0,0,0,63,89,115,59,1,0,6,19,8,26,141,40,0,0,2,37,22,17,5,162,37,23,17,6,162,37,24,17,7,162,37,25,17,8,162,24,2,123,14,4,0,4,90,25,89,107,24,2,123,14,4,0,4,90,107,40,54,8,0,6,42,0,0,19,48,5,0,29,2,0,0,214,1,0,17,2,123,10,4,0,4,40,226,6,0,6,19,6,17,6,45,2,20,42,17,6,111,230,6,0,6,19,7,17,7,44,25,17,7,22,154,10,17,7,23,154,11,17,7,24,154,12,17,7,25,154,13,56,142,0,0,0,2,123,10,4,0,4,111,31,6,0,6,24,91,19,4,2,123,10,4,0,4,111,32,6,0,6,24,91,19,5,2,17,4,29,88,17,5,29,89,115,239,8,0,6,22,23,21,40,53,8,0,6,111,238,8,0,6,10,2,17,4,29,88,17,5,29,88,115,239,8,0,6,22,23,23,40,53,8,0,6,111,238,8,0,6,11,2,17,4,29,89,17,5,29,88,115,239,8,0,6,22,21,23,40,53,8,0,6,111,238,8,0,6,12,2,17,4,29,89,17,5,29,89,115,239,8,0,6,22,21,21,40,53,8,0,6,111,238,8,0,6,13,6,111,60,1,0,6,9,111,60,1,0,6,88,7,111,60,1,0,6,88,8,111,60,1,0,6,88,34,0,0,128,64,91,40,218,6,0,6,19,4,6,111,61,1,0,6,9,111,61,1,0,6,88,7,111,61,1,0,6,88,8,111,61,1,0,6,88,34,0,0,128,64,91,40,218,6,0,6,19,5,2,123,10,4,0,4,31,15,17,4,17,5,40,227,6,0,6,19,6,17,6,45,2,20,42,17,6,111,230,6,0,6,19,7,17,7,44,22,17,7,22,154,10,17,7,23,154,11,17,7,24,154,12,17,7,25,154,13,43,112,2,17,4,29,88,17,5,29,89,115,239,8,0,6,22,23,21,40,53,8,0,6,111,238,8,0,6,10,2,17,4,29,88,17,5,29,88,115,239,8,0,6,22,23,23,40,53,8,0,6,111,238,8,0,6,11,2,17,4,29,89,17,5,29,88,115,239,8,0,6,22,21,23,40,53,8,0,6,111,238,8,0,6,12,2,17,4,29,89,17,5,29,89,115,239,8,0,6,22,21,21,40,53,8,0,6,111,238,8,0,6,13,6,111,60,1,0,6,9,111,60,1,0,6,88,7,111,60,1,0,6,88,8,111,60,1,0,6,88,34,0,0,128,64,91,40,218,6,0,6,19,4,6,111,61,1,0,6,9,111,61,1,0,6,88,7,111,61,1,0,6,88,8,111,61,1,0,6,88,34,0,0,128,64,91,40,218,6,0,6,19,5,17,4,17,5,115,239,8,0,6,42,94,3,24,2,123,14,4,0,4,90,107,2,40,59,8,0,6,107,40,54,8,0,6,42,0,0,0,19,48,20,0,115,0,0,0,98,0,0,17,40,160,6,0,6,2,40,59,8,0,6,10,6,107,34,0,0,0,64,91,2,123,14,4,0,4,107,89,11,6,107,34,0,0,0,64,91,2,123,14,4,0,4,107,88,12,3,6,6,7,7,8,7,8,8,7,8,4,111,60,1,0,6,4,111,61,1,0,6,5,111,60,1,0,6,5,111,61,1,0,6,14,4,111,60,1,0,6,14,4,111,61,1,0,6,14,5,111,60,1,0,6,14,5,111,61,1,0,6,111,162,6,0,6,42,0,19,48,5,0,136,0,0,0,215,1,0,17,22,10,3,4,40,58,8,0,6,11,7,5,107,91,3,111,60,1,0,6,12,3,111,61,1,0,6,13,37,4,111,60,1,0,6,3,111,60,1,0,6,89,90,7,91,19,4,4,111,61,1,0,6,3,111,61,1,0,6,89,90,7,91,19,5,22,19,6,43,59,2,123,10,4,0,4,8,17,6,107,17,4,90,88,40,218,6,0,6,9,17,6,107,17,5,90,88,40,218,6,0,6,111,41,6,0,6,44,14,6,23,5,17,6,89,23,89,31,31,95,98,96,10,17,6,23,88,19,6,17,6,5,50,192,6,42,19,48,3,0,148,0,0,0,1,0,0,17,3,111,234,8,0,6,25,89,3,111,236,8,0,6,25,88,115,239,8,0,6,16,1,4,111,234,8,0,6,25,89,4,111,236,8,0,6,25,89,115,239,8,0,6,16,2,5,111,234,8,0,6,25,88,5,111,236,8,0,6,25,89,115,239,8,0,6,16,3,14,4,111,234,8,0,6,25,88,14,4,111,236,8,0,6,25,88,115,239,8,0,6,16,4,2,14,4,3,40,52,8,0,6,10,6,45,2,22,42,2,3,4,40,52,8,0,6,6,46,2,22,42,2,4,5,40,52,8,0,6,6,46,2,22,42,2,5,14,4,40,52,8,0,6,6,254,1,42,19,48,3,0,205,0,0,0,216,1,0,17,3,4,40,57,8,0,6,10,4,111,234,8,0,6,3,111,234,8,0,6,89,107,6,91,11,4,111,236,8,0,6,3,111,236,8,0,6,89,107,6,91,12,22,13,3,111,234,8,0,6,107,19,4,3,111,236,8,0,6,107,19,5,2,123,10,4,0,4,3,111,234,8,0,6,3,111,236,8,0,6,111,41,6,0,6,19,6,6,108,40,105,1,0,10,105,19,7,22,19,9,43,51,17,4,7,88,19,4,17,5,8,88,19,5,2,123,10,4,0,4,17,4,40,218,6,0,6,17,5,40,218,6,0,6,111,41,6,0,6,17,6,46,4,9,23,88,13,17,9,23,88,19,9,17,9,17,7,50,199,9,107,6,91,19,8,17,8,34,205,204,204,61,54,11,17,8,34,102,102,102,63,52,2,22,42,17,8,34,205,204,204,61,254,3,22,254,1,17,6,46,2,21,42,23,42,0,0,0,19,48,3,0,147,0,0,0,2,0,0,17,3,111,234,8,0,6,5,88,10,3,111,236,8,0,6,14,4,88,11,43,9,6,5,88,10,7,14,4,88,11,2,6,7,40,55,8,0,6,44,16,2,123,10,4,0,4,6,7,111,41,6,0,6,4,46,221,6,5,89,10,7,14,4,89,11,43,4,6,5,88,10,2,6,7,40,55,8,0,6,44,16,2,123,10,4,0,4,6,7,111,41,6,0,6,4,46,226,6,5,89,10,43,5,7,14,4,88,11,2,6,7,40,55,8,0,6,44,16,2,123,10,4,0,4,6,7,111,41,6,0,6,4,46,225,7,14,4,89,11,6,7,115,239,8,0,6,42,0,19,48,5,0,13,1,0,0,217,1,0,17,4,34,0,0,0,64,3,90,91,10,2,22,154,111,60,1,0,6,2,24,154,111,60,1,0,6,89,11,2,22,154,111,61,1,0,6,2,24,154,111,61,1,0,6,89,12,2,22,154,111,60,1,0,6,2,24,154,111,60,1,0,6,88,34,0,0,0,64,91,2,22,154,111,61,1,0,6,2,24,154,111,61,1,0,6,88,34,0,0,0,64,91,13,37,6,7,90,88,9,6,8,90,88,115,59,1,0,6,19,4,6,7,90,89,9,6,8,90,89,115,59,1,0,6,19,5,2,23,154,111,60,1,0,6,2,25,154,111,60,1,0,6,89,11,2,23,154,111,61,1,0,6,2,25,154,111,61,1,0,6,89,12,2,23,154,111,60,1,0,6,2,25,154,111,60,1,0,6,88,34,0,0,0,64,91,2,23,154,111,61,1,0,6,2,25,154,111,61,1,0,6,88,34,0,0,0,64,91,13,37,6,7,90,88,9,6,8,90,88,115,59,1,0,6,19,6,6,7,90,89,9,6,8,90,89,115,59,1,0,6,19,7,26,141,40,0,0,2,37,22,17,4,162,37,23,17,6,162,37,24,17,5,162,37,25,17,7,162,42,158,3,22,50,33,3,2,123,10,4,0,4,111,31,6,0,6,47,19,4,22,49,15,4,2,123,10,4,0,4,111,32,6,0,6,254,4,42,22,42,0,0,0,19,48,3,0,33,0,0,0,2,0,0,17,3,111,60,1,0,6,40,218,6,0,6,10,3,111,61,1,0,6,40,218,6,0,6,11,2,6,7,40,55,8,0,6,42,122,2,111,234,8,0,6,2,111,236,8,0,6,3,111,234,8,0,6,3,111,236,8,0,6,40,220,6,0,6,42,122,2,111,60,1,0,6,2,111,61,1,0,6,3,111,60,1,0,6,3,111,61,1,0,6,40,219,6,0,6,42,0,19,48,4,0,68,0,0,0,0,0,0,0,2,123,11,4,0,4,44,12,26,2,123,12,4,0,4,90,31,11,88,42,2,123,12,4,0,4,26,48,12,26,2,123,12,4,0,4,90,31,15,88,42,26,2,123,12,4,0,4,90,24,2,123,12,4,0,4,26,89,30,91,23,88,90,88,31,15,88,42,94,26,141,72,0,0,1,37,208,41,5,0,4,40,153,0,0,10,128,9,4,0,4,42,30,2,123,16,4,0,4,42,34,2,3,125,16,4,0,4,42,30,2,123,17,4,0,4,42,34,2,3,125,17,4,0,4,42,30,2,123,18,4,0,4,42,34,2,3,125,18,4,0,4,42,30,2,123,19,4,0,4,42,34,2,3,125,19,4,0,4,42,30,2,123,20,4,0,4,42,34,2,3,125,20,4,0,4,42,98,2,3,40,110,8,0,6,2,4,104,125,21,4,0,4,2,5,104,125,22,4,0,4,42,0,0,19,48,4,0,132,0,0,0,1,0,0,17,22,10,43,118,6,44,15,6,31,31,51,89,2,123,22,4,0,4,31,62,48,79,3,31,31,27,111,20,6,0,6,2,123,22,4,0,4,31,62,49,19,3,2,123,22,4,0,4,31,31,89,31,16,111,20,6,0,6,43,41,6,45,22,3,2,123,22,4,0,4,31,31,40,208,1,0,10,27,111,20,6,0,6,43,16,3,2,123,22,4,0,4,31,31,89,27,111,20,6,0,6,3,4,2,123,21,4,0,4,6,88,145,30,111,20,6,0,6,6,23,88,10,6,2,123,22,4,0,4,50,129,42,19,48,5,0,73,0,0,0,0,0,0,0,27,141,13,0,0,1,37,22,114,120,69,0,112,162,37,23,2,123,21,4,0,4,140,106,0,0,1,162,37,24,114,176,69,0,112,162,37,25,2,123,21,4,0,4,2,123,22,4,0,4,88,23,89,140,72,0,0,1,162,37,26,114,124,69,0,112,162,40,134,0,0,10,42,42,2,31,33,22,40,76,8,0,6,42,19,48,6,0,48,4,0,0,218,1,0,17,2,115,87,8,0,6,40,88,8,0,6,10,6,111,2,6,0,6,3,90,31,100,91,31,11,88,11,6,111,2,6,0,6,7,88,12,4,57,154,0,0,0,4,22,254,4,13,4,40,161,0,0,10,19,4,17,4,9,45,4,31,32,43,1,26,49,31,114,182,69,0,112,23,141,13,0,0,1,37,22,4,140,72,0,0,1,162,40,106,1,0,10,115,31,0,0,10,122,17,4,9,40,84,8,0,6,19,5,126,27,4,0,4,17,4,148,19,6,17,5,17,5,17,6,93,89,19,15,6,17,6,40,83,8,0,6,19,7,17,7,111,2,6,0,6,7,88,17,15,49,11,114,240,69,0,112,115,31,0,0,10,122,9,57,178,0,0,0,17,7,111,2,6,0,6,17,6,31,64,90,62,161,0,0,0,114,240,69,0,112,115,31,0,0,10,122,22,19,6,20,19,7,22,19,16,17,16,31,32,49,11,114,62,70,0,112,115,31,0,0,10,122,17,16,25,254,2,22,254,1,13,9,45,4,17,16,43,4,17,16,23,88,19,4,17,4,9,40,84,8,0,6,19,5,8,17,5,48,76,17,6,126,27,4,0,4,17,4,148,46,20,126,27,4,0,4,17,4,148,19,6,6,17,6,40,83,8,0,6,19,7,17,7,44,40,17,5,17,5,17,6,93,89,19,17,9,44,14,17,7,111,2,6,0,6,17,6,31,64,90,48,13,17,7,111,2,6,0,6,7,88,17,17,49,11,17,16,23,88,19,16,56,115,255,255,255,17,7,17,5,17,6,40,80,8,0,6,19,8,17,7,111,2,6,0,6,17,6,91,19,9,9,17,4,17,9,40,78,8,0,6,19,10,9,45,4,31,14,43,2,31,11,17,4,26,90,88,19,11,17,11,141,72,0,0,1,19,12,9,44,32,17,11,19,13,22,19,18,43,13,17,12,17,18,17,18,158,17,18,23,88,19,18,17,18,17,12,142,105,50,235,43,89,17,11,23,88,24,17,11,24,91,23,89,31,15,91,90,88,19,13,17,11,24,91,19,19,17,13,24,91,19,20,22,19,21,43,48,17,21,17,21,31,15,91,88,19,22,17,12,17,19,17,21,89,23,89,17,20,17,22,89,23,89,158,17,12,17,19,17,21,88,17,20,17,22,88,23,88,158,17,21,23,88,19,21,17,21,17,19,50,202,17,13,115,35,6,0,6,19,14,22,19,23,22,19,24,56,44,1,0,0,17,4,17,23,89,26,90,9,45,4,31,12,43,2,31,9,88,19,25,22,19,26,56,249,0,0,0,17,26,24,90,19,27,22,19,28,56,221,0,0,0,17,8,17,24,17,27,88,17,28,88,111,4,6,0,6,44,28,17,14,17,12,17,23,24,90,17,28,88,148,17,12,17,23,24,90,17,26,88,148,23,111,42,6,0,6,17,8,17,24,17,25,24,90,88,17,27,88,17,28,88,111,4,6,0,6,44,33,17,14,17,12,17,23,24,90,17,26,88,148,17,12,17,11,23,89,17,23,24,90,89,17,28,89,148,23,111,42,6,0,6,17,8,17,24,17,25,26,90,88,17,27,88,17,28,88,111,4,6,0,6,44,38,17,14,17,12,17,11,23,89,17,23,24,90,89,17,28,89,148,17,12,17,11,23,89,17,23,24,90,89,17,26,89,148,23,111,42,6,0,6,17,8,17,24,17,25,28,90,88,17,27,88,17,28,88,111,4,6,0,6,44,33,17,14,17,12,17,11,23,89,17,23,24,90,89,17,26,89,148,17,12,17,23,24,90,17,28,88,148,23,111,42,6,0,6,17,28,23,88,19,28,17,28,24,63,27,255,255,255,17,26,23,88,19,26,17,26,17,25,63,254,254,255,255,17,24,17,25,30,90,88,19,24,17,23,23,88,19,23,17,23,17,4,63,203,254,255,255,17,14,9,17,13,17,10,40,79,8,0,6,9,44,17,17,14,17,13,24,91,27,40,77,8,0,6,56,134,0,0,0,17,14,17,13,24,91,29,40,77,8,0,6,22,19,29,22,19,30,43,104,17,13,24,91,23,95,19,31,43,74,17,14,17,13,24,91,17,30,89,17,31,23,111,42,6,0,6,17,14,17,13,24,91,17,30,88,17,31,23,111,42,6,0,6,17,14,17,31,17,13,24,91,17,30,89,23,111,42,6,0,6,17,14,17,31,17,13,24,91,17,30,88,23,111,42,6,0,6,17,31,24,88,19,31,17,31,17,13,50,176,17,29,31,15,88,19,29,17,30,31,16,88,19,30,17,29,17,11,24,91,23,89,50,142,115,71,8,0,6,37,9,111,62,8,0,6,37,17,13,111,64,8,0,6,37,17,4,111,66,8,0,6,37,17,9,111,68,8,0,6,37,17,14,111,70,8,0,6,42,19,48,4,0,159,0,0,0,2,0,0,17,22,10,43,64,3,6,89,11,43,48,2,7,3,6,89,23,111,42,6,0,6,2,7,3,6,88,23,111,42,6,0,6,2,3,6,89,7,23,111,42,6,0,6,2,3,6,88,7,23,111,42,6,0,6,7,23,88,11,7,3,6,88,49,202,6,24,88,10,6,4,50,188,2,3,4,89,3,4,89,23,111,42,6,0,6,2,3,4,89,23,88,3,4,89,23,111,42,6,0,6,2,3,4,89,3,4,89,23,88,23,111,42,6,0,6,2,3,4,88,3,4,89,23,111,42,6,0,6,2,3,4,88,3,4,89,23,88,23,111,42,6,0,6,2,3,4,88,3,4,88,23,89,23,111,42,6,0,6,42,0,19,48,3,0,74,0,0,0,219,1,0,17,115,6,6,0,6,10,2,44,32,6,3,23,89,24,111,20,6,0,6,6,4,23,89,28,111,20,6,0,6,6,31,28,26,40,80,8,0,6,10,43,31,6,3,23,89,27,111,20,6,0,6,6,4,23,89,31,11,111,20,6,0,6,6,31,40,26,40,80,8,0,6,10,6,42,0,0,19,48,4,0,232,0,0,0,51,0,0,17,4,24,91,10,3,44,107,22,11,43,98,6,25,89,7,88,12,5,7,111,4,6,0,6,44,11,2,8,6,27,89,23,111,42,6,0,6,5,7,29,88,111,4,6,0,6,44,11,2,6,27,88,8,23,111,42,6,0,6,5,31,20,7,89,111,4,6,0,6,44,11,2,8,6,27,88,23,111,42,6,0,6,5,31,27,7,89,111,4,6,0,6,44,11,2,6,27,89,8,23,111,42,6,0,6,7,23,88,11,7,29,50,154,42,22,13,43,108,6,27,89,9,88,9,27,91,88,19,4,5,9,111,4,6,0,6,44,12,2,17,4,6,29,89,23,111,42,6,0,6,5,9,31,10,88,111,4,6,0,6,44,12,2,6,29,88,17,4,23,111,42,6,0,6,5,31,29,9,89,111,4,6,0,6,44,12,2,17,4,6,29,88,23,111,42,6,0,6,5,31,39,9,89,111,4,6,0,6,44,12,2,6,29,89,17,4,23,111,42,6,0,6,9,23,88,13,9,31,10,50,143,42,19,48,4,0,125,0,0,0,220,1,0,17,2,111,2,6,0,6,4,93,44,11,114,128,70,0,112,115,34,0,0,10,122,2,111,2,6,0,6,4,91,10,4,40,82,8,0,6,115,215,6,0,6,3,4,91,11,2,4,7,40,81,8,0,6,12,8,7,6,89,111,217,6,0,6,3,4,93,13,115,6,6,0,6,19,4,17,4,22,9,111,20,6,0,6,8,19,5,22,19,6,43,23,17,5,17,6,148,19,7,17,4,17,7,4,111,20,6,0,6,17,6,23,88,19,6,17,6,17,5,142,105,50,225,17,4,42,0,0,0,19,48,4,0,83,0,0,0,221,1,0,17,4,141,72,0,0,1,10,22,11,2,111,2,6,0,6,3,91,12,43,57,22,13,22,19,4,43,37,9,2,7,3,90,17,4,88,111,4,6,0,6,45,3,22,43,11,23,3,17,4,89,23,89,31,31,95,98,96,13,17,4,23,88,19,4,17,4,3,50,214,6,7,9,158,7,23,88,11,7,8,50,195,6,42,0,19,48,2,0,98,0,0,0,0,0,0,0,2,26,89,69,9,0,0,0,2,0,0,0,32,0,0,0,8,0,0,0,32,0,0,0,14,0,0,0,32,0,0,0,20,0,0,0,32,0,0,0,26,0,0,0,43,30,126,94,3,0,4,42,126,93,3,0,4,42,126,97,3,0,4,42,126,92,3,0,4,42,126,91,3,0,4,42,114,234,70,0,112,2,140,72,0,0,1,40,91,0,0,10,115,31,0,0,10,122,0,0,19,48,4,0,146,0,0,0,222,1,0,17,115,6,6,0,6,10,2,111,2,6,0,6,11,23,3,31,31,95,98,24,89,12,22,13,43,114,22,19,4,22,19,5,43,41,9,17,5,88,7,47,12,2,9,17,5,88,111,4,6,0,6,44,16,17,4,23,3,23,89,17,5,89,31,31,95,98,96,19,4,17,5,23,88,19,5,17,5,3,50,210,17,4,8,95,8,51,17,6,17,4,8,95,3,111,20,6,0,6,9,23,89,13,43,32,17,4,8,95,45,17,6,17,4,23,96,3,111,20,6,0,6,9,23,89,13,43,9,6,17,4,3,111,20,6,0,6,9,3,88,13,9,7,50,138,6,42,98,31,33,141,72,0,0,1,37,208,151,5,0,4,40,153,0,0,10,128,27,4,0,4,42,0,19,48,6,0,194,2,0,0,223,1,0,17,27,141,63,0,0,1,37,22,114,24,71,0,112,162,37,23,114,36,71,0,112,162,37,24,114,48,71,0,112,162,37,25,114,60,71,0,112,162,37,26,114,72,71,0,112,162,128,28,4,0,4,27,141,55,0,0,27,37,22,27,141,72,0,0,1,37,208,97,5,0,4,40,153,0,0,10,162,37,23,27,141,72,0,0,1,37,208,59,4,0,4,40,153,0,0,10,162,37,24,27,141,72,0,0,1,37,208,19,5,0,4,40,153,0,0,10,162,37,25,27,141,72,0,0,1,37,208,56,5,0,4,40,153,0,0,10,162,37,26,27,141,72,0,0,1,37,208,131,4,0,4,40,153,0,0,10,162,128,34,4,0,4,27,141,55,0,0,27,128,35,4,0,4,28,141,55,0,0,27,128,36,4,0,4,126,35,4,0,4,22,32,0,1,0,0,141,72,0,0,1,162,126,35,4,0,4,23,32,0,1,0,0,141,72,0,0,1,162,126,35,4,0,4,24,32,0,1,0,0,141,72,0,0,1,162,126,35,4,0,4,25,32,0,1,0,0,141,72,0,0,1,162,126,35,4,0,4,26,32,0,1,0,0,141,72,0,0,1,162,126,36,4,0,4,22,28,141,72,0,0,1,162,126,36,4,0,4,23,28,141,72,0,0,1,162,126,36,4,0,4,24,28,141,72,0,0,1,162,126,36,4,0,4,25,28,141,72,0,0,1,162,126,36,4,0,4,26,28,141,72,0,0,1,162,126,36,4,0,4,27,28,141,72,0,0,1,162,126,35,4,0,4,22,154,31,32,23,158,31,65,12,43,19,126,35,4,0,4,22,154,8,8,31,65,89,24,88,158,8,23,88,12,8,31,90,49,232,126,35,4,0,4,23,154,31,32,23,158,31,97,13,43,19,126,35,4,0,4,23,154,9,9,31,97,89,24,88,158,9,23,88,13,9,31,122,49,232,126,35,4,0,4,24,154,31,32,23,158,31,48,19,4,43,23,126,35,4,0,4,24,154,17,4,17,4,31,48,89,24,88,158,17,4,23,88,19,4,17,4,31,57,49,227,126,35,4,0,4,24,154,31,44,31,12,158,126,35,4,0,4,24,154,31,46,31,13,158,31,28,141,72,0,0,1,37,208,43,5,0,4,40,153,0,0,10,10,22,19,5,43,20,126,35,4,0,4,25,154,6,17,5,148,17,5,158,17,5,23,88,19,5,17,5,6,142,105,50,229,31,31,141,72,0,0,1,37,208,46,5,0,4,40,153,0,0,10,11,22,19,6,43,27,7,17,6,148,22,49,14,126,35,4,0,4,26,154,7,17,6,148,17,6,158,17,6,23,88,19,6,17,6,7,142,105,50,222,126,36,4,0,4,19,7,22,19,8,43,17,17,7,17,8,154,21,40,5,0,0,43,17,8,23,88,19,8,17,8,17,7,142,105,50,231,126,36,4,0,4,22,154,26,22,158,126,36,4,0,4,23,154,26,22,158,126,36,4,0,4,23,154,22,31,28,158,126,36,4,0,4,25,154,26,22,158,126,36,4,0,4,24,154,26,22,158,126,36,4,0,4,24,154,22,31,15,158,42,58,2,40,20,0,0,10,2,3,125,37,4,0,4,42,0,0,0,27,48,3,0,23,1,0,0,224,1,0,17,115,209,1,0,10,10,6,126,40,4,0,4,111,210,1,0,10,22,12,56,158,0,0,0,8,23,88,2,123,37,4,0,4,142,105,50,3,22,43,10,2,123,37,4,0,4,8,23,88,145,19,4,2,123,37,4,0,4,8,145,19,5,17,5,31,44,53,14,17,5,31,13,46,22,17,5,31,44,46,42,43,66,17,5,31,46,46,21,17,5,31,58,46,41,43,52,17,4,31,10,46,3,22,43,1,24,13,43,41,17,4,31,32,46,3,22,43,1,25,13,43,28,17,4,31,32,46,3,22,43,1,26,13,43,15,17,4,31,32,46,3,22,43,1,27,13,43,2,22,13,9,22,49,15,6,8,9,40,91,8,0,6,10,8,23,88,12,43,9,2,6,8,40,89,8,0,6,10,8,23,88,12,8,2,123,37,4,0,4,142,105,63,84,255,255,255,20,11,6,111,211,1,0,10,19,6,43,35,17,6,111,212,1,0,10,19,7,7,45,5,17,7,11,43,18,17,7,111,101,8,0,6,7,111,101,8,0,6,47,3,17,7,11,17,6,111,59,0,0,10,45,212,222,12,17,6,44,7,17,6,111,60,0,0,10,220,7,2,123,37,4,0,4,111,107,8,0,6,42,0,1,16,0,0,2,0,206,0,48,254,0,12,0,0,0,0,27,48,4,0,58,0,0,0,225,1,0,17,115,213,1,0,10,10,3,111,211,1,0,10,11,43,16,7,111,212,1,0,10,12,2,8,4,6,40,90,8,0,6,7,111,59,0,0,10,45,232,222,10,7,44,6,7,111,60,0,0,10,220,6,40,93,8,0,6,42,0,0,1,16,0,0,2,0,13,0,28,41,0,10,0,0,0,0,19,48,3,0,192,0,0,0,226,1,0,17,2,123,37,4,0,4,4,145,32,255,0,0,0,95,209,10,126,35,4,0,4,3,111,98,8,0,6,154,6,148,22,254,2,11,20,12,22,13,43,105,126,35,4,0,4,9,154,6,148,19,4,17,4,22,49,85,8,45,8,3,4,111,105,8,0,6,12,7,44,13,9,3,111,98,8,0,6,46,4,9,24,51,19,8,9,17,4,111,102,8,0,6,19,5,5,17,5,111,210,1,0,10,7,45,36,126,36,4,0,4,3,111,98,8,0,6,154,9,148,22,50,19,8,9,17,4,111,103,8,0,6,19,6,5,17,6,111,210,1,0,10,9,23,88,13,9,26,49,147,3,111,100,8,0,6,22,48,16,126,35,4,0,4,3,111,98,8,0,6,154,6,148,45,17,3,4,111,104,8,0,6,19,7,5,17,7,111,210,1,0,10,42,27,48,4,0,56,0,0,0,227,1,0,17,115,213,1,0,10,10,2,111,211,1,0,10,11,43,14,7,111,212,1,0,10,3,4,6,40,92,8,0,6,7,111,59,0,0,10,45,234,222,10,7,44,6,7,111,60,0,0,10,220,6,40,93,8,0,6,42,1,16,0,0,2,0,13,0,26,39,0,10,0,0,0,0,19,48,4,0,112,0,0,0,228,1,0,17,2,3,111,105,8,0,6,10,5,6,26,4,111,102,8,0,6,111,210,1,0,10,2,111,98,8,0,6,26,46,14,5,6,26,4,111,103,8,0,6,111,210,1,0,10,4,25,46,4,4,26,51,26,6,24,31,16,4,89,111,102,8,0,6,24,23,111,102,8,0,6,11,5,7,111,210,1,0,10,2,111,100,8,0,6,22,49,23,2,3,111,104,8,0,6,3,23,88,111,104,8,0,6,12,5,8,111,210,1,0,10,42,27,48,2,0,207,0,0,0,229,1,0,17,115,213,1,0,10,10,115,214,1,0,10,11,2,111,211,1,0,10,12,56,158,0,0,0,8,111,212,1,0,10,13,23,19,4,7,111,215,1,0,10,6,111,216,1,0,10,19,5,43,42,18,5,40,217,1,0,10,19,6,17,6,9,111,106,8,0,6,44,5,22,19,4,222,43,9,17,6,111,106,8,0,6,44,8,7,17,6,111,218,1,0,10,18,5,40,219,1,0,10,45,205,222,14,18,5,254,22,156,0,0,27,111,60,0,0,10,220,17,4,44,8,6,9,111,220,1,0,10,38,7,111,221,1,0,10,19,7,43,18,18,7,40,222,1,0,10,19,8,6,17,8,111,223,1,0,10,38,18,7,40,224,1,0,10,45,229,222,14,18,7,254,22,157,0,0,27,111,60,0,0,10,220,8,111,59,0,0,10,58,87,255,255,255,222,10,8,44,6,8,111,60,0,0,10,220,6,42,0,1,40,0,0,2,0,48,0,55,103,0,14,0,0,0,0,2,0,137,0,31,168,0,14,0,0,0,0,2,0,19,0,176,195,0,10,0,0,0,0,98,2,3,40,110,8,0,6,2,4,104,125,38,4,0,4,2,5,104,125,39,4,0,4,42,78,3,2,123,38,4,0,4,2,123,39,4,0,4,111,20,6,0,6,42,0,0,0,19,48,5,0,75,0,0,0,1,0,0,17,2,123,38,4,0,4,23,2,123,39,4,0,4,31,31,95,98,23,89,95,10,6,23,2,123,39,4,0,4,31,31,95,98,96,10,114,120,69,0,112,6,23,2,123,39,4,0,4,31,31,95,98,96,40,98,1,0,6,23,111,226,0,0,10,114,124,69,0,112,40,246,0,0,10,42,146,2,40,20,0,0,10,2,3,125,42,4,0,4,2,4,125,41,4,0,4,2,5,125,43,4,0,4,2,14,4,125,44,4,0,4,42,30,2,123,41,4,0,4,42,30,2,123,42,4,0,4,42,30,2,123,43,4,0,4,42,30,2,123,44,4,0,4,42,19,48,5,0,93,0,0,0,230,1,0,17,2,123,44,4,0,4,10,2,123,42,4,0,4,11,3,2,123,41,4,0,4,46,40,126,34,4,0,4,2,123,41,4,0,4,154,3,148,13,7,9,32,255,255,0,0,95,9,31,16,99,111,112,8,0,6,11,6,9,31,16,99,88,10,3,24,46,3,27,43,1,26,12,7,4,8,111,112,8,0,6,11,7,3,22,6,8,88,115,97,8,0,6,42,0,0,0,19,48,5,0,70,0,0,0,1,0,0,17,2,123,42,4,0,4,2,123,41,4,0,4,24,46,3,27,43,1,26,10,126,36,4,0,4,2,123,41,4,0,4,154,3,148,6,111,112,8,0,6,4,27,111,112,8,0,6,2,123,41,4,0,4,22,2,123,44,4,0,4,6,88,27,88,115,97,8,0,6,42,0,0,19,48,5,0,167,0,0,0,231,1,0,17,2,123,42,4,0,4,10,2,123,41,4,0,4,11,2,123,44,4,0,4,12,2,123,41,4,0,4,26,46,9,2,123,41,4,0,4,24,51,41,126,34,4,0,4,7,154,22,148,19,5,6,17,5,32,255,255,0,0,95,17,5,31,16,99,111,112,8,0,6,10,8,17,5,31,16,99,88,12,22,11,2,123,43,4,0,4,44,27,2,123,43,4,0,4,31,31,46,17,2,123,43,4,0,4,31,62,46,3,30,43,6,31,9,43,2,31,18,13,6,7,2,123,43,4,0,4,23,88,8,9,88,115,97,8,0,6,19,4,17,4,123,43,4,0,4,32,30,8,0,0,51,12,17,4,3,23,88,111,105,8,0,6,19,4,17,4,42,218,2,123,43,4,0,4,45,2,2,42,2,123,42,4,0,4,3,2,123,43,4,0,4,89,2,123,43,4,0,4,111,113,8,0,6,2,123,41,4,0,4,22,2,123,44,4,0,4,115,97,8,0,6,42,0,0,19,48,3,0,79,0,0,0,1,0,0,17,2,123,44,4,0,4,126,34,4,0,4,2,123,41,4,0,4,154,3,123,41,4,0,4,148,31,16,99,88,10,3,123,43,4,0,4,22,49,27,2,123,43,4,0,4,44,14,2,123,43,4,0,4,3,123,43,4,0,4,49,5,6,31,10,88,10,6,3,123,44,4,0,4,254,2,22,254,1,42,0,27,48,3,0,97,0,0,0,232,1,0,17,115,225,1,0,10,10,2,3,142,105,40,105,8,0,6,123,42,4,0,4,12,43,15,6,8,111,226,1,0,10,38,8,111,111,8,0,6,12,8,45,238,115,6,6,0,6,11,6,111,227,1,0,10,13,43,14,18,3,40,228,1,0,10,7,3,111,114,8,0,6,18,3,40,229,1,0,10,45,233,222,14,18,3,254,22,159,0,0,27,111,60,0,0,10,220,7,42,0,0,0,1,16,0,0,2,0,54,0,27,81,0,14,0,0,0,0,242,114,84,71,0,112,25,141,13,0,0,1,37,22,126,28,4,0,4,2,123,41,4,0,4,154,162,37,23,2,123,44,4,0,4,140,72,0,0,1,162,37,24,2,123,43,4,0,4,140,72,0,0,1,162,40,106,1,0,10,42,78,126,45,4,0,4,22,22,22,115,97,8,0,6,128,40,4,0,4,42,58,2,40,20,0,0,10,2,3,125,46,4,0,4,42,30,2,123,46,4,0,4,42,38,2,3,4,115,94,8,0,6,42,78,4,31,31,49,5,4,31,62,38,38,2,3,4,115,72,8,0,6,42,58,20,22,22,115,94,8,0,6,128,45,4,0,4,42,94,2,40,20,0,0,10,2,32,200,0,0,0,141,160,0,0,27,125,227,5,0,4,42,0,0,0,19,48,3,0,26,0,0,0,233,1,0,17,3,27,99,10,2,123,227,5,0,4,6,154,11,7,44,7,7,3,31,32,93,150,42,22,106,42,0,0,19,48,4,0,41,0,0,0,233,1,0,17,3,27,99,10,2,123,227,5,0,4,6,154,37,45,19,38,2,123,227,5,0,4,6,31,32,141,65,0,0,1,37,11,162,7,3,31,32,93,4,159,42,82,2,40,20,0,0,10,2,31,80,141,160,0,0,27,125,231,5,0,4,42,0,0,19,48,3,0,26,0,0,0,233,1,0,17,3,26,99,10,2,123,231,5,0,4,6,154,11,7,44,7,7,3,31,16,93,150,42,22,106,42,0,0,19,48,4,0,41,0,0,0,233,1,0,17,3,26,99,10,2,123,231,5,0,4,6,154,37,45,19,38,2,123,231,5,0,4,6,31,16,141,65,0,0,1,37,11,162,7,3,31,16,93,4,159,42,46,115,123,8,0,6,128,235,5,0,4,42,10,20,42,46,115,126,8,0,6,128,236,5,0,4,42,46,3,4,5,14,4,115,75,1,0,6,42,46,115,130,8,0,6,128,237,5,0,4,42,26,115,209,3,0,6,42,26,115,66,4,0,6,42,26,115,203,3,0,6,42,26,115,24,4,0,6,42,26,115,164,1,0,6,42,26,115,179,3,0,6,42,26,115,195,3,0,6,42,26,115,164,3,0,6,42,26,115,226,3,0,6,42,26,115,155,2,0,6,42,26,115,150,3,0,6,42,26,115,240,3,0,6,42,26,115,13,4,0,6,42,26,115,82,5,0,6,42,26,115,14,8,0,6,42,0,0,0,19,48,3,0,67,0,0,0,0,0,0,0,2,3,106,32,0,0,0,255,110,95,31,24,99,210,125,254,5,0,4,2,3,32,0,0,255,0,95,31,16,99,210,125,255,5,0,4,2,3,32,0,255,0,0,95,30,99,210,125,0,6,0,4,2,3,32,255,0,0,0,95,210,125,1,6,0,4,42,110,32,0,0,0,255,115,146,8,0,6,128,252,5,0,4,21,115,146,8,0,6,128,253,5,0,4,42,0,19,48,3,0,67,0,0,0,0,0,0,0,2,3,106,32,0,0,0,255,110,95,31,24,99,210,125,4,6,0,4,2,3,32,0,0,255,0,95,31,16,99,210,125,5,6,0,4,2,3,32,0,255,0,0,95,30,99,210,125,6,6,0,4,2,3,32,255,0,0,0,95,210,125,7,6,0,4,42,110,22,115,148,8,0,6,128,2,6,0,4,32,255,255,255,0,115,148,8,0,6,128,3,6,0,4,42,0,19,48,3,0,67,0,0,0,0,0,0,0,2,3,106,32,0,0,0,255,110,95,31,24,99,210,125,10,6,0,4,2,3,32,0,0,255,0,95,31,16,99,210,125,11,6,0,4,2,3,32,0,255,0,0,95,30,99,210,125,12,6,0,4,2,3,32,255,0,0,0,95,210,125,13,6,0,4,42,122,2,3,125,10,6,0,4,2,4,125,11,6,0,4,2,5,125,12,6,0,4,2,14,4,125,13,6,0,4,42,198,32,255,0,0,0,22,22,22,115,151,8,0,6,128,8,6,0,4,32,255,0,0,0,32,255,0,0,0,32,255,0,0,0,32,255,0,0,0,115,151,8,0,6,128,9,6,0,4,42,50,2,123,14,6,0,4,111,25,0,0,10,42,118,2,123,14,6,0,4,22,111,121,0,0,10,3,44,13,2,123,14,6,0,4,3,111,119,0,0,10,38,42,30,2,123,15,6,0,4,42,34,2,3,125,15,6,0,4,42,30,2,123,16,6,0,4,42,34,2,3,125,16,6,0,4,42,74,2,40,20,0,0,10,2,115,115,0,0,10,125,14,6,0,4,42,130,2,40,20,0,0,10,2,115,115,0,0,10,125,14,6,0,4,2,3,40,158,8,0,6,2,4,40,156,8,0,6,42,78,2,40,20,0,0,10,2,3,115,95,1,0,10,125,14,6,0,4,42,210,2,123,14,6,0,4,114,130,71,0,112,111,119,0,0,10,38,2,123,14,6,0,4,114,206,71,0,112,111,119,0,0,10,38,2,123,14,6,0,4,114,78,72,0,112,111,119,0,0,10,38,42,74,2,123,14,6,0,4,114,21,73,0,112,111,119,0,0,10,38,42,0,0,0,19,48,6,0,243,0,0,0,0,0,0,0,3,22,49,4,4,22,48,108,2,123,14,6,0,4,114,35,73,0,112,29,141,13,0,0,1,37,22,5,140,72,0,0,1,162,37,23,14,4,140,72,0,0,1,162,37,24,14,5,40,170,8,0,6,162,37,25,14,5,40,168,8,0,6,140,101,0,0,1,162,37,26,14,6,40,170,8,0,6,162,37,27,14,6,40,168,8,0,6,140,101,0,0,1,162,37,28,14,5,40,169,8,0,6,162,40,106,1,0,10,111,119,0,0,10,38,42,2,123,14,6,0,4,114,214,74,0,112,31,9,141,13,0,0,1,37,22,5,140,72,0,0,1,162,37,23,14,4,140,72,0,0,1,162,37,24,14,5,40,170,8,0,6,162,37,25,14,5,40,168,8,0,6,140,101,0,0,1,162,37,26,14,6,40,170,8,0,6,162,37,27,14,6,40,168,8,0,6,140,101,0,0,1,162,37,28,14,5,40,169,8,0,6,162,37,29,3,140,72,0,0,1,162,37,30,4,140,72,0,0,1,162,40,106,1,0,10,111,119,0,0,10,38,42,186,2,123,14,6,0,4,40,227,0,0,10,114,187,76,0,112,25,141,13,0,0,1,37,22,4,162,37,23,5,140,72,0,0,1,162,37,24,3,162,111,107,0,0,10,38,42,0,0,19,48,7,0,66,0,0,0,0,0,0,0,2,123,14,6,0,4,40,227,0,0,10,114,126,77,0,112,26,141,13,0,0,1,37,22,3,140,72,0,0,1,162,37,23,4,140,72,0,0,1,162,37,24,5,140,72,0,0,1,162,37,25,14,4,140,72,0,0,1,162,111,107,0,0,10,38,42,98,2,123,10,6,0,4,108,35,0,0,0,0,0,224,111,64,91,24,40,230,1,0,10,42,0,19,48,5,0,75,0,0,0,234,1,0,17,2,40,168,8,0,6,10,114,224,77,0,112,26,141,13,0,0,1,37,22,2,123,11,6,0,4,140,74,0,0,1,162,37,23,2,123,12,6,0,4,140,74,0,0,1,162,37,24,2,123,13,6,0,4,140,74,0,0,1,162,37,25,6,140,101,0,0,1,162,40,106,1,0,10,42,0,19,48,4,0,70,0,0,0,0,0,0,0,27,141,13,0,0,1,37,22,2,123,11,6,0,4,140,74,0,0,1,162,37,23,114,171,55,0,112,162,37,24,2,123,12,6,0,4,140,74,0,0,1,162,37,25,114,171,55,0,112,162,37,26,2,123,13,6,0,4,140,74,0,0,1,162,40,134,0,0,10,42,0,0,19,48,4,0,94,0,0,0,234,1,0,17,2,40,168,8,0,6,10,29,141,13,0,0,1,37,22,2,123,11,6,0,4,140,74,0,0,1,162,37,23,114,171,55,0,112,162,37,24,2,123,12,6,0,4,140,74,0,0,1,162,37,25,114,171,55,0,112,162,37,26,2,123,13,6,0,4,140,74,0,0,1,162,37,27,114,171,55,0,112,162,37,28,6,140,101,0,0,1,162,40,134,0,0,10,42,46,115,173,8,0,6,128,17,6,0,4,42,38,3,4,88,23,95,22,254,1,42,30,3,23,95,22,254,1,42,30,4,25,93,22,254,1,42,38,3,4,88,25,93,22,254,1,42,54,3,23,100,4,25,91,88,23,95,22,254,1,42,38,3,4,90,28,93,22,254,1,42,38,3,4,90,28,93,25,254,4,42,62,3,4,88,3,4,90,25,93,88,23,95,22,254,1,42,86,2,40,20,0,0,10,2,3,125,29,6,0,4,2,4,125,30,6,0,4,42,30,2,123,29,6,0,4,42,0,0,19,48,2,0,38,0,0,0,235,1,0,17,22,10,2,123,30,6,0,4,11,22,12,43,17,7,8,154,13,6,9,111,188,8,0,6,88,10,8,23,88,12,8,7,142,105,50,233,6,42,58,2,123,29,6,0,4,2,40,184,8,0,6,90,42,30,2,123,30,6,0,4,42,86,2,40,20,0,0,10,2,3,125,31,6,0,4,2,4,125,32,6,0,4,42,30,2,123,31,6,0,4,42,30,2,123,32,6,0,4,42,58,2,40,20,0,0,10,2,3,125,33,6,0,4,42,0,0,19,48,2,0,52,0,0,0,49,0,0,17,4,111,4,2,0,6,2,123,33,6,0,4,89,40,155,0,0,10,10,3,111,4,2,0,6,2,123,33,6,0,4,89,40,155,0,0,10,11,6,7,50,8,6,7,48,2,22,42,23,42,21,42,58,2,40,20,0,0,10,2,3,125,34,6,0,4,42,0,19,48,2,0,80,0,0,0,49,0,0,17,4,111,5,2,0,6,3,111,5,2,0,6,51,52,4,111,4,2,0,6,2,123,34,6,0,4,89,40,155,0,0,10,10,3,111,4,2,0,6,2,123,34,6,0,4,89,40,155,0,0,10,11,6,7,50,8,6,7,48,2,22,42,21,42,23,42,4,111,5,2,0,6,3,111,5,2,0,6,89,42,19,48,2,0,46,0,0,0,87,0,0,17,4,111,4,2,0,6,3,111,4,2,0,6,89,10,6,108,35,0,0,0,0,0,0,0,0,50,17,6,108,35,0,0,0,0,0,0,0,0,48,2,22,42,23,42,21,42,122,2,40,20,0,0,10,2,3,125,59,6,0,4,2,23,141,43,1,0,2,37,22,4,162,125,60,6,0,4,42,138,2,40,20,0,0,10,2,3,125,59,6,0,4,2,24,141,43,1,0,2,37,22,4,162,37,23,5,162,125,60,6,0,4,42,30,2,123,59,6,0,4,42,30,2,123,60,6,0,4,42,86,2,40,20,0,0,10,2,3,125,61,6,0,4,2,4,125,62,6,0,4,42,30,2,123,61,6,0,4,42,30,2,123,62,6,0,4,42,30,2,123,63,6,0,4,42,34,2,3,125,63,6,0,4,42,30,2,123,64,6,0,4,42,34,2,3,125,64,6,0,4,42,30,2,123,65,6,0,4,42,34,2,3,125,65,6,0,4,42,114,2,40,20,0,0,10,2,3,40,204,8,0,6,2,4,40,206,8,0,6,2,5,40,208,8,0,6,42,242,27,141,13,0,0,1,37,22,2,40,203,8,0,6,162,37,23,114,197,14,0,112,162,37,24,2,40,205,8,0,6,162,37,25,114,197,14,0,112,162,37,26,2,40,207,8,0,6,140,72,0,0,1,162,40,134,0,0,10,42,58,3,111,207,8,0,6,4,111,207,8,0,6,89,42,0,0,19,48,3,0,41,0,0,0,127,1,0,17,2,123,231,1,0,10,10,6,11,7,3,40,47,0,0,10,116,14,0,0,27,12,2,124,231,1,0,10,8,7,40,9,0,0,43,10,6,7,51,223,42,0,0,0,19,48,3,0,41,0,0,0,127,1,0,17,2,123,231,1,0,10,10,6,11,7,3,40,49,0,0,10,116,14,0,0,27,12,2,124,231,1,0,10,8,7,40,9,0,0,43,10,6,7,51,223,42,74,2,40,20,0,0,10,2,115,232,1,0,10,125,233,1,0,10,42,106,2,123,231,1,0,10,44,17,2,123,231,1,0,10,2,126,132,1,0,10,111,133,1,0,10,42,82,2,123,233,1,0,10,3,4,111,234,1,0,10,2,40,235,1,0,10,42,54,2,123,233,1,0,10,3,111,236,1,0,10,42,50,2,123,233,1,0,10,111,237,1,0,10,42,78,2,123,233,1,0,10,3,111,238,1,0,10,2,40,235,1,0,10,42,58,2,123,233,1,0,10,3,4,111,239,1,0,10,42,50,2,123,233,1,0,10,111,240,1,0,10,42,54,2,123,233,1,0,10,3,111,241,1,0,10,42,82,2,123,233,1,0,10,3,4,111,242,1,0,10,2,40,235,1,0,10,42,78,2,123,233,1,0,10,3,111,243,1,0,10,2,40,235,1,0,10,42,74,2,123,233,1,0,10,111,244,1,0,10,2,40,235,1,0,10,42,54,2,123,233,1,0,10,3,111,245,1,0,10,42,58,2,123,233,1,0,10,3,4,111,246,1,0,10,42,50,2,123,233,1,0,10,111,247,1,0,10,42,50,2,123,233,1,0,10,111,248,1,0,10,42,78,2,123,233,1,0,10,3,111,249,1,0,10,2,40,235,1,0,10,42,50,2,123,233,1,0,10,111,250,1,0,10,42,50,2,123,233,1,0,10,111,19,0,0,10,42,30,2,123,75,6,0,4,42,34,2,3,125,75,6,0,4,42,30,2,123,76,6,0,4,42,34,2,3,125,76,6,0,4,42,82,2,40,234,8,0,6,107,2,40,236,8,0,6,107,115,59,1,0,6,42,86,2,40,20,0,0,10,2,3,40,235,8,0,6,2,4,40,237,8,0,6,42,0,19,48,4,0,64,0,0,0,0,0,0,0,27,141,13,0,0,1,37,22,114,120,69,0,112,162,37,23,2,40,234,8,0,6,140,72,0,0,1,162,37,24,114,241,23,0,112,162,37,25,2,40,236,8,0,6,140,72,0,0,1,162,37,26,114,124,69,0,112,162,40,134,0,0,10,42,66,83,74,66,1,0,1,0,0,0,0,0,12,0,0,0,118,52,46,48,46,51,48,51,49,57,0,0,0,0,5,0,108,0,0,0,48,83,1,0,35,126,0,0,156,83,1,0,236,243,0,0,35,83,116,114,105,110,103,115,0,0,0,0,136,71,2,0,112,78,0,0,35,85,83,0,248,149,2,0,16,0,0,0,35,71,85,73,68,0,0,0,8,150,2,0,40,80,0,0,35,66,108,111,98,0,0,0,0,0,0,0,2,0,0,1,87,159,182,43,9,14,0,0,0,250,1,51,0,22,0,0,1,0,0,0,108,0,0,0,93,1,0,0,76,6,0,0,240,8,0,0,152,11,0,0,44,0,0,0,250,1,0,0,127,1,0,0,39,2,0,0,45,0,0,0,235,1,0,0,5,0,0,0,9,0,0,0,125,0,0,0,150,1,0,0,125,2,0,0,1,0,0,0,162,0,0,0,180,1,0,0,1,0,0,0,8,0,0,0,73,0,0,0,12,0,0,0,10,0,0,0,0,0,22,163,1,0,0,0,0,0,6,0,115,148,2,199,6,0,10,149,2,199,6,0,144,147,183,196,15,0,80,199,0,0,6,0,48,148,187,171,6,0,241,148,187,171,6,0,147,148,187,171,6,0,172,148,187,171,6,0,223,147,187,171,6,0,19,148,187,171,6,0,199,148,151,163,6,0,250,147,125,153,6,0,25,221,151,163,6,0,34,143,151,163,6,0,133,214,151,163,6,0,120,147,151,163,6,0,30,149,151,163,6,0,63,185,71,236,6,0,77,148,187,171,6,0,155,10,151,163,6,0,3,141,151,163,6,0,127,10,151,163,6,0,7,174,151,163,6,0,58,164,151,163,6,0,100,148,151,163,6,0,29,19,151,163,6,0,165,35,151,163,6,0,70,147,2,199,6,0,168,10,151,163,6,0,27,11,108,114,6,0,141,10,108,114,6,0,13,11,108,114,6,0,61,203,151,163,6,0,60,19,108,114,6,0,92,10,151,163,6,0,177,10,108,114,6,0,45,19,108,114,6,0,120,146,151,163,6,0,53,227,151,163,6,0,173,157,151,163,6,0,205,147,151,163,6,0,40,144,151,163,6,0,116,10,151,163,6,0,84,24,151,163,10,0,41,11,108,114,6,0,255,173,151,163,6,0,221,148,151,163,183,0,102,195,0,0,6,0,221,10,108,114,14,0,77,153,71,236,18,0,115,163,186,100,10,0,86,19,108,114,211,0,102,195,0,0,6,0,36,19,151,163,6,0,15,141,84,207,6,0,56,195,84,207,6,0,77,173,151,163,22,0,110,238,19,207,22,0,109,155,19,207,6,0,127,157,151,163,10,0,35,11,108,114,247,0,102,195,0,0,6,0,198,154,151,163,6,0,62,181,151,163,6,0,23,28,151,163,6,0,150,173,151,163,6,0,124,173,151,163,6,0,102,173,151,163,6,0,129,146,151,163,26,0,132,115,226,152,6,0,168,164,151,163,6,0,29,14,151,163,6,0,27,141,151,163,6,0,94,149,151,163,6,0,228,187,151,163,6,0,122,241,151,163,6,0,55,173,151,163,30,0,243,192,151,163,34,0,8,178,117,170,6,0,228,141,151,163,6,0,47,185,151,163,6,0,153,195,151,163,30,0,133,155,151,163,30,0,35,235,151,163,30,0,61,231,151,163,6,0,214,210,2,199,6,0,106,141,151,163,6,0,135,144,151,163,6,0,125,141,151,163,6,0,53,149,151,163,18,0,121,163,186,100,6,0,214,174,151,163,6,0,35,173,151,163,6,0,191,10,151,163,6,0,149,36,151,163,6,0,22,28,151,163,6,0,203,164,151,163,22,0,0,180,19,207,22,0,205,171,19,207,22,0,249,144,19,207,6,0,86,141,151,163,6,0,206,199,117,170,22,0,72,208,19,207,6,0,113,132,151,163,18,0,194,165,186,100,6,0,150,36,151,163,6,0,178,10,172,161,10,0,99,10,108,114,0,0,0,0,109,56,0,0,0,0,1,0,1,0,0,0,16,0,237,177,151,163,53,0,1,0,1,0,0,1,16,0,164,147,203,161,69,0,2,0,4,0,0,1,16,0,242,187,111,242,53,0,2,0,5,0,0,1,16,0,248,187,111,242,53,0,9,0,39,0,1,1,16,0,188,173,111,242,93,0,19,0,96,0,0,1,0,0,158,165,111,242,97,0,19,0,97,0,1,1,0,0,101,220,220,152,97,0,22,0,97,0,1,0,16,0,164,184,220,152,44,0,44,0,97,0,1,0,16,0,205,10,220,152,44,0,46,0,104,0,1,0,16,0,136,114,220,152,53,0,47,0,111,0,1,0,16,0,111,112,220,152,26,0,58,0,137,0,1,0,16,0,236,154,220,152,30,0,58,0,138,0,1,0,16,0,253,10,220,152,60,0,58,0,139,0,1,0,16,0,158,114,220,152,53,0,59,0,144,0,129,0,16,0,231,135,220,152,128,0,62,0,153,0,129,0,16,0,211,193,220,152,53,0,67,0,165,0,1,1,16,0,126,179,220,152,53,0,68,0,172,0,1,1,0,0,101,144,220,152,97,0,70,0,184,0,1,1,16,0,38,168,220,152,53,0,86,0,184,0,1,1,0,0,116,144,220,152,97,0,88,0,190,0,1,1,16,0,239,173,220,152,148,0,108,0,190,0,161,0,0,0,134,184,220,152,0,0,108,0,194,0,161,0,0,0,204,10,220,152,0,0,108,0,206,0,161,0,0,0,135,114,220,152,0,0,108,0,208,0,161,0,0,0,92,192,220,152,0,0,108,0,218,0,161,0,0,0,110,112,220,152,0,0,108,0,225,0,161,0,0,0,235,154,220,152,0,0,108,0,227,0,161,0,0,0,252,10,220,152,0,0,108,0,229,0,161,0,0,0,157,114,220,152,0,0,108,0,231,0,1,1,16,0,207,135,220,152,128,0,108,0,238,0,129,0,16,0,56,136,220,152,53,0,110,0,247,0,1,1,16,0,226,184,220,152,53,0,112,0,6,1,1,1,0,0,121,192,220,152,53,0,114,0,13,1,1,1,16,0,162,135,220,152,64,0,115,0,18,1,161,0,0,0,15,185,220,152,0,0,121,0,29,1,1,0,16,0,172,173,220,152,93,0,121,0,32,1,1,1,16,0,45,229,220,152,53,0,121,0,36,1,1,1,0,0,21,144,220,152,97,0,128,0,58,1,1,0,16,0,240,231,220,152,53,0,141,0,58,1,1,1,0,0,191,157,220,152,153,0,146,0,68,1,1,0,16,0,143,135,220,152,64,0,146,0,72,1,0,0,16,0,97,147,220,152,69,0,146,0,90,1,0,0,16,0,183,147,220,152,69,0,146,0,91,1,129,1,16,0,4,214,220,152,53,0,146,0,92,1,161,0,0,0,163,192,220,152,0,0,146,0,101,1,1,1,16,0,223,173,220,152,93,0,146,0,103,1,161,0,0,0,233,10,151,153,0,0,146,0,106,1,1,1,16,0,124,112,151,153,53,0,146,0,108,1,1,1,16,0,64,189,151,153,53,0,149,0,115,1,1,0,16,0,94,189,151,153,53,0,151,0,122,1,1,0,16,0,82,189,151,153,53,0,153,0,129,1,1,0,16,0,24,208,2,137,80,3,159,0,144,1,1,0,16,0,106,184,2,137,53,0,159,0,153,1,1,1,16,0,54,192,2,137,53,0,161,0,161,1,0,1,16,0,54,191,52,160,53,0,162,0,165,1,0,1,16,0,78,158,52,160,53,0,166,0,174,1,128,1,16,0,93,159,52,160,53,0,168,0,178,1,128,1,16,0,118,189,52,160,53,0,169,0,180,1,1,1,16,0,182,186,52,160,53,0,171,0,189,1,1,1,16,0,154,162,52,160,53,0,172,0,194,1,0,1,16,0,10,170,52,160,53,0,180,0,201,1,1,1,16,0,106,138,52,160,53,0,185,0,210,1,1,1,16,0,27,112,52,160,53,0,198,0,219,1,1,1,16,0,183,168,52,160,53,0,199,0,222,1,1,1,16,0,247,176,52,160,160,0,205,0,235,1,0,1,16,0,125,185,52,160,53,0,206,0,238,1,1,0,16,0,32,196,52,160,53,0,215,0,244,1,1,1,16,0,206,176,52,160,160,0,217,0,2,2,1,0,16,0,105,185,52,160,53,0,219,0,8,2,1,1,16,0,125,178,52,160,53,0,228,0,27,2,0,1,16,0,255,193,52,160,53,0,231,0,31,2,1,1,16,0,9,239,52,160,53,0,233,0,34,2,129,1,16,0,154,187,52,160,53,0,236,0,44,2,129,1,16,0,2,163,52,160,53,0,238,0,69,2,129,1,16,0,11,163,52,160,53,0,242,0,77,2,1,1,16,0,161,136,52,160,53,0,249,0,97,2,1,0,16,0,214,207,202,42,80,3,255,0,111,2,128,1,16,0,176,174,202,42,53,0,255,0,126,2,1,1,16,0,154,183,202,42,53,0,10,1,130,2,1,1,16,0,38,113,202,42,53,0,10,1,141,2,1,1,16,0,182,191,202,42,53,0,14,1,150,2,1,1,16,0,7,113,9,160,53,0,17,1,156,2,1,1,16,0,213,149,9,160,53,0,22,1,167,2,1,1,16,0,187,239,9,160,53,0,23,1,171,2,1,1,16,0,103,134,9,160,53,0,32,1,194,2,128,1,0,0,118,189,9,160,53,0,38,1,211,2,1,0,16,0,79,228,9,160,53,0,61,1,220,2,1,0,16,0,242,166,9,160,53,0,66,1,242,2,1,1,16,0,189,166,9,160,100,1,69,1,254,2,129,1,0,0,215,185,9,160,53,0,70,1,8,3,129,1,16,0,251,185,9,160,53,0,71,1,14,3,1,1,16,0,32,196,9,160,53,0,75,1,39,3,1,1,16,0,185,228,9,160,53,0,88,1,48,3,1,1,0,0,176,178,9,160,97,0,90,1,53,3,0,1,16,0,237,238,9,160,53,0,96,1,53,3,0,1,16,0,0,237,9,160,53,0,101,1,59,3,1,1,0,0,240,170,9,160,97,0,103,1,65,3,1,1,16,0,144,206,9,160,53,0,108,1,65,3,0,1,16,0,208,42,9,160,53,0,112,1,70,3,128,1,16,0,245,171,9,160,53,0,127,1,85,3,1,1,0,0,32,162,9,160,97,0,128,1,90,3,128,1,0,0,61,187,9,160,53,0,139,1,90,3,1,1,16,0,59,172,207,72,53,0,159,1,108,3,0,1,16,0,165,92,207,72,53,0,160,1,113,3,0,1,16,0,23,242,207,72,53,0,166,1,127,3,1,1,16,0,212,184,79,80,0,2,168,1,140,3,1,1,16,0,107,192,79,80,252,1,178,1,149,3,1,0,16,0,236,207,79,80,80,3,182,1,152,3,1,1,16,0,167,183,79,80,0,2,182,1,155,3,1,1,16,0,195,191,79,80,252,1,198,1,160,3,1,1,16,0,192,183,79,80,0,2,215,1,165,3,1,1,16,0,220,191,79,80,252,1,222,1,175,3,1,1,16,0,129,183,79,80,0,2,222,1,180,3,1,0,16,0,169,191,79,80,252,1,228,1,189,3,1,1,16,0,105,183,79,80,28,2,228,1,196,3,1,1,16,0,157,191,79,80,32,2,230,1,201,3,1,1,16,0,181,183,79,80,28,2,231,1,204,3,1,1,16,0,209,191,79,80,32,2,232,1,207,3,0,1,16,0,118,235,79,80,53,0,233,1,210,3,1,1,16,0,3,184,79,80,0,2,235,1,214,3,1,1,16,0,255,191,79,80,252,1,246,1,224,3,1,1,16,0,13,184,79,80,0,2,251,1,228,3,1,1,16,0,9,192,79,80,252,1,5,2,238,3,1,1,16,0,226,183,79,80,0,2,8,2,242,3,1,1,16,0,23,184,79,80,0,2,9,2,245,3,129,0,16,0,67,192,79,80,53,0,10,2,248,3,129,0,16,0,237,183,79,80,53,0,10,2,0,4,1,1,16,0,156,192,79,80,252,1,12,2,11,4,1,1,16,0,205,183,79,80,28,2,20,2,15,4,1,0,16,0,233,191,79,80,53,0,21,2,22,4,0,1,16,0,58,235,79,80,53,0,22,2,25,4,0,1,16,0,82,235,79,80,53,0,24,2,29,4,0,1,16,0,158,235,79,80,53,0,27,2,37,4,129,0,0,0,34,184,79,80,0,2,30,2,40,4,129,0,16,0,19,192,79,80,252,1,40,2,54,4,1,1,16,0,248,183,79,80,28,2,40,2,56,4,1,0,16,0,244,191,79,80,32,2,43,2,64,4,129,0,16,0,47,184,152,105,0,2,44,2,67,4,1,0,16,0,91,191,152,105,53,0,54,2,80,4,1,1,16,0,206,176,152,105,53,0,56,2,88,4,0,1,16,0,95,194,152,105,48,2,59,2,97,4,1,1,16,0,142,183,152,105,44,2,61,2,103,4,129,1,16,0,183,204,152,105,53,0,70,2,115,4,128,1,16,0,77,185,13,115,53,0,70,2,117,4,0,1,16,0,231,193,13,115,53,0,70,2,118,4,0,1,16,0,221,236,13,115,53,0,74,2,133,4,1,1,16,0,88,184,13,115,44,2,77,2,144,4,129,0,16,0,191,185,127,210,53,0,94,2,167,4,0,1,16,0,202,186,127,210,108,2,96,2,172,4,0,1,16,0,108,186,127,210,108,2,96,2,175,4,0,1,16,0,158,186,127,210,116,2,96,2,178,4,0,1,16,0,174,186,127,210,116,2,98,2,180,4,0,1,16,0,140,186,127,210,120,2,101,2,183,4,128,0,16,0,124,186,127,210,120,2,106,2,189,4,0,1,16,0,126,196,127,210,116,2,108,2,192,4,128,0,16,0,190,186,127,210,84,2,109,2,195,4,128,0,16,0,90,186,127,210,116,2,110,2,200,4,0,1,16,0,158,185,127,210,84,2,110,2,204,4,0,1,16,0,148,227,127,210,53,0,111,2,207,4,0,1,16,0,202,146,127,210,53,0,113,2,211,4,0,1,16,0,106,180,127,210,148,2,115,2,221,4,0,1,16,0,132,169,127,210,148,2,117,2,225,4,0,1,16,0,10,114,127,210,148,2,120,2,230,4,128,0,16,0,18,221,127,210,53,0,123,2,238,4,128,1,0,0,106,189,127,210,53,0,124,2,241,4,0,1,16,0,171,185,127,210,53,0,129,2,245,4,1,1,16,0,244,184,135,157,53,0,132,2,7,5,1,1,16,0,149,184,135,157,53,0,133,2,12,5,161,0,0,0,156,184,135,157,0,0,136,2,20,5,1,1,16,0,178,184,15,137,216,0,136,2,22,5,1,1,16,0,27,196,74,160,16,1,137,2,28,5,0,1,16,0,100,185,74,160,24,1,138,2,31,5,1,1,16,0,119,184,153,138,53,0,143,2,36,5,0,1,16,0,54,191,102,160,53,0,147,2,42,5,128,1,16,0,118,189,102,160,53,0,149,2,45,5,1,1,16,0,182,186,102,160,53,0,168,2,55,5,1,1,0,0,216,183,72,67,0,2,172,2,59,5,1,1,16,0,5,185,148,239,53,0,208,2,71,5,1,1,16,0,139,192,148,239,53,0,210,2,78,5,1,0,16,0,46,208,148,239,80,3,210,2,83,5,0,1,16,0,24,187,218,186,53,0,210,2,92,5,0,1,16,0,9,187,218,186,53,0,210,2,96,5,0,0,16,0,243,186,218,186,53,0,210,2,100,5,0,1,16,0,118,26,218,186,4,3,210,2,108,5,1,0,16,0,131,229,218,186,53,0,210,2,111,5,0,1,16,0,124,187,218,186,53,0,214,2,125,5,1,1,16,0,47,169,218,186,53,0,214,2,131,5,160,0,0,0,154,187,218,186,0,0,220,2,132,5,0,1,0,0,160,236,218,186,53,0,220,2,134,5,129,1,0,0,59,172,218,186,53,0,231,2,160,5,128,1,16,0,67,187,218,186,53,0,236,2,164,5,1,0,16,0,74,178,218,186,53,0,254,2,180,5,1,1,0,0,173,231,218,186,97,0,8,3,200,5,0,1,16,0,150,187,218,186,224,2,12,3,200,5,0,1,16,0,254,186,218,186,224,2,12,3,203,5,0,1,16,0,54,191,126,160,53,0,12,3,208,5,0,1,16,0,78,158,126,160,53,0,15,3,219,5,128,1,16,0,118,189,126,160,53,0,17,3,223,5,1,1,16,0,182,186,126,160,53,0,22,3,233,5,1,1,16,0,183,168,126,160,53,0,23,3,237,5,1,1,16,0,32,196,126,160,53,0,31,3,249,5,1,1,16,0,90,241,163,174,53,0,33,3,2,6,1,1,16,0,128,239,163,174,53,0,36,3,31,6,1,1,16,0,88,136,163,174,53,0,40,3,61,6,1,1,0,0,140,95,163,174,76,3,43,3,66,6,1,1,16,0,171,228,163,174,53,0,46,3,73,6,1,0,16,0,198,207,163,174,53,0,56,3,98,6,1,1,16,0,145,188,163,174,88,3,58,3,128,6,1,0,16,0,211,228,163,174,53,0,58,3,131,6,129,0,16,0,152,95,163,174,53,0,60,3,136,6,1,0,16,0,56,208,163,174,53,0,61,3,140,6,1,0,16,0,196,193,163,174,68,0,62,3,153,6,129,0,16,0,167,188,163,174,53,0,68,3,160,6,1,1,16,0,121,193,163,174,84,3,69,3,167,6,1,1,16,0,250,163,163,174,53,0,75,3,175,6,129,1,16,0,192,204,163,174,53,0,84,3,183,6,1,1,16,0,155,92,189,174,53,0,91,3,185,6,0,1,16,0,9,242,189,174,53,0,106,3,198,6,1,1,16,0,50,186,189,174,53,0,108,3,210,6,1,1,16,0,105,187,189,174,53,0,109,3,215,6,129,1,16,0,204,204,192,195,53,0,111,3,218,6,1,1,16,0,214,195,192,195,53,0,111,3,222,6,1,1,16,0,242,195,192,195,53,0,113,3,226,6,128,0,16,0,189,190,33,227,212,3,122,3,234,6,0,1,16,0,11,190,33,227,212,3,122,3,237,6,0,1,16,0,108,190,33,227,132,3,122,3,240,6,1,1,16,0,166,227,33,227,196,3,122,3,243,6,0,1,16,0,55,190,33,227,132,3,138,3,6,7,0,1,16,0,138,190,33,227,132,3,138,3,10,7,1,1,16,0,222,227,33,227,196,3,138,3,12,7,1,1,16,0,243,227,33,227,196,3,152,3,29,7,0,1,16,0,232,190,33,227,212,3,157,3,43,7,0,1,16,0,165,190,33,227,132,3,158,3,46,7,1,0,16,0,12,228,33,227,196,3,159,3,50,7,1,0,16,0,1,191,33,227,212,3,176,3,73,7,1,1,16,0,206,227,33,227,196,3,176,3,77,7,0,1,16,0,216,190,33,227,212,3,182,3,93,7,1,1,16,0,82,227,33,227,196,3,183,3,96,7,1,0,16,0,157,189,33,227,212,3,184,3,99,7,129,0,16,0,44,228,33,227,53,0,184,3,101,7,1,1,0,0,84,144,33,227,97,0,186,3,110,7,1,1,16,0,20,228,33,227,196,3,199,3,110,7,0,1,16,0,9,191,33,227,212,3,201,3,116,7,129,0,16,0,35,191,33,227,53,0,201,3,118,7,0,1,16,0,248,189,33,227,212,3,205,3,136,7,1,1,16,0,115,227,33,227,196,3,205,3,139,7,1,0,16,0,208,189,33,227,212,3,210,3,152,7,1,0,16,0,231,189,33,227,212,3,210,3,154,7,1,1,16,0,190,227,33,227,196,3,210,3,156,7,0,1,16,0,92,190,33,227,212,3,213,3,163,7,1,1,16,0,40,228,33,227,196,3,213,3,165,7,1,1,16,0,66,227,33,227,196,3,215,3,170,7,0,1,16,0,141,189,33,227,212,3,219,3,180,7,0,1,16,0,190,189,33,227,212,3,221,3,184,7,0,1,16,0,37,190,33,227,212,3,221,3,186,7,0,1,16,0,29,191,33,227,212,3,231,3,199,7,1,0,16,0,99,227,33,227,196,3,231,3,204,7,1,0,16,0,174,189,33,227,212,3,240,3,224,7,1,0,16,0,131,227,33,227,196,3,242,3,233,7,1,0,16,0,75,190,33,227,212,3,250,3,252,7,1,0,16,0,76,184,227,113,53,0,250,3,254,7,1,1,16,0,97,113,227,113,53,0,250,3,2,8,1,1,0,0,42,192,227,113,53,0,253,3,9,8,1,0,16,0,3,208,227,113,80,3,254,3,15,8,1,0,16,0,206,228,31,160,72,3,254,3,20,8,1,1,16,0,182,186,31,160,53,0,1,4,27,8,1,1,16,0,32,196,31,160,53,0,9,4,40,8,1,1,16,0,168,136,31,160,53,0,16,4,61,8,1,1,16,0,55,165,31,160,76,4,21,4,72,8,129,1,16,0,154,187,31,160,53,0,23,4,75,8,1,1,0,0,67,187,31,160,53,0,28,4,86,8,1,1,16,0,43,165,31,160,76,4,38,4,94,8,0,1,16,0,249,146,31,160,53,0,40,4,97,8,129,0,16,0,66,165,31,160,53,0,45,4,110,8,0,1,0,0,118,56,0,0,53,0,47,4,116,8,3,0,16,0,191,188,0,0,53,0,227,5,116,8,3,0,16,0,191,188,0,0,53,0,231,5,119,8,3,33,16,0,184,113,0,0,53,0,235,5,122,8,3,33,16,0,184,113,0,0,53,0,236,5,125,8,3,33,16,0,184,113,0,0,53,0,237,5,129,8,2,1,0,0,124,220,0,0,97,0,238,5,146,8,10,1,16,0,119,194,0,0,169,0,252,5,146,8,10,1,16,0,119,194,0,0,169,0,2,6,148,8,10,1,16,0,119,194,0,0,169,0,8,6,150,8,2,0,16,0,153,139,0,0,53,0,14,6,153,8,3,33,16,0,184,113,0,0,53,0,17,6,172,8,2,1,0,0,249,199,0,0,97,0,18,6,182,8,2,1,16,0,209,203,0,0,53,0,29,6,182,8,2,1,16,0,105,66,0,0,53,0,31,6,187,8,3,1,16,0,207,194,0,0,53,0,33,6,190,8,3,1,16,0,2,195,0,0,53,0,34,6,192,8,3,1,0,0,106,138,0,0,97,0,35,6,194,8,3,1,0,0,253,143,0,0,97,0,42,6,194,8,3,1,0,0,249,146,0,0,97,0,47,6,194,8,3,1,16,0,237,194,0,0,53,0,51,6,194,8,3,1,0,0,106,138,0,0,97,0,51,6,196,8,5,1,16,0,209,203,0,0,53,0,59,6,196,8,5,1,16,0,105,66,0,0,53,0,61,6,200,8,3,1,16,0,135,207,0,0,53,0,63,6,203,8,3,1,16,0,19,195,0,0,53,0,66,6,211,8,3,0,16,0,74,19,0,0,53,0,66,6,213,8,3,1,0,0,243,140,0,0,97,0,68,6,234,8,5,1,16,0,13,232,0,0,53,0,75,6,234,8,19,1,0,0,160,40,0,0,169,0,77,6,241,8,19,1,0,0,72,55,0,0,169,0,77,6,241,8,19,1,0,0,144,0,0,0,169,0,77,6,241,8,19,1,0,0,52,12,0,0,169,0,77,6,241,8,19,1,0,0,79,36,0,0,169,0,77,6,241,8,19,1,0,0,153,1,0,0,169,0,77,6,241,8,19,1,0,0,226,25,0,0,169,0,77,6,241,8,19,1,0,0,181,36,0,0,169,0,77,6,241,8,19,1,0,0,204,47,0,0,169,0,77,6,241,8,19,1,0,0,182,1,0,0,169,0,77,6,241,8,19,1,0,0,86,13,0,0,169,0,77,6,241,8,19,1,0,0,66,37,0,0,169,0,77,6,241,8,19,1,0,0,211,1,0,0,169,0,77,6,241,8,19,1,0,0,9,27,0,0,169,0,77,6,241,8,19,1,0,0,8,49,0,0,169,0,77,6,241,8,19,1,0,0,117,14,0,0,169,0,77,6,241,8,19,1,0,0,79,27,0,0,169,0,77,6,241,8,19,1,0,0,163,38,0,0,169,0,77,6,241,8,19,1,0,0,231,27,0,0,169,0,77,6,241,8,19,1,0,0,237,15,0,0,169,0,77,6,241,8,19,1,0,0,50,3,0,0,169,0,77,6,241,8,19,1,0,0,49,40,0,0,169,0,77,6,241,8,19,1,0,0,200,11,0,0,169,0,77,6,241,8,19,1,0,0,41,1,0,0,169,0,77,6,241,8,19,1,0,0,125,25,0,0,169,0,77,6,241,8,19,1,0,0,165,47,0,0,169,0,77,6,241,8,19,1,0,0,230,12,0,0,169,0,77,6,241,8,19,1,0,0,251,36,0,0,169,0,77,6,241,8,19,1,0,0,88,26,0,0,169,0,77,6,241,8,19,1,0,0,204,48,0,0,169,0,77,6,241,8,19,1,0,0,206,37,0,0,169,0,77,6,241,8,19,1,0,0,78,49,0,0,169,0,77,6,241,8,19,1,0,0,136,15,0,0,169,0,77,6,241,8,19,1,0,0,92,16,0,0,169,0,77,6,241,8,19,1,0,0,155,25,0,0,169,0,77,6,241,8,19,1,0,0,234,48,0,0,169,0,77,6,241,8,19,1,0,0,236,37,0,0,169,0,77,6,241,8,19,1,0,0,166,15,0,0,169,0,77,6,241,8,19,1,0,0,142,28,0,0,169,0,77,6,241,8,19,1,0,0,22,12,0,0,169,0,77,6,241,8,19,1,0,0,12,25,0,0,169,0,77,6,241,8,19,1,0,0,141,48,0,0,169,0,77,6,241,8,19,1,0,0,70,28,0,0,169,0,77,6,241,8,19,1,0,0,48,36,0,0,169,0,77,6,241,8,19,1,0,0,172,48,0,0,169,0,77,6,241,8,19,0,153,159,190,42,81,128,9,145,194,42,81,128,152,152,249,5,49,0,13,179,197,42,49,0,91,143,197,42,1,0,73,216,201,42,1,0,191,152,249,5,1,0,163,165,206,42,81,128,9,145,194,42,83,128,152,152,249,5,81,128,46,216,249,5,54,0,13,179,210,42,54,0,91,143,210,42,54,0,35,179,210,42,54,0,217,164,210,42,1,0,73,216,214,42,1,0,191,152,249,5,1,0,163,165,206,42,6,6,196,111,249,5,86,128,27,151,206,42,86,128,8,151,206,42,6,6,196,111,249,5,86,128,58,73,219,42,86,128,149,101,219,42,86,128,176,52,219,42,86,128,159,22,219,42,86,128,195,47,219,42,86,128,27,109,219,42,86,128,128,51,219,42,86,128,78,20,219,42,86,128,181,92,219,42,86,128,234,83,219,42,86,128,215,42,219,42,86,128,157,84,219,42,86,128,5,25,219,42,86,128,247,77,219,42,86,128,10,63,219,42,86,128,211,88,219,42,86,128,82,98,219,42,86,128,3,97,219,42,86,128,91,110,219,42,86,128,97,67,219,42,86,128,118,74,219,42,49,0,21,136,223,42,33,0,50,136,223,42,33,0,50,136,246,1,49,0,157,193,234,42,52,0,105,135,245,42,1,0,22,185,5,43,33,0,137,135,245,42,33,0,180,193,234,42,1,0,238,146,225,25,1,0,85,208,10,43,1,0,49,133,15,43,1,0,193,132,24,43,1,0,99,122,225,25,1,0,98,120,225,25,1,0,228,125,69,3,1,0,85,208,33,43,1,0,147,128,219,42,1,0,149,125,38,43,84,128,218,224,249,5,84,128,203,224,249,5,84,128,188,224,249,5,84,128,219,224,249,5,4,0,48,199,43,43,33,0,98,136,47,43,33,0,221,193,52,43,1,0,158,239,56,43,6,6,196,111,249,5,86,128,222,101,61,43,86,128,79,84,61,43,86,128,167,105,61,43,86,128,211,101,61,43,86,128,99,107,61,43,86,128,157,103,61,43,86,128,27,108,61,43,86,128,77,97,61,43,86,128,54,108,61,43,86,128,195,84,61,43,86,128,165,84,61,43,86,128,171,98,61,43,86,128,239,9,61,43,86,128,211,79,61,43,86,128,3,104,61,43,33,0,176,156,249,5,33,0,5,225,249,5,6,6,196,111,249,5,86,128,32,94,65,43,86,128,255,107,65,43,86,128,79,84,65,43,86,128,32,99,65,43,86,128,99,107,65,43,86,128,41,98,65,43,86,128,6,101,65,43,86,128,200,106,65,43,86,128,219,98,65,43,86,128,241,103,65,43,86,128,44,95,65,43,86,128,148,87,65,43,86,128,90,88,65,43,86,128,202,88,65,43,86,128,146,67,65,43,86,128,111,98,65,43,86,128,96,105,65,43,86,128,100,98,65,43,86,128,156,106,65,43,33,0,139,146,47,43,1,0,186,238,43,43,1,0,176,156,249,5,1,0,5,225,249,5,1,0,224,216,69,43,1,0,119,210,79,43,49,0,84,179,88,43,81,128,58,102,249,5,33,0,212,112,43,43,33,0,177,155,249,5,33,0,62,224,249,5,33,0,44,223,249,5,33,0,244,179,249,5,1,0,83,130,162,3,1,0,209,126,43,43,1,0,117,128,105,43,1,0,171,128,219,42,1,0,237,119,111,43,1,0,165,124,194,42,1,0,15,128,249,5,6,6,196,111,249,5,86,128,222,101,122,43,86,128,159,98,122,43,86,128,127,106,122,43,86,128,181,97,122,43,86,128,166,101,122,43,86,128,89,83,122,43,86,128,139,110,122,43,86,128,82,98,122,43,86,128,166,83,122,43,86,128,156,110,122,43,86,128,188,62,122,43,86,128,210,62,122,43,33,0,230,239,127,43,33,0,221,243,127,43,33,0,213,109,43,43,33,0,105,111,43,43,1,0,77,154,162,3,1,0,37,127,43,43,1,0,198,122,249,5,1,0,179,129,249,5,1,0,175,120,130,43,1,0,203,120,130,43,1,0,175,120,135,43,1,0,203,120,135,43,86,128,189,142,162,3,86,128,91,152,249,5,1,0,175,120,140,43,1,0,203,120,140,43,1,0,30,122,162,3,1,0,172,122,249,5,49,0,141,106,105,43,33,0,210,186,145,43,81,128,53,88,249,5,33,0,138,239,56,43,1,0,94,168,150,43,1,0,143,178,155,43,1,0,227,115,225,25,33,0,242,197,249,5,33,0,235,198,43,43,49,0,190,103,160,43,49,0,167,104,171,43,81,128,7,107,249,5,33,0,69,186,175,43,54,0,212,97,180,43,54,0,16,98,180,43,54,0,147,101,180,43,54,0,235,94,180,43,49,0,14,106,185,43,33,0,223,215,249,5,33,0,13,117,249,5,33,0,18,143,162,3,81,128,115,102,249,5,49,0,119,101,191,43,49,0,236,87,196,43,33,0,175,162,180,43,33,0,102,159,200,43,1,0,8,122,203,43,54,0,47,102,208,43,54,0,133,73,208,43,54,0,111,73,208,43,54,0,193,79,208,43,54,0,25,88,208,43,54,0,152,95,208,43,54,0,177,95,208,43,54,0,70,99,208,43,54,0,49,99,208,43,54,0,7,97,208,43,33,0,245,206,196,43,1,0,249,127,249,5,33,0,227,115,225,25,49,0,166,100,196,43,49,0,26,104,213,43,33,0,96,182,249,5,33,0,151,211,196,43,33,0,1,204,219,43,33,0,135,198,249,5,1,0,153,151,127,43,33,0,162,139,56,43,33,0,107,211,225,43,33,0,31,110,249,5,33,0,157,111,249,5,33,0,176,156,249,5,33,0,5,225,249,5,33,0,228,151,127,43,33,0,190,232,196,43,33,0,211,157,234,43,33,0,162,139,56,43,1,0,211,157,234,43,33,0,153,151,127,43,1,0,106,234,249,5,81,128,235,97,249,5,85,128,70,101,249,5,85,128,23,103,249,5,81,128,152,107,249,5,33,0,162,139,56,43,1,0,107,211,239,43,1,0,185,115,225,25,33,0,190,232,196,43,33,0,211,157,234,43,33,0,208,222,249,43,33,0,0,223,249,43,33,0,11,224,249,43,33,0,71,201,43,43,33,0,239,201,43,43,33,0,151,202,254,43,33,0,176,156,249,5,33,0,5,225,249,5,49,0,126,86,196,43,19,0,241,92,162,3,81,128,236,9,249,5,81,128,228,18,249,5,81,128,27,24,249,5,81,128,114,30,249,5,49,0,246,99,191,43,49,0,62,100,191,43,49,0,172,86,191,43,49,0,60,103,191,43,81,128,114,110,249,5,81,128,99,110,249,5,81,128,152,99,249,5,22,0,87,104,249,5,1,0,114,121,208,43,1,0,221,122,180,43,1,0,113,123,150,43,1,0,63,124,249,5,1,0,135,130,3,44,54,0,22,80,249,5,54,0,234,102,249,5,54,0,92,84,249,5,54,0,117,84,249,5,54,0,137,84,249,5,54,0,39,80,249,5,54,0,17,100,249,5,54,0,75,87,249,5,49,0,75,110,196,43,54,0,229,86,196,43,49,0,157,86,196,43,1,0,105,130,249,5,1,0,13,120,162,3,1,0,181,119,196,43,1,0,203,129,225,25,81,128,77,83,249,5,81,128,173,97,249,5,81,128,26,101,249,5,1,0,1,130,249,5,1,0,246,122,249,5,1,0,197,125,249,5,1,0,254,125,249,5,1,0,30,130,249,5,33,0,10,203,8,44,33,0,162,139,56,43,1,0,75,129,17,44,1,0,153,129,17,44,1,0,47,129,17,44,1,0,124,129,17,44,1,0,50,119,249,5,1,0,96,119,249,5,1,0,137,119,249,5,1,0,159,119,249,5,49,0,136,100,249,5,1,0,72,119,249,5,1,0,28,119,249,5,1,0,23,129,249,5,1,0,127,122,249,5,1,0,122,125,249,5,81,128,209,93,249,5,81,128,182,93,249,5,81,128,152,93,249,5,81,128,132,42,249,5,81,128,50,78,249,5,81,128,179,87,249,5,81,128,71,107,249,5,81,128,104,97,249,5,81,128,149,79,249,5,81,128,34,102,249,5,81,128,221,84,249,5,81,128,183,102,249,5,81,128,211,97,249,5,81,128,205,97,249,5,81,128,163,102,249,5,81,128,208,97,249,5,81,128,166,97,249,5,81,128,164,104,249,5,81,128,165,97,249,5,49,0,218,104,171,43,49,0,186,104,171,43,49,0,14,0,22,44,81,128,205,102,249,5,81,128,79,101,249,5,1,0,211,119,27,44,1,0,61,127,32,44,1,0,159,130,38,44,1,0,1,130,249,5,81,128,146,83,249,5,1,0,159,130,38,44,1,0,121,126,43,44,1,0,100,129,225,25,49,0,10,87,49,44,81,128,183,88,249,5,81,128,119,105,249,5,81,128,166,102,249,5,49,0,75,172,54,44,49,0,114,100,196,43,49,0,41,100,196,43,81,128,152,107,249,5,81,128,81,102,249,5,81,128,105,83,249,5,81,128,122,83,249,5,49,0,122,100,196,43,49,0,49,100,196,43,81,128,195,107,249,5,81,128,211,107,249,5,81,128,5,109,249,5,81,128,61,101,249,5,81,128,229,107,249,5,1,0,249,127,56,43,1,0,93,128,59,44,6,6,196,111,249,5,86,128,147,8,70,44,86,128,68,17,70,44,86,128,246,22,70,44,86,128,200,29,70,44,86,128,47,101,70,44,33,0,158,239,75,44,1,0,114,237,249,5,33,0,5,225,249,5,33,0,176,156,249,5,83,128,12,94,249,5,33,0,176,237,81,44,1,0,227,168,249,5,6,6,196,111,249,5,86,128,47,101,85,44,86,128,197,108,85,44,86,128,25,88,85,44,86,128,133,73,85,44,33,0,226,204,249,5,33,0,246,204,249,5,33,0,89,219,249,5,33,0,126,219,249,5,81,128,122,100,249,5,81,128,49,100,249,5,49,0,157,86,191,43,81,128,196,100,127,43,81,128,247,93,127,43,81,128,255,107,127,43,1,0,251,238,90,44,1,0,220,220,225,25,1,0,251,170,85,44,1,0,86,153,95,44,1,0,74,157,225,25,1,0,226,204,249,5,1,0,246,204,249,5,1,0,126,219,249,5,1,0,89,219,249,5,49,0,111,106,191,43,6,6,196,111,249,5,86,128,59,5,100,44,86,128,233,9,100,44,86,128,225,18,100,44,86,128,24,24,100,44,86,128,111,30,100,44,86,128,132,35,100,44,86,128,86,42,100,44,86,128,183,46,100,44,86,128,97,51,100,44,86,128,47,101,100,44,81,128,16,99,249,5,81,128,0,99,249,5,81,128,237,98,249,5,81,128,155,62,249,5,81,128,253,101,249,5,81,128,88,78,249,5,81,128,199,98,249,5,81,128,188,108,249,5,81,128,226,77,249,5,81,128,124,73,249,5,81,128,16,88,249,5,81,128,2,88,249,5,81,128,50,78,249,5,81,128,179,87,249,5,81,128,71,107,249,5,49,0,225,108,81,44,49,0,240,108,81,44,49,0,96,78,81,44,49,0,207,98,81,44,19,0,90,87,162,3,33,0,70,131,105,44,22,0,145,92,105,44,33,0,231,140,196,43,33,0,222,140,196,43,1,0,143,124,110,44,1,0,56,122,110,44,33,0,118,218,249,5,33,0,70,131,105,44,33,0,105,216,196,43,49,0,111,86,249,5,49,0,215,92,249,5,81,128,90,93,162,3,51,0,254,106,171,43,19,0,85,103,196,43,81,128,189,94,249,5,49,0,223,92,171,43,33,0,1,229,115,44,1,0,87,212,196,43,1,0,252,156,249,5,49,0,202,104,171,43,49,0,198,104,171,43,49,0,4,78,171,43,49,0,8,80,119,44,19,0,56,104,191,43,49,0,105,83,249,5,49,0,122,83,249,5,81,128,141,107,249,5,81,128,148,73,249,5,81,128,121,67,249,5,81,128,16,63,249,5,81,128,68,10,249,5,81,128,5,19,249,5,81,128,60,24,249,5,81,128,253,62,249,5,81,128,108,67,249,5,81,128,41,63,249,5,81,128,170,67,249,5,81,128,173,73,249,5,81,128,109,101,249,5,81,128,41,63,249,5,81,128,170,67,249,5,81,128,173,73,249,5,81,128,16,63,249,5,81,128,121,67,249,5,81,128,148,73,249,5,81,128,109,101,249,5,81,128,79,10,119,44,81,128,16,19,119,44,81,128,71,24,119,44,81,128,147,30,119,44,81,128,68,10,249,5,81,128,5,19,249,5,81,128,60,24,249,5,81,128,253,62,249,5,81,128,108,67,249,5,1,0,236,67,225,25,19,0,90,93,162,3,19,0,85,103,196,43,51,0,12,93,249,5,33,0,109,226,225,25,33,0,58,138,225,25,33,0,1,229,115,44,33,0,87,212,196,43,83,128,90,93,162,3,49,0,254,106,171,43,51,0,85,103,196,43,49,0,12,93,249,5,33,0,1,229,115,44,33,0,87,212,196,43,19,0,127,103,196,43,33,0,190,211,196,43,81,128,236,93,249,5,33,0,190,211,196,43,81,128,236,93,249,5,1,0,151,199,122,44,1,0,160,210,131,44,49,0,105,83,249,5,49,0,122,83,249,5,81,128,3,109,249,5,81,128,178,237,249,5,81,128,160,100,249,5,49,0,149,103,196,43,81,128,142,94,249,5,1,0,14,156,249,5,49,0,122,100,196,43,49,0,67,78,191,43,19,0,155,104,191,43,49,0,122,100,196,43,49,0,125,99,196,43,81,128,3,109,249,5,81,128,160,100,249,5,19,0,155,104,191,43,19,0,90,93,162,3,49,0,254,106,171,43,19,0,85,103,196,43,81,128,56,93,249,5,81,128,228,92,249,5,33,0,109,226,225,25,33,0,1,229,115,44,33,0,87,212,196,43,1,0,123,156,249,5,49,0,25,164,196,43,49,0,139,203,196,43,49,0,98,203,196,43,49,0,126,203,191,43,33,0,119,210,139,44,33,0,119,210,148,44,20,0,152,107,249,5,20,0,81,102,249,5,81,128,90,93,162,3,49,0,139,203,196,43,49,0,108,203,196,43,49,0,98,203,196,43,49,0,126,203,191,43,49,0,227,116,43,43,49,0,76,203,196,43,49,0,87,203,196,43,33,0,117,183,154,44,33,0,32,192,159,44,33,0,190,211,196,43,33,0,198,187,115,44,49,0,105,103,196,43,33,0,190,211,196,43,33,0,198,187,115,44,49,0,90,100,196,43,33,0,181,235,164,44,33,0,106,235,169,44,49,0,105,83,249,5,49,0,122,83,249,5,19,0,119,99,196,43,19,0,137,99,196,43,19,0,125,99,196,43,19,0,105,104,191,43,19,0,70,104,191,43,33,0,198,187,115,44,33,0,196,184,174,44,33,0,144,235,179,44,49,0,100,99,196,43,51,0,132,104,191,43,33,0,190,211,196,43,81,128,236,93,249,5,49,0,105,83,249,5,49,0,122,83,249,5,81,128,212,100,127,43,81,128,237,100,127,43,33,0,7,212,196,43,33,0,53,212,196,43,33,0,103,213,184,44,33,0,143,213,184,44,33,0,215,217,196,43,33,0,3,218,196,43,1,0,127,122,249,5,1,0,30,124,249,5,1,0,127,122,249,5,1,0,149,120,196,43,1,0,117,128,105,43,1,0,92,124,188,44,1,0,234,129,249,5,49,0,45,107,196,43,49,0,21,107,196,43,49,0,5,98,196,43,49,0,249,97,196,43,49,0,142,108,196,43,49,0,124,108,196,43,49,0,116,104,191,43,33,0,29,213,193,44,33,0,47,213,193,44,1,0,56,130,225,25,1,0,219,124,203,44,1,0,245,124,203,44,1,0,92,124,188,44,1,0,226,127,208,44,1,0,122,125,249,5,1,0,37,120,225,25,49,0,161,108,196,43,49,0,53,107,196,43,49,0,13,98,196,43,49,0,116,104,191,43,49,0,214,105,191,43,81,128,28,63,249,5,81,128,133,67,249,5,81,128,160,73,249,5,81,128,66,80,249,5,81,128,217,88,249,5,81,128,185,92,249,5,49,0,254,102,191,43,81,128,109,105,249,5,33,0,76,213,208,44,33,0,149,219,218,44,33,0,3,132,196,43,1,0,134,165,225,25,33,0,58,170,228,44,33,0,35,186,233,44,81,128,109,88,249,5,81,128,157,88,249,5,17,0,109,88,249,5,17,0,157,88,249,5,17,0,121,88,249,5,17,0,109,88,249,5,17,0,145,88,249,5,17,0,69,88,249,5,1,0,237,136,162,3,1,0,66,216,162,3,17,0,109,88,249,5,17,0,145,88,249,5,17,0,109,88,249,5,20,0,99,88,249,5,17,0,109,88,249,5,1,0,151,169,238,44,1,0,123,115,225,25,1,0,26,173,249,5,1,0,86,153,243,44,1,0,250,150,119,44,19,0,64,9,119,44,1,0,159,154,162,3,1,0,1,150,249,5,1,0,115,153,225,25,33,0,186,226,249,5,33,0,173,225,249,5,19,0,64,9,249,5,1,0,222,123,249,5,49,0,173,94,248,44,49,0,62,94,251,44,49,0,38,94,251,44,49,0,107,94,251,44,49,0,84,94,251,44,1,0,58,170,228,44,1,0,133,231,5,45,1,0,235,187,115,44,33,0,139,146,5,43,81,128,140,102,249,5,81,128,210,94,249,5,33,0,138,146,5,43,49,0,141,106,105,43,49,0,88,106,10,45,49,0,56,110,16,45,17,0,57,86,127,43,17,0,31,86,127,43,17,0,96,108,127,43,81,128,125,92,127,43,49,0,141,106,105,43,81,128,25,94,249,5,81,128,248,107,249,5,33,0,210,186,22,45,49,0,28,102,191,43,33,0,138,239,56,43,81,128,246,62,119,44,81,128,101,67,119,44,81,128,141,73,119,44,81,128,59,80,119,44,81,128,229,87,119,44,81,128,243,62,119,44,81,128,231,62,119,44,81,128,148,62,119,44,81,128,65,67,119,44,81,128,132,97,119,44,81,128,152,95,119,44,81,128,161,104,119,44,81,128,64,76,119,44,81,128,82,103,119,44,81,128,146,103,119,44,81,128,135,105,119,44,81,128,36,106,162,3,81,128,23,106,162,3,17,0,209,105,27,45,81,128,204,97,249,5,81,128,36,98,249,5,81,128,58,77,249,5,33,0,69,186,175,43,81,128,82,67,249,5,49,0,63,63,196,43,49,0,192,67,196,43,49,0,195,73,196,43,49,0,99,80,196,43,49,0,239,88,196,43,49,0,207,92,196,43,49,0,120,93,196,43,49,0,229,94,196,43,49,0,30,97,196,43,49,0,62,97,196,43,49,0,27,209,191,43,49,0,54,63,171,43,49,0,183,67,171,43,49,0,186,73,171,43,49,0,90,80,171,43,49,0,230,88,171,43,49,0,198,92,171,43,49,0,111,93,171,43,49,0,220,94,171,43,49,0,13,97,171,43,49,0,45,97,171,43,49,0,50,144,31,45,81,128,76,63,249,5,81,128,255,67,249,5,81,128,208,73,249,5,81,128,105,80,249,5,81,128,245,88,249,5,81,128,213,92,249,5,81,128,126,93,249,5,81,128,235,94,249,5,81,128,43,97,249,5,81,128,75,97,249,5,49,0,3,158,8,44,49,0,15,158,8,44,1,0,112,179,36,45,49,0,141,106,105,43,33,0,210,186,40,45,33,0,235,198,162,3,33,0,146,219,249,5,33,0,18,205,249,5,33,0,223,215,43,43,86,128,171,95,249,5,86,128,46,2,249,5,86,128,197,108,249,5,86,128,106,12,249,5,86,128,192,106,249,5,86,128,33,38,249,5,33,0,231,154,162,3,1,0,243,143,45,45,1,0,24,152,50,45,1,0,160,152,50,45,33,0,235,198,115,44,1,0,75,209,249,5,1,0,74,153,249,5,1,0,85,178,54,45,1,0,171,131,249,5,49,0,86,153,95,44,1,0,74,123,225,25,49,0,202,105,196,43,49,0,130,105,191,43,81,128,30,88,249,5,49,0,107,93,196,43,49,0,106,93,196,43,86,128,64,76,119,44,86,128,25,2,119,44,86,128,24,38,119,44,86,128,64,9,119,44,86,128,193,79,119,44,86,128,71,93,119,44,86,128,171,107,119,44,86,128,72,31,119,44,86,128,39,36,119,44,86,128,81,12,119,44,86,128,188,108,119,44,86,128,167,106,119,44,86,128,152,95,119,44,86,128,128,93,119,44,86,128,140,93,119,44,86,128,179,101,162,3,86,128,195,101,162,3,86,128,228,101,162,3,51,0,208,103,59,45,17,0,254,204,59,45,33,0,118,181,225,25,35,0,179,242,249,5,35,0,182,198,249,5,38,0,164,156,249,5,38,0,129,224,249,5,33,0,55,206,249,5,33,0,64,112,249,5,33,0,131,194,249,5,6,6,196,111,249,5,86,128,122,87,45,45,86,128,166,87,45,45,86,128,59,87,45,45,33,0,76,239,56,43,33,0,20,239,56,43,33,0,191,168,65,45,33,0,242,197,249,5,33,0,235,198,43,43,49,0,39,105,171,43,49,0,230,104,171,43,49,0,59,105,171,43,49,0,251,104,171,43,49,0,17,105,171,43,33,0,69,186,175,43,49,0,26,104,70,45,33,0,96,182,249,5,33,0,204,218,249,5,33,0,107,205,249,5,33,0,241,218,249,5,33,0,150,205,249,5,33,0,1,204,76,45,33,0,135,198,249,5,33,0,162,139,56,43,33,0,9,196,81,45,1,0,223,215,196,43,1,0,191,152,249,5,49,0,248,179,196,43,33,0,176,156,249,5,33,0,5,225,249,5,33,0,128,152,249,5,33,0,223,215,196,43,33,0,151,202,43,43,1,0,12,222,249,5,1,0,64,222,249,5,51,0,68,95,86,45,51,0,56,95,97,45,33,0,150,142,162,3,1,0,209,126,43,43,1,0,15,128,249,5,1,0,83,130,162,3,1,0,40,128,108,45,1,0,221,122,162,3,1,0,65,120,249,5,1,0,40,125,249,5,1,0,148,126,249,5,1,0,225,130,249,5,1,0,174,125,248,44,1,0,70,128,69,43,1,0,99,115,149,38,1,0,249,127,56,43,1,0,93,128,105,43,1,0,127,122,249,5,1,0,70,128,116,45,81,128,234,105,249,5,81,128,125,107,249,5,81,128,184,105,249,5,49,0,181,110,43,43,1,0,48,199,43,43,33,0,150,214,196,43,17,0,179,188,126,45,81,128,11,102,249,5,81,128,79,88,249,5,81,128,149,97,249,5,81,128,64,98,249,5,81,128,83,86,249,5,1,0,158,239,56,43,1,0,67,6,127,43,1,0,140,12,127,43,1,0,85,20,127,43,1,0,71,6,127,43,1,0,226,12,127,43,1,0,171,20,127,43,1,0,106,7,127,43,1,0,23,14,127,43,1,0,1,21,127,43,81,128,30,93,162,3,22,0,180,103,162,3,22,0,230,11,162,3,81,128,102,101,162,3,81,128,92,51,162,3,81,128,59,8,162,3,49,0,173,103,225,25,22,0,126,12,131,45,22,0,230,0,131,45,22,0,119,42,131,45,22,0,214,97,131,45,22,0,41,38,131,45,22,0,59,38,131,45,22,0,115,51,131,45,22,0,4,28,131,45,1,0,231,140,196,43,1,0,222,140,196,43,1,0,18,179,136,45,1,0,176,143,136,45,33,0,191,152,249,5,33,0,17,151,249,5,33,0,38,145,249,5,33,0,70,131,131,45,33,0,105,216,196,43,33,0,70,131,131,45,33,0,70,131,131,45,33,0,227,213,141,45,81,128,23,103,249,5,33,0,162,139,56,43,81,128,173,88,249,5,81,128,135,102,249,5,33,0,162,139,56,43,33,0,5,225,249,5,33,0,176,156,249,5,33,0,239,226,249,5,33,0,248,226,249,5,33,0,223,226,249,5,33,0,232,226,249,5,33,0,17,200,27,45,33,0,13,200,27,45,33,0,93,169,162,3,33,0,209,209,27,45,33,0,44,200,27,45,33,0,176,204,27,45,33,0,70,200,27,45,33,0,24,188,162,3,33,0,65,147,162,3,33,0,168,200,27,45,33,0,106,200,27,45,33,0,227,154,162,3,33,0,74,240,162,3,33,0,40,142,162,3,33,0,26,205,27,45,33,0,218,177,27,45,49,0,142,98,150,45,49,0,59,106,155,45,49,0,112,87,150,45,33,0,83,242,162,3,33,0,15,235,159,45,33,0,16,240,225,25,33,0,109,132,163,45,33,0,248,239,225,25,33,0,243,168,162,3,33,0,111,193,162,3,33,0,129,199,27,45,33,0,33,174,162,3,33,0,61,139,172,45,33,0,25,139,172,45,1,0,130,127,27,45,1,0,29,126,27,45,1,0,50,126,27,45,1,0,254,128,162,3,1,0,180,130,162,3,49,0,182,62,150,45,49,0,105,73,150,45,22,0,226,97,162,3,22,0,236,79,162,3,33,0,152,236,162,3,33,0,139,79,162,3,33,0,197,113,162,3,33,0,191,182,162,3,33,0,90,146,162,3,33,0,23,146,162,3,33,0,236,145,162,3,33,0,56,146,162,3,33,0,12,225,162,3,33,0,73,144,162,3,33,0,248,229,162,3,33,0,189,134,162,3,33,0,213,229,162,3,33,0,173,241,162,3,33,0,114,196,175,45,1,0,163,121,172,45,1,0,136,121,172,45,1,0,189,121,172,45,1,0,202,130,162,3,1,0,129,118,162,3,1,0,153,118,162,3,49,0,230,99,150,45,1,0,222,118,162,3,4,0,134,150,162,3,1,0,77,122,184,45,6,6,196,111,249,5,86,128,137,97,184,45,86,128,138,105,184,45,86,128,246,106,184,45,86,128,228,96,184,45,86,128,197,108,184,45,86,128,162,100,184,45,86,128,169,97,184,45,86,128,221,103,184,45,86,128,157,101,184,45,86,128,156,95,184,45,86,128,31,98,184,45,86,128,60,98,184,45,1,0,252,117,162,3,1,0,23,118,162,3,49,0,80,105,189,45,49,0,52,106,150,45,49,0,183,79,150,45,49,0,201,103,150,45,1,0,151,127,27,45,1,0,72,126,27,45,1,0,254,128,162,3,1,0,180,130,162,3,1,0,81,118,162,3,1,0,16,125,162,3,1,0,105,118,162,3,1,0,241,121,162,3,1,0,83,130,162,3,1,0,215,121,162,3,49,0,175,108,150,45,1,0,60,118,162,3,1,0,241,121,162,3,1,0,184,118,225,25,49,0,175,99,150,45,49,0,201,99,150,45,49,0,252,79,150,45,49,0,199,87,150,45,49,0,48,66,150,45,49,0,133,87,150,45,49,0,46,103,150,45,49,0,201,103,150,45,49,0,90,99,150,45,49,0,35,104,150,45,49,0,182,62,150,45,49,0,169,62,150,45,1,0,244,118,162,3,1,0,215,117,162,3,1,0,180,123,162,3,1,0,138,123,162,3,1,0,85,121,162,3,1,0,174,126,162,3,1,0,192,124,249,5,1,0,58,121,119,44,1,0,88,125,162,3,49,0,145,101,150,45,49,0,181,51,150,45,1,0,127,120,162,3,1,0,251,123,162,3,1,0,32,121,162,3,1,0,50,123,225,25,1,0,9,131,162,3,1,0,35,131,162,3,1,0,5,121,162,3,1,0,231,120,162,3,1,0,202,128,225,25,1,0,235,126,249,5,1,0,176,127,249,5,49,0,83,107,95,44,1,0,202,128,225,25,1,0,7,127,249,5,1,0,200,127,249,5,49,0,242,86,27,45,49,0,254,86,27,45,49,0,145,86,27,45,49,0,23,87,27,45,49,0,47,87,27,45,49,0,184,199,195,45,49,0,71,179,207,45,1,0,153,113,218,45,49,0,249,105,196,43,33,0,162,139,56,43,1,0,220,220,225,25,1,0,155,212,249,5,1,0,230,203,249,5,1,0,184,212,249,5,1,0,102,223,249,5,1,0,227,128,225,25,1,0,150,122,249,5,1,0,176,127,249,5,1,0,94,126,249,5,1,0,135,130,56,43,33,0,240,234,223,45,33,0,247,232,223,45,86,128,77,108,249,5,86,128,88,105,249,5,81,128,222,105,249,5,81,128,215,106,249,5,49,0,43,88,196,43,19,0,35,103,27,45,83,128,242,101,249,5,83,128,0,102,249,5,83,128,6,108,249,5,83,128,91,78,249,5,83,128,235,106,249,5,51,0,217,86,191,43,51,0,52,101,191,43,51,0,35,87,191,43,33,0,178,236,43,43,33,0,250,150,223,45,33,0,210,233,223,45,54,0,215,87,226,45,33,0,248,138,249,5,33,0,72,165,231,45,33,0,247,232,249,5,33,0,210,233,249,5,22,0,181,110,231,45,33,0,139,218,231,45,51,1,244,29,236,45,51,1,76,14,236,45,51,1,155,69,241,45,51,1,83,68,246,45,51,1,231,49,251,45,51,1,185,25,241,45,51,1,199,61,0,46,51,1,246,85,5,46,51,1,124,47,241,45,51,1,119,63,241,45,51,1,103,0,10,46,51,1,196,69,10,46,51,1,82,85,10,46,51,1,51,53,246,45,51,1,55,41,15,46,51,1,202,3,241,45,51,1,62,0,241,45,51,1,69,4,20,46,51,1,239,23,5,46,51,1,205,85,241,45,51,1,12,56,5,46,51,1,143,78,246,45,51,1,139,50,236,45,51,1,107,80,236,45,51,1,101,34,241,45,51,1,118,22,241,45,51,1,135,91,15,46,51,1,88,58,194,42,51,1,59,48,194,42,51,1,128,21,10,46,51,1,160,59,25,46,51,1,159,11,246,45,51,1,121,44,236,45,51,1,234,33,236,45,51,1,50,35,241,45,51,1,19,46,15,46,51,1,120,3,15,46,51,1,246,54,241,45,51,1,187,14,15,46,51,1,27,60,20,46,51,1,43,25,241,45,51,1,166,72,15,46,51,1,227,55,241,45,51,1,145,55,241,45,51,1,185,77,241,45,51,1,43,72,30,46,51,1,49,43,35,46,51,1,214,13,35,46,51,1,30,32,40,46,51,1,12,52,15,46,51,1,5,82,241,45,51,1,109,66,10,46,51,1,225,52,241,45,51,1,81,31,10,46,51,1,17,77,246,45,51,1,150,76,10,46,51,1,232,66,241,45,51,1,19,34,10,46,51,1,22,90,10,46,51,1,57,57,10,46,51,1,224,26,236,45,51,1,172,43,241,45,51,1,110,9,10,46,51,1,223,42,241,45,51,1,12,91,15,46,51,1,204,16,10,46,51,1,205,30,15,46,51,1,114,69,10,46,51,1,203,29,236,45,51,1,191,66,30,46,51,1,143,18,10,46,51,1,191,60,45,46,51,1,39,29,50,46,51,1,125,74,55,46,51,1,123,85,5,46,51,1,102,78,15,46,51,1,239,6,241,45,51,1,152,45,60,46,51,1,173,0,241,45,51,1,233,4,65,46,51,1,249,22,241,45,51,1,110,7,10,46,51,1,92,53,241,45,51,1,6,51,35,46,51,1,31,31,10,46,51,1,27,64,5,46,51,1,101,28,241,45,51,1,130,20,70,46,51,1,135,71,75,46,51,1,18,39,80,46,51,1,217,91,10,46,51,1,137,32,60,46,51,1,144,77,241,45,51,1,185,12,35,46,51,1,219,41,241,45,51,1,51,16,241,45,51,1,156,75,85,46,51,1,68,76,80,46,51,1,109,8,5,46,51,1,190,56,241,45,51,1,252,58,246,45,51,1,193,33,90,46,51,1,97,81,236,45,51,1,232,64,10,46,51,1,42,68,95,46,51,1,210,73,246,45,51,1,251,73,15,46,51,1,18,48,241,45,51,1,210,82,10,46,51,1,228,14,5,46,51,1,140,65,241,45,51,1,77,74,241,45,51,1,78,59,5,46,51,1,247,88,241,45,51,1,160,63,5,46,51,1,230,80,241,45,51,1,248,74,236,45,51,1,95,37,246,45,51,1,145,90,15,46,51,1,56,81,10,46,51,1,164,54,60,46,51,1,78,40,236,45,51,1,208,22,5,46,51,1,17,65,246,45,51,1,68,64,241,45,51,1,35,14,236,45,51,1,114,89,246,45,51,1,183,26,5,46,51,1,148,80,236,45,51,1,74,75,236,45,51,1,47,58,5,46,51,1,53,91,241,45,51,1,192,4,10,46,51,1,222,65,5,46,51,1,242,63,236,45,51,1,69,9,100,46,51,1,247,68,55,46,51,1,68,60,5,46,51,1,25,62,40,46,51,1,164,85,241,45,51,1,151,9,241,45,51,1,157,6,55,46,51,1,5,21,241,45,51,1,36,74,5,46,51,1,140,51,246,45,51,1,65,7,10,46,51,1,43,92,55,46,51,1,15,81,40,46,51,1,211,58,241,45,51,1,63,70,10,46,51,1,2,72,105,46,51,1,12,71,15,46,51,1,109,76,40,46,51,1,169,21,241,45,51,1,210,36,5,46,51,1,121,29,241,45,51,1,205,54,55,46,51,1,20,18,10,46,51,1,98,57,10,46,51,1,9,3,55,46,51,1,83,47,246,45,51,1,178,41,241,45,51,1,18,5,236,45,51,1,10,16,110,46,51,1,180,57,236,45,51,1,58,65,241,45,51,1,39,44,5,46,51,1,215,53,15,46,51,1,10,6,241,45,51,1,238,75,5,46,51,1,84,72,246,45,51,1,223,39,5,46,51,1,150,66,115,46,51,1,64,73,70,46,51,1,108,49,241,45,51,1,46,21,236,45,51,1,47,26,120,46,51,1,213,35,241,45,51,1,176,91,15,46,51,1,46,82,241,45,51,1,254,28,5,46,51,1,84,92,241,45,51,1,95,15,246,45,51,1,157,23,246,45,51,1,158,61,241,45,51,1,145,70,5,46,51,1,183,34,236,45,51,1,163,16,246,45,51,1,251,21,241,45,51,1,161,3,241,45,51,1,128,82,241,45,51,1,102,18,246,45,51,1,17,73,35,46,51,1,151,4,125,46,51,1,237,11,15,46,51,1,104,70,130,46,51,1,111,45,241,45,51,1,33,75,135,46,51,1,9,35,10,46,51,1,237,89,80,46,51,1,146,14,40,46,51,1,137,41,40,46,51,1,237,69,40,46,51,1,198,6,241,45,51,1,36,22,236,45,51,1,186,51,40,46,51,1,144,12,241,45,51,1,71,17,10,46,51,1,204,31,246,45,51,1,89,20,241,45,51,1,71,1,241,45,51,1,186,55,5,46,51,1,58,61,15,46,51,1,45,42,120,46,51,1,152,33,5,46,51,1,197,75,241,45,51,1,94,52,140,46,51,1,124,68,236,45,51,1,41,54,5,46,51,1,231,56,15,46,51,1,31,55,241,45,51,1,94,91,30,46,51,1,87,82,246,45,51,1,37,59,5,46,51,1,53,71,241,45,51,1,196,15,246,45,51,1,191,64,241,45,51,1,178,32,5,46,51,1,87,21,10,46,51,1,229,40,15,46,51,1,233,47,241,45,51,1,214,2,10,46,51,1,7,66,241,45,51,1,201,63,10,46,51,1,60,46,70,46,51,1,53,56,241,45,51,1,47,51,10,46,51,1,82,54,241,45,51,1,122,16,5,46,51,1,25,37,241,45,51,1,112,1,241,45,51,1,192,7,145,46,51,1,36,83,150,46,51,1,98,50,150,46,51,1,232,76,10,46,51,1,41,85,40,46,51,1,204,24,5,46,51,1,73,89,246,45,51,1,180,50,241,45,51,1,108,27,241,45,51,1,116,6,246,45,51,1,122,31,246,45,51,1,181,65,90,46,51,1,53,52,236,45,51,1,192,9,246,45,51,1,163,24,155,46,51,1,17,67,70,46,51,1,142,46,241,45,51,1,245,31,236,45,51,1,0,85,35,46,51,1,245,16,236,45,51,1,116,23,5,46,51,1,42,47,30,46,51,1,142,26,160,46,51,1,135,52,246,45,51,1,101,46,10,46,51,1,243,3,236,45,51,1,38,27,236,45,51,1,64,66,241,45,51,1,24,7,241,45,51,1,81,38,5,46,51,1,150,60,236,45,51,1,206,68,246,45,51,1,138,81,10,46,51,1,70,45,10,46,51,1,77,22,10,46,51,1,188,40,236,45,51,1,184,5,40,46,51,1,100,39,246,45,51,1,29,28,241,45,51,1,108,36,236,45,51,1,71,32,70,46,51,1,125,72,5,46,51,1,235,17,15,46,51,1,182,39,165,46,51,1,80,44,241,45,51,1,123,54,5,46,51,1,119,40,0,46,51,1,232,60,5,46,51,1,216,46,241,45,51,1,162,29,15,46,51,1,233,7,241,45,51,1,142,34,241,45,51,1,4,42,5,46,51,1,28,4,30,46,51,1,240,61,241,45,51,1,29,45,5,46,51,1,104,90,241,45,51,1,111,33,241,45,51,1,242,59,194,42,51,1,149,49,10,46,51,1,107,62,236,45,51,1,210,21,5,46,51,1,94,71,241,45,51,1,75,23,236,45,51,1,18,8,10,46,51,1,23,76,10,46,51,1,254,43,70,46,51,1,131,43,241,45,51,1,221,57,241,45,51,1,175,20,15,46,51,1,184,52,5,46,51,1,112,17,10,46,51,1,13,15,35,46,51,1,198,23,15,46,51,1,4,13,241,45,51,1,17,61,241,45,51,1,186,70,241,45,51,1,104,55,40,46,51,1,149,56,241,45,51,1,227,90,15,46,51,1,109,60,170,46,51,1,16,50,10,46,51,1,66,62,241,45,51,1,186,90,236,45,51,1,32,69,236,45,51,1,14,41,5,46,51,1,172,35,175,46,51,1,110,4,70,46,51,1,16,57,40,46,51,1,45,13,70,46,51,1,84,25,5,46,51,1,60,34,80,46,51,1,179,81,15,46,51,1,8,43,35,46,51,1,254,35,15,46,51,1,133,53,241,45,51,1,50,2,241,45,51,1,21,0,241,45,51,1,139,57,5,46,51,1,78,63,246,45,51,1,149,27,241,45,51,1,100,48,241,45,51,1,240,1,180,46,51,1,68,8,241,45,51,1,96,41,165,46,51,1,75,6,246,45,51,1,232,72,5,46,51,1,90,43,30,46,51,1,251,82,140,46,51,1,174,53,241,45,51,1,163,31,236,45,51,1,37,49,5,46,51,1,165,68,236,45,51,1,203,44,236,45,51,1,196,89,241,45,51,1,216,20,15,46,51,1,217,71,5,46,51,1,189,80,0,46,51,1,21,20,246,45,51,1,213,43,185,46,51,1,167,22,241,45,51,1,6,58,241,45,51,1,207,74,241,45,51,1,176,71,241,45,51,1,162,44,15,46,51,1,70,30,241,45,51,1,173,2,70,46,51,1,30,17,15,46,51,1,170,58,246,45,51,1,91,2,236,45,51,1,34,23,241,45,51,1,221,50,241,45,51,1,232,8,236,45,51,1,29,33,241,45,51,1,233,38,5,46,51,1,190,27,85,46,51,1,22,70,35,46,51,1,236,19,236,45,51,1,1,47,241,45,51,1,103,77,241,45,51,1,213,28,246,45,51,1,153,17,236,45,51,1,62,77,246,45,51,1,132,2,190,46,51,1,194,17,236,45,51,1,220,81,246,45,51,1,63,90,236,45,51,1,172,28,241,45,51,1,122,38,5,46,51,1,161,42,10,46,51,1,192,38,246,45,51,1,227,51,236,45,51,1,80,29,241,45,51,1,54,15,246,45,51,1,73,69,195,46,51,1,227,70,236,45,51,1,184,18,5,46,51,1,155,89,15,46,51,1,224,34,15,46,51,1,57,50,30,46,51,1,91,35,241,45,51,1,61,18,241,45,51,1,119,59,241,45,51,1,150,64,246,45,51,1,201,59,241,45,51,1,151,7,241,45,51,1,1,68,40,46,51,1,59,39,236,45,51,1,32,89,5,46,51,1,193,83,241,45,51,1,219,32,150,46,51,1,150,8,5,46,51,1,115,75,40,46,51,1,141,39,10,46,51,1,79,3,5,46,51,1,129,58,30,46,51,1,244,44,5,46,51,1,191,8,246,45,51,1,99,65,5,46,51,1,29,30,246,45,51,1,166,74,246,45,51,1,191,76,5,46,51,1,225,5,5,46,51,1,234,45,15,46,51,1,10,53,15,46,51,1,70,33,30,46,51,1,109,64,30,46,51,1,99,61,0,46,51,1,0,54,40,46,51,1,169,82,40,46,51,1,246,30,200,46,51,1,8,40,35,46,51,1,190,49,241,45,51,1,193,45,246,45,51,1,2,92,241,45,33,0,73,216,205,46,81,128,246,151,249,5,81,128,49,223,249,5,81,128,47,233,249,5,33,0,73,216,205,46,81,128,246,151,249,5,81,128,49,223,249,5,81,128,47,233,249,5,54,0,100,55,210,46,54,0,100,55,215,46,54,0,100,55,220,46,6,6,196,111,249,5,86,128,140,177,225,46,86,128,134,51,225,46,86,128,174,36,225,46,86,128,17,26,225,46,86,128,208,13,225,46,86,128,183,13,225,46,86,128,41,26,225,46,86,128,17,14,225,46,86,128,158,13,225,46,86,128,22,33,225,46,86,128,133,13,225,46,86,128,205,110,225,46,86,128,220,108,225,46,22,0,247,157,130,43,22,0,35,147,130,43,6,0,76,63,200,43,6,0,161,102,200,43,6,0,126,93,200,43,6,0,255,67,200,43,22,0,247,157,135,43,22,0,35,147,135,43,6,0,76,63,200,43,6,0,161,102,200,43,6,0,126,93,200,43,6,0,255,67,200,43,22,0,247,157,140,43,22,0,35,147,140,43,6,0,76,63,200,43,6,0,161,102,200,43,6,0,126,93,200,43,6,0,255,67,200,43,33,0,165,231,115,44,1,0,179,129,249,5,1,0,198,122,249,5,54,0,100,55,230,46,6,6,196,111,249,5,86,128,47,102,203,43,86,128,133,73,203,43,86,128,111,73,203,43,86,128,193,79,203,43,86,128,25,88,203,43,86,128,152,95,203,43,86,128,177,95,203,43,86,128,70,99,203,43,86,128,49,99,203,43,86,128,7,97,203,43,33,0,29,159,249,5,33,0,1,204,235,46,33,0,106,234,249,5,33,0,3,198,249,5,33,0,168,139,127,43,33,0,168,139,127,43,6,6,196,111,249,5,86,128,163,62,241,46,86,128,5,102,241,46,86,128,96,78,241,46,86,128,240,106,241,46,86,128,113,107,241,46,86,128,183,107,241,46,6,6,196,111,249,5,86,128,101,86,246,46,86,128,17,108,246,46,86,128,48,106,246,46,86,128,86,10,246,46,6,6,196,111,249,5,86,128,133,73,243,44,86,128,163,62,243,44,86,128,136,37,243,44,6,6,196,111,249,5,86,128,28,84,251,46,86,128,39,84,251,46,86,128,243,83,251,46,86,128,67,84,251,46,86,128,254,83,251,46,86,128,52,84,251,46,86,128,13,84,251,46,33,0,17,198,249,5,33,0,77,150,0,47,33,0,106,234,249,5,33,0,3,198,249,5,1,0,28,123,17,44,1,0,123,124,17,44,1,0,101,127,249,5,33,0,10,203,170,38,1,0,99,115,149,38,6,6,196,111,249,5,86,128,247,101,6,47,86,128,5,102,6,47,86,128,96,78,6,47,86,128,71,108,6,47,86,128,240,106,6,47,86,128,132,110,6,47,1,0,9,119,249,5,1,0,118,119,249,5,80,32,0,0,0,0,147,0,52,143,11,47,1,0,83,32,0,0,0,0,134,24,163,195,6,0,3,0,91,32,0,0,0,0,145,24,185,195,20,47,3,0,93,32,0,0,0,0,134,24,163,195,21,0,3,0,101,32,0,0,0,0,131,8,148,165,24,47,4,0,110,32,0,0,0,0,134,24,163,195,6,0,5,0,164,32,0,0,0,0,134,24,163,195,147,34,5,0,48,33,0,0,0,0,134,24,163,195,30,47,6,0,144,33,0,0,0,0,134,0,129,204,36,47,7,0,235,33,0,0,0,0,198,0,129,204,72,10,8,0,4,34,0,0,0,0,198,0,246,136,26,1,9,0,56,34,0,0,0,0,198,0,68,154,218,0,9,0,160,34,0,0,0,0,150,0,47,147,42,47,9,0,220,34,0,0,0,0,150,0,77,191,49,47,10,0,4,36,0,0,0,0,150,0,153,161,49,47,12,0,24,36,0,0,0,0,150,0,122,188,49,47,14,0,36,36,0,0,0,0,150,0,138,161,49,47,16,0,48,36,0,0,0,0,150,0,174,196,42,47,18,0,64,36,0,0,0,0,150,0,94,172,57,47,19,0,92,37,0,0,0,0,150,0,9,171,57,47,21,0,120,38,0,0,0,0,150,0,199,168,57,47,23,0,214,38,0,0,0,0,150,8,134,225,66,47,25,0,222,38,0,0,0,0,150,8,231,242,49,47,26,0,231,38,0,0,0,0,150,8,243,242,49,47,28,0,243,38,0,0,0,0,150,8,176,164,49,47,30,0,252,38,0,0,0,0,150,8,191,164,49,47,32,0,5,39,0,0,0,0,150,8,97,161,49,47,34,0,14,39,0,0,0,0,150,8,119,161,49,47,36,0,23,39,0,0,0,0,150,8,58,169,42,47,38,0,31,39,0,0,0,0,150,8,91,172,57,47,39,0,40,39,0,0,0,0,150,8,6,171,57,47,41,0,49,39,0,0,0,0,150,8,40,242,57,47,43,0,58,39,0,0,0,0,150,8,181,229,42,47,45,0,71,39,0,0,0,0,150,8,158,229,42,47,46,0,84,39,0,0,0,0,145,0,228,114,57,47,47,0,32,40,0,0,0,0,145,0,233,220,57,47,49,0,12,41,0,0,0,0,145,0,43,242,57,47,51,0,66,42,0,0,0,0,145,24,185,195,20,47,53,0,90,42,0,0,0,0,134,24,163,195,6,0,53,0,144,42,0,0,0,0,134,24,163,195,147,34,53,0,36,43,0,0,0,0,134,24,163,195,72,47,54,0,132,43,0,0,0,0,134,24,163,195,16,0,55,0,88,44,0,0,0,0,134,24,163,195,78,47,56,0,20,45,0,0,0,0,230,1,129,204,84,47,57,0,111,45,0,0,0,0,198,0,129,204,72,10,58,0,136,45,0,0,0,0,198,0,246,136,26,1,59,0,188,45,0,0,0,0,198,0,68,154,218,0,59,0,42,46,0,0,0,0,150,0,114,145,90,47,59,0,50,46,0,0,0,0,230,1,171,177,96,47,60,0,75,46,0,0,0,0,230,1,171,177,102,47,61,0,108,46,0,0,0,0,150,0,27,216,107,47,62,0,120,46,0,0,0,0,150,0,47,147,113,47,63,0,180,46,0,0,0,0,150,0,77,191,120,47,64,0,220,47,0,0,0,0,150,0,153,161,120,47,66,0,240,47,0,0,0,0,150,0,122,188,120,47,68,0,252,47,0,0,0,0,150,0,138,161,120,47,70,0,8,48,0,0,0,0,150,0,174,196,113,47,72,0,24,48,0,0,0,0,150,0,94,172,128,47,73,0,52,49,0,0,0,0,150,0,9,171,128,47,75,0,80,50,0,0,0,0,150,0,199,168,128,47,77,0,176,50,0,0,0,0,150,0,173,167,128,47,79,0,92,51,0,0,0,0,150,0,238,178,128,47,81,0,184,51,0,0,0,0,150,0,57,193,137,47,83,0,36,52,0,0,0,0,150,0,192,235,113,47,85,0,138,52,0,0,0,0,150,0,224,114,128,47,86,0,196,52,0,0,0,0,150,0,210,114,145,47,88,0,160,53,0,0,0,0,150,0,157,145,128,47,92,0,72,54,0,0,0,0,150,0,107,169,160,47,94,0,35,55,0,0,0,0,150,8,134,225,171,47,97,0,43,55,0,0,0,0,150,8,134,225,177,47,98,0,52,55,0,0,0,0,150,8,146,225,107,47,99,0,128,55,0,0,0,0,150,8,146,225,183,47,100,0,222,38,0,0,0,0,150,8,231,242,120,47,101,0,231,38,0,0,0,0,150,8,243,242,120,47,103,0,188,55,0,0,0,0,150,8,176,164,120,47,105,0,197,55,0,0,0,0,150,8,191,164,120,47,107,0,206,55,0,0,0,0,150,8,97,161,120,47,109,0,215,55,0,0,0,0,150,8,119,161,120,47,111,0,224,55,0,0,0,0,150,8,58,169,113,47,113,0,232,55,0,0,0,0,150,8,91,172,128,47,114,0,241,55,0,0,0,0,150,8,6,171,128,47,116,0,250,55,0,0,0,0,150,8,40,242,128,47,118,0,3,56,0,0,0,0,150,8,170,167,128,47,120,0,12,56,0,0,0,0,150,8,107,218,128,47,122,0,21,56,0,0,0,0,150,8,181,229,113,47,124,0,34,56,0,0,0,0,150,8,158,229,113,47,125,0,48,56,0,0,0,0,145,0,228,114,128,47,126,0,16,57,0,0,0,0,145,0,233,220,128,47,128,0,4,58,0,0,0,0,145,0,43,242,128,47,130,0,72,59,0,0,0,0,145,0,154,182,189,47,132,0,228,59,0,0,0,0,145,0,222,181,128,47,134,0,228,60,0,0,0,0,145,0,105,188,197,47,136,0,64,61,0,0,0,0,145,0,62,135,207,47,140,0,164,61,0,0,0,0,145,0,192,159,217,47,144,0,40,62,0,0,0,0,145,24,185,195,20,47,148,0,89,62,0,0,0,0,134,24,163,195,139,1,148,0,99,62,0,0,0,0,134,24,163,195,6,0,150,0,118,62,0,0,0,0,134,24,163,195,227,47,150,0,130,62,0,0,0,0,134,24,163,195,252,47,153,0,158,62,0,0,0,0,132,8,251,135,35,48,157,0,168,62,0,0,0,0,230,1,139,138,47,48,157,0,236,62,0,0,0,0,230,1,237,141,55,48,158,0,46,63,0,0,0,0,145,24,185,195,20,47,159,0,69,63,0,0,0,0,134,24,163,195,64,48,159,0,80,63,0,0,0,0,134,24,163,195,182,1,160,0,92,63,0,0,0,0,134,24,163,195,207,1,163,0,111,63,0,0,0,0,132,24,163,195,77,48,167,0,122,63,0,0,0,0,132,8,251,135,1,2,170,0,132,63,0,0,0,0,230,1,139,138,107,48,170,0,204,63,0,0,0,0,230,1,237,141,115,48,171,0,19,64,0,0,0,0,230,9,174,207,124,48,172,0,69,64,0,0,0,0,230,9,186,207,130,48,172,0,120,64,0,0,0,0,132,8,65,184,137,48,173,0,160,64,0,0,0,0,230,9,205,132,143,48,173,0,237,64,0,0,0,0,230,9,226,132,143,48,174,0,24,65,0,0,0,0,129,8,13,133,143,48,175,0,80,65,0,0,0,0,129,8,42,133,143,48,176,0,136,65,0,0,0,0,230,9,156,132,154,48,177,0,192,65,0,0,0,0,230,9,172,132,154,48,178,0,245,65,0,0,0,0,134,8,255,146,19,3,179,0,253,65,0,0,0,0,134,8,14,147,21,0,179,0,6,66,0,0,0,0,134,8,72,116,19,3,180,0,14,66,0,0,0,0,134,8,88,116,21,0,180,0,23,66,0,0,0,0,132,8,137,193,165,48,181,0,40,66,0,0,0,0,134,24,163,195,6,0,181,0,59,66,0,0,0,0,134,24,163,195,77,48,181,0,124,66,0,0,0,0,198,1,139,138,177,48,184,0,68,68,0,0,0,0,198,1,237,141,186,48,185,0,252,69,0,0,0,0,132,0,141,132,196,48,186,0,84,70,0,0,0,0,132,0,191,132,207,48,187,0,106,70,0,0,0,0,132,0,250,132,214,48,188,0,128,70,0,0,0,0,230,1,139,138,221,48,189,0,180,70,0,0,0,0,230,1,237,141,234,48,193,0,231,70,0,0,0,0,145,24,185,195,20,47,197,0,19,71,0,0,0,0,129,0,123,5,248,48,197,0,19,71,0,0,0,0,129,0,158,5,248,48,199,0,28,71,0,0,0,0,134,24,163,195,6,0,201,0,47,71,0,0,0,0,134,24,163,195,6,0,201,0,66,71,0,0,0,0,134,8,38,189,84,3,201,0,74,71,0,0,0,0,134,8,51,189,51,3,201,0,84,71,0,0,0,0,230,1,41,147,0,49,202,0,149,71,0,0,0,0,230,1,41,147,6,49,203,0,195,71,0,0,0,0,134,24,163,195,6,0,204,0,203,71,0,0,0,0,230,9,6,220,14,49,204,0,211,71,0,0,0,0,230,9,17,220,19,49,204,0,220,71,0,0,0,0,230,9,174,207,25,49,205,0,17,72,0,0,0,0,230,9,186,207,31,49,205,0,26,72,0,0,0,0,230,9,37,187,38,49,206,0,34,72,0,0,0,0,230,9,49,187,44,49,206,0,83,32,0,0,0,0,134,24,163,195,6,0,207,0,43,72,0,0,0,0,134,24,163,195,44,49,207,0,60,72,0,0,0,0,230,1,170,138,51,49,208,0,125,72,0,0,0,0,132,24,163,195,58,49,209,0,149,72,0,0,0,0,132,24,163,195,64,49,211,0,192,72,0,0,0,0,198,0,86,237,72,49,214,0,1,73,0,0,0,0,198,8,148,238,145,12,216,0,12,73,0,0,0,0,198,0,52,145,80,49,216,0,151,73,0,0,0,0,198,0,112,32,80,49,216,0,159,73,0,0,0,0,198,8,104,116,19,3,216,0,164,73,0,0,0,0,198,0,238,179,86,49,216,0,159,73,0,0,0,0,198,8,147,116,19,3,220,0,159,73,0,0,0,0,198,8,124,116,19,3,220,0,68,74,0,0,0,0,198,0,28,235,80,49,220,0,0,0,0,0,0,0,196,5,28,136,96,49,220,0,76,74,0,0,0,0,133,24,163,195,106,49,223,0,105,74,0,0,0,0,198,9,187,135,80,49,224,0,0,0,0,0,0,0,198,5,29,237,113,49,224,0,0,0,0,0,0,0,198,13,38,239,123,49,226,0,0,0,0,0,0,0,198,5,180,193,129,49,226,0,113,74,0,0,0,0,134,8,138,155,26,1,227,0,126,74,0,0,0,0,134,8,20,224,26,1,227,0,139,74,0,0,0,0,134,24,163,195,137,49,227,0,168,74,0,0,0,0,131,24,163,195,143,49,228,0,197,74,0,0,0,0,134,8,138,155,26,1,229,0,210,74,0,0,0,0,134,8,20,224,26,1,229,0,223,74,0,0,0,0,134,0,29,237,113,49,229,0,240,74,0,0,0,0,134,8,38,239,123,49,231,0,27,75,0,0,0,0,134,8,147,116,19,3,231,0,48,75,0,0,0,0,134,0,238,179,150,49,231,0,100,75,0,0,0,0,134,8,104,116,19,3,235,0,120,75,0,0,0,0,134,0,52,145,159,49,235,0,168,75,0,0,0,0,134,0,112,32,159,49,235,0,216,75,0,0,0,0,198,0,68,154,218,0,235,0,251,75,0,0,0,0,134,24,163,195,58,49,235,0,31,76,0,0,0,0,134,8,138,155,26,1,237,0,39,76,0,0,0,0,134,8,20,224,26,1,237,0,48,76,0,0,0,0,198,0,129,204,72,10,237,0,108,76,0,0,0,0,198,0,246,136,26,1,238,0,129,76,0,0,0,0,198,0,68,154,218,0,238,0,163,76,0,0,0,0,134,24,163,195,6,0,238,0,171,76,0,0,0,0,134,24,163,195,16,0,238,0,180,76,0,0,0,0,134,24,163,195,164,49,239,0,189,76,0,0,0,0,134,24,163,195,139,1,240,0,0,0,0,0,0,0,198,5,139,138,47,48,242,0,0,0,0,0,0,0,198,13,205,132,143,48,243,0,0,0,0,0,0,0,198,13,226,132,143,48,244,0,0,0,0,0,0,0,198,13,156,132,154,48,245,0,0,0,0,0,0,0,198,13,172,132,154,48,246,0,0,0,0,0,0,0,198,13,174,207,124,48,247,0,0,0,0,0,0,0,198,13,186,207,130,48,247,0,0,0,0,0,0,0,198,5,139,138,221,48,248,0,0,0,0,0,0,0,198,5,139,138,177,48,252,0,0,0,0,0,0,0,198,5,237,141,55,48,253,0,0,0,0,0,0,0,198,5,237,141,234,48,254,0,0,0,0,0,0,0,198,5,237,141,186,48,2,1,0,0,0,0,0,0,198,5,139,138,107,48,3,1,0,0,0,0,0,0,198,5,237,141,115,48,4,1,0,0,0,0,0,0,198,13,205,132,143,48,5,1,0,0,0,0,0,0,198,13,226,132,143,48,6,1,0,0,0,0,0,0,198,13,156,132,154,48,7,1,0,0,0,0,0,0,198,13,172,132,154,48,8,1,0,0,0,0,0,0,198,13,174,207,124,48,9,1,0,0,0,0,0,0,198,13,186,207,130,48,9,1,0,0,0,0,0,0,198,5,139,138,221,48,10,1,0,0,0,0,0,0,198,5,139,138,177,48,14,1,0,0,0,0,0,0,198,5,237,141,234,48,15,1,0,0,0,0,0,0,198,5,237,141,186,48,19,1,0,0,0,0,0,0,198,13,6,220,14,49,20,1,0,0,0,0,0,0,198,13,17,220,19,49,20,1,0,0,0,0,0,0,198,13,174,207,25,49,21,1,0,0,0,0,0,0,198,13,186,207,31,49,21,1,0,0,0,0,0,0,198,13,37,187,38,49,22,1,0,0,0,0,0,0,198,13,49,187,44,49,22,1,0,0,0,0,0,0,198,5,170,138,51,49,23,1,0,0,0,0,0,0,198,5,41,147,170,49,24,1,0,0,0,0,0,0,198,5,41,147,177,49,25,1,0,0,0,0,0,0,198,5,41,147,186,49,26,1,0,0,0,0,0,0,198,5,41,147,193,49,27,1,0,0,0,0,0,0,198,5,41,147,0,49,28,1,0,0,0,0,0,0,198,5,41,147,6,49,29,1,0,0,0,0,0,0,198,13,6,220,14,49,30,1,0,0,0,0,0,0,198,13,17,220,19,49,30,1,0,0,0,0,0,0,198,13,174,207,25,49,31,1,0,0,0,0,0,0,198,13,186,207,31,49,31,1,0,0,0,0,0,0,198,13,37,187,38,49,32,1,0,0,0,0,0,0,198,13,49,187,44,49,32,1,0,0,0,0,0,0,198,5,170,138,51,49,33,1,199,76,0,0,0,0,134,24,163,195,106,49,34,1,228,76,0,0,0,0,198,0,86,237,72,49,35,1,40,77,0,0,0,0,198,8,148,238,145,12,37,1,141,77,0,0,0,0,198,8,147,116,19,3,37,1,154,77,0,0,0,0,198,0,238,179,86,49,37,1,177,77,0,0,0,0,198,8,104,116,19,3,41,1,190,77,0,0,0,0,198,0,28,235,80,49,41,1,198,77,0,0,0,0,198,0,52,145,80,49,41,1,216,77,0,0,0,0,198,0,112,32,80,49,41,1,234,77,0,0,0,0,132,24,163,195,58,49,41,1,0,0,0,0,0,0,198,5,86,237,72,49,43,1,0,0,0,0,0,0,198,13,148,238,145,12,45,1,0,78,0,0,0,0,198,9,138,155,26,1,45,1,8,78,0,0,0,0,196,9,148,155,1,0,45,1,17,78,0,0,0,0,198,9,20,224,26,1,46,1,25,78,0,0,0,0,196,9,31,224,1,0,46,1,34,78,0,0,0,0,198,9,147,116,19,3,47,1,37,78,0,0,0,0,198,1,238,179,86,49,47,1,34,78,0,0,0,0,198,9,104,116,19,3,51,1,49,78,0,0,0,0,198,1,52,145,80,49,51,1,61,78,0,0,0,0,198,1,112,32,80,49,51,1,34,78,0,0,0,0,198,9,124,116,19,3,51,1,73,78,0,0,0,0,198,1,28,235,80,49,51,1,88,78,0,0,0,0,198,0,68,154,218,0,51,1,2,79,0,0,0,0,230,1,146,138,202,49,51,1,18,79,0,0,0,0,230,1,146,138,210,49,52,1,34,79,0,0,0,0,134,0,222,146,202,49,54,1,60,79,0,0,0,0,134,8,195,216,226,49,55,1,144,81,0,0,0,0,230,1,234,221,6,0,56,1,228,81,0,0,0,0,129,0,182,160,202,49,56,1,83,32,0,0,0,0,134,24,163,195,6,0,57,1,136,82,0,0,0,0,145,24,185,195,20,47,57,1,27,84,0,0,0,0,150,8,37,211,238,49,57,1,39,84,0,0,0,0,230,1,177,138,248,49,57,1,56,84,0,0,0,0,230,1,177,138,3,50,61,1,83,32,0,0,0,0,134,24,163,195,6,0,66,1,132,84,0,0,0,0,134,24,163,195,22,50,66,1,233,84,0,0,0,0,129,24,163,195,64,49,74,1,32,85,0,0,0,0,198,0,86,237,72,49,77,1,144,85,0,0,0,0,198,8,148,238,145,12,79,1,159,73,0,0,0,0,198,8,147,116,19,3,79,1,58,86,0,0,0,0,198,0,238,179,86,49,79,1,104,86,0,0,0,0,134,0,242,162,35,50,83,1,7,87,0,0,0,0,134,8,30,156,26,1,83,1,17,87,0,0,0,0,134,8,83,224,26,1,83,1,28,87,0,0,0,0,129,0,248,160,58,49,83,1,145,87,0,0,0,0,196,0,28,136,96,49,85,1,0,0,0,0,0,0,198,5,146,138,202,49,88,1,0,0,0,0,0,0,198,5,146,138,210,49,89,1,0,0,0,0,0,0,198,5,234,221,6,0,91,1,155,87,0,0,0,0,134,24,163,195,6,0,91,1,163,87,0,0,0,0,134,24,163,195,16,0,91,1,172,87,0,0,0,0,134,24,163,195,164,49,92,1,89,62,0,0,0,0,134,24,163,195,139,1,93,1,187,87,0,0,0,0,134,8,83,236,218,0,95,1,195,87,0,0,0,0,129,8,92,236,16,0,95,1,204,87,0,0,0,0,134,8,66,202,145,12,96,1,212,87,0,0,0,0,129,8,79,202,78,47,96,1,221,87,0,0,0,0,134,8,100,217,40,50,97,1,229,87,0,0,0,0,129,8,117,217,47,50,97,1,238,87,0,0,0,0,134,8,41,220,14,49,98,1,246,87,0,0,0,0,129,8,59,220,19,49,98,1,255,87,0,0,0,0,134,8,59,113,55,50,99,1,7,88,0,0,0,0,129,8,78,113,67,50,99,1,16,88,0,0,0,0,134,8,179,179,139,4,100,1,24,88,0,0,0,0,129,8,193,179,147,34,100,1,33,88,0,0,0,0,134,8,53,215,26,1,101,1,41,88,0,0,0,0,129,8,65,215,1,0,101,1,52,88,0,0,0,0,134,24,163,195,80,50,102,1,100,88,0,0,0,0,134,24,163,195,93,50,106,1,139,88,0,0,0,0,134,24,163,195,107,50,111,1,168,88,0,0,0,0,134,24,163,195,121,50,116,1,0,89,0,0,0,0,134,0,132,113,136,50,122,1,36,89,0,0,0,0,134,0,23,113,67,50,124,1,148,89,0,0,0,0,134,0,134,217,47,50,125,1,232,89,0,0,0,0,198,0,68,154,218,0,126,1,83,32,0,0,0,0,134,24,163,195,6,0,126,1,21,90,0,0,0,0,134,24,163,195,144,50,126,1,67,90,0,0,0,0,198,9,39,109,150,50,128,1,75,90,0,0,0,0,198,9,210,110,150,50,128,1,84,90,0,0,0,0,198,0,129,204,72,10,128,1,140,90,0,0,0,0,198,0,246,136,26,1,129,1,244,90,0,0,0,0,198,0,68,154,218,0,129,1,88,91,0,0,0,0,150,0,210,208,154,50,129,1,236,91,0,0,0,0,150,0,1,135,162,50,130,1,12,92,0,0,0,0,145,0,182,111,172,50,132,1,0,0,0,0,3,0,134,24,163,195,169,1,135,1,0,0,0,0,3,0,198,1,195,140,214,48,137,1,0,0,0,0,3,0,198,1,190,140,185,50,138,1,0,0,0,0,3,0,198,1,180,140,198,50,141,1,74,92,0,0,0,0,132,24,163,195,58,49,142,1,84,92,0,0,0,0,134,24,163,195,64,49,144,1,96,92,0,0,0,0,134,24,163,195,205,50,147,1,108,92,0,0,0,0,134,24,163,195,214,50,151,1,127,92,0,0,0,0,196,0,28,136,96,49,155,1,144,92,0,0,0,0,145,0,115,220,225,50,158,1,212,92,0,0,0,0,132,0,238,134,235,50,161,1,208,93,0,0,0,0,129,0,4,33,78,47,163,1,116,94,0,0,0,0,129,0,255,25,78,47,164,1,220,94,0,0,0,0,129,0,23,26,78,47,165,1,68,95,0,0,0,0,129,0,190,13,78,47,166,1,176,95,0,0,0,0,129,0,255,13,78,47,167,1,28,96,0,0,0,0,129,0,140,13,78,47,168,1,168,96,0,0,0,0,129,0,115,13,78,47,169,1,52,97,0,0,0,0,129,0,165,13,78,47,170,1,188,97,0,0,0,0,129,0,187,110,78,47,171,1,12,98,0,0,0,0,129,0,202,108,78,47,172,1,92,98,0,0,0,0,129,0,156,36,78,47,173,1,93,32,0,0,0,0,134,24,163,195,6,0,174,1,93,32,0,0,0,0,134,24,163,195,6,0,174,1,152,98,0,0,0,0,150,0,8,154,244,50,174,1,194,98,0,0,0,0,150,0,207,242,254,50,179,1,244,98,0,0,0,0,150,0,210,240,10,51,181,1,24,99,0,0,0,0,150,0,12,166,21,51,182,1,168,99,0,0,0,0,150,0,56,163,33,51,184,1,204,99,0,0,0,0,150,0,56,163,43,51,186,1,240,99,0,0,0,0,150,0,190,154,238,7,190,1,52,100,0,0,0,0,150,0,210,233,82,8,191,1,84,100,0,0,0,0,150,0,95,150,55,51,192,1,0,0,0,0,0,0,198,5,177,138,248,49,195,1,0,0,0,0,0,0,198,5,177,138,3,50,199,1,155,87,0,0,0,0,134,24,163,195,6,0,204,1,163,87,0,0,0,0,134,24,163,195,16,0,204,1,89,62,0,0,0,0,134,24,163,195,139,1,205,1,0,0,0,0,0,0,198,5,93,185,73,51,207,1,0,0,0,0,0,0,198,5,93,185,102,3,210,1,114,100,0,0,0,0,131,24,163,195,84,51,214,1,143,100,0,0,0,0,134,8,136,204,145,12,217,1,151,100,0,0,0,0,129,8,147,204,78,47,217,1,160,100,0,0,0,0,134,8,138,155,26,1,218,1,168,100,0,0,0,0,129,8,148,155,1,0,218,1,177,100,0,0,0,0,134,8,20,224,26,1,219,1,185,100,0,0,0,0,129,8,31,224,1,0,219,1,194,100,0,0,0,0,134,8,80,133,92,51,220,1,202,100,0,0,0,0,134,8,95,133,98,51,220,1,211,100,0,0,0,0,134,8,110,133,92,51,221,1,219,100,0,0,0,0,134,8,125,133,98,51,221,1,228,100,0,0,0,0,134,24,163,195,6,0,222,1,2,101,0,0,0,0,230,1,93,185,105,51,222,1,16,101,0,0,0,0,230,1,93,185,117,51,225,1,141,103,0,0,0,0,134,8,80,133,132,51,229,1,149,103,0,0,0,0,134,8,95,133,138,51,229,1,158,103,0,0,0,0,134,8,110,133,132,51,230,1,166,103,0,0,0,0,134,8,125,133,138,51,230,1,175,103,0,0,0,0,134,24,163,195,6,0,231,1,205,103,0,0,0,0,230,1,93,185,145,51,231,1,220,103,0,0,0,0,198,1,93,185,156,51,234,1,76,106,0,0,0,0,134,8,80,133,170,51,238,1,84,106,0,0,0,0,134,8,95,133,176,51,238,1,93,106,0,0,0,0,134,8,110,133,170,51,239,1,101,106,0,0,0,0,134,8,125,133,176,51,239,1,110,106,0,0,0,0,134,8,163,142,218,0,240,1,118,106,0,0,0,0,134,8,176,142,16,0,240,1,127,106,0,0,0,0,134,8,65,152,26,1,241,1,135,106,0,0,0,0,134,8,78,152,1,0,241,1,144,106,0,0,0,0,134,24,163,195,6,0,242,1,174,106,0,0,0,0,230,1,93,185,183,51,242,1,188,106,0,0,0,0,230,1,93,185,195,51,245,1,232,106,0,0,0,0,129,0,113,146,210,51,249,1,252,107,0,0,0,0,129,0,77,220,226,51,254,1,104,108,0,0,0,0,145,0,41,163,233,51,0,2,76,109,0,0,0,0,145,0,207,141,245,51,4,2,162,109,0,0,0,0,134,8,11,172,4,52,10,2,197,109,0,0,0,0,134,8,31,172,10,52,10,2,243,109,0,0,0,0,134,8,107,221,218,0,11,2,22,110,0,0,0,0,134,8,124,221,16,0,11,2,68,110,0,0,0,0,134,8,91,95,19,3,12,2,105,110,0,0,0,0,134,8,106,95,21,0,12,2,128,110,0,0,0,0,134,8,139,168,17,52,13,2,192,110,0,0,0,0,134,8,153,168,26,52,13,2,13,111,0,0,0,0,134,24,163,195,6,0,14,2,21,111,0,0,0,0,132,0,79,186,36,52,14,2,29,111,0,0,0,0,230,1,146,138,202,49,14,2,40,111,0,0,0,0,230,1,146,138,210,49,15,2,91,32,0,0,0,0,230,1,234,221,6,0,17,2,56,112,0,0,0,0,145,0,3,215,42,52,17,2,148,113,0,0,0,0,145,0,228,151,51,52,18,2,12,114,0,0,0,0,134,24,163,195,6,0,21,2,31,114,0,0,0,0,145,24,185,195,20,47,21,2,44,114,0,0,0,0,230,1,177,138,248,49,21,2,60,114,0,0,0,0,230,1,177,138,3,50,25,2,136,115,0,0,0,0,145,0,152,228,62,52,30,2,83,32,0,0,0,0,134,24,163,195,6,0,34,2,84,116,0,0,0,0,147,0,48,191,74,52,34,2,123,116,0,0,0,0,129,24,163,195,143,49,35,2,140,116,0,0,0,0,131,0,212,169,83,52,36,2,104,117,0,0,0,0,131,0,82,168,89,52,36,2,92,118,0,0,0,0,129,0,114,225,95,52,36,2,144,118,0,0,0,0,131,0,53,198,145,12,39,2,168,119,0,0,0,0,131,0,111,159,6,0,39,2,225,119,0,0,0,0,131,0,153,194,21,0,39,2,248,119,0,0,0,0,131,0,163,194,6,0,40,2,105,120,0,0,0,0,129,24,163,195,102,52,40,2,128,120,0,0,0,0,147,0,243,203,109,52,42,2,52,122,0,0,0,0,131,8,221,197,26,1,45,2,60,122,0,0,0,0,131,8,175,197,145,12,45,2,68,122,0,0,0,0,147,0,93,239,124,52,45,2,112,122,0,0,0,0,145,24,185,195,20,47,48,2,32,123,0,0,0,0,147,0,146,138,133,52,48,2,92,125,0,0,0,0,145,0,200,230,155,52,52,2,20,126,0,0,0,0,145,0,181,230,155,52,55,2,196,126,0,0,0,0,145,0,144,230,165,52,58,2,76,127,0,0,0,0,145,0,87,180,192,52,64,2,104,127,0,0,0,0,145,0,118,230,197,52,65,2,64,128,0,0,0,0,145,0,97,230,155,52,69,2,24,129,0,0,0,0,145,0,99,149,208,52,72,2,144,129,0,0,0,0,145,24,185,195,20,47,73,2,161,129,0,0,0,0,134,24,163,195,6,0,73,2,185,129,0,0,0,0,134,0,146,138,215,52,73,2,200,129,0,0,0,0,134,0,146,138,232,52,75,2,48,130,0,0,0,0,129,0,146,138,249,52,77,2,16,131,0,0,0,0,129,0,162,213,10,53,79,2,113,131,0,0,0,0,129,24,163,195,17,53,81,2,142,131,0,0,0,0,134,8,172,214,26,1,84,2,150,131,0,0,0,0,134,8,83,142,218,0,84,2,158,131,0,0,0,0,134,0,217,159,26,1,84,2,150,131,0,0,0,0,198,0,68,154,218,0,84,2,166,131,0,0,0,0,150,0,145,215,24,53,84,2,196,131,0,0,0,0,145,24,185,195,20,47,85,2,64,132,0,0,0,0,129,24,163,195,1,0,85,2,100,132,0,0,0,0,147,0,167,153,161,6,86,2,224,132,0,0,0,0,147,0,4,170,31,53,88,2,16,133,0,0,0,0,145,0,234,169,31,53,90,2,150,133,0,0,0,0,131,8,59,162,4,52,92,2,158,133,0,0,0,0,131,8,89,159,39,53,92,2,166,133,0,0,0,0,198,0,246,136,26,1,92,2,188,133,0,0,0,0,198,0,129,204,72,10,92,2,248,133,0,0,0,0,145,24,185,195,20,47,93,2,242,136,0,0,0,0,134,8,83,142,43,53,93,2,250,136,0,0,0,0,129,8,92,142,49,53,93,2,3,137,0,0,0,0,129,24,163,195,56,53,94,2,32,137,0,0,0,0,150,0,145,215,66,53,97,2,176,137,0,0,0,0,134,0,177,215,73,53,98,2,243,137,0,0,0,0,134,8,172,214,26,1,99,2,251,137,0,0,0,0,129,8,181,214,1,0,99,2,4,138,0,0,0,0,198,0,68,154,218,0,100,2,40,138,0,0,0,0,145,24,185,195,20,47,100,2,20,139,0,0,0,0,134,24,163,195,21,0,100,2,35,139,0,0,0,0,134,8,212,115,19,3,101,2,44,139,0,0,0,0,134,0,221,171,47,50,101,2,92,139,0,0,0,0,129,24,163,195,80,53,102,2,198,139,0,0,0,0,134,8,61,182,26,1,105,2,206,139,0,0,0,0,134,8,123,211,35,50,105,2,214,139,0,0,0,0,134,8,98,198,26,1,105,2,222,139,0,0,0,0,134,8,167,168,26,1,105,2,235,139,0,0,0,0,134,0,196,162,91,53,105,2,252,139,0,0,0,0,150,0,242,167,100,53,106,2,56,140,0,0,0,0,150,0,110,182,100,53,107,2,84,140,0,0,0,0,147,0,187,169,100,53,108,2,180,140,0,0,0,0,131,0,76,176,123,49,109,2,147,141,0,0,0,0,198,0,68,154,218,0,109,2,160,141,0,0,0,0,145,0,231,206,107,53,109,2,187,169,0,0,0,0,145,24,185,195,20,47,109,2,222,169,0,0,0,0,131,24,163,195,114,53,109,2,240,169,0,0,0,0,131,0,124,204,121,53,112,2,68,170,0,0,0,0,131,0,148,146,128,53,115,2,132,170,0,0,0,0,131,24,163,195,137,53,118,2,228,170,0,0,0,0,131,0,121,132,152,53,125,2,88,172,0,0,0,0,145,0,144,131,158,53,125,2,144,172,0,0,0,0,129,0,75,214,170,53,127,2,204,172,0,0,0,0,129,0,134,159,176,53,128,2,56,174,0,0,0,0,129,0,170,192,189,53,132,2,72,175,0,0,0,0,134,24,163,195,143,49,135,2,87,175,0,0,0,0,197,9,123,139,123,49,136,2,95,175,0,0,0,0,197,9,187,157,199,53,136,2,103,175,0,0,0,0,198,1,71,221,205,53,136,2,112,175,0,0,0,0,198,1,71,221,211,53,136,2,196,175,0,0,0,0,197,1,118,178,225,53,137,2,36,177,0,0,0,0,145,0,234,163,234,53,138,2,204,177,0,0,0,0,145,0,235,116,253,53,143,2,220,177,0,0,0,0,145,0,211,167,10,54,146,2,70,178,0,0,0,0,197,1,173,151,26,54,151,2,96,178,0,0,0,0,129,0,35,240,39,54,154,2,220,178,0,0,0,0,129,0,154,219,49,54,156,2,180,179,0,0,0,0,129,0,115,177,49,54,160,2,164,180,0,0,0,0,132,0,138,167,57,54,164,2,39,181,0,0,0,0,131,24,163,195,114,53,168,2,65,181,0,0,0,0,131,24,163,195,67,54,171,2,90,181,0,0,0,0,134,8,129,151,150,50,175,2,98,181,0,0,0,0,131,8,38,232,26,1,175,2,108,181,0,0,0,0,131,0,124,204,121,53,175,2,192,181,0,0,0,0,131,0,148,146,75,54,178,2,25,182,0,0,0,0,134,24,163,195,143,49,181,2,35,182,0,0,0,0,134,24,163,195,84,54,182,2,80,182,0,0,0,0,197,9,123,139,123,49,184,2,88,182,0,0,0,0,197,9,87,211,94,54,184,2,96,182,0,0,0,0,195,3,121,132,105,54,184,2,20,184,0,0,0,0,145,0,144,131,158,53,185,2,80,184,0,0,0,0,149,0,75,214,119,54,187,2,220,184,0,0,0,0,148,0,244,159,119,54,188,2,114,185,0,0,0,0,129,8,165,232,35,50,189,2,136,185,0,0,0,0,132,0,14,218,125,54,189,2,167,185,0,0,0,0,132,0,210,19,125,54,190,2,196,185,0,0,0,0,129,0,225,159,131,54,191,2,52,187,0,0,0,0,129,0,134,159,176,53,193,2,252,188,0,0,0,0,129,0,28,161,176,53,197,2,194,190,0,0,0,0,132,0,170,192,137,54,201,2,208,190,0,0,0,0,132,0,170,192,146,54,205,2,40,192,0,0,0,0,129,0,162,179,26,1,208,2,204,192,0,0,0,0,129,0,58,211,19,3,208,2,152,193,0,0,0,0,129,0,228,208,154,54,208,2,116,195,0,0,0,0,134,24,163,195,161,54,208,2,151,195,0,0,0,0,134,8,162,222,169,54,209,2,159,195,0,0,0,0,134,8,219,222,169,54,209,2,167,195,0,0,0,0,134,8,211,223,169,54,209,2,175,195,0,0,0,0,134,24,163,195,175,54,209,2,197,195,0,0,0,0,134,8,44,201,145,12,211,2,205,195,0,0,0,0,134,8,214,201,145,12,211,2,216,195,0,0,0,0,134,24,163,195,58,49,211,2,31,196,0,0,0,0,134,8,20,224,26,1,213,2,39,196,0,0,0,0,134,8,138,155,26,1,213,2,47,196,0,0,0,0,134,8,128,163,183,54,213,2,59,196,0,0,0,0,134,8,137,163,189,54,215,2,73,196,0,0,0,0,134,8,83,240,196,54,218,2,81,196,0,0,0,0,134,0,150,222,202,54,218,2,94,196,0,0,0,0,134,0,150,222,209,54,221,2,116,196,0,0,0,0,134,0,81,180,140,12,224,2,176,196,0,0,0,0,198,0,68,154,218,0,225,2,70,197,0,0,0,0,145,0,180,243,216,54,225,2,99,197,0,0,0,0,150,0,177,138,223,54,226,2,112,197,0,0,0,0,150,0,177,138,233,54,228,2,144,199,0,0,0,0,145,0,108,168,251,54,231,2,193,199,0,0,0,0,145,0,249,114,13,55,235,2,216,199,0,0,0,0,147,0,178,136,82,8,239,2,237,199,0,0,0,0,150,0,71,138,29,55,240,2,248,199,0,0,0,0,145,0,71,138,36,55,241,2,120,200,0,0,0,0,145,0,89,157,210,5,243,2,248,200,0,0,0,0,145,0,188,175,44,55,244,2,56,201,0,0,0,0,145,0,125,168,60,55,248,2,112,201,0,0,0,0,145,0,122,225,70,55,250,2,160,201,0,0,0,0,147,0,19,215,81,55,253,2,120,202,0,0,0,0,147,0,184,78,89,55,255,2,16,203,0,0,0,0,147,0,22,201,101,55,5,3,236,204,0,0,0,0,147,0,6,201,113,55,9,3,82,205,0,0,0,0,147,0,222,177,121,55,11,3,100,205,0,0,0,0,147,0,20,178,131,55,13,3,176,205,0,0,0,0,147,0,132,201,145,55,17,3,36,206,0,0,0,0,147,0,89,201,157,55,21,3,188,206,0,0,0,0,147,0,108,201,157,55,23,3,48,207,0,0,0,0,147,0,35,202,165,55,25,3,136,207,0,0,0,0,147,0,158,201,157,55,28,3,108,208,0,0,0,0,145,0,81,95,174,55,30,3,140,208,0,0,0,0,145,24,185,195,20,47,32,3,175,208,0,0,0,0,150,0,48,11,216,54,32,3,192,208,0,0,0,0,150,0,112,19,216,54,33,3,68,209,0,0,0,0,150,0,104,24,216,54,34,3,140,210,0,0,0,0,145,0,10,161,184,55,35,3,196,210,0,0,0,0,145,0,118,159,192,55,38,3,252,210,0,0,0,0,150,0,160,30,216,54,42,3,132,211,0,0,0,0,150,0,42,225,202,55,43,3,44,212,0,0,0,0,145,0,152,160,209,55,46,3,211,212,0,0,0,0,150,0,54,239,217,55,48,3,220,212,0,0,0,0,150,0,201,238,224,55,49,3,7,213,0,0,0,0,150,0,93,208,241,55,54,3,36,213,0,0,0,0,150,0,250,177,251,55,56,3,188,213,0,0,0,0,150,0,96,178,241,55,59,3,56,214,0,0,0,0,150,0,190,214,6,56,61,3,56,215,0,0,0,0,150,0,78,221,82,8,64,3,88,215,0,0,0,0,150,0,144,136,161,6,65,3,168,215,0,0,0,0,150,0,97,215,17,56,67,3,48,216,0,0,0,0,150,0,114,215,28,56,70,3,137,216,0,0,0,0,145,0,215,243,38,56,72,3,144,216,0,0,0,0,145,0,112,208,217,55,73,3,230,216,0,0,0,0,145,0,206,188,217,55,74,3,16,217,0,0,0,0,145,0,13,176,43,56,75,3,76,217,0,0,0,0,145,0,238,175,43,56,78,3,136,217,0,0,0,0,145,0,25,177,43,56,81,3,196,217,0,0,0,0,145,0,46,176,43,56,84,3,0,218,0,0,0,0,145,0,183,213,217,55,87,3,140,218,0,0,0,0,145,0,147,208,241,55,88,3,16,219,0,0,0,0,145,24,185,195,20,47,90,3,107,224,0,0,0,0,134,24,163,195,6,0,90,3,122,224,0,0,0,0,134,8,151,137,52,56,90,3,130,224,0,0,0,0,134,8,160,137,58,56,90,3,139,224,0,0,0,0,134,8,225,161,4,52,91,3,147,224,0,0,0,0,134,8,237,161,10,52,91,3,156,224,0,0,0,0,134,8,58,168,89,52,92,3,164,224,0,0,0,0,134,8,70,168,65,56,92,3,173,224,0,0,0,0,134,8,137,175,26,1,93,3,181,224,0,0,0,0,134,8,153,175,1,0,93,3,190,224,0,0,0,0,134,8,148,238,72,56,94,3,198,224,0,0,0,0,134,8,159,238,78,56,94,3,208,224,0,0,0,0,198,0,68,154,218,0,95,3,180,225,0,0,0,0,150,0,169,175,38,56,95,3,196,225,0,0,0,0,145,24,185,195,20,47,96,3,204,225,0,0,0,0,134,8,157,220,19,3,96,3,239,225,0,0,0,0,134,8,169,220,21,0,96,3,3,226,0,0,0,0,134,8,138,170,85,56,97,3,38,226,0,0,0,0,134,8,153,170,91,56,97,3,58,226,0,0,0,0,134,8,67,206,98,56,98,3,95,226,0,0,0,0,134,8,82,206,104,56,98,3,112,226,0,0,0,0,134,8,11,172,111,56,99,3,204,226,0,0,0,0,134,8,31,172,117,56,99,3,224,226,0,0,0,0,134,8,194,178,124,56,100,3,60,227,0,0,0,0,134,8,210,178,130,56,100,3,243,109,0,0,0,0,134,8,107,221,218,0,101,3,22,110,0,0,0,0,134,8,124,221,16,0,101,3,68,110,0,0,0,0,134,8,91,95,19,3,102,3,105,110,0,0,0,0,134,8,106,95,21,0,102,3,13,111,0,0,0,0,134,24,163,195,6,0,103,3,80,227,0,0,0,0,150,0,43,164,137,56,103,3,88,227,0,0,0,0,150,0,108,241,143,56,104,3,196,227,0,0,0,0,150,0,88,134,154,56,105,3,252,227,0,0,0,0,145,24,185,195,20,47,106,3,133,228,0,0,0,0,230,1,146,138,202,49,106,3,144,228,0,0,0,0,230,1,146,138,210,49,107,3,175,228,0,0,0,0,230,1,252,141,159,56,109,3,185,228,0,0,0,0,230,1,252,141,168,56,110,3,196,228,0,0,0,0,145,0,146,138,185,56,112,3,172,229,0,0,0,0,145,0,143,156,203,56,115,3,201,229,0,0,0,0,145,0,64,156,203,56,117,3,236,229,0,0,0,0,145,0,233,155,213,56,119,3,76,230,0,0,0,0,145,0,196,155,213,56,120,3,91,32,0,0,0,0,230,1,234,221,6,0,121,3,83,32,0,0,0,0,134,24,163,195,6,0,121,3,172,230,0,0,0,0,134,8,48,238,26,1,121,3,180,230,0,0,0,0,134,8,65,238,1,0,121,3,189,230,0,0,0,0,134,8,188,114,218,0,122,3,197,230,0,0,0,0,134,8,199,114,16,0,122,3,206,230,0,0,0,0,134,8,76,112,35,50,123,3,214,230,0,0,0,0,134,8,93,112,125,54,123,3,223,230,0,0,0,0,134,8,7,231,19,3,124,3,231,230,0,0,0,0,134,8,25,231,21,0,124,3,83,32,0,0,0,0,134,24,163,195,6,0,125,3,240,230,0,0,0,0,230,1,177,138,3,50,125,3,92,233,0,0,0,0,230,1,177,138,248,49,130,3,108,233,0,0,0,0,145,0,84,187,221,56,134,3,24,234,0,0,0,0,145,0,66,241,236,56,141,3,136,234,0,0,0,0,145,0,144,240,246,56,143,3,83,32,0,0,0,0,134,24,163,195,6,0,144,3,242,234,0,0,0,0,134,8,74,233,26,1,144,3,250,234,0,0,0,0,129,8,90,233,1,0,144,3,3,235,0,0,0,0,134,8,59,162,26,1,145,3,11,235,0,0,0,0,129,8,84,162,1,0,145,3,20,235,0,0,0,0,134,8,2,189,26,1,146,3,28,235,0,0,0,0,129,8,20,189,1,0,146,3,37,235,0,0,0,0,134,8,21,193,26,1,147,3,45,235,0,0,0,0,129,8,39,193,1,0,147,3,54,235,0,0,0,0,134,8,39,234,26,1,148,3,62,235,0,0,0,0,129,8,52,234,1,0,148,3,71,235,0,0,0,0,134,24,163,195,255,56,149,3,120,235,0,0,0,0,134,0,113,150,1,0,153,3,168,235,0,0,0,0,134,0,104,150,35,50,154,3,60,236,0,0,0,0,131,0,38,135,7,57,154,3,90,236,0,0,0,0,134,24,163,195,6,0,155,3,109,236,0,0,0,0,134,8,219,222,12,57,155,3,117,236,0,0,0,0,129,8,231,222,214,48,155,3,126,236,0,0,0,0,134,8,211,223,12,57,156,3,134,236,0,0,0,0,129,8,224,223,214,48,156,3,143,236,0,0,0,0,134,8,162,222,12,57,157,3,151,236,0,0,0,0,129,8,177,222,214,48,157,3,160,236,0,0,0,0,134,8,108,223,12,57,158,3,168,236,0,0,0,0,129,8,124,223,214,48,158,3,177,236,0,0,0,0,134,8,148,109,26,1,159,3,185,236,0,0,0,0,129,8,157,109,1,0,159,3,194,236,0,0,0,0,134,8,38,110,26,1,160,3,202,236,0,0,0,0,129,8,47,110,1,0,160,3,211,236,0,0,0,0,134,8,40,111,26,1,161,3,219,236,0,0,0,0,129,8,49,111,1,0,161,3,228,236,0,0,0,0,134,8,164,111,26,1,162,3,236,236,0,0,0,0,129,8,173,111,1,0,162,3,245,236,0,0,0,0,150,0,113,146,18,57,163,3,30,237,0,0,0,0,150,0,113,146,39,57,168,3,67,237,0,0,0,0,129,24,163,195,48,57,169,3,118,237,0,0,0,0,147,0,174,140,67,57,174,3,168,237,0,0,0,0,134,0,26,219,79,57,176,3,128,238,0,0,0,0,129,0,207,202,6,0,179,3,165,239,0,0,0,0,131,0,157,223,214,48,179,3,180,239,0,0,0,0,134,8,9,110,26,1,180,3,188,239,0,0,0,0,129,8,20,110,1,0,180,3,197,239,0,0,0,0,134,8,61,109,26,1,181,3,205,239,0,0,0,0,129,8,70,109,1,0,181,3,214,239,0,0,0,0,134,8,188,221,26,1,182,3,222,239,0,0,0,0,129,8,199,221,1,0,182,3,231,239,0,0,0,0,134,8,120,149,26,1,183,3,239,239,0,0,0,0,129,8,130,149,1,0,183,3,248,239,0,0,0,0,134,8,229,182,26,1,184,3,0,240,0,0,0,0,134,8,243,182,1,0,184,3,9,240,0,0,0,0,134,24,163,195,255,56,185,3,57,240,0,0,0,0,134,8,138,155,26,1,189,3,72,240,0,0,0,0,134,8,18,183,19,3,189,3,86,240,0,0,0,0,134,0,1,183,88,57,189,3,111,240,0,0,0,0,134,0,87,166,6,0,190,3,139,240,0,0,0,0,198,0,68,154,218,0,190,3,173,240,0,0,0,0,145,24,185,195,20,47,190,3,184,240,0,0,0,0,145,24,185,195,20,47,190,3,56,241,0,0,0,0,147,0,146,138,93,57,190,3,120,242,0,0,0,0,145,0,34,153,67,7,192,3,168,242,0,0,0,0,145,0,244,158,102,57,193,3,188,243,0,0,0,0,145,0,236,170,112,57,196,3,160,244,0,0,0,0,145,0,215,170,121,57,199,3,88,247,0,0,0,0,145,0,186,170,132,57,203,3,44,249,0,0,0,0,145,0,168,170,112,57,208,3,208,249,0,0,0,0,145,0,244,0,145,57,211,3,42,250,0,0,0,0,134,8,234,112,152,57,213,3,50,250,0,0,0,0,129,8,247,112,158,57,213,3,59,250,0,0,0,0,134,8,183,205,165,57,214,3,67,250,0,0,0,0,134,8,210,205,172,57,214,3,76,250,0,0,0,0,134,8,165,239,180,57,215,3,84,250,0,0,0,0,131,8,173,239,186,57,215,3,93,250,0,0,0,0,134,8,74,233,26,1,216,3,101,250,0,0,0,0,129,8,90,233,1,0,216,3,110,250,0,0,0,0,134,8,39,234,26,1,217,3,123,250,0,0,0,0,134,8,59,162,26,1,217,3,136,250,0,0,0,0,134,24,163,195,193,57,217,3,192,250,0,0,0,0,134,0,237,205,165,57,219,3,13,251,0,0,0,0,129,0,48,210,203,57,219,3,36,251,0,0,0,0,129,0,94,210,26,1,220,3,133,251,0,0,0,0,129,0,149,237,26,1,220,3,156,251,0,0,0,0,129,0,232,96,6,0,220,3,96,252,0,0,0,0,129,0,207,95,26,1,220,3,4,253,0,0,0,0,129,0,183,95,26,1,220,3,152,253,0,0,0,0,145,0,196,116,210,57,220,3,196,253,0,0,0,0,129,0,94,210,219,57,223,3,188,254,0,0,0,0,145,0,62,183,229,57,226,3,232,254,0,0,0,0,198,0,68,154,218,0,228,3,229,255,0,0,0,0,134,8,165,239,180,57,228,3,237,255,0,0,0,0,129,8,173,239,186,57,228,3,246,255,0,0,0,0,134,8,175,197,239,57,229,3,254,255,0,0,0,0,134,8,189,197,246,57,229,3,7,0,1,0,0,0,134,24,163,195,186,57,230,3,63,0,1,0,0,0,134,0,61,237,7,57,231,3,78,0,1,0,0,0,134,0,36,238,7,57,232,3,93,0,1,0,0,0,134,0,88,134,254,57,233,3,112,0,1,0,0,0,134,0,137,241,254,57,234,3,63,0,1,0,0,0,131,0,223,237,7,57,235,3,214,0,1,0,0,0,134,0,100,134,5,58,236,3,232,0,1,0,0,0,198,0,68,154,218,0,238,3,137,1,1,0,0,0,134,8,8,223,19,3,238,3,145,1,1,0,0,0,134,8,19,223,21,0,238,3,154,1,1,0,0,0,134,24,163,195,13,58,239,3,172,1,1,0,0,0,129,0,80,210,6,0,241,3,220,1,1,0,0,0,134,0,222,209,158,57,241,3,52,3,1,0,0,0,134,0,158,214,35,50,242,3,156,3,1,0,0,0,129,0,6,210,158,57,242,3,148,4,1,0,0,0,134,0,4,113,152,57,243,3,220,5,1,0,0,0,129,0,197,198,21,58,243,3,140,6,1,0,0,0,198,0,68,154,218,0,245,3,188,6,1,0,0,0,145,24,185,195,20,47,245,3,108,7,1,0,0,0,150,0,140,149,137,56,245,3,152,7,1,0,0,0,145,0,51,218,32,58,246,3,12,8,1,0,0,0,145,0,189,149,137,56,247,3,56,8,1,0,0,0,145,0,122,150,137,56,248,3,124,8,1,0,0,0,145,0,156,149,137,56,249,3,52,9,1,0,0,0,150,0,146,138,39,58,250,3,0,11,1,0,0,0,145,0,174,140,62,58,1,4,60,11,1,0,0,0,145,0,181,239,74,58,3,4,12,12,1,0,0,0,145,0,180,237,137,56,4,4,56,12,1,0,0,0,145,0,4,113,83,58,5,4,156,12,1,0,0,0,145,0,120,166,95,58,7,4,48,13,1,0,0,0,145,0,125,232,113,58,13,4,144,13,1,0,0,0,145,0,165,228,125,58,15,4,156,14,1,0,0,0,145,0,168,202,134,58,16,4,76,15,1,0,0,0,145,0,231,238,150,58,21,4,24,16,1,0,0,0,145,0,42,166,161,58,22,4,44,16,1,0,0,0,145,0,76,167,169,58,24,4,76,17,1,0,0,0,145,0,73,134,179,58,28,4,0,18,1,0,0,0,145,0,177,233,195,58,36,4,131,18,1,0,0,0,145,0,213,196,82,8,42,4,140,18,1,0,0,0,145,0,30,167,208,58,43,4,235,18,1,0,0,0,145,0,191,236,202,55,49,4,0,19,1,0,0,0,145,0,67,198,220,58,52,4,88,19,1,0,0,0,145,0,162,213,231,58,55,4,148,19,1,0,0,0,145,0,145,232,240,58,58,4,204,19,1,0,0,0,145,0,50,134,247,58,60,4,14,20,1,0,0,0,145,0,130,182,82,8,61,4,27,20,1,0,0,0,145,0,130,182,137,56,62,4,52,20,1,0,0,0,150,0,68,154,253,58,63,4,243,20,1,0,0,0,145,24,185,195,20,47,64,4,0,21,1,0,0,0,150,0,71,221,6,59,64,4,80,21,1,0,0,0,145,0,71,221,23,59,67,4,80,22,1,0,0,0,145,0,245,198,39,59,69,4,196,22,1,0,0,0,145,0,129,228,51,59,72,4,232,22,1,0,0,0,145,0,117,175,65,59,75,4,64,24,1,0,0,0,145,0,28,175,81,59,81,4,64,25,1,0,0,0,145,0,195,134,231,58,88,4,83,32,0,0,0,0,134,24,163,195,6,0,91,4,216,25,1,0,0,0,145,24,185,195,20,47,91,4,62,26,1,0,0,0,134,8,172,214,123,49,91,4,70,26,1,0,0,0,129,8,181,214,143,49,91,4,79,26,1,0,0,0,134,8,230,216,97,59,92,4,87,26,1,0,0,0,129,8,241,216,109,59,92,4,96,26,1,0,0,0,134,24,163,195,122,59,93,4,120,26,1,0,0,0,131,24,163,195,209,54,95,4,229,26,1,0,0,0,131,0,150,222,138,59,98,4,246,26,1,0,0,0,131,0,132,237,6,0,101,4,6,27,1,0,0,0,131,0,100,237,145,59,101,4,21,27,1,0,0,0,131,0,66,239,151,59,101,4,32,27,1,0,0,0,131,0,170,238,157,59,101,4,139,27,1,0,0,0,131,24,163,195,1,0,103,4,166,27,1,0,0,0,131,8,128,163,165,59,104,4,176,27,1,0,0,0,131,8,137,163,170,59,105,4,187,27,1,0,0,0,131,0,150,222,176,59,107,4,208,27,1,0,0,0,131,0,13,180,182,59,109,4,4,28,1,0,0,0,131,0,233,236,188,59,111,4,61,28,1,0,0,0,134,24,163,195,255,56,112,4,98,28,1,0,0,0,134,8,214,204,26,1,116,4,106,28,1,0,0,0,134,8,234,204,26,1,116,4,114,28,1,0,0,0,134,8,77,219,26,1,116,4,122,28,1,0,0,0,134,8,114,219,26,1,116,4,130,28,1,0,0,0,131,24,163,195,6,0,116,4,140,28,1,0,0,0,131,24,163,195,21,0,116,4,217,28,1,0,0,0,131,8,213,238,194,59,117,4,228,28,1,0,0,0,145,0,4,219,200,59,117,4,12,29,1,0,0,0,145,0,29,198,207,59,120,4,44,29,1,0,0,0,145,0,138,180,215,59,124,4,132,29,1,0,0,0,129,0,216,162,224,59,127,4,180,30,1,0,0,0,131,0,239,113,235,59,132,4,192,31,1,0,0,0,129,0,97,206,245,59,137,4,113,33,1,0,0,0,131,0,141,206,255,56,142,4,144,33,1,0,0,0,131,0,201,170,91,56,146,4,153,33,1,0,0,0,131,0,209,220,21,0,147,4,162,33,1,0,0,0,131,0,46,153,16,0,148,4,176,33,1,0,0,0,131,0,60,157,21,0,149,4,188,33,1,0,0,0,145,24,185,195,20,47,150,4,28,34,1,0,0,0,147,0,76,232,82,8,150,4,57,34,1,0,0,0,147,0,151,162,161,6,151,4,72,34,1,0,0,0,147,0,109,162,82,8,153,4,124,34,1,0,0,0,147,0,51,172,0,60,154,4,136,35,1,0,0,0,145,24,185,195,20,47,156,4,104,36,1,0,0,0,145,24,185,195,20,47,156,4,88,37,1,0,0,0,147,0,16,162,6,60,156,4,4,39,1,0,0,0,145,0,139,187,18,60,160,4,108,39,1,0,0,0,145,0,4,202,27,60,161,4,122,39,1,0,0,0,145,0,4,202,36,60,163,4,148,39,1,0,0,0,145,0,109,236,45,60,165,4,252,41,1,0,0,0,145,0,91,242,55,60,170,4,236,42,1,0,0,0,145,0,39,114,66,60,175,4,175,43,1,0,0,0,145,0,144,226,235,16,179,4,192,43,1,0,0,0,145,0,237,188,235,16,180,4,216,43,1,0,0,0,145,0,0,193,235,16,181,4,240,43,1,0,0,0,145,0,182,116,235,16,182,4,255,43,1,0,0,0,145,0,103,170,235,16,183,4,14,44,1,0,0,0,145,0,133,236,235,16,184,4,48,44,1,0,0,0,145,0,219,233,200,18,185,4,120,44,1,0,0,0,145,0,9,234,200,18,187,4,236,44,1,0,0,0,145,0,74,234,75,60,189,4,196,45,1,0,0,0,145,0,121,95,86,60,193,4,97,46,1,0,0,0,134,24,163,195,6,0,195,4,116,46,1,0,0,0,134,0,146,138,93,60,195,4,248,47,1,0,0,0,129,0,158,163,104,60,199,4,76,49,1,0,0,0,129,0,50,207,118,60,202,4,168,49,1,0,0,0,129,0,95,199,126,60,203,4,105,50,1,0,0,0,134,8,245,178,139,60,206,4,113,50,1,0,0,0,129,8,254,178,145,60,206,4,122,50,1,0,0,0,134,8,79,143,139,60,207,4,130,50,1,0,0,0,129,8,87,143,145,60,207,4,140,50,1,0,0,0,134,24,163,195,58,49,208,4,36,51,1,0,0,0,131,0,159,159,152,60,210,4,89,51,1,0,0,0,131,0,232,114,183,54,212,4,101,51,1,0,0,0,131,0,242,220,183,54,214,4,120,51,1,0,0,0,131,0,6,180,7,57,216,4,130,51,1,0,0,0,131,0,215,154,7,57,217,4,149,51,1,0,0,0,131,0,172,145,7,57,218,4,184,51,1,0,0,0,131,0,52,242,183,54,219,4,227,51,1,0,0,0,131,8,56,151,26,1,221,4,235,51,1,0,0,0,145,24,185,195,20,47,221,4,0,52,1,0,0,0,134,24,163,195,160,60,221,4,127,52,1,0,0,0,131,8,88,216,35,50,223,4,135,52,1,0,0,0,131,8,105,139,26,1,223,4,147,52,1,0,0,0,131,8,7,179,19,3,223,4,160,52,1,0,0,0,131,0,91,229,7,57,223,4,184,52,1,0,0,0,131,0,207,219,7,57,224,4,72,53,1,0,0,0,131,0,232,114,169,60,225,4,243,53,1,0,0,0,131,0,242,220,169,60,226,4,44,54,1,0,0,0,131,0,52,242,169,60,227,4,244,54,1,0,0,0,131,0,5,151,139,60,228,4,64,55,1,0,0,0,131,0,52,242,178,60,228,4,164,55,1,0,0,0,131,0,173,159,152,60,229,4,12,56,1,0,0,0,198,0,68,154,218,0,231,4,168,56,1,0,0,0,134,24,163,195,6,0,231,4,212,56,1,0,0,0,198,0,246,236,185,60,231,4,44,59,1,0,0,0,129,0,101,175,88,57,234,4,196,60,1,0,0,0,129,0,75,212,203,60,235,4,36,61,1,0,0,0,129,0,99,132,1,0,236,4,136,61,1,0,0,0,129,0,56,177,26,1,237,4,248,61,1,0,0,0,147,0,59,205,210,60,237,4,36,62,1,0,0,0,129,0,81,175,7,57,239,4,32,63,1,0,0,0,145,24,185,195,20,47,240,4,144,63,1,0,0,0,198,0,177,138,217,60,240,4,38,66,1,0,0,0,134,24,163,195,6,0,241,4,48,66,1,0,0,0,145,24,185,195,20,47,241,4,139,66,1,0,0,0,134,8,200,67,19,3,241,4,176,66,1,0,0,0,134,8,218,67,21,0,241,4,13,111,0,0,0,0,134,24,163,195,6,0,242,4,200,66,1,0,0,0,145,0,56,177,223,60,242,4,220,67,1,0,0,0,145,0,215,136,231,60,243,4,56,68,1,0,0,0,198,0,246,236,185,60,247,4,129,73,1,0,0,0,134,24,163,195,6,0,250,4,140,73,1,0,0,0,145,24,185,195,20,47,250,4,136,82,1,0,0,0,198,0,177,138,3,50,250,4,72,83,1,0,0,0,198,0,177,138,217,60,255,4,196,85,1,0,0,0,145,0,249,143,243,60,0,5,28,86,1,0,0,0,129,0,226,136,251,60,2,5,38,66,1,0,0,0,134,24,163,195,6,0,5,5,249,86,1,0,0,0,150,8,168,221,54,7,5,5,0,87,1,0,0,0,134,24,163,195,6,0,5,5,9,87,1,0,0,0,134,24,163,195,21,0,5,5,19,87,1,0,0,0,134,24,163,195,2,61,6,5,68,87,1,0,0,0,198,0,246,236,185,60,8,5,20,90,1,0,0,0,145,0,218,175,8,61,11,5,216,90,1,0,0,0,145,0,81,175,137,56,13,5,152,91,1,0,0,0,145,0,159,180,18,61,14,5,220,91,1,0,0,0,145,0,37,115,25,61,16,5,123,93,1,0,0,0,145,24,185,195,20,47,17,5,168,93,1,0,0,0,198,0,177,138,3,50,17,5,212,93,1,0,0,0,198,0,177,138,217,60,22,5,132,95,1,0,0,0,145,0,108,241,30,61,23,5,180,95,1,0,0,0,145,0,31,138,25,61,25,5,38,66,1,0,0,0,134,24,163,195,6,0,26,5,220,97,1,0,0,0,134,24,163,195,6,0,26,5,0,98,1,0,0,0,198,0,246,236,185,60,26,5,244,99,1,0,0,0,129,0,218,175,37,61,29,5,252,100,1,0,0,0,145,0,97,176,137,56,30,5,164,101,1,0,0,0,145,0,159,180,18,61,31,5,224,101,1,0,0,0,145,0,37,115,45,61,33,5,60,103,1,0,0,0,145,0,44,205,51,61,34,5,112,103,1,0,0,0,145,0,117,164,57,61,35,5,197,103,1,0,0,0,145,24,185,195,20,47,38,5,250,103,1,0,0,0,198,0,177,138,3,50,38,5,36,104,1,0,0,0,198,0,177,138,217,60,43,5,72,105,1,0,0,0,145,0,108,241,30,61,44,5,119,105,1,0,0,0,148,0,14,175,65,61,46,5,132,105,1,0,0,0,145,0,14,175,75,61,50,5,180,105,1,0,0,0,145,0,15,238,200,18,53,5,38,66,1,0,0,0,134,24,163,195,6,0,55,5,254,105,1,0,0,0,134,24,163,195,6,0,55,5,20,106,1,0,0,0,197,0,93,141,84,61,55,5,44,107,1,0,0,0,195,10,41,220,14,49,58,5,52,107,1,0,0,0,145,0,152,226,95,61,58,5,113,107,1,0,0,0,145,24,185,195,20,47,60,5,138,107,1,0,0,0,198,0,177,138,3,50,60,5,184,107,1,0,0,0,198,0,177,138,217,60,65,5,52,109,1,0,0,0,134,24,163,195,6,0,66,5,60,109,1,0,0,0,134,24,163,195,6,0,66,5,80,109,1,0,0,0,197,0,93,141,84,61,66,5,67,110,1,0,0,0,195,10,41,220,14,49,69,5,71,110,1,0,0,0,198,0,177,138,3,50,69,5,116,110,1,0,0,0,198,0,177,138,217,60,74,5,52,109,1,0,0,0,134,24,163,195,6,0,75,5,180,111,1,0,0,0,131,0,67,188,94,25,75,5,40,112,1,0,0,0,129,0,232,114,102,61,76,5,68,112,1,0,0,0,129,0,236,114,6,0,78,5,117,123,1,0,0,0,134,24,163,195,6,0,78,5,148,123,1,0,0,0,198,0,246,236,185,60,78,5,220,124,1,0,0,0,145,0,93,141,109,61,81,5,148,125,1,0,0,0,129,0,211,234,37,61,85,5,224,125,1,0,0,0,129,0,146,143,120,61,86,5,40,126,1,0,0,0,145,0,164,134,128,61,88,5,76,126,1,0,0,0,129,0,122,131,37,61,89,5,208,126,1,0,0,0,145,0,28,175,135,61,90,5,144,127,1,0,0,0,145,0,185,225,146,61,93,5,244,127,1,0,0,0,134,24,163,195,6,0,95,5,4,128,1,0,0,0,145,24,185,195,20,47,95,5,59,130,1,0,0,0,198,0,177,138,3,50,95,5,104,130,1,0,0,0,198,0,177,138,217,60,100,5,38,66,1,0,0,0,134,24,163,195,6,0,101,5,168,131,1,0,0,0,145,24,185,195,20,47,101,5,182,132,1,0,0,0,134,24,163,195,6,0,101,5,191,132,1,0,0,0,134,24,163,195,21,0,101,5,232,132,1,0,0,0,198,0,246,236,185,60,102,5,224,134,1,0,0,0,129,0,56,177,154,61,105,5,204,135,1,0,0,0,129,0,255,174,164,61,107,5,156,136,1,0,0,0,129,0,94,156,175,61,110,5,220,136,1,0,0,0,129,0,97,176,182,61,112,5,32,137,1,0,0,0,145,0,159,180,18,61,114,5,92,137,1,0,0,0,145,0,168,165,135,6,116,5,196,137,1,0,0,0,145,24,185,195,20,47,117,5,24,138,1,0,0,0,198,0,177,138,3,50,117,5,72,138,1,0,0,0,198,0,177,138,217,60,122,5,38,66,1,0,0,0,134,24,163,195,6,0,123,5,8,139,1,0,0,0,145,24,185,195,20,47,123,5,20,140,1,0,0,0,134,24,163,195,226,49,123,5,248,142,1,0,0,0,198,0,246,236,185,60,124,5,80,143,1,0,0,0,198,0,234,221,6,0,127,5,156,143,1,0,0,0,134,24,163,195,226,49,127,5,160,144,1,0,0,0,198,0,246,236,185,60,128,5,128,145,1,0,0,0,198,0,234,221,6,0,131,5,170,145,1,0,0,0,230,1,177,138,248,49,131,5,184,145,1,0,0,0,198,1,177,138,3,50,135,5,80,146,1,0,0,0,145,0,152,228,189,61,140,5,184,146,1,0,0,0,148,0,14,175,65,61,144,5,3,147,1,0,0,0,198,9,239,165,26,1,148,5,0,0,0,0,0,0,198,5,177,138,217,60,148,5,8,147,1,0,0,0,150,0,10,1,25,61,149,5,83,32,0,0,0,0,132,24,163,195,6,0,150,5,114,147,1,0,0,0,230,1,146,138,202,49,150,5,124,147,1,0,0,0,198,1,146,138,210,49,151,5,91,32,0,0,0,0,198,1,234,221,6,0,153,5,112,148,1,0,0,0,196,1,137,138,210,49,153,5,52,150,1,0,0,0,148,0,67,175,200,61,155,5,68,150,1,0,0,0,148,0,67,175,210,61,158,5,200,150,1,0,0,0,148,0,126,145,200,61,162,5,20,151,1,0,0,0,148,0,195,134,231,58,165,5,0,0,0,0,0,0,198,5,246,236,185,60,168,5,83,32,0,0,0,0,132,24,163,195,6,0,171,5,192,151,1,0,0,0,145,24,185,195,20,47,171,5,215,151,1,0,0,0,198,0,177,138,3,50,171,5,4,152,1,0,0,0,198,0,177,138,217,60,176,5,38,66,1,0,0,0,134,24,163,195,6,0,177,5,204,153,1,0,0,0,145,24,185,195,20,47,177,5,168,155,1,0,0,0,198,0,246,236,221,61,177,5,191,155,1,0,0,0,198,0,246,236,185,60,181,5,212,155,1,0,0,0,198,0,146,138,210,49,184,5,232,155,1,0,0,0,195,10,41,220,14,49,186,5,239,155,1,0,0,0,197,0,93,141,84,61,186,5,0,156,1,0,0,0,145,0,111,228,241,61,189,5,62,156,1,0,0,0,134,24,163,195,6,0,190,5,81,156,1,0,0,0,230,1,177,138,248,49,190,5,95,156,1,0,0,0,230,1,177,138,3,50,194,5,159,156,1,0,0,0,134,24,163,195,6,0,199,5,180,156,1,0,0,0,131,0,246,236,250,61,199,5,48,157,1,0,0,0,129,0,93,141,84,61,202,5,255,157,1,0,0,0,145,0,27,154,6,62,205,5,35,158,1,0,0,0,134,24,163,195,6,0,206,5,68,158,1,0,0,0,131,0,246,236,250,61,206,5,192,158,1,0,0,0,129,0,93,141,84,61,209,5,156,159,1,0,0,0,145,0,148,164,135,6,212,5,244,159,1,0,0,0,145,0,89,226,19,62,213,5,24,160,1,0,0,0,145,0,27,154,6,62,215,5,76,160,1,0,0,0,145,0,184,153,25,61,216,5,19,161,1,0,0,0,134,24,163,195,6,0,217,5,50,161,1,0,0,0,145,24,185,195,20,47,217,5,76,161,1,0,0,0,131,0,246,236,26,62,217,5,142,161,1,0,0,0,134,24,163,195,6,0,220,5,172,161,1,0,0,0,145,24,185,195,20,47,220,5,196,161,1,0,0,0,145,24,185,195,20,47,220,5,111,163,1,0,0,0,132,24,163,195,6,0,220,5,156,163,1,0,0,0,147,0,45,175,223,60,220,5,20,164,1,0,0,0,198,0,246,236,185,60,221,5,40,164,1,0,0,0,198,1,246,236,221,61,224,5,68,166,1,0,0,0,196,1,134,164,199,9,228,5,76,166,1,0,0,0,147,0,63,164,210,5,229,5,152,166,1,0,0,0,147,0,91,164,37,62,230,5,97,167,1,0,0,0,196,1,122,131,47,62,231,5,112,167,1,0,0,0,147,0,28,175,56,62,233,5,132,167,1,0,0,0,147,0,28,175,68,62,237,5,80,168,1,0,0,0,147,0,185,225,82,62,242,5,0,0,0,0,0,0,195,15,41,220,14,49,247,5,0,0,0,0,0,0,197,5,93,141,84,61,247,5,170,168,1,0,0,0,198,8,239,165,26,1,250,5,38,66,1,0,0,0,132,24,163,195,6,0,250,5,174,168,1,0,0,0,134,24,163,195,6,0,250,5,196,168,1,0,0,0,197,0,93,141,84,61,250,5,108,169,1,0,0,0,196,0,122,131,47,62,253,5,123,169,1,0,0,0,196,0,134,164,199,9,255,5,140,169,1,0,0,0,145,0,43,226,95,61,0,6,227,169,1,0,0,0,195,10,41,220,14,49,2,6,236,169,1,0,0,0,150,0,140,61,25,61,2,6,236,170,1,0,0,0,145,24,185,195,20,47,3,6,68,171,1,0,0,0,198,0,177,138,3,50,3,6,116,171,1,0,0,0,198,0,177,138,217,60,8,6,52,109,1,0,0,0,134,24,163,195,6,0,9,6,204,172,1,0,0,0,132,24,163,195,6,0,9,6,57,173,1,0,0,0,132,0,239,211,35,50,9,6,65,173,1,0,0,0,132,0,28,212,35,50,9,6,73,173,1,0,0,0,132,0,82,213,97,62,9,6,81,173,1,0,0,0,132,0,121,213,97,62,9,6,89,173,1,0,0,0,132,0,202,217,35,50,9,6,97,173,1,0,0,0,132,0,245,217,35,50,9,6,105,173,1,0,0,0,148,0,29,150,102,62,9,6,80,227,0,0,0,0,148,0,106,234,137,56,12,6,152,173,1,0,0,0,148,0,8,230,113,62,13,6,212,173,1,0,0,0,148,0,171,229,113,62,15,6,16,174,1,0,0,0,148,0,185,176,119,54,17,6,133,174,1,0,0,0,145,24,185,195,20,47,18,6,171,174,1,0,0,0,134,8,120,149,26,1,18,6,179,174,1,0,0,0,129,8,130,149,1,0,18,6,188,174,1,0,0,0,134,8,107,174,26,1,19,6,196,174,1,0,0,0,129,8,127,174,1,0,19,6,205,174,1,0,0,0,134,24,163,195,58,49,20,6,227,174,1,0,0,0,198,0,68,154,218,0,22,6,28,175,1,0,0,0,198,0,129,204,72,10,22,6,88,175,1,0,0,0,198,0,246,136,26,1,23,6,103,175,1,0,0,0,134,8,120,149,26,1,23,6,111,175,1,0,0,0,129,8,130,149,1,0,23,6,120,175,1,0,0,0,134,8,181,131,35,50,24,6,128,175,1,0,0,0,129,8,194,131,125,54,24,6,137,175,1,0,0,0,134,8,100,217,40,50,25,6,145,175,1,0,0,0,129,8,117,217,47,50,25,6,154,175,1,0,0,0,134,24,163,195,121,62,26,6,216,175,1,0,0,0,198,0,129,204,72,10,31,6,4,176,1,0,0,0,198,0,246,136,26,1,32,6,12,176,1,0,0,0,134,8,107,176,131,62,32,6,20,176,1,0,0,0,129,8,125,176,137,62,32,6,29,176,1,0,0,0,134,8,38,232,26,1,33,6,37,176,1,0,0,0,129,8,48,232,1,0,33,6,46,176,1,0,0,0,131,24,163,195,144,62,34,6,64,176,1,0,0,0,134,0,250,233,6,0,37,6,93,176,1,0,0,0,134,24,163,195,6,0,37,6,124,176,1,0,0,0,198,0,246,236,185,60,37,6,64,177,1,0,0,0,145,0,239,241,153,62,40,6,172,177,1,0,0,0,198,0,234,221,6,0,42,6,196,177,1,0,0,0,145,0,241,228,167,62,42,6,184,178,1,0,0,0,145,0,134,164,179,62,44,6,8,179,1,0,0,0,129,0,244,193,189,62,46,6,208,179,1,0,0,0,129,0,85,191,208,62,50,6,68,182,1,0,0,0,129,0,143,176,221,62,53,6,20,183,1,0,0,0,129,0,161,176,230,62,55,6,192,183,1,0,0,0,129,0,225,217,243,62,59,6,24,185,1,0,0,0,145,24,185,195,20,47,61,6,108,186,1,0,0,0,150,0,244,150,249,62,61,6,152,187,1,0,0,0,145,0,73,205,161,6,64,6,240,187,1,0,0,0,147,0,5,241,1,63,66,6,4,189,1,0,0,0,131,8,227,235,19,3,67,6,12,189,1,0,0,0,129,8,241,235,21,0,67,6,21,189,1,0,0,0,131,8,215,180,15,63,68,6,29,189,1,0,0,0,129,8,228,180,21,63,68,6,38,189,1,0,0,0,131,8,13,181,15,63,69,6,46,189,1,0,0,0,129,8,27,181,21,63,69,6,55,189,1,0,0,0,131,8,107,176,131,62,70,6,63,189,1,0,0,0,129,8,125,176,137,62,70,6,72,189,1,0,0,0,131,24,163,195,28,63,71,6,109,189,1,0,0,0,134,8,212,235,19,3,75,6,120,189,1,0,0,0,198,0,68,154,218,0,75,6,232,189,1,0,0,0,198,0,129,204,72,10,75,6,63,190,1,0,0,0,145,0,66,163,227,0,76,6,80,190,1,0,0,0,198,0,246,136,26,1,78,6,117,190,1,0,0,0,145,0,92,163,150,19,78,6,130,190,1,0,0,0,131,24,163,195,42,63,79,6,164,190,1,0,0,0,131,8,206,212,56,63,82,6,172,190,1,0,0,0,129,8,216,212,67,63,82,6,181,190,1,0,0,0,131,8,229,182,26,1,83,6,189,190,1,0,0,0,129,8,243,182,1,0,83,6,198,190,1,0,0,0,131,8,236,115,19,3,84,6,206,190,1,0,0,0,129,8,251,115,21,0,84,6,215,190,1,0,0,0,131,0,118,229,79,63,85,6,229,190,1,0,0,0,198,0,68,154,218,0,86,6,252,190,1,0,0,0,198,0,129,204,72,10,86,6,64,191,1,0,0,0,198,0,246,136,26,1,87,6,103,191,1,0,0,0,131,8,206,212,56,63,87,6,112,191,1,0,0,0,198,0,246,236,185,60,87,6,206,191,1,0,0,0,198,0,234,221,6,0,90,6,232,191,1,0,0,0,131,0,66,213,91,63,90,6,96,192,1,0,0,0,129,0,41,219,99,63,92,6,188,192,1,0,0,0,129,0,41,219,111,63,93,6,132,193,1,0,0,0,145,0,84,135,131,63,95,6,240,193,1,0,0,0,129,0,20,237,176,59,96,6,144,194,1,0,0,0,145,0,51,219,143,63,98,6,116,195,1,0,0,0,145,0,41,237,163,63,100,6,84,196,1,0,0,0,131,8,148,218,181,63,102,6,92,196,1,0,0,0,147,0,241,228,192,63,102,6,212,196,1,0,0,0,129,0,134,164,19,3,103,6,124,197,1,0,0,0,145,0,20,180,206,63,103,6,184,197,1,0,0,0,131,0,83,194,214,63,105,6,92,198,1,0,0,0,129,0,70,194,232,63,108,6,148,199,1,0,0,0,145,0,211,211,248,63,111,6,204,199,1,0,0,0,129,0,161,176,254,63,112,6,136,200,1,0,0,0,131,0,85,191,9,64,115,6,13,203,1,0,0,0,145,0,37,223,23,64,119,6,32,203,1,0,0,0,129,0,225,217,88,57,122,6,75,204,1,0,0,0,134,24,163,195,6,0,123,6,120,204,1,0,0,0,145,24,185,195,20,47,123,6,250,207,1,0,0,0,131,24,163,195,32,64,123,6,21,208,1,0,0,0,132,0,28,170,39,64,124,6,29,208,1,0,0,0,131,0,17,186,45,64,124,6,0,0,0,0,0,0,198,5,170,169,218,0,124,6,40,208,1,0,0,0,150,0,237,185,51,64,124,6,104,209,1,0,0,0,131,24,163,195,32,64,125,6,113,209,1,0,0,0,196,0,55,137,60,64,126,6,127,209,1,0,0,0,196,0,176,224,7,57,128,6,104,209,1,0,0,0,131,24,163,195,32,64,129,6,130,209,1,0,0,0,196,0,55,137,60,64,130,6,165,209,1,0,0,0,196,0,176,224,7,57,132,6,184,209,1,0,0,0,131,24,163,195,32,64,133,6,196,209,1,0,0,0,198,0,170,169,218,0,134,6,184,209,1,0,0,0,131,24,163,195,32,64,134,6,80,210,1,0,0,0,198,0,170,169,218,0,135,6,65,211,1,0,0,0,145,24,185,195,20,47,135,6,86,211,1,0,0,0,131,24,163,195,67,64,135,6,112,211,1,0,0,0,198,0,170,169,218,0,138,6,236,211,1,0,0,0,129,0,180,145,60,64,138,6,144,212,1,0,0,0,196,0,55,137,60,64,140,6,204,212,1,0,0,0,196,0,176,224,7,57,142,6,213,212,1,0,0,0,145,24,185,195,20,47,143,6,235,212,1,0,0,0,131,24,163,195,32,64,143,6,244,212,1,0,0,0,198,0,170,169,218,0,144,6,80,213,1,0,0,0,145,24,185,195,20,47,144,6,184,209,1,0,0,0,131,24,163,195,32,64,144,6,96,213,1,0,0,0,198,0,170,169,218,0,145,6,195,213,1,0,0,0,145,24,185,195,20,47,145,6,203,213,1,0,0,0,131,24,163,195,32,64,145,6,212,213,1,0,0,0,132,0,17,166,60,64,146,6,8,214,1,0,0,0,132,0,14,95,76,64,148,6,100,214,1,0,0,0,145,0,72,226,84,64,151,6,178,214,1,0,0,0,145,24,185,195,20,47,153,6,184,209,1,0,0,0,131,24,163,195,32,64,153,6,188,214,1,0,0,0,132,0,153,224,76,64,154,6,0,0,0,0,0,0,196,5,55,137,60,64,157,6,0,0,0,0,0,0,196,5,176,224,7,57,159,6,203,213,1,0,0,0,131,24,163,195,32,64,160,6,20,215,1,0,0,0,198,0,170,169,218,0,161,6,56,215,1,0,0,0,145,24,185,195,20,47,161,6,64,215,1,0,0,0,131,24,163,195,21,0,161,6,74,215,1,0,0,0,131,24,163,195,91,64,162,6,96,215,1,0,0,0,131,0,129,169,99,64,164,6,104,215,1,0,0,0,131,0,112,115,19,3,164,6,112,215,1,0,0,0,131,24,163,195,6,0,164,6,134,215,1,0,0,0,131,0,196,172,26,1,164,6,142,215,1,0,0,0,131,0,208,172,1,0,164,6,151,215,1,0,0,0,131,0,220,172,1,0,165,6,167,215,1,0,0,0,131,0,230,111,19,3,166,6,178,215,1,0,0,0,131,0,68,114,19,3,166,6,189,215,1,0,0,0,131,0,181,37,19,3,166,6,200,215,1,0,0,0,131,0,78,114,6,0,166,6,209,215,1,0,0,0,131,0,238,111,6,0,166,6,218,215,1,0,0,0,131,0,193,37,6,0,166,6,227,215,1,0,0,0,131,24,163,195,135,16,166,6,243,215,1,0,0,0,131,0,104,150,105,64,168,6,251,215,1,0,0,0,131,0,17,9,19,3,168,6,10,216,1,0,0,0,145,24,185,195,20,47,168,6,19,216,1,0,0,0,131,24,163,195,109,64,168,6,49,216,1,0,0,0,131,24,163,195,115,64,170,6,79,216,1,0,0,0,131,0,146,154,218,0,173,6,87,216,1,0,0,0,131,0,103,153,19,3,173,6,95,216,1,0,0,0,131,0,239,149,26,1,173,6,103,216,1,0,0,0,131,24,163,195,189,54,173,6,155,216,1,0,0,0,131,0,172,226,26,1,176,6,163,216,1,0,0,0,131,0,158,225,26,1,176,6,171,216,1,0,0,0,131,0,104,150,26,1,176,6,189,216,1,0,0,0,131,0,42,9,19,3,176,6,204,216,1,0,0,0,131,0,24,9,19,3,176,6,219,216,1,0,0,0,131,0,59,9,19,3,176,6,249,216,1,0,0,0,145,24,185,195,20,47,176,6,2,217,1,0,0,0,131,8,238,172,26,1,176,6,10,217,1,0,0,0,129,8,254,172,1,0,176,6,19,217,1,0,0,0,131,24,163,195,1,0,177,6,36,217,1,0,0,0,145,24,185,195,20,47,178,6,88,231,1,0,0,0,147,0,75,145,25,61,178,6,196,232,1,0,0,0,145,0,237,94,122,64,179,6,40,233,1,0,0,0,145,0,252,94,122,64,182,6,143,233,1,0,0,0,131,24,163,195,32,64,185,6,180,233,1,0,0,0,131,0,65,199,129,64,186,6,28,234,1,0,0,0,129,0,53,114,88,57,188,6,124,234,1,0,0,0,129,0,25,114,136,64,189,6,250,234,1,0,0,0,131,0,34,241,183,54,190,6,12,235,1,0,0,0,147,0,34,241,143,64,192,6,64,235,1,0,0,0,131,0,189,117,152,64,195,6,196,235,1,0,0,0,129,0,10,204,99,64,197,6,68,236,1,0,0,0,129,0,88,158,160,64,197,6,104,237,1,0,0,0,129,0,27,158,160,64,197,6,120,238,1,0,0,0,129,0,62,158,160,64,197,6,136,239,1,0,0,0,129,0,164,37,88,57,197,6,16,240,1,0,0,0,129,0,148,37,166,64,198,6,124,241,1,0,0,0,129,0,217,111,88,57,199,6,216,241,1,0,0,0,129,0,89,114,166,64,200,6,148,242,1,0,0,0,129,0,24,155,88,57,201,6,248,242,1,0,0,0,129,0,78,155,88,57,202,6,56,243,1,0,0,0,129,0,49,155,88,57,203,6,134,243,1,0,0,0,134,24,163,195,173,64,204,6,149,243,1,0,0,0,230,1,146,138,202,49,205,6,160,243,1,0,0,0,230,1,146,138,210,49,206,6,146,244,1,0,0,0,230,1,234,221,6,0,208,6,160,244,1,0,0,0,145,0,40,149,180,64,208,6,220,244,1,0,0,0,134,24,163,195,173,64,211,6,235,244,1,0,0,0,230,1,252,141,159,56,212,6,248,244,1,0,0,0,230,1,252,141,168,56,213,6,72,245,1,0,0,0,129,0,235,141,190,64,215,6,232,246,1,0,0,0,145,0,150,217,214,64,221,6,94,247,1,0,0,0,230,1,146,138,202,49,224,6,108,247,1,0,0,0,230,1,146,138,210,49,225,6,123,247,1,0,0,0,230,1,234,221,6,0,227,6,0,0,0,0,0,0,198,5,252,141,159,56,227,6,0,0,0,0,0,0,198,5,252,141,168,56,228,6,136,247,1,0,0,0,230,1,252,141,159,56,230,6,148,247,1,0,0,0,230,1,252,141,168,56,231,6,172,248,1,0,0,0,129,0,33,132,225,64,233,6,108,251,1,0,0,0,129,0,43,235,244,64,234,6,158,251,1,0,0,0,134,24,163,195,6,0,236,6,166,251,1,0,0,0,145,24,185,195,20,47,236,6,179,251,1,0,0,0,134,24,163,195,143,49,236,6,188,251,1,0,0,0,134,0,157,157,254,64,237,6,76,252,1,0,0,0,145,24,185,195,20,47,238,6,89,252,1,0,0,0,131,24,163,195,143,49,238,6,98,252,1,0,0,0,131,24,163,195,84,54,239,6,108,252,1,0,0,0,129,0,184,208,13,65,241,6,212,254,1,0,0,0,134,0,147,157,21,65,241,6,97,0,2,0,0,0,145,24,185,195,20,47,242,6,140,0,2,0,0,0,230,1,146,138,202,49,242,6,152,0,2,0,0,0,230,1,146,138,210,49,243,6,91,32,0,0,0,0,230,1,234,221,6,0,245,6,8,1,2,0,0,0,145,0,3,215,42,52,245,6,162,1,2,0,0,0,134,24,163,195,6,0,246,6,181,1,2,0,0,0,145,24,185,195,20,47,246,6,194,1,2,0,0,0,131,24,163,195,143,49,246,6,212,1,2,0,0,0,131,0,53,198,145,12,247,6,100,2,2,0,0,0,145,24,185,195,20,47,247,6,76,5,2,0,0,0,147,0,146,138,36,65,247,6,169,6,2,0,0,0,145,0,100,225,45,65,249,6,200,6,2,0,0,0,145,0,59,229,52,65,251,6,12,7,2,0,0,0,145,0,155,242,60,65,253,6,38,7,2,0,0,0,145,0,244,213,60,65,254,6,64,7,2,0,0,0,145,0,182,156,60,65,255,6,89,7,2,0,0,0,145,0,99,19,60,65,0,7,116,7,2,0,0,0,145,0,91,24,66,65,1,7,112,8,2,0,0,0,145,0,236,139,72,65,2,7,192,9,2,0,0,0,145,24,185,195,20,47,5,7,253,9,2,0,0,0,134,24,163,195,6,0,5,7,21,10,2,0,0,0,134,0,146,138,80,65,5,7,32,10,2,0,0,0,134,0,146,138,232,52,6,7,224,10,2,0,0,0,129,0,162,213,89,65,8,7,112,11,2,0,0,0,145,24,185,195,20,47,13,7,130,14,2,0,0,0,196,0,137,138,210,49,13,7,147,14,2,0,0,0,198,0,234,221,6,0,15,7,164,14,2,0,0,0,129,0,202,113,99,65,15,7,248,14,2,0,0,0,129,0,169,154,94,25,16,7,68,15,2,0,0,0,129,0,49,197,104,65,17,7,240,16,2,0,0,0,129,0,240,181,94,25,23,7,192,19,2,0,0,0,129,0,91,218,132,65,24,7,132,20,2,0,0,0,129,0,95,67,168,65,32,7,96,21,2,0,0,0,129,0,116,209,181,65,36,7,180,21,2,0,0,0,198,0,246,236,185,60,40,7,129,73,1,0,0,0,134,24,163,195,6,0,43,7,184,23,2,0,0,0,230,1,146,138,202,49,43,7,196,23,2,0,0,0,230,1,146,138,210,49,44,7,91,32,0,0,0,0,230,1,234,221,6,0,46,7,124,24,2,0,0,0,145,0,3,215,42,52,46,7,68,25,2,0,0,0,145,0,228,151,191,65,47,7,139,25,2,0,0,0,134,24,163,195,6,0,50,7,158,25,2,0,0,0,145,24,185,195,20,47,50,7,171,25,2,0,0,0,230,1,177,138,248,49,50,7,188,25,2,0,0,0,230,1,177,138,3,50,54,7,88,27,2,0,0,0,145,0,216,162,202,65,59,7,152,28,2,0,0,0,145,0,109,239,216,65,63,7,83,32,0,0,0,0,134,24,163,195,6,0,66,7,88,29,2,0,0,0,134,8,196,143,227,65,66,7,149,29,2,0,0,0,134,8,212,143,238,65,66,7,209,29,2,0,0,0,134,8,0,152,250,65,67,7,246,29,2,0,0,0,134,8,12,152,255,65,67,7,39,30,2,0,0,0,134,8,136,152,250,65,68,7,76,30,2,0,0,0,134,8,148,152,255,65,68,7,128,30,2,0,0,0,134,8,252,168,17,52,69,7,189,30,2,0,0,0,134,8,18,169,26,52,69,7,13,111,0,0,0,0,134,24,163,195,6,0,70,7,34,78,0,0,0,0,230,9,82,138,26,1,70,7,252,30,2,0,0,0,230,1,177,138,5,66,70,7,136,32,2,0,0,0,145,0,228,215,12,66,71,7,83,32,0,0,0,0,134,24,163,195,6,0,73,7,214,32,2,0,0,0,230,9,82,138,26,1,73,7,220,32,2,0,0,0,230,1,177,138,5,66,73,7,24,34,2,0,0,0,145,0,184,146,18,66,74,7,83,32,0,0,0,0,134,24,163,195,6,0,76,7,159,73,0,0,0,0,198,9,82,138,26,1,76,7,76,34,2,0,0,0,198,1,177,138,5,66,76,7,80,35,2,0,0,0,129,0,105,191,24,66,77,7,154,35,2,0,0,0,147,0,217,221,36,66,81,7,180,35,2,0,0,0,196,1,242,79,45,66,83,7,172,36,2,0,0,0,196,1,138,180,54,66,85,7,220,37,2,0,0,0,145,0,164,198,61,66,87,7,83,32,0,0,0,0,134,24,163,195,6,0,89,7,60,38,2,0,0,0,134,24,163,195,6,0,89,7,3,147,1,0,0,0,198,0,22,233,26,1,89,7,99,38,2,0,0,0,198,0,106,158,7,57,89,7,116,38,2,0,0,0,134,24,163,195,68,66,90,7,171,38,2,0,0,0,134,8,134,219,26,1,93,7,179,38,2,0,0,0,134,8,6,205,26,1,93,7,187,38,2,0,0,0,134,8,172,214,145,12,93,7,195,38,2,0,0,0,134,0,100,225,131,54,93,7,217,38,2,0,0,0,129,0,107,225,209,54,95,7,244,38,2,0,0,0,129,0,93,225,131,54,98,7,12,39,2,0,0,0,134,0,158,134,6,0,100,7,132,40,2,0,0,0,129,0,57,142,255,56,100,7,244,40,2,0,0,0,129,0,6,155,189,54,104,7,104,41,2,0,0,0,129,0,120,11,1,0,107,7,0,42,2,0,0,0,129,0,184,19,1,0,108,7,152,42,2,0,0,0,129,0,149,24,1,0,109,7,48,43,2,0,0,0,129,0,197,30,1,0,110,7,204,43,2,0,0,0,230,9,82,138,26,1,111,7,208,43,2,0,0,0,230,1,177,138,5,66,111,7,96,44,2,0,0,0,145,0,242,79,36,66,112,7,124,45,2,0,0,0,145,0,138,180,75,66,114,7,176,45,2,0,0,0,145,0,164,198,61,66,116,7,83,32,0,0,0,0,134,24,163,195,6,0,118,7,83,32,0,0,0,0,134,24,163,195,6,0,118,7,0,0,0,0,0,0,198,13,82,138,26,1,118,7,0,0,0,0,0,0,198,5,177,138,5,66,118,7,115,46,2,0,0,0,145,24,185,195,20,47,119,7,132,46,2,0,0,0,134,24,163,195,16,0,119,7,44,47,2,0,0,0,134,0,228,143,82,66,120,7,53,47,2,0,0,0,134,0,205,216,89,66,121,7,69,47,2,0,0,0,134,0,158,131,1,0,123,7,78,47,2,0,0,0,134,8,51,181,105,64,124,7,78,47,2,0,0,0,134,8,121,231,105,64,124,7,97,47,2,0,0,0,134,0,83,198,16,0,124,7,112,47,2,0,0,0,134,0,22,134,97,66,125,7,127,47,2,0,0,0,134,8,58,232,26,1,126,7,140,47,2,0,0,0,134,0,132,140,1,0,126,7,149,47,2,0,0,0,134,0,198,159,6,0,127,7,158,47,2,0,0,0,134,8,229,210,19,3,127,7,174,47,2,0,0,0,129,8,118,233,26,1,127,7,194,47,2,0,0,0,134,8,251,210,26,1,127,7,209,47,2,0,0,0,134,0,52,178,6,0,127,7,223,47,2,0,0,0,134,0,52,178,1,0,127,7,22,48,2,0,0,0,134,0,69,178,6,0,128,7,31,48,2,0,0,0,134,8,0,209,26,1,128,7,39,48,2,0,0,0,134,8,8,209,1,0,128,7,48,48,2,0,0,0,134,8,175,197,102,66,129,7,56,48,2,0,0,0,134,8,37,178,107,66,129,7,64,48,2,0,0,0,134,8,58,153,26,1,129,7,72,48,2,0,0,0,134,8,176,139,218,0,129,7,80,48,2,0,0,0,134,8,82,165,19,3,129,7,88,48,2,0,0,0,134,8,108,165,21,0,129,7,100,48,2,0,0,0,145,24,185,195,20,47,130,7,64,50,2,0,0,0,150,0,1,0,113,66,130,7,169,51,2,0,0,0,145,0,47,158,0,60,132,7,188,51,2,0,0,0,145,0,47,158,121,66,134,7,4,53,2,0,0,0,145,0,164,146,18,66,138,7,56,53,2,0,0,0,150,0,16,162,25,61,140,7,68,53,2,0,0,0,150,0,16,162,129,66,141,7,80,55,2,0,0,0,147,0,9,236,142,66,146,7,248,58,2,0,0,0,145,0,31,205,149,66,149,7,76,59,2,0,0,0,145,0,58,233,60,65,153,7,175,43,1,0,0,0,147,0,144,226,235,16,154,7,110,59,2,0,0,0,147,0,161,95,235,16,155,7,133,59,2,0,0,0,147,0,38,2,235,16,156,7,167,59,2,0,0,0,147,0,120,236,235,16,157,7,201,59,2,0,0,0,147,0,98,12,235,16,158,7,243,59,2,0,0,0,147,0,149,179,235,16,159,7,6,60,2,0,0,0,147,0,184,106,235,16,160,7,34,78,0,0,0,0,147,0,10,38,235,16,161,7,24,60,2,0,0,0,150,0,219,233,200,18,162,7,95,60,2,0,0,0,147,0,127,191,160,66,164,7,136,60,2,0,0,0,150,0,89,221,165,66,165,7,144,60,2,0,0,0,134,24,163,195,173,66,166,7,176,60,2,0,0,0,131,24,163,195,183,66,172,7,0,61,2,0,0,0,150,0,249,179,195,66,180,7,10,61,2,0,0,0,150,0,249,179,202,66,181,7,20,61,2,0,0,0,150,0,249,179,212,66,183,7,49,61,2,0,0,0,145,0,249,179,221,66,186,7,64,61,2,0,0,0,150,0,249,179,232,66,189,7,228,61,2,0,0,0,129,0,30,206,26,1,194,7,48,62,2,0,0,0,129,0,7,206,26,1,194,7,114,62,2,0,0,0,134,0,158,155,26,1,194,7,129,62,2,0,0,0,134,0,42,224,26,1,194,7,144,62,2,0,0,0,134,0,49,156,26,1,194,7,161,62,2,0,0,0,134,0,103,224,26,1,194,7,178,62,2,0,0,0,134,0,108,232,26,1,194,7,193,62,2,0,0,0,198,1,22,233,26,1,194,7,208,62,2,0,0,0,198,1,106,158,7,57,194,7,216,62,2,0,0,0,134,0,139,158,7,57,195,7,224,62,2,0,0,0,198,0,68,154,218,0,196,7,184,63,2,0,0,0,145,24,185,195,20,47,196,7,107,66,2,0,0,0,198,8,82,138,26,1,196,7,112,66,2,0,0,0,196,0,138,180,54,66,196,7,207,67,2,0,0,0,134,24,163,195,6,0,198,7,215,67,2,0,0,0,198,8,82,138,26,1,198,7,220,67,2,0,0,0,198,0,177,138,5,66,198,7,88,68,2,0,0,0,196,0,138,180,54,66,199,7,232,68,2,0,0,0,196,0,242,79,45,66,201,7,207,67,2,0,0,0,134,24,163,195,6,0,203,7,84,69,2,0,0,0,131,24,163,195,143,49,203,7,194,69,2,0,0,0,134,8,58,168,247,66,204,7,204,69,2,0,0,0,147,0,82,168,253,66,204,7,236,69,2,0,0,0,131,0,53,198,145,12,205,7,180,71,2,0,0,0,129,0,46,142,6,67,205,7,8,72,2,0,0,0,129,0,253,154,14,67,209,7,212,72,2,0,0,0,129,0,108,11,183,54,213,7,144,73,2,0,0,0,129,0,172,19,183,54,215,7,76,74,2,0,0,0,129,0,137,24,183,54,217,7,12,75,2,0,0,0,129,0,185,30,183,54,219,7,200,75,2,0,0,0,129,0,120,167,22,67,221,7,199,76,2,0,0,0,129,24,163,195,102,52,222,7,224,76,2,0,0,0,147,0,243,203,31,67,224,7,148,78,2,0,0,0,131,8,221,197,26,1,226,7,156,78,2,0,0,0,131,8,175,197,145,12,226,7,164,78,2,0,0,0,147,0,146,138,43,67,226,7,124,79,2,0,0,0,145,0,162,230,51,67,227,7,188,80,2,0,0,0,145,0,38,230,66,67,231,7,64,82,2,0,0,0,145,0,43,231,66,67,233,7,212,83,2,0,0,0,145,0,55,230,66,67,235,7,156,84,2,0,0,0,145,0,12,202,75,67,237,7,220,84,2,0,0,0,145,0,242,230,66,67,240,7,68,85,2,0,0,0,145,0,76,230,83,67,242,7,48,86,2,0,0,0,145,0,182,146,161,6,245,7,96,86,2,0,0,0,145,24,185,195,20,47,247,7,211,86,2,0,0,0,134,24,163,195,6,0,247,7,235,86,2,0,0,0,134,0,146,138,98,67,247,7,252,86,2,0,0,0,134,0,146,138,80,65,248,7,196,87,2,0,0,0,129,0,162,213,10,53,249,7,40,88,2,0,0,0,131,24,163,195,107,67,251,7,168,88,2,0,0,0,134,0,79,182,26,1,1,8,176,88,2,0,0,0,134,0,186,218,26,1,1,8,184,88,2,0,0,0,134,0,86,205,26,1,1,8,192,88,2,0,0,0,134,0,219,218,26,1,1,8,200,88,2,0,0,0,134,0,125,205,26,1,1,8,208,88,2,0,0,0,134,0,117,198,26,1,1,8,216,88,2,0,0,0,131,0,206,203,119,67,1,8,224,88,2,0,0,0,150,0,117,206,125,67,1,8,40,89,2,0,0,0,198,0,68,154,218,0,3,8,68,89,2,0,0,0,145,0,231,206,133,67,3,8,104,93,2,0,0,0,145,24,185,195,20,47,3,8,116,93,2,0,0,0,134,24,163,195,143,49,3,8,144,93,2,0,0,0,134,0,71,221,205,53,4,8,168,96,2,0,0,0,129,0,74,181,140,67,4,8,248,97,2,0,0,0,129,0,251,223,160,67,10,8,52,99,2,0,0,0,129,0,219,116,179,67,15,8,133,99,2,0,0,0,145,0,1,135,203,56,16,8,148,99,2,0,0,0,145,0,8,230,186,67,18,8,200,99,2,0,0,0,145,0,235,116,202,67,20,8,80,100,2,0,0,0,129,0,0,165,225,67,27,8,89,101,2,0,0,0,134,8,56,151,26,1,29,8,97,101,2,0,0,0,134,8,198,201,26,1,29,8,109,101,2,0,0,0,134,8,128,163,88,57,29,8,134,101,2,0,0,0,134,8,137,163,176,59,30,8,166,101,2,0,0,0,134,24,163,195,6,0,32,8,193,101,2,0,0,0,134,24,163,195,1,0,32,8,235,101,2,0,0,0,129,24,163,195,175,61,33,8,4,102,2,0,0,0,129,0,192,242,1,0,35,8,66,102,2,0,0,0,134,0,174,179,1,0,36,8,96,102,2,0,0,0,145,0,79,209,82,8,37,8,132,102,2,0,0,0,134,0,157,221,7,57,38,8,0,103,2,0,0,0,134,0,133,222,7,57,39,8,123,103,2,0,0,0,134,0,81,159,58,49,40,8,136,103,2,0,0,0,134,0,92,140,58,49,42,8,8,104,2,0,0,0,134,0,81,180,6,0,44,8,52,104,2,0,0,0,134,0,75,140,237,67,44,8,188,104,2,0,0,0,134,0,32,225,21,0,47,8,13,105,2,0,0,0,134,8,83,240,35,50,48,8,24,105,2,0,0,0,134,0,248,214,58,49,48,8,104,105,2,0,0,0,134,0,19,241,32,64,50,8,164,105,2,0,0,0,134,0,48,196,32,64,51,8,248,105,2,0,0,0,134,0,4,202,244,67,52,8,64,106,2,0,0,0,134,0,149,145,6,0,56,8,120,107,2,0,0,0,145,0,121,240,247,58,56,8,136,107,2,0,0,0,198,0,129,204,72,10,57,8,220,107,2,0,0,0,198,0,246,136,26,1,58,8,24,108,2,0,0,0,198,0,68,154,218,0,58,8,108,108,2,0,0,0,134,0,174,143,213,28,58,8,137,108,2,0,0,0,145,24,185,195,20,47,58,8,162,108,2,0,0,0,134,8,138,155,26,1,58,8,170,108,2,0,0,0,134,8,20,224,26,1,58,8,178,108,2,0,0,0,134,8,182,167,26,1,58,8,211,108,2,0,0,0,134,8,116,152,26,1,58,8,219,108,2,0,0,0,134,24,163,195,1,0,58,8,232,108,2,0,0,0,134,24,163,195,58,49,59,8,59,109,2,0,0,0,131,24,163,195,253,67,61,8,96,109,2,0,0,0,131,24,163,195,6,68,65,8,140,109,2,0,0,0,150,0,120,145,14,68,68,8,220,109,2,0,0,0,150,0,120,145,23,68,69,8,60,111,2,0,0,0,134,8,128,163,131,54,72,8,108,111,2,0,0,0,134,8,137,163,209,54,74,8,204,111,2,0,0,0,134,0,174,179,58,49,77,8,0,112,2,0,0,0,134,0,19,165,32,68,79,8,96,112,2,0,0,0,134,0,48,196,143,49,80,8,8,113,2,0,0,0,134,0,81,180,6,0,81,8,52,113,2,0,0,0,134,0,160,167,255,56,81,8,212,113,2,0,0,0,134,0,86,237,113,49,85,8,53,114,2,0,0,0,134,0,93,237,44,68,87,8,88,114,2,0,0,0,134,0,255,2,6,0,89,8,200,114,2,0,0,0,134,0,161,141,35,50,89,8,216,115,2,0,0,0,134,0,57,225,35,50,89,8,88,116,2,0,0,0,134,0,73,225,35,50,89,8,208,116,2,0,0,0,198,0,129,204,72,10,89,8,84,117,2,0,0,0,198,0,246,136,26,1,90,8,179,117,2,0,0,0,198,0,68,154,218,0,90,8,202,117,2,0,0,0,134,0,68,154,48,7,90,8,217,117,2,0,0,0,134,0,68,154,52,68,92,8,228,117,2,0,0,0,129,0,63,154,52,68,95,8,75,118,2,0,0,0,134,0,174,143,213,28,98,8,116,118,2,0,0,0,134,24,163,195,78,47,98,8,131,118,2,0,0,0,134,8,50,222,26,1,99,8,139,118,2,0,0,0,134,8,253,221,26,1,99,8,148,118,2,0,0,0,134,0,213,214,7,57,99,8,190,119,2,0,0,0,134,0,249,140,26,1,100,8,216,119,2,0,0,0,134,8,133,142,218,0,100,8,224,119,2,0,0,0,145,24,185,195,20,47,100,8,52,123,2,0,0,0,129,24,163,195,109,64,100,8,68,123,2,0,0,0,145,0,141,221,59,68,102,8,116,123,2,0,0,0,145,0,141,221,65,68,104,8,183,123,2,0,0,0,150,0,153,150,72,68,106,8,210,123,2,0,0,0,150,0,241,142,79,68,107,8,228,123,2,0,0,0,134,8,66,202,145,12,108,8,236,123,2,0,0,0,129,8,79,202,78,47,108,8,245,123,2,0,0,0,134,8,53,215,26,1,109,8,253,123,2,0,0,0,129,8,65,215,1,0,109,8,6,124,2,0,0,0,134,8,83,236,218,0,110,8,14,124,2,0,0,0,129,8,92,236,16,0,110,8,23,124,2,0,0,0,134,8,118,216,86,68,111,8,31,124,2,0,0,0,129,8,135,216,95,68,111,8,40,124,2,0,0,0,134,8,225,161,218,0,112,8,48,124,2,0,0,0,129,8,237,161,16,0,112,8,57,124,2,0,0,0,134,8,12,132,19,3,113,8,82,124,2,0,0,0,134,8,32,116,26,1,113,8,90,124,2,0,0,0,134,8,52,116,1,0,113,8,99,124,2,0,0,0,134,8,152,181,26,1,114,8,107,124,2,0,0,0,129,8,187,181,1,0,114,8,116,124,2,0,0,0,134,8,119,200,26,1,115,8,124,124,2,0,0,0,134,8,132,200,1,0,115,8,133,124,2,0,0,0,134,8,29,243,26,1,116,8,141,124,2,0,0,0,129,8,56,243,1,0,116,8,150,124,2,0,0,0,134,8,41,188,213,28,117,8,158,124,2,0,0,0,134,8,51,188,105,68,117,8,167,124,2,0,0,0,134,24,163,195,110,68,118,8,182,124,2,0,0,0,134,24,163,195,124,68,122,8,210,124,2,0,0,0,134,24,163,195,140,68,128,8,228,124,2,0,0,0,134,24,163,195,155,68,133,8,56,125,2,0,0,0,134,8,185,216,172,68,140,8,64,125,2,0,0,0,129,8,195,216,226,49,140,8,76,125,2,0,0,0,134,8,60,115,155,29,141,8,132,125,2,0,0,0,134,8,77,115,155,29,142,8,185,125,2,0,0,0,134,8,170,187,19,3,143,8,220,125,2,0,0,0,134,8,184,187,21,0,143,8,15,126,2,0,0,0,134,8,184,138,19,3,144,8,50,126,2,0,0,0,134,8,200,138,21,0,144,8,101,126,2,0,0,0,134,8,107,221,218,0,145,8,136,126,2,0,0,0,134,8,124,221,16,0,145,8,182,126,2,0,0,0,134,8,93,214,183,68,146,8,217,126,2,0,0,0,134,8,113,214,192,68,146,8,7,127,2,0,0,0,134,8,169,137,19,3,147,8,44,127,2,0,0,0,134,8,195,137,21,0,147,8,65,127,2,0,0,0,134,8,221,137,19,3,148,8,102,127,2,0,0,0,134,8,254,137,21,0,148,8,156,127,2,0,0,0,134,8,197,225,19,3,149,8,191,127,2,0,0,0,134,8,224,225,21,0,149,8,242,127,2,0,0,0,134,8,207,131,19,3,150,8,23,128,2,0,0,0,134,8,233,131,21,0,150,8,77,128,2,0,0,0,134,8,250,9,19,3,151,8,114,128,2,0,0,0,134,8,8,10,21,0,151,8,168,128,2,0,0,0,134,8,251,225,19,3,152,8,203,128,2,0,0,0,134,8,19,226,21,0,152,8,254,128,2,0,0,0,134,8,158,203,35,50,153,8,33,129,2,0,0,0,134,8,177,203,125,54,153,8,83,129,2,0,0,0,134,8,181,206,35,50,154,8,120,129,2,0,0,0,134,8,206,206,125,54,154,8,176,129,2,0,0,0,134,24,163,195,6,0,155,8,240,129,2,0,0,0,129,0,108,5,248,48,155,8,12,130,2,0,0,0,198,0,235,116,202,68,157,8,76,130,2,0,0,0,198,0,235,116,229,68,176,8,76,131,2,0,0,0,134,24,163,195,6,0,180,8,84,131,2,0,0,0,134,8,172,214,123,49,180,8,92,131,2,0,0,0,129,8,181,214,143,49,180,8,101,131,2,0,0,0,134,8,230,216,40,50,181,8,109,131,2,0,0,0,129,8,241,216,47,50,181,8,118,131,2,0,0,0,134,24,163,195,243,68,182,8,140,131,2,0,0,0,198,9,120,149,26,1,184,8,148,131,2,0,0,0,129,8,130,149,1,0,184,8,157,131,2,0,0,0,131,24,163,195,1,0,185,8,172,131,2,0,0,0,150,0,179,150,254,68,186,8,224,131,2,0,0,0,134,8,185,216,5,69,187,8,232,131,2,0,0,0,129,8,195,216,16,69,187,8,241,131,2,0,0,0,134,8,20,224,26,1,188,8,20,132,2,0,0,0,134,8,31,224,1,0,188,8,40,132,2,0,0,0,134,8,138,155,26,1,189,8,75,132,2,0,0,0,134,8,148,155,1,0,189,8,95,132,2,0,0,0,134,8,184,138,19,3,190,8,130,132,2,0,0,0,134,8,200,138,21,0,190,8,150,132,2,0,0,0,134,8,205,165,26,1,191,8,185,132,2,0,0,0,134,8,216,165,1,0,191,8,205,132,2,0,0,0,134,8,234,219,19,3,192,8,242,132,2,0,0,0,134,8,248,219,21,0,192,8,7,133,2,0,0,0,134,24,163,195,6,0,193,8,26,133,2,0,0,0,134,24,163,195,106,49,193,8,60,133,2,0,0,0,198,0,29,237,113,49,194,8,68,134,2,0,0,0,198,8,38,239,123,49,196,8,55,135,2,0,0,0,198,0,180,193,129,49,196,8,64,135,2,0,0,0,129,0,187,219,1,0,197,8,124,135,2,0,0,0,145,0,189,231,146,61,198,8,83,136,2,0,0,0,145,24,185,195,20,47,200,8,96,136,2,0,0,0,150,8,10,135,28,69,200,8,103,136,2,0,0,0,150,0,130,188,34,69,200,8,0,0,0,0,0,0,198,5,235,116,202,68,201,8,120,136,2,0,0,0,198,1,235,116,229,68,220,8,128,136,2,0,0,0,149,0,252,216,41,69,224,8,83,32,0,0,0,0,132,24,163,195,6,0,226,8,163,137,2,0,0,0,145,24,185,195,20,47,226,8,175,137,2,0,0,0,198,8,38,239,123,49,226,8,189,137,2,0,0,0,134,24,163,195,106,49,226,8,198,137,2,0,0,0,198,0,180,193,129,49,227,8,208,137,2,0,0,0,129,0,133,139,6,0,228,8,96,138,2,0,0,0,145,0,49,159,50,69,228,8,60,139,2,0,0,0,145,0,94,179,200,59,235,8,76,139,2,0,0,0,145,0,173,158,66,69,238,8,160,139,2,0,0,0,145,0,16,217,79,69,244,8,52,141,2,0,0,0,129,24,163,195,91,69,249,8,140,141,2,0,0,0,150,0,219,160,104,69,2,9,200,141,2,0,0,0,134,0,49,217,126,69,18,9,120,142,2,0,0,0,134,0,49,217,132,69,19,9,244,142,2,0,0,0,150,0,197,160,140,69,21,9,182,143,2,0,0,0,150,0,166,144,140,69,29,9,208,143,2,0,0,0,131,0,19,232,154,69,37,9,216,144,2,0,0,0,131,0,23,200,160,69,37,9,92,146,2,0,0,0,150,0,8,153,169,69,38,9,220,148,2,0,0,0,145,24,185,195,20,47,40,9,44,149,2,0,0,0,134,24,163,195,189,54,40,9,219,149,2,0,0,0,131,8,245,178,183,69,43,9,227,149,2,0,0,0,131,8,79,143,183,69,43,9,236,149,2,0,0,0,131,0,159,159,189,69,43,9,33,150,2,0,0,0,147,0,228,220,161,6,45,9,38,150,2,0,0,0,131,0,6,180,7,57,47,9,48,150,2,0,0,0,131,0,215,154,7,57,48,9,67,150,2,0,0,0,131,0,172,145,7,57,49,9,102,150,2,0,0,0,131,0,52,242,183,54,50,9,145,150,2,0,0,0,134,8,56,151,26,1,52,9,153,150,2,0,0,0,134,8,20,145,26,1,52,9,164,150,2,0,0,0,198,0,68,154,218,0,52,9,248,150,2,0,0,0,145,24,185,195,20,47,52,9,140,151,2,0,0,0,131,24,163,195,197,69,52,9,11,152,2,0,0,0,131,8,88,216,35,50,54,9,19,152,2,0,0,0,131,8,105,139,26,1,54,9,31,152,2,0,0,0,131,8,7,179,19,3,54,9,44,152,2,0,0,0,131,0,91,229,7,57,54,9,68,152,2,0,0,0,131,0,207,219,7,57,55,9,200,152,2,0,0,0,131,0,228,220,206,69,56,9,112,153,2,0,0,0,131,0,52,242,206,69,57,9,52,154,2,0,0,0,131,0,52,242,215,69,58,9,152,154,2,0,0,0,131,0,173,159,189,69,59,9,0,155,2,0,0,0,131,0,137,136,222,69,61,9,228,155,2,0,0,0,198,0,68,154,218,0,62,9,191,156,2,0,0,0,134,24,163,195,232,69,62,9,208,156,2,0,0,0,134,0,146,138,239,69,63,9,212,157,2,0,0,0,131,0,158,163,246,69,65,9,52,159,2,0,0,0,129,0,50,207,4,70,68,9,164,159,2,0,0,0,129,0,95,199,12,70,69,9,109,160,2,0,0,0,134,24,163,195,232,69,71,9,164,160,2,0,0,0,129,0,113,195,215,69,72,9,68,161,2,0,0,0,134,0,177,138,175,61,73,9,220,161,2,0,0,0,150,0,145,133,22,70,75,9,16,162,2,0,0,0,150,0,1,135,27,70,76,9,52,162,2,0,0,0,150,0,1,135,35,70,80,9,88,162,2,0,0,0,150,0,162,164,137,56,84,9,128,162,2,0,0,0,134,24,163,195,143,49,85,9,144,162,2,0,0,0,134,0,71,221,40,50,86,9,204,163,2,0,0,0,129,0,191,192,43,70,86,9,188,164,2,0,0,0,129,0,59,140,58,70,95,9,208,165,2,0,0,0,150,0,113,146,68,70,100,9,28,166,2,0,0,0,150,0,113,146,77,70,101,9,100,166,2,0,0,0,131,24,163,195,143,49,105,9,128,166,2,0,0,0,131,24,163,195,89,70,106,9,220,166,2,0,0,0,134,0,71,221,40,50,110,9,52,169,2,0,0,0,129,0,219,230,99,70,110,9,164,169,2,0,0,0,129,0,139,199,109,70,114,9,196,170,2,0,0,0,129,0,208,231,128,70,118,9,18,171,2,0,0,0,147,0,164,117,136,70,122,9,30,171,2,0,0,0,147,0,133,117,144,70,125,9,42,171,2,0,0,0,132,24,163,195,6,0,128,9,52,171,2,0,0,0,198,0,120,145,151,70,128,9,248,171,2,0,0,0,145,0,116,238,160,70,129,9,42,171,2,0,0,0,134,24,163,195,6,0,133,9,76,172,2,0,0,0,198,0,120,145,151,70,133,9,40,173,2,0,0,0,145,0,123,142,25,61,134,9,95,173,2,0,0,0,134,24,163,195,6,0,135,9,104,173,2,0,0,0,134,24,163,195,169,70,135,9,144,173,2,0,0,0,134,24,163,195,187,70,142,9,132,174,2,0,0,0,134,8,219,199,217,70,158,9,140,174,2,0,0,0,134,8,255,199,217,70,158,9,148,174,2,0,0,0,134,8,75,169,218,0,158,9,156,174,2,0,0,0,134,8,174,209,217,70,158,9,164,174,2,0,0,0,134,8,29,200,217,70,158,9,172,174,2,0,0,0,134,8,165,204,217,70,158,9,180,174,2,0,0,0,134,8,55,200,217,70,158,9,188,174,2,0,0,0,134,8,3,188,218,0,158,9,196,174,2,0,0,0,134,8,56,147,218,0,158,9,204,174,2,0,0,0,134,8,154,200,217,70,158,9,212,174,2,0,0,0,134,8,89,200,217,70,158,9,220,174,2,0,0,0,134,8,20,142,218,0,158,9,228,174,2,0,0,0,134,8,219,154,218,0,158,9,236,174,2,0,0,0,134,8,142,196,217,70,158,9,244,174,2,0,0,0,134,8,61,240,218,0,158,9,252,174,2,0,0,0,134,8,210,177,217,70,158,9,4,175,2,0,0,0,129,0,35,229,218,0,158,9,188,175,2,0,0,0,198,0,120,145,151,70,158,9,140,176,2,0,0,0,145,0,191,209,222,70,159,9,205,176,2,0,0,0,145,0,113,142,67,15,162,9,95,173,2,0,0,0,134,24,163,195,6,0,164,9,232,176,2,0,0,0,198,0,120,145,151,70,164,9,95,173,2,0,0,0,134,24,163,195,6,0,165,9,68,177,2,0,0,0,134,24,163,195,230,70,165,9,180,178,2,0,0,0,134,8,71,242,218,0,175,9,188,178,2,0,0,0,134,8,167,234,245,70,175,9,196,178,2,0,0,0,134,0,2,240,19,3,175,9,204,178,2,0,0,0,134,8,86,131,250,70,175,9,212,178,2,0,0,0,134,8,232,239,19,3,175,9,220,178,2,0,0,0,134,8,214,168,218,0,175,9,228,178,2,0,0,0,134,8,97,193,218,0,175,9,236,178,2,0,0,0,134,8,115,199,217,70,175,9,244,178,2,0,0,0,134,8,17,174,218,0,175,9,252,178,2,0,0,0,134,8,35,139,4,71,175,9,4,179,2,0,0,0,134,8,253,138,4,71,175,9,12,179,2,0,0,0,145,0,251,145,8,71,175,9,148,179,2,0,0,0,145,0,150,220,14,71,176,9,228,179,2,0,0,0,145,0,225,103,21,1,178,9,82,180,2,0,0,0,145,0,229,153,8,71,179,9,100,180,2,0,0,0,145,24,185,195,20,47,180,9,154,180,2,0,0,0,134,8,29,214,218,0,180,9,183,180,2,0,0,0,134,8,54,209,217,70,180,9,191,180,2,0,0,0,129,8,62,209,26,71,180,9,200,180,2,0,0,0,134,8,82,196,217,70,181,9,208,180,2,0,0,0,129,8,90,196,26,71,181,9,217,180,2,0,0,0,134,8,64,196,217,70,182,9,225,180,2,0,0,0,129,8,73,196,26,71,182,9,234,180,2,0,0,0,134,8,39,221,218,0,183,9,242,180,2,0,0,0,129,8,51,221,16,0,183,9,251,180,2,0,0,0,134,8,187,241,218,0,184,9,3,181,2,0,0,0,129,8,196,241,16,0,184,9,12,181,2,0,0,0,134,8,115,96,218,0,185,9,19,181,2,0,0,0,131,24,163,195,16,0,185,9,44,181,2,0,0,0,131,24,163,195,32,71,186,9,184,181,2,0,0,0,198,0,120,145,151,70,191,9,42,171,2,0,0,0,134,24,163,195,6,0,192,9,225,182,2,0,0,0,145,24,185,195,20,47,192,9,244,182,2,0,0,0,198,0,120,145,151,70,192,9,108,183,2,0,0,0,147,0,46,214,210,5,193,9,95,173,2,0,0,0,134,24,163,195,6,0,194,9,147,183,2,0,0,0,145,24,185,195,20,47,194,9,164,183,2,0,0,0,134,24,163,195,44,71,194,9,52,184,2,0,0,0,198,0,129,204,72,10,209,9,63,190,1,0,0,0,145,0,79,163,227,0,210,9,92,185,2,0,0,0,145,0,79,163,69,71,212,9,236,185,2,0,0,0,198,0,246,136,26,1,214,9,117,190,1,0,0,0,145,0,92,163,150,19,214,9,150,186,2,0,0,0,134,8,140,236,218,0,215,9,158,186,2,0,0,0,134,8,43,79,218,0,215,9,166,186,2,0,0,0,134,8,188,113,218,0,215,9,174,186,2,0,0,0,134,8,177,182,218,0,215,9,182,186,2,0,0,0,134,8,71,146,218,0,215,9,190,186,2,0,0,0,134,8,5,146,218,0,215,9,198,186,2,0,0,0,134,8,217,145,218,0,215,9,206,186,2,0,0,0,134,8,37,146,218,0,215,9,214,186,2,0,0,0,134,8,142,224,218,0,215,9,222,186,2,0,0,0,134,8,58,144,218,0,215,9,230,186,2,0,0,0,134,8,228,229,218,0,215,9,238,186,2,0,0,0,134,8,179,134,218,0,215,9,246,186,2,0,0,0,134,8,194,229,218,0,215,9,254,186,2,0,0,0,134,8,155,241,218,0,215,9,6,187,2,0,0,0,134,8,98,196,87,71,215,9,150,186,2,0,0,0,198,8,17,229,218,0,215,9,14,187,2,0,0,0,145,24,185,195,20,47,215,9,36,187,2,0,0,0,198,0,120,145,151,70,215,9,124,190,2,0,0,0,145,0,232,150,97,71,216,9,232,190,2,0,0,0,145,0,179,149,97,71,218,9,42,171,2,0,0,0,134,24,163,195,6,0,220,9,68,191,2,0,0,0,131,24,163,195,103,71,220,9,153,191,2,0,0,0,134,8,35,139,4,71,224,9,161,191,2,0,0,0,129,8,48,139,111,71,224,9,170,191,2,0,0,0,134,8,253,138,4,71,225,9,178,191,2,0,0,0,129,8,11,139,111,71,225,9,187,191,2,0,0,0,134,8,70,139,4,71,226,9,195,191,2,0,0,0,129,8,83,139,111,71,226,9,204,191,2,0,0,0,134,8,129,242,218,0,227,9,212,191,2,0,0,0,129,8,139,242,16,0,227,9,221,191,2,0,0,0,134,8,83,96,218,0,228,9,229,191,2,0,0,0,129,8,94,96,16,0,228,9,238,191,2,0,0,0,134,8,129,96,218,0,229,9,246,191,2,0,0,0,129,8,147,96,16,0,229,9,0,192,2,0,0,0,129,0,35,229,218,0,230,9,232,192,2,0,0,0,129,0,105,96,218,0,230,9,192,193,2,0,0,0,129,0,165,96,218,0,230,9,152,194,2,0,0,0,198,0,120,145,151,70,230,9,42,171,2,0,0,0,134,24,163,195,6,0,231,9,200,195,2,0,0,0,145,24,185,195,20,47,231,9,218,195,2,0,0,0,131,24,163,195,16,0,231,9,242,195,2,0,0,0,134,8,18,98,218,0,232,9,250,195,2,0,0,0,129,8,27,98,16,0,232,9,4,196,2,0,0,0,198,0,120,145,151,70,233,9,42,171,2,0,0,0,134,24,163,195,6,0,234,9,85,196,2,0,0,0,198,9,3,144,116,71,234,9,93,196,2,0,0,0,129,8,12,144,122,71,234,9,102,196,2,0,0,0,198,9,17,229,218,0,235,9,110,196,2,0,0,0,132,24,163,195,122,71,235,9,125,196,2,0,0,0,198,0,68,154,218,0,236,9,136,196,2,0,0,0,198,0,129,204,72,10,236,9,216,196,2,0,0,0,198,0,246,136,26,1,237,9,5,197,2,0,0,0,150,0,87,132,129,71,237,9,44,197,2,0,0,0,150,0,87,132,136,71,239,9,85,197,2,0,0,0,131,24,163,195,16,0,241,9,95,197,2,0,0,0,131,24,163,195,32,5,242,9,125,197,2,0,0,0,134,8,43,79,218,0,244,9,133,197,2,0,0,0,129,8,57,79,16,0,244,9,142,197,2,0,0,0,134,8,71,79,218,0,245,9,150,197,2,0,0,0,129,8,95,79,16,0,245,9,160,197,2,0,0,0,198,0,120,145,151,70,246,9,42,171,2,0,0,0,134,24,163,195,6,0,247,9,0,0,0,0,0,0,198,5,120,145,151,70,247,9,20,198,2,0,0,0,150,0,67,228,144,71,248,9,80,198,2,0,0,0,148,0,87,132,129,71,249,9,104,198,2,0,0,0,148,0,87,132,136,71,251,9,153,198,2,0,0,0,148,0,139,179,153,71,253,9,172,198,2,0,0,0,148,0,115,155,25,61,254,9,36,199,2,0,0,0,148,0,197,226,159,71,255,9,90,199,2,0,0,0,147,0,246,215,164,71,0,10,128,199,2,0,0,0,147,0,7,216,170,71,2,10,184,199,2,0,0,0,147,0,240,212,177,71,5,10,8,200,2,0,0,0,145,0,193,150,188,71,6,10,104,200,2,0,0,0,147,0,114,117,200,71,8,10,44,201,2,0,0,0,145,0,158,199,200,18,12,10,92,201,2,0,0,0,147,0,89,117,209,71,14,10,124,201,2,0,0,0,148,0,127,138,25,61,18,10,108,202,2,0,0,0,145,0,180,143,217,71,19,10,83,32,0,0,0,0,132,24,163,195,6,0,20,10,156,202,2,0,0,0,145,24,185,195,20,47,20,10,144,203,2,0,0,0,198,0,120,145,151,70,20,10,176,204,2,0,0,0,145,0,10,112,223,71,21,10,42,171,2,0,0,0,134,24,163,195,6,0,24,10,17,205,2,0,0,0,134,24,163,195,240,71,24,10,48,205,2,0,0,0,134,24,163,195,248,71,28,10,168,205,2,0,0,0,129,0,253,95,218,0,32,10,155,206,2,0,0,0,134,8,150,209,217,70,32,10,163,206,2,0,0,0,129,8,162,209,26,71,32,10,172,206,2,0,0,0,134,8,151,196,217,70,33,10,180,206,2,0,0,0,129,8,160,196,26,71,33,10,189,206,2,0,0,0,134,8,39,221,218,0,34,10,197,206,2,0,0,0,129,8,51,221,16,0,34,10,206,206,2,0,0,0,134,8,187,241,218,0,35,10,214,206,2,0,0,0,129,8,196,241,16,0,35,10,223,206,2,0,0,0,134,8,231,95,218,0,36,10,231,206,2,0,0,0,129,8,242,95,16,0,36,10,240,206,2,0,0,0,198,0,120,145,151,70,37,10,42,171,2,0,0,0,134,24,163,195,6,0,38,10,112,207,2,0,0,0,198,0,120,145,151,70,38,10,42,171,2,0,0,0,134,24,163,195,6,0,39,10,8,208,2,0,0,0,134,24,163,195,2,72,39,10,83,208,2,0,0,0,134,8,130,181,218,0,42,10,91,208,2,0,0,0,129,8,141,181,16,0,42,10,100,208,2,0,0,0,134,8,54,96,218,0,43,10,108,208,2,0,0,0,129,8,65,96,16,0,43,10,117,208,2,0,0,0,134,8,20,142,218,0,44,10,125,208,2,0,0,0,129,8,30,142,16,0,44,10,136,208,2,0,0,0,198,0,120,145,151,70,45,10,42,171,2,0,0,0,134,24,163,195,6,0,46,10,5,209,2,0,0,0,134,24,163,195,32,5,46,10,35,209,2,0,0,0,134,8,83,236,218,0,48,10,43,209,2,0,0,0,129,8,92,236,16,0,48,10,52,209,2,0,0,0,134,8,255,139,218,0,49,10,60,209,2,0,0,0,129,8,12,140,16,0,49,10,69,209,2,0,0,0,134,8,7,96,218,0,50,10,77,209,2,0,0,0,129,8,15,96,16,0,50,10,86,209,2,0,0,0,134,8,20,142,218,0,51,10,94,209,2,0,0,0,129,8,30,142,16,0,51,10,103,209,2,0,0,0,134,8,182,96,19,3,52,10,111,209,2,0,0,0,129,8,207,96,21,0,52,10,120,209,2,0,0,0,134,24,163,195,32,5,53,10,232,209,2,0,0,0,145,0,43,96,25,61,55,10,28,210,2,0,0,0,145,0,201,182,164,71,56,10,76,210,2,0,0,0,145,24,185,195,20,47,58,10,96,210,2,0,0,0,198,0,120,145,151,70,58,10,188,210,2,0,0,0,147,0,23,96,210,5,59,10,42,171,2,0,0,0,134,24,163,195,6,0,60,10,22,211,2,0,0,0,145,24,185,195,20,47,60,10,56,211,2,0,0,0,198,0,120,145,151,70,60,10,42,171,2,0,0,0,134,24,163,195,6,0,61,10,156,211,2,0,0,0,198,0,120,145,151,70,61,10,84,213,2,0,0,0,150,0,65,117,9,72,62,10,80,216,2,0,0,0,145,0,49,141,67,15,66,10,20,217,2,0,0,0,145,0,18,230,27,72,68,10,152,217,2,0,0,0,147,0,35,117,37,72,71,10,195,217,2,0,0,0,145,0,217,150,50,72,75,10,220,217,2,0,0,0,145,0,250,202,60,72,76,10,84,218,2,0,0,0,145,0,81,200,60,72,77,10,36,219,2,0,0,0,145,0,201,145,210,5,78,10,60,219,2,0,0,0,145,0,243,199,76,72,79,10,44,220,2,0,0,0,145,0,73,231,90,72,80,10,42,171,2,0,0,0,134,24,163,195,6,0,83,10,84,220,2,0,0,0,145,24,185,195,20,47,83,10,248,220,2,0,0,0,198,0,120,145,151,70,83,10,108,222,2,0,0,0,145,0,35,117,144,70,84,10,152,222,2,0,0,0,145,0,65,117,136,70,87,10,231,222,2,0,0,0,145,0,23,179,25,61,90,10,42,171,2,0,0,0,134,24,163,195,6,0,91,10,16,223,2,0,0,0,134,8,48,98,218,0,91,10,24,223,2,0,0,0,129,8,56,98,16,0,91,10,33,223,2,0,0,0,134,8,231,78,218,0,92,10,41,223,2,0,0,0,129,8,255,78,16,0,92,10,50,223,2,0,0,0,134,8,104,171,218,0,93,10,58,223,2,0,0,0,129,8,133,171,16,0,93,10,67,223,2,0,0,0,134,8,21,171,218,0,94,10,75,223,2,0,0,0,129,8,50,171,16,0,94,10,84,223,2,0,0,0,134,8,107,137,218,0,95,10,92,223,2,0,0,0,129,8,123,137,16,0,95,10,101,223,2,0,0,0,134,8,200,200,218,0,96,10,109,223,2,0,0,0,129,8,222,200,16,0,96,10,118,223,2,0,0,0,134,8,37,180,26,1,97,10,126,223,2,0,0,0,129,8,51,180,1,0,97,10,135,223,2,0,0,0,134,8,69,137,105,64,98,10,143,223,2,0,0,0,129,8,83,137,97,66,98,10,152,223,2,0,0,0,134,8,2,182,218,0,99,10,160,223,2,0,0,0,129,8,23,182,16,0,99,10,172,223,2,0,0,0,134,24,163,195,99,72,100,10,8,224,2,0,0,0,198,8,17,229,218,0,109,10,184,224,2,0,0,0,198,0,120,145,151,70,109,10,124,225,2,0,0,0,145,0,134,164,210,5,110,10,200,225,2,0,0,0,145,0,16,150,159,71,111,10,35,226,2,0,0,0,145,0,233,224,82,8,112,10,84,226,2,0,0,0,145,0,149,180,192,52,113,10,112,226,2,0,0,0,145,0,65,180,159,71,114,10,20,227,2,0,0,0,145,0,139,137,25,61,115,10,42,171,2,0,0,0,134,24,163,195,6,0,116,10,160,228,2,0,0,0,145,24,185,195,20,47,116,10,192,228,2,0,0,0,134,24,163,195,2,72,116,10,204,228,2,0,0,0,134,24,163,195,112,72,119,10,232,228,2,0,0,0,134,24,163,195,120,72,123,10,182,229,2,0,0,0,134,8,246,116,218,0,131,10,190,229,2,0,0,0,129,8,255,116,16,0,131,10,199,229,2,0,0,0,134,8,45,174,218,0,132,10,207,229,2,0,0,0,129,8,67,174,16,0,132,10,216,229,2,0,0,0,134,8,121,134,218,0,133,10,224,229,2,0,0,0,129,8,134,134,16,0,133,10,233,229,2,0,0,0,134,8,221,164,19,3,134,10,241,229,2,0,0,0,129,8,232,164,21,0,134,10,250,229,2,0,0,0,134,8,83,243,218,0,135,10,2,230,2,0,0,0,129,8,96,243,16,0,135,10,11,230,2,0,0,0,134,8,109,243,218,0,136,10,19,230,2,0,0,0,129,8,131,243,16,0,136,10,28,230,2,0,0,0,134,8,198,133,218,0,137,10,36,230,2,0,0,0,129,8,212,133,16,0,137,10,45,230,2,0,0,0,134,8,151,133,218,0,138,10,53,230,2,0,0,0,129,8,168,133,16,0,138,10,64,230,2,0,0,0,198,0,120,145,151,70,139,10,42,171,2,0,0,0,134,24,163,195,6,0,140,10,27,231,2,0,0,0,230,1,146,138,202,49,140,10,40,231,2,0,0,0,230,1,146,138,210,49,141,10,91,32,0,0,0,0,230,1,234,221,6,0,143,10,83,32,0,0,0,0,134,24,163,195,6,0,143,10,74,232,2,0,0,0,134,8,157,220,19,3,143,10,82,232,2,0,0,0,129,8,169,220,21,0,143,10,91,232,2,0,0,0,134,8,36,204,26,1,144,10,99,232,2,0,0,0,129,8,51,204,1,0,144,10,108,232,2,0,0,0,134,8,107,212,26,1,145,10,116,232,2,0,0,0,129,8,118,212,1,0,145,10,125,232,2,0,0,0,134,24,163,195,132,72,146,10,154,232,2,0,0,0,145,24,185,195,20,47,149,10,171,232,2,0,0,0,230,1,177,138,248,49,149,10,188,232,2,0,0,0,230,1,177,138,3,50,153,10,73,233,2,0,0,0,145,0,177,138,139,72,158,10,128,233,2,0,0,0,145,0,152,228,155,72,165,10,83,32,0,0,0,0,134,24,163,195,6,0,168,10,64,234,2,0,0,0,134,8,11,172,17,52,168,10,123,234,2,0,0,0,134,8,31,172,26,52,168,10,180,234,2,0,0,0,134,8,107,212,17,52,169,10,241,234,2,0,0,0,134,8,118,212,26,52,169,10,13,111,0,0,0,0,134,24,163,195,6,0,170,10,45,235,2,0,0,0,134,8,157,220,19,3,170,10,53,235,2,0,0,0,129,8,169,220,21,0,170,10,62,235,2,0,0,0,134,8,66,204,26,1,171,10,70,235,2,0,0,0,129,8,83,204,1,0,171,10,79,235,2,0,0,0,134,8,129,212,26,1,172,10,87,235,2,0,0,0,129,8,142,212,1,0,172,10,96,235,2,0,0,0,134,24,163,195,166,72,173,10,132,235,2,0,0,0,134,0,146,138,180,72,178,10,214,235,2,0,0,0,150,0,111,138,189,72,179,10,224,235,2,0,0,0,145,0,49,112,189,72,180,10,47,237,2,0,0,0,145,0,240,140,195,72,181,10,86,237,2,0,0,0,145,0,144,191,202,72,182,10,92,237,2,0,0,0,129,0,165,215,209,72,184,10,236,238,2,0,0,0,129,0,153,215,216,72,185,10,164,240,2,0,0,0,145,0,198,136,224,72,186,10,208,240,2,0,0,0,145,0,59,149,232,72,189,10,4,241,2,0,0,0,147,0,156,240,239,72,191,10,57,241,2,0,0,0,145,0,80,193,246,72,192,10,83,32,0,0,0,0,134,24,163,195,6,0,194,10,76,241,2,0,0,0,145,24,185,195,20,47,194,10,6,247,2,0,0,0,134,24,163,195,143,49,194,10,21,247,2,0,0,0,134,0,71,221,252,72,195,10,32,247,2,0,0,0,134,0,71,221,2,73,195,10,204,247,2,0,0,0,129,0,19,211,9,73,196,10,24,249,2,0,0,0,145,0,91,170,17,73,197,10,132,249,2,0,0,0,145,0,172,112,24,73,199,10,0,250,2,0,0,0,129,0,179,210,30,73,201,10,188,251,2,0,0,0,129,0,220,192,40,73,202,10,229,253,2,0,0,0,129,0,65,217,46,73,202,10,0,254,2,0,0,0,129,0,235,116,57,73,203,10,128,254,2,0,0,0,129,0,95,143,78,73,208,10,20,255,2,0,0,0,129,0,183,141,89,73,211,10,180,255,2,0,0,0,129,0,105,194,105,73,215,10,144,0,3,0,0,0,129,0,103,231,115,73,217,10,48,1,3,0,0,0,145,0,153,144,127,73,221,10,73,2,3,0,0,0,129,0,219,116,131,54,224,10,116,2,3,0,0,0,129,0,219,116,179,67,226,10,161,2,3,0,0,0,145,0,1,135,140,73,227,10,192,2,3,0,0,0,145,0,1,135,162,50,229,10,224,2,3,0,0,0,129,0,20,168,26,1,231,10,48,3,3,0,0,0,145,24,185,195,20,47,231,10,72,3,3,0,0,0,134,8,181,220,19,3,231,10,80,3,3,0,0,0,134,8,195,220,21,0,231,10,89,3,3,0,0,0,134,8,56,151,26,1,232,10,97,3,3,0,0,0,134,8,65,151,1,0,232,10,106,3,3,0,0,0,134,8,107,212,26,1,233,10,114,3,3,0,0,0,134,8,118,212,1,0,233,10,123,3,3,0,0,0,134,8,236,196,26,1,234,10,131,3,3,0,0,0,134,8,250,196,1,0,234,10,140,3,3,0,0,0,134,8,148,238,123,49,235,10,148,3,3,0,0,0,134,8,159,238,143,49,235,10,83,32,0,0,0,0,134,24,163,195,6,0,236,10,157,3,3,0,0,0,134,24,163,195,150,73,236,10,184,3,3,0,0,0,198,0,162,177,159,73,239,10,72,4,3,0,0,0,198,0,68,154,218,0,241,10,157,4,3,0,0,0,150,0,177,138,168,73,241,10,168,4,3,0,0,0,150,0,177,138,176,73,242,10,228,8,3,0,0,0,145,0,43,151,186,73,245,10,144,9,3,0,0,0,147,0,188,139,195,73,248,10,232,9,3,0,0,0,145,0,208,139,204,73,251,10,220,10,3,0,0,0,145,0,62,197,216,73,255,10,104,11,3,0,0,0,145,0,111,197,227,73,2,11,200,11,3,0,0,0,145,0,175,92,237,73,5,11,56,12,3,0,0,0,147,0,33,215,244,73,6,11,57,241,2,0,0,0,145,0,63,193,246,72,8,11,214,12,3,0,0,0,145,24,185,195,20,47,10,11,240,12,3,0,0,0,145,24,185,195,20,47,10,11,190,15,3,0,0,0,134,24,163,195,78,47,10,11,208,15,3,0,0,0,134,0,177,138,39,64,11,11,4,17,3,0,0,0,129,0,192,180,254,73,11,11,92,17,3,0,0,0,129,0,173,180,17,74,13,11,40,18,3,0,0,0,145,0,28,194,33,74,16,11,124,18,3,0,0,0,145,0,9,194,53,74,19,11,248,18,3,0,0,0,145,0,178,200,70,74,23,11,252,19,3,0,0,0,134,24,163,195,150,73,24,11,21,20,3,0,0,0,198,0,162,177,159,73,27,11,44,20,3,0,0,0,198,0,68,154,218,0,29,11,131,20,3,0,0,0,134,24,163,195,88,74,29,11,168,20,3,0,0,0,134,8,151,137,26,1,33,11,176,20,3,0,0,0,134,8,33,165,98,74,33,11,184,20,3,0,0,0,134,8,222,232,26,1,33,11,192,20,3,0,0,0,134,8,164,233,26,1,33,11,200,20,3,0,0,0,134,0,57,132,104,74,33,11,52,21,3,0,0,0,134,0,72,132,104,74,35,11,136,21,3,0,0,0,134,0,250,180,112,74,37,11,59,22,3,0,0,0,134,0,87,223,112,74,38,11,116,22,3,0,0,0,134,0,181,177,119,74,39,11,208,22,3,0,0,0,134,0,88,241,126,74,40,11,80,23,3,0,0,0,198,0,68,154,218,0,41,11,141,23,3,0,0,0,145,24,185,195,20,47,41,11,161,23,3,0,0,0,132,24,163,195,134,74,41,11,176,23,3,0,0,0,134,8,126,218,98,74,42,11,184,23,3,0,0,0,134,0,232,114,141,74,42,11,194,23,3,0,0,0,134,0,72,223,141,74,44,11,0,0,0,0,0,0,198,5,162,177,159,73,46,11,214,23,3,0,0,0,145,24,185,195,20,47,48,11,229,23,3,0,0,0,134,24,163,195,6,0,48,11,0,24,3,0,0,0,134,8,128,163,149,74,48,11,40,24,3,0,0,0,134,8,137,163,154,74,49,11,93,24,3,0,0,0,134,24,163,195,6,0,51,11,116,24,3,0,0,0,134,8,128,163,149,74,51,11,156,24,3,0,0,0,134,8,137,163,154,74,52,11,209,24,3,0,0,0,145,24,185,195,20,47,54,11,83,32,0,0,0,0,134,24,163,195,6,0,54,11,221,24,3,0,0,0,131,0,143,5,160,74,54,11,224,24,3,0,0,0,145,24,185,195,20,47,55,11,83,32,0,0,0,0,134,24,163,195,6,0,55,11,198,137,2,0,0,0,131,0,62,5,129,49,55,11,236,24,3,0,0,0,131,0,22,10,168,74,56,11,248,24,3,0,0,0,145,24,185,195,20,47,60,11,83,32,0,0,0,0,134,24,163,195,6,0,60,11,4,25,3,0,0,0,131,0,78,5,38,49,60,11,11,25,3,0,0,0,131,0,38,10,38,49,60,11,18,25,3,0,0,0,131,0,231,18,38,49,60,11,25,25,3,0,0,0,131,0,30,24,38,49,60,11,32,25,3,0,0,0,131,0,117,30,38,49,60,11,39,25,3,0,0,0,131,0,135,35,38,49,60,11,46,25,3,0,0,0,131,0,89,42,38,49,60,11,53,25,3,0,0,0,131,0,186,46,38,49,60,11,60,25,3,0,0,0,131,0,100,51,38,49,60,11,67,25,3,0,0,0,131,0,94,56,38,49,60,11,74,25,3,0,0,0,131,0,214,0,38,49,60,11,81,25,3,0,0,0,131,0,51,6,38,49,60,11,88,25,3,0,0,0,131,0,110,12,38,49,60,11,95,25,3,0,0,0,131,0,62,20,38,49,60,11,102,25,3,0,0,0,131,0,245,24,38,49,60,11,112,25,3,0,0,0,134,24,163,195,1,0,60,11,191,25,3,0,0,0,145,24,185,195,20,47,61,11,220,25,3,0,0,0,134,24,163,195,1,0,61,11,43,26,3,0,0,0,145,24,185,195,20,47,62,11,72,26,3,0,0,0,134,24,163,195,1,0,62,11,151,26,3,0,0,0,134,24,163,195,181,74,63,11,182,26,3,0,0,0,145,24,185,195,20,47,67,11,232,26,3,0,0,0,134,8,141,231,218,0,67,11,245,26,3,0,0,0,134,8,153,231,16,0,67,11,19,27,3,0,0,0,134,8,20,224,26,1,68,11,27,27,3,0,0,0,134,8,31,224,1,0,68,11,36,27,3,0,0,0,134,8,138,155,26,1,69,11,44,27,3,0,0,0,134,8,148,155,1,0,69,11,53,27,3,0,0,0,134,24,163,195,6,0,70,11,72,27,3,0,0,0,134,24,163,195,58,49,70,11,105,27,3,0,0,0,134,24,163,195,16,0,72,11,232,26,3,0,0,0,198,0,68,154,218,0,73,11,125,27,3,0,0,0,131,0,95,183,6,0,73,11,178,27,3,0,0,0,131,0,105,131,6,0,73,11,200,27,3,0,0,0,131,0,213,152,189,74,73,11,199,28,3,0,0,0,131,0,101,236,203,74,79,11,248,28,3,0,0,0,131,0,220,113,255,56,82,11,70,29,3,0,0,0,147,0,247,111,210,74,86,11,96,29,3,0,0,0,147,0,64,142,217,74,87,11,184,29,3,0,0,0,147,0,165,113,217,74,88,11,12,30,3,0,0,0,147,0,204,111,217,74,89,11,118,30,3,0,0,0,145,24,185,195,20,47,90,11,83,32,0,0,0,0,134,24,163,195,6,0,90,11,130,30,3,0,0,0,131,0,93,5,131,54,90,11,140,30,3,0,0,0,131,0,53,10,131,54,92,11,148,30,3,0,0,0,131,0,246,18,131,54,94,11,156,30,3,0,0,0,131,0,45,24,131,54,96,11,166,30,3,0,0,0,131,0,132,30,131,54,98,11,180,30,3,0,0,0,131,0,150,35,131,54,100,11,190,30,3,0,0,0,131,0,104,42,131,54,102,11,200,30,3,0,0,0,131,0,201,46,131,54,104,11,216,30,3,0,0,0,131,24,163,195,224,74,106,11,238,30,3,0,0,0,134,8,5,159,26,1,108,11,248,30,3,0,0,0,134,8,22,204,26,1,108,11,42,31,3,0,0,0,134,8,139,197,26,1,108,11,57,31,3,0,0,0,134,0,206,203,233,74,108,11,65,31,3,0,0,0,131,24,163,195,58,49,108,11,87,31,3,0,0,0,134,8,38,232,26,1,110,11,95,31,3,0,0,0,134,8,203,197,26,1,110,11,103,31,3,0,0,0,134,24,163,195,240,74,110,11,120,31,3,0,0,0,230,1,145,144,245,74,111,11,184,31,3,0,0,0,134,24,163,195,240,74,113,11,200,31,3,0,0,0,230,1,145,144,245,74,114,11,36,32,3,0,0,0,230,1,145,144,245,74,116,11,83,32,0,0,0,0,134,24,163,195,6,0,118,11,94,32,3,0,0,0,131,24,163,195,255,74,118,11,125,32,3,0,0,0,131,24,163,195,7,75,120,11,160,32,3,0,0,0,131,8,123,197,26,1,123,11,168,32,3,0,0,0,131,8,59,150,18,75,123,11,176,32,3,0,0,0,131,24,163,195,58,49,123,11,198,32,3,0,0,0,131,8,38,232,26,1,125,11,206,32,3,0,0,0,131,8,203,197,26,1,125,11,214,32,3,0,0,0,134,8,204,163,12,57,125,11,222,32,3,0,0,0,129,8,213,163,214,48,125,11,231,32,3,0,0,0,134,8,148,177,12,57,126,11,239,32,3,0,0,0,129,8,155,177,214,48,126,11,248,32,3,0,0,0,134,8,103,207,26,1,127,11,0,33,3,0,0,0,129,8,119,207,1,0,127,11,9,33,3,0,0,0,134,24,163,195,25,75,128,11,38,33,3,0,0,0,198,0,68,154,218,0,131,11,99,33,3,0,0,0,230,1,145,144,36,75,131,11,83,32,0,0,0,0,134,24,163,195,6,0,133,11,116,33,3,0,0,0,134,8,60,115,155,29,133,11,172,33,3,0,0,0,134,8,77,115,155,29,134,11,225,33,3,0,0,0,134,24,163,195,6,0,135,11,244,33,3,0,0,0,129,0,97,115,6,0,135,11,15,34,3,0,0,0,230,1,228,114,53,2,135,11,36,34,3,0,0,0,230,1,223,241,47,2,137,11,50,34,3,0,0,0,230,9,198,219,77,4,138,11,63,34,3,0,0,0,230,1,36,151,47,2,138,11,83,34,3,0,0,0,230,1,92,150,181,11,139,11,98,34,3,0,0,0,230,9,157,202,181,38,141,11,111,34,3,0,0,0,230,9,128,163,162,1,141,11,125,34,3,0,0,0,230,9,137,163,53,2,142,11,146,34,3,0,0,0,230,1,228,114,46,75,144,11,166,34,3,0,0,0,230,1,75,180,6,0,145,11,185,34,3,0,0,0,230,1,64,205,59,75,145,11,199,34,3,0,0,0,230,1,203,177,72,75,146,11,214,34,3,0,0,0,230,9,38,232,26,1,148,11,227,34,3,0,0,0,230,9,250,241,19,3,148,11,240,34,3,0,0,0,230,1,36,151,59,75,148,11,4,35,3,0,0,0,230,1,99,195,87,75,149,11,17,35,3,0,0,0,225,1,68,195,146,0,149,11,30,35,3,0,0,0,134,8,39,109,26,1,149,11,38,35,3,0,0,0,129,8,45,109,1,0,149,11,47,35,3,0,0,0,134,8,210,110,26,1,150,11,55,35,3,0,0,0,129,8,216,110,1,0,150,11,64,35,3,0,0,0,134,0,238,231,12,57,151,11,85,35,3,0,0,0,131,24,163,195,58,49,151,11,108,35,3,0,0,0,198,0,68,154,218,0,153,11,0,0,1,0,43,143,0,0,2,0,126,143,0,0,1,0,39,141,0,0,1,0,250,150,0,0,1,0,146,177,0,0,1,0,146,177,0,0,1,0,61,188,0,0,1,0,37,179,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,146,177,0,0,1,0,86,154,0,0,1,0,184,240,0,0,1,0,61,188,0,0,1,0,37,179,0,0,1,0,60,196,0,0,1,0,61,188,0,0,1,0,169,157,0,0,1,0,146,177,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,94,231,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,2,0,3,0,183,236,2,0,4,0,185,236,0,0,1,0,163,113,0,0,2,0,146,177,0,0,1,0,163,113,0,0,2,0,94,231,0,0,3,0,146,177,0,0,1,0,146,177,0,0,1,0,146,177,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,146,177,0,0,1,0,146,177,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,62,196,0,0,2,0,10,180,0,0,3,0,116,159,0,0,4,0,164,164,0,0,1,0,62,196,0,0,2,0,10,180,0,0,3,0,116,159,0,0,4,0,164,164,0,0,1,0,62,196,0,0,2,0,154,134,0,0,3,0,116,159,0,0,4,0,164,164,0,0,1,0,247,139,0,0,2,0,208,173,0,0,1,0,22,185,0,0,2,0,50,136,0,0,3,0,180,193,0,0,1,0,22,185,0,0,2,0,50,136,0,0,3,0,180,193,0,0,4,0,137,135,0,0,1,0,98,179,0,0,1,0,98,179,0,0,1,0,50,136,0,0,1,0,22,185,0,0,2,0,50,136,0,0,3,0,180,193,0,0,1,0,22,185,0,0,2,0,50,136,0,0,3,0,180,193,0,0,4,0,137,135,0,0,1,0,22,185,0,0,2,0,180,193,0,0,3,0,137,135,0,0,1,0,98,179,0,0,1,0,98,179,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,22,185,0,0,2,0,180,193,0,0,3,0,137,135,0,0,1,0,72,136,0,0,1,0,72,136,0,0,1,0,80,216,0,0,1,0,52,229,0,0,1,0,252,231,0,0,1,0,58,67,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,58,67,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,37,179,0,0,2,0,71,203,0,0,1,0,37,179,0,0,2,0,71,203,0,0,1,0,250,150,0,0,1,0,176,216,0,0,1,0,158,239,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,162,187,0,0,1,0,176,216,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,106,240,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,44,223,0,0,2,0,244,179,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,34,199,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,98,136,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,98,136,0,0,1,0,221,193,0,0,1,0,158,239,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,44,223,0,0,2,0,244,179,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,61,188,0,0,1,0,247,139,0,0,1,0,208,173,0,0,1,0,247,139,0,0,2,0,208,173,0,0,1,0,98,179,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,58,67,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,72,136,0,0,1,0,98,179,0,0,1,0,58,67,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,72,136,0,0,1,0,98,179,0,0,1,0,98,179,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,58,67,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,72,136,0,0,1,0,58,67,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,72,136,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,176,216,0,0,1,0,176,216,0,0,1,0,158,239,0,0,1,0,176,216,0,0,1,0,158,239,0,0,1,0,176,216,0,0,1,0,158,239,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,176,216,0,0,1,0,139,146,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,44,223,0,0,2,0,244,179,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,44,223,0,0,2,0,244,179,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,250,150,0,0,1,0,162,139,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,212,112,0,0,2,0,177,155,0,0,3,0,62,224,0,0,4,0,44,223,0,0,5,0,244,179,0,0,6,0,176,156,0,0,7,0,5,225,0,0,8,0,223,243,0,0,1,0,48,199,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,44,223,0,0,2,0,244,179,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,34,199,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,247,139,0,0,1,0,208,173,0,0,1,0,247,139,0,0,2,0,208,173,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,178,236,0,0,2,0,130,202,0,0,3,0,172,217,0,0,4,0,150,220,0,0,1,0,178,236,0,0,2,0,130,202,0,0,3,0,77,215,0,0,4,0,172,217,0,0,5,0,150,220,0,0,1,0,178,236,0,0,2,0,130,202,0,0,3,0,172,217,0,0,4,0,150,220,0,0,5,0,207,179,0,0,1,0,178,236,0,0,2,0,130,202,0,0,3,0,77,215,0,0,4,0,172,217,0,0,5,0,150,220,0,0,6,0,207,179,0,0,1,0,140,144,0,0,2,0,250,150,0,0,1,0,144,113,0,0,1,0,185,217,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,61,188,0,0,1,0,247,208,0,0,1,0,70,11,0,0,2,0,134,19,0,0,1,0,71,63,0,0,2,0,250,67,0,0,3,0,203,73,0,0,1,0,32,221,0,0,2,0,236,133,0,0,1,0,32,232,0,0,1,0,32,232,0,0,2,0,231,157,0,0,3,0,32,221,0,0,1,0,52,229,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,92,202,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,106,240,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,25,225,0,0,1,0,92,202,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,137,220,0,0,1,0,34,199,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,92,202,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,92,202,0,0,2,0,137,220,0,0,1,0,220,112,0,0,1,0,92,202,0,0,1,0,92,202,0,0,1,0,92,202,0,0,1,0,92,202,0,0,1,0,92,202,0,0,1,0,92,202,0,0,1,0,92,202,0,0,1,0,117,202,0,0,1,0,104,202,0,0,1,0,51,202,0,0,1,0,216,153,0,0,2,0,199,234,0,0,3,0,112,131,0,0,4,0,224,240,0,0,5,0,223,234,0,0,1,0,41,196,0,0,2,0,219,242,0,0,1,0,53,203,0,0,1,0,197,194,0,0,2,0,10,203,0,0,1,0,131,241,0,0,2,0,250,150,0,0,1,0,131,241,0,0,2,0,82,238,0,0,3,0,214,237,0,0,4,0,250,150,0,0,1,0,230,239,0,0,1,0,146,177,0,0,1,0,224,216,0,0,2,0,131,144,0,0,3,0,25,227,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,247,139,0,0,1,0,247,139,0,0,2,0,179,114,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,4,0,85,208,0,0,1,0,176,156,0,0,2,0,5,225,0,0,3,0,158,204,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,4,0,85,208,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,4,0,85,208,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,1,0,158,239,0,0,2,0,150,220,0,0,3,0,165,231,0,0,4,0,85,208,0,0,1,0,162,139,0,0,2,0,158,239,0,0,3,0,150,220,0,0,4,0,165,231,0,0,5,0,85,208,0,0,1,0,150,220,0,0,2,0,165,231,0,0,1,0,162,139,0,0,2,0,158,239,0,0,3,0,243,109,0,0,4,0,135,111,0,0,1,0,158,239,0,0,2,0,22,116,0,0,3,0,228,109,0,0,4,0,120,111,0,0,5,0,112,111,2,0,6,0,220,109,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,240,157,0,0,2,0,162,139,2,0,3,0,190,152,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,223,138,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,164,143,0,0,1,0,138,239,0,0,1,0,138,239,0,0,1,0,167,157,0,0,2,0,171,157,0,0,3,0,85,215,0,0,1,0,163,194,0,0,1,0,242,197,0,0,2,0,235,198,0,0,1,0,222,198,0,0,2,0,191,168,0,0,3,0,8,162,0,0,1,0,52,135,0,0,2,0,223,215,0,0,3,0,48,168,0,0,1,0,151,202,0,0,2,0,191,168,0,0,3,0,8,162,0,0,4,0,224,216,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,106,234,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,106,234,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,106,234,0,0,4,0,133,95,0,0,5,0,152,216,0,0,6,0,224,216,0,0,1,0,250,150,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,106,234,0,0,4,0,6,221,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,106,234,0,0,1,0,223,215,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,223,215,0,0,2,0,224,216,0,0,1,0,70,191,0,0,2,0,224,216,0,0,1,0,144,201,0,0,2,0,242,197,0,0,1,0,217,159,0,0,2,0,223,215,0,0,3,0,18,143,0,0,1,0,223,215,0,0,1,0,160,178,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,79,11,0,0,2,0,143,19,0,0,1,0,79,11,0,0,2,0,143,19,0,0,1,0,37,179,0,0,1,0,250,150,0,0,1,0,245,206,0,0,2,0,223,215,0,0,3,0,18,143,0,0,1,0,223,215,0,0,1,0,191,168,0,0,1,0,250,150,0,0,1,0,227,115,0,0,1,0,195,217,0,0,1,0,96,182,0,0,2,0,151,211,0,0,3,0,1,204,0,0,1,0,8,162,0,0,1,0,48,168,0,0,1,0,96,182,0,0,1,0,85,215,0,0,1,0,238,109,0,0,2,0,130,111,0,0,3,0,153,151,0,0,1,0,228,151,0,0,2,0,167,157,0,0,3,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,3,0,214,151,0,0,1,0,162,139,0,0,2,0,31,110,0,0,3,0,157,111,0,0,4,0,176,156,0,0,5,0,5,225,0,0,6,0,228,151,0,0,7,0,211,157,0,0,1,0,211,232,0,0,2,0,109,132,0,0,1,0,211,232,0,0,1,0,38,97,0,0,2,0,54,97,0,0,3,0,65,234,0,0,4,0,73,161,0,0,1,0,211,232,0,0,2,0,167,157,0,0,3,0,171,157,0,0,1,0,162,139,0,0,1,0,224,216,0,0,1,0,171,178,0,0,1,0,0,223,0,0,2,0,11,224,0,0,3,0,208,222,0,0,4,0,8,177,0,0,5,0,48,168,0,0,1,0,162,139,0,0,2,0,15,164,0,0,3,0,48,168,0,0,1,0,0,223,0,0,2,0,11,224,0,0,3,0,208,222,0,0,4,0,228,151,2,0,5,0,48,168,0,0,1,0,0,223,0,0,2,0,11,224,0,0,3,0,208,222,0,0,1,0,86,177,0,0,2,0,234,176,0,0,1,0,142,109,0,0,2,0,34,111,0,0,3,0,201,109,0,0,4,0,93,111,0,0,1,0,142,109,0,0,2,0,34,111,0,0,3,0,201,109,0,0,4,0,93,111,0,0,1,0,193,151,0,0,2,0,251,109,0,0,3,0,143,111,0,0,4,0,169,195,0,0,1,0,238,109,0,0,2,0,130,111,0,0,3,0,153,151,0,0,1,0,238,109,0,0,2,0,130,111,0,0,3,0,153,151,0,0,4,0,106,234,0,0,1,0,228,151,0,0,2,0,167,157,0,0,3,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,3,0,214,151,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,211,157,0,0,1,0,224,216,0,0,1,0,211,232,0,0,2,0,109,132,0,0,1,0,211,232,0,0,1,0,211,232,0,0,1,0,84,218,0,0,1,0,211,232,0,0,1,0,22,97,0,0,2,0,54,97,0,0,1,0,38,97,0,0,2,0,54,97,0,0,3,0,65,234,0,0,4,0,73,161,0,0,1,0,70,97,0,0,2,0,22,97,0,0,3,0,65,234,0,0,4,0,73,161,0,0,1,0,211,232,0,0,2,0,167,157,0,0,3,0,171,157,0,0,4,0,216,138,0,0,1,0,211,232,0,0,2,0,167,157,0,0,3,0,171,157,0,0,1,0,175,211,0,0,1,0,154,113,0,0,2,0,75,172,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,230,239,0,0,2,0,221,243,0,0,3,0,250,150,0,0,1,0,230,239,0,0,2,0,221,243,0,0,3,0,250,150,0,0,1,0,230,239,0,0,2,0,221,243,0,0,3,0,250,150,0,0,1,0,250,150,0,0,1,0,158,239,0,0,1,0,165,231,0,0,2,0,8,162,0,0,1,0,165,231,0,0,2,0,8,162,0,0,3,0,224,216,0,0,1,0,8,162,0,0,2,0,248,138,0,0,3,0,134,215,0,0,4,0,204,214,0,0,1,0,248,138,0,0,2,0,134,215,0,0,3,0,204,214,0,0,4,0,191,168,0,0,1,0,223,138,0,0,1,0,165,231,0,0,1,0,165,231,0,0,2,0,86,153,0,0,1,0,165,231,0,0,1,0,223,215,0,0,2,0,8,162,0,0,3,0,191,168,0,0,4,0,158,239,0,0,1,0,199,215,0,0,2,0,8,162,0,0,1,0,199,215,0,0,2,0,191,168,0,0,3,0,8,162,0,0,1,0,58,201,0,0,2,0,223,215,0,0,1,0,175,201,0,0,2,0,58,201,0,0,3,0,218,203,0,0,4,0,223,78,0,0,5,0,206,158,0,0,6,0,188,158,0,0,1,0,223,215,0,0,2,0,175,201,0,0,3,0,58,201,0,0,4,0,218,203,0,0,1,0,71,201,0,0,2,0,226,158,0,0,1,0,248,138,0,0,2,0,223,215,0,0,1,0,96,212,0,0,2,0,191,168,0,0,3,0,248,138,0,0,4,0,223,215,0,0,1,0,165,231,0,0,2,0,248,138,0,0,3,0,223,215,0,0,4,0,86,153,0,0,1,0,165,231,0,0,2,0,223,215,0,0,1,0,165,231,0,0,2,0,223,215,0,0,1,0,165,231,0,0,2,0,223,215,0,0,3,0,86,153,0,0,1,0,165,231,0,0,2,0,223,215,0,0,1,0,85,157,0,0,2,0,223,215,0,0,1,0,158,239,0,0,1,0,158,239,0,0,1,0,158,239,0,0,1,0,119,241,0,0,2,0,222,163,0,0,3,0,32,179,0,0,1,0,131,241,0,0,2,0,111,163,0,0,3,0,222,163,0,0,4,0,32,179,0,0,1,0,158,239,0,0,1,0,206,175,0,0,2,0,230,239,0,0,3,0,221,243,0,0,1,0,158,239,0,0,2,0,49,161,0,0,1,0,158,239,0,0,1,0,204,214,0,0,2,0,8,162,0,0,3,0,191,168,0,0,4,0,206,175,0,0,5,0,158,239,0,0,1,0,191,168,0,0,2,0,158,239,0,0,1,0,8,162,0,0,2,0,206,175,0,0,3,0,158,239,0,0,1,0,191,168,0,0,2,0,158,239,0,0,1,0,204,214,0,0,2,0,206,175,0,0,3,0,158,239,0,0,1,0,153,115,0,0,1,0,250,150,0,0,2,0,35,242,0,0,1,0,8,162,0,0,2,0,206,175,0,0,3,0,223,215,0,0,1,0,191,168,0,0,2,0,223,215,0,0,1,0,250,150,0,0,1,0,158,239,0,0,1,0,158,239,0,0,1,0,1,235,0,0,2,0,8,235,0,0,3,0,158,239,0,0,1,0,1,235,0,0,2,0,8,235,0,0,3,0,158,239,0,0,1,0,1,235,0,0,2,0,8,235,0,0,3,0,158,239,0,0,1,0,1,235,0,0,2,0,8,235,0,0,3,0,158,239,0,0,1,0,158,239,0,0,1,0,191,168,0,0,2,0,158,239,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,206,175,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,195,233,0,0,1,0,23,236,0,0,1,0,104,163,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,2,0,224,216,0,0,3,0,11,142,0,0,1,0,97,11,0,0,2,0,161,19,0,0,1,0,97,11,0,0,2,0,161,19,0,0,1,0,8,180,0,0,1,0,8,180,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,162,187,0,0,2,0,176,216,0,0,3,0,175,162,0,0,4,0,176,156,0,0,5,0,5,225,0,0,6,0,1,166,0,0,7,0,226,178,0,0,1,0,48,236,0,0,2,0,1,166,0,0,1,0,128,241,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,106,233,0,0,2,0,131,234,0,0,3,0,149,234,0,0,4,0,175,162,0,0,1,0,250,150,0,0,1,0,226,149,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,162,139,0,0,2,0,0,223,0,0,3,0,208,222,0,0,4,0,11,224,0,0,5,0,172,223,0,0,1,0,228,239,0,0,1,0,162,139,0,0,2,0,0,223,0,0,3,0,208,222,0,0,4,0,11,224,0,0,5,0,172,223,0,0,1,0,211,239,0,0,2,0,219,239,0,0,1,0,97,219,0,0,2,0,171,218,0,0,3,0,30,223,0,0,1,0,172,223,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,31,110,0,0,2,0,79,109,0,0,3,0,210,221,0,0,4,0,250,150,0,0,1,0,78,183,0,0,1,0,235,198,0,0,2,0,8,162,0,0,1,0,150,142,0,0,1,0,235,198,0,0,2,0,5,238,0,0,3,0,117,113,0,0,1,0,235,198,0,0,2,0,5,238,0,0,3,0,52,229,0,0,1,0,153,112,0,0,2,0,134,112,0,0,3,0,20,157,0,0,4,0,52,229,0,0,1,0,248,138,0,0,2,0,235,198,0,0,3,0,86,153,0,0,4,0,5,238,0,0,5,0,52,229,0,0,1,0,235,198,0,0,2,0,5,238,0,0,3,0,52,229,0,0,1,0,235,198,0,0,2,0,106,234,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,144,113,0,0,2,0,228,239,0,0,1,0,8,167,0,0,1,0,40,183,0,0,2,0,67,218,0,0,3,0,112,134,0,0,1,0,63,166,0,0,2,0,73,237,0,0,3,0,235,198,0,0,1,0,112,134,0,0,2,0,36,134,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,228,239,0,0,1,0,11,237,0,0,1,0,247,237,0,0,1,0,11,237,0,0,1,0,11,237,0,0,1,0,11,237,0,0,1,0,11,237,0,0,2,0,112,134,0,0,1,0,250,150,0,0,1,0,228,239,0,0,2,0,30,223,0,0,1,0,144,113,0,0,1,0,144,113,0,0,1,0,235,198,0,0,2,0,144,113,0,0,1,0,195,233,0,0,1,0,195,233,0,0,1,0,195,233,0,0,1,0,195,233,0,0,1,0,195,233,0,0,1,0,162,139,0,0,2,0,243,222,0,0,3,0,192,222,0,0,4,0,237,223,0,0,5,0,140,223,0,0,6,0,216,155,0,0,7,0,253,155,0,0,1,0,142,166,0,0,2,0,165,166,0,0,1,0,223,166,0,0,1,0,10,203,0,0,1,0,142,166,0,0,2,0,165,166,0,0,1,0,162,139,0,0,2,0,199,239,0,0,3,0,8,232,0,0,4,0,199,223,0,0,5,0,216,155,0,0,6,0,253,155,0,0,1,0,95,228,0,0,2,0,251,238,0,0,1,0,95,228,0,0,1,0,8,162,0,0,2,0,235,198,0,0,3,0,131,240,0,0,4,0,36,203,0,0,5,0,229,202,0,0,1,0,95,228,0,0,1,0,95,228,0,0,2,0,63,166,0,0,1,0,95,228,0,0,2,0,63,166,0,0,3,0,11,237,0,0,4,0,199,223,0,0,1,0,162,139,0,0,2,0,77,166,0,0,3,0,103,167,0,0,4,0,199,223,0,0,5,0,91,167,0,0,6,0,11,237,0,0,7,0,216,155,0,0,8,0,253,155,0,0,1,0,162,139,0,0,2,0,77,166,0,0,3,0,103,167,0,0,4,0,199,223,0,0,5,0,91,167,0,0,6,0,11,237,0,0,1,0,249,161,0,0,1,0,162,139,0,0,2,0,77,166,0,0,3,0,103,167,0,0,4,0,199,223,0,0,5,0,56,167,0,0,6,0,11,237,0,0,1,0,102,151,0,0,2,0,216,155,0,0,3,0,253,155,0,0,1,0,235,198,0,0,2,0,8,162,0,0,3,0,145,200,0,0,1,0,235,198,0,0,2,0,145,200,0,0,3,0,160,197,0,0,1,0,235,198,0,0,2,0,160,197,0,0,1,0,112,134,0,0,1,0,112,134,0,0,1,0,195,233,0,0,1,0,251,238,0,0,1,0,162,139,0,0,2,0,224,216,0,0,3,0,11,142,0,0,1,0,11,142,0,0,2,0,138,239,0,0,1,0,158,239,0,0,2,0,132,237,0,0,3,0,91,167,0,0,1,0,52,229,0,0,2,0,142,228,0,0,3,0,17,203,0,0,1,0,158,239,0,0,2,0,5,225,0,0,3,0,176,156,0,0,4,0,132,237,0,0,5,0,91,167,0,0,6,0,86,177,0,0,1,0,158,239,0,0,2,0,113,167,0,0,3,0,176,237,0,0,4,0,176,156,0,0,5,0,37,236,0,0,6,0,86,177,0,0,7,0,87,212,0,0,1,0,87,212,0,0,2,0,86,177,0,0,3,0,216,134,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,223,215,0,0,2,0,195,217,0,0,1,0,5,225,0,0,2,0,176,156,0,0,3,0,220,220,0,0,1,0,230,239,0,0,2,0,221,243,0,0,3,0,250,150,0,0,1,0,202,140,0,0,2,0,209,140,0,0,1,0,176,156,0,0,1,0,230,239,0,0,1,0,230,239,0,0,2,0,250,150,0,0,1,0,230,239,0,0,2,0,253,157,0,0,1,0,253,157,0,0,2,0,176,156,0,0,1,0,216,140,0,0,1,0,226,204,0,0,2,0,246,204,0,0,3,0,89,219,0,0,4,0,126,219,0,0,1,0,220,220,0,0,1,0,164,164,0,0,2,0,116,159,0,0,3,0,186,114,0,0,1,0,164,164,0,0,2,0,116,159,0,0,3,0,186,114,0,0,4,0,62,196,0,0,1,0,86,177,0,0,2,0,78,165,0,0,3,0,4,114,0,0,1,0,150,198,0,0,2,0,186,114,0,0,3,0,62,196,0,0,4,0,175,162,0,0,5,0,4,114,0,0,1,0,231,154,0,0,2,0,175,162,0,0,3,0,228,167,0,0,4,0,33,168,0,0,5,0,226,178,0,0,1,0,8,197,0,0,2,0,24,197,0,0,3,0,228,167,0,0,4,0,33,168,0,0,5,0,226,178,0,0,1,0,246,204,0,0,2,0,226,204,0,0,3,0,126,219,0,0,4,0,89,219,0,0,1,0,251,170,0,0,1,0,220,220,0,0,1,0,10,143,0,0,1,0,144,115,0,0,1,0,175,162,0,0,1,0,175,162,0,0,2,0,8,197,0,0,1,0,146,177,0,0,1,0,3,198,0,0,2,0,175,162,0,0,1,0,231,154,0,0,2,0,251,170,0,0,3,0,86,153,0,0,4,0,74,157,0,0,1,0,86,153,0,0,1,0,231,154,0,0,2,0,86,153,0,0,1,0,231,154,0,0,2,0,86,153,0,0,1,0,231,154,0,0,2,0,70,209,0,0,3,0,106,234,0,0,4,0,181,113,0,0,5,0,228,138,0,0,1,0,151,202,0,0,2,0,70,209,0,0,3,0,106,234,0,0,4,0,243,138,0,0,5,0,181,113,0,0,1,0,231,154,0,0,2,0,70,209,0,0,3,0,106,234,0,0,4,0,181,113,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,231,154,0,0,2,0,70,209,0,0,1,0,231,154,0,0,2,0,70,209,0,0,1,0,231,154,0,0,2,0,151,202,0,0,3,0,70,209,0,0,4,0,86,153,0,0,1,0,85,157,0,0,2,0,181,113,0,0,1,0,165,116,0,0,2,0,160,197,0,0,3,0,145,200,2,0,4,0,144,233,0,0,1,0,163,113,0,0,2,0,182,113,0,0,3,0,161,102,0,0,1,0,170,194,0,0,1,0,138,195,0,0,2,0,170,194,0,0,3,0,69,207,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,118,218,0,0,2,0,128,195,0,0,1,0,116,139,0,0,2,0,106,229,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,1,0,163,113,0,0,1,0,163,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,70,131,0,0,2,0,105,216,0,0,1,0,116,139,0,0,1,0,163,113,0,0,1,0,61,188,0,0,1,0,61,188,0,0,1,0,61,188,0,0,1,0,67,181,0,0,1,0,116,139,0,0,2,0,106,229,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,15,235,0,0,1,0,176,237,0,0,1,0,194,152,0,0,1,0,131,241,0,0,2,0,235,241,0,0,1,0,26,173,0,0,1,0,176,216,0,0,1,0,250,150,0,0,1,0,176,237,0,0,1,0,176,237,0,0,2,0,87,212,0,0,3,0,91,222,2,0,4,0,223,138,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,250,150,0,0,2,0,15,235,0,0,1,0,250,150,0,0,2,0,15,235,0,0,3,0,207,136,0,0,1,0,109,226,0,0,1,0,109,226,0,0,2,0,58,138,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,237,0,0,2,0,87,212,0,0,1,0,87,212,0,0,1,0,86,177,2,0,2,0,186,114,0,0,1,0,52,115,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,163,113,0,0,2,0,94,177,0,0,1,0,176,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,237,0,0,1,0,87,212,0,0,1,0,86,177,2,0,2,0,186,114,0,0,1,0,52,115,0,0,1,0,52,229,0,0,1,0,52,229,0,0,2,0,144,172,0,0,3,0,187,237,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,163,113,0,0,2,0,94,177,0,0,1,0,181,221,0,0,2,0,75,209,0,0,3,0,86,177,0,0,4,0,114,194,0,0,1,0,181,221,0,0,2,0,75,209,0,0,3,0,86,177,0,0,1,0,176,216,0,0,2,0,251,224,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,121,154,0,0,1,0,121,154,0,0,2,0,126,132,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,52,229,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,43,137,0,0,1,0,168,140,0,0,2,0,10,117,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,237,0,0,2,0,177,234,0,0,3,0,94,131,0,0,4,0,121,154,0,0,1,0,176,237,0,0,1,0,176,237,0,0,2,0,73,177,0,0,1,0,176,237,0,0,1,0,176,237,0,0,1,0,176,237,0,0,2,0,91,222,0,0,3,0,86,177,0,0,1,0,87,212,2,0,2,0,105,155,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,109,226,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,237,0,0,2,0,87,212,0,0,1,0,176,237,0,0,2,0,91,222,0,0,3,0,87,212,0,0,1,0,87,212,0,0,2,0,223,156,0,0,1,0,87,212,0,0,2,0,223,156,0,0,1,0,86,177,2,0,2,0,186,114,0,0,1,0,88,183,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,224,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,224,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,223,138,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,227,165,0,0,1,0,181,221,0,0,2,0,75,209,0,0,3,0,86,177,0,0,4,0,114,194,0,0,1,0,176,216,0,0,1,0,176,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,176,237,0,0,2,0,15,235,0,0,3,0,87,212,0,0,1,0,176,237,0,0,2,0,15,235,0,0,3,0,87,212,0,0,4,0,227,211,0,0,1,0,176,237,0,0,2,0,15,235,0,0,3,0,87,212,0,0,1,0,87,212,0,0,2,0,86,177,0,0,3,0,216,134,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,43,140,0,0,4,0,224,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,121,154,0,0,1,0,52,229,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,101,140,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,121,154,0,0,1,0,187,236,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,101,140,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,121,154,0,0,1,0,205,219,0,0,1,0,126,132,2,0,2,0,125,226,0,0,1,0,187,236,0,0,1,0,187,236,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,91,222,0,0,1,0,176,237,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,43,140,0,0,4,0,224,216,0,0,1,0,205,219,0,0,1,0,205,219,0,0,1,0,205,219,0,0,1,0,176,237,0,0,2,0,190,234,0,0,1,0,176,237,0,0,2,0,91,222,0,0,3,0,37,236,0,0,4,0,86,177,0,0,1,0,176,237,0,0,2,0,91,222,0,0,3,0,37,236,0,0,4,0,86,177,0,0,5,0,87,212,0,0,1,0,176,237,0,0,2,0,87,212,0,0,3,0,91,222,0,0,4,0,247,208,2,0,5,0,211,226,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,121,154,0,0,1,0,176,237,0,0,2,0,121,140,0,0,3,0,52,229,0,0,1,0,176,237,0,0,2,0,190,234,0,0,1,0,205,219,0,0,1,0,121,154,0,0,2,0,126,132,0,0,1,0,100,135,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,1,0,87,212,0,0,2,0,132,208,2,0,3,0,250,150,0,0,1,0,131,241,0,0,1,0,131,241,0,0,2,0,176,213,0,0,1,0,131,241,0,0,2,0,176,213,0,0,1,0,87,212,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,2,0,147,174,0,0,1,0,37,179,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,2,0,3,132,0,0,3,0,15,235,0,0,4,0,109,132,0,0,5,0,78,183,0,0,1,0,37,179,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,2,0,147,174,0,0,3,0,220,176,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,226,212,0,0,2,0,100,194,0,0,1,0,51,194,0,0,2,0,60,194,0,0,1,0,51,194,0,0,2,0,60,194,0,0,1,0,176,237,0,0,2,0,19,225,0,0,3,0,78,183,0,0,4,0,224,216,0,0,1,0,176,237,0,0,2,0,86,177,0,0,3,0,126,180,0,0,1,0,176,237,0,0,2,0,201,176,0,0,1,0,176,237,0,0,2,0,78,183,0,0,3,0,19,225,0,0,4,0,3,132,0,0,1,0,126,180,0,0,2,0,195,199,0,0,1,0,151,203,0,0,2,0,155,156,0,0,3,0,171,237,0,0,1,0,146,177,0,0,2,0,62,196,0,0,1,0,76,213,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,241,180,0,0,2,0,41,181,0,0,3,0,220,176,0,0,4,0,255,235,0,0,1,0,37,179,0,0,1,0,94,11,0,0,2,0,158,19,0,0,1,0,37,179,0,0,1,0,76,213,0,0,2,0,78,183,0,0,3,0,10,116,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,4,213,0,0,1,0,37,179,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,78,183,0,0,2,0,176,237,0,0,1,0,149,145,0,0,1,0,157,218,0,0,2,0,114,237,0,0,1,0,76,213,0,0,1,0,78,183,0,0,2,0,10,116,0,0,1,0,76,213,0,0,2,0,149,219,0,0,1,0,76,213,0,0,2,0,149,219,0,0,1,0,76,213,0,0,1,0,176,237,0,0,2,0,16,209,0,0,1,0,176,237,0,0,2,0,15,213,0,0,3,0,78,183,0,0,1,0,176,237,0,0,2,0,15,213,0,0,3,0,240,221,0,0,1,0,87,212,0,0,1,0,176,237,0,0,2,0,78,183,0,0,3,0,244,174,0,0,1,0,176,237,0,0,2,0,86,177,0,0,3,0,231,174,0,0,4,0,241,180,0,0,1,0,86,177,0,0,2,0,231,174,0,0,3,0,241,180,0,0,1,0,195,199,0,0,1,0,58,170,0,0,1,0,58,170,0,0,1,0,58,170,0,0,1,0,209,152,0,0,2,0,12,225,0,0,1,0,12,225,0,0,1,0,58,170,0,0,1,0,209,152,0,0,2,0,12,225,0,0,1,0,12,225,0,0,1,0,58,170,0,0,1,0,58,170,0,0,1,0,58,170,0,0,2,0,66,216,0,0,3,0,237,136,0,0,1,0,209,152,0,0,2,0,34,209,0,0,1,0,209,152,0,0,2,0,12,225,0,0,1,0,12,225,0,0,1,0,58,170,0,0,1,0,58,170,0,0,1,0,58,170,0,0,1,0,209,152,0,0,2,0,34,209,0,0,1,0,209,152,0,0,2,0,34,209,0,0,3,0,174,172,0,0,1,0,209,152,0,0,2,0,34,209,0,0,1,0,58,170,0,0,1,0,209,152,0,0,2,0,34,209,0,0,3,0,45,152,0,0,1,0,209,152,0,0,2,0,12,225,0,0,1,0,12,225,0,0,1,0,58,170,0,0,1,0,123,115,0,0,1,0,58,170,0,0,2,0,123,115,0,0,1,0,26,173,0,0,1,0,159,113,0,0,1,0,14,173,0,0,2,0,250,150,0,0,1,0,14,173,0,0,2,0,159,154,0,0,1,0,14,173,0,0,2,0,159,154,0,0,3,0,1,150,0,0,1,0,14,173,0,0,2,0,186,226,0,0,3,0,173,225,0,0,1,0,250,150,0,0,1,0,14,173,0,0,1,0,43,170,0,0,1,0,239,151,0,0,2,0,92,151,0,0,3,0,43,170,0,0,1,0,239,151,0,0,2,0,74,151,0,0,3,0,43,170,0,0,1,0,58,170,0,0,1,0,204,152,0,0,2,0,158,172,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,2,0,223,215,0,0,1,0,58,170,0,0,2,0,75,209,0,0,3,0,223,215,0,0,1,0,75,209,0,0,2,0,115,153,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,139,146,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,195,217,0,0,2,0,39,222,0,0,3,0,29,222,0,0,1,0,139,146,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,2,0,224,216,0,0,3,0,80,216,0,0,4,0,101,222,0,0,5,0,109,222,0,0,6,0,47,157,0,0,1,0,52,229,0,0,2,0,101,222,0,0,3,0,109,222,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,80,216,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,162,139,0,0,1,0,224,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,211,157,0,0,1,0,224,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,138,239,0,0,1,0,151,202,0,0,2,0,248,138,0,0,1,0,130,225,0,0,2,0,151,202,0,0,1,0,151,202,0,0,2,0,230,239,0,0,1,0,151,202,0,0,1,0,151,202,0,0,1,0,151,202,0,0,1,0,151,202,0,0,1,0,151,202,0,0,1,0,151,202,0,0,2,0,15,235,0,0,3,0,78,165,0,0,1,0,223,215,0,0,1,0,223,215,0,0,2,0,224,216,0,0,1,0,144,201,0,0,2,0,15,235,0,0,3,0,3,198,0,0,4,0,17,198,0,0,5,0,248,138,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,104,242,0,0,1,0,104,242,2,0,1,0,243,133,0,0,2,0,177,113,0,0,3,0,3,158,0,0,4,0,15,158,0,0,5,0,27,209,0,0,6,0,50,144,0,0,1,0,177,113,0,0,1,0,176,237,0,0,2,0,54,237,0,0,3,0,125,237,0,0,4,0,141,237,0,0,5,0,230,179,0,0,6,0,112,234,0,0,7,0,15,235,0,0,8,0,243,179,0,0,1,0,176,237,0,0,2,0,74,222,0,0,3,0,23,222,0,0,4,0,237,156,0,0,1,0,176,237,0,0,2,0,15,235,0,0,3,0,243,179,0,0,4,0,85,156,0,0,1,0,78,183,0,0,2,0,176,237,0,0,3,0,224,216,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,162,139,0,0,1,0,240,157,0,0,2,0,162,139,2,0,3,0,179,152,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,148,229,0,0,2,0,85,178,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,158,239,0,0,2,0,76,156,0,0,3,0,119,224,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,175,236,0,0,1,0,146,11,0,0,2,0,223,19,0,0,1,0,175,236,0,0,1,0,112,155,0,0,2,0,127,172,0,0,1,0,175,236,0,0,1,0,175,236,0,0,2,0,235,187,0,0,3,0,174,116,0,0,4,0,32,152,0,0,1,0,175,236,0,0,2,0,235,187,0,0,1,0,175,236,0,0,2,0,235,187,0,0,1,0,186,114,0,0,2,0,181,113,0,0,1,0,181,113,0,0,2,0,45,209,0,0,1,0,104,238,0,0,1,0,235,198,0,0,2,0,18,205,0,0,3,0,146,219,0,0,1,0,111,163,0,0,2,0,176,237,0,0,1,0,111,163,0,0,2,0,176,237,0,0,3,0,130,225,0,0,1,0,111,163,0,0,2,0,176,237,0,0,1,0,176,237,0,0,2,0,111,163,0,0,3,0,75,209,0,0,4,0,130,225,0,0,1,0,176,237,0,0,2,0,111,163,0,0,3,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,75,209,0,0,1,0,175,236,0,0,1,0,175,236,0,0,2,0,235,187,0,0,1,0,186,114,0,0,2,0,181,113,0,0,1,0,181,113,0,0,2,0,45,209,0,0,1,0,175,236,0,0,1,0,231,154,0,0,1,0,243,143,0,0,1,0,24,152,0,0,2,0,160,152,0,0,1,0,106,234,0,0,1,0,235,198,0,0,1,0,112,134,0,0,1,0,86,153,0,0,1,0,78,165,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,235,198,0,0,2,0,85,178,0,0,1,0,235,198,0,0,2,0,202,196,0,0,1,0,235,198,0,0,2,0,15,235,0,0,3,0,78,165,0,0,4,0,202,196,0,0,1,0,112,155,0,0,2,0,127,172,0,0,1,0,231,154,0,0,1,0,231,154,0,0,2,0,243,143,0,0,3,0,24,152,0,0,4,0,160,152,0,0,5,0,40,169,0,0,1,0,231,154,0,0,2,0,70,209,0,0,3,0,99,138,0,0,1,0,40,218,0,0,2,0,26,218,0,0,3,0,8,166,0,0,4,0,81,205,0,0,1,0,81,205,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,112,155,0,0,1,0,231,154,0,0,2,0,70,209,0,0,1,0,186,114,0,0,1,0,121,136,0,0,1,0,118,181,0,0,2,0,179,242,0,0,3,0,182,198,0,0,4,0,164,156,0,0,5,0,129,224,0,0,6,0,55,206,0,0,1,0,118,181,0,0,2,0,179,242,0,0,3,0,182,198,0,0,4,0,164,156,0,0,5,0,129,224,0,0,6,0,55,206,0,0,7,0,64,112,0,0,8,0,131,194,0,0,1,0,3,198,0,0,1,0,3,198,0,0,2,0,243,143,0,0,1,0,3,198,0,0,2,0,101,181,0,0,3,0,231,162,0,0,1,0,3,198,0,0,2,0,243,143,0,0,3,0,231,162,0,0,1,0,3,198,0,0,2,0,243,143,0,0,3,0,24,152,0,0,4,0,160,152,0,0,5,0,231,162,0,0,1,0,104,238,0,0,1,0,104,238,0,0,1,0,186,114,0,0,2,0,181,113,0,0,1,0,175,236,0,0,1,0,186,114,0,0,2,0,181,113,0,0,1,0,175,236,0,0,2,0,235,187,0,0,1,0,138,239,0,0,1,0,138,239,0,0,1,0,176,237,0,0,2,0,113,167,0,0,3,0,69,219,0,0,4,0,172,205,0,0,1,0,176,237,0,0,2,0,113,167,0,0,3,0,69,219,0,0,4,0,172,205,0,0,1,0,69,219,0,0,2,0,172,205,0,0,1,0,69,219,0,0,2,0,172,205,0,0,1,0,69,219,0,0,2,0,172,205,0,0,1,0,69,219,0,0,2,0,172,205,0,0,1,0,138,239,0,0,1,0,242,197,0,0,2,0,235,198,0,0,1,0,222,198,0,0,2,0,191,168,0,0,1,0,151,202,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,91,188,2,0,4,0,248,138,0,0,1,0,223,215,0,0,2,0,52,229,0,0,1,0,223,215,0,0,2,0,52,229,0,0,1,0,223,215,0,0,2,0,52,229,0,0,1,0,89,149,0,0,2,0,68,149,0,0,3,0,52,229,0,0,1,0,223,215,0,0,2,0,52,229,0,0,1,0,223,215,0,0,2,0,52,229,0,0,3,0,152,216,0,0,1,0,252,133,0,0,2,0,103,172,0,0,1,0,162,139,0,0,1,0,223,215,0,0,1,0,144,201,0,0,2,0,242,197,0,0,1,0,96,182,0,0,2,0,204,218,0,0,3,0,107,205,0,0,4,0,241,218,0,0,5,0,150,205,0,0,6,0,1,204,0,0,1,0,69,219,0,0,2,0,172,205,0,0,1,0,162,139,0,0,1,0,208,222,0,0,2,0,172,223,0,0,3,0,0,223,0,0,4,0,11,224,0,0,5,0,217,179,0,0,6,0,184,223,0,0,1,0,208,222,0,0,2,0,172,223,0,0,3,0,0,223,0,0,4,0,11,224,0,0,5,0,48,168,0,0,1,0,8,180,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,80,141,0,0,2,0,235,241,0,0,1,0,162,139,0,0,2,0,0,223,0,0,3,0,208,222,0,0,4,0,172,223,0,0,5,0,11,224,0,0,6,0,166,109,0,0,7,0,58,111,0,0,1,0,222,163,0,0,2,0,32,179,0,0,1,0,167,157,0,0,1,0,167,157,0,0,2,0,250,150,0,0,1,0,191,152,0,0,1,0,223,215,0,0,2,0,191,152,0,0,1,0,191,152,0,0,1,0,167,157,0,0,1,0,59,164,0,0,1,0,222,163,0,0,1,0,222,163,0,0,1,0,167,157,0,0,2,0,212,215,0,0,1,0,15,235,0,0,2,0,109,132,0,0,1,0,15,235,0,0,2,0,109,132,0,0,3,0,250,150,0,0,1,0,130,225,0,0,1,0,250,150,0,0,2,0,77,215,0,0,1,0,61,188,0,0,1,0,61,188,0,0,1,0,64,222,0,0,2,0,131,241,0,0,3,0,126,222,0,0,4,0,189,201,0,0,1,0,191,152,0,0,1,0,37,179,0,0,1,0,48,168,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,176,156,0,0,2,0,5,225,0,0,3,0,128,152,0,0,4,0,223,215,0,0,1,0,176,156,0,0,2,0,5,225,0,0,3,0,223,215,0,0,1,0,162,139,0,0,1,0,70,170,0,0,2,0,111,154,0,0,3,0,109,154,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,230,239,0,0,2,0,221,243,0,0,3,0,250,150,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,196,115,0,0,1,0,113,159,0,0,1,0,44,223,0,0,2,0,244,179,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,169,157,0,0,1,0,111,154,0,0,2,0,109,154,0,0,1,0,111,154,0,0,2,0,109,154,0,0,3,0,183,194,0,0,1,0,111,154,0,0,2,0,109,154,0,0,3,0,183,194,0,0,1,0,151,202,0,0,1,0,77,215,0,0,1,0,250,150,0,0,2,0,150,142,0,0,1,0,250,150,0,0,2,0,150,142,0,0,1,0,250,150,0,0,2,0,229,199,0,0,1,0,250,150,0,0,1,0,18,143,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,130,202,0,0,2,0,178,236,0,0,3,0,152,216,0,0,4,0,8,162,0,0,1,0,130,202,0,0,2,0,178,236,0,0,3,0,152,216,0,0,4,0,8,162,0,0,5,0,73,135,0,0,6,0,20,243,0,0,1,0,130,202,0,0,2,0,77,215,0,0,3,0,178,236,0,0,4,0,152,216,0,0,5,0,8,162,0,0,1,0,130,202,0,0,2,0,77,215,0,0,3,0,178,236,0,0,4,0,152,216,0,0,5,0,8,162,0,0,6,0,73,135,0,0,7,0,20,243,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,37,179,0,0,2,0,71,203,0,0,1,0,162,139,0,0,2,0,166,109,0,0,3,0,58,111,0,0,4,0,177,109,0,0,5,0,69,111,0,0,6,0,183,109,0,0,7,0,75,111,0,0,8,0,189,109,0,0,9,0,81,111,0,0,10,0,195,109,0,0,11,0,87,111,0,0,12,0,110,109,0,0,13,0,2,111,0,0,14,0,118,109,0,0,15,0,10,111,0,0,16,0,126,109,0,0,17,0,18,111,0,0,18,0,134,109,0,0,19,0,26,111,0,0,1,0,162,139,0,0,2,0,166,109,0,0,3,0,58,111,0,0,4,0,15,164,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,223,215,0,0,2,0,195,217,0,0,1,0,250,150,0,0,1,0,168,161,0,0,1,0,168,161,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,98,136,0,0,1,0,221,243,0,0,2,0,176,237,0,0,1,0,98,136,0,0,1,0,115,151,0,0,1,0,150,214,2,0,2,0,227,231,0,0,1,0,164,188,0,0,1,0,162,139,0,0,2,0,166,109,0,0,3,0,58,111,0,0,4,0,177,109,0,0,5,0,69,111,0,0,6,0,183,109,0,0,7,0,75,111,0,0,8,0,189,109,0,0,9,0,81,111,0,0,10,0,195,109,0,0,11,0,87,111,0,0,12,0,110,109,0,0,13,0,2,111,0,0,14,0,118,109,0,0,15,0,10,111,0,0,16,0,126,109,0,0,17,0,18,111,0,0,18,0,134,109,0,0,19,0,26,111,0,0,1,0,162,139,0,0,2,0,166,109,0,0,3,0,58,111,0,0,4,0,15,164,0,0,1,0,162,139,0,0,2,0,195,217,0,0,1,0,98,136,0,0,1,0,98,136,0,0,1,0,48,199,0,0,2,0,187,155,0,0,3,0,73,224,0,0,4,0,176,156,0,0,5,0,5,225,0,0,6,0,37,217,0,0,7,0,158,239,0,0,1,0,250,150,0,0,2,0,8,166,0,0,3,0,197,237,0,0,1,0,48,199,0,0,2,0,117,222,0,0,3,0,125,222,0,0,4,0,76,131,0,0,5,0,130,136,0,0,6,0,158,239,0,0,1,0,48,199,0,0,2,0,187,155,0,0,3,0,73,224,0,0,4,0,176,156,0,0,5,0,5,225,0,0,1,0,67,6,0,0,2,0,71,6,0,0,3,0,106,7,0,0,4,0,140,12,0,0,5,0,226,12,0,0,6,0,23,14,0,0,7,0,85,20,0,0,8,0,171,20,0,0,9,0,1,21,0,0,1,0,178,5,0,0,2,0,181,5,0,0,3,0,153,11,0,0,4,0,156,11,0,0,5,0,230,19,0,0,6,0,233,19,0,0,7,0,157,24,0,0,8,0,160,24,0,0,9,0,39,179,0,0,10,0,43,179,0,0,11,0,47,179,0,0,12,0,51,179,0,0,13,0,55,179,0,0,14,0,59,179,0,0,15,0,63,179,0,0,16,0,67,179,0,0,1,0,195,217,0,0,1,0,242,202,0,0,2,0,2,203,0,0,1,0,178,5,0,0,2,0,181,5,0,0,3,0,153,11,0,0,4,0,156,11,0,0,5,0,230,19,0,0,6,0,233,19,0,0,7,0,157,24,0,0,8,0,160,24,0,0,1,0,178,5,0,0,2,0,181,5,0,0,3,0,153,11,0,0,4,0,156,11,0,0,5,0,230,19,0,0,6,0,233,19,0,0,7,0,157,24,0,0,8,0,160,24,0,0,1,0,61,188,0,0,1,0,151,202,0,0,2,0,224,216,0,0,1,0,17,151,0,0,2,0,191,152,0,0,3,0,1,145,0,0,1,0,116,139,0,0,2,0,106,229,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,1,0,163,113,0,0,1,0,163,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,70,131,0,0,2,0,105,216,0,0,1,0,116,139,0,0,1,0,163,113,0,0,1,0,61,188,0,0,1,0,61,188,0,0,1,0,67,181,0,0,1,0,116,139,0,0,2,0,106,229,0,0,1,0,61,188,0,0,1,0,70,131,0,0,1,0,165,116,0,0,2,0,151,106,0,0,1,0,163,113,0,0,2,0,182,113,0,0,3,0,161,102,0,0,1,0,170,194,0,0,1,0,138,195,0,0,2,0,69,207,0,0,1,0,70,131,0,0,1,0,116,139,0,0,1,0,168,138,0,0,2,0,81,201,0,0,1,0,154,134,0,0,1,0,55,109,0,0,2,0,226,110,0,0,3,0,58,109,0,0,4,0,229,110,0,0,1,0,55,109,0,0,2,0,226,110,0,0,3,0,58,109,0,0,4,0,229,110,0,0,1,0,131,241,0,0,1,0,162,139,0,0,1,0,205,109,0,0,2,0,51,109,0,0,3,0,44,223,0,0,4,0,19,225,0,0,5,0,97,111,0,0,6,0,222,110,0,0,7,0,244,179,0,0,8,0,227,163,0,0,9,0,103,177,0,0,1,0,196,167,0,0,2,0,103,177,0,0,3,0,180,163,0,0,4,0,187,163,0,0,5,0,62,161,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,56,152,0,0,3,0,230,239,0,0,4,0,221,243,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,56,152,0,0,3,0,230,239,0,0,4,0,221,243,0,0,1,0,55,109,0,0,2,0,226,110,0,0,3,0,58,109,0,0,4,0,229,110,0,0,1,0,221,243,0,0,2,0,234,243,0,0,3,0,230,239,0,0,4,0,181,236,0,0,1,0,163,113,0,0,2,0,182,113,0,0,3,0,190,116,0,0,4,0,62,161,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,199,163,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,199,163,0,0,1,0,52,229,0,0,1,0,141,238,0,0,2,0,197,237,0,0,3,0,152,236,0,0,4,0,199,163,0,0,1,0,52,229,0,0,1,0,18,143,0,0,1,0,17,200,0,0,2,0,209,209,0,0,3,0,44,200,0,0,4,0,176,204,0,0,5,0,70,200,0,0,6,0,168,200,0,0,7,0,106,200,0,0,1,0,17,200,0,0,2,0,13,200,0,0,3,0,93,169,0,0,4,0,209,209,0,0,5,0,44,200,0,0,6,0,176,204,0,0,7,0,70,200,0,0,8,0,24,188,0,0,9,0,65,147,0,0,10,0,168,200,0,0,11,0,106,200,0,0,12,0,227,154,0,0,13,0,74,240,0,0,14,0,40,142,0,0,15,0,26,205,0,0,16,0,218,177,0,0,1,0,52,229,0,0,1,0,100,11,0,0,2,0,164,19,0,0,3,0,129,24,0,0,1,0,223,142,0,0,2,0,214,142,0,0,1,0,52,229,0,0,1,0,83,242,0,0,2,0,134,154,0,0,3,0,206,153,0,0,4,0,48,154,0,0,5,0,243,168,0,0,6,0,111,193,0,0,7,0,129,199,0,0,8,0,33,174,0,0,9,0,61,139,0,0,10,0,25,139,0,0,1,0,28,165,0,0,1,0,28,240,0,0,2,0,105,146,0,0,1,0,48,154,0,0,1,0,249,153,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,32,179,0,0,1,0,101,209,0,0,2,0,179,196,0,0,3,0,178,196,0,0,4,0,63,221,0,0,5,0,205,241,0,0,1,0,52,229,0,0,1,0,52,229,0,0,1,0,236,162,0,0,1,0,152,236,0,0,2,0,139,79,0,0,3,0,197,113,0,0,4,0,191,182,0,0,5,0,90,146,0,0,6,0,23,146,0,0,7,0,236,145,0,0,8,0,56,146,0,0,9,0,12,225,0,0,10,0,73,144,0,0,11,0,248,229,0,0,12,0,189,134,0,0,13,0,213,229,0,0,14,0,173,241,0,0,15,0,114,196,0,0,1,0,37,179,0,0,1,0,94,11,0,0,2,0,158,19,0,0,1,0,94,11,0,0,2,0,158,19,0,0,1,0,37,179,0,0,1,0,52,229,0,0,1,0,167,157,0,0,2,0,152,236,0,0,1,0,167,157,0,0,2,0,152,236,0,0,1,0,61,139,0,0,2,0,25,139,0,0,3,0,96,139,0,0,4,0,149,242,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,52,229,0,0,1,0,212,164,0,0,1,0,250,150,0,0,1,0,52,229,0,0,1,0,250,150,0,0,1,0,140,144,0,0,1,0,169,157,0,0,1,0,250,150,0,0,2,0,52,229,0,0,1,0,10,203,0,0,2,0,52,229,0,0,1,0,139,79,0,0,1,0,139,79,0,0,2,0,119,79,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,52,229,0,0,1,0,57,228,0,0,1,0,57,228,0,0,1,0,250,150,0,0,2,0,52,229,0,0,1,0,250,150,0,0,2,0,52,229,0,0,1,0,250,150,0,0,1,0,177,115,0,0,1,0,186,114,0,0,1,0,250,150,0,0,2,0,20,157,0,0,1,0,250,150,0,0,2,0,126,222,0,0,3,0,20,157,0,0,1,0,131,157,0,0,1,0,208,150,0,0,2,0,52,229,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,118,180,0,0,4,0,199,163,0,0,1,0,205,219,0,0,2,0,75,209,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,118,180,0,0,4,0,199,163,0,0,1,0,177,115,0,0,1,0,93,240,0,0,1,0,52,229,0,0,1,0,111,210,0,0,2,0,169,196,0,0,3,0,120,234,0,0,1,0,88,183,0,0,2,0,23,112,0,0,3,0,63,221,0,0,4,0,205,241,0,0,1,0,111,210,0,0,2,0,169,196,0,0,3,0,63,221,0,0,4,0,205,241,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,52,229,0,0,1,0,52,229,0,0,1,0,88,183,0,0,2,0,76,96,0,0,3,0,40,142,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,52,229,0,0,1,0,178,236,0,0,2,0,25,140,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,131,157,0,0,2,0,40,142,0,0,1,0,131,157,0,0,1,0,131,157,0,0,2,0,132,131,0,0,1,0,52,229,0,0,1,0,131,157,0,0,1,0,52,229,0,0,1,0,52,229,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,199,163,0,0,4,0,29,185,0,0,1,0,250,150,0,0,2,0,146,222,0,0,1,0,220,187,0,0,2,0,146,222,0,0,3,0,52,229,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,199,163,0,0,4,0,29,185,0,0,1,0,23,236,0,0,1,0,101,218,0,0,1,0,101,218,0,0,1,0,250,150,0,0,1,0,17,200,0,0,1,0,165,216,0,0,2,0,167,157,0,0,3,0,233,142,0,0,1,0,52,229,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,199,163,0,0,1,0,141,238,0,0,2,0,152,236,0,0,3,0,199,163,0,0,1,0,205,219,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,38,166,0,0,2,0,23,79,0,0,3,0,162,171,0,0,4,0,79,171,0,0,5,0,139,137,0,0,6,0,244,200,0,0,7,0,65,180,0,0,8,0,97,137,0,0,9,0,44,182,0,0,1,0,52,229,0,0,1,0,38,166,0,0,1,0,186,114,0,0,1,0,26,173,0,0,1,0,148,185,0,0,1,0,186,114,0,0,1,0,111,157,0,0,1,0,89,174,0,0,2,0,8,117,0,0,3,0,147,134,0,0,1,0,89,174,0,0,2,0,8,117,0,0,3,0,147,134,0,0,4,0,243,164,0,0,1,0,89,174,0,0,2,0,8,117,0,0,3,0,147,134,0,0,4,0,243,164,0,0,5,0,171,243,0,0,6,0,153,243,0,0,7,0,226,133,0,0,8,0,185,133,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,52,229,0,0,1,0,162,139,0,0,1,0,162,139,0,0,2,0,224,216,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,220,220,0,0,2,0,113,204,0,0,3,0,199,212,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,224,216,0,0,1,0,176,216,0,0,2,0,150,220,0,0,3,0,176,156,0,0,4,0,5,225,0,0,5,0,146,222,0,0,6,0,80,229,0,0,7,0,199,212,0,0,1,0,223,138,0,0,2,0,176,156,0,0,3,0,5,225,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,223,215,0,0,2,0,195,217,0,0,3,0,220,220,0,0,4,0,100,204,0,0,5,0,155,212,0,0,1,0,226,228,0,0,1,0,234,214,0,0,1,0,234,214,0,0,1,0,181,236,0,0,1,0,80,141,0,0,2,0,223,138,0,0,1,0,220,215,0,0,1,0,158,239,0,0,1,0,220,215,0,0,2,0,82,238,0,0,3,0,20,157,0,0,1,0,220,215,0,0,2,0,82,238,0,0,1,0,52,196,0,0,1,0,199,212,0,0,2,0,220,220,0,0,1,0,162,139,0,0,1,0,144,194,0,0,1,0,198,210,0,0,1,0,59,199,0,0,2,0,20,157,0,0,1,0,198,112,0,0,2,0,220,220,0,0,1,0,212,192,0,0,1,0,198,210,0,0,1,0,162,139,0,0,2,0,0,223,0,0,3,0,11,224,0,0,4,0,172,223,0,0,5,0,208,222,0,0,1,0,97,11,0,0,2,0,161,19,0,0,3,0,191,152,0,0,1,0,97,11,0,0,2,0,161,19,0,0,3,0,126,24,0,0,4,0,182,30,0,0,1,0,97,11,0,0,2,0,161,19,0,0,1,0,2,227,0,0,2,0,125,194,0,0,3,0,201,237,0,0,4,0,207,241,0,0,1,0,87,217,0,0,2,0,105,136,0,0,3,0,113,136,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,32,232,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,163,113,0,0,2,0,182,113,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,139,218,0,0,2,0,240,234,0,0,3,0,247,232,0,0,1,0,99,241,0,0,2,0,178,236,0,0,1,0,154,113,0,0,1,0,154,113,0,0,2,0,66,229,0,0,3,0,164,212,0,0,1,0,158,239,0,0,2,0,236,192,0,0,3,0,191,152,0,0,1,0,220,220,0,0,2,0,199,212,0,0,3,0,92,197,0,0,1,0,158,239,0,0,2,0,220,220,0,0,3,0,168,152,0,0,4,0,224,139,0,0,1,0,99,241,0,0,2,0,43,215,0,0,3,0,106,151,0,0,1,0,222,214,0,0,2,0,106,151,0,0,3,0,81,197,0,0,1,0,106,151,0,0,1,0,223,215,0,0,2,0,106,151,0,0,1,0,199,212,0,0,2,0,220,220,0,0,1,0,178,236,0,0,1,0,193,200,0,0,2,0,104,238,0,0,1,0,29,147,0,0,2,0,104,238,0,0,3,0,52,229,0,0,1,0,193,200,0,0,2,0,104,238,0,0,3,0,34,137,0,0,1,0,29,147,0,0,2,0,104,238,0,0,3,0,34,137,0,0,4,0,52,229,0,0,1,0,193,200,0,0,1,0,139,218,0,0,2,0,250,150,0,0,3,0,210,233,0,0,1,0,99,241,0,0,2,0,178,236,0,0,1,0,72,165,0,0,2,0,248,138,0,0,3,0,139,202,0,0,4,0,210,233,0,0,1,0,248,138,0,0,2,0,250,150,0,0,1,0,248,138,0,0,2,0,250,150,0,0,1,0,104,238,0,0,1,0,104,238,0,0,1,0,61,188,0,0,1,0,178,236,0,0,1,0,139,218,0,0,1,0,250,150,0,0,2,0,210,233,0,0,1,0,15,235,0,0,2,0,12,233,0,0,1,0,99,241,0,0,2,0,178,236,0,0,1,0,104,238,0,0,1,0,104,238,0,0,2,0,250,150,0,0,1,0,104,238,0,0,1,0,104,238,0,0,2,0,250,150,0,0,1,0,154,113,0,0,1,0,72,136,0,0,1,0,130,202,0,0,2,0,176,156,0,0,3,0,5,225,0,0,4,0,150,220,0,0,1,0,125,194,0,0,1,0,125,194,0,0,1,0,125,194,0,0,1,0,4,112,0,0,2,0,232,115,0,0,3,0,250,164,0,0,4,0,0,151,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,176,156,0,0,2,0,5,225,0,0,1,0,165,231,0,0,1,0,97,109,0,0,2,0,245,110,0,0,3,0,84,109,0,0,4,0,232,110,0,0,5,0,140,133,0,0,6,0,61,163,0,0,1,0,178,236,0,0,2,0,205,142,0,0,3,0,107,152,0,0,1,0,238,109,0,0,2,0,130,111,0,0,3,0,176,156,0,0,4,0,5,225,0,0,1,0,4,112,0,0,1,0,125,194,0,0,1,0,125,194,0,0,1,0,125,194,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,167,157,0,0,2,0,171,157,0,0,1,0,29,159,0,0,2,0,1,204,0,0,1,0,106,234,0,0,2,0,3,198,0,0,1,0,211,152,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,211,152,0,0,1,0,230,239,0,0,2,0,221,243,0,0,1,0,128,11,0,0,2,0,192,19,0,0,1,0,17,198,0,0,2,0,1,204,0,0,1,0,17,198,0,0,2,0,136,11,0,0,3,0,200,19,0,0,1,0,106,234,0,0,2,0,3,198,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,222,163,0,0,2,0,32,179,0,0,3,0,162,207,0,0,1,0,94,11,0,0,2,0,158,19,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,235,241,0,0,2,0,250,150,0,0,1,0,235,241,0,0,1,0,235,241,0,0,1,0,235,241,2,0,2,0,250,150,0,0,1,0,235,241,0,0,1,0,235,241,0,0,2,0,250,150,0,0,1,0,146,163,0,0,1,0,146,163,0,0,1,0,131,241,0,0,2,0,93,238,0,0,1,0,146,163,0,0,1,0,250,150,0,0,1,0,250,150,0,0,1,0,230,239,0,0,2,0,221,243,5,0,6,0,5,0,85,0,5,0,10,0,9,0,92,0,10,0,14,0,11,0,100,0,12,0,108,0,13,0,112,0,14,0,34,0,15,0,120,0,33,0,144,0,34,0,184,0,50,0,38,0,51,0,42,0,52,0,46,0,54,0,144,0,55,0,184,0,80,0,144,0,80,0,168,2,82,0,184,0,127,0,184,0,128,0,144,0,131,0,184,0,168,0,144,0,169,0,168,2,169,0,144,0,171,0,168,2,174,0,144,0,179,0,144,0,180,0,184,0,182,0,244,2,183,0,244,2,184,0,244,2,187,0,244,2,6,1,144,0,8,1,184,0,35,1,50,0,36,1,50,0,40,1,50,0,45,1,54,0,46,1,62,0,46,1,66,0,46,1,70,0,46,1,221,0,9,0,163,195,1,0,17,0,163,195,6,0,25,0,163,195,10,0,41,0,163,195,16,0,49,0,163,195,16,0,57,0,163,195,16,0,65,0,163,195,16,0,73,0,163,195,16,0,81,0,163,195,16,0,89,0,163,195,21,0,97,0,163,195,16,0,129,0,163,195,26,0,153,0,163,195,16,0,201,0,163,195,6,0,225,0,163,195,6,0,73,1,163,195,16,0,121,1,163,195,6,0,73,1,163,195,6,0,185,1,99,195,146,0,105,0,163,195,6,0,137,0,163,195,6,0,145,0,163,195,1,0,145,0,106,132,206,0,145,0,106,132,212,0,105,0,68,154,218,0,105,0,129,204,227,0,249,1,130,209,16,1,1,2,68,154,218,0,9,2,114,145,21,1,249,1,201,156,26,1,113,1,163,195,16,0,17,2,163,195,6,0,185,0,163,195,139,1,25,2,163,195,16,0,33,2,163,195,16,0,148,0,195,140,162,1,148,0,163,195,169,1,156,0,163,195,182,1,156,0,163,195,207,1,156,0,50,136,246,1,156,0,251,135,1,2,172,0,195,140,162,1,116,0,163,195,169,1,180,0,223,241,47,2,180,0,137,163,53,2,180,0,36,151,47,2,41,2,118,143,85,2,49,2,152,140,97,2,41,2,36,151,85,2,188,0,195,140,162,1,196,0,223,241,47,2,196,0,137,163,53,2,196,0,128,163,162,1,204,0,38,232,26,1,204,0,64,205,47,2,212,0,99,195,245,2,220,0,121,231,8,3,44,0,195,140,13,3,193,1,62,236,19,3,73,2,103,145,6,0,36,0,195,140,13,3,228,0,195,140,38,3,188,0,163,195,169,1,228,0,163,195,169,1,52,0,163,195,6,0,52,0,51,189,51,3,60,0,163,195,6,0,60,0,51,189,51,3,236,0,228,125,69,3,236,0,38,189,84,3,244,0,93,185,102,3,89,2,61,242,122,3,249,1,217,243,162,3,113,1,163,195,6,0,249,1,227,219,170,3,105,2,163,195,16,0,180,0,128,163,162,1,4,1,163,195,6,0,12,1,228,114,13,3,12,1,38,232,26,1,20,1,99,195,245,2,28,1,121,231,8,3,36,1,128,163,23,4,36,1,218,219,1,0,36,1,21,235,29,4,44,1,163,195,6,0,52,1,163,195,169,1,44,1,228,114,53,2,60,1,198,219,77,4,60,1,223,241,47,2,249,1,227,219,87,4,60,1,128,163,162,1,52,1,195,140,8,3,97,2,66,242,122,3,185,0,163,195,6,0,185,0,163,195,16,0,185,0,176,139,218,0,113,0,209,236,134,4,113,0,196,203,139,4,68,1,163,195,6,0,76,1,99,195,245,2,84,1,121,231,8,3,92,1,215,241,8,3,92,1,120,149,218,4,113,2,26,202,234,4,121,2,188,144,251,4,145,0,28,220,1,5,113,1,163,195,32,5,145,2,23,135,79,5,100,1,228,114,13,3,100,1,38,232,26,1,108,1,218,219,1,0,116,1,38,232,26,1,116,1,203,177,117,5,145,0,163,195,6,0,124,1,99,195,245,2,132,1,121,231,8,3,145,0,106,132,157,5,145,0,106,132,163,5,145,0,201,156,26,1,145,0,212,156,1,0,97,2,141,145,175,5,249,1,163,195,184,5,249,1,201,243,210,5,249,1,21,235,252,5,148,1,223,241,47,2,148,1,128,163,162,1,148,1,36,151,47,2,148,1,137,163,53,2,156,1,163,195,13,3,156,1,46,150,19,3,156,1,120,149,8,3,153,2,74,133,99,6,249,1,227,219,123,6,249,1,250,188,218,0,249,1,231,242,129,6,161,2,27,14,135,6,25,2,163,195,6,0,153,2,193,237,161,6,153,2,190,165,161,6,164,1,163,195,169,1,172,1,163,195,1,0,249,1,156,134,48,7,169,2,106,143,54,7,172,1,38,232,26,1,145,1,22,153,67,7,145,1,99,154,74,7,180,1,228,114,13,3,145,0,130,209,16,1,145,0,36,151,98,7,145,0,21,235,105,7,249,1,249,240,113,7,177,2,194,240,192,7,161,2,68,154,238,7,153,2,174,196,247,7,196,1,163,195,1,0,204,1,38,232,26,1,212,1,128,163,23,4,129,2,156,100,51,8,220,1,163,195,13,3,153,2,174,196,82,8,220,1,46,150,19,3,220,1,120,149,8,3,228,1,99,195,245,2,236,1,121,231,8,3,204,1,228,114,13,3,244,1,163,195,6,0,244,1,128,163,23,4,244,1,218,219,1,0,244,1,21,235,29,4,244,1,38,232,26,1,244,1,228,114,13,3,244,1,99,195,50,9,252,1,121,231,8,3,252,1,62,236,19,3,153,2,199,235,99,6,244,1,53,235,116,9,153,2,193,237,127,9,244,1,83,140,133,9,249,1,129,204,199,9,161,2,166,164,210,5,65,2,114,145,135,6,145,1,26,202,220,9,12,2,163,195,1,0,12,2,228,114,13,3,12,2,99,195,50,9,20,2,121,231,8,3,20,2,62,236,19,3,105,0,129,204,72,10,153,2,174,196,99,6,145,0,106,132,212,10,193,2,143,141,222,10,193,0,114,145,231,10,28,2,38,232,26,1,36,2,99,195,245,2,44,2,121,231,8,3,97,2,11,155,17,11,52,2,163,195,6,0,60,2,99,195,50,9,68,2,121,231,8,3,52,2,228,114,13,3,68,2,62,236,19,3,52,2,241,240,103,11,193,0,167,115,127,11,84,2,92,150,181,11,84,2,137,163,53,2,92,2,163,195,6,0,100,2,99,195,245,2,108,2,121,231,8,3,116,2,120,149,218,4,92,2,75,180,6,0,116,2,215,241,8,3,92,2,228,114,13,3,92,2,241,240,103,11,84,2,223,241,47,2,84,2,128,163,162,1,124,2,163,195,6,0,153,2,190,165,127,9,97,2,66,242,77,12,132,2,163,195,13,3,132,2,46,150,19,3,132,2,120,149,8,3,153,1,163,195,6,0,217,2,79,149,140,12,153,1,241,240,145,12,249,1,205,154,166,12,121,2,209,144,251,4,57,2,68,154,218,0,249,1,227,219,147,13,148,2,163,195,6,0,148,2,228,114,13,3,148,2,38,232,26,1,148,2,128,163,23,4,65,2,68,154,218,0,60,2,38,232,26,1,60,2,163,195,6,0,60,2,228,114,13,3,249,1,227,219,67,15,145,1,101,142,218,0,249,1,145,144,132,15,249,1,205,154,141,15,145,1,26,202,152,15,105,0,246,136,26,1,233,2,163,195,6,0,145,0,140,209,135,16,249,1,227,219,223,16,1,2,250,188,230,16,1,2,136,226,235,16,164,2,163,195,1,0,164,2,228,114,13,3,164,2,38,232,26,1,164,2,128,163,23,4,148,2,99,195,50,9,172,2,121,231,8,3,172,2,62,236,19,3,249,1,196,152,146,17,161,2,166,164,151,17,113,1,163,195,139,1,180,2,128,163,23,4,180,2,228,114,13,3,180,2,163,195,6,0,161,2,27,14,200,18,145,1,88,51,232,18,188,2,163,195,6,0,196,2,228,114,13,3,196,2,38,232,26,1,204,2,99,195,245,2,212,2,121,231,8,3,220,2,163,195,6,0,220,2,228,114,13,3,220,2,38,232,26,1,220,2,241,240,103,11,161,2,27,14,150,19,228,2,163,195,6,0,236,2,99,195,245,2,244,2,121,231,8,3,252,2,215,241,8,3,252,2,120,149,218,4,180,0,228,114,53,2,156,1,7,227,8,3,145,0,106,132,237,20,4,3,163,195,6,0,4,3,38,232,26,1,4,3,128,163,23,4,12,3,99,195,245,2,20,3,121,231,8,3,28,3,228,114,13,3,4,3,75,180,6,0,9,2,68,154,218,0,36,3,38,232,26,1,36,3,128,163,23,4,36,3,163,195,13,22,57,2,246,136,26,1,36,3,75,180,6,0,44,3,75,180,6,0,36,3,228,114,13,3,44,3,38,232,26,1,44,3,141,145,6,0,44,3,163,195,6,0,44,3,128,163,23,4,36,3,34,140,13,22,44,3,34,140,13,22,44,3,228,114,13,3,44,3,21,235,29,4,36,3,99,195,50,9,52,3,121,231,8,3,52,3,62,236,19,3,44,3,218,219,1,0,60,3,99,195,245,2,68,3,121,231,8,3,76,3,99,195,245,2,84,3,121,231,8,3,36,3,163,195,1,0,92,3,163,195,6,0,92,3,228,114,53,2,100,3,223,241,47,2,100,3,128,163,162,1,52,2,38,232,26,1,52,2,128,163,23,4,108,3,128,163,23,4,116,3,38,232,26,1,116,3,228,114,13,3,52,2,99,195,50,9,124,3,121,231,8,3,124,3,62,236,19,3,132,3,163,195,169,1,52,2,53,235,117,24,140,3,99,195,245,2,148,3,121,231,8,3,172,1,163,195,6,0,172,1,228,114,13,3,156,3,163,195,6,0,156,3,228,114,13,3,156,3,38,232,26,1,156,3,241,240,103,11,172,3,163,195,6,0,172,3,228,114,13,3,172,3,38,232,26,1,172,3,241,240,103,11,180,3,163,195,6,0,180,3,228,114,13,3,180,3,38,232,26,1,180,3,241,240,103,11,65,2,68,154,94,25,249,1,36,157,199,9,249,1,227,219,99,25,145,0,21,235,105,25,124,2,163,195,1,0,84,2,228,114,53,2,153,2,217,236,159,25,145,0,163,195,16,0,145,0,156,134,187,25,1,3,68,154,218,0,249,1,154,222,214,25,92,2,128,163,23,4,92,2,38,232,26,1,196,3,163,195,13,3,196,3,46,150,19,3,145,0,166,242,26,1,249,1,27,157,199,9,153,2,95,153,99,6,249,1,143,220,35,27,204,3,163,195,1,0,204,3,228,114,13,3,204,3,53,235,116,9,204,3,128,163,23,4,212,3,163,195,6,0,212,3,99,195,107,28,220,3,121,231,129,28,228,3,215,241,8,3,228,3,120,149,218,4,220,3,62,236,19,3,212,3,223,241,47,2,236,3,223,241,47,2,236,3,128,163,162,1,236,3,137,163,53,2,65,2,246,136,26,1,97,2,174,143,213,28,164,1,195,140,243,28,244,3,163,195,6,0,252,3,163,195,6,0,4,4,137,163,53,2,12,4,137,163,53,2,4,4,128,163,162,1,12,4,128,163,162,1,20,4,163,195,6,0,20,4,60,115,155,29,9,1,217,243,168,29,116,0,195,140,53,2,28,4,163,195,6,0,105,2,163,195,6,0,36,4,163,195,6,0,44,4,228,114,13,3,44,4,38,232,26,1,52,4,128,163,23,4,129,2,1,243,51,8,249,1,196,152,136,31,116,1,228,114,13,3,180,2,38,232,26,1,9,3,163,195,212,31,113,0,91,172,221,31,60,4,163,195,13,3,209,1,109,155,239,31,17,3,17,214,19,3,113,0,251,220,246,31,60,4,46,150,19,3,60,4,120,149,8,3,121,2,230,144,251,4,113,0,68,154,0,32,217,1,105,209,17,32,25,3,128,163,23,32,33,3,120,149,218,0,209,1,163,195,16,0,249,1,13,193,218,0,209,1,217,226,54,32,68,4,92,150,181,11,76,4,38,232,26,1,84,4,99,195,245,2,92,4,121,231,8,3,100,4,215,241,8,3,68,4,223,241,47,2,100,4,120,149,218,4,68,4,128,163,162,1,108,4,163,195,6,0,108,4,137,163,53,2,41,3,111,145,214,32,209,1,163,195,227,32,145,0,106,132,28,33,209,1,109,155,37,33,108,4,163,195,1,0,209,1,217,226,69,33,68,4,137,163,53,2,25,2,163,195,139,1,249,1,196,152,89,33,249,1,196,152,95,33,249,1,194,163,218,0,180,2,163,195,1,0,33,3,204,237,26,1,209,1,109,155,87,34,33,3,201,156,26,1,116,4,163,195,1,0,209,1,156,134,48,7,225,1,110,146,107,34,225,1,115,157,218,0,225,1,23,143,218,0,116,4,228,114,13,3,180,2,21,235,29,4,217,2,201,156,139,4,217,2,76,159,139,34,217,2,10,157,147,34,116,4,38,232,26,1,116,4,128,163,23,4,124,4,38,232,26,1,132,4,99,195,245,2,140,4,121,231,8,3,57,2,111,145,93,35,148,4,128,163,162,1,156,4,223,241,47,2,156,4,128,163,162,1,164,4,163,195,6,0,164,4,228,114,53,2,172,4,163,195,6,0,172,4,228,114,53,2,153,2,190,165,199,36,180,4,163,195,6,0,188,4,228,114,13,3,196,4,99,195,245,2,204,4,121,231,8,3,212,4,163,195,6,0,220,4,163,195,6,0,220,4,75,180,6,0,212,4,99,195,3,38,228,4,121,231,8,3,220,4,228,114,13,3,228,4,62,236,19,3,212,4,204,235,22,38,220,4,99,195,50,9,236,4,121,231,8,3,212,4,36,151,47,2,236,4,62,236,19,3,244,4,163,195,6,0,244,4,28,236,22,38,244,4,99,195,3,38,252,4,121,231,8,3,252,4,62,236,19,3,153,2,74,133,117,38,12,5,99,115,149,38,20,5,163,195,6,0,12,5,10,203,170,38,124,0,228,114,53,2,12,5,97,115,6,0,124,0,223,241,47,2,124,0,198,219,77,4,124,0,36,151,47,2,124,0,92,150,181,11,124,0,157,202,181,38,124,0,128,163,162,1,124,0,137,163,53,2,132,0,228,114,13,3,132,0,75,180,6,0,132,0,64,205,47,2,132,0,203,177,117,5,132,0,38,232,26,1,132,0,250,241,19,3,132,0,36,151,47,2,140,0,99,195,245,2,10,0,8,0,106,39,8,0,12,0,115,39,10,0,36,0,120,39,8,0,40,0,129,39,8,0,44,0,134,39,8,0,80,0,139,39,8,0,84,0,144,39,8,0,92,0,144,39,8,0,96,0,149,39,8,0,100,0,154,39,8,0,104,0,159,39,8,0,108,0,134,39,8,0,112,0,164,39,8,0,116,0,169,39,8,0,120,0,174,39,8,0,124,0,179,39,8,0,128,0,184,39,8,0,132,0,189,39,8,0,136,0,194,39,8,0,140,0,199,39,8,0,144,0,204,39,8,0,148,0,209,39,8,0,152,0,214,39,8,0,156,0,219,39,8,0,160,0,224,39,8,0,164,0,229,39,8,0,168,0,234,39,8,0,172,0,239,39,8,0,248,0,244,39,8,0,252,0,249,39,8,0,0,1,254,39,8,0,4,1,134,39,8,0,28,1,139,39,8,0,32,1,144,39,8,0,36,1,149,39,8,0,40,1,3,40,8,0,44,1,154,39,8,0,48,1,8,40,8,0,52,1,13,40,8,0,56,1,18,40,8,0,60,1,159,39,8,0,64,1,23,40,8,0,68,1,28,40,8,0,72,1,33,40,8,0,76,1,38,40,8,0,80,1,43,40,8,0,84,1,48,40,8,0,100,1,139,39,8,0,104,1,144,39,8,0,108,1,149,39,8,0,112,1,3,40,8,0,116,1,154,39,8,0,120,1,8,40,8,0,124,1,13,40,8,0,128,1,18,40,8,0,132,1,159,39,8,0,136,1,23,40,8,0,140,1,28,40,8,0,144,1,33,40,8,0,148,1,38,40,8,0,152,1,43,40,8,0,156,1,48,40,8,0,160,1,53,40,8,0,164,1,134,39,8,0,168,1,58,40,8,0,172,1,63,40,8,0,204,1,149,39,8,0,4,2,139,39,8,0,8,2,144,39,8,0,12,2,149,39,8,0,16,2,3,40,8,0,20,2,154,39,8,0,24,2,8,40,8,0,28,2,13,40,8,0,32,2,18,40,8,0,36,2,159,39,8,0,40,2,23,40,8,0,44,2,28,40,8,0,48,2,33,40,14,0,100,2,68,40,8,0,104,2,28,40,8,0,132,2,154,39,8,0,168,2,144,39,8,0,208,2,79,40,8,0,108,3,149,39,8,0,112,3,3,40,8,0,116,3,84,40,8,0,120,3,159,39,8,0,184,3,3,40,8,0,188,3,3,40,8,0,192,3,89,40,8,0,196,3,28,40,8,0,216,3,94,40,8,0,220,3,99,40,8,0,224,3,79,40,8,0,56,4,104,40,8,0,60,4,149,39,8,0,64,4,154,39,8,0,152,4,109,40,8,0,156,4,114,40,8,0,160,4,119,40,8,0,164,4,124,40,8,0,168,4,129,40,8,0,172,4,134,40,8,0,176,4,139,40,8,0,180,4,144,40,8,0,184,4,149,40,8,0,188,4,154,40,8,0,192,4,159,40,8,0,196,4,53,40,8,0,200,4,164,40,8,0,204,4,169,40,8,0,208,4,169,40,8,0,212,4,174,40,8,0,216,4,174,40,8,0,220,4,179,40,8,0,224,4,179,40,8,0,240,4,149,39,8,0,244,4,149,39,8,0,8,5,8,40,8,0,28,5,149,39,8,0,32,5,3,40,8,0,36,5,184,39,8,0,52,5,159,39,8,0,56,5,179,39,8,0,60,5,184,40,8,0,64,5,189,40,8,0,76,5,3,40,8,0,80,5,8,40,8,0,84,5,164,40,8,0,88,5,8,40,8,0,92,5,28,40,8,0,108,5,144,39,8,0,112,5,149,39,8,0,116,5,3,40,8,0,120,5,154,39,8,0,124,5,8,40,8,0,144,5,58,40,8,0,160,5,139,39,8,0,164,5,144,39,8,0,168,5,149,39,8,0,172,5,3,40,8,0,192,5,194,40,8,0,196,5,199,40,12,0,204,5,204,40,12,0,208,5,209,40,12,0,212,5,214,40,8,0,4,6,139,39,8,0,8,6,144,39,8,0,12,6,149,39,8,0,16,6,3,40,8,0,20,6,154,39,8,0,24,6,8,40,8,0,28,6,13,40,8,0,32,6,18,40,8,0,36,6,159,39,8,0,40,6,23,40,8,0,44,6,139,39,8,0,48,6,144,39,8,0,52,6,149,39,8,0,56,6,139,39,8,0,60,6,144,39,8,0,64,6,149,39,8,0,68,6,3,40,8,0,72,6,109,40,8,0,76,6,114,40,8,0,80,6,119,40,8,0,84,6,159,40,8,0,88,6,124,40,8,0,92,6,129,40,8,0,96,6,134,40,8,0,100,6,139,40,14,0,168,6,219,40,8,0,180,6,3,40,8,0,228,6,4,41,8,0,232,6,9,41,8,0,236,6,14,41,8,0,240,6,19,41,8,0,244,6,24,41,8,0,248,6,84,40,8,0,252,6,29,41,8,0,0,7,19,41,8,0,4,7,14,41,8,0,8,7,34,41,8,0,12,7,39,41,8,0,16,7,44,41,8,0,20,7,49,41,8,0,24,7,34,41,8,0,28,7,39,41,8,0,32,7,44,41,8,0,36,7,19,41,8,0,40,7,14,41,8,0,44,7,9,41,8,0,48,7,49,41,3,0,52,7,54,41,3,0,56,7,57,41,3,0,60,7,60,41,3,0,64,7,63,41,8,0,68,7,24,41,8,0,72,7,84,40,8,0,76,7,29,41,8,0,80,7,19,41,8,0,84,7,14,41,14,0,120,7,66,41,8,0,152,7,163,41,8,0,160,7,168,41,8,0,180,7,3,40,8,0,184,7,149,39,8,0,188,7,144,39,8,0,196,7,48,40,8,0,224,7,3,40,8,0,228,7,144,39,8,0,248,7,13,40,8,0,252,7,23,40,14,0,48,8,173,41,8,0,172,8,206,41,12,0,184,8,211,41,12,0,188,8,216,41,8,0,72,9,139,39,8,0,76,9,144,39,8,0,80,9,149,39,8,0,84,9,3,40,8,0,88,9,154,39,8,0,92,9,8,40,8,0,100,9,33,40,8,0,128,9,159,39,8,0,132,9,149,39,8,0,20,10,104,40,8,0,24,10,154,39,12,0,56,10,221,41,8,0,64,10,104,40,8,0,68,10,226,41,3,0,84,10,231,41,3,0,88,10,234,41,3,0,92,10,237,41,3,0,96,10,240,41,3,0,100,10,243,41,3,0,104,10,246,41,3,0,108,10,249,41,3,0,112,10,252,41,3,0,116,10,255,41,3,0,120,10,2,42,3,0,124,10,5,42,3,0,128,10,8,42,3,0,132,10,11,42,3,0,136,10,14,42,3,0,140,10,17,42,3,0,144,10,154,5,14,0,148,10,20,42,14,0,152,10,39,42,8,0,160,10,139,39,8,0,164,10,144,39,8,0,168,10,149,39,8,0,176,10,46,42,8,0,12,11,139,39,8,0,16,11,144,39,8,0,20,11,149,39,8,0,24,11,3,40,8,0,28,11,154,39,8,0,32,11,8,40,8,0,36,11,13,40,8,0,40,11,18,40,8,0,44,11,159,39,8,0,48,11,23,40,8,0,88,11,139,39,8,0,92,11,144,39,8,0,96,11,149,39,8,0,100,11,3,40,8,0,104,11,154,39,8,0,108,11,8,40,8,0,164,11,51,42,3,0,176,11,56,42,3,0,180,11,59,42,3,0,184,11,62,42,3,0,188,11,65,42,3,0,192,11,68,42,3,0,196,11,71,42,3,0,200,11,74,42,3,0,204,11,77,42,3,0,208,11,80,42,3,0,212,11,83,42,3,0,216,11,86,42,3,0,220,11,89,42,3,0,224,11,54,41,3,0,228,11,92,42,3,0,232,11,92,42,14,0,236,11,95,42,14,0,240,11,110,42,14,0,244,11,125,42,8,0,36,12,139,39,8,0,40,12,144,39,8,0,44,12,149,39,8,0,248,12,8,40,8,0,252,12,3,40,8,0,0,13,164,39,8,0,20,13,3,40,8,0,24,13,159,39,8,0,28,13,18,40,8,0,32,13,89,40,8,0,36,13,130,42,14,0,80,13,135,42,14,0,92,13,146,42,14,0,96,13,135,42,14,0,100,13,159,42,8,0,188,13,164,39,8,0,196,13,28,40,8,0,200,13,144,39,8,0,236,14,139,39,8,0,240,14,144,39,8,0,244,14,149,39,8,0,248,14,3,40,8,0,252,14,154,39,8,0,0,15,8,40,8,0,4,15,13,40,8,0,8,15,18,40,8,0,12,15,159,39,8,0,16,15,23,40,8,0,20,15,28,40,8,0,24,15,33,40,8,0,92,16,226,41,8,0,96,16,139,39,8,0,100,16,164,39,8,0,104,16,154,39,8,0,116,16,139,39,8,0,120,16,144,39,8,0,124,16,149,39,8,0,128,16,3,40,8,0,132,16,154,39,8,0,144,23,164,39,8,0,148,23,8,40,8,0,152,23,180,42,8,0,160,23,134,39,8,0,164,23,154,39,8,0,168,23,185,42,8,0,188,23,139,39,8,0,192,23,144,39,8,0,196,23,149,39,8,0,200,23,3,40,8,0,204,23,154,39,8,0,208,23,8,40,8,0,212,23,13,40,8,0,216,23,18,40,8,0,220,23,159,39,8,0,224,23,23,40,8,0,228,23,28,40,8,0,232,23,33,40,8,0,236,23,38,40,8,0,76,24,139,39,8,0,80,24,144,39,8,0,84,24,149,39,8,0,88,24,3,40,8,0,92,24,154,39,8,0,96,24,8,40,8,0,100,24,13,40,8,0,104,24,18,40,8,0,108,24,159,39,8,0,112,24,23,40,8,0,144,24,139,39,8,0,148,24,144,39,8,0,152,24,149,39,8,0,156,24,3,40,8,0,160,24,154,39,8,0,164,24,8,40,8,0,172,24,139,39,8,0,176,24,144,39,8,0,180,24,149,39,8,0,184,24,3,40,8,0,192,24,139,39,8,0,196,24,144,39,8,0,200,24,149,39,8,0,208,24,139,39,8,0,212,24,144,39,8,0,216,24,149,39,8,0,220,24,3,40,8,0,224,24,154,39,8,0,228,24,8,40,8,0,232,24,13,40,8,0,20,25,139,39,8,0,24,25,144,39,8,0,28,25,149,39,8,0,32,25,3,40,8,0,36,25,154,39,8,0,40,25,8,40,46,0,0,0,11,0,151,77,46,0,0,0,19,0,160,77,46,0,0,0,27,0,191,77,46,0,0,0,35,0,200,77,46,0,0,0,43,0,39,78,46,0,0,0,51,0,66,78,46,0,0,0,59,0,81,78,46,0,0,0,67,0,104,78,46,0,0,0,75,0,110,78,46,0,0,0,83,0,124,78,46,0,0,0,91,0,130,78,99,0,0,0,99,0,154,79,195,0,0,0,218,10,144,39,3,1,0,0,115,0,144,39,195,2,0,0,218,10,144,39,163,4,0,0,218,10,144,39,99,5,0,0,99,0,163,79,131,5,0,0,99,0,185,79,227,5,0,0,218,10,144,39,99,6,0,0,131,0,207,79,163,6,0,0,218,10,144,39,193,6,0,0,123,0,144,39,225,6,0,0,123,0,144,39,1,7,0,0,123,0,144,39,33,7,0,0,123,0,144,39,65,7,0,0,123,0,144,39,129,7,0,0,123,0,144,39,161,7,0,0,123,0,144,39,233,7,0,0,83,0,104,78,9,8,0,0,83,0,104,78,105,8,0,0,83,0,104,78,137,8,0,0,83,0,104,78,35,9,0,0,107,0,249,79,195,9,0,0,218,10,144,39,35,12,0,0,107,0,249,79,163,13,0,0,218,10,144,39,128,14,0,0,123,0,144,39,160,14,0,0,123,0,144,39,192,14,0,0,123,0,144,39,224,14,0,0,123,0,144,39,0,15,0,0,123,0,144,39,32,15,0,0,123,0,144,39,33,15,0,0,123,0,144,39,64,15,0,0,123,0,144,39,65,15,0,0,123,0,144,39,96,15,0,0,123,0,144,39,97,15,0,0,123,0,144,39,129,15,0,0,123,0,144,39,161,15,0,0,123,0,144,39,193,15,0,0,123,0,144,39,225,15,0,0,123,0,144,39,224,16,0,0,123,0,144,39,0,17,0,0,123,0,144,39,96,17,0,0,123,0,144,39,128,17,0,0,123,0,144,39,0,18,0,0,123,0,144,39,32,18,0,0,123,0,144,39,65,18,0,0,123,0,144,39,97,18,0,0,123,0,144,39,128,18,0,0,123,0,144,39,129,18,0,0,123,0,144,39,160,18,0,0,123,0,144,39,161,18,0,0,123,0,144,39,193,18,0,0,123,0,144,39,225,18,0,0,123,0,144,39,1,19,0,0,123,0,144,39,97,19,0,0,123,0,144,39,129,19,0,0,123,0,144,39,161,19,0,0,123,0,144,39,193,19,0,0,123,0,144,39,163,22,0,0,218,10,144,39,33,23,0,0,123,0,144,39,96,24,0,0,123,0,144,39,128,24,0,0,123,0,144,39,160,24,0,0,123,0,144,39,161,24,0,0,123,0,144,39,192,24,0,0,123,0,144,39,99,25,0,0,107,0,249,79,131,25,0,0,107,0,249,79,0,26,0,0,123,0,144,39,3,26,0,0,218,10,144,39,32,26,0,0,123,0,144,39,64,26,0,0,123,0,144,39,96,26,0,0,123,0,144,39,131,26,0,0,218,10,144,39,227,27,0,0,147,0,144,39,73,30,0,0,34,0,104,78,65,31,0,0,123,0,144,39,97,31,0,0,123,0,144,39,129,31,0,0,123,0,144,39,161,31,0,0,123,0,144,39,193,31,0,0,123,0,144,39,73,32,0,0,34,0,104,78,35,33,0,0,218,10,144,39,65,33,0,0,123,0,144,39,97,33,0,0,123,0,144,39,129,33,0,0,123,0,144,39,161,33,0,0,123,0,144,39,33,34,0,0,123,0,144,39,65,34,0,0,123,0,144,39,97,34,0,0,123,0,144,39,129,34,0,0,123,0,144,39,131,34,0,0,123,0,144,39,161,34,0,0,123,0,144,39,163,34,0,0,107,0,249,79,195,34,0,0,107,0,249,79,227,34,0,0,123,0,144,39,1,35,0,0,123,0,144,39,3,35,0,0,123,0,144,39,33,35,0,0,123,0,144,39,35,35,0,0,123,0,144,39,65,35,0,0,123,0,144,39,97,35,0,0,123,0,144,39,129,35,0,0,123,0,144,39,161,35,0,0,123,0,144,39,193,35,0,0,123,0,144,39,225,35,0,0,123,0,144,39,227,35,0,0,123,0,144,39,33,36,0,0,123,0,144,39,65,36,0,0,123,0,144,39,97,36,0,0,123,0,144,39,128,36,0,0,123,0,144,39,129,36,0,0,123,0,144,39,160,36,0,0,123,0,144,39,161,36,0,0,123,0,144,39,192,36,0,0,123,0,144,39,224,36,0,0,123,0,144,39,0,37,0,0,123,0,144,39,32,37,0,0,123,0,144,39,64,37,0,0,123,0,144,39,96,37,0,0,123,0,144,39,128,37,0,0,123,0,144,39,160,37,0,0,123,0,144,39,192,37,0,0,123,0,144,39,195,37,0,0,107,0,249,79,195,37,0,0,218,10,144,39,224,37,0,0,123,0,144,39,0,38,0,0,123,0,144,39,32,38,0,0,123,0,144,39,73,38,0,0,131,0,3,80,193,39,0,0,123,0,144,39,225,39,0,0,123,0,144,39,1,40,0,0,123,0,144,39,33,40,0,0,123,0,144,39,97,40,0,0,123,0,144,39,129,40,0,0,123,0,144,39,161,40,0,0,123,0,144,39,64,41,0,0,131,0,224,78,1,43,0,0,123,0,144,39,33,43,0,0,123,0,144,39,160,45,0,0,123,0,144,39,192,45,0,0,123,0,144,39,224,45,0,0,123,0,144,39,0,46,0,0,123,0,144,39,32,46,0,0,123,0,144,39,64,46,0,0,123,0,144,39,96,46,0,0,123,0,144,39,128,46,0,0,123,0,144,39,160,46,0,0,123,0,144,39,192,46,0,0,123,0,144,39,64,47,0,0,123,0,144,39,96,47,0,0,123,0,144,39,128,47,0,0,123,0,144,39,160,47,0,0,123,0,144,39,32,48,0,0,123,0,144,39,64,48,0,0,123,0,144,39,96,48,0,0,123,0,144,39,128,48,0,0,123,0,144,39,160,48,0,0,123,0,144,39,192,48,0,0,123,0,144,39,224,48,0,0,123,0,144,39,0,49,0,0,123,0,144,39,97,52,0,0,123,0,144,39,129,52,0,0,123,0,144,39,64,58,0,0,123,0,144,39,96,58,0,0,123,0,144,39,224,58,0,0,123,0,144,39,0,59,0,0,123,0,144,39,192,66,0,0,131,0,47,79,193,70,0,0,123,0,144,39,225,70,0,0,123,0,144,39,1,71,0,0,123,0,144,39,33,71,0,0,123,0,144,39,65,71,0,0,123,0,144,39,97,71,0,0,123,0,144,39,129,71,0,0,123,0,144,39,193,72,0,0,123,0,144,39,225,72,0,0,123,0,144,39,1,73,0,0,123,0,144,39,33,73,0,0,123,0,144,39,65,73,0,0,123,0,144,39,97,73,0,0,123,0,144,39,129,73,0,0,123,0,144,39,64,76,0,0,123,0,144,39,96,76,0,0,123,0,144,39,128,76,0,0,123,0,144,39,160,76,0,0,123,0,144,39,192,76,0,0,123,0,144,39,224,76,0,0,123,0,144,39,0,77,0,0,123,0,144,39,4,77,0,0,139,0,144,39,32,77,0,0,123,0,144,39,64,77,0,0,123,0,144,39,96,77,0,0,123,0,144,39,97,79,0,0,123,0,144,39,192,79,0,0,147,0,144,39,160,81,0,0,123,0,144,39,192,81,0,0,123,0,144,39,224,81,0,0,123,0,144,39,0,82,0,0,123,0,144,39,32,82,0,0,123,0,144,39,64,82,0,0,123,0,144,39,96,82,0,0,123,0,144,39,128,82,0,0,123,0,144,39,128,83,0,0,123,0,144,39,160,83,0,0,123,0,144,39,192,83,0,0,123,0,144,39,224,83,0,0,123,0,144,39,0,84,0,0,123,0,144,39,32,84,0,0,123,0,144,39,64,84,0,0,123,0,144,39,96,84,0,0,123,0,144,39,128,84,0,0,123,0,144,39,160,84,0,0,123,0,144,39,96,85,0,0,123,0,144,39,128,85,0,0,123,0,144,39,160,85,0,0,123,0,144,39,192,85,0,0,123,0,144,39,224,85,0,0,123,0,144,39,0,86,0,0,123,0,144,39,32,86,0,0,123,0,144,39,64,86,0,0,123,0,144,39,96,86,0,0,123,0,144,39,128,86,0,0,123,0,144,39,160,86,0,0,123,0,144,39,192,86,0,0,123,0,144,39,224,86,0,0,123,0,144,39,0,87,0,0,123,0,144,39,32,87,0,0,123,0,144,39,64,87,0,0,123,0,144,39,64,88,0,0,123,0,144,39,96,88,0,0,123,0,144,39,128,88,0,0,123,0,144,39,160,88,0,0,123,0,144,39,192,88,0,0,123,0,144,39,224,88,0,0,123,0,144,39,0,89,0,0,123,0,144,39,32,89,0,0,123,0,144,39,64,89,0,0,123,0,144,39,96,89,0,0,123,0,144,39,128,91,0,0,123,0,144,39,160,91,0,0,123,0,144,39,192,91,0,0,123,0,144,39,224,91,0,0,123,0,144,39,0,92,0,0,123,0,144,39,32,92,0,0,123,0,144,39,64,92,0,0,123,0,144,39,96,92,0,0,123,0,144,39,193,92,0,0,123,0,144,39,64,94,0,0,123,0,144,39,96,94,0,0,123,0,144,39,128,94,0,0,123,0,144,39,160,94,0,0,123,0,144,39,192,95,0,0,123,0,144,39,224,95,0,0,123,0,144,39,193,101,0,0,123,0,144,39,225,101,0,0,123,0,144,39,0,102,0,0,123,0,144,39,1,102,0,0,123,0,144,39,32,102,0,0,123,0,144,39,33,102,0,0,123,0,144,39,64,102,0,0,123,0,144,39,65,102,0,0,123,0,144,39,96,102,0,0,123,0,144,39,97,102,0,0,123,0,144,39,129,102,0,0,123,0,144,39,161,102,0,0,123,0,144,39,193,102,0,0,123,0,144,39,225,102,0,0,123,0,144,39,1,103,0,0,123,0,144,39,33,103,0,0,123,0,144,39,33,103,0,0,210,10,144,39,65,103,0,0,123,0,144,39,97,103,0,0,123,0,144,39,129,103,0,0,123,0,144,39,161,103,0,0,123,0,144,39,32,110,0,0,123,0,144,39,64,110,0,0,123,0,144,39,96,110,0,0,123,0,144,39,128,110,0,0,123,0,144,39,1,115,0,0,123,0,144,39,33,115,0,0,123,0,144,39,65,115,0,0,123,0,144,39,97,115,0,0,123,0,144,39,129,115,0,0,123,0,144,39,1,118,0,0,123,0,144,39,33,118,0,0,123,0,144,39,65,118,0,0,123,0,144,39,97,118,0,0,123,0,144,39,129,118,0,0,123,0,144,39,161,118,0,0,123,0,144,39,225,118,0,0,123,0,144,39,33,119,0,0,123,0,144,39,0,120,0,0,131,0,92,79,225,120,0,0,123,0,144,39,1,121,0,0,123,0,144,39,161,121,0,0,123,0,144,39,193,121,0,0,123,0,144,39,225,121,0,0,123,0,144,39,1,122,0,0,123,0,144,39,33,122,0,0,123,0,144,39,65,122,0,0,123,0,144,39,97,122,0,0,123,0,144,39,129,122,0,0,123,0,144,39,161,122,0,0,123,0,144,39,193,122,0,0,123,0,144,39,1,123,0,0,123,0,144,39,33,123,0,0,123,0,144,39,65,123,0,0,123,0,144,39,225,124,0,0,123,0,144,39,1,125,0,0,123,0,144,39,33,125,0,0,123,0,144,39,65,125,0,0,123,0,144,39,97,125,0,0,123,0,144,39,129,125,0,0,123,0,144,39,161,125,0,0,123,0,144,39,193,125,0,0,123,0,144,39,225,125,0,0,123,0,144,39,65,126,0,0,123,0,144,39,97,126,0,0,123,0,144,39,129,126,0,0,123,0,144,39,161,126,0,0,123,0,144,39,193,126,0,0,123,0,144,39,225,126,0,0,123,0,144,39,1,127,0,0,123,0,144,39,33,127,0,0,123,0,144,39,65,127,0,0,123,0,144,39,97,127,0,0,123,0,144,39,129,127,0,0,123,0,144,39,193,127,0,0,123,0,144,39,225,127,0,0,123,0,144,39,1,128,0,0,123,0,144,39,1,130,0,0,123,0,144,39,33,130,0,0,123,0,144,39,65,130,0,0,123,0,144,39,97,130,0,0,123,0,144,39,129,130,0,0,123,0,144,39,96,137,0,0,147,0,144,39,0,138,0,0,123,0,144,39,32,138,0,0,123,0,144,39,64,138,0,0,123,0,144,39,96,138,0,0,123,0,144,39,0,139,0,0,123,0,144,39,32,139,0,0,123,0,144,39,64,139,0,0,123,0,144,39,96,139,0,0,123,0,144,39,128,139,0,0,123,0,144,39,160,139,0,0,123,0,144,39,32,140,0,0,123,0,144,39,64,140,0,0,123,0,144,39,96,140,0,0,123,0,144,39,128,140,0,0,123,0,144,39,192,142,0,0,123,0,144,39,224,142,0,0,123,0,144,39,0,143,0,0,123,0,144,39,32,143,0,0,123,0,144,39,64,143,0,0,123,0,144,39,96,143,0,0,123,0,144,39,128,143,0,0,123,0,144,39,160,143,0,0,123,0,144,39,192,144,0,0,123,0,144,39,224,144,0,0,123,0,144,39,0,145,0,0,123,0,144,39,32,145,0,0,123,0,144,39,64,145,0,0,123,0,144,39,96,145,0,0,123,0,144,39,192,157,0,0,123,0,144,39,224,157,0,0,123,0,144,39,192,179,0,0,123,0,144,39,224,179,0,0,123,0,144,39,225,193,0,0,123,0,144,39,1,194,0,0,123,0,144,39,225,199,0,0,123,0,144,39,1,200,0,0,123,0,144,39,33,200,0,0,123,0,144,39,97,200,0,0,123,0,144,39,97,200,0,0,210,10,144,39,32,201,0,0,123,0,144,39,64,201,0,0,123,0,144,39,96,201,0,0,123,0,144,39,97,201,0,0,123,0,144,39,128,201,0,0,123,0,144,39,129,201,0,0,123,0,144,39,160,201,0,0,123,0,144,39,192,201,0,0,123,0,144,39,224,201,0,0,123,0,144,39,0,202,0,0,123,0,144,39,32,202,0,0,123,0,144,39,64,202,0,0,123,0,144,39,128,202,0,0,123,0,144,39,160,202,0,0,123,0,144,39,192,202,0,0,123,0,144,39,224,202,0,0,123,0,144,39,0,203,0,0,123,0,144,39,32,203,0,0,123,0,144,39,64,203,0,0,123,0,144,39,96,203,0,0,123,0,144,39,128,203,0,0,123,0,144,39,160,203,0,0,123,0,144,39,64,204,0,0,123,0,144,39,96,204,0,0,123,0,144,39,128,204,0,0,123,0,144,39,160,204,0,0,123,0,144,39,224,207,0,0,123,0,144,39,96,208,0,0,123,0,144,39,128,208,0,0,123,0,144,39,160,208,0,0,123,0,144,39,192,208,0,0,123,0,144,39,0,209,0,0,123,0,144,39,32,209,0,0,123,0,144,39,128,209,0,0,123,0,144,39,160,209,0,0,123,0,144,39,192,227,0,0,123,0,144,39,224,227,0,0,123,0,144,39,0,228,0,0,123,0,144,39,32,228,0,0,123,0,144,39,64,228,0,0,123,0,144,39,96,228,0,0,123,0,144,39,128,228,0,0,123,0,144,39,160,228,0,0,123,0,144,39,192,228,0,0,123,0,144,39,224,228,0,0,123,0,144,39,192,233,0,0,123,0,144,39,224,233,0,0,123,0,144,39,0,234,0,0,123,0,144,39,32,234,0,0,123,0,144,39,64,234,0,0,123,0,144,39,96,234,0,0,123,0,144,39,128,234,0,0,123,0,144,39,160,234,0,0,123,0,144,39,192,234,0,0,123,0,144,39,224,234,0,0,123,0,144,39,0,235,0,0,123,0,144,39,32,235,0,0,123,0,144,39,32,236,0,0,123,0,144,39,64,236,0,0,123,0,144,39,160,236,0,0,123,0,144,39,192,236,0,0,123,0,144,39,0,238,0,0,123,0,144,39,32,238,0,0,123,0,144,39,64,238,0,0,123,0,144,39,96,238,0,0,123,0,144,39,192,241,0,0,123,0,144,39,224,241,0,0,123,0,144,39,0,242,0,0,123,0,144,39,32,242,0,0,123,0,144,39,64,242,0,0,123,0,144,39,96,242,0,0,123,0,144,39,128,242,0,0,123,0,144,39,160,242,0,0,123,0,144,39,192,242,0,0,123,0,144,39,224,242,0,0,123,0,144,39,160,243,0,0,123,0,144,39,192,243,0,0,123,0,144,39,224,243,0,0,123,0,144,39,0,244,0,0,123,0,144,39,32,244,0,0,123,0,144,39,64,244,0,0,123,0,144,39,192,244,0,0,123,0,144,39,224,244,0,0,123,0,144,39,0,245,0,0,123,0,144,39,32,245,0,0,123,0,144,39,64,245,0,0,123,0,144,39,96,245,0,0,123,0,144,39,128,245,0,0,123,0,144,39,160,245,0,0,123,0,144,39,192,245,0,0,123,0,144,39,224,245,0,0,123,0,144,39,128,249,0,0,123,0,144,39,160,249,0,0,123,0,144,39,192,249,0,0,123,0,144,39,224,249,0,0,123,0,144,39,0,250,0,0,123,0,144,39,32,250,0,0,123,0,144,39,64,250,0,0,123,0,144,39,96,250,0,0,123,0,144,39,128,250,0,0,123,0,144,39,160,250,0,0,123,0,144,39,192,250,0,0,123,0,144,39,224,250,0,0,123,0,144,39,0,251,0,0,123,0,144,39,32,251,0,0,123,0,144,39,64,251,0,0,123,0,144,39,96,251,0,0,123,0,144,39,128,251,0,0,123,0,144,39,160,251,0,0,123,0,144,39,128,253,0,0,123,0,144,39,160,253,0,0,123,0,144,39,192,253,0,0,123,0,144,39,224,253,0,0,123,0,144,39,0,254,0,0,123,0,144,39,32,254,0,0,123,0,144,39,64,254,0,0,123,0,144,39,96,254,0,0,123,0,144,39,128,254,0,0,123,0,144,39,160,254,0,0,123,0,144,39,192,254,0,0,123,0,144,39,224,254,0,0,123,0,144,39,0,255,0,0,123,0,144,39,32,255,0,0,123,0,144,39,64,255,0,0,123,0,144,39,96,255,0,0,123,0,144,39,64,0,1,0,123,0,144,39,96,0,1,0,123,0,144,39,128,0,1,0,123,0,144,39,160,0,1,0,123,0,144,39,192,0,1,0,123,0,144,39,224,0,1,0,123,0,144,39,128,2,1,0,123,0,144,39,160,2,1,0,123,0,144,39,192,2,1,0,123,0,144,39,224,2,1,0,123,0,144,39,0,3,1,0,123,0,144,39,32,3,1,0,123,0,144,39,160,7,1,0,123,0,144,39,192,7,1,0,123,0,144,39,224,7,1,0,123,0,144,39,0,8,1,0,123,0,144,39,32,8,1,0,123,0,144,39,64,8,1,0,123,0,144,39,96,8,1,0,123,0,144,39,128,8,1,0,123,0,144,39,160,8,1,0,123,0,144,39,192,8,1,0,123,0,144,39,96,19,1,0,123,0,144,39,128,19,1,0,123,0,144,39,160,19,1,0,123,0,144,39,192,19,1,0,123,0,144,39,96,25,1,0,123,0,144,39,128,25,1,0,123,0,144,39,160,25,1,0,123,0,144,39,192,25,1,0,123,0,144,39,224,25,1,0,123,0,144,39,0,26,1,0,123,0,144,39,160,26,1,0,123,0,144,39,192,26,1,0,123,0,144,39,64,29,1,0,123,0,144,39,96,29,1,0,123,0,144,39,128,29,1,0,123,0,144,39,160,29,1,0,123,0,144,39,100,109,1,0,139,0,144,39,1,0,6,0,0,0,49,1,1,0,9,0,0,0,50,1,1,0,10,0,0,0,51,1,1,0,12,0,0,0,52,1,1,0,16,0,0,0,53,1,1,0,20,0,0,0,54,1,1,0,24,0,0,0,55,1,1,0,26,0,0,0,56,1,1,0,28,0,0,0,57,1,1,0,30,0,0,0,58,1,1,0,32,0,0,0,59,1,1,0,36,0,0,0,60,1,1,0,40,0,0,0,61,1,1,0,44,0,0,0,62,1,1,0,48,0,0,0,63,1,1,0,52,0,0,0,64,1,1,0,54,0,0,0,65,1,1,0,56,0,0,0,66,1,1,0,64,0,0,0,67,1,1,0,72,0,0,0,68,1,1,0,80,0,0,0,69,1,1,0,96,0,0,0,70,1,1,0,112,0,0,0,71,1,1,0,120,0,0,0,72,1,1,0,124,0,0,0,73,1,1,0,128,0,0,0,74,1,1,0,132,0,0,0,75,1,1,0,136,0,0,0,76,1,1,0,144,0,0,0,77,1,1,0,148,0,0,0,78,1,1,0,156,0,0,0,79,1,1,0,168,0,0,0,80,1,1,0,172,0,0,0,81,1,1,0,192,0,0,0,82,1,1,0,224,0,0,0,83,1,1,0,248,0,0,0,84,1,1,0,0,1,0,0,85,1,1,0,16,1,0,0,86,1,1,0,128,1,0,0,87,1,1,0,0,2,0,0,88,1,1,0,0,4,0,0,89,1,1,0,0,8,0,0,90,1,1,0,14,10,0,0,91,1,1,0,132,14,0,0,92,1,1,0,140,43,0,0,93,1,191,0,195,0,200,0,222,0,233,0,241,0,250,0,7,1,30,1,37,1,45,1,50,1,57,1,70,1,75,1,80,1,88,1,97,1,110,1,117,1,133,1,146,1,26,2,32,2,61,2,120,2,154,2,187,2,223,2,78,3,116,3,135,3,148,3,165,3,177,3,184,3,195,3,230,3,2,4,93,4,104,4,118,4,129,4,153,4,223,4,240,4,246,4,12,5,27,5,38,5,48,5,56,5,66,5,73,5,105,5,125,5,169,5,190,5,215,5,235,5,241,5,249,5,2,6,16,6,31,6,47,6,76,6,104,6,113,6,140,6,167,6,178,6,201,6,242,6,6,7,58,7,82,7,118,7,127,7,161,7,170,7,176,7,202,7,208,7,221,7,227,7,243,7,5,8,41,8,63,8,68,8,87,8,138,8,144,8,181,8,189,8,195,8,210,8,225,8,247,8,255,8,7,9,32,9,69,9,92,9,148,9,155,9,165,9,204,9,211,9,226,9,233,9,240,9,249,9,3,10,62,10,77,10,88,10,102,10,118,10,131,10,145,10,159,10,173,10,183,10,191,10,198,10,218,10,240,10,31,11,38,11,109,11,135,11,148,11,160,11,190,11,11,12,34,12,40,12,53,12,62,12,88,12,98,12,122,12,150,12,159,12,171,12,181,12,197,12,212,12,238,12,251,12,3,13,17,13,28,13,53,13,70,13,92,13,133,13,143,13,155,13,167,13,177,13,183,13,198,13,227,13,236,13,255,13,8,14,21,14,30,14,76,14,90,14,123,14,139,14,150,14,159,14,167,14,174,14,186,14,201,14,233,14,242,14,7,15,16,15,29,15,38,15,44,15,52,15,73,15,89,15,104,15,113,15,147,15,159,15,170,15,182,15,198,15,205,15,212,15,221,15,6,16,42,16,50,16,67,16,72,16,82,16,93,16,107,16,114,16,151,16,174,16,181,16,202,16,240,16,255,16,7,17,59,17,104,17,109,17,117,17,156,17,165,17,182,17,192,17,214,17,222,17,245,17,0,18,13,18,27,18,46,18,67,18,85,18,104,18,121,18,143,18,159,18,165,18,176,18,185,18,206,18,238,18,247,18,1,19,14,19,46,19,80,19,91,19,117,19,137,19,145,19,155,19,168,19,178,19,203,19,45,20,53,20,58,20,78,20,82,20,100,20,114,20,129,20,138,20,146,20,155,20,167,20,200,20,211,20,221,20,230,20,245,20,9,21,15,21,26,21,32,21,47,21,66,21,107,21,126,21,144,21,186,21,197,21,208,21,220,21,236,21,7,22,23,22,38,22,63,22,74,22,83,22,123,22,196,22,208,22,226,22,241,22,253,22,35,23,44,23,54,23,74,23,97,23,104,23,112,23,122,23,128,23,135,23,144,23,150,23,156,23,169,23,176,23,193,23,234,23,249,23,32,24,143,24,181,24,247,24,42,25,55,25,71,25,83,25,112,25,123,25,131,25,140,25,152,25,165,25,171,25,194,25,220,25,225,25,228,25,243,25,25,26,51,26,71,26,91,26,105,26,121,26,141,26,147,26,159,26,172,26,178,26,190,26,198,26,210,26,220,26,241,26,1,27,15,27,42,27,48,27,59,27,67,27,81,27,103,27,146,27,166,27,172,27,184,27,197,27,208,27,237,27,250,27,5,28,151,28,175,28,193,28,206,28,217,28,229,28,252,28,7,29,18,29,30,29,57,29,83,29,93,29,135,29,173,29,179,29,208,29,223,29,248,29,9,30,21,30,37,30,53,30,80,30,97,30,105,30,116,30,138,30,157,30,165,30,195,30,231,30,5,31,23,31,36,31,61,31,72,31,78,31,113,31,122,31,141,31,151,31,169,31,182,31,191,31,199,31,8,32,30,32,68,32,77,32,83,32,152,32,187,32,195,32,203,32,235,32,244,32,250,32,0,33,7,33,18,33,46,33,60,33,76,33,101,33,114,33,145,33,151,33,160,33,167,33,175,33,181,33,187,33,39,34,119,34,133,34,152,34,166,34,222,34,252,34,24,35,45,35,63,35,71,35,76,35,82,35,100,35,140,35,151,35,170,35,181,35,223,35,247,35,14,36,41,36,61,36,71,36,81,36,92,36,133,36,157,36,167,36,180,36,205,36,251,36,1,37,16,37,25,37,36,37,52,37,116,37,147,37,166,37,185,37,197,37,43,38,52,38,65,38,111,38,123,38,127,38,11,0,1,0,23,0,4,0,25,0,6,0,208,0,8,0,46,1,9,0,0,0,57,133,18,0,0,0,49,133,18,0,0,0,193,132,22,0,0,0,57,133,18,0,0,0,193,132,22,0,0,0,57,133,18,0,0,0,193,132,22,0,0,0,99,115,58,0,0,0,99,115,58,0,4,0,1,0,9,0,2,0,10,0,3,0,11,0,4,0,14,0,9,0,15,0,10,0,16,0,13,0,17,0,17,0,18,0,21,0,20,0,26,0,23,0,28,0,25,0,29,0,26,0,30,0,30,0,33,0,31,0,36,0,32,0,39,0,33,0,45,0,34,0,46,0,35,0,47,0,38,0,51,0,40,0,58,0,49,0,60,0,50,0,63,0,51,0,65,0,52,0,67,0,53,0,71,0,57,0,75,0,61,0,77,0,62,0,79,0,63,0,81,0,64,0,83,0,65,0,84,0,68,0,88,0,69,0,90,0,70,0,92,0,71,0,95,0,72,0,98,0,73,0,100,0,77,0,104,0,78,0,109,0,81,0,116,0,83,0,120,0,85,0,125,0,86,0,133,0,88,0,140,0,89,0,146,0,90,0,148,0,94,0,149,0,97,0,151,0,99,0,152,0,100,0,156,0,105,0,157,0,106,0,160,0,109,0,163,0,112,0,164,0,116,0,165,0,118,0,166,0,127,0,167,0,130,0,168,0,135,0,169,0,136,0,170,0,137,0,171,0,140,0,172,0,141,0,174,0,142,0,177,0,146,0,179,0,147,0,184,0,148,0,187,0,165,0,189,0,181,0,190,0,182,0,194,0,183,0,195,0,184,0,196,0,186,0,197,0,187,0,200,0,189,0,201,0,190,0,202,0,195,0,214,0,196,0,215,0,197,0,216,0,198,0,217,0,203,0,219,0,204,0,223,0,205,0,228,0,206,0,230,0,207,0,231,0,208,0,242,0,210,0,255,0,211,0,1,1,212,0,2,1,213,0,8,1,214,0,9,1,215,0,10,1,218,0,11,1,219,0,15,1,228,0,18,1,231,0,34,1,232,0,44,1,235,0,51,1,237,0,67,1,239,0,73,1,241,0,74,1,243,0,76,1,247,0,78,1,250,0,83,1,252,0,86,1,253,0,88,1,2,1,91,1,4,1,101,1,7,1,109,1,9,1,112,1,10,1,114,1,13,1,117,1,18,1,122,1,19,1,126,1,21,1,127,1,22,1,128,1,30,1,129,1,33,1,132,1,34,1,135,1,42,1,137,1,43,1,139,1,44,1,141,1,46,1,144,1,48,1,149,1,0,0,152,165,104,75,0,0,28,136,109,75,0,0,28,136,121,75,0,0,77,208,133,75,0,0,15,185,139,75,0,0,18,147,145,75,0,0,92,116,145,75,0,0,164,193,149,75,0,0,97,189,161,75,0,0,143,220,171,75,0,0,77,208,176,75,0,0,154,187,182,75,0,0,141,239,188,75,0,0,108,116,145,75,0,0,151,116,145,75,0,0,128,116,145,75,0,0,56,136,193,75,0,0,42,239,199,75,0,0,170,156,205,75,0,0,135,224,205,75,0,0,170,156,205,75,0,0,135,224,205,75,0,0,42,239,199,75,0,0,151,116,145,75,0,0,108,116,145,75,0,0,170,156,205,75,0,0,135,224,205,75,0,0,77,208,133,75,0,0,77,208,133,75,0,0,143,220,171,75,0,0,77,208,176,75,0,0,154,187,182,75,0,0,143,220,171,75,0,0,77,208,176,75,0,0,154,187,182,75,0,0,141,239,188,75,0,0,151,116,145,75,0,0,108,116,145,75,0,0,141,239,188,75,0,0,170,156,205,75,0,0,135,224,205,75,0,0,151,116,145,75,0,0,108,116,145,75,0,0,128,116,145,75,0,0,199,216,209,75,0,0,41,211,220,75,0,0,141,239,188,75,0,0,151,116,145,75,0,0,34,156,205,75,0,0,87,224,205,75,0,0,155,236,230,75,0,0,121,202,188,75,0,0,159,217,234,75,0,0,101,220,171,75,0,0,102,113,241,75,0,0,197,179,253,75,0,0,69,215,205,75,0,0,54,110,1,76,0,0,180,111,1,76,0,0,151,204,188,75,0,0,170,156,205,75,0,0,135,224,205,75,0,0,99,133,5,76,0,0,129,133,5,76,0,0,99,133,11,76,0,0,129,133,11,76,0,0,99,133,17,76,0,0,129,133,17,76,0,0,196,142,230,75,0,0,98,152,205,75,0,0,59,172,23,76,0,0,144,221,230,75,0,0,110,95,145,75,0,0,157,168,29,76,0,0,225,197,205,75,0,0,225,198,188,75,0,0,215,215,205,75,0,0,5,143,230,75,0,0,154,162,23,76,0,0,93,159,38,76,0,0,5,143,42,76,0,0,215,215,205,75,0,0,216,115,145,75,0,0,82,182,205,75,0,0,127,211,48,76,0,0,120,198,205,75,0,0,171,168,205,75,0,0,156,139,199,75,0,0,191,157,53,76,0,0,133,151,1,76,0,0,100,234,205,75,0,0,156,139,199,75,0,0,91,211,59,76,0,0,169,232,48,76,0,0,197,222,70,76,0,0,248,222,70,76,0,0,2,224,70,76,0,0,61,201,188,75,0,0,218,201,188,75,0,0,135,224,205,75,0,0,170,156,205,75,0,0,141,163,76,76,0,0,122,241,82,76,0,0,106,138,88,76,0,0,0,162,23,76,0,0,183,168,94,76,0,0,194,175,205,75,0,0,141,239,100,76,0,0,212,220,145,75,0,0,240,170,106,76,0,0,144,206,112,76,0,0,59,172,118,76,0,0,214,178,124,76,0,0,144,221,230,75,0,0,110,95,145,75,0,0,69,238,205,75,0,0,203,114,230,75,0,0,97,112,48,76,0,0,29,231,145,75,0,0,94,233,205,75,0,0,154,162,205,75,0,0,24,189,205,75,0,0,43,193,205,75,0,0,56,234,205,75,0,0,248,222,130,76,0,0,2,224,130,76,0,0,197,222,130,76,0,0,160,223,130,76,0,0,161,109,205,75,0,0,51,110,205,75,0,0,53,111,205,75,0,0,177,111,205,75,0,0,24,110,205,75,0,0,74,109,205,75,0,0,203,221,205,75,0,0,226,150,205,75,0,0,68,183,205,75,0,0,170,156,205,75,0,0,22,183,145,75,0,0,135,113,136,76,0,0,240,205,142,76,0,0,224,239,149,76,0,0,94,233,205,75,0,0,56,234,205,75,0,0,154,162,205,75,0,0,224,239,149,76,0,0,225,198,155,76,0,0,23,223,145,75,0,0,215,215,199,75,0,0,188,217,162,76,0,0,141,163,174,76,0,0,218,204,205,75,0,0,238,204,205,75,0,0,81,219,205,75,0,0,118,219,205,75,0,0,237,238,179,76,0,0,13,179,185,76,0,0,91,143,185,76,0,0,174,152,205,75,0,0,92,216,48,76,0,0,109,139,205,75,0,0,11,179,145,75,0,0,222,67,145,75,0,0,172,221,191,76,0,0,101,220,171,75,0,0,101,220,171,75,0,0,243,165,205,75,0,0,101,220,171,75,0,0,101,220,171,75,0,0,243,165,205,75,0,0,101,220,171,75,0,0,226,150,205,75,0,0,131,174,205,75,0,0,226,150,205,75,0,0,250,131,48,76,0,0,159,217,234,75,0,0,206,176,195,76,0,0,100,234,205,75,0,0,245,235,145,75,0,0,232,180,201,76,0,0,31,181,201,76,0,0,206,176,195,76,0,0,216,235,145,75,0,0,60,213,207,76,0,0,68,183,205,75,0,0,255,115,145,75,0,0,60,213,207,76,0,0,129,219,218,76,0,0,2,173,205,75,0,0,231,143,229,76,0,0,16,152,240,76,0,0,152,152,240,76,0,0,22,169,29,76,0,0,86,138,205,75,0,0,86,138,205,75,0,0,86,138,205,75,0,0,138,219,205,75,0,0,10,205,205,75,0,0,215,215,188,75,0,0,86,138,205,75,0,0,86,138,205,75,0,0,55,181,245,76,0,0,125,231,245,76,0,0,151,232,205,75,0,0,233,210,145,75,0,0,122,233,205,75,0,0,255,210,205,75,0,0,50,209,205,75,0,0,225,198,249,76,0,0,74,178,254,76,0,0,62,153,205,75,0,0,239,139,230,75,0,0,112,165,145,75,0,0,86,138,205,75,0,0,86,138,205,75,0,0,183,168,4,77,0,0,225,197,205,75,0,0,225,198,188,75,0,0,174,152,205,75,0,0,202,201,205,75,0,0,141,163,10,77,0,0,122,241,48,76,0,0,170,156,205,75,0,0,135,224,205,75,0,0,38,168,205,75,0,0,120,152,205,75,0,0,141,163,15,77,0,0,54,222,205,75,0,0,1,222,205,75,0,0,137,142,230,75,0,0,121,202,188,75,0,0,69,215,205,75,0,0,155,236,230,75,0,0,139,216,21,77,0,0,0,162,230,75,0,0,40,132,145,75,0,0,56,116,205,75,0,0,191,181,205,75,0,0,136,200,205,75,0,0,60,243,205,75,0,0,55,188,30,77,0,0,199,216,209,75,0,0,188,187,145,75,0,0,204,138,145,75,0,0,144,221,230,75,0,0,117,214,34,77,0,0,199,137,145,75,0,0,2,138,145,75,0,0,228,225,145,75,0,0,237,131,145,75,0,0,12,10,145,75,0,0,23,226,145,75,0,0,181,203,48,76,0,0,210,206,48,76,0,0,215,215,199,75,0,0,188,217,234,75,0,0,226,150,205,75,0,0,199,216,43,77,0,0,135,224,205,75,0,0,170,156,205,75,0,0,204,138,145,75,0,0,250,165,205,75,0,0,252,219,145,75,0,0,42,239,199,75,0,0,29,135,54,77,0,0,42,239,199,75,0,0,13,179,60,77,0,0,91,143,60,77,0,0,174,152,205,75,0,0,24,145,205,75,0,0,92,216,48,76,0,0,109,139,205,75,0,0,11,179,145,75,0,0,249,199,66,77,0,0,3,200,66,77,0,0,79,169,230,75,0,0,196,209,66,77,0,0,33,200,66,77,0,0,169,204,66,77,0,0,59,200,66,77,0,0,7,188,230,75,0,0,60,147,230,75,0,0,158,200,66,77,0,0,93,200,66,77,0,0,34,142,230,75,0,0,223,154,230,75,0,0,146,196,66,77,0,0,65,240,230,75,0,0,214,177,66,77,0,0,75,242,230,75,0,0,9,235,71,77,0,0,8,132,76,77,0,0,236,239,145,75,0,0,234,168,230,75,0,0,101,193,230,75,0,0,119,199,66,77,0,0,21,174,230,75,0,0,52,139,86,77,0,0,15,139,86,77,0,0,62,214,230,75,0,0,66,209,66,77,0,0,94,196,66,77,0,0,77,196,66,77,0,0,55,221,230,75,0,0,200,241,230,75,0,0,119,96,230,75,0,0,144,236,230,75,0,0,129,79,230,75,0,0,192,113,230,75,0,0,181,182,230,75,0,0,75,146,230,75,0,0,9,146,230,75,0,0,221,145,230,75,0,0,41,146,230,75,0,0,254,224,230,75,0,0,62,144,230,75,0,0,232,229,230,75,0,0,183,134,230,75,0,0,198,229,230,75,0,0,159,241,230,75,0,0,102,196,90,77,0,0,38,229,230,75,0,0,52,139,86,77,0,0,15,139,86,77,0,0,87,139,86,77,0,0,143,242,230,75,0,0,108,96,230,75,0,0,168,96,230,75,0,0,31,98,230,75,0,0,135,144,100,77,0,0,38,229,230,75,0,0,129,79,230,75,0,0,99,79,230,75,0,0,103,210,66,77,0,0,164,196,66,77,0,0,55,221,230,75,0,0,200,241,230,75,0,0,0,96,230,75,0,0,81,183,230,75,0,0,69,96,230,75,0,0,34,142,230,75,0,0,155,236,230,75,0,0,16,140,230,75,0,0,228,96,230,75,0,0,34,142,230,75,0,0,211,96,145,75,0,0,60,98,230,75,0,0,3,79,230,75,0,0,137,171,230,75,0,0,54,171,230,75,0,0,127,137,230,75,0,0,226,200,230,75,0,0,55,180,205,75,0,0,87,137,245,76,0,0,27,182,230,75,0,0,38,229,230,75,0,0,3,117,230,75,0,0,71,174,230,75,0,0,138,134,230,75,0,0,236,164,145,75,0,0,162,243,230,75,0,0,135,243,230,75,0,0,216,133,230,75,0,0,172,133,230,75,0,0,212,220,145,75,0,0,102,204,205,75,0,0,192,212,205,75,0,0,59,172,29,76,0,0,192,212,29,76,0,0,212,220,145,75,0,0,87,204,205,75,0,0,146,212,205,75,0,0,199,220,145,75,0,0,174,152,205,75,0,0,192,212,205,75,0,0,52,197,205,75,0,0,141,239,199,75,0,0,106,138,205,75,0,0,66,165,106,77,0,0,226,232,205,75,0,0,201,233,205,75,0,0,130,218,106,77,0,0,141,163,112,77,0,0,141,163,112,77,0,0,157,231,230,75,0,0,135,224,205,75,0,0,170,156,205,75,0,0,9,159,205,75,0,0,26,204,205,75,0,0,143,197,205,75,0,0,100,234,205,75,0,0,245,197,205,75,0,0,163,197,205,75,0,0,63,150,117,77,0,0,100,234,205,75,0,0,245,197,205,75,0,0,217,163,130,76,0,0,207,177,130,76,0,0,150,207,205,75,0,0,202,219,124,77,0,0,3,203,134,77,0,0,141,163,144,77,0,0,100,234,205,75,0,0,254,241,145,75,0,0,54,110,205,75,0,0,180,111,205,75,8,0,114,0,2,0,16,0,115,0,2,0,1,0,5,0,3,0,8,0,116,0,4,0,16,0,117,0,4,0,2,0,100,0,5,0,8,0,118,0,6,0,16,0,119,0,6,0,2,0,108,0,7,0,8,0,195,0,8,0,16,0,196,0,8,0,2,0,111,0,9,0,1,0,112,0,9,0,8,0,197,0,10,0,16,0,198,0,10,0,2,0,113,0,11,0,8,0,208,0,12,0,16,0,209,0,12,0,2,0,120,0,13,0,1,0,121,0,13,0,8,0,210,0,14,0,16,0,211,0,14,0,2,0,122,0,15,0,1,0,123,0,15,0,8,0,100,6,16,0,16,0,101,6,16,0,2,0,124,0,17,0,8,0,213,8,18,0,16,0,214,8,18,0,2,0,139,0,19,0,1,0,140,0,19,0,2,0,144,0,21,0,1,0,145,0,21,0,2,0,146,0,23,0,1,0,147,0,23,0,2,0,148,0,25,0,1,0,149,0,25,0,2,0,156,0,27,0,2,0,159,0,29,0,2,0,161,0,31,0,2,0,162,0,33,0,2,0,166,0,35,0,2,0,168,0,37,0,2,0,170,0,39,0,2,0,171,0,41,0,2,0,174,0,43,0,2,0,175,0,45,0,2,0,177,0,47,0,2,0,178,0,49,0,2,0,180,0,51,0,2,0,185,0,53,0,2,0,186,0,55,0,2,0,199,0,57,0,1,0,200,0,57,0,2,0,212,0,59,0,1,0,213,0,59,0,2,0,218,0,61,0,1,0,219,0,61,0,2,0,220,0,63,0,1,0,221,0,63,0,2,0,222,0,65,0,1,0,223,0,65,0,2,0,231,0,67,0,1,0,232,0,67,0,2,0,233,0,69,0,1,0,234,0,69,0,2,0,235,0,71,0,1,0,236,0,71,0,2,0,240,0,73,0,2,0,241,0,75,0,2,0,243,0,77,0,2,0,249,0,79,0,2,0,250,0,81,0,1,0,251,0,81,0,2,0,252,0,83,0,1,0,253,0,83,0,2,0,254,0,85,0,2,0,0,1,87,0,2,0,3,1,89,0,1,0,9,1,91,0,2,0,14,1,93,0,2,0,21,1,95,0,2,0,22,1,97,0,2,0,25,1,99,0,2,0,26,1,101,0,2,0,36,1,103,0,1,0,37,1,103,0,2,0,38,1,105,0,1,0,39,1,105,0,2,0,40,1,107,0,1,0,41,1,107,0,2,0,42,1,109,0,1,0,43,1,109,0,2,0,44,1,111,0,1,0,45,1,111,0,2,0,46,1,113,0,1,0,47,1,113,0,2,0,48,1,115,0,1,0,49,1,115,0,2,0,60,1,117,0,2,0,61,1,119,0,2,0,109,1,121,0,1,0,110,1,121,0,2,0,111,1,123,0,1,0,112,1,123,0,2,0,113,1,125,0,1,0,114,1,125,0,2,0,115,1,127,0,1,0,116,1,127,0,2,0,117,1,129,0,1,0,118,1,129,0,2,0,122,1,131,0,1,0,123,1,131,0,2,0,124,1,133,0,1,0,125,1,133,0,2,0,129,1,135,0,1,0,130,1,135,0,2,0,131,1,137,0,1,0,132,1,137,0,2,0,133,1,139,0,1,0,134,1,139,0,2,0,135,1,141,0,1,0,136,1,141,0,2,0,144,1,143,0,1,0,145,1,143,0,2,0,146,1,145,0,1,0,147,1,145,0,2,0,148,1,147,0,1,0,149,1,147,0,2,0,150,1,149,0,1,0,151,1,149,0,2,0,176,1,151,0,2,0,177,1,153,0,2,0,195,1,155,0,2,0,196,1,157,0,2,0,205,1,159,0,2,0,206,1,161,0,2,0,210,1,163,0,1,0,211,1,163,0,2,0,215,1,165,0,1,0,216,1,165,0,2,0,220,1,167,0,2,0,223,1,169,0,2,0,224,1,171,0,2,0,225,1,173,0,2,0,226,1,175,0,2,0,245,1,177,0,2,0,246,1,179,0,2,0,4,2,181,0,2,0,5,2,183,0,2,0,10,2,185,0,2,0,11,2,187,0,2,0,16,2,189,0,2,0,28,2,191,0,2,0,29,2,193,0,2,0,30,2,195,0,2,0,32,2,197,0,2,0,33,2,199,0,2,0,35,2,201,0,2,0,36,2,203,0,2,0,37,2,205,0,1,0,38,2,205,0,2,0,39,2,207,0,2,0,98,2,209,0,1,0,99,2,209,0,2,0,100,2,211,0,1,0,101,2,211,0,2,0,102,2,213,0,1,0,103,2,213,0,2,0,104,2,215,0,1,0,105,2,215,0,2,0,106,2,217,0,1,0,107,2,217,0,2,0,111,2,219,0,1,0,112,2,219,0,2,0,113,2,221,0,1,0,114,2,221,0,2,0,115,2,223,0,1,0,116,2,223,0,2,0,117,2,225,0,1,0,118,2,225,0,2,0,119,2,227,0,1,0,120,2,227,0,2,0,121,2,229,0,1,0,122,2,229,0,2,0,123,2,231,0,1,0,124,2,231,0,2,0,141,2,233,0,1,0,142,2,233,0,2,0,143,2,235,0,1,0,144,2,235,0,2,0,145,2,237,0,1,0,146,2,237,0,2,0,147,2,239,0,1,0,148,2,239,0,2,0,156,2,241,0,1,0,157,2,241,0,2,0,158,2,243,0,1,0,159,2,243,0,2,0,160,2,245,0,1,0,161,2,245,0,2,0,162,2,247,0,1,0,163,2,247,0,2,0,164,2,249,0,1,0,165,2,249,0,2,0,171,2,251,0,1,0,172,2,251,0,2,0,173,2,253,0,1,0,174,2,253,0,2,0,175,2,255,0,1,0,176,2,255,0,2,0,177,2,1,1,1,0,178,2,1,1,2,0,179,2,3,1,1,0,180,2,3,1,2,0,181,2,5,1,1,0,182,2,5,1,2,0,183,2,7,1,1,0,184,2,7,1,2,0,185,2,9,1,1,0,186,2,9,1,2,0,194,2,11,1,1,0,195,2,11,1,2,0,196,2,13,1,1,0,197,2,13,1,2,0,198,2,15,1,1,0,199,2,15,1,2,0,200,2,17,1,1,0,201,2,17,1,2,0,202,2,19,1,1,0,203,2,19,1,2,0,205,2,21,1,2,0,206,2,23,1,2,0,220,2,25,1,1,0,221,2,25,1,2,0,222,2,27,1,1,0,223,2,27,1,2,0,224,2,29,1,1,0,225,2,29,1,2,0,226,2,31,1,1,0,227,2,31,1,2,0,228,2,33,1,2,0,229,2,35,1,2,0,242,2,37,1,1,0,243,2,37,1,2,0,244,2,39,1,1,0,245,2,39,1,2,0,254,2,41,1,1,0,255,2,41,1,2,0,48,3,43,1,1,0,49,3,43,1,2,0,50,3,45,1,1,0,51,3,45,1,2,0,60,3,47,1,1,0,61,3,47,1,2,0,66,3,49,1,2,0,67,3,51,1,2,0,68,3,53,1,2,0,69,3,55,1,2,0,72,3,57,1,2,0,113,3,59,1,1,0,114,3,59,1,2,0,115,3,61,1,1,0,116,3,61,1,2,0,125,3,63,1,2,0,128,3,65,1,2,0,129,3,67,1,2,0,130,3,69,1,2,0,152,3,71,1,1,0,153,3,71,1,2,0,165,3,73,1,2,0,198,3,75,1,2,0,206,3,77,1,2,0,252,3,79,1,2,0,18,4,81,1,2,0,52,4,83,1,2,0,54,4,85,1,2,0,61,4,87,1,2,0,80,4,89,1,1,0,81,4,89,1,2,0,82,4,91,1,1,0,83,4,91,1,2,0,88,4,93,1,1,0,89,4,93,1,2,0,90,4,95,1,1,0,91,4,95,1,2,0,92,4,97,1,1,0,93,4,97,1,2,0,97,4,99,1,1,0,98,4,99,1,2,0,99,4,101,1,1,0,100,4,101,1,2,0,118,4,103,1,1,0,119,4,103,1,2,0,120,4,105,1,1,0,121,4,105,1,2,0,122,4,107,1,1,0,123,4,107,1,2,0,124,4,109,1,1,0,125,4,109,1,2,0,127,4,111,1,2,0,134,4,113,1,1,0,135,4,113,1,2,0,136,4,115,1,1,0,137,4,115,1,2,0,138,4,117,1,1,0,139,4,117,1,2,0,144,4,119,1,2,0,154,4,121,1,2,0,238,4,123,1,1,0,239,4,123,1,2,0,83,5,125,1,1,0,84,5,125,1,2,0,85,5,127,1,1,0,86,5,127,1,2,0,87,5,129,1,1,0,88,5,129,1,2,0,89,5,131,1,1,0,90,5,131,1,2,0,92,5,133,1,2,0,96,5,135,1,2,0,100,5,137,1,2,0,112,5,139,1,2,0,113,5,141,1,2,0,114,5,143,1,2,0,125,5,145,1,2,0,132,5,147,1,2,0,139,5,149,1,2,0,140,5,151,1,2,0,143,5,153,1,2,0,146,5,155,1,2,0,147,5,157,1,2,0,148,5,159,1,2,0,152,5,161,1,1,0,153,5,161,1,2,0,154,5,163,1,2,0,155,5,165,1,2,0,156,5,167,1,2,0,157,5,169,1,2,0,158,5,171,1,1,0,159,5,171,1,2,0,200,5,173,1,2,0,203,5,175,1,2,0,209,5,177,1,2,0,221,5,179,1,2,0,222,5,181,1,2,0,2,6,183,1,2,0,3,6,185,1,2,0,4,6,187,1,1,0,5,6,187,1,2,0,19,6,189,1,2,0,31,6,191,1,2,0,32,6,193,1,2,0,33,6,195,1,2,0,34,6,197,1,2,0,41,6,199,1,1,0,42,6,199,1,2,0,62,6,201,1,2,0,63,6,203,1,2,0,66,6,205,1,2,0,73,6,207,1,1,0,74,6,207,1,2,0,75,6,209,1,1,0,76,6,209,1,2,0,77,6,211,1,1,0,78,6,211,1,2,0,79,6,213,1,1,0,80,6,213,1,2,0,81,6,215,1,1,0,82,6,215,1,2,0,83,6,217,1,2,0,84,6,219,1,1,0,85,6,219,1,2,0,86,6,221,1,1,0,87,6,221,1,2,0,88,6,223,1,1,0,89,6,223,1,2,0,90,6,225,1,1,0,91,6,225,1,2,0,92,6,227,1,1,0,93,6,227,1,2,0,98,6,229,1,1,0,99,6,229,1,2,0,102,6,231,1,1,0,103,6,231,1,2,0,104,6,233,1,1,0,105,6,233,1,2,0,106,6,235,1,1,0,107,6,235,1,2,0,108,6,237,1,1,0,109,6,237,1,2,0,110,6,239,1,1,0,111,6,239,1,2,0,112,6,241,1,1,0,113,6,241,1,2,0,114,6,243,1,1,0,115,6,243,1,2,0,116,6,245,1,1,0,117,6,245,1,2,0,118,6,247,1,1,0,119,6,247,1,2,0,120,6,249,1,1,0,121,6,249,1,2,0,122,6,251,1,1,0,123,6,251,1,2,0,124,6,253,1,1,0,125,6,253,1,2,0,131,6,255,1,1,0,132,6,255,1,2,0,133,6,1,2,1,0,134,6,1,2,2,0,136,6,3,2,1,0,137,6,3,2,2,0,140,6,5,2,1,0,141,6,5,2,2,0,142,6,7,2,1,0,143,6,7,2,2,0,144,6,9,2,1,0,145,6,9,2,2,0,146,6,11,2,1,0,147,6,11,2,2,0,148,6,13,2,1,0,149,6,13,2,2,0,150,6,15,2,1,0,151,6,15,2,2,0,155,6,17,2,2,0,160,6,19,2,2,0,167,6,21,2,2,0,186,6,23,2,2,0,187,6,25,2,2,0,194,6,27,2,2,0,195,6,29,2,2,0,199,6,31,2,2,0,200,6,33,2,2,0,201,6,35,2,2,0,245,6,37,2,2,0,246,6,39,2,2,0,247,6,41,2,2,0,248,6,43,2,2,0,249,6,45,2,2,0,250,6,47,2,2,0,251,6,49,2,2,0,252,6,51,2,2,0,253,6,53,2,2,0,254,6,55,2,2,0,255,6,57,2,2,0,0,7,59,2,2,0,1,7,61,2,2,0,2,7,63,2,2,0,3,7,65,2,2,0,4,7,67,2,2,0,13,7,69,2,2,0,14,7,71,2,2,0,16,7,73,2,2,0,17,7,75,2,2,0,18,7,77,2,2,0,19,7,79,2,2,0,20,7,81,2,2,0,21,7,83,2,2,0,22,7,85,2,2,0,23,7,87,2,2,0,29,7,89,2,2,0,30,7,91,2,1,0,31,7,91,2,2,0,32,7,93,2,1,0,33,7,93,2,2,0,34,7,95,2,1,0,35,7,95,2,2,0,36,7,97,2,1,0,37,7,97,2,2,0,38,7,99,2,1,0,39,7,99,2,2,0,40,7,101,2,2,0,56,7,103,2,2,0,57,7,105,2,2,0,58,7,107,2,2,0,59,7,109,2,2,0,60,7,111,2,2,0,61,7,113,2,2,0,62,7,115,2,2,0,63,7,117,2,2,0,64,7,119,2,2,0,65,7,121,2,2,0,66,7,123,2,2,0,67,7,125,2,2,0,68,7,127,2,2,0,69,7,129,2,2,0,70,7,131,2,2,0,71,7,133,2,2,0,78,7,135,2,1,0,79,7,135,2,2,0,80,7,137,2,1,0,81,7,137,2,2,0,82,7,139,2,1,0,83,7,139,2,2,0,84,7,141,2,1,0,85,7,141,2,2,0,86,7,143,2,1,0,87,7,143,2,2,0,88,7,145,2,1,0,89,7,145,2,2,0,97,7,147,2,1,0,98,7,147,2,2,0,101,7,149,2,1,0,102,7,149,2,2,0,103,7,151,2,2,0,112,7,153,2,1,0,113,7,153,2,2,0,114,7,155,2,1,0,115,7,155,2,2,0,142,7,157,2,1,0,143,7,157,2,2,0,144,7,159,2,1,0,145,7,159,2,2,0,146,7,161,2,1,0,147,7,161,2,2,0,148,7,163,2,1,0,149,7,163,2,2,0,150,7,165,2,1,0,151,7,165,2,2,0,157,7,167,2,1,0,158,7,167,2,2,0,159,7,169,2,1,0,160,7,169,2,2,0,161,7,171,2,1,0,162,7,171,2,2,0,166,7,173,2,1,0,167,7,173,2,2,0,168,7,175,2,1,0,169,7,175,2,2,0,170,7,177,2,1,0,171,7,177,2,2,0,172,7,179,2,1,0,173,7,179,2,2,0,174,7,181,2,1,0,175,7,181,2,2,0,204,7,183,2,1,0,205,7,183,2,2,0,206,7,185,2,1,0,207,7,185,2,2,0,208,7,187,2,1,0,209,7,187,2,2,0,210,7,189,2,1,0,211,7,189,2,2,0,212,7,191,2,1,0,213,7,191,2,2,0,214,7,193,2,1,0,215,7,193,2,2,0,216,7,195,2,1,0,217,7,195,2,2,0,218,7,197,2,1,0,219,7,197,2,2,0,220,7,199,2,1,0,221,7,199,2,2,0,223,7,201,2,2,0,236,7,203,2,1,0,237,7,203,2,2,0,238,7,205,2,1,0,239,7,205,2,2,0,240,7,207,2,1,0,241,7,207,2,2,0,242,7,209,2,1,0,243,7,209,2,2,0,244,7,211,2,1,0,245,7,211,2,2,0,246,7,213,2,1,0,247,7,213,2,2,0,248,7,215,2,1,0,249,7,215,2,2,0,250,7,217,2,1,0,251,7,217,2,2,0,2,8,219,2,1,0,3,8,219,2,2,0,4,8,221,2,1,0,5,8,221,2,2,0,6,8,223,2,1,0,7,8,223,2,2,0,15,8,225,2,1,0,16,8,225,2,2,0,17,8,227,2,1,0,18,8,227,2,2,0,20,8,229,2,1,0,21,8,229,2,2,0,22,8,231,2,1,0,23,8,231,2,2,0,24,8,233,2,1,0,25,8,233,2,2,0,61,8,235,2,1,0,62,8,235,2,2,0,63,8,237,2,1,0,64,8,237,2,2,0,65,8,239,2,1,0,66,8,239,2,2,0,67,8,241,2,1,0,68,8,241,2,2,0,69,8,243,2,1,0,70,8,243,2,2,0,98,8,245,2,2,0,99,8,247,2,2,0,100,8,249,2,2,0,101,8,251,2,2,0,111,8,253,2,2,0,117,8,255,2,1,0,118,8,255,2,2,0,120,8,1,3,1,0,121,8,1,3,2,0,153,8,3,3,1,0,154,8,3,3,2,0,155,8,5,3,1,0,156,8,5,3,2,0,157,8,7,3,1,0,158,8,7,3,2,0,183,8,9,3,2,0,184,8,11,3,2,0,185,8,13,3,2,0,188,8,15,3,2,0,189,8,17,3,2,0,198,8,19,3,2,0,199,8,21,3,2,0,201,8,23,3,2,0,202,8,25,3,2,0,203,8,27,3,1,0,204,8,27,3,2,0,205,8,29,3,1,0,206,8,29,3,2,0,207,8,31,3,1,0,208,8,31,3,2,0,219,8,33,3,2,0,222,8,35,3,2,0,223,8,37,3,1,0,224,8,37,3,2,0,229,8,39,3,2,0,230,8,41,3,2,0,234,8,43,3,1,0,235,8,43,3,2,0,236,8,45,3,1,0,237,8,45,3,46,1,210,17,39,0,32,0,39,0,46,0,53,0,61,0,69,0,77,0,85,0,92,0,101,0,109,0,118,0,127,0,136,0,152,0,162,0,177,0,152,1,175,1,13,2,16,2,38,2,167,2,177,2,215,2,237,2,255,2,23,3,62,3,94,3,205,3,212,3,221,3,241,3,249,3,15,4,36,4,52,4,61,4,143,4,179,4,193,4,208,4,90,5,98,5,110,5,139,5,146,5,154,5,22,6,40,6,253,6,40,7,90,7,189,7,252,7,24,8,33,8,56,8,121,8,129,8,216,8,60,9,145,9,44,10,53,10,253,10,4,11,10,11,74,11,83,11,93,11,170,11,173,11,219,11,226,11,238,11,251,11,3,12,115,12,164,13,68,14,118,14,52,17,96,17,114,18,28,19,37,19,63,19,71,19,108,19,0,20,9,20,22,20,36,20,38,21,81,21,89,21,98,21,254,21,29,22,114,22,162,22,170,22,179,22,187,22,65,23,88,23,217,23,225,23,99,24,108,24,128,24,135,24,172,24,232,24,237,24,33,25,149,25,132,26,88,28,97,28,119,28,141,28,165,28,37,29,47,29,63,29,73,29,146,29,199,29,243,30,252,30,15,31,231,31,60,32,106,32,119,32,131,32,144,32,179,32,95,34,187,34,199,34,210,34,202,35,213,35,20,36,31,36,81,37,90,37,99,37,107,37,138,37,250,37,13,38,34,38,90,38,99,38,108,38,139,38,160,38,248,11,6,0,47,4,24,12,6,0,48,4,56,12,6,0,49,4,80,12,6,0,50,4,96,12,6,0,51,4,16,13,6,0,52,4,40,13,6,0,53,4,120,13,6,0,54,4,152,13,6,0,55,4,176,13,6,0,56,4,200,13,6,0,57,4,224,13,6,0,58,4,248,13,6,0,59,4,16,14,6,0,60,4,32,14,6,0,61,4,152,14,6,0,62,4,176,14,6,0,63,4,200,14,6,0,64,4,248,14,6,0,65,4,24,15,6,0,66,4,48,15,6,0,67,4,80,15,6,0,68,4,96,15,6,0,69,4,128,15,6,0,70,4,160,15,6,0,71,4,184,15,6,0,72,4,208,15,6,0,73,4,72,16,6,0,74,4,80,16,6,0,75,4,88,16,6,0,76,4,112,16,6,0,77,4,24,17,6,0,78,4,40,17,6,0,79,4,72,17,6,0,80,4,104,17,6,0,81,4,128,17,6,0,82,4,248,17,6,0,83,4,112,18,6,0,84,4,136,18,6,0,85,4,0,19,6,0,86,4,48,19,6,0,87,4,72,19,6,0,88,4,192,19,6,0,89,4,216,19,6,0,90,4,240,19,6,0,91,4,8,20,6,0,92,4,64,20,6,0,93,4,96,20,6,0,94,4,128,20,6,0,95,4,144,20,6,0,96,4,8,21,6,0,97,4,32,21,6,0,98,4,56,21,6,0,99,4,80,21,6,0,100,4,104,21,6,0,101,4,120,21,6,0,102,4,144,21,6,0,103,4,168,21,6,0,104,4,192,21,6,0,105,4,216,21,6,0,106,4,240,21,6,0,107,4,16,22,6,0,108,4,40,22,6,0,109,4,64,22,6,0,110,4,88,22,6,0,111,4,208,22,6,0,112,4,232,22,6,0,113,4,96,23,6,0,114,4,120,23,6,0,115,4,152,23,6,0,116,4,208,23,6,0,117,4,232,23,6,0,118,4,120,24,6,0,119,4,88,25,6,0,120,4,96,25,6,0,121,4,128,25,6,0,122,4,248,25,6,0,123,4,16,26,6,0,124,4,152,40,6,0,125,4,176,40,6,0,126,4,80,41,6,0,127,4,104,41,6,0,128,4,128,41,6,0,129,4,152,41,6,0,130,4,184,41,6,0,131,4,208,41,6,0,132,4,240,41,6,0,133,4,8,42,6,0,134,4,48,42,6,0,135,4,104,42,6,0,136,4,168,42,6,0,137,4,192,42,6,0,138,4,72,57,6,0,139,4,96,57,6,0,140,4,128,57,6,0,141,4,152,57,6,0,142,4,176,57,6,0,143,4,64,101,6,0,144,4,128,101,6,0,145,4,160,101,6,0,146,4,184,101,6,0,147,4,200,101,6,0,148,4,56,102,6,0,149,4,88,102,6,0,150,4,112,102,6,0,151,4,248,102,6,0,152,4,8,103,6,0,153,4,128,103,6,0,154,4,152,103,6,0,155,4,176,103,6,0,156,4,208,103,6,0,157,4,232,103,6,0,158,4,0,104,6,0,159,4,32,104,6,0,160,4,56,104,6,0,161,4,88,104,6,0,162,4,112,104,6,0,163,4,144,104,6,0,164,4,160,104,6,0,165,4,24,105,6,0,166,4,48,105,6,0,167,4,184,119,6,0,168,4,216,119,6,0,169,4,248,119,6,0,170,4,8,120,6,0,171,4,32,120,6,0,172,4,64,120,6,0,173,4,80,120,6,0,174,4,112,120,6,0,175,4,144,120,6,0,176,4,176,120,6,0,177,4,208,120,6,0,178,4,232,120,6,0,179,4,0,121,6,0,180,4,32,121,6,0,181,4,64,121,6,0,182,4,80,121,6,0,183,4,88,121,6,0,184,4,120,121,6,0,185,4,136,121,6,0,186,4,160,121,6,0,187,4,184,121,6,0,188,4,192,121,6,0,189,4,216,121,6,0,190,4,248,121,6,0,191,4,8,122,6,0,192,4,32,122,6,0,193,4,40,122,6,0,194,4,56,122,6,0,195,4,80,122,6,0,196,4,104,122,6,0,197,4,160,122,6,0,198,4,24,123,6,0,199,4,40,123,6,0,200,4,64,123,6,0,201,4,96,123,6,0,202,4,120,123,6,0,203,4,128,123,6,0,204,4,152,123,6,0,205,4,176,123,6,0,206,4,184,123,6,0,207,4,200,123,6,0,208,4,224,123,6,0,209,4,0,124,6,0,210,4,0,126,6,0,211,4,32,126,6,0,212,4,56,126,6,0,213,4,88,126,6,0,214,4,208,126,6,0,215,4,232,126,6,0,216,4,8,127,6,0,217,4,24,127,6,0,218,4,56,127,6,0,219,4,56,135,6,0,220,4,96,135,6,0,221,4,120,135,6,0,222,4,152,135,6,0,223,4,192,135,6,0,224,4,216,135,6,0,225,4,80,136,6,0,226,4,104,136,6,0,227,4,136,136,6,0,228,4,160,136,6,0,229,4,176,136,6,0,230,4,192,136,6,0,231,4,216,136,6,0,232,4,248,136,6,0,233,4,24,137,6,0,234,4,40,137,6,0,235,4,64,137,6,0,236,4,88,137,6,0,237,4,112,137,6,0,238,4,128,137,6,0,239,4,160,137,6,0,240,4,32,138,6,0,241,4,152,138,6,0,242,4,200,138,6,0,243,4,224,138,6,0,244,4,240,148,6,0,245,4,8,149,6,0,246,4,72,149,6,0,247,4,88,149,6,0,248,4,104,149,6,0,249,4,120,149,6,0,250,4,144,149,6,0,251,4,176,149,6,0,252,4,192,149,6,0,253,4,216,149,6,0,254,4,240,149,6,0,255,4,0,150,6,0,0,5,24,150,6,0,1,5,48,150,6,0,2,5,80,150,6,0,3,5,200,150,6,0,4,5,240,150,6,0,5,5,16,151,6,0,6,5,40,151,6,0,7,5,232,151,6,0,8,5,8,152,6,0,9,5,40,152,6,0,10,5,160,152,6,0,11,5,184,152,6,0,12,5,240,152,6,0,13,5,0,153,6,0,14,5,32,153,6,0,15,5,56,153,6,0,16,5,72,153,6,0,17,5,96,153,6,0,18,5,128,153,6,0,19,5,152,153,6,0,20,5,16,154,6,0,21,5,40,154,6,0,22,5,64,154,6,0,23,5,88,154,6,0,24,5,112,154,6,0,25,5,152,154,6,0,26,5,176,154,6,0,27,5,200,154,6,0,28,5,224,154,6,0,29,5,0,155,6,0,30,5,24,155,6,0,31,5,48,155,6,0,32,5,40,156,6,0,33,5,72,156,6,0,34,5,104,156,6,0,35,5,128,156,6,0,36,5,144,156,6,0,37,5,176,156,6,0,38,5,192,156,6,0,39,5,216,156,6,0,40,5,240,156,6,0,41,5,0,157,6,0,42,5,16,157,6,0,43,5,128,157,6,0,44,5,160,157,6,0,45,5,176,157,6,0,46,5,48,158,6,0,47,5,88,158,6,0,48,5,112,158,6,0,49,5,144,158,6,0,50,5,176,158,6,0,51,5,208,158,6,0,52,5,240,158,6,0,53,5,40,159,6,0,54,5,168,160,6,0,55,5,184,160,6,0,56,5,208,160,6,0,57,5,240,160,6,0,58,5,16,161,6,0,59,5,40,161,6,0,60,5,64,161,6,0,61,5,96,161,6,0,62,5,128,161,6,0,63,5,144,161,6,0,64,5,168,161,6,0,65,5,192,161,6,0,66,5,216,161,6,0,67,5,248,161,6,0,68,5,8,162,6,0,69,5,24,162,6,0,70,5,48,162,6,0,71,5,80,162,6,0,72,5,120,162,6,0,73,5,152,162,6,0,74,5,16,163,6,0,75,5,32,163,6,0,76,5,56,163,6,0,77,5,88,163,6,0,78,5,168,163,6,0,79,5,200,163,6,0,80,5,224,163,6,0,81,5,88,164,6,0,82,5,112,164,6,0,83,5,136,164,6,0,84,5,168,164,6,0,85,5,224,164,6,0,86,5,248,164,6,0,87,5,24,165,6,0,88,5,48,165,6,0,89,5,72,165,6,0,90,5,80,165,6,0,91,5,104,165,6,0,92,5,136,165,6,0,93,5,168,165,6,0,94,5,192,165,6,0,95,5,224,165,6,0,96,5,248,165,6,0,97,5,16,166,6,0,98,5,56,166,6,0,99,5,80,166,6,0,100,5,104,166,6,0,101,5,224,166,6,0,102,5,0,167,6,0,103,5,24,167,6,0,104,5,56,167,6,0,105,5,176,167,6,0,106,5,200,167,6,0,107,5,224,167,6,0,108,5,248,167,6,0,109,5,8,168,6,0,110,5,32,168,6,0,111,5,152,168,6,0,112,5,152,169,6,0,113,5,176,169,6,0,114,5,200,169,6,0,115,5,232,169,6,0,116,5,8,170,6,0,117,5,40,170,6,0,118,5,56,171,6,0,119,5,96,171,6,0,120,5,112,171,6,0,121,5,152,171,6,0,122,5,184,171,6,0,123,5,248,171,6,0,124,5,112,172,6,0,125,5,144,172,6,0,126,5,8,173,6,0,127,5,32,173,6,0,128,5,56,173,6,0,129,5,80,173,6,0,130,5,112,173,6,0,131,5,128,173,6,0,132,5,152,173,6,0,133,5,176,173,6,0,134,5,176,177,6,0,135,5,200,177,6,0,136,5,216,177,6,0,137,5,232,177,6,0,138,5,8,178,6,0,139,5,64,178,6,0,140,5,0,179,6,0,141,5,24,179,6,0,142,5,56,179,6,0,143,5,88,179,6,0,144,5,120,179,6,0,145,5,152,179,6,0,146,5,176,179,6,0,147,5,40,180,6,0,148,5,72,180,6,0,149,5,152,180,6,0,150,5,168,180,6,0,151,5,48,181,6,0,152,5,72,181,6,0,153,5,96,181,6,0,154,5,120,181,6,0,155,5,144,181,6,0,156,5,8,182,6,0,157,5,32,182,6,0,158,5,72,182,6,0,159,5,192,182,6,0,160,5,208,182,6,0,161,5,240,182,6,0,162,5,8,183,6,0,163,5,32,183,6,0,164,5,64,183,6,0,165,5,88,183,6,0,166,5,120,183,6,0,167,5,8,227,6,0,168,5,40,227,6,0,169,5,72,227,6,0,170,5,96,227,6,0,171,5,120,227,6,0,172,5,136,227,6,0,173,5,168,227,6,0,174,5,184,227,6,0,175,5,24,228,6,0,176,5,56,228,6,0,177,5,72,228,6,0,178,5,104,228,6,0,179,5,128,228,6,0,180,5,160,228,6,0,181,5,184,228,6,0,182,5,200,228,6,0,183,5,232,228,6,0,184,5,0,229,6,0,185,5,16,229,6,0,186,5,168,229,6,0,187,5,200,229,6,0,188,5,232,229,6,0,189,5,96,230,6,0,190,5,216,230,6,0,191,5,16,231,6,0,192,5,40,231,6,0,193,5,64,231,6,0,194,5,88,231,6,0,195,5,104,231,6,0,196,5,128,231,6,0,197,5,152,231,6,0,198,5,168,231,6,0,199,5,200,231,6,0,200,5,232,231,6,0,201,5,0,232,6,0,202,5,32,232,6,0,203,5,64,232,6,0,204,5,80,232,6,0,205,5,104,232,6,0,206,5,136,232,6,0,207,5,192,232,6,0,208,5,224,232,6,0,209,5,240,232,6,0,210,5,16,233,6,0,211,5,32,233,6,0,212,5,48,233,6,0,213,5,80,233,6,0,214,5,112,233,6,0,215,5,232,233,6,0,216,5,96,234,6,0,217,5,152,234,6,0,218,5,208,234,6,0,219,5,32,235,6,0,220,5,48,235,6,0,221,5,64,235,6,0,222,5,136,235,6,0,223,5,168,235,6,0,224,5,192,235,6,0,225,5,208,235,6,0,226,5,4,128,0,0,0,0,16,0,2,0,0,0,1,0,0,0,200,38,71,141,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,64,143,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,84,207,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,243,152,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,186,100,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,19,207,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,226,152,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,155,206,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,191,38,117,170,0,0,0,0,21,1,4,0,22,1,5,0,23,1,9,0,24,1,11,0,25,1,34,0,26,1,42,0,27,1,50,0,28,1,51,0,29,1,52,0,30,1,52,0,31,1,58,0,32,1,63,0,33,1,65,0,34,1,65,0,35,1,70,0,36,1,70,0,37,1,87,0,38,1,111,0,39,1,161,0,40,1,173,0,41,1,199,0,42,1,201,0,43,1,201,0,44,1,202,0,45,1,202,0,46,1,208,0,47,1,11,1,48,1,12,1,49,1,20,1,50,1,20,1,51,1,20,1,52,1,20,1,53,1,20,1,54,1,20,1,55,1,20,1,56,1,20,1,57,1,20,1,58,1,20,1,59,1,20,1,60,1,20,1,61,1,20,1,62,1,20,1,63,1,20,1,64,1,20,1,65,1,20,1,66,1,20,1,67,1,20,1,68,1,20,1,69,1,20,1,70,1,20,1,71,1,20,1,72,1,20,1,73,1,20,1,74,1,20,1,75,1,20,1,76,1,20,1,77,1,20,1,78,1,20,1,79,1,20,1,80,1,20,1,81,1,20,1,82,1,20,1,83,1,20,1,84,1,20,1,85,1,20,1,86,1,20,1,87,1,20,1,88,1,20,1,89,1,20,1,90,1,20,1,91,1,20,1,92,1,20,1,93,1,20,1,0,0,0,0,20,0,200,108,0,0,0,0,28,0,54,236,0,0,0,0,48,0,200,108,0,0,1,0,58,0,54,236,0,0,1,0,96,0,54,236,0,0,0,0,92,2,210,241,1,0,0,0,92,2,113,149,0,0,16,0,187,2,200,108,0,0,0,0,191,2,200,108,0,0,0,0,193,2,200,108,0,0,0,0,195,2,200,108,0,0,0,0,201,2,200,108,97,0,110,2,97,0,144,2,219,0,85,5,139,1,27,11,192,2,27,11,200,2,141,16,200,2,145,16,192,2,186,26,97,0,123,29,194,2,141,16,0,0,0,0,0,101,110,99,111,100,101,69,67,67,50,48,48,0,69,88,80,57,48,48,0,67,57,50,53,53,57,69,52,49,49,70,65,70,49,68,52,55,65,68,68,54,67,67,65,55,51,55,52,68,65,70,48,54,54,48,54,57,68,48,48,0,48,68,48,65,68,53,53,53,67,54,68,65,48,66,68,52,50,54,56,70,56,53,55,51,68,67,49,48,51,70,52,53,53,70,54,50,65,54,49,48,0,48,57,56,52,68,56,56,65,56,67,50,68,48,48,50,53,65,69,52,51,68,65,69,55,50,67,69,69,54,70,48,51,56,57,67,54,67,56,49,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,48,0,51,50,50,66,67,51,53,54,57,67,68,48,50,55,48,69,67,51,49,55,57,66,51,48,51,56,50,70,50,52,49,52,56,66,53,51,51,68,49,48,0,60,46,99,99,116,111,114,62,98,95,95,49,95,49,48,0,65,90,84,69,67,95,68,65,84,65,95,49,48,0,100,101,99,111,100,101,66,97,115,101,57,48,48,116,111,66,97,115,101,49,48,0,67,97,108,99,117,108,97,116,101,67,104,101,99,107,115,117,109,68,105,103,105,116,77,111,100,117,108,111,49,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,48,0,55,57,70,49,52,66,54,56,52,55,48,66,52,66,55,65,65,51,66,67,68,67,65,54,55,53,56,48,55,50,70,50,66,57,51,50,48,51,50,48,0,56,57,55,49,48,52,53,68,57,70,65,50,51,54,54,57,68,67,52,65,50,48,52,68,52,55,56,68,67,54,51,56,56,56,65,57,66,52,50,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,48,0,67,66,57,55,55,67,54,53,51,48,54,54,55,49,51,69,68,48,51,56,48,66,50,70,69,52,51,66,66,69,48,70,48,68,66,50,51,67,52,48,0,76,65,84,67,72,95,84,79,95,67,52,48,0,105,115,78,97,116,105,118,101,67,52,48,0,67,56,50,70,55,55,52,52,70,55,56,65,65,53,56,51,48,69,68,66,68,57,65,68,55,55,52,67,70,70,55,54,55,51,55,70,55,68,52,48,0,68,66,70,57,65,55,55,50,49,50,55,69,49,49,49,57,68,54,69,53,53,55,65,70,56,49,50,66,54,48,55,56,52,51,56,67,69,57,55,48,0,69,52,55,48,70,70,66,48,70,52,67,65,67,52,56,50,56,70,53,68,49,69,49,52,55,56,54,69,53,55,57,49,67,56,53,52,54,66,55,48,0,68,56,69,48,53,56,69,55,48,48,49,56,55,65,53,65,69,51,67,55,69,68,57,68,54,50,67,68,48,57,69,68,65,48,52,69,56,67,55,48,0,56,53,54,54,54,66,50,53,54,57,50,65,66,56,49,52,69,57,49,70,54,56,53,51,56,52,69,69,65,48,51,56,57,70,49,52,55,69,55,48,0,114,111,116,97,116,101,49,56,48,0,53,70,68,57,55,49,66,55,69,54,65,52,51,49,69,54,70,51,70,57,49,68,53,65,57,53,70,50,48,48,54,65,50,52,70,52,56,55,56,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,56,48,0,70,52,57,56,55,51,52,50,52,52,54,66,57,69,65,57,57,51,57,53,49,65,65,55,56,68,53,68,68,54,50,70,68,52,57,50,65,48,57,48,0,49,65,51,67,48,49,56,49,54,70,54,69,55,53,48,69,67,54,53,70,68,69,70,52,70,69,66,55,55,53,56,50,51,53,52,53,54,56,57,48,0,55,49,68,50,66,69,70,49,48,68,52,67,54,67,65,57,56,70,67,49,52,51,69,51,69,52,66,55,68,66,49,53,52,70,57,70,66,56,57,48,0,48,67,55,68,51,52,55,49,55,56,69,53,51,48,50,55,51,51,65,69,68,56,57,54,65,65,51,65,55,66,53,68,68,69,68,67,51,65,57,48,0,57,57,48,55,51,70,56,52,52,57,56,52,70,50,56,67,49,65,57,70,67,49,69,49,52,57,48,69,53,54,51,49,50,55,50,69,50,54,65,48,0,65,66,53,57,68,49,66,51,68,65,49,66,49,65,54,53,68,57,52,70,48,68,66,68,49,67,54,54,57,53,56,65,52,68,50,50,56,67,65,48,0,48,69,52,53,56,53,57,56,50,69,65,49,57,54,54,52,67,51,51,69,65,50,49,51,69,69,54,57,69,67,53,52,56,70,55,51,50,50,66,48,0,67,52,52,52,57,67,49,49,53,67,54,70,48,69,54,51,57,69,53,70,53,51,68,53,57,51,70,54,69,56,53,68,53,53,68,49,56,68,66,48,0,55,51,48,48,55,53,52,55,66,49,69,67,67,50,66,56,70,57,53,50,68,67,70,55,70,53,67,49,68,70,57,70,65,53,57,56,49,54,67,48,0,53,51,49,55,51,49,48,54,66,49,54,49,53,51,48,67,65,50,54,67,54,57,57,56,51,66,52,52,66,66,69,50,70,65,66,56,57,48,68,48,0,51,51,66,56,53,52,48,50,51,48,69,55,51,54,54,65,54,52,65,67,53,50,48,69,52,70,56,49,57,49,48,51,69,66,48,48,69,67,68,48,0,54,50,65,66,57,52,48,49,70,52,67,66,50,66,48,65,55,70,70,55,50,68,51,70,51,70,53,54,65,65,50,70,49,52,69,51,52,70,69,48,0,76,48,0,60,46,99,99,116,111,114,62,98,95,95,52,48,95,48,0,60,46,99,99,116,111,114,62,98,95,95,49,95,48,0,60,46,99,99,116,111,114,62,98,95,95,50,95,48,0,60,46,99,116,111,114,62,98,95,95,52,51,95,48,0,60,103,101,116,95,79,112,116,105,111,110,115,62,98,95,95,56,95,48,0,60,46,99,99,116,111,114,62,98,95,95,57,95,48,0,60,115,101,116,95,79,112,116,105,111,110,115,62,98,95,95,57,95,48,0,120,48,0,121,48,0,57,68,54,69,50,65,55,48,51,69,50,70,56,67,54,57,67,57,67,55,65,48,66,56,68,66,56,70,54,65,56,48,51,53,69,56,52,54,48,49,0,70,56,69,51,53,53,51,55,53,56,55,66,55,53,66,57,50,70,69,69,54,66,55,67,66,53,51,56,50,66,57,52,66,55,67,54,48,56,48,49,0,54,55,50,55,68,55,55,68,66,55,52,66,48,56,67,67,57,48,48,51,48,50,57,65,67,57,50,66,55,65,67,54,56,69,50,53,56,56,49,49,0,60,46,99,99,116,111,114,62,98,95,95,49,95,49,49,0,97,49,49,0,97,50,49,0,67,67,57,69,69,50,67,70,50,52,55,66,51,53,51,52,49,48,50,67,49,51,50,52,67,50,54,55,57,53,48,51,54,56,54,69,70,48,51,49,0,56,70,68,53,53,51,57,57,70,53,51,56,70,65,70,57,54,48,56,69,57,51,56,69,65,66,48,56,68,52,66,67,56,56,68,48,69,49,51,49,0,53,55,52,49,65,66,67,48,54,52,70,67,68,69,70,52,67,53,69,69,48,50,70,51,49,68,66,57,57,50,67,50,48,53,69,65,55,50,51,49,0,55,55,48,54,49,54,69,53,54,55,48,56,51,48,55,55,57,51,51,68,67,48,66,50,57,65,56,70,56,51,54,56,70,67,50,69,66,52,51,49,0,51,49,57,57,68,68,51,53,65,65,54,65,48,52,49,65,70,57,70,54,54,66,70,66,65,69,67,51,53,54,51,69,56,51,56,68,51,55,51,49,0,57,57,67,67,48,56,50,55,66,67,49,54,48,50,55,50,54,51,69,51,55,51,55,70,70,53,57,52,49,49,65,53,68,52,66,70,68,69,51,49,0,53,57,48,49,49,55,53,53,50,66,50,48,57,48,51,52,53,67,56,70,57,57,70,50,56,66,70,57,69,67,66,54,51,69,55,68,69,70,51,49,0,97,51,49,0,51,53,56,53,57,69,56,51,50,57,48,55,48,69,53,53,67,53,68,57,50,56,50,57,51,48,48,50,51,68,68,54,66,49,53,57,52,49,52,49,0,70,49,70,50,50,55,52,56,65,55,67,49,65,52,67,67,55,57,69,57,55,67,50,48,54,51,67,52,56,68,55,70,70,48,55,48,68,57,52,49,0,56,57,55,66,48,69,49,53,51,67,56,48,54,54,49,67,66,52,67,69,54,53,51,49,66,68,55,69,57,51,53,54,66,52,52,49,51,70,55,49,0,65,57,56,66,56,70,48,67,57,50,51,70,53,68,70,67,57,55,51,51,50,70,67,67,56,48,70,54,53,67,57,54,70,57,70,50,55,49,56,49,0,66,53,55,51,65,53,53,65,67,66,49,50,70,55,69,65,50,48,52,56,66,54,69,68,50,49,51,55,54,49,57,50,57,50,54,52,66,70,56,49,0,73,83,79,56,56,53,57,49,0,67,67,55,52,66,70,56,57,67,70,54,50,49,65,65,67,50,57,54,54,53,52,50,54,65,57,49,49,69,52,66,56,66,66,66,54,48,66,57,49,0,51,69,56,67,51,56,56,54,52,54,55,65,69,67,57,51,57,53,52,66,48,66,49,70,50,51,66,52,57,54,57,67,69,53,70,68,66,51,65,49,0,70,51,68,54,57,54,51,52,50,49,49,51,68,65,48,56,68,49,69,49,49,51,55,70,65,70,52,65,48,69,65,55,53,53,50,56,70,52,66,49,0,70,54,53,67,68,53,53,65,68,53,67,66,66,48,68,52,57,66,52,53,69,48,53,67,53,67,48,51,54,57,54,49,54,67,54,53,56,65,66,49,0,68,68,50,66,52,53,53,50,57,69,67,54,67,69,69,66,66,56,54,53,57,54,68,51,53,52,54,49,70,54,51,50,52,52,70,66,51,66,67,49,0,105,115,70,78,67,49,0,105,115,83,101,99,111,110,100,68,105,103,105,116,70,78,67,49,0,105,115,70,105,114,115,116,68,105,103,105,116,70,78,67,49,0,105,115,65,110,121,70,78,67,49,0,53,52,65,65,54,55,53,52,54,68,70,51,68,66,65,66,68,68,56,49,52,70,66,52,51,55,48,50,54,56,52,68,56,67,65,51,53,69,68,49,0,50,57,50,51,68,52,49,57,49,70,70,55,70,66,66,70,49,49,66,70,67,54,52,51,66,54,68,57,51,67,67,56,48,55,52,68,51,49,69,49,0,53,54,70,55,53,70,57,50,53,55,55,52,54,48,56,66,54,66,70,56,56,70,54,57,68,54,49,50,52,67,66,52,52,68,68,70,52,50,69,49,0,57,49,69,65,49,53,50,56,66,55,69,50,66,53,57,68,66,55,56,69,53,69,55,65,55,52,57,51,49,50,68,68,50,48,65,65,52,51,70,49,0,76,49,0,78,49,0,65,83,83,85,77,69,95,71,83,49,0,103,101,116,95,65,115,115,117,109,101,71,83,49,0,115,101,116,95,65,115,115,117,109,101,71,83,49,0,60,46,99,99,116,111,114,62,98,95,95,52,48,95,49,0,60,46,99,99,116,111,114,62,98,95,95,49,95,49,0,60,46,99,99,116,111,114,62,98,95,95,50,95,49,0,67,79,68,69,95,70,78,67,95,49,0,69,83,67,65,80,69,95,70,78,67,95,49,0,70,117,110,99,96,49,0,76,105,110,107,101,100,76,105,115,116,78,111,100,101,96,49,0,78,117,108,108,97,98,108,101,96,49,0,73,67,111,109,112,97,114,97,98,108,101,96,49,0,73,69,110,117,109,101,114,97,98,108,101,96,49,0,73,69,113,117,97,116,97,98,108,101,96,49,0,65,99,116,105,111,110,96,49,0,73,67,111,108,108,101,99,116,105,111,110,96,49,0,67,111,109,112,97,114,105,115,111,110,96,49,0,73,66,97,114,99,111,100,101,82,101,97,100,101,114,96,49,0,73,67,111,109,112,97,114,101,114,96,49,0,73,66,97,114,99,111,100,101,82,101,110,100,101,114,101,114,96,49,0,73,66,97,114,99,111,100,101,87,114,105,116,101,114,96,49,0,73,69,110,117,109,101,114,97,116,111,114,96,49,0,73,76,105,115,116,96,49,0,76,105,110,107,101,100,76,105,115,116,96,49,0,97,112,112,108,121,77,97,115,107,80,101,110,97,108,116,121,82,117,108,101,49,0,112,97,116,116,101,114,110,49,0,109,97,115,107,101,100,70,111,114,109,97,116,73,110,102,111,49,0,112,49,0,110,117,109,98,101,114,49,0,114,101,97,100,67,111,114,110,101,114,49,0,99,111,114,110,101,114,49,0,99,101,110,116,101,114,49,0,101,99,66,108,111,99,107,115,49,0,100,105,103,105,116,49,0,120,49,0,121,49,0,49,55,51,49,53,56,51,66,52,48,57,67,65,51,54,49,70,50,48,52,51,68,49,51,52,65,56,65,69,55,51,52,55,70,69,70,70,65,48,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,49,50,0,71,66,50,51,49,50,0,55,51,66,49,48,49,66,66,69,68,67,50,52,49,67,69,55,54,53,67,65,48,51,66,66,54,69,52,68,52,54,55,70,65,55,54,57,51,49,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,49,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,0,76,65,84,67,72,95,84,79,95,65,78,83,73,88,49,50,0,105,115,78,97,116,105,118,101,88,49,50,0,60,46,99,99,116,111,114,62,98,95,95,49,95,49,50,0,65,90,84,69,67,95,68,65,84,65,95,49,50,0,97,49,50,0,55,57,49,50,51,69,70,52,52,68,48,48,70,53,66,48,69,68,51,54,53,51,52,56,68,49,70,68,52,57,70,57,70,65,50,67,66,50,50,50,0,51,68,51,67,52,54,67,67,53,56,57,70,54,53,67,50,52,52,51,54,56,56,57,53,50,67,66,67,68,57,67,52,57,57,56,51,57,54,50,50,0,97,50,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,51,50,0,66,66,69,52,50,69,68,49,54,52,53,70,57,68,55,55,53,56,49,68,49,68,53,66,54,69,69,49,49,66,57,51,51,53,49,50,70,56,51,50,0,67,53,68,53,66,49,69,51,50,67,57,67,49,50,67,48,48,48,54,70,48,50,65,65,56,67,51,66,56,52,66,70,70,52,56,48,70,57,51,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,50,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,82,71,66,65,51,50,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,66,71,82,65,51,50,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,65,82,71,66,51,50,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,82,71,66,51,50,0,49,70,70,68,69,67,48,70,50,55,66,67,57,68,67,70,55,48,56,70,48,54,55,55,56,54,50,48,53,70,49,54,52,70,56,65,54,68,51,50,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,66,71,82,51,50,0,97,51,50,0,84,111,73,110,116,51,50,0,53,48,49,68,55,67,53,53,49,66,68,70,68,51,56,56,53,70,51,54,52,55,56,52,50,52,69,69,69,53,66,55,50,55,54,54,67,56,52,50,0,48,49,56,57,56,66,55,54,70,55,67,52,53,69,55,50,51,57,57,54,67,55,69,56,69,68,70,52,53,52,50,57,70,49,48,65,66,51,53,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,50,0,55,54,49,54,69,52,70,52,52,67,65,55,54,68,70,53,51,57,67,49,49,66,57,67,56,70,68,57,49,49,68,54,54,55,70,69,70,67,53,50,0,49,66,67,65,49,65,57,49,50,70,70,50,50,68,65,54,57,65,65,51,69,57,49,65,54,56,52,57,50,68,52,66,65,53,49,55,57,49,54,50,0,52,54,51,66,53,65,70,57,56,67,66,57,54,67,69,52,52,48,50,51,67,67,57,65,49,54,66,68,50,50,67,54,56,68,66,52,49,54,54,50,0,66,66,65,51,66,70,69,70,49,57,52,65,55,54,57,57,56,67,52,56,55,52,68,49,48,55,69,66,69,65,56,65,56,49,51,53,55,55,54,50,0,69,66,53,67,56,57,49,52,48,53,57,49,67,69,68,52,50,67,51,57,65,56,65,69,54,57,56,65,52,49,70,51,53,57,51,67,51,67,54,50,0,54,67,69,68,68,55,53,48,52,50,51,53,67,70,54,54,67,53,51,70,66,55,48,65,49,55,65,67,66,68,68,52,52,48,68,55,55,67,54,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,55,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,55,50,0,56,48,69,57,50,49,55,54,49,56,70,56,67,50,67,55,70,69,68,54,49,69,52,69,55,54,53,51,67,68,48,69,54,54,67,55,52,56,55,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,55,50,0,54,51,66,51,57,57,67,68,65,49,56,55,50,49,66,70,52,65,51,67,49,65,56,70,51,67,52,54,69,48,66,52,50,55,49,66,48,67,55,50,0,51,68,70,53,52,51,69,53,49,65,66,52,51,70,49,70,53,54,49,66,49,49,66,56,55,56,57,67,56,50,69,50,54,67,52,50,55,70,55,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,57,50,0,56,56,67,70,67,66,51,49,69,68,57,65,70,70,66,57,48,52,56,51,57,55,51,68,48,50,68,53,68,69,69,56,65,56,50,65,52,56,57,50,0,55,49,48,50,65,48,55,69,68,70,53,50,67,48,53,50,68,53,54,50,53,68,55,51,50,55,53,65,53,55,57,68,67,54,69,55,54,67,57,50,0,50,65,65,53,65,48,49,69,56,53,55,69,50,66,66,52,67,56,66,52,68,70,48,54,68,49,67,65,56,52,56,69,54,56,66,69,48,52,65,50,0,57,54,50,51,66,66,50,54,52,57,57,52,50,57,53,55,70,54,56,48,48,55,53,65,53,65,68,51,65,49,54,68,69,52,50,55,70,55,65,50,0,68,57,50,51,55,55,55,70,52,56,67,68,65,53,49,70,50,49,67,65,66,67,69,68,52,70,69,51,54,65,50,68,54,50,48,50,56,56,65,50,0,55,57,55,56,65,48,48,51,67,53,51,55,48,54,57,55,54,68,70,68,50,68,68,70,54,69,66,65,69,51,65,56,55,53,56,53,52,48,66,50,0,66,66,52,48,52,56,50,66,55,53,48,51,68,67,70,49,52,66,66,54,68,65,69,51,48,48,67,50,55,49,55,67,51,48,50,49,67,55,66,50,0,69,51,50,67,67,67,49,49,51,68,52,67,67,67,70,55,68,68,49,70,66,49,51,68,53,70,48,50,65,55,66,69,56,68,49,67,53,56,66,50,0,69,52,55,50,56,50,53,50,70,67,68,55,70,54,56,70,68,70,65,51,57,66,68,53,55,69,51,69,50,67,65,57,68,55,70,69,65,49,67,50,0,65,50,57,55,56,65,52,70,55,54,48,49,53,53,49,49,69,51,55,52,49,65,66,70,57,66,53,56,49,49,55,66,51,52,56,66,49,57,67,50,0,53,68,68,54,57,68,57,51,67,66,65,65,53,54,50,51,65,69,50,56,54,69,57,55,50,54,53,56,57,48,65,55,54,57,51,65,48,65,67,50,0,70,48,57,70,48,50,57,48,57,49,56,51,55,69,49,50,66,52,69,54,48,53,48,48,66,69,68,48,55,52,57,68,55,57,70,55,55,70,67,50,0,55,50,67,68,67,66,68,67,70,51,52,69,70,68,51,69,48,57,67,51,70,55,48,53,55,68,66,55,49,53,68,65,65,70,67,69,48,54,69,50,0,50,69,69,69,68,54,50,48,70,67,70,52,52,55,69,67,49,70,66,57,66,55,50,50,49,66,57,55,53,54,70,51,56,69,51,67,69,54,70,50,0,69,68,50,56,55,67,49,50,67,57,56,70,66,70,70,56,57,65,66,69,67,70,55,57,49,70,54,48,48,50,67,55,52,52,54,49,49,68,70,50,0,76,50,0,78,50,0,60,46,99,99,116,111,114,62,98,95,95,49,95,50,0,60,46,99,99,116,111,114,62,98,95,95,50,95,50,0,67,79,68,69,95,70,78,67,95,50,0,69,83,67,65,80,69,95,70,78,67,95,50,0,70,117,110,99,96,50,0,65,99,116,105,111,110,96,50,0,75,101,121,86,97,108,117,101,80,97,105,114,96,50,0,73,68,105,99,116,105,111,110,97,114,121,96,50,0,67,104,97,110,103,101,78,111,116,105,102,121,68,105,99,116,105,111,110,97,114,121,96,50,0,103,101,116,80,111,115,116,67,111,100,101,50,0,97,112,112,108,121,77,97,115,107,80,101,110,97,108,116,121,82,117,108,101,50,0,112,97,116,116,101,114,110,50,0,109,97,115,107,101,100,70,111,114,109,97,116,73,110,102,111,50,0,112,50,0,110,117,109,98,101,114,50,0,114,101,97,100,67,111,114,110,101,114,50,0,99,111,114,110,101,114,50,0,99,101,110,116,101,114,50,0,101,99,66,108,111,99,107,115,50,0,115,104,105,102,116,67,111,117,110,116,115,50,0,100,105,103,105,116,50,0,120,50,0,121,50,0,69,49,67,56,52,57,66,49,50,57,70,66,66,52,51,53,50,50,51,57,50,48,56,65,69,70,69,51,52,70,51,54,51,49,65,50,55,56,49,51,0,68,52,49,70,68,57,49,55,51,48,51,68,48,49,48,70,50,54,48,48,53,66,68,65,70,49,70,51,49,65,66,67,56,65,53,49,50,65,49,51,0,60,46,99,99,116,111,114,62,98,95,95,49,95,49,51,0,69,65,78,95,49,51,0,97,49,51,0,55,57,66,69,67,53,56,50,50,57,57,67,69,53,70,52,54,57,48,50,66,57,67,48,57,49,67,49,57,57,51,49,69,50,54,68,57,51,50,51,0,51,56,67,65,69,53,66,67,49,66,51,49,69,50,52,65,56,56,48,54,49,67,69,67,51,54,50,48,57,51,66,66,52,68,56,70,48,53,50,51,0,97,50,51,0,66,54,66,67,68,70,68,69,68,68,48,55,65,49,57,70,49,48,50,56,70,50,50,54,68,69,48,49,57,69,51,50,69,55,70,66,50,51,51,51,0,68,50,66,67,66,50,53,52,52,49,65,57,65,56,70,51,68,69,57,52,68,49,69,70,50,55,65,56,55,48,66,66,55,55,53,53,51,56,51,51,0,97,51,51,0,53,56,51,65,52,51,56,52,55,57,70,52,50,67,55,68,56,68,69,56,67,54,54,57,57,66,48,67,51,55,65,52,65,48,50,54,65,54,52,51,0,54,57,68,52,56,57,65,56,68,65,68,65,70,48,57,52,56,56,53,56,66,48,50,70,50,67,67,55,50,53,56,66,49,53,51,48,68,56,52,51,0,56,50,65,65,67,52,51,55,57,50,52,66,53,48,54,54,70,66,55,54,48,55,53,65,54,49,51,66,50,54,68,54,49,69,48,48,56,67,53,51,0,49,54,65,50,51,66,51,50,49,65,54,51,68,54,48,53,53,53,53,56,49,66,52,57,66,69,70,65,55,49,68,57,65,65,55,49,65,56,54,51,0,53,67,51,53,69,50,67,55,68,48,70,49,55,67,66,69,51,49,70,55,70,53,52,52,70,70,51,56,51,55,69,65,51,65,50,69,69,57,54,51,0,66,49,57,51,56,49,67,54,48,69,55,50,51,65,53,51,53,69,70,56,53,54,69,67,49,49,56,68,66,56,54,55,53,48,51,70,67,67,54,51,0,55,49,50,66,50,52,68,68,51,67,49,55,54,55,49,67,55,56,66,69,51,51,67,56,51,51,49,54,53,55,54,65,68,57,50,56,53,50,55,51,0,55,55,54,69,68,70,68,48,56,54,48,65,50,49,68,53,49,49,57,67,65,49,57,55,67,56,57,66,68,50,65,67,55,68,54,70,57,50,56,51,0,57,66,66,66,53,51,70,70,67,65,67,66,66,69,69,49,49,56,66,67,48,70,53,68,49,54,69,68,67,52,68,70,51,55,69,53,53,48,57,51,0,49,50,70,49,68,66,50,65,67,54,56,67,68,52,53,53,54,51,56,51,55,52,69,56,68,70,57,69,57,68,54,48,52,66,49,53,70,54,57,51,0,67,79,68,69,95,57,51,0,68,53,66,54,57,57,51,68,52,57,57,54,48,68,70,48,49,51,57,51,65,68,56,48,57,53,48,57,49,66,49,50,51,51,50,67,50,70,65,51,0,52,67,67,65,70,56,52,50,54,57,53,68,67,67,70,55,70,55,65,57,69,67,48,68,54,52,49,68,67,51,54,66,51,56,57,51,55,70,65,51,0,51,52,54,49,55,69,49,70,57,69,57,48,49,66,68,57,68,68,57,70,69,66,49,56,51,57,52,56,51,70,53,69,68,52,48,54,69,55,66,51,0,68,67,55,68,53,56,70,68,52,70,54,57,48,65,54,56,56,49,49,69,50,50,54,50,50,57,70,55,52,68,48,48,56,57,70,48,49,56,66,51,0,66,51,70,68,69,67,49,57,48,56,67,53,48,57,51,66,70,67,53,67,70,66,49,50,55,52,57,69,69,50,54,53,48,67,56,54,49,50,67,51,0,57,55,57,70,50,53,54,57,55,53,54,66,66,49,49,57,69,52,52,53,65,69,69,49,56,53,56,65,65,57,70,70,56,52,51,68,53,48,68,51,0,54,68,69,56,57,52,57,57,69,56,70,56,53,56,54,55,50,56,57,69,49,54,57,48,69,49,55,54,69,49,68,69,53,56,69,69,54,68,68,51,0,66,66,65,65,50,53,55,48,54,48,54,50,69,56,65,65,55,51,56,70,57,54,67,53,52,49,69,51,65,54,68,54,51,53,55,70,57,50,69,51,0,48,70,70,53,56,67,56,56,54,66,67,56,49,70,68,53,53,56,50,68,56,68,57,69,66,70,51,69,54,68,50,53,52,54,53,67,52,69,69,51,0,76,51,0,78,51,0,60,46,99,99,116,111,114,62,98,95,95,49,95,51,0,60,46,99,99,116,111,114,62,98,95,95,50,95,51,0,67,79,68,69,95,70,78,67,95,51,0,69,83,67,65,80,69,95,70,78,67,95,51,0,70,117,110,99,96,51,0,103,101,116,80,111,115,116,67,111,100,101,51,0,97,112,112,108,121,77,97,115,107,80,101,110,97,108,116,121,82,117,108,101,51,0,112,51,0,110,117,109,98,101,114,51,0,114,101,97,100,67,111,114,110,101,114,51,0,99,111,114,110,101,114,51,0,120,51,0,121,51,0,57,52,65,56,52,69,57,51,65,68,48,50,57,49,66,54,50,54,51,67,70,56,66,68,55,51,55,49,48,66,57,51,65,52,69,48,56,50,48,52,0,56,68,67,70,51,70,53,55,66,68,53,65,65,70,56,68,48,57,55,51,55,53,69,52,50,57,48,65,52,49,66,49,51,66,50,67,56,66,48,52,0,60,46,99,99,116,111,114,62,98,95,95,49,95,49,52,0,82,83,83,95,49,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,48,50,52,0,49,68,48,53,48,49,68,49,52,70,69,51,49,55,50,57,67,68,55,53,65,52,48,55,51,70,52,52,48,52,65,70,55,69,53,51,66,48,50,52,0,67,54,50,55,49,55,70,67,51,53,66,65,53,52,53,54,51,70,52,50,51,56,53,66,70,55,57,69,52,52,68,68,48,65,53,49,48,49,50,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,50,52,0,48,51,65,66,54,66,66,54,53,65,67,55,66,56,69,67,70,51,48,57,68,51,55,67,65,67,69,67,69,52,66,53,51,66,51,56,68,56,50,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,52,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,82,71,66,50,52,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,66,71,82,50,52,0,54,65,48,57,67,66,55,56,53,48,56,55,70,53,65,57,70,54,69,67,55,52,56,67,55,67,49,48,70,57,56,70,65,50,54,56,51,53,51,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,52,52,0,68,97,116,97,77,97,116,114,105,120,83,121,109,98,111,108,73,110,102,111,49,52,52,0,57,56,52,56,69,67,56,67,49,49,55,55,66,55,48,48,67,68,66,57,56,70,49,65,55,67,48,55,70,50,65,57,67,57,69,68,69,52,52,52,0,53,48,70,49,65,56,66,70,69,56,56,49,68,49,50,66,55,70,55,49,70,50,70,54,68,70,54,54,53,56,55,49,57,54,49,67,49,56,52,52,0,50,56,68,49,69,51,66,53,49,56,56,70,69,53,53,50,68,51,55,57,49,50,51,49,52,69,52,49,57,69,55,70,51,48,65,66,68,56,52,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,52,0,57,57,51,68,67,53,70,70,55,48,50,52,49,68,53,49,52,57,69,66,53,69,65,70,49,67,68,68,57,53,55,67,65,48,66,50,51,52,53,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,52,0,56,69,69,69,55,50,65,57,53,53,68,70,51,56,52,50,53,51,67,53,67,52,53,56,55,50,54,65,56,65,55,50,57,57,65,48,53,49,54,52,0,67,65,48,51,70,56,52,56,68,52,65,57,68,68,56,53,66,53,67,70,48,57,50,69,51,54,51,49,55,68,52,56,51,69,51,66,48,56,54,52,0,69,48,50,69,51,69,67,57,52,53,48,52,65,70,69,69,66,51,52,67,69,52,48,57,56,51,54,65,51,55,57,55,68,55,69,52,51,57,54,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,52,0,77,65,88,73,67,79,68,69,95,70,73,69,76,68,95,54,52,0,85,73,110,116,54,52,0,57,69,56,53,70,53,55,49,49,70,67,55,57,53,68,53,68,66,65,68,52,66,69,70,51,51,53,69,68,66,56,48,53,53,65,68,68,49,55,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,53,55,52,0,51,56,48,49,55,69,53,48,65,70,53,48,51,54,56,49,66,70,67,50,66,68,48,67,68,69,68,53,70,55,53,54,53,52,55,49,66,53,55,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,56,52,0,69,53,65,68,54,48,69,50,66,69,54,56,70,65,48,49,53,53,56,56,56,65,55,69,56,55,66,51,52,70,48,51,57,48,53,69,55,53,56,52,0,69,50,67,48,50,51,57,69,66,66,70,49,70,68,52,53,57,50,53,70,65,65,55,57,48,57,52,53,56,51,48,52,68,70,68,51,55,65,56,52,0,54,67,52,52,50,49,68,50,53,69,51,54,56,57,51,69,55,70,57,55,70,56,67,55,68,53,50,67,54,69,68,70,56,48,50,56,50,70,56,52,0,51,48,48,48,50,66,70,48,52,54,49,69,55,70,54,51,65,50,51,48,57,66,50,67,66,57,51,56,50,50,57,67,57,50,66,68,67,70,56,52,0,69,65,56,54,69,51,49,67,57,70,54,50,56,56,54,56,49,53,49,54,69,50,65,65,50,50,69,70,54,66,53,67,68,52,52,49,65,66,57,52,0,53,67,66,57,50,52,69,55,52,54,49,66,57,48,49,49,69,67,56,49,57,55,65,51,48,56,49,53,69,65,50,54,51,53,57,53,66,51,65,52,0,65,57,52,69,51,66,68,50,66,52,54,66,66,67,49,54,67,57,70,53,67,48,65,68,50,57,53,69,57,66,50,67,54,50,66,54,66,55,65,52,0,50,69,56,66,52,55,51,65,55,49,50,52,50,51,69,57,56,51,67,50,66,50,69,68,65,52,51,57,50,55,69,66,48,65,49,52,70,53,66,52,0,48,48,69,49,52,67,55,55,50,51,48,65,69,70,48,57,55,52,67,70,70,51,57,51,48,52,56,49,49,53,55,65,65,66,68,65,48,55,66,52,0,70,55,65,54,70,56,66,57,65,70,50,69,51,48,50,67,66,54,67,51,54,69,67,48,51,55,56,48,49,53,53,68,57,65,57,67,53,67,67,52,0,68,55,65,69,52,69,56,53,48,57,52,57,69,51,55,69,55,51,53,57,53,57,53,54,57,57,67,67,68,67,55,53,49,69,49,67,52,53,69,52,0,76,52,0,78,52,0,60,46,99,99,116,111,114,62,98,95,95,49,95,52,0,60,46,99,99,116,111,114,62,98,95,95,50,95,52,0,69,83,67,65,80,69,95,70,78,67,95,52,0,97,112,112,108,121,77,97,115,107,80,101,110,97,108,116,121,82,117,108,101,52,0,112,52,0,114,101,97,100,67,111,114,110,101,114,52,0,99,111,114,110,101,114,52,0,50,68,51,68,70,57,56,57,66,69,51,66,66,65,50,66,51,53,51,70,56,52,53,67,51,55,57,57,50,68,70,70,56,53,53,55,57,53,48,53,0,70,67,54,55,66,56,68,70,70,56,52,55,54,54,51,66,68,66,50,54,50,57,56,65,54,55,66,51,55,51,53,56,66,55,57,53,65,55,48,53,0,51,54,50,52,69,68,57,49,70,54,57,56,66,52,56,49,48,48,48,57,52,50,54,65,56,55,65,53,66,67,69,50,51,50,65,53,65,55,48,53,0,77,65,67,82,79,95,48,53,0,50,51,55,51,50,69,56,49,52,66,53,68,57,70,53,52,48,66,50,52,50,51,70,70,67,68,55,54,66,65,69,66,70,65,67,65,69,55,50,53,0,57,48,51,50,68,52,69,49,69,68,57,69,66,65,67,50,52,49,55,65,49,48,54,53,52,70,70,48,67,54,53,56,68,50,67,67,57,56,50,53,0,67,69,70,51,52,56,56,57,68,66,51,68,48,48,66,54,65,48,65,55,70,54,57,56,52,68,57,66,65,55,69,57,67,67,56,55,48,65,50,53,0,55,57,65,52,66,55,49,55,68,65,70,52,51,49,50,65,55,56,70,49,65,55,53,65,55,50,50,50,49,68,66,57,54,57,48,68,49,66,50,53,0,57,53,67,54,54,56,51,54,65,54,68,66,53,65,50,54,50,66,54,55,52,52,54,51,55,57,50,65,57,65,54,55,50,52,49,65,69,67,50,53,0,50,48,68,55,52,48,65,55,69,54,54,49,68,53,48,66,48,54,68,67,51,50,69,70,54,53,55,55,51,54,55,68,50,54,52,70,54,50,51,53,0,57,70,56,67,65,66,48,65,57,56,66,48,48,51,51,53,70,68,68,66,67,67,49,54,67,55,52,56,70,69,65,53,50,52,65,50,53,52,51,53,0,114,111,116,97,116,101,67,111,117,110,116,101,114,67,108,111,99,107,119,105,115,101,52,53,0,51,66,49,51,67,51,52,65,50,50,67,51,65,66,67,52,54,57,51,49,66,48,70,49,65,67,66,53,50,53,65,70,57,67,55,54,54,53,53,53,0,56,50,50,65,65,69,66,49,50,54,48,53,53,68,68,68,69,70,49,70,68,56,51,68,51,57,55,69,66,68,49,66,52,50,50,53,49,68,53,53,0,70,51,67,54,68,67,65,65,53,66,54,66,65,56,68,49,68,50,50,50,49,68,52,65,67,54,51,66,69,54,55,68,49,53,68,66,68,69,53,53,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,82,71,66,53,54,53,0,68,69,68,69,70,57,69,56,68,50,48,53,50,55,49,48,69,49,53,67,48,67,67,48,56,48,48,48,52,66,70,66,51,51,70,52,55,54,54,53,0,70,65,57,54,51,53,68,56,66,66,51,67,70,56,54,65,69,53,66,69,48,53,55,49,65,50,52,67,52,66,57,53,51,52,68,53,68,53,55,53,0,65,69,69,48,51,56,50,50,67,51,55,50,53,52,50,56,54,49,48,69,54,69,55,68,65,65,70,55,57,55,48,68,69,51,53,70,55,54,55,53,0,55,68,53,55,68,57,65,49,67,55,66,69,51,65,55,68,65,50,69,53,56,48,69,66,69,65,68,48,66,70,68,52,53,50,53,56,68,54,56,53,0,51,70,54,67,48,57,53,67,49,48,52,48,51,67,56,56,53,68,50,49,53,50,55,51,57,68,50,69,49,48,68,67,55,52,70,70,49,69,56,53,0,49,56,54,69,55,54,52,51,69,50,50,67,70,48,69,50,52,55,57,69,57,50,67,55,51,56,70,69,66,69,70,53,54,66,50,55,53,69,57,53,0,50,53,57,66,55,69,70,53,52,65,53,51,53,70,51,52,48,48,49,66,57,53,52,56,48,66,52,66,66,49,49,50,52,53,69,65,52,49,66,53,0,67,54,66,54,55,56,51,70,68,67,55,53,50,48,50,55,51,51,68,48,53,49,56,53,56,53,69,54,52,57,57,48,54,48,48,56,68,66,67,53,0,49,50,54,50,53,65,67,57,52,70,66,57,55,68,65,65,51,55,55,52,52,57,65,56,55,55,68,50,53,55,56,54,67,56,65,68,70,70,67,53,0,65,65,54,48,55,66,65,48,70,65,50,48,68,51,69,56,48,70,52,53,54,69,54,56,55,54,56,67,53,49,55,68,49,55,68,48,55,51,68,53,0,55,48,67,70,69,50,55,50,48,55,68,68,66,49,67,54,50,68,68,51,65,57,68,65,50,50,70,50,49,70,51,66,49,56,51,49,68,55,68,53,0,69,69,65,68,67,66,65,53,67,65,70,69,51,70,68,67,50,67,50,66,49,70,65,69,69,66,48,66,52,55,52,70,51,69,57,54,54,56,68,53,0,55,52,67,52,70,70,52,48,55,67,50,48,51,52,55,50,65,68,51,54,50,66,48,67,51,53,53,49,70,69,49,56,51,50,52,48,68,65,68,53,0,49,56,56,69,55,65,52,56,48,66,56,55,49,67,53,53,52,70,51,70,56,48,53,68,51,69,49,49,56,52,54,55,51,57,54,48,69,69,68,53,0,69,70,65,65,52,53,57,57,57,65,70,49,57,48,70,67,55,49,56,54,57,48,68,67,48,49,50,49,69,66,52,57,68,69,55,70,70,67,69,53,0,76,53,0,60,46,99,99,116,111,114,62,98,95,95,49,95,53,0,60,46,99,99,116,111,114,62,98,95,95,50,95,53,0,70,117,110,99,96,53,0,67,51,54,51,66,65,69,54,54,49,68,57,57,68,54,52,69,67,70,50,70,48,68,55,67,68,51,53,65,70,67,53,66,70,70,66,55,51,48,54,0,54,65,65,54,54,54,53,55,66,66,51,50,57,50,53,55,50,67,56,70,53,54,65,66,51,68,48,49,53,65,55,57,57,48,67,52,51,54,48,54,0,67,55,66,68,52,52,50,69,48,50,49,55,57,68,67,55,53,65,66,55,70,69,70,51,52,51,67,50,57,55,69,49,70,52,54,65,55,56,48,54,0,77,65,67,82,79,95,48,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,55,49,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,54,0,57,70,54,66,68,67,49,52,67,67,70,68,70,70,66,70,56,70,49,70,69,51,53,51,57,55,52,49,70,55,57,52,50,52,70,51,51,69,49,54,0,85,73,110,116,49,54,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,71,114,97,121,49,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,54,0,53,67,53,54,51,66,70,65,66,54,52,48,48,66,50,56,50,52,70,53,69,52,49,68,55,56,70,66,51,48,57,55,69,56,50,52,52,67,50,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,51,54,0,56,57,48,57,55,55,50,67,67,55,55,49,67,50,70,70,49,68,54,49,52,49,53,53,53,53,52,53,50,70,50,69,68,52,65,68,65,53,51,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,54,0,52,57,53,57,52,56,53,49,67,52,66,54,67,50,55,57,67,51,53,66,49,54,50,70,48,50,51,54,65,57,57,69,55,67,51,49,68,68,51,54,0,73,83,79,95,73,69,67,95,54,52,54,0,100,101,99,111,100,101,73,115,111,73,101,99,54,52,54,0,105,115,83,116,105,108,108,73,115,111,73,101,99,54,52,54,0,105,115,73,115,111,73,101,99,54,52,54,0,115,101,116,73,115,111,73,101,99,54,52,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,53,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,53,54,0,105,115,83,112,101,99,105,97,108,66,50,53,54,0,76,65,84,67,72,95,84,79,95,66,65,83,69,50,53,54,0,81,82,95,67,79,68,69,95,70,73,69,76,68,95,50,53,54,0,68,65,84,65,95,77,65,84,82,73,88,95,70,73,69,76,68,95,50,53,54,0,57,57,68,55,48,65,48,56,50,66,67,66,49,52,53,66,51,49,51,52,68,68,66,55,66,69,67,52,70,68,66,53,66,68,69,70,65,55,53,54,0,69,54,48,69,57,66,68,50,69,66,53,49,69,49,69,67,68,65,48,55,50,51,67,70,48,57,56,56,57,66,52,65,51,66,70,66,56,57,53,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,54,0,69,54,67,51,52,68,53,68,52,51,56,49,67,48,69,54,49,53,49,66,50,54,70,66,57,65,51,49,52,68,56,65,53,55,50,57,50,51,54,54,0,68,70,56,50,54,52,53,48,65,57,53,65,52,67,65,51,65,52,67,70,51,67,56,51,57,70,48,49,52,65,49,69,54,53,67,65,55,69,54,54,0,51,65,57,56,57,57,48,50,54,65,65,52,53,67,53,66,56,67,66,67,51,51,69,65,52,69,57,53,48,48,67,48,54,67,55,48,65,54,55,54,0,70,50,52,48,70,52,56,54,69,49,53,66,52,51,69,49,53,50,65,69,55,70,50,66,54,57,50,65,55,70,65,51,54,49,70,65,55,55,55,54,0,57,69,53,52,56,56,54,48,51,57,50,66,54,54,50,53,56,52,49,55,50,51,50,70,52,49,69,70,48,51,68,52,56,69,66,68,68,54,56,54,0,70,52,56,68,65,51,52,70,68,57,49,50,56,52,67,55,67,55,65,55,70,66,54,51,66,57,51,68,51,69,52,65,52,68,68,69,56,55,56,54,0,65,50,68,48,48,56,70,56,66,54,51,65,54,68,53,53,51,68,69,68,69,55,68,51,54,49,48,68,67,54,70,54,70,55,51,53,57,68,56,54,0,54,56,57,49,68,57,55,67,49,57,70,52,67,50,57,49,65,68,56,50,49,69,70,48,53,69,52,67,53,68,49,66,68,51,67,51,52,55,57,54,0,70,67,68,70,50,52,68,49,67,54,51,51,54,49,51,53,52,57,50,57,54,69,70,68,51,68,67,57,50,53,48,68,56,52,48,67,65,57,57,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,57,54,0,52,67,67,48,65,48,70,55,53,55,51,53,54,66,49,55,53,54,55,57,65,69,51,70,68,66,55,50,50,51,55,53,49,55,50,65,66,65,57,54,0,65,54,69,57,55,53,69,55,50,68,56,65,57,56,55,69,54,66,57,65,65,57,52,48,48,68,69,51,48,50,53,67,49,69,57,49,66,69,57,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,0,57,67,56,57,70,66,57,49,54,48,68,66,48,65,57,56,51,68,53,66,69,53,68,53,49,48,66,70,57,69,56,48,49,70,48,49,51,54,65,54,0,56,51,54,68,65,52,56,55,50,52,66,67,54,54,70,51,50,53,55,69,55,48,70,70,70,49,54,53,65,67,67,69,48,51,55,54,54,54,65,54,0,67,50,57,67,52,70,51,49,70,51,52,51,48,54,67,65,54,50,65,67,56,49,68,57,54,65,69,49,70,66,49,52,49,69,67,50,65,56,66,54,0,48,66,70,48,55,68,53,67,52,53,56,69,68,49,69,70,50,70,50,67,65,68,55,68,49,68,65,50,51,57,67,70,49,50,57,53,50,65,66,54,0,67,67,57,53,65,54,51,51,54,49,69,57,53,70,53,65,48,66,68,70,55,55,55,49,67,69,49,65,70,51,55,66,69,51,53,56,49,55,67,54,0,55,54,49,69,67,50,57,54,57,66,57,68,49,57,54,48,68,66,51,67,66,55,70,67,48,53,69,69,67,57,54,57,52,52,66,53,57,66,67,54,0,54,49,65,49,48,50,49,54,48,54,67,65,68,48,65,53,57,57,48,69,48,48,70,68,51,48,53,52,55,56,69,55,53,70,49,57,56,51,68,54,0,51,68,56,53,50,49,65,57,53,56,66,66,70,67,67,55,48,56,69,69,48,55,50,56,57,57,51,65,69,56,67,65,70,69,66,49,53,52,68,54,0,65,66,52,52,70,54,57,55,54,53,70,52,65,56,69,67,68,53,68,52,55,51,53,52,69,65,54,50,53,48,51,57,67,52,51,67,67,52,68,54,0,55,67,70,57,50,65,56,51,53,51,54,69,50,50,54,52,69,70,52,49,68,56,67,52,48,55,68,50,52,54,69,52,49,69,50,68,66,67,68,54,0,76,54,0,60,46,99,99,116,111,114,62,98,95,95,49,95,54,0,60,46,99,99,116,111,114,62,98,95,95,50,95,54,0,65,90,84,69,67,95,68,65,84,65,95,54,0,66,89,84,69,95,67,79,77,80,65,67,84,73,79,78,95,77,79,68,69,95,76,65,84,67,72,95,54,0,69,54,50,68,48,68,55,57,51,68,54,66,67,65,51,57,48,55,57,69,54,52,52,49,66,49,54,50,69,53,57,70,51,51,69,68,50,66,48,55,0,90,88,105,110,103,46,80,68,70,52,49,55,0,80,68,70,95,52,49,55,0,50,57,65,66,49,55,50,53,49,70,53,65,55,51,48,66,53,51,57,65,66,51,53,49,70,70,67,66,52,53,66,57,70,50,70,65,56,48,50,55,0,67,55,55,56,55,69,51,48,57,56,49,52,53,70,65,50,56,68,51,56,68,69,57,53,50,68,54,51,52,66,65,56,54,50,50,56,52,49,50,55,0,49,70,53,55,55,49,66,70,50,48,48,57,66,49,52,67,67,49,50,51,57,57,57,48,57,54,54,49,53,51,53,49,65,48,66,69,57,53,50,55,0,67,68,68,67,51,68,52,50,49,50,68,51,53,55,50,50,69,51,69,56,66,65,65,55,66,53,50,55,53,57,51,50,65,54,53,54,55,48,51,55,0,66,53,68,68,70,51,52,68,50,48,69,56,55,57,68,66,65,55,54,51,53,56,65,49,51,54,54,49,70,54,49,69,54,54,56,50,66,57,51,55,0,50,56,70,57,57,49,48,50,54,55,56,49,69,49,66,67,49,49,57,70,48,50,52,57,56,68,55,53,70,66,51,65,56,52,70,52,69,68,51,55,0,68,52,70,50,70,50,48,54,65,50,68,49,49,65,48,50,56,70,51,52,57,69,48,49,52,48,49,50,55,55,52,69,69,53,67,52,51,50,52,55,0,66,53,68,55,68,57,49,66,49,52,69,54,56,50,66,55,70,54,51,68,50,57,54,66,50,52,57,56,49,52,51,65,56,52,49,53,70,51,52,55,0,54,54,49,70,57,69,57,70,69,65,49,54,67,51,65,57,67,68,70,52,53,50,65,66,54,49,55,52,51,53,55,56,52,55,49,70,55,52,52,55,0,65,51,53,48,69,70,52,51,68,51,55,66,48,50,69,70,70,53,51,55,69,66,50,66,53,55,68,68,52,67,70,48,53,68,68,55,50,67,52,55,0,49,56,53,70,65,66,51,66,51,68,56,65,67,48,70,49,67,66,69,67,70,70,67,68,55,68,69,65,52,53,69,69,52,65,67,57,69,51,53,55,0,68,55,51,66,68,67,54,48,70,65,50,56,53,55,69,55,67,69,50,70,55,52,50,53,51,48,66,48,53,54,65,49,56,54,54,67,50,49,55,55,0,68,49,65,50,66,54,49,70,68,48,56,66,66,50,50,52,50,69,49,50,70,52,67,65,70,54,66,53,49,50,48,50,57,67,48,68,67,49,55,55,0,70,53,52,50,49,70,50,49,70,65,50,52,68,70,56,52,69,52,50,48,69,55,56,52,57,54,52,66,68,48,53,55,49,50,70,65,55,56,55,55,0,65,69,53,50,50,68,56,55,68,55,66,53,67,69,51,70,68,54,48,50,52,65,57,57,65,52,55,48,48,51,52,65,51,67,68,50,65,68,55,55,0,57,66,66,65,66,56,54,65,67,66,57,53,69,70,56,67,48,50,56,55,48,56,55,51,51,52,53,56,67,68,66,65,67,52,55,49,53,49,57,55,0,55,52,57,69,66,50,49,50,68,69,67,51,57,52,57,53,51,52,57,52,56,49,70,52,57,70,51,68,69,70,52,56,48,55,55,55,65,49,57,55,0,51,50,49,69,56,50,51,51,52,51,56,66,54,65,48,70,67,49,67,69,68,51,55,54,68,56,51,54,54,57,68,55,55,68,68,67,66,49,57,55,0,70,69,49,57,53,67,53,66,48,68,53,56,70,66,50,51,70,65,68,68,53,68,54,57,68,50,70,53,57,68,56,54,70,65,52,69,55,67,57,55,0,70,57,55,53,56,53,57,70,53,65,70,65,53,65,52,65,69,55,55,48,51,66,65,51,66,57,52,51,65,70,67,48,52,57,49,57,69,57,66,55,0,49,57,51,51,51,48,49,50,51,66,53,68,70,56,66,65,55,68,68,68,49,70,68,55,51,69,51,57,52,49,70,68,49,49,51,67,55,49,67,55,0,56,54,56,67,56,57,55,50,67,52,48,53,56,52,52,51,65,50,68,49,51,49,67,50,50,48,56,51,52,48,49,57,53,54,68,70,56,49,67,55,0,57,56,57,49,65,57,66,54,69,48,53,54,69,53,67,55,54,48,50,66,70,52,67,52,48,66,54,66,69,55,65,50,53,53,68,49,56,52,68,55,0,57,52,69,52,53,49,57,69,68,69,54,49,67,53,68,57,50,55,56,48,52,67,56,65,54,50,55,56,55,70,68,67,55,52,52,56,54,49,70,55,0,76,55,0,60,46,99,99,116,111,114,62,98,95,95,49,95,55,0,60,46,99,99,116,111,114,62,98,95,95,50,95,55,0,65,55,57,55,55,53,48,50,48,52,48,69,69,48,56,57,51,51,55,53,50,70,53,55,57,48,54,48,53,55,55,56,49,52,55,50,51,53,48,56,0,69,50,54,53,52,66,50,49,56,49,68,56,52,53,49,56,69,66,53,69,69,55,66,67,51,52,50,67,70,70,68,49,70,53,50,56,69,57,48,56,0,57,55,66,70,67,55,68,57,68,52,51,66,54,51,57,70,48,51,57,49,57,65,53,65,69,49,51,66,49,65,54,67,65,50,66,48,53,65,48,56,0,54,48,69,51,67,49,57,68,55,55,52,70,56,67,50,49,48,50,57,57,53,51,52,51,51,53,69,68,53,68,51,49,53,52,55,49,55,50,49,56,0,48,55,52,51,56,65,56,53,66,68,69,69,57,48,51,48,53,65,54,49,50,53,66,57,50,48,56,52,65,53,70,51,70,50,70,68,53,70,49,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,56,0,67,79,68,69,95,49,50,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,56,0,56,53,50,51,67,55,51,55,69,68,52,57,68,56,65,50,69,57,66,66,56,53,50,49,56,49,57,48,69,52,69,56,51,66,57,48,50,69,50,56,0,52,52,68,66,50,52,56,51,67,51,51,54,53,70,70,68,54,69,56,54,66,53,67,56,48,55,67,53,57,57,65,65,70,51,69,69,69,50,51,56,0,49,53,70,67,57,49,57,53,56,55,66,52,70,49,67,49,70,48,70,50,48,49,66,56,57,69,69,67,54,51,70,53,49,66,55,54,51,55,51,56,0,67,66,55,56,48,53,49,51,66,57,69,52,66,52,69,50,53,57,48,70,55,49,48,52,66,48,54,54,70,54,51,50,69,55,66,67,51,69,51,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,48,52,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,49,49,52,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,52,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,52,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,56,0,67,70,49,67,57,66,48,55,53,56,48,68,51,57,57,50,65,54,52,52,70,56,52,48,69,66,66,66,49,53,54,69,48,69,57,50,66,55,53,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,54,56,0,54,57,53,55,65,49,51,51,69,48,68,67,50,49,55,48,55,66,67,65,65,70,54,50,49,57,52,69,65,70,52,70,70,55,53,69,48,55,54,56,0,66,49,53,68,51,55,68,52,55,51,56,68,66,68,67,51,50,67,51,56,67,50,69,49,66,54,65,49,56,51,51,51,50,50,67,50,50,56,54,56,0,70,67,70,57,67,69,55,51,55,70,51,56,69,49,53,50,65,55,54,55,70,49,50,57,49,50,54,48,66,70,57,69,49,53,70,56,48,48,55,56,0,48,50,55,49,48,49,57,50,53,48,66,52,54,51,56,66,54,56,66,66,48,70,69,57,68,49,66,68,49,55,49,56,70,51,55,69,48,66,55,56,0,66,70,52,70,66,68,48,53,57,69,65,52,55,66,48,57,70,65,53,49,52,65,56,49,53,49,53,68,68,56,51,65,55,70,50,50,65,52,57,56,0,69,70,49,51,54,54,52,48,55,68,69,52,50,51,49,51,55,70,53,57,55,55,68,55,65,70,49,56,66,48,67,48,53,56,49,52,55,54,57,56,0,56,67,51,48,49,68,68,66,52,53,48,54,56,66,49,52,53,68,54,67,49,49,70,55,57,53,57,49,48,54,49,69,69,69,50,65,65,66,65,56,0,49,49,67,51,70,55,56,55,48,51,49,54,50,55,52,48,66,57,54,49,66,55,53,69,68,56,48,56,57,55,51,68,68,54,56,70,55,70,65,56,0,56,69,69,68,51,51,53,55,49,70,70,69,68,49,66,66,67,65,52,57,53,52,65,57,48,57,52,57,56,65,49,68,51,51,49,54,69,68,67,56,0,68,68,48,52,49,56,49,53,52,51,69,48,55,49,57,55,49,70,54,51,55,57,65,51,51,68,54,51,49,48,54,52,65,57,66,48,53,49,68,56,0,51,53,70,68,54,57,68,49,66,50,65,65,48,51,70,55,68,68,55,68,70,57,69,57,56,57,66,70,53,52,56,68,55,48,54,54,66,67,69,56,0,56,56,49,67,50,69,56,70,55,49,55,55,50,69,67,65,48,67,70,67,52,68,66,51,53,55,49,57,54,67,52,69,66,55,56,56,68,54,70,56,0,103,101,116,95,85,84,70,56,0,76,56,0,60,46,99,99,116,111,114,62,98,95,95,49,95,56,0,65,90,84,69,67,95,68,65,84,65,95,56,0,69,65,78,95,56,0,71,114,97,121,56,0,53,56,66,50,67,67,69,50,53,52,53,56,56,54,66,54,49,69,53,56,67,51,67,54,48,56,51,49,67,50,66,48,52,57,56,49,52,69,48,57,0,65,90,48,57,0,55,56,51,70,68,51,67,56,48,49,53,54,48,68,52,66,65,53,57,66,54,65,68,70,69,66,57,67,57,70,56,65,52,69,66,67,52,51,49,57,0,69,57,68,50,70,65,48,67,70,57,53,57,70,67,68,70,53,65,53,48,65,69,49,53,49,53,50,53,49,52,55,55,70,49,49,69,69,55,49,57,0,50,50,55,67,54,52,57,70,53,53,50,57,50,66,48,65,50,57,51,69,66,66,50,68,53,54,65,66,56,65,66,65,69,67,67,55,70,54,50,57,0,57,49,48,54,56,49,69,53,51,49,54,50,48,48,69,67,65,53,52,56,52,68,70,51,49,69,69,65,69,49,67,70,53,69,50,70,51,52,51,57,0,55,69,49,66,68,52,69,57,53,68,65,56,55,70,54,53,65,51,66,57,57,66,55,55,52,65,69,50,70,50,70,51,66,53,54,69,52,55,51,57,0,57,56,53,56,65,67,69,52,57,66,57,66,51,57,51,53,52,67,70,67,66,48,53,69,53,52,65,57,55,57,48,48,55,48,69,52,56,68,51,57,0,67,79,68,69,95,51,57,0,66,54,68,52,56,67,67,66,51,55,52,66,68,54,54,56,70,52,55,48,50,70,67,48,55,53,49,51,54,68,56,68,51,70,51,52,50,50,52,57,0,50,51,53,55,66,50,49,48,70,67,50,53,50,50,65,52,65,57,68,48,70,52,54,53,65,69,65,67,50,53,48,65,55,57,70,65,57,52,52,57,0,70,65,50,48,48,67,50,52,56,57,69,57,56,54,56,67,67,57,50,48,49,50,57,68,49,69,50,68,54,57,52,49,55,50,67,50,66,65,52,57,0,48,66,68,67,70,68,51,50,54,52,68,68,49,65,57,52,57,69,56,50,53,68,57,69,66,67,56,69,49,52,67,66,49,70,66,49,57,70,52,57,0,51,53,69,56,70,69,67,50,70,50,48,67,68,50,48,55,56,56,68,52,54,57,54,66,69,56,52,70,70,69,48,49,66,55,70,56,67,70,52,57,0,67,55,70,66,65,48,70,50,48,56,65,49,54,54,53,56,50,48,54,48,53,54,69,67,56,57,52,56,49,65,53,69,69,55,52,65,55,50,53,57,0,67,69,68,49,68,66,55,48,50,69,51,50,65,56,49,50,68,53,56,55,50,53,52,65,52,69,49,66,65,65,65,52,48,57,69,51,48,56,53,57,0,54,55,48,49,51,48,55,53,57,53,56,65,65,68,55,53,67,52,53,52,53,55,57,54,66,70,56,48,66,49,54,54,56,51,66,51,51,65,53,57,0,70,66,53,66,54,68,53,70,48,49,55,53,56,56,52,67,53,48,65,49,56,56,66,48,68,56,57,53,69,70,48,55,54,48,56,57,67,65,53,57,0,55,70,68,67,49,67,65,54,69,68,53,51,50,54,56,52,69,52,53,68,68,65,69,56,52,56,52,50,55,52,51,57,57,70,67,69,52,67,53,57,0,56,56,66,54,65,70,49,48,55,57,67,55,50,55,55,53,69,53,52,68,48,65,67,51,66,69,69,68,67,67,67,54,53,48,54,66,54,50,54,57,0,65,51,70,53,53,68,54,57,70,57,65,57,55,52,49,49,68,66,52,48,54,53,70,48,70,65,52,49,52,68,57,49,50,65,49,56,49,66,54,57,0,52,66,70,57,53,70,51,65,65,56,49,53,54,56,51,65,57,66,48,54,69,57,48,56,65,69,68,51,56,49,65,52,65,49,70,55,52,66,54,57,0,53,68,49,54,48,54,50,55,57,51,48,66,66,56,52,70,55,56,54,55,65,69,69,67,55,49,52,51,70,66,50,51,57,57,67,55,67,65,55,57,0,49,65,56,53,49,52,48,66,56,70,67,65,51,48,49,57,49,69,69,57,51,52,55,70,53,51,55,56,50,50,51,52,70,48,55,56,49,70,55,57,0,56,48,50,65,68,50,49,66,50,50,50,69,52,56,57,68,65,70,69,65,68,68,53,69,49,56,56,54,56,50,48,51,68,57,70,67,50,65,56,57,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,57,0,60,62,57,0,66,67,54,48,49,65,55,50,70,55,49,70,69,69,54,53,51,66,50,54,69,49,69,50,51,52,50,51,68,54,55,48,70,68,54,49,52,50,65,57,0,49,68,68,66,52,69,53,70,67,57,48,52,53,53,69,54,68,48,67,48,67,56,50,65,51,48,67,54,67,66,48,69,67,52,53,54,67,57,65,57,0,55,57,70,57,70,48,54,52,70,56,49,54,57,48,67,57,53,48,66,70,52,69,70,70,65,65,53,50,52,53,66,65,57,54,54,54,48,55,67,57,0,49,68,66,52,69,67,48,56,51,68,56,48,51,49,57,48,57,51,56,52,52,69,53,67,68,57,65,55,69,66,54,50,69,66,49,68,67,56,68,57,0,49,48,51,55,68,67,54,69,65,66,57,68,55,68,51,56,53,48,54,54,48,55,50,54,69,68,49,51,50,69,65,68,57,54,49,65,52,49,69,57,0,56,54,69,65,48,48,52,56,57,49,68,69,48,54,66,51,53,55,53,56,49,66,49,56,56,53,67,57,67,48,69,70,68,55,51,68,69,50,69,57,0,60,46,99,99,116,111,114,62,98,95,95,49,95,57,0,60,77,111,100,117,108,101,62,0,60,80,114,105,118,97,116,101,73,109,112,108,101,109,101,110,116,97,116,105,111,110,68,101,116,97,105,108,115,62,0,66,67,70,57,50,69,68,51,56,56,66,56,52,51,50,51,68,70,68,69,55,68,52,48,69,53,57,69,65,49,65,69,66,55,52,50,67,66,48,65,0,51,70,49,53,50,66,51,68,70,65,70,55,50,65,53,53,68,55,56,52,51,57,69,53,48,49,53,67,53,53,65,50,48,57,54,55,54,50,49,65,0,55,70,70,51,57,51,68,70,53,68,49,48,53,56,48,70,65,51,56,66,70,56,53,52,51,50,56,66,51,48,55,50,49,54,57,69,48,65,49,65,0,67,53,51,48,67,53,56,48,57,55,50,65,50,56,68,66,69,55,57,68,55,57,49,70,54,49,69,53,57,49,54,65,53,52,49,69,54,65,49,65,0,50,56,54,49,67,70,57,69,48,51,48,69,69,52,68,65,51,67,49,66,65,52,56,50,52,67,48,56,70,65,52,48,51,55,55,69,50,67,49,65,0,53,69,51,70,53,54,52,53,48,69,51,52,48,66,50,49,65,51,65,49,51,69,51,57,65,54,54,57,52,49,51,53,51,70,56,67,55,67,49,65,0,67,57,57,49,54,53,66,54,69,70,53,55,49,52,54,70,65,51,55,49,67,53,54,69,48,48,69,57,68,51,65,70,65,57,65,52,70,70,49,65,0,54,51,66,55,54,50,51,55,51,68,69,56,49,66,52,53,56,48,69,49,57,48,57,68,55,49,54,56,65,50,49,65,57,56,57,65,49,56,50,65,0,66,53,69,50,68,48,69,67,70,53,57,57,70,48,65,49,68,48,53,69,65,50,50,52,53,67,57,57,65,56,51,69,48,54,52,70,48,66,50,65,0,68,54,66,56,53,65,50,51,52,67,49,56,55,68,48,70,67,56,50,67,69,51,49,48,70,54,52,50,51,50,51,55,67,57,51,52,66,57,51,65,0,53,50,66,48,52,52,68,49,70,66,66,65,48,67,53,56,53,66,50,65,48,68,53,53,50,65,70,66,49,66,56,52,50,53,57,55,70,65,51,65,0,49,52,55,54,52,51,68,55,51,70,69,70,53,66,49,49,49,67,53,54,48,53,52,56,53,69,57,68,69,68,69,70,70,57,51,69,53,67,51,65,0,70,53,49,56,51,48,51,55,65,52,66,52,52,57,68,49,50,52,51,57,67,54,50,52,68,55,54,48,54,53,66,51,49,48,65,54,54,49,52,65,0,68,65,56,68,55,54,57,52,65,52,50,54,48,50,70,55,68,67,48,51,53,54,70,51,48,66,57,69,49,68,70,70,56,49,57,54,55,50,52,65,0,53,66,48,50,70,69,68,52,67,65,48,66,54,49,52,55,54,70,49,65,65,65,53,67,54,52,52,53,70,48,50,52,51,55,52,66,48,55,53,65,0,51,70,54,66,70,55,68,48,66,54,50,67,66,51,70,52,55,55,57,54,57,68,51,52,66,57,69,69,48,48,52,67,55,66,52,66,55,66,53,65,0,56,48,68,68,54,65,50,56,50,68,53,54,51,56,51,54,53,50,50,67,49,48,65,55,56,65,65,65,49,55,70,48,66,56,54,53,69,66,53,65,0,52,55,49,54,52,56,48,56,54,70,57,52,56,48,67,66,53,53,51,66,55,56,48,50,51,50,51,69,48,65,55,53,70,70,69,48,57,67,53,65,0,70,48,66,56,70,67,48,68,68,49,68,49,53,49,52,50,68,55,70,69,56,51,70,57,69,51,50,57,53,52,49,51,65,66,49,51,56,69,53,65,0,49,54,69,57,48,49,51,56,67,51,49,51,56,48,48,52,65,68,54,54,48,49,69,54,69,56,53,51,50,55,55,56,52,69,65,65,57,52,54,65,0,70,49,48,48,67,55,48,57,53,49,56,53,52,52,67,69,68,56,49,66,57,56,68,51,70,49,67,56,54,50,70,48,57,52,68,65,70,52,54,65,0,65,70,51,53,68,51,57,49,68,53,54,69,53,49,53,51,50,53,53,66,65,48,69,48,56,49,48,70,51,69,70,52,57,70,67,52,67,69,54,65,0,49,67,53,49,51,69,66,65,70,51,67,54,68,68,49,48,49,48,56,69,53,48,56,68,54,70,65,49,56,50,54,69,48,69,49,70,51,50,55,65,0,53,53,52,68,48,55,66,49,50,48,70,54,55,48,54,52,50,67,50,69,48,56,52,54,51,48,69,49,70,67,57,51,52,52,57,51,70,55,55,65,0,66,69,69,51,67,68,52,66,54,51,56,66,67,56,69,55,57,51,66,52,51,65,57,53,55,69,69,66,65,55,53,53,69,66,70,69,54,67,55,65,0,57,65,65,53,50,70,53,49,48,50,52,53,52,56,48,48,50,51,69,66,50,69,70,56,67,70,55,55,57,70,54,48,48,56,69,57,51,68,55,65,0,50,70,70,56,52,53,69,54,55,57,69,48,49,70,70,66,56,57,69,49,54,51,49,65,54,66,57,70,70,68,50,55,55,70,56,68,49,69,55,65,0,65,55,55,53,53,50,54,68,54,67,66,49,56,65,49,53,57,65,57,68,48,48,53,56,69,70,52,57,54,53,69,50,56,70,51,55,55,50,56,65,0,66,67,49,65,67,67,51,65,67,52,52,53,57,66,68,48,68,49,57,65,57,53,51,65,54,52,69,48,53,55,50,55,68,65,57,56,50,55,57,65,0,55,66,67,54,52,48,52,68,52,56,68,65,49,51,55,51,48,51,52,54,54,52,55,49,70,55,49,51,49,68,67,49,67,57,66,49,51,66,65,65,0,70,65,69,66,48,70,54,70,70,70,65,56,67,55,67,66,57,52,68,68,50,51,69,49,49,65,57,53,52,66,66,57,68,54,55,56,48,49,67,65,0,99,111,110,118,101,114,116,85,80,67,69,116,111,85,80,67,65,0,54,69,49,69,50,70,69,54,57,56,49,48,68,68,54,55,70,53,57,65,52,66,65,67,55,51,54,55,65,49,55,68,50,70,49,66,57,66,68,65,0,48,52,52,51,67,55,51,66,57,50,68,70,57,67,54,55,49,50,56,69,70,53,70,48,55,48,50,68,67,66,67,52,54,57,69,68,68,50,69,65,0,65,69,50,68,67,67,56,68,54,70,53,49,69,68,54,48,68,57,53,65,54,49,65,57,50,67,52,56,57,66,66,56,57,54,54,52,53,66,69,65,0,53,53,65,54,69,50,50,67,67,50,52,51,54,52,56,56,49,70,54,50,67,67,70,54,55,67,66,69,57,65,51,52,56,68,67,54,48,50,70,65,0,66,70,70,56,56,67,67,53,68,65,50,48,65,56,68,54,65,49,54,65,66,65,67,65,65,55,52,69,48,53,55,51,66,66,65,53,50,56,70,65,0,66,49,54,54,68,53,48,68,48,56,57,49,52,53,53,69,52,56,51,69,50,67,54,69,49,68,66,49,49,67,51,68,67,48,51,67,65,70,70,65,0,76,65,84,67,72,65,0,83,85,66,77,79,68,69,95,65,76,80,72,65,0,83,69,77,73,67,79,76,79,78,95,79,82,95,67,79,77,77,65,0,80,68,70,52,49,55,95,69,88,84,82,65,95,77,69,84,65,68,65,84,65,0,65,90,84,69,67,95,69,88,84,82,65,95,77,69,84,65,68,65,84,65,0,84,72,82,69,69,83,72,73,70,84,65,0,84,87,79,83,72,73,70,84,65,0,67,79,68,69,95,70,78,67,95,52,95,65,0,85,80,67,95,65,0,67,79,68,69,95,67,79,68,69,95,65,0,70,73,78,68,69,82,95,80,65,84,95,65,0,67,79,68,69,95,83,84,65,82,84,95,65,0,98,97,114,84,121,112,101,65,0,98,97,114,80,111,115,65,0,112,111,105,110,116,65,0,67,57,69,51,68,51,51,49,67,56,67,67,55,69,49,55,66,48,49,55,69,67,49,57,69,48,53,70,53,56,54,56,69,52,65,50,68,48,48,66,0,48,57,52,68,55,68,70,68,52,49,49,54,49,50,55,51,69,55,56,52,68,54,48,69,65,69,54,68,56,52,52,49,50,55,68,55,55,70,48,66,0,52,56,57,67,48,48,66,48,56,56,48,67,67,49,55,50,50,68,51,67,57,65,65,51,57,69,57,66,51,65,55,69,57,66,55,48,55,69,49,66,0,56,54,56,51,70,66,69,57,48,70,57,51,54,69,48,70,50,65,49,48,56,48,69,48,53,51,69,66,65,51,69,69,57,70,52,52,65,48,50,66,0,53,51,68,57,56,69,54,48,52,54,66,66,56,56,67,49,52,68,68,55,52,48,69,52,70,55,55,66,49,54,52,48,50,50,55,49,50,52,51,66,0,51,55,55,50,48,69,48,55,68,67,66,49,65,48,68,69,49,66,50,65,65,50,54,49,52,48,67,66,66,67,69,53,66,55,67,69,70,56,51,66,0,52,68,69,55,52,50,70,69,66,51,50,53,55,56,57,53,56,70,67,70,67,51,51,68,54,55,51,50,69,70,70,54,49,54,67,56,65,57,52,66,0,70,65,68,49,53,52,49,66,51,67,56,52,52,67,51,68,50,66,68,66,65,49,54,66,56,48,65,66,48,57,48,68,68,49,54,50,49,65,52,66,0,70,48,69,49,55,52,69,55,48,54,69,65,49,67,50,70,56,68,49,56,49,53,54,49,70,56,52,57,55,54,67,57,52,50,66,49,68,69,52,66,0,56,48,70,55,54,51,66,65,57,48,69,50,55,70,55,53,53,70,50,68,69,70,65,55,70,69,55,50,48,65,68,57,51,55,49,68,54,69,54,66,0,52,48,54,53,68,57,54,57,53,69,70,66,69,68,52,55,68,68,65,57,53,54,49,48,50,57,53,66,65,56,53,49,50,49,68,53,65,49,55,66,0,52,68,51,49,55,50,48,50,50,48,52,69,57,55,52,49,51,53,52,66,67,49,65,49,54,50,56,66,67,49,48,65,48,53,69,50,65,66,55,66,0,54,52,56,67,52,56,57,54,52,50,51,57,53,49,54,52,67,50,65,50,65,65,50,51,55,57,65,54,69,55,70,52,52,67,65,66,48,49,56,66,0,70,55,49,50,48,56,52,56,55,50,70,49,68,49,48,51,50,55,48,57,70,69,53,68,48,54,49,69,66,57,56,50,51,57,51,53,50,49,56,66,0,52,54,51,67,51,66,51,55,48,57,57,56,53,66,66,51,50,55,52,55,65,67,67,57,65,69,51,52,48,54,66,66,54,56,51,54,51,54,56,66,0,57,48,53,65,68,69,51,49,70,55,49,49,67,57,65,65,57,55,54,54,70,57,48,53,66,57,69,68,56,68,55,48,53,57,50,49,55,56,56,66,0,53,51,57,66,50,54,68,49,55,67,50,68,69,66,56,56,70,66,57,69,48,55,54,49,49,68,49,54,52,52,48,56,69,50,51,67,51,53,65,66,0,56,54,54,54,53,50,49,57,50,66,54,56,54,56,49,67,67,53,51,56,66,50,67,66,50,49,67,53,57,55,57,53,52,52,68,70,51,53,65,66,0,67,82,95,76,70,95,83,80,65,67,69,95,84,65,66,0,57,57,52,48,51,55,50,55,48,65,70,68,55,66,66,50,66,66,65,70,67,70,66,70,50,67,53,57,48,49,56,53,51,68,48,65,69,66,66,66,0,69,67,66,0,50,51,48,57,68,65,55,65,70,51,57,67,65,50,66,48,53,67,55,55,68,67,54,51,57,57,65,52,69,70,70,50,53,54,51,69,67,51,69,66,0,54,56,57,57,66,48,56,65,69,67,68,50,57,50,48,53,50,51,56,54,57,55,57,50,66,69,70,49,69,66,48,49,53,69,65,48,48,54,69,66,0,50,69,67,54,57,56,57,53,70,55,52,68,66,65,69,55,52,54,48,48,69,57,54,48,69,70,70,66,54,52,52,56,53,57,55,66,68,69,69,66,0,50,52,69,55,68,51,53,49,52,49,49,51,56,69,52,54,54,56,68,69,53,52,55,65,57,56,67,69,51,65,56,52,65,70,48,69,54,70,69,66,0,57,52,65,67,70,53,57,53,50,68,65,52,51,55,57,53,68,53,70,52,66,57,54,67,65,54,65,65,67,68,49,48,52,68,70,70,55,52,70,66,0,114,97,119,82,71,66,0,76,65,84,67,72,66,0,90,88,105,110,103,46,73,77,66,0,78,85,77,95,66,65,82,83,95,73,77,66,0,105,115,73,77,66,0,83,72,73,70,84,66,0,67,79,68,69,95,70,78,67,95,52,95,66,0,67,79,68,69,95,67,79,68,69,95,66,0,70,73,78,68,69,82,95,80,65,84,95,66,0,67,79,68,69,49,50,56,95,70,79,82,67,69,95,67,79,68,69,83,69,84,95,66,0,67,79,68,69,95,83,84,65,82,84,95,66,0,98,97,114,84,121,112,101,66,0,98,97,114,80,111,115,66,0,103,101,116,95,70,111,114,99,101,67,111,100,101,115,101,116,66,0,115,101,116,95,70,111,114,99,101,67,111,100,101,115,101,116,66,0,102,111,114,99,101,67,111,100,101,115,101,116,66,0,112,111,105,110,116,66,0,70,50,48,66,52,69,52,67,67,66,52,55,66,52,70,48,54,51,49,51,51,51,65,52,68,69,69,51,48,68,66,55,49,51,51,54,49,49,48,67,0,52,48,66,56,50,67,67,70,48,51,55,66,57,54,54,69,50,65,54,66,53,70,52,66,65,67,56,54,57,48,52,55,57,54,57,54,53,65,49,67,0,48,50,50,50,69,49,53,49,50,52,55,68,65,69,51,49,65,56,68,54,57,55,69,65,65,49,52,70,52,51,70,55,49,56,66,68,49,70,49,67,0,55,69,67,68,70,56,67,53,70,52,55,52,67,70,70,50,66,48,57,55,48,69,57,51,67,51,57,55,66,53,48,52,68,68,55,57,51,68,50,67,0,68,49,48,50,50,57,67,48,55,57,54,49,56,57,49,65,52,51,52,55,51,55,70,48,54,50,57,51,70,49,69,48,67,67,48,70,65,51,51,67,0,57,65,67,69,49,54,55,68,55,53,56,48,66,56,50,56,53,55,66,66,70,54,54,65,53,65,57,66,67,49,69,50,68,49,51,57,51,53,51,67,0,53,53,51,68,52,66,56,57,50,50,66,57,57,65,70,50,57,69,66,66,67,57,55,57,56,67,50,57,65,65,65,52,65,48,55,68,69,66,51,67,0,67,48,57,51,53,67,49,55,51,67,55,65,49,52,52,70,69,50,52,68,65,48,57,53,56,52,70,52,56,57,50,49,53,51,68,48,49,70,51,67,0,69,66,55,55,52,48,51,53,56,56,48,52,52,51,65,69,70,66,70,56,66,54,49,69,55,55,54,48,68,65,53,50,55,51,65,56,65,52,52,67,0,50,68,70,67,68,55,67,49,51,65,55,51,51,57,67,67,52,49,67,52,55,51,50,50,48,67,69,56,48,67,68,68,53,57,51,51,67,54,52,67,0,48,49,65,55,66,66,48,66,69,56,50,48,68,50,53,69,53,50,65,52,50,67,51,68,50,56,68,69,50,55,56,50,50,69,65,66,67,68,52,67,0,48,57,69,49,70,51,51,65,51,67,54,53,57,55,49,49,49,57,66,66,69,70,49,69,68,49,50,49,70,69,55,48,69,65,57,67,70,65,53,67,0,55,54,68,55,67,66,49,55,50,57,57,55,56,67,53,52,51,55,52,48,57,65,56,67,53,54,65,65,49,67,55,69,50,52,56,57,48,68,53,67,0,69,49,65,56,55,55,57,53,57,67,57,69,51,54,57,49,53,57,65,50,52,51,51,48,54,48,65,54,55,56,49,67,54,67,53,67,49,68,53,67,0,53,66,48,57,70,65,69,68,52,67,69,70,67,69,52,67,70,70,52,50,68,57,49,48,55,54,55,66,68,48,68,52,48,67,54,57,65,66,54,67,0,55,52,57,68,56,54,49,67,65,56,65,66,55,66,66,67,49,53,69,68,67,51,52,57,50,69,67,68,68,54,49,53,66,67,51,65,48,69,54,67,0,54,70,54,48,52,67,51,51,50,49,50,69,50,48,67,66,70,67,69,57,70,50,50,50,49,52,57,50,68,67,54,70,68,56,50,51,56,53,55,67,0,66,67,53,69,70,65,48,70,52,48,57,48,51,51,53,53,49,69,66,48,49,70,68,57,67,65,65,56,56,55,55,51,57,70,66,66,50,54,55,67,0,69,66,66,54,57,51,52,56,67,70,49,56,50,68,66,55,67,66,56,48,50,49,66,48,57,70,56,66,66,67,50,69,56,69,56,55,56,56,55,67,0,53,66,67,70,69,65,49,52,57,65,51,54,48,51,48,66,56,66,51,69,66,49,70,65,69,51,49,65,70,57,49,55,51,66,55,54,66,56,55,67,0,56,48,69,50,49,53,55,54,55,55,57,67,54,49,68,65,53,66,49,56,53,68,49,53,65,55,51,50,67,70,55,65,56,66,68,54,70,56,56,67,0,66,50,57,65,50,51,50,56,54,49,56,65,55,68,56,49,51,51,50,48,53,69,65,56,70,57,69,48,69,69,49,68,57,68,50,65,55,69,56,67,0,51,65,54,70,67,51,48,68,65,55,66,67,48,67,50,55,50,69,55,56,69,65,67,68,53,67,55,69,67,56,52,52,56,66,48,57,48,49,57,67,0,68,55,50,48,55,65,52,56,65,48,48,69,52,57,57,69,70,54,51,70,67,50,57,57,48,51,51,55,67,67,56,66,48,53,67,55,65,69,57,67,0,68,51,57,49,65,48,54,68,52,57,66,52,65,56,51,50,51,53,67,55,50,68,70,70,54,67,68,53,56,53,65,51,65,54,65,50,53,68,65,67,0,53,66,57,66,56,57,65,56,51,65,70,50,67,53,50,56,51,67,66,67,69,53,50,51,56,69,67,56,57,55,53,50,69,57,51,52,66,48,66,67,0,49,69,66,51,48,66,67,68,54,65,49,53,55,54,65,48,48,49,67,50,57,48,54,68,51,65,70,52,53,57,53,53,69,49,57,67,52,56,66,67,0,54,56,56,50,57,49,52,66,57,56,52,66,50,52,67,52,56,56,48,69,51,66,69,65,54,52,54,68,67,53,52,57,66,51,67,51,52,65,66,67,0,65,48,51,50,52,54,52,48,67,67,70,51,54,57,65,54,55,57,52,65,57,65,56,66,66,50,48,52,69,68,50,50,54,53,49,69,67,66,67,67,0,49,68,53,54,50,65,68,56,50,55,53,57,56,70,67,51,70,53,67,56,50,70,67,50,48,57,49,69,54,53,67,56,70,56,65,48,55,65,68,67,0,90,88,105,110,103,46,80,68,70,52,49,55,46,73,110,116,101,114,110,97,108,46,69,67,0,67,68,49,57,67,56,65,55,50,48,53,51,57,65,56,50,48,53,53,65,57,65,55,57,68,67,50,65,67,65,51,56,51,67,56,51,57,49,69,67,0,55,50,70,70,57,50,70,50,50,65,66,53,66,68,53,65,51,52,52,67,54,53,50,69,49,55,54,54,52,53,67,53,50,68,56,50,53,65,69,67,0,65,90,84,69,67,0,54,57,52,57,57,65,70,54,52,51,56,67,50,50,50,65,65,65,68,70,67,57,50,70,70,51,68,51,68,70,51,57,48,50,65,52,53,52,70,67,0,65,84,69,88,84,95,65,76,80,72,65,78,85,77,69,82,73,67,0,76,65,84,67,72,95,84,79,95,78,85,77,69,82,73,67,0,83,72,73,70,84,67,0,67,79,68,69,95,67,79,68,69,95,67,0,70,73,78,68,69,82,95,80,65,84,95,67,0,67,79,68,69,95,83,84,65,82,84,95,67,0,98,97,114,84,121,112,101,67,0,98,97,114,80,111,115,67,0,112,111,105,110,116,67,0,52,48,70,69,70,49,48,50,65,66,54,55,66,53,48,51,56,69,54,68,57,69,50,69,69,50,66,69,49,54,56,53,52,65,52,57,56,49,48,68,0,52,52,53,69,48,67,49,51,56,69,55,68,57,54,52,55,70,67,68,48,56,49,56,52,70,66,50,51,65,56,51,51,67,52,68,48,48,68,48,68,0,53,56,54,49,55,66,53,51,52,53,54,70,49,51,68,50,67,57,54,53,70,69,68,67,55,49,51,50,50,52,49,52,54,70,70,49,68,49,49,68,0,52,54,53,66,52,65,55,57,70,51,67,68,57,51,68,50,50,70,68,54,65,70,69,51,55,67,66,53,52,52,65,67,50,55,55,50,56,68,49,68,0,65,108,108,95,49,68,0,51,48,48,70,55,56,66,51,67,69,51,67,50,55,50,52,55,57,69,68,66,54,56,54,66,50,65,66,69,51,69,52,69,65,53,57,70,69,50,68,0,70,56,54,53,52,57,56,67,67,48,48,49,48,69,54,65,67,69,49,54,54,68,48,49,69,69,65,57,50,70,48,70,51,67,56,55,55,52,51,68,0,68,54,68,57,54,57,49,67,49,48,48,48,49,65,67,52,53,67,49,65,56,65,54,56,68,52,66,48,56,52,49,50,70,52,50,68,57,70,53,68,0,52,56,70,53,51,66,68,70,56,52,68,57,56,65,51,70,52,69,70,48,67,48,57,65,56,70,57,69,55,55,67,56,69,65,54,55,50,49,54,68,0,55,52,65,69,52,55,66,50,68,55,56,66,54,50,53,56,51,66,65,53,48,48,52,53,70,54,66,50,56,56,67,65,67,67,50,52,69,65,55,68,0,53,50,54,66,66,49,54,67,57,65,49,67,56,50,49,66,49,57,56,53,56,69,49,56,49,52,50,65,49,70,55,48,55,51,66,67,54,52,56,68,0,70,52,52,66,55,57,68,56,50,48,56,69,68,67,49,55,70,57,67,57,54,65,65,55,68,69,65,52,57,56,51,49,49,52,66,70,54,57,56,68,0,51,69,49,50,56,53,49,65,57,48,67,54,65,48,56,65,67,67,68,49,68,54,55,54,51,52,65,67,55,70,68,49,54,51,57,66,56,57,56,68,0,55,68,65,67,48,52,57,68,55,67,54,69,66,49,51,51,65,56,48,53,67,55,67,69,57,65,67,66,66,57,54,49,66,51,69,54,53,65,56,68,0,54,56,54,52,48,51,49,51,70,68,57,54,69,49,51,53,66,50,53,53,50,65,69,65,70,53,55,54,52,48,69,67,68,48,70,53,70,65,65,68,0,66,53,67,53,53,55,53,69,69,65,51,68,57,68,51,69,56,66,54,55,50,70,70,70,69,49,70,56,68,65,66,50,55,49,68,57,56,70,65,68,0,80,65,68,0,51,69,52,66,66,70,57,68,48,67,68,68,50,69,51,52,70,55,56,65,65,55,65,57,65,51,57,55,57,68,67,69,49,70,55,66,48,50,66,68,0,53,66,69,57,68,66,57,69,69,66,57,67,66,66,52,68,50,50,52,55,50,67,65,57,55,51,52,66,49,70,65,49,68,51,54,49,50,54,66,68,0,50,52,49,70,67,52,50,67,68,67,57,65,53,52,51,53,66,51,49,55,68,49,68,52,50,53,70,66,57,65,66,56,65,57,51,66,49,54,67,68,0,70,56,54,65,56,57,67,53,57,53,53,53,66,69,53,50,52,49,52,56,50,67,66,48,70,68,51,53,54,50,52,70,48,53,68,49,50,55,67,68,0,56,68,49,51,54,57,65,48,68,56,56,51,50,67,57,52,49,66,68,54,68,48,57,56,52,57,53,50,53,68,54,53,68,56,48,55,65,49,68,68,0,50,51,68,48,67,50,48,65,66,57,65,66,65,50,53,65,53,66,54,49,67,67,56,55,65,70,51,51,66,66,69,55,68,68,70,54,69,50,68,68,0,79,68,68,0,69,51,70,54,48,67,70,69,55,69,53,48,66,57,68,69,69,51,55,68,56,69,53,57,56,65,69,70,51,57,67,66,48,48,66,53,54,48,69,68,0,69,50,57,65,48,56,57,65,51,66,55,65,49,55,56,54,68,54,66,68,56,50,68,66,66,53,67,56,69,55,69,53,55,56,53,53,52,50,69,68,0,51,67,50,50,65,54,51,51,66,55,57,66,53,49,48,54,49,51,69,51,55,66,67,53,65,48,50,70,70,57,49,65,52,65,66,48,48,54,69,68,0,49,69,52,53,70,56,50,56,48,54,57,69,65,70,56,55,65,48,66,53,53,51,66,69,49,69,54,53,66,57,56,70,50,48,69,51,55,55,69,68,0,76,65,84,67,72,95,84,79,95,66,89,84,69,95,80,65,68,68,69,68,0,82,83,83,95,69,88,80,65,78,68,69,68,0,67,72,65,82,83,95,87,72,73,67,72,95,65,82,69,95,84,69,78,95,76,69,78,71,84,72,95,69,65,67,72,95,65,70,84,69,82,95,68,69,67,79,68,69,68,0,69,67,73,95,85,83,69,82,95,68,69,70,73,78,69,68,0,69,78,68,95,80,65,84,84,69,82,78,95,82,69,86,69,82,83,69,68,0,83,85,66,77,79,68,69,95,77,73,88,69,68,0,51,49,48,50,51,55,55,67,65,48,52,51,54,52,52,66,70,68,53,50,67,53,54,65,69,50,65,57,70,53,53,52,55,50,51,50,54,51,70,68,0,49,48,52,56,54,67,65,69,67,66,65,53,69,55,51,68,65,48,53,57,49,48,70,57,52,53,49,51,52,48,57,68,69,66,54,51,49,54,70,68,0,103,101,116,78,117,109,68,97,116,97,66,121,116,101,115,65,110,100,78,117,109,69,67,66,121,116,101,115,70,111,114,66,108,111,99,107,73,68,0,98,108,111,99,107,73,68,0,103,101,116,95,87,111,114,108,100,77,97,110,117,102,97,99,116,117,114,101,114,73,68,0,115,101,116,95,87,111,114,108,100,77,97,110,117,102,97,99,116,117,114,101,114,73,68,0,119,111,114,108,100,77,97,110,117,102,97,99,116,117,114,101,114,73,68,0,103,101,116,95,80,114,111,100,117,99,116,73,68,0,115,101,116,95,80,114,111,100,117,99,116,73,68,0,103,101,116,95,78,111,114,109,97,108,105,122,101,100,80,114,111,100,117,99,116,73,68,0,115,101,116,95,78,111,114,109,97,108,105,122,101,100,80,114,111,100,117,99,116,73,68,0,110,111,114,109,97,108,105,122,101,100,80,114,111,100,117,99,116,73,68,0,112,114,111,100,117,99,116,73,68,0,66,69,71,73,78,95,77,65,67,82,79,95,80,68,70,52,49,55,95,79,80,84,73,79,78,65,76,95,70,73,69,76,68,0,65,77,80,69,82,83,65,78,68,0,83,84,82,85,67,84,85,82,69,68,95,65,80,80,69,78,68,0,82,69,84,85,82,78,95,67,79,68,65,66,65,82,95,83,84,65,82,84,95,69,78,68,0,80,79,85,78,68,0,104,97,110,100,108,101,69,79,68,0,66,69,71,73,78,95,86,67,65,82,68,0,68,69,70,65,85,76,84,95,71,85,65,82,68,0,73,78,86,65,76,73,68,95,67,79,68,69,87,79,82,68,0,77,79,68,85,76,69,83,95,73,78,95,67,79,68,69,87,79,82,68,0,83,72,73,70,84,68,0,70,73,78,68,69,82,95,80,65,84,95,68,0,90,88,105,110,103,46,79,110,101,68,0,98,97,114,84,121,112,101,68,0,98,97,114,80,111,115,68,0,49,49,68,52,68,57,70,67,53,50,54,68,48,52,55,69,48,49,56,57,49,66,69,69,57,57,52,57,69,65,52,50,52,48,56,65,56,48,48,69,0,53,49,49,48,57,55,56,50,69,65,54,69,57,56,69,56,69,50,55,55,54,53,55,48,53,53,65,53,57,56,54,56,52,68,50,49,53,50,48,69,0,68,51,68,65,70,55,49,54,48,55,56,51,53,51,55,56,54,53,65,68,70,52,65,66,65,68,70,69,57,56,67,57,69,55,70,57,66,54,49,69,0,52,56,70,48,55,51,67,54,67,67,54,49,56,65,56,70,68,65,54,70,68,50,51,65,66,70,68,67,56,50,56,67,67,54,65,53,56,49,50,69,0,53,57,65,56,52,70,54,54,48,70,70,70,70,65,52,66,57,67,48,51,55,52,53,54,70,57,68,53,54,69,50,54,65,67,70,51,54,54,51,69,0,52,66,56,49,49,68,68,56,69,50,66,56,51,69,54,56,50,54,70,56,48,48,52,68,52,65,53,67,69,52,52,65,70,65,67,65,69,66,51,69,0,51,70,54,69,52,70,55,57,70,52,65,53,55,67,55,70,48,70,52,52,54,55,65,65,55,49,49,54,67,53,67,52,54,70,68,70,66,53,52,69,0,57,66,51,69,51,52,67,55,51,52,51,53,49,69,68,51,68,69,49,57,56,52,49,49,57,69,65,66,57,53,55,50,67,52,56,70,65,49,53,69,0,67,54,67,65,57,51,66,55,70,70,70,50,67,49,56,70,55,50,50,68,68,66,68,53,48,49,55,54,49,67,49,51,56,49,69,50,69,53,53,69,0,69,53,50,68,55,69,53,52,68,51,52,50,57,67,65,70,66,51,69,68,69,49,52,70,57,52,57,70,67,53,52,70,53,67,65,56,68,66,53,69,0,50,50,66,70,53,66,56,54,68,67,53,69,48,66,56,55,51,51,49,57,48,51,49,52,49,67,53,57,55,51,67,49,49,55,68,65,55,49,54,69,0,54,66,51,56,68,56,52,52,48,57,66,50,48,57,49,67,66,67,57,51,54,56,54,52,51,57,65,67,50,67,48,52,67,55,54,68,66,57,54,69,0,56,48,56,65,68,49,57,67,65,56,49,56,48,55,55,70,55,49,49,48,48,56,56,48,69,55,68,55,65,65,50,49,49,52,55,69,57,56,55,69,0,55,49,70,52,68,53,52,55,68,53,50,70,51,49,69,68,69,67,53,53,66,49,57,48,57,49,49,52,52,53,53,70,68,65,69,53,65,57,55,69,0,70,66,57,55,55,66,68,51,65,51,66,66,65,68,54,56,67,50,66,66,68,66,67,50,56,49,56,56,70,49,48,56,52,53,51,49,69,55,56,69,0,52,53,52,66,69,69,67,67,52,52,68,50,68,54,55,65,50,55,67,49,54,70,54,69,55,67,68,55,68,51,67,51,66,69,65,51,67,69,56,69,0,67,69,49,55,52,69,53,66,69,54,66,56,69,57,68,70,56,56,65,55,50,54,57,48,53,49,67,48,67,51,65,70,54,49,51,51,69,51,66,69,0,56,65,67,55,67,49,70,55,65,65,68,53,69,49,68,50,69,65,50,56,48,48,51,56,49,57,55,67,54,54,50,55,50,69,68,56,50,66,66,69,0,87,72,73,84,69,95,83,80,65,67,69,0,83,85,71,71,69,83,84,69,68,95,80,82,73,67,69,0,77,65,88,95,65,86,71,95,86,65,82,73,65,78,67,69,0,77,65,88,95,73,78,68,73,86,73,68,85,65,76,95,86,65,82,73,65,78,67,69,0,77,65,88,95,78,69,65,82,66,89,95,68,73,83,84,65,78,67,69,0,83,84,82,85,67,84,85,82,69,68,95,65,80,80,69,78,68,95,83,69,81,85,69,78,67,69,0,70,51,67,49,51,69,68,56,55,55,53,69,68,68,53,49,69,51,53,49,69,69,56,65,57,69,69,57,55,50,70,50,50,56,69,52,68,54,68,69,0,77,65,88,73,67,79,68,69,0,67,52,48,95,69,78,67,79,68,69,0,65,78,83,73,88,49,50,95,69,78,67,79,68,69,0,66,65,83,69,50,53,54,95,69,78,67,79,68,69,0,80,65,68,95,69,78,67,79,68,69,0,65,83,67,73,73,95,69,78,67,79,68,69,0,69,68,73,70,65,67,84,95,69,78,67,79,68,69,0,84,69,88,84,95,69,78,67,79,68,69,0,80,85,82,69,95,66,65,82,67,79,68,69,0,77,65,88,95,67,79,68,69,87,79,82,68,83,95,73,78,95,66,65,82,67,79,68,69,0,77,73,78,95,82,79,87,83,95,73,78,95,66,65,82,67,79,68,69,0,77,65,88,95,82,79,87,83,95,73,78,95,66,65,82,67,79,68,69,0,81,82,95,67,79,68,69,0,82,69,76,65,88,69,68,95,67,79,68,69,95,51,57,95,69,88,84,69,78,68,69,68,95,77,79,68,69,0,85,83,69,95,67,79,68,69,95,51,57,95,69,88,84,69,78,68,69,68,95,77,79,68,69,0,77,79,68,69,95,83,72,73,70,84,95,84,79,95,66,89,84,69,95,67,79,77,80,65,67,84,73,79,78,95,77,79,68,69,0,57,53,67,69,56,69,56,52,70,48,69,52,50,68,55,55,53,66,67,66,68,50,70,68,54,52,48,50,48,70,53,70,67,69,57,57,69,53,69,69,0,56,68,66,52,55,68,68,70,70,67,56,49,69,48,57,55,54,68,69,70,51,69,70,70,51,67,65,57,69,70,67,56,52,54,53,67,70,69,69,69,0,48,66,54,52,54,52,69,54,66,49,69,53,56,65,54,65,53,50,57,68,65,68,67,70,54,57,48,54,68,51,68,56,53,57,56,67,50,50,70,69,0,51,48,57,51,48,70,49,50,53,48,70,67,50,55,50,65,70,56,48,50,50,48,70,66,51,56,52,49,51,66,55,68,68,48,54,48,52,54,70,69,0,53,54,65,53,53,57,48,67,69,67,53,65,57,68,70,51,65,69,49,51,69,68,70,66,65,54,48,65,65,67,51,67,66,50,49,67,65,57,70,69,0,49,48,49,49,49,49,49,49,70,66,50,52,66,50,68,51,51,49,70,66,51,70,54,57,56,49,57,51,48,52,54,67,66,67,66,56,65,65,70,69,0,48,54,49,69,49,69,56,48,53,67,66,70,53,49,68,56,51,57,67,51,66,57,49,69,56,65,67,68,48,51,50,54,69,53,67,55,55,70,70,69,0,77,73,78,95,77,79,68,85,76,69,95,67,79,85,78,84,95,80,69,82,95,69,68,71,69,0,77,65,88,95,77,79,68,85,76,69,95,67,79,85,78,84,95,80,69,82,95,69,68,71,69,0,77,73,78,95,68,89,78,65,77,73,67,95,82,65,78,71,69,0,85,78,67,79,68,65,66,76,69,0,77,65,88,95,65,67,67,69,80,84,65,66,76,69,0,65,76,80,72,65,78,85,77,69,82,73,67,95,84,65,66,76,69,0,77,73,88,69,68,95,84,65,66,76,69,0,67,79,68,69,87,79,82,68,95,84,65,66,76,69,0,80,79,83,73,84,73,79,78,95,65,68,74,85,83,84,77,69,78,84,95,80,65,84,84,69,82,78,95,67,79,79,82,68,73,78,65,84,69,95,84,65,66,76,69,0,76,65,84,67,72,95,84,65,66,76,69,0,83,89,77,66,79,76,95,84,65,66,76,69,0,85,80,80,69,82,95,84,65,66,76,69,0,76,79,87,69,82,95,84,65,66,76,69,0,82,65,84,73,79,83,95,84,65,66,76,69,0,80,85,78,67,84,95,84,65,66,76,69,0,83,72,73,70,84,95,84,65,66,76,69,0,68,73,71,73,84,95,84,65,66,76,69,0,70,79,82,67,69,95,82,69,67,84,65,78,71,76,69,0,66,65,82,83,95,73,78,95,77,79,68,85,76,69,0,68,69,70,65,85,76,84,95,69,78,67,79,68,73,78,71,95,78,65,77,69,0,68,65,84,69,95,84,73,77,69,0,70,79,82,67,69,95,78,79,78,69,0,78,69,87,76,73,78,69,95,69,83,67,65,80,69,0,68,65,84,65,95,77,65,84,82,73,88,95,83,72,65,80,69,0,70,79,82,67,69,95,83,81,85,65,82,69,0,69,67,73,95,71,69,78,69,82,65,76,95,80,85,82,80,79,83,69,0,86,67,65,82,68,95,76,73,75,69,95,68,65,84,69,0,73,78,73,84,73,65,76,95,83,84,65,84,69,0,83,72,73,70,84,69,0,66,73,84,83,95,83,69,84,95,73,78,95,72,65,76,70,95,66,89,84,69,0,76,65,84,67,72,95,84,79,95,66,89,84,69,0,83,72,73,70,84,95,84,79,95,66,89,84,69,0,77,79,68,85,76,79,95,86,65,76,85,69,0,87,79,82,68,95,83,73,90,69,0,81,85,73,69,84,95,90,79,78,69,95,83,73,90,69,0,68,65,84,69,95,83,73,90,69,0,66,76,79,67,75,95,83,73,90,69,0,77,73,78,95,83,73,90,69,0,71,84,73,78,95,83,73,90,69,0,72,69,65,68,69,82,95,83,73,90,69,0,70,73,82,83,84,95,84,72,82,69,69,95,68,73,71,73,84,83,95,83,73,90,69,0,87,69,73,71,72,84,95,83,73,90,69,0,76,65,83,84,95,68,73,71,73,84,95,83,73,90,69,0,73,78,73,84,95,83,73,90,69,0,67,79,68,69,87,79,82,68,95,83,75,69,87,95,83,73,90,69,0,77,65,88,95,83,73,90,69,0,85,80,67,95,69,0,70,73,78,68,69,82,95,80,65,84,95,69,0,98,97,114,84,121,112,101,69,0,98,97,114,80,111,115,69,0,52,56,52,66,50,48,55,70,51,67,66,67,69,56,51,51,56,66,68,69,50,54,70,48,52,69,56,55,69,69,50,53,54,56,57,49,66,69,48,70,0,70,50,65,56,48,69,49,57,65,69,49,66,48,52,52,66,57,55,57,50,70,53,70,55,67,50,57,51,54,70,66,53,67,53,68,56,53,56,49,70,0,56,69,66,50,66,70,66,66,57,70,53,51,68,56,54,67,49,65,68,68,70,70,65,52,52,68,69,69,53,70,54,49,65,56,53,66,69,57,49,70,0,53,48,68,65,67,68,49,53,54,50,66,48,49,54,51,67,57,70,67,53,66,54,55,51,52,55,56,68,52,50,51,49,65,52,66,51,55,66,49,70,0,69,68,70,54,50,56,48,66,56,65,69,65,70,54,68,68,67,55,51,54,65,70,55,66,55,52,53,54,54,56,52,55,53,67,69,56,53,53,50,70,0,68,49,67,53,67,65,48,56,57,66,50,54,51,50,66,53,69,67,68,50,55,70,55,56,65,56,69,51,52,51,70,66,54,48,56,56,65,70,50,70,0,55,53,57,52,54,70,50,65,55,66,55,54,70,48,51,52,66,65,67,69,67,55,49,55,57,70,67,68,55,54,67,50,53,65,68,53,68,67,51,70,0,50,55,52,49,68,51,50,70,55,52,51,70,68,65,68,70,69,49,68,53,57,66,65,51,50,48,49,67,68,69,50,53,70,51,52,53,52,67,52,70,0,69,53,51,57,53,49,55,48,70,48,68,55,57,67,53,56,67,51,65,70,49,53,69,55,65,65,57,49,55,65,67,65,50,51,48,55,67,69,53,70,0,65,69,67,69,69,51,55,51,51,67,51,56,48,49,55,55,70,48,65,51,57,65,67,70,51,65,70,57,57,66,70,69,51,54,48,67,49,53,54,70,0,52,57,69,50,48,51,52,65,69,57,66,68,48,52,54,68,70,48,55,52,70,55,70,65,52,65,67,65,69,48,53,57,56,48,68,49,68,67,54,70,0,67,48,52,66,51,67,55,53,68,51,66,53,50,68,66,70,69,55,50,55,65,49,50,51,69,51,69,54,65,49,53,55,55,56,54,66,66,68,54,70,0,66,68,65,48,69,56,48,69,65,66,66,51,49,67,50,66,51,51,57,66,65,48,56,52,52,49,53,70,70,51,48,65,69,49,52,69,67,70,57,70,0,50,65,56,52,51,50,52,68,53,52,70,68,67,48,52,55,51,66,69,48,50,49,48,48,52,67,53,48,70,51,54,51,65,68,67,68,56,57,65,70,0,53,50,69,70,66,66,48,66,55,65,54,56,55,69,53,68,50,55,55,67,66,56,48,68,54,50,68,52,66,68,69,65,56,67,57,67,53,65,65,70,0,56,48,54,68,50,48,48,54,53,51,66,68,55,51,51,53,68,48,48,55,55,70,50,55,53,57,69,55,49,53,68,56,66,69,56,68,70,57,66,70,0,49,52,50,69,49,52,54,57,50,51,49,68,53,57,50,56,50,51,53,53,57,48,53,57,49,54,54,66,51,50,54,53,53,57,49,48,68,48,67,70,0,54,65,70,54,53,50,49,56,49,70,66,66,52,50,51,69,68,57,57,53,67,53,67,70,54,51,68,53,66,56,51,55,50,54,68,69,55,52,67,70,0,51,65,65,50,68,55,48,57,70,53,66,56,55,70,51,48,69,57,52,51,49,56,69,53,67,51,54,49,53,65,65,51,66,66,55,52,55,70,67,70,0,70,69,54,56,55,57,54,65,68,48,57,48,56,55,55,54,67,57,70,50,51,70,51,50,54,65,52,49,56,49,67,49,70,53,51,67,70,52,68,70,0,53,57,56,52,54,49,55,67,51,66,49,69,70,49,69,54,67,57,70,49,51,50,50,49,48,53,57,65,49,69,55,56,67,50,50,50,54,65,68,70,0,54,67,67,49,51,53,57,66,57,69,68,55,50,53,48,48,49,56,51,68,53,53,54,54,68,55,48,66,66,69,69,49,66,66,68,52,54,70,70,70,0,68,73,70,70,95,77,79,68,83,73,90,69,95,67,85,84,79,70,70,0,80,68,70,52,49,55,95,71,70,0,71,101,110,101,114,105,99,71,70,0,77,111,100,117,108,117,115,71,70,0,103,101,116,71,70,0,73,84,70,0,70,73,78,68,69,82,95,80,65,84,95,70,0,98,97,114,84,121,112,101,70,0,98,97,114,80,111,115,70,0,80,65,68,68,73,78,71,0,83,84,65,82,84,69,78,68,95,69,78,67,79,68,73,78,71,0,68,69,70,65,85,76,84,95,66,89,84,69,95,77,79,68,69,95,69,78,67,79,68,73,78,71,0,65,83,84,69,82,73,83,75,95,69,78,67,79,68,73,78,71,0,80,76,65,84,70,79,82,77,95,68,69,70,65,85,76,84,95,69,78,67,79,68,73,78,71,0,83,84,65,82,84,95,69,78,67,79,68,73,78,71,0,82,69,65,68,69,82,95,80,82,79,71,82,65,77,77,73,78,71,0,65,76,80,72,65,66,69,84,95,83,84,82,73,78,71,0,65,76,79,71,0,98,97,114,84,121,112,101,71,0,98,97,114,80,111,115,71,0,67,52,48,95,85,78,76,65,84,67,72,0,88,49,50,95,85,78,76,65,84,67,72,0,78,85,77,69,82,73,67,95,67,79,77,80,65,67,84,73,79,78,95,77,79,68,69,95,76,65,84,67,72,0,66,89,84,69,95,67,79,77,80,65,67,84,73,79,78,95,77,79,68,69,95,76,65,84,67,72,0,84,69,88,84,95,67,79,77,80,65,67,84,73,79,78,95,77,79,68,69,95,76,65,84,67,72,0,67,79,68,69,95,87,73,68,84,72,0,68,69,70,65,85,76,84,95,77,79,68,85,76,69,95,87,73,68,84,72,0,67,79,76,85,77,78,95,87,73,68,84,72,0,77,65,84,82,73,88,95,87,73,68,84,72,0,84,72,82,69,69,95,68,73,71,73,84,95,68,65,84,65,95,76,69,78,71,84,72,0,84,87,79,95,68,73,71,73,84,95,68,65,84,65,95,76,69,78,71,84,72,0,70,79,85,82,95,68,73,71,73,84,95,68,65,84,65,95,76,69,78,71,84,72,0,84,72,82,69,69,95,68,73,71,73,84,95,80,76,85,83,95,68,73,71,73,84,95,68,65,84,65,95,76,69,78,71,84,72,0,76,65,82,71,69,83,84,95,68,69,70,65,85,76,84,95,65,76,76,79,87,69,68,95,76,69,78,71,84,72,0,86,65,82,73,65,66,76,69,95,76,69,78,71,84,72,0,77,73,78,95,67,72,65,82,65,67,84,69,82,95,76,69,78,71,84,72,0,77,65,88,95,68,69,80,84,72,0,98,97,114,84,121,112,101,72,0,98,97,114,80,111,115,72,0,112,114,111,99,101,115,115,70,105,120,101,100,65,73,0,112,114,111,99,101,115,115,86,97,114,105,97,98,108,101,65,73,0,101,110,99,111,100,101,67,111,109,112,114,101,115,115,101,100,71,116,105,110,87,105,116,104,111,117,116,65,73,0,68,73,83,65,66,76,69,95,69,67,73,0,78,65,77,69,95,84,79,95,69,67,73,0,86,65,76,85,69,95,84,79,95,69,67,73,0,97,112,112,101,110,100,69,67,73,0,103,101,116,95,68,105,115,97,98,108,101,69,67,73,0,115,101,116,95,68,105,115,97,98,108,101,69,67,73,0,101,110,99,111,100,105,110,103,69,67,73,0,99,117,114,114,101,110,116,67,104,97,114,97,99,116,101,114,83,101,116,69,67,73,0,87,73,70,73,0,105,115,69,120,116,101,110,100,101,100,65,83,67,73,73,0,75,65,78,74,73,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,115,70,114,111,109,76,82,73,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,115,70,114,111,109,82,82,73,0,103,101,116,95,83,77,83,85,82,73,0,115,101,116,95,83,77,83,85,82,73,0,103,101,116,83,77,83,85,82,73,0,103,101,116,95,85,82,73,0,115,101,116,95,85,82,73,0,105,115,66,97,115,105,99,97,108,108,121,86,97,108,105,100,85,82,73,0,109,97,115,115,97,103,101,85,82,73,0,103,101,116,95,84,101,108,85,82,73,0,115,101,116,95,84,101,108,85,82,73,0,116,101,108,85,82,73,0,103,101,116,95,71,101,111,85,82,73,0,115,101,116,95,71,101,111,85,82,73,0,103,101,116,71,101,111,85,82,73,0,103,101,116,95,77,97,105,108,116,111,85,82,73,0,103,101,116,95,71,111,111,103,108,101,77,97,112,115,85,82,73,0,115,101,116,95,71,111,111,103,108,101,77,97,112,115,85,82,73,0,103,101,116,71,111,111,103,108,101,77,97,112,115,85,82,73,0,103,101,116,95,80,111,115,115,105,98,108,121,77,97,108,105,99,105,111,117,115,85,82,73,0,115,101,116,95,80,111,115,115,105,98,108,121,77,97,108,105,99,105,111,117,115,85,82,73,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,115,70,114,111,109,66,111,116,104,82,73,0,77,83,73,0,72,65,78,90,73,0,98,97,114,84,121,112,101,73,0,99,101,110,116,101,114,73,0,98,97,114,80,111,115,73,0,115,116,97,114,116,73,0,98,97,114,84,121,112,101,74,0,99,101,110,116,101,114,74,0,98,97,114,80,111,115,74,0,115,116,97,114,116,74,0,78,69,69,68,95,82,69,83,85,76,84,95,80,79,73,78,84,95,67,65,76,76,66,65,67,75,0,66,69,71,73,78,95,77,65,67,82,79,95,80,68,70,52,49,55,95,67,79,78,84,82,79,76,95,66,76,79,67,75,0,65,68,68,82,69,83,83,66,79,79,75,0,66,76,79,67,75,95,83,73,90,69,95,77,65,83,75,0,80,65,76,0,84,69,76,0,68,69,70,65,85,76,84,95,69,82,82,79,82,95,67,79,82,82,69,67,84,73,79,78,95,76,69,86,69,76,0,65,76,76,0,77,76,0,80,76,0,65,90,84,69,67,95,80,65,82,65,77,0,75,73,76,79,71,82,65,77,0,67,69,78,84,69,82,95,81,85,79,82,85,77,0,73,78,83,73,68,69,95,71,83,85,77,0,79,85,84,83,73,68,69,95,71,83,85,77,0,103,101,116,95,73,83,66,78,0,115,101,116,95,73,83,66,78,0,69,86,69,78,0,77,65,82,71,73,78,0,103,101,116,95,86,73,78,0,115,101,116,95,86,73,78,0,77,73,78,73,77,85,77,95,68,73,77,69,78,83,73,79,78,0,85,80,67,95,69,65,78,95,69,88,84,69,78,83,73,79,78,0,81,82,95,86,69,82,83,73,79,78,0,68,65,84,65,95,77,65,84,82,73,88,95,68,69,70,65,85,76,84,95,69,78,67,79,68,65,84,73,79,78,0,82,70,67,50,52,52,53,95,68,85,82,65,84,73,79,78,0,79,82,73,69,78,84,65,84,73,79,78,0,84,82,89,95,72,65,82,68,69,82,95,87,73,84,72,79,85,84,95,82,79,84,65,84,73,79,78,0,83,85,66,77,79,68,69,95,80,85,78,67,84,85,65,84,73,79,78,0,80,68,70,52,49,55,95,67,79,77,80,65,67,84,73,79,78,0,78,85,77,69,82,73,67,95,67,79,77,80,65,67,84,73,79,78,0,66,89,84,69,95,67,79,77,80,65,67,84,73,79,78,0,84,69,88,84,95,67,79,77,80,65,67,84,73,79,78,0,69,82,82,79,82,95,67,79,82,82,69,67,84,73,79,78,0,70,78,67,49,95,83,69,67,79,78,68,95,80,79,83,73,84,73,79,78,0,70,78,67,49,95,70,73,82,83,84,95,80,79,83,73,84,73,79,78,0,83,69,77,73,67,79,76,79,78,0,77,73,68,68,76,69,95,69,78,68,95,80,65,84,84,69,82,78,0,83,84,65,82,84,95,69,78,68,95,80,65,84,84,69,82,78,0,77,73,68,68,76,69,95,80,65,84,84,69,82,78,0,84,89,80,69,95,73,78,70,79,95,77,65,83,75,95,80,65,84,84,69,82,78,0,85,82,76,95,87,73,84,72,95,80,82,79,84,79,67,79,76,95,80,65,84,84,69,82,78,0,85,82,76,95,87,73,84,72,79,85,84,95,80,82,79,84,79,67,79,76,95,80,65,84,84,69,82,78,0,71,69,79,95,85,82,76,95,80,65,84,84,69,82,78,0,80,79,83,73,84,73,79,78,95,68,69,84,69,67,84,73,79,78,95,80,65,84,84,69,82,78,0,77,79,68,85,76,69,83,95,73,78,95,83,84,79,80,95,80,65,84,84,69,82,78,0,73,78,68,69,88,69,83,95,83,84,79,80,95,80,65,84,84,69,82,78,0,80,79,83,73,84,73,79,78,95,65,68,74,85,83,84,77,69,78,84,95,80,65,84,84,69,82,78,0,69,88,84,69,78,83,73,79,78,95,83,84,65,82,84,95,80,65,84,84,69,82,78,0,73,78,68,69,88,69,83,95,83,84,65,82,84,95,80,65,84,84,69,82,78,0,66,65,82,67,79,68,69,95,82,79,87,95,85,78,75,78,79,87,78,0,73,115,78,97,78,0,71,69,79,0,86,69,82,83,73,79,78,95,68,69,67,79,68,69,95,73,78,70,79,0,83,121,115,116,101,109,46,73,79,0,80,82,69,70,69,82,82,69,68,95,82,65,84,73,79,0,77,73,78,95,70,73,78,68,69,82,95,80,65,84,84,69,82,78,95,82,65,84,73,79,0,77,65,88,95,70,73,78,68,69,82,95,80,65,84,84,69,82,78,95,82,65,84,73,79,0,80,68,70,52,49,55,95,65,83,80,69,67,84,95,82,65,84,73,79,0,68,69,70,65,85,76,84,95,65,83,80,69,67,84,95,82,65,84,73,79,0,65,85,84,79,0,67,72,65,82,95,77,65,80,0,82,79,87,95,83,84,69,80,0,77,73,78,95,83,75,73,80,0,65,68,74,85,83,84,95,82,79,87,95,78,85,77,66,69,82,95,83,75,73,80,0,69,85,67,95,74,80,0,67,79,68,69,95,83,84,79,80,0,70,79,82,77,65,84,95,73,78,70,79,95,68,69,67,79,68,69,95,76,79,79,75,85,80,0,73,79,81,0,67,79,68,65,66,65,82,0,67,65,76,69,78,68,65,82,0,73,83,83,85,69,95,78,85,77,66,69,82,0,77,65,67,82,79,95,48,53,95,72,69,65,68,69,82,0,77,65,67,82,79,95,48,54,95,72,69,65,68,69,82,0,84,82,89,95,72,65,82,68,69,82,0,79,84,72,69,82,0,77,65,67,82,79,95,84,82,65,73,76,69,82,0,77,79,68,69,95,85,80,80,69,82,0,83,85,66,77,79,68,69,95,76,79,87,69,82,0,66,76,79,67,75,95,83,73,90,69,95,80,79,87,69,82,0,66,73,84,78,82,0,77,65,67,82,79,95,80,68,70,52,49,55,95,84,69,82,77,73,78,65,84,79,82,0,84,72,85,77,66,78,65,73,76,95,83,67,65,76,69,95,70,65,67,84,79,82,0,80,65,84,84,69,82,78,95,77,65,84,67,72,95,82,69,83,85,76,84,95,83,67,65,76,69,95,70,65,67,84,79,82,0,70,79,82,77,65,84,95,73,78,70,79,95,77,65,83,75,95,81,82,0,67,79,82,82,0,77,73,78,95,68,73,77,69,78,83,73,79,78,95,84,79,95,82,69,67,85,82,0,65,83,0,77,65,88,95,69,67,95,67,79,68,69,87,79,82,68,83,0,77,65,88,95,78,85,77,69,82,73,67,95,67,79,68,69,87,79,82,68,83,0,78,85,77,66,69,82,95,79,70,95,83,69,81,85,69,78,67,69,95,67,79,68,69,87,79,82,68,83,0,78,85,77,66,69,82,95,79,70,95,67,79,68,69,87,79,82,68,83,0,70,73,78,68,69,82,95,80,65,84,84,69,82,78,95,83,69,81,85,69,78,67,69,83,0,77,65,88,95,77,79,68,85,76,69,83,0,77,79,68,69,95,78,65,77,69,83,0,86,67,65,82,68,95,69,83,67,65,80,69,83,0,84,89,80,69,95,73,78,70,79,95,67,79,79,82,68,73,78,65,84,69,83,0,70,83,0,67,72,65,82,65,67,84,69,82,95,69,78,67,79,68,73,78,71,83,0,67,72,69,67,75,95,68,73,71,73,84,95,69,78,67,79,68,73,78,71,83,0,70,73,82,83,84,95,68,73,71,73,84,95,69,78,67,79,68,73,78,71,83,0,68,69,70,65,85,76,84,95,65,76,76,79,87,69,68,95,76,69,78,71,84,72,83,0,65,83,83,85,77,69,95,83,72,73,70,84,95,74,73,83,0,68,65,84,65,95,77,65,83,75,83,0,69,81,85,65,76,83,0,80,82,79,68,95,83,89,77,66,79,76,83,0,83,77,83,0,112,97,114,115,101,68,117,114,97,116,105,111,110,77,83,0,80,68,70,52,49,55,95,68,73,77,69,78,83,73,79,78,83,0,65,76,76,79,87,69,68,95,69,65,78,95,69,88,84,69,78,83,73,79,78,83,0,86,69,82,83,73,79,78,83,0,85,78,69,83,67,65,80,69,68,95,83,69,77,73,67,79,76,79,78,83,0,67,79,68,69,95,80,65,84,84,69,82,78,83,0,76,95,65,78,68,95,71,95,80,65,84,84,69,82,78,83,0,78,85,77,95,77,65,83,75,95,80,65,84,84,69,82,78,83,0,76,95,80,65,84,84,69,82,78,83,0,70,73,78,68,69,82,95,80,65,84,84,69,82,78,83,0,78,85,77,83,89,83,95,65,78,68,95,67,72,69,67,75,95,68,73,71,73,84,95,80,65,84,84,69,82,78,83,0,80,83,0,65,76,80,72,65,78,85,77,69,82,73,67,95,67,72,65,82,83,0,77,73,88,69,68,95,67,72,65,82,83,0,65,76,84,95,83,84,65,82,84,95,69,78,68,95,67,72,65,82,83,0,80,85,78,67,84,95,67,72,65,82,83,0,67,52,48,95,83,72,73,70,84,50,95,83,69,84,95,67,72,65,82,83,0,84,69,88,84,95,83,72,73,70,84,50,95,83,69,84,95,67,72,65,82,83,0,84,69,88,84,95,83,72,73,70,84,51,95,83,69,84,95,67,72,65,82,83,0,67,52,48,95,66,65,83,73,67,95,83,69,84,95,67,72,65,82,83,0,84,69,88,84,95,66,65,83,73,67,95,83,69,84,95,67,72,65,82,83,0,80,65,82,83,69,82,83,0,68,69,70,65,85,76,84,95,65,90,84,69,67,95,76,65,89,69,82,83,0,77,65,88,95,80,65,73,82,83,0,77,65,88,95,69,82,82,79,82,83,0,70,65,67,84,79,82,83,0,69,77,65,73,76,95,65,68,68,82,69,83,83,0,90,88,105,110,103,46,79,110,101,68,46,82,83,83,0,80,79,83,83,73,66,76,69,95,70,79,82,77,65,84,83,0,76,85,77,73,78,65,78,67,69,95,66,85,67,75,69,84,83,0,70,65,67,84,79,82,95,83,69,84,83,0,87,69,73,71,72,84,83,0,77,65,88,95,78,66,95,66,73,84,83,0,76,85,77,73,78,65,78,67,69,95,66,73,84,83,0,69,88,80,69,67,84,69,68,95,67,79,82,78,69,82,95,66,73,84,83,0,70,79,82,95,66,73,84,83,0,84,72,82,69,69,95,68,73,71,73,84,83,0,78,73,78,69,95,68,73,71,73,84,83,0,84,87,79,95,68,73,71,73,84,83,0,82,70,67,50,52,52,53,95,68,85,82,65,84,73,79,78,95,70,73,69,76,68,95,85,78,73,84,83,0,69,77,80,84,89,95,68,69,84,69,67,84,79,82,95,82,69,83,85,76,84,83,0,69,67,95,67,79,69,70,70,73,67,73,69,78,84,83,0,66,89,84,69,95,83,69,71,77,69,78,84,83,0,78,79,95,80,79,73,78,84,83,0,116,119,111,83,0,71,83,49,95,70,79,82,77,65,84,0,76,65,84,67,72,95,84,79,95,69,68,73,70,65,67,84,0,105,115,78,97,116,105,118,101,69,68,73,70,65,67,84,0,80,68,70,52,49,55,95,67,79,77,80,65,67,84,0,77,65,88,95,78,66,95,66,73,84,83,95,67,79,77,80,65,67,84,0,77,79,68,69,95,80,85,78,67,84,0,80,82,79,68,85,67,84,0,65,76,80,72,65,66,69,84,0,71,66,50,51,49,50,95,83,85,66,83,69,84,0,73,78,83,73,68,69,95,79,68,68,95,84,79,84,65,76,95,83,85,66,83,69,84,0,79,85,84,83,73,68,69,95,69,86,69,78,95,84,79,84,65,76,95,83,85,66,83,69,84,0,69,67,73,95,67,72,65,82,83,69,84,0,68,69,70,65,85,76,84,95,67,72,65,82,83,69,84,0,67,72,65,82,65,67,84,69,82,95,83,69,84,0,65,76,80,72,65,95,83,72,73,70,84,0,76,85,77,73,78,65,78,67,69,95,83,72,73,70,84,0,67,79,68,69,95,83,72,73,70,84,0,73,78,84,69,71,69,82,95,77,65,84,72,95,83,72,73,70,84,0,85,80,80,69,82,95,83,72,73,70,84,0,80,85,78,67,84,95,83,72,73,70,84,0,77,65,88,95,80,73,88,69,76,95,68,82,73,70,84,0,77,65,88,95,80,65,84,84,69,82,78,95,68,82,73,70,84,0,66,65,82,67,79,68,69,95,77,73,78,95,72,69,73,71,72,84,0,77,65,84,82,73,88,95,72,69,73,71,72,84,0,77,79,68,69,95,68,73,71,73,84,0,79,78,69,95,68,73,71,73,84,0,65,83,83,85,77,69,95,67,79,68,69,95,51,57,95,67,72,69,67,75,95,68,73,71,73,84,0,65,83,83,85,77,69,95,77,83,73,95,67,72,69,67,75,95,68,73,71,73,84,0,68,69,70,65,85,76,84,95,69,67,95,80,69,82,67,69,78,84,0,68,73,70,70,95,77,79,68,83,73,90,69,95,67,85,84,79,70,70,95,80,69,82,67,69,78,84,0,73,78,83,73,68,69,95,79,68,68,95,87,73,68,69,83,84,0,79,85,84,83,73,68,69,95,79,68,68,95,87,73,68,69,83,84,0,83,89,77,66,79,76,95,87,73,68,69,83,84,0,85,83,69,82,95,73,78,95,72,79,83,84,0,76,65,84,67,72,95,84,79,95,84,69,88,84,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,89,85,89,86,0,84,69,88,84,95,77,73,88,69,68,95,82,65,87,0,84,69,88,84,95,80,85,78,67,84,85,65,84,73,79,78,95,82,65,87,0,83,75,73,80,80,69,68,95,82,79,87,95,67,79,85,78,84,95,77,65,88,0,68,65,84,65,95,77,65,84,82,73,88,0,103,101,116,95,88,0,115,101,116,95,88,0,100,101,108,116,97,88,0,98,88,0,103,101,116,95,69,110,100,88,0,115,101,116,95,69,110,100,88,0,101,110,100,88,0,118,105,101,119,98,111,120,83,105,122,101,88,0,100,105,115,112,108,97,121,115,105,122,101,88,0,112,49,70,114,111,109,88,0,112,50,70,114,111,109,88,0,112,51,70,114,111,109,88,0,112,52,70,114,111,109,88,0,102,114,111,109,88,0,103,101,116,95,77,105,110,88,0,115,101,116,95,77,105,110,88,0,100,105,109,101,110,115,105,111,110,88,0,112,49,84,111,88,0,112,50,84,111,88,0,112,51,84,111,88,0,112,52,84,111,88,0,116,111,88,0,99,101,110,116,101,114,88,0,98,121,116,101,115,88,0,101,110,100,80,111,115,88,0,115,116,97,114,116,80,111,115,88,0,112,111,115,88,0,111,102,102,115,101,116,88,0,101,115,116,65,108,105,103,110,109,101,110,116,88,0,103,101,116,95,83,116,97,114,116,88,0,115,101,116,95,83,116,97,114,116,88,0,115,116,97,114,116,88,0,103,101,116,95,77,97,120,88,0,115,101,116,95,77,97,120,88,0,69,77,80,84,89,95,82,69,83,85,76,84,95,65,82,82,65,89,0,69,77,80,84,89,95,73,78,84,95,65,82,82,65,89,0,80,76,69,83,83,69,89,0,84,89,80,69,95,73,78,70,79,95,80,79,76,89,0,86,69,82,83,73,79,78,95,73,78,70,79,95,80,79,76,89,0,66,73,78,65,82,89,0,80,79,83,83,73,66,76,69,95,67,79,85,78,84,82,89,0,83,84,82,85,67,84,85,82,69,68,95,65,80,80,69,78,68,95,80,65,82,73,84,89,0,69,77,80,84,89,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,85,89,86,89,0,103,101,116,95,89,0,115,101,116,95,89,0,100,101,108,116,97,89,0,98,89,0,118,105,101,119,98,111,120,83,105,122,101,89,0,100,105,115,112,108,97,121,115,105,122,101,89,0,112,49,70,114,111,109,89,0,112,50,70,114,111,109,89,0,112,51,70,114,111,109,89,0,112,52,70,114,111,109,89,0,102,114,111,109,89,0,103,101,116,95,77,105,110,89,0,115,101,116,95,77,105,110,89,0,100,105,109,101,110,115,105,111,110,89,0,112,49,84,111,89,0,112,50,84,111,89,0,112,51,84,111,89,0,112,52,84,111,89,0,116,111,89,0,99,101,110,116,101,114,89,0,98,121,116,101,115,89,0,101,110,100,80,111,115,89,0,115,116,97,114,116,80,111,115,89,0,112,111,115,89,0,111,102,102,83,101,116,89,0,101,115,116,65,108,105,103,110,109,101,110,116,89,0,115,116,97,114,116,89,0,103,101,116,95,77,97,120,89,0,115,101,116,95,77,97,120,89,0,99,114,111,115,115,80,114,111,100,117,99,116,90,0,118,97,108,117,101,95,95,0,71,101,116,67,111,108,111,114,82,103,98,97,0,105,115,83,116,105,108,108,65,108,112,104,97,0,105,115,65,108,112,104,97,0,115,101,116,65,108,112,104,97,0,67,111,110,118,101,114,116,65,108,112,104,97,0,97,108,112,104,97,0,97,100,100,78,117,109,98,101,114,86,105,97,0,118,105,97,0,81,82,67,111,100,101,68,101,99,111,100,101,114,77,101,116,97,68,97,116,97,0,103,101,116,69,110,99,111,100,101,100,68,97,116,97,0,114,115,66,108,111,99,107,68,97,116,97,0,103,101,116,95,79,112,116,105,111,110,97,108,68,97,116,97,0,115,101,116,95,79,112,116,105,111,110,97,108,68,97,116,97,0,73,66,97,114,99,111,100,101,87,114,105,116,101,114,80,105,120,101,108,68,97,116,97,0,98,121,116,101,67,111,109,112,97,99,116,105,111,110,68,97,116,97,0,116,101,120,116,67,111,109,112,97,99,116,105,111,110,68,97,116,97,0,103,101,116,67,111,114,114,101,99,116,101,100,80,97,114,97,109,101,116,101,114,68,97,116,97,0,112,97,114,97,109,101,116,101,114,68,97,116,97,0,121,117,118,68,97,116,97,0,114,103,98,53,54,53,82,97,119,68,97,116,97,0,103,101,116,95,77,101,116,97,100,97,116,97,0,115,101,116,95,77,101,116,97,100,97,116,97,0,103,101,116,66,97,114,99,111,100,101,77,101,116,97,100,97,116,97,0,112,117,116,65,108,108,77,101,116,97,100,97,116,97,0,80,68,70,52,49,55,82,101,115,117,108,116,77,101,116,97,100,97,116,97,0,103,101,116,95,82,101,115,117,108,116,77,101,116,97,100,97,116,97,0,115,101,116,95,82,101,115,117,108,116,77,101,116,97,100,97,116,97,0,65,122,116,101,99,82,101,115,117,108,116,77,101,116,97,100,97,116,97,0,114,101,115,117,108,116,77,101,116,97,100,97,116,97,0,112,117,116,77,101,116,97,100,97,116,97,0,109,101,116,97,100,97,116,97,0,100,100,97,116,97,0,100,101,108,116,97,0,71,101,116,67,111,108,111,114,82,103,98,0,105,109,98,0,115,98,0,60,62,99,0,103,101,116,95,83,115,99,99,0,115,115,99,99,0,98,105,110,97,114,121,83,116,114,105,110,103,84,111,68,101,99,0,65,100,100,82,101,99,0,90,88,105,110,103,46,65,122,116,101,99,0,103,101,110,101,114,97,116,101,66,97,114,99,111,100,101,76,111,103,105,99,0,108,111,103,105,99,0,68,101,99,111,100,101,100,78,117,109,101,114,105,99,0,100,101,99,111,100,101,78,117,109,101,114,105,99,0,101,110,99,111,100,101,78,117,109,101,114,105,99,0,105,115,83,116,105,108,108,78,117,109,101,114,105,99,0,105,115,78,117,109,101,114,105,99,0,115,101,116,78,117,109,101,114,105,99,0,100,101,99,111,100,101,65,108,112,104,97,110,117,109,101,114,105,99,0,83,121,115,116,101,109,46,67,111,108,108,101,99,116,105,111,110,115,46,71,101,110,101,114,105,99,0,73,66,97,114,99,111,100,101,82,101,97,100,101,114,71,101,110,101,114,105,99,0,73,66,97,114,99,111,100,101,87,114,105,116,101,114,71,101,110,101,114,105,99,0,105,110,110,101,114,69,120,99,0,103,101,116,95,70,105,108,101,73,100,0,115,101,116,95,70,105,108,101,73,100,0,69,120,116,101,110,100,101,100,69,117,99,108,105,100,71,99,100,0,65,100,100,0,97,100,100,0,105,110,105,116,73,102,78,101,101,100,101,100,0,99,97,108,99,117,108,97,116,101,66,105,116,115,78,101,101,100,101,100,0,90,88,105,110,103,46,79,110,101,68,46,82,83,83,46,69,120,112,97,110,100,101,100,0,100,101,99,111,100,101,69,120,116,101,110,100,101,100,0,101,110,99,111,100,101,100,0,97,100,100,95,86,97,108,117,101,67,104,97,110,103,101,100,0,114,101,109,111,118,101,95,86,97,108,117,101,67,104,97,110,103,101,100,0,79,110,86,97,108,117,101,67,104,97,110,103,101,100,0,105,115,70,105,110,105,115,104,101,100,0,102,105,110,105,115,104,101,100,0,73,110,116,101,114,108,111,99,107,101,100,0,100,105,115,97,98,108,101,100,0,118,97,108,117,101,95,82,101,110,97,109,101,100,0,73,115,68,101,102,105,110,101,100,0,101,115,99,97,112,101,100,0,104,97,115,83,107,105,112,112,101,100,0,115,104,111,117,108,100,66,101,70,108,105,112,112,101,100,0,103,101,116,95,73,115,77,105,114,114,111,114,101,100,0,109,105,114,114,111,114,101,100,0,103,101,116,95,73,115,82,101,118,101,114,115,101,100,0,115,101,116,95,73,115,82,101,118,101,114,115,101,100,0,119,97,115,82,101,118,101,114,115,101,100,0,112,114,111,99,101,115,115,101,100,0,103,101,116,95,69,114,114,111,114,115,67,111,114,114,101,99,116,101,100,0,115,101,116,95,69,114,114,111,114,115,67,111,114,114,101,99,116,101,100,0,103,101,116,95,84,114,121,73,110,118,101,114,116,101,100,0,115,101,116,95,84,114,121,73,110,118,101,114,116,101,100,0,103,101,116,95,82,111,116,97,116,101,83,117,112,112,111,114,116,101,100,0,103,101,116,95,73,110,118,101,114,115,105,111,110,83,117,112,112,111,114,116,101,100,0,103,101,116,95,67,114,111,112,83,117,112,112,111,114,116,101,100,0,114,101,99,101,105,118,101,100,0,114,101,109,111,118,101,100,0,105,115,77,105,120,101,100,0,102,105,120,101,100,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,73,102,86,97,108,105,100,0,105,115,86,97,108,105,100,0,99,114,99,71,114,105,100,0,115,97,109,112,108,101,71,114,105,100,0,103,101,116,95,83,115,105,100,0,115,101,116,95,83,115,105,100,0,115,115,105,100,0,111,114,100,105,110,97,108,95,82,101,110,97,109,101,100,95,70,105,101,108,100,0,109,97,116,99,104,83,105,110,103,108,101,86,67,97,114,100,80,114,101,102,105,120,101,100,70,105,101,108,100,0,109,97,116,99,104,86,67,97,114,100,80,114,101,102,105,120,101,100,70,105,101,108,100,0,109,97,116,99,104,83,105,110,103,108,101,80,114,101,102,105,120,101,100,70,105,101,108,100,0,109,97,116,99,104,80,114,101,102,105,120,101,100,70,105,101,108,100,0,109,97,116,99,104,83,105,110,103,108,101,68,111,67,111,77,111,80,114,101,102,105,120,101,100,70,105,101,108,100,0,109,97,116,99,104,68,111,67,111,77,111,80,114,101,102,105,120,101,100,70,105,101,108,100,0,100,101,99,111,100,101,71,101,110,101,114,97,108,80,117,114,112,111,115,101,70,105,101,108,100,0,60,87,111,114,108,100,77,97,110,117,102,97,99,116,117,114,101,114,73,68,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,114,111,100,117,99,116,73,68,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,111,114,109,97,108,105,122,101,100,80,114,111,100,117,99,116,73,68,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,85,82,73,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,77,83,85,82,73,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,101,108,85,82,73,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,71,101,111,85,82,73,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,71,111,111,103,108,101,77,97,112,115,85,82,73,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,111,115,115,105,98,108,121,77,97,108,105,99,105,111,117,115,85,82,73,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,73,83,66,78,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,73,78,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,88,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,110,100,88,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,105,110,88,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,116,97,114,116,88,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,97,120,88,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,89,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,105,110,89,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,97,120,89,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,79,112,116,105,111,110,97,108,68,97,116,97,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,101,116,97,100,97,116,97,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,101,115,117,108,116,77,101,116,97,100,97,116,97,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,105,108,101,73,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,73,115,82,101,118,101,114,115,101,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,114,114,111,114,115,67,111,114,114,101,99,116,101,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,114,121,73,110,118,101,114,116,101,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,115,105,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,116,97,114,116,69,110,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,111,114,101,103,114,111,117,110,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,97,99,107,103,114,111,117,110,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,104,97,115,101,50,77,101,116,104,111,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,97,112,77,101,116,104,111,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,97,115,115,119,111,114,100,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,108,97,110,116,67,111,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,111,117,110,116,114,121,67,111,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,111,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,76,111,110,103,105,116,117,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,76,97,116,105,116,117,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,65,108,116,105,116,117,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,76,97,110,103,117,97,103,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,105,116,108,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,97,109,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,111,110,116,78,97,109,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,79,110,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,121,112,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,65,117,116,111,82,111,116,97,116,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,97,108,117,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,105,122,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,111,110,116,83,105,122,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,87,105,100,116,104,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,67,76,101,118,101,108,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,114,111,109,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,72,105,100,100,101,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,110,99,49,67,111,100,101,119,111,114,100,73,115,87,114,105,116,116,101,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,101,114,115,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,101,104,105,99,108,101,73,100,101,110,116,105,102,105,101,114,83,101,99,116,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,101,104,105,99,108,101,68,101,115,99,114,105,112,116,111,114,83,101,99,116,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,101,119,80,111,115,105,116,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,101,116,119,111,114,107,69,110,99,114,121,112,116,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,104,101,99,107,115,117,109,80,111,114,116,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,97,115,107,80,97,116,116,101,114,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,105,110,100,101,114,80,97,116,116,101,114,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,111,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,90,101,114,111,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,105,109,101,115,116,97,109,112,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,111,100,101,108,89,101,97,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,76,101,102,116,67,104,97,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,105,103,104,116,67,104,97,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,117,109,98,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,83,101,113,117,101,110,99,101,78,117,109,98,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,101,113,117,101,110,116,105,97,108,78,117,109,98,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,111,119,78,117,109,98,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,110,99,111,100,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,79,116,104,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,111,119,67,111,117,110,116,85,112,112,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,101,110,100,101,114,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,111,119,67,111,117,110,116,76,111,119,101,114,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,67,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,67,67,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,105,97,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,111,100,101,87,111,114,100,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,111,100,101,119,111,114,100,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,69,114,97,115,117,114,101,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,86,101,104,105,99,108,101,65,116,116,114,105,98,117,116,101,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,97,119,66,121,116,101,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,68,97,116,97,98,108,111,99,107,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,98,68,97,116,97,98,108,111,99,107,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,105,120,101,108,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,67,111,108,117,109,110,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,114,97,110,115,105,116,105,111,110,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,111,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,117,109,98,101,114,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,76,97,121,101,114,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,98,76,97,121,101,114,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,97,105,114,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,105,116,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,78,117,109,66,105,116,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,121,116,101,83,101,103,109,101,110,116,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,72,105,110,116,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,80,111,105,110,116,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,101,115,117,108,116,80,111,105,110,116,115,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,70,111,114,109,97,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,97,114,99,111,100,101,70,111,114,109,97,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,111,109,112,97,99,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,105,115,67,111,109,112,97,99,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,117,98,106,101,99,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,117,99,107,101,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,111,116,116,111,109,76,101,102,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,111,112,76,101,102,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,73,115,76,101,102,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,111,116,116,111,109,82,105,103,104,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,111,112,82,105,103,104,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,72,101,105,103,104,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,73,115,76,97,115,116,83,101,103,109,101,110,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,111,117,110,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,67,111,108,117,109,110,67,111,117,110,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,82,111,119,67,111,117,110,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,97,121,66,101,76,97,115,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,84,101,120,116,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,101,103,109,101,110,116,73,110,100,101,120,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,77,97,116,114,105,120,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,111,120,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,66,111,100,121,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,81,117,101,114,121,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,80,97,114,105,116,121,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,73,100,101,110,116,105,116,121,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,65,110,111,110,121,109,111,117,115,73,100,101,110,116,105,116,121,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,102,105,101,108,100,0,116,104,114,101,115,104,111,108,100,0,103,101,116,95,69,110,100,0,112,97,121,108,111,97,100,69,110,100,0,65,100,100,69,110,100,0,115,111,117,114,99,101,69,110,100,0,100,101,99,111,100,101,69,110,100,0,112,114,111,116,111,99,111,108,69,110,100,0,99,101,110,116,101,114,70,114,111,109,69,110,100,0,115,101,116,83,107,105,112,65,116,69,110,100,0,115,107,105,112,65,116,69,110,100,0,103,101,116,95,83,116,97,114,116,69,110,100,0,115,101,116,95,83,116,97,114,116,69,110,100,0,103,101,116,95,82,101,116,117,114,110,67,111,100,97,98,97,114,83,116,97,114,116,69,110,100,0,115,101,116,95,82,101,116,117,114,110,67,111,100,97,98,97,114,83,116,97,114,116,69,110,100,0,115,116,97,114,116,69,110,100,0,103,101,116,95,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,0,80,114,111,99,101,115,115,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,0,108,97,116,99,104,65,110,100,65,112,112,101,110,100,0,115,104,105,102,116,65,110,100,65,112,112,101,110,100,0,109,97,121,98,101,65,112,112,101,110,100,0,99,111,117,110,116,101,114,65,112,112,101,110,100,0,85,114,105,75,105,110,100,0,102,105,110,100,0,108,103,80,97,116,116,101,114,110,70,111,117,110,100,0,79,110,82,101,115,117,108,116,115,70,111,117,110,100,0,97,100,100,95,82,101,115,117,108,116,70,111,117,110,100,0,114,101,109,111,118,101,95,82,101,115,117,108,116,70,111,117,110,100,0,79,110,82,101,115,117,108,116,70,111,117,110,100,0,97,100,100,95,82,101,115,117,108,116,80,111,105,110,116,70,111,117,110,100,0,114,101,109,111,118,101,95,82,101,115,117,108,116,80,111,105,110,116,70,111,117,110,100,0,79,110,82,101,115,117,108,116,80,111,105,110,116,70,111,117,110,100,0,97,100,100,95,101,120,112,108,105,99,105,116,82,101,115,117,108,116,80,111,105,110,116,70,111,117,110,100,0,114,101,109,111,118,101,95,101,120,112,108,105,99,105,116,82,101,115,117,108,116,80,111,105,110,116,70,111,117,110,100,0,82,111,117,110,100,0,103,101,116,95,70,111,114,101,103,114,111,117,110,100,0,115,101,116,95,70,111,114,101,103,114,111,117,110,100,0,103,101,116,95,66,97,99,107,103,114,111,117,110,100,0,115,101,116,95,66,97,99,107,103,114,111,117,110,100,0,98,97,99,107,103,114,111,117,110,100,0,103,101,116,95,80,104,97,115,101,50,77,101,116,104,111,100,0,115,101,116,95,80,104,97,115,101,50,77,101,116,104,111,100,0,112,104,97,115,101,50,77,101,116,104,111,100,0,103,101,116,95,69,97,112,77,101,116,104,111,100,0,115,101,116,95,69,97,112,77,101,116,104,111,100,0,101,97,112,77,101,116,104,111,100,0,109,101,116,104,111,100,0,99,111,100,101,87,111,114,100,0,114,97,110,100,111,109,105,122,101,100,66,97,115,101,50,53,54,67,111,100,101,119,111,114,100,0,119,114,105,116,101,67,111,100,101,119,111,114,100,0,111,116,104,101,114,67,111,100,101,119,111,114,100,0,103,101,116,66,105,116,67,111,117,110,116,70,111,114,67,111,100,101,119,111,114,100,0,100,101,116,101,99,116,67,111,100,101,119,111,114,100,0,103,101,116,67,111,100,101,119,111,114,100,0,115,101,116,67,111,100,101,119,111,114,100,0,99,111,100,101,119,111,114,100,0,103,101,116,95,80,97,115,115,119,111,114,100,0,115,101,116,95,80,97,115,115,119,111,114,100,0,112,97,115,115,119,111,114,100,0,82,101,112,108,97,99,101,0,115,107,105,112,87,104,105,116,101,83,112,97,99,101,0,103,101,116,95,80,114,105,99,101,0,112,114,105,99,101,0,112,97,116,116,101,114,110,77,97,116,99,104,86,97,114,105,97,110,99,101,0,109,97,120,73,110,100,105,118,105,100,117,97,108,86,97,114,105,97,110,99,101,0,67,97,108,99,117,108,97,116,101,76,117,109,105,110,97,110,99,101,0,100,105,115,116,97,110,99,101,0,103,101,116,95,73,110,115,116,97,110,99,101,0,67,114,101,97,116,101,73,110,115,116,97,110,99,101,0,103,101,116,67,111,110,102,105,100,101,110,99,101,0,114,101,102,101,114,101,110,99,101,0,68,105,102,102,101,114,101,110,99,101,0,115,97,83,101,113,117,101,110,99,101,0,105,115,86,97,108,105,100,83,101,113,117,101,110,99,101,0,117,112,99,101,0,100,101,102,97,117,108,116,67,114,101,97,116,101,82,71,66,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,99,114,101,97,116,101,82,71,66,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,80,108,97,110,97,114,89,85,86,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,103,101,116,95,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,73,110,118,101,114,116,101,100,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,66,97,115,101,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,103,101,116,95,67,114,101,97,116,101,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,100,101,102,97,117,108,116,67,114,101,97,116,101,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,99,114,101,97,116,101,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,108,117,109,105,110,97,110,99,101,83,111,117,114,99,101,0,66,105,116,83,111,117,114,99,101,0,115,111,117,114,99,101,0,111,108,100,83,105,100,101,0,110,101,119,83,105,100,101,0,111,118,101,114,114,105,100,101,0,115,116,114,105,100,101,0,100,105,118,105,100,101,0,99,97,108,99,117,108,97,116,101,66,67,72,67,111,100,101,0,81,82,67,111,100,101,0,65,122,116,101,99,67,111,100,101,0,103,101,116,65,108,112,104,97,110,117,109,101,114,105,99,67,111,100,101,0,114,101,97,100,67,111,100,101,0,111,108,100,67,111,100,101,0,100,101,99,111,100,101,67,111,100,101,0,99,104,111,111,115,101,67,111,100,101,0,100,97,116,101,67,111,100,101,0,71,101,116,72,97,115,104,67,111,100,101,0,90,88,105,110,103,46,81,114,67,111,100,101,0,90,88,105,110,103,46,77,117,108,116,105,46,81,114,67,111,100,101,0,112,97,105,114,67,111,100,101,0,112,114,111,100,117,99,116,67,111,100,101,0,97,100,100,87,101,105,103,104,116,67,111,100,101,0,103,101,116,95,80,108,97,110,116,67,111,100,101,0,115,101,116,95,80,108,97,110,116,67,111,100,101,0,112,108,97,110,116,67,111,100,101,0,103,101,116,95,67,111,117,110,116,114,121,67,111,100,101,0,115,101,116,95,67,111,117,110,116,114,121,67,111,100,101,0,99,111,117,110,116,114,121,67,111,100,101,0,103,101,116,95,77,111,100,101,0,115,101,116,95,77,111,100,101,0,103,101,116,95,85,115,101,67,111,100,101,51,57,69,120,116,101,110,100,101,100,77,111,100,101,0,115,101,116,95,85,115,101,67,111,100,101,51,57,69,120,116,101,110,100,101,100,77,111,100,101,0,103,101,116,95,85,115,101,67,111,100,101,51,57,82,101,108,97,120,101,100,69,120,116,101,110,100,101,100,77,111,100,101,0,115,101,116,95,85,115,101,67,111,100,101,51,57,82,101,108,97,120,101,100,69,120,116,101,110,100,101,100,77,111,100,101,0,116,114,121,84,111,67,111,110,118,101,114,116,84,111,69,120,116,101,110,100,101,100,77,111,100,101,0,101,120,116,101,110,100,101,100,77,111,100,101,0,99,104,111,111,115,101,77,111,100,101,0,103,101,116,95,69,110,99,111,100,105,110,103,77,111,100,101,0,99,117,114,114,101,110,116,77,111,100,101,0,104,105,103,104,76,101,118,101,108,68,101,99,111,100,101,0,117,114,108,68,101,99,111,100,101,0,100,111,68,101,99,111,100,101,0,100,101,99,111,100,101,0,90,88,105,110,103,46,77,97,120,105,99,111,100,101,0,116,111,69,110,99,111,100,101,0,101,110,99,111,100,101,0,103,101,116,95,80,117,114,101,66,97,114,99,111,100,101,0,115,101,116,95,80,117,114,101,66,97,114,99,111,100,101,0,112,117,114,101,66,97,114,99,111,100,101,0,105,110,105,116,105,97,108,83,117,98,109,111,100,101,0,115,116,97,114,116,109,111,100,101,0,103,101,116,95,76,111,110,103,105,116,117,100,101,0,115,101,116,95,76,111,110,103,105,116,117,100,101,0,108,111,110,103,105,116,117,100,101,0,103,101,116,95,76,97,116,105,116,117,100,101,0,115,101,116,95,76,97,116,105,116,117,100,101,0,108,97,116,105,116,117,100,101,0,103,101,116,95,65,108,116,105,116,117,100,101,0,115,101,116,95,65,108,116,105,116,117,100,101,0,97,108,116,105,116,117,100,101,0,103,101,116,95,68,101,103,114,101,101,0,100,101,103,114,101,101,0,103,101,116,95,73,109,97,103,101,0,98,105,110,97,114,105,122,101,69,110,116,105,114,101,73,109,97,103,101,0,83,118,103,73,109,97,103,101,0,105,109,97,103,101,0,97,118,101,114,97,103,101,0,103,101,116,95,77,101,115,115,97,103,101,0,103,101,110,101,114,97,116,101,77,111,100,101,77,101,115,115,97,103,101,0,100,114,97,119,77,111,100,101,77,101,115,115,97,103,101,0,109,111,100,101,77,101,115,115,97,103,101,0,103,101,116,77,101,115,115,97,103,101,0,109,101,115,115,97,103,101,0,103,101,116,95,76,97,110,103,117,97,103,101,0,115,101,116,95,76,97,110,103,117,97,103,101,0,108,97,110,103,117,97,103,101,0,65,100,100,82,97,110,103,101,0,115,116,97,114,116,71,117,97,114,100,82,97,110,103,101,0,98,108,97,99,107,87,104,105,116,101,82,97,110,103,101,0,105,115,82,97,110,103,101,0,71,101,116,82,97,110,103,101,0,115,101,116,82,97,110,103,101,0,101,120,116,101,110,115,105,111,110,83,116,97,114,116,82,97,110,103,101,0,115,116,97,114,116,82,97,110,103,101,0,115,105,103,110,97,108,69,110,99,111,100,101,114,67,104,97,110,103,101,0,67,111,109,112,97,114,101,69,120,99,104,97,110,103,101,0,114,97,110,103,101,0,109,101,114,103,101,0,69,110,100,73,110,118,111,107,101,0,66,101,103,105,110,73,110,118,111,107,101,0,120,83,99,97,108,101,0,121,83,99,97,108,101,0,115,99,97,108,101,0,108,111,103,84,97,98,108,101,0,101,120,112,84,97,98,108,101,0,103,101,116,84,97,98,108,101,0,97,118,97,105,108,97,98,108,101,0,73,67,111,109,112,97,114,97,98,108,101,0,73,69,110,117,109,101,114,97,98,108,101,0,73,68,105,115,112,111,115,97,98,108,101,0,98,114,111,119,115,97,98,108,101,0,100,101,99,111,100,101,81,117,111,116,101,100,80,114,105,110,116,97,98,108,101,0,122,120,105,110,103,46,112,111,114,116,97,98,108,101,0,68,111,117,98,108,101,0,100,101,99,111,100,101,77,105,100,100,108,101,0,82,117,110,116,105,109,101,70,105,101,108,100,72,97,110,100,108,101,0,82,117,110,116,105,109,101,84,121,112,101,72,97,110,100,108,101,0,71,101,116,84,121,112,101,70,114,111,109,72,97,110,100,108,101,0,103,101,116,69,110,99,108,111,115,105,110,103,82,101,99,116,97,110,103,108,101,0,105,115,87,104,105,116,101,79,114,66,108,97,99,107,82,101,99,116,97,110,103,108,101,0,70,105,110,100,77,97,120,105,109,117,109,82,101,99,116,97,110,103,108,101,0,83,105,110,103,108,101,0,100,111,68,101,99,111,100,101,77,117,108,116,105,112,108,101,0,100,101,99,111,100,101,77,117,108,116,105,112,108,101,0,109,117,108,116,105,112,108,101,0,103,101,116,95,84,105,116,108,101,0,115,101,116,95,84,105,116,108,101,0,116,105,116,108,101,0,114,101,97,100,77,111,100,117,108,101,0,109,111,100,117,108,101,0,71,101,116,66,97,99,107,103,114,111,117,110,100,83,116,121,108,101,0,103,101,116,95,78,97,109,101,0,115,101,116,95,78,97,109,101,0,103,101,116,95,87,101,98,78,97,109,101,0,98,117,105,108,100,78,97,109,101,0,112,97,114,115,101,78,97,109,101,0,103,101,116,95,69,110,99,111,100,105,110,103,78,97,109,101,0,101,110,99,111,100,105,110,103,78,97,109,101,0,103,101,116,95,70,111,110,116,78,97,109,101,0,115,101,116,95,70,111,110,116,78,97,109,101,0,68,101,102,97,117,108,116,70,111,110,116,78,97,109,101,0,102,111,110,116,78,97,109,101,0,108,97,115,116,78,97,109,101,0,102,105,114,115,116,78,97,109,101,0,110,101,119,78,97,109,101,0,103,101,116,67,104,97,114,97,99,116,101,114,83,101,116,69,67,73,66,121,78,97,109,101,0,101,110,99,111,100,105,110,103,110,97,109,101,0,103,101,116,95,83,99,104,101,109,101,0,68,97,116,101,84,105,109,101,0,100,97,116,101,84,105,109,101,0,67,111,110,118,101,114,116,84,105,109,101,0,83,121,115,116,101,109,46,82,117,110,116,105,109,101,0,103,101,116,95,79,110,101,0,115,101,116,95,79,110,101,0,115,97,109,112,108,101,76,105,110,101,0,103,101,116,95,78,101,119,76,105,110,101,0,67,111,109,98,105,110,101,0,100,101,115,116,105,110,97,116,105,111,110,84,105,109,101,90,111,110,101,0,118,97,108,105,100,97,116,101,81,117,105,101,116,90,111,110,101,0,113,117,105,101,116,90,111,110,101,0,67,108,111,110,101,0,102,105,110,100,70,105,114,115,116,69,115,99,97,112,101,0,103,101,116,95,83,121,109,98,111,108,83,104,97,112,101,0,115,101,116,95,83,121,109,98,111,108,83,104,97,112,101,0,115,101,116,83,121,109,98,111,108,83,104,97,112,101,0,115,104,97,112,101,0,102,105,110,100,67,84,121,112,101,0,103,101,116,95,84,121,112,101,0,115,101,116,95,84,121,112,101,0,82,101,115,117,108,116,77,101,116,97,100,97,116,97,84,121,112,101,0,86,97,108,117,101,84,121,112,101,0,98,97,114,84,121,112,101,0,103,101,116,95,87,101,105,103,104,116,84,121,112,101,0,119,101,105,103,104,116,84,121,112,101,0,80,97,114,115,101,100,82,101,115,117,108,116,84,121,112,101,0,68,101,99,111,100,101,72,105,110,116,84,121,112,101,0,69,110,99,111,100,101,72,105,110,116,84,121,112,101,0,104,105,110,116,84,121,112,101,0,116,121,112,101,0,67,111,109,112,97,114,101,0,101,120,112,97,110,100,83,113,117,97,114,101,0,113,117,97,100,114,105,108,97,116,101,114,97,108,84,111,83,113,117,97,114,101,0,103,101,116,95,67,117,114,114,101,110,116,85,73,67,117,108,116,117,114,101,0,103,101,116,95,73,110,118,97,114,105,97,110,116,67,117,108,116,117,114,101,0,103,101,116,95,67,117,114,114,101,110,116,67,117,108,116,117,114,101,0,67,97,112,116,117,114,101,0,103,101,110,66,97,115,101,0,78,117,109,98,101,114,66,97,115,101,0,103,101,116,95,71,101,110,101,114,97,116,111,114,66,97,115,101,0,103,101,110,101,114,97,116,111,114,66,97,115,101,0,114,111,116,97,116,101,67,111,117,110,116,101,114,67,108,111,99,107,119,105,115,101,0,112,97,114,115,101,70,105,101,108,100,115,73,110,71,101,110,101,114,97,108,80,117,114,112,111,115,101,0,68,105,115,112,111,115,101,0,84,114,121,80,97,114,115,101,0,112,97,114,115,101,0,114,101,99,111,114,100,80,97,116,116,101,114,110,73,110,82,101,118,101,114,115,101,0,114,101,118,101,114,115,101,0,77,111,100,117,108,97,114,73,110,118,101,114,115,101,0,105,110,118,101,114,115,101,0,101,110,99,111,100,101,67,111,109,112,114,101,115,115,101,100,68,97,116,101,0,105,115,76,105,107,101,86,67,97,114,100,68,97,116,101,0,103,101,116,95,66,101,115,116,66,101,102,111,114,101,68,97,116,101,0,98,101,115,116,66,101,102,111,114,101,68,97,116,101,0,112,97,114,115,101,68,97,116,101,0,103,101,116,95,80,97,99,107,97,103,105,110,103,68,97,116,101,0,112,97,99,107,97,103,105,110,103,68,97,116,101,0,103,101,116,95,69,120,112,105,114,97,116,105,111,110,68,97,116,101,0,101,120,112,105,114,97,116,105,111,110,68,97,116,101,0,103,101,116,95,80,114,111,100,117,99,116,105,111,110,68,97,116,101,0,112,114,111,100,117,99,116,105,111,110,68,97,116,101,0,100,97,116,101,0,84,114,121,67,114,101,97,116,101,0,77,117,108,116,105,99,97,115,116,68,101,108,101,103,97,116,101,0,95,100,101,108,101,103,97,116,101,0,99,111,109,98,105,110,101,69,115,116,105,109,97,116,101,0,114,97,110,100,111,109,105,122,101,50,53,51,83,116,97,116,101,0,117,110,114,97,110,100,111,109,105,122,101,50,53,53,83,116,97,116,101,0,67,117,114,114,101,110,116,80,97,114,115,105,110,103,83,116,97,116,101,0,100,101,99,111,100,101,87,105,116,104,83,116,97,116,101,0,117,115,101,80,114,101,118,105,111,117,115,83,116,97,116,101,0,103,101,116,95,65,117,116,111,82,111,116,97,116,101,0,115,101,116,95,65,117,116,111,82,111,116,97,116,101,0,115,116,97,116,101,0,87,104,105,116,101,0,87,114,105,116,101,0,79,112,112,111,115,105,116,101,0,103,101,116,95,78,111,116,101,0,110,111,116,101,0,67,111,109,112,105,108,101,114,71,101,110,101,114,97,116,101,100,65,116,116,114,105,98,117,116,101,0,78,111,110,83,101,114,105,97,108,105,122,101,100,65,116,116,114,105,98,117,116,101,0,65,116,116,114,105,98,117,116,101,85,115,97,103,101,65,116,116,114,105,98,117,116,101,0,68,101,98,117,103,103,97,98,108,101,65,116,116,114,105,98,117,116,101,0,66,114,111,119,115,97,98,108,101,65,116,116,114,105,98,117,116,101,0,83,101,114,105,97,108,105,122,97,98,108,101,65,116,116,114,105,98,117,116,101,0,79,98,115,111,108,101,116,101,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,84,114,97,100,101,109,97,114,107,65,116,116,114,105,98,117,116,101,0,84,97,114,103,101,116,70,114,97,109,101,119,111,114,107,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,70,105,108,101,86,101,114,115,105,111,110,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,68,101,115,99,114,105,112,116,105,111,110,65,116,116,114,105,98,117,116,101,0,68,101,102,97,117,108,116,77,101,109,98,101,114,65,116,116,114,105,98,117,116,101,0,70,108,97,103,115,65,116,116,114,105,98,117,116,101,0,67,111,109,112,105,108,97,116,105,111,110,82,101,108,97,120,97,116,105,111,110,115,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,80,114,111,100,117,99,116,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,67,111,112,121,114,105,103,104,116,65,116,116,114,105,98,117,116,101,0,67,76,83,67,111,109,112,108,105,97,110,116,65,116,116,114,105,98,117,116,101,0,80,97,114,97,109,65,114,114,97,121,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,67,111,109,112,97,110,121,65,116,116,114,105,98,117,116,101,0,82,117,110,116,105,109,101,67,111,109,112,97,116,105,98,105,108,105,116,121,65,116,116,114,105,98,117,116,101,0,109,97,107,101,65,98,115,111,108,117,116,101,0,83,66,121,116,101,0,114,101,97,100,66,121,116,101,0,115,101,99,111,110,100,66,121,116,101,0,87,114,105,116,101,66,121,116,101,0,102,105,114,115,116,66,121,116,101,0,112,97,114,115,101,69,67,73,86,97,108,117,101,0,84,86,97,108,117,101,0,103,101,116,95,86,97,108,117,101,0,115,101,116,95,86,97,108,117,101,0,103,101,116,68,101,99,111,100,101,100,86,97,108,117,101,0,103,101,116,67,108,111,115,101,115,116,68,101,99,111,100,101,100,86,97,108,117,101,0,102,105,110,100,86,97,108,117,101,0,103,101,116,68,101,99,111,100,101,100,67,111,100,101,119,111,114,100,86,97,108,117,101,0,66,97,114,99,111,100,101,86,97,108,117,101,0,98,97,114,99,111,100,101,86,97,108,117,101,0,103,101,116,82,101,109,97,105,110,105,110,103,86,97,108,117,101,0,114,101,109,97,105,110,105,110,103,86,97,108,117,101,0,118,105,110,67,104,97,114,86,97,108,117,101,0,112,97,114,115,101,70,105,110,100,101,114,86,97,108,117,101,0,103,101,116,95,72,97,115,86,97,108,117,101,0,103,101,116,95,69,67,66,108,111,99,107,115,86,97,108,117,101,0,95,101,99,66,108,111,99,107,115,86,97,108,117,101,0,84,114,121,71,101,116,86,97,108,117,101,0,103,101,116,86,97,108,117,101,0,115,101,116,86,97,108,117,101,0,103,101,116,66,105,116,86,97,108,117,101,0,100,105,115,112,108,97,121,82,101,115,117,108,116,86,97,108,117,101,0,103,101,116,67,104,97,114,97,99,116,101,114,83,101,116,69,67,73,66,121,86,97,108,117,101,0,103,101,116,69,67,73,66,121,86,97,108,117,101,0,97,112,112,101,110,100,75,101,121,86,97,108,117,101,0,107,101,121,86,97,108,117,101,0,116,111,80,114,105,109,97,114,121,86,97,108,117,101,0,102,105,110,100,65,73,118,97,108,117,101,0,103,101,116,82,83,83,118,97,108,117,101,0,98,108,117,101,0,103,101,116,78,101,103,97,116,105,118,101,0,112,114,105,109,105,116,105,118,101,0,80,111,115,105,116,105,118,101,0,82,101,109,111,118,101,0,100,114,97,119,66,117,108,108,115,69,121,101,0,103,101,116,95,83,105,122,101,0,115,101,116,95,83,105,122,101,0,118,97,114,105,97,98,108,101,70,105,101,108,100,83,105,122,101,0,102,105,101,108,100,83,105,122,101,0,99,111,100,101,119,111,114,100,83,105,122,101,0,108,117,109,105,110,97,110,99,101,83,105,122,101,0,103,101,116,95,69,115,116,105,109,97,116,101,100,77,111,100,117,108,101,83,105,122,101,0,101,115,116,105,109,97,116,101,100,77,111,100,117,108,101,83,105,122,101,0,99,97,108,99,117,108,97,116,101,77,111,100,117,108,101,83,105,122,101,0,111,118,101,114,97,108,108,69,115,116,77,111,100,117,108,101,83,105,122,101,0,110,101,119,77,111,100,117,108,101,83,105,122,101,0,109,111,100,117,108,101,83,105,122,101,0,97,105,83,105,122,101,0,67,104,117,110,107,83,105,122,101,0,103,101,116,95,77,105,110,83,105,122,101,0,115,101,116,95,77,105,110,83,105,122,101,0,109,105,110,83,105,122,101,0,108,97,115,116,67,104,97,114,83,105,122,101,0,119,101,105,103,104,116,83,105,122,101,0,105,110,105,116,83,105,122,101,0,103,101,116,95,70,111,110,116,83,105,122,101,0,115,101,116,95,70,111,110,116,83,105,122,101,0,68,101,102,97,117,108,116,70,111,110,116,83,105,122,101,0,102,111,110,116,83,105,122,101,0,103,101,116,95,82,111,119,83,105,122,101,0,114,111,119,83,105,122,101,0,103,101,116,95,77,97,120,83,105,122,101,0,115,101,116,95,77,97,120,83,105,122,101,0,109,97,120,83,105,122,101,0,109,97,116,114,105,120,83,105,122,101,0,109,111,100,117,108,101,115,105,122,101,0,109,115,105,122,101,0,73,110,100,101,120,79,102,0,98,117,102,102,0,98,117,102,0,65,100,100,84,97,103,0,90,88,105,110,103,0,83,121,115,116,101,109,46,84,104,114,101,97,100,105,110,103,0,83,121,115,116,101,109,46,84,101,120,116,46,69,110,99,111,100,105,110,103,0,103,117,101,115,115,69,110,99,111,100,105,110,103,0,71,101,116,69,110,99,111,100,105,110,103,0,103,101,116,69,110,99,111,100,105,110,103,0,115,101,116,69,110,99,111,100,105,110,103,0,103,101,116,95,78,101,119,69,110,99,111,100,105,110,103,0,110,101,119,69,110,99,111,100,105,110,103,0,101,110,99,111,100,105,110,103,0,67,101,105,108,105,110,103,0,105,115,82,101,109,97,105,110,105,110,103,0,114,101,109,97,105,110,105,110,103,0,83,121,115,116,101,109,46,82,117,110,116,105,109,101,46,86,101,114,115,105,111,110,105,110,103,0,90,88,105,110,103,46,82,101,110,100,101,114,105,110,103,0,110,117,109,66,105,116,115,68,105,102,102,101,114,105,110,103,0,112,97,114,115,101,69,120,116,101,110,115,105,111,110,53,83,116,114,105,110,103,0,101,110,100,83,116,114,105,110,103,0,115,111,117,114,99,101,83,116,114,105,110,103,0,112,97,114,115,101,68,97,116,101,84,105,109,101,83,116,114,105,110,103,0,100,97,116,101,84,105,109,101,83,116,114,105,110,103,0,71,101,116,67,104,97,114,115,70,114,111,109,83,116,114,105,110,103,0,112,97,114,115,101,69,120,116,101,110,115,105,111,110,83,116,114,105,110,103,0,100,117,114,97,116,105,111,110,83,116,114,105,110,103,0,98,117,105,108,100,84,111,83,116,114,105,110,103,0,116,111,83,116,114,105,110,103,0,110,117,109,98,101,114,83,116,114,105,110,103,0,71,101,116,83,116,114,105,110,103,0,117,110,115,101,116,83,116,114,105,110,103,0,114,101,115,117,108,116,83,116,114,105,110,103,0,115,116,97,114,116,83,116,114,105,110,103,0,103,101,116,78,101,119,83,116,114,105,110,103,0,110,101,119,83,116,114,105,110,103,0,105,110,118,101,114,116,101,100,66,105,110,97,114,121,83,116,114,105,110,103,0,84,111,66,105,110,97,114,121,83,116,114,105,110,103,0,83,117,98,115,116,114,105,110,103,0,108,111,103,0,103,101,116,95,79,114,103,0,111,114,103,0,109,115,103,0,73,66,97,114,99,111,100,101,87,114,105,116,101,114,83,118,103,0,114,101,97,100,85,116,97,104,0,117,116,97,104,0,66,105,110,97,114,121,83,101,97,114,99,104,0,105,115,65,108,112,104,97,84,111,54,52,54,84,111,65,108,112,104,97,76,97,116,99,104,0,105,115,78,117,109,101,114,105,99,84,111,65,108,112,104,97,78,117,109,101,114,105,99,76,97,116,99,104,0,105,115,65,108,112,104,97,79,114,54,52,54,84,111,78,117,109,101,114,105,99,76,97,116,99,104,0,98,101,115,116,77,97,116,99,104,0,117,110,101,115,99,97,112,101,66,97,99,107,115,108,97,115,104,0,77,97,116,104,0,103,101,116,95,87,105,100,116,104,0,115,101,116,95,87,105,100,116,104,0,103,101,116,83,121,109,98,111,108,68,97,116,97,87,105,100,116,104,0,100,97,116,97,87,105,100,116,104,0,115,117,98,87,105,100,116,104,0,103,101,116,77,105,110,67,111,100,101,119,111,114,100,87,105,100,116,104,0,109,105,110,67,111,100,101,119,111,114,100,87,105,100,116,104,0,103,101,116,77,97,120,67,111,100,101,119,111,114,100,87,105,100,116,104,0,109,97,120,67,111,100,101,119,111,114,100,87,105,100,116,104,0,110,97,114,114,111,119,76,105,110,101,87,105,100,116,104,0,103,101,116,95,84,104,117,109,98,110,97,105,108,87,105,100,116,104,0,103,101,116,83,121,109,98,111,108,87,105,100,116,104,0,103,101,116,77,105,110,87,105,100,116,104,0,114,101,113,87,105,100,116,104,0,98,97,114,87,105,100,116,104,0,99,97,108,99,117,108,97,116,101,65,118,101,114,97,103,101,67,111,117,110,116,101,114,87,105,100,116,104,0,97,118,101,114,97,103,101,67,111,117,110,116,101,114,87,105,100,116,104,0,103,101,116,77,97,120,87,105,100,116,104,0,109,97,120,87,105,100,116,104,0,109,97,116,114,105,120,87,105,100,116,104,0,119,105,100,116,104,0,103,101,116,80,111,115,116,67,111,100,101,50,76,101,110,103,116,104,0,103,101,116,95,76,101,110,103,116,104,0,115,101,116,95,76,101,110,103,116,104,0,112,97,116,116,101,114,110,76,101,110,103,116,104,0,112,105,120,101,108,66,97,114,76,101,110,103,116,104,0,99,111,117,110,116,101,114,76,101,110,103,116,104,0,83,101,116,76,101,110,103,116,104,0,108,101,110,103,116,104,0,69,110,100,115,87,105,116,104,0,83,116,97,114,116,115,87,105,116,104,0,99,117,114,114,101,110,116,68,101,112,116,104,0,115,101,116,68,105,115,97,98,108,101,69,99,105,0,100,105,115,97,98,108,101,69,99,105,0,101,99,105,0,105,115,79,110,108,121,68,111,117,98,108,101,66,121,116,101,75,97,110,106,105,0,119,109,105,0,103,101,116,95,65,98,115,111,108,117,116,101,85,114,105,0,117,114,105,0,90,88,105,110,103,46,77,117,108,116,105,0,102,105,110,100,77,117,108,116,105,0,100,101,116,101,99,116,77,117,108,116,105,0,111,98,106,0,65,115,121,110,99,67,97,108,108,98,97,99,107,0,103,101,116,95,82,101,115,117,108,116,80,111,105,110,116,67,97,108,108,98,97,99,107,0,114,101,115,117,108,116,80,111,105,110,116,67,97,108,108,98,97,99,107,0,99,97,108,108,98,97,99,107,0,108,101,102,116,84,111,112,66,108,97,99,107,0,98,108,97,99,107,0,116,97,98,108,101,49,67,104,101,99,107,0,116,97,98,108,101,50,67,104,101,99,107,0,112,97,114,115,101,73,115,111,73,101,99,54,52,54,66,108,111,99,107,0,99,114,101,97,116,101,69,67,67,66,108,111,99,107,0,112,97,114,115,101,65,108,112,104,97,66,108,111,99,107,0,68,97,116,97,66,108,111,99,107,0,112,97,114,115,101,78,117,109,101,114,105,99,66,108,111,99,107,0,103,101,116,68,97,116,97,76,101,110,103,116,104,70,111,114,73,110,116,101,114,108,101,97,118,101,100,66,108,111,99,107,0,103,101,116,69,114,114,111,114,76,101,110,103,116,104,70,111,114,73,110,116,101,114,108,101,97,118,101,100,66,108,111,99,107,0,116,104,114,101,115,104,111,108,100,66,108,111,99,107,0,110,117,109,69,67,66,121,116,101,115,73,110,66,108,111,99,107,0,110,117,109,68,97,116,97,66,121,116,101,115,73,110,66,108,111,99,107,0,110,117,109,69,99,66,121,116,101,115,73,110,66,108,111,99,107,0,100,101,99,111,100,101,77,97,99,114,111,66,108,111,99,107,0,103,101,116,95,69,67,67,111,100,101,119,111,114,100,115,80,101,114,66,108,111,99,107,0,101,99,67,111,100,101,119,111,114,100,115,80,101,114,66,108,111,99,107,0,99,97,108,99,117,108,97,116,101,84,104,114,101,115,104,111,108,100,70,111,114,66,108,111,99,107,0,83,101,101,107,0,115,101,116,66,117,108,107,0,103,101,116,95,68,97,116,97,77,97,115,107,0,100,97,116,97,77,97,115,107,0,114,101,109,97,115,107,0,105,115,87,104,105,116,101,86,101,114,116,105,99,97,108,0,99,114,111,115,115,67,104,101,99,107,86,101,114,116,105,99,97,108,0,76,111,99,97,108,0,98,117,105,108,100,77,111,110,111,109,105,97,108,0,109,117,108,116,105,112,108,121,66,121,77,111,110,111,109,105,97,108,0,84,114,105,97,108,0,114,101,115,101,116,69,110,99,111,100,101,114,83,105,103,110,97,108,0,111,114,100,105,110,97,108,0,99,114,111,115,115,67,104,101,99,107,68,105,97,103,111,110,97,108,0,102,111,117,110,100,80,97,116,116,101,114,110,68,105,97,103,111,110,97,108,0,90,88,105,110,103,46,80,68,70,52,49,55,46,73,110,116,101,114,110,97,108,0,90,88,105,110,103,46,65,122,116,101,99,46,73,110,116,101,114,110,97,108,0,90,88,105,110,103,46,81,114,67,111,100,101,46,73,110,116,101,114,110,97,108,0,90,88,105,110,103,46,77,117,108,116,105,46,81,114,67,111,100,101,46,73,110,116,101,114,110,97,108,0,90,88,105,110,103,46,77,97,120,105,99,111,100,101,46,73,110,116,101,114,110,97,108,0,90,88,105,110,103,46,68,97,116,97,109,97,116,114,105,120,46,73,110,116,101,114,110,97,108,0,97,112,112,108,121,77,97,115,107,80,101,110,97,108,116,121,82,117,108,101,49,73,110,116,101,114,110,97,108,0,100,101,99,111,100,101,73,110,116,101,114,110,97,108,0,115,113,117,97,114,101,84,111,81,117,97,100,114,105,108,97,116,101,114,97,108,0,113,117,97,100,114,105,108,97,116,101,114,97,108,84,111,81,117,97,100,114,105,108,97,116,101,114,97,108,0,114,101,118,101,114,115,101,72,111,114,105,122,111,110,116,97,108,0,105,115,87,104,105,116,101,72,111,114,105,122,111,110,116,97,108,0,99,114,111,115,115,67,104,101,99,107,72,111,114,105,122,111,110,116,97,108,0,105,115,72,111,114,105,122,111,110,116,97,108,0,104,111,114,105,122,111,110,116,97,108,0,111,114,105,103,105,110,97,108,83,116,97,116,101,67,111,117,110,116,84,111,116,97,108,0,111,112,95,71,114,101,97,116,101,114,84,104,97,110,79,114,69,113,117,97,108,0,111,112,95,76,101,115,115,84,104,97,110,79,114,69,113,117,97,108,0,83,109,97,108,108,101,114,79,114,69,113,117,97,108,0,71,114,101,97,116,101,114,79,114,69,113,117,97,108,0,118,97,108,0,83,121,115,116,101,109,46,67,111,108,108,101,99,116,105,111,110,115,46,79,98,106,101,99,116,77,111,100,101,108,0,83,121,115,116,101,109,46,67,111,109,112,111,110,101,110,116,77,111,100,101,108,0,103,101,116,95,69,67,76,101,118,101,108,0,115,101,116,95,69,67,76,101,118,101,108,0,98,97,114,99,111,100,101,69,67,76,101,118,101,108,0,101,99,76,101,118,101,108,0,101,110,99,111,100,101,72,105,103,104,76,101,118,101,108,0,80,68,70,52,49,55,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,0,103,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,0,115,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,0,103,101,116,82,101,99,111,109,109,101,110,100,101,100,77,105,110,105,109,117,109,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,0,103,101,116,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,0,101,114,114,111,114,67,111,114,114,101,99,116,105,111,110,76,101,118,101,108,0,103,101,116,69,67,66,108,111,99,107,115,70,111,114,76,101,118,101,108,0,101,110,99,111,100,101,76,111,119,76,101,118,101,108,0,102,97,105,108,0,101,109,97,105,108,0,114,101,110,100,101,114,84,104,117,109,98,110,97,105,108,0,77,97,115,107,85,116,105,108,0,77,97,116,114,105,120,85,116,105,108,0,122,120,105,110,103,46,112,111,114,116,97,98,108,101,46,100,108,108,0,65,112,112,101,110,100,68,97,114,107,67,101,108,108,0,70,105,108,108,0,102,105,108,108,0,69,113,117,97,108,115,79,114,78,117,108,108,0,101,113,117,97,108,115,79,114,78,117,108,108,0,104,97,115,104,78,111,116,78,117,108,108,0,115,121,109,98,111,108,0,99,111,108,0,77,101,109,111,114,121,83,116,114,101,97,109,0,103,101,116,95,73,116,101,109,0,115,101,116,95,73,116,101,109,0,105,116,101,109,0,83,121,115,116,101,109,0,114,117,110,69,117,99,108,105,100,101,97,110,65,108,103,111,114,105,116,104,109,0,109,105,110,68,105,109,0,109,97,120,68,105,109,0,84,114,105,109,0,116,114,105,109,0,103,101,116,95,70,114,111,109,0,115,101,116,95,70,114,111,109,0,102,114,111,109,0,98,111,116,116,111,109,0,99,114,101,97,116,101,84,114,97,110,115,102,111,114,109,0,80,101,114,115,112,101,99,116,105,118,101,84,114,97,110,115,102,111,114,109,0,116,114,97,110,115,102,111,114,109,0,100,111,117,98,108,101,65,110,100,67,114,111,115,115,83,117,109,0,103,101,116,66,105,116,67,111,117,110,116,83,117,109,0,69,110,117,109,0,99,104,101,99,107,83,116,97,110,100,97,114,100,85,80,67,69,65,78,67,104,101,99,107,115,117,109,0,103,101,116,83,116,97,110,100,97,114,100,85,80,67,69,65,78,67,104,101,99,107,115,117,109,0,99,104,101,99,107,79,110,101,67,104,101,99,107,115,117,109,0,99,104,101,99,107,67,104,101,99,107,115,117,109,0,101,120,116,101,110,115,105,111,110,67,104,101,99,107,115,117,109,0,84,111,66,111,111,108,101,97,110,0,111,112,95,71,114,101,97,116,101,114,84,104,97,110,0,111,112,95,76,101,115,115,84,104,97,110,0,84,105,109,101,83,112,97,110,0,105,115,98,110,0,84,101,110,0,103,101,116,95,72,105,100,100,101,110,0,115,101,116,95,72,105,100,100,101,110,0,104,105,100,100,101,110,0,103,114,101,101,110,0,116,114,97,110,115,105,116,105,111,110,115,66,101,116,119,101,101,110,0,102,108,105,112,87,104,101,110,0,119,104,101,110,0,103,101,116,95,84,111,107,101,110,0,83,105,109,112,108,101,84,111,107,101,110,0,66,105,110,97,114,121,83,104,105,102,116,84,111,107,101,110,0,116,111,107,101,110,0,108,101,110,0,103,101,116,95,70,110,99,49,67,111,100,101,119,111,114,100,73,115,87,114,105,116,116,101,110,0,115,101,116,95,70,110,99,49,67,111,100,101,119,111,114,100,73,115,87,114,105,116,116,101,110,0,115,116,97,114,116,70,114,111,109,69,118,101,110,0,115,101,116,95,78,117,109,98,101,114,83,105,103,110,0,115,105,103,110,0,67,97,108,99,117,108,97,116,101,67,104,101,99,107,115,117,109,76,117,104,110,0,77,105,110,0,83,101,101,107,79,114,105,103,105,110,0,103,101,116,95,77,97,114,103,105,110,0,115,101,116,95,77,97,114,103,105,110,0,115,105,100,101,115,77,97,114,103,105,110,0,103,101,116,95,68,101,102,97,117,108,116,77,97,114,103,105,110,0,109,97,114,103,105,110,0,109,105,110,0,74,111,105,110,0,101,110,99,111,100,101,67,111,109,112,114,101,115,115,101,100,71,116,105,110,0,118,105,110,0,105,115,86,97,108,105,100,66,97,114,99,111,100,101,67,111,108,117,109,110,0,98,97,114,99,111,100,101,67,111,108,117,109,110,0,109,105,110,67,111,108,117,109,110,0,115,101,116,82,111,119,78,117,109,98,101,114,65,115,82,111,119,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,0,103,101,116,82,111,119,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,0,108,101,102,116,82,111,119,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,0,114,105,103,104,116,82,111,119,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,0,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,82,111,119,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,0,114,111,119,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,0,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,67,111,108,117,109,110,0,100,101,116,101,99,116,105,111,110,82,101,115,117,108,116,67,111,108,117,109,110,0,97,100,106,117,115,116,67,111,100,101,119,111,114,100,83,116,97,114,116,67,111,108,117,109,110,0,99,111,100,101,119,111,114,100,83,116,97,114,116,67,111,108,117,109,110,0,103,101,116,83,116,97,114,116,67,111,108,117,109,110,0,115,116,97,114,116,67,111,108,117,109,110,0,109,97,120,67,111,108,117,109,110,0,99,111,108,117,109,110,0,101,120,116,114,97,99,116,68,97,116,97,82,101,103,105,111,110,0,102,105,110,100,65,108,105,103,110,109,101,110,116,73,110,82,101,103,105,111,110,0,115,101,116,82,101,103,105,111,110,0,111,112,95,68,105,118,105,115,105,111,110,0,103,101,116,95,68,105,109,101,110,115,105,111,110,0,102,105,120,101,100,68,105,109,101,110,115,105,111,110,0,99,111,109,112,117,116,101,68,105,109,101,110,115,105,111,110,0,108,111,110,103,68,105,109,101,110,115,105,111,110,0,103,101,116,80,114,111,118,105,115,105,111,110,97,108,86,101,114,115,105,111,110,70,111,114,68,105,109,101,110,115,105,111,110,0,103,101,116,68,105,109,101,110,115,105,111,110,0,115,104,111,114,116,68,105,109,101,110,115,105,111,110,0,100,105,109,101,110,115,105,111,110,0,103,101,116,95,86,101,114,115,105,111,110,0,115,101,116,95,86,101,114,115,105,111,110,0,114,101,97,100,86,101,114,115,105,111,110,0,112,97,114,115,101,100,86,101,114,115,105,111,110,0,114,101,99,111,109,109,101,110,100,86,101,114,115,105,111,110,0,99,104,111,111,115,101,86,101,114,115,105,111,110,0,103,101,116,95,81,114,86,101,114,115,105,111,110,0,115,101,116,95,81,114,86,101,114,115,105,111,110,0,103,101,116,95,68,105,109,101,110,115,105,111,110,70,111,114,86,101,114,115,105,111,110,0,118,101,114,115,105,111,110,0,77,117,108,116,105,112,108,105,99,97,116,105,111,110,0,103,101,116,95,76,111,99,97,116,105,111,110,0,99,117,114,114,101,110,116,76,111,99,97,116,105,111,110,0,108,111,99,97,116,105,111,110,0,103,101,116,95,68,101,102,97,117,108,116,69,110,99,111,100,97,116,105,111,110,0,115,101,116,95,68,101,102,97,117,108,116,69,110,99,111,100,97,116,105,111,110,0,100,101,102,97,117,108,116,69,110,99,111,100,97,116,105,111,110,0,111,112,95,85,110,97,114,121,78,101,103,97,116,105,111,110,0,103,101,116,95,80,114,111,110,117,110,99,105,97,116,105,111,110,0,112,114,111,110,117,110,99,105,97,116,105,111,110,0,77,111,100,117,108,97,114,69,120,112,111,110,101,110,116,105,97,116,105,111,110,0,103,101,116,68,101,99,111,100,101,100,73,110,102,111,114,109,97,116,105,111,110,0,100,101,99,111,100,101,100,73,110,102,111,114,109,97,116,105,111,110,0,112,97,114,115,101,73,110,102,111,114,109,97,116,105,111,110,0,100,101,99,111,100,101,86,101,114,115,105,111,110,73,110,102,111,114,109,97,116,105,111,110,0,114,101,97,100,70,111,114,109,97,116,73,110,102,111,114,109,97,116,105,111,110,0,100,111,68,101,99,111,100,101,70,111,114,109,97,116,73,110,102,111,114,109,97,116,105,111,110,0,100,101,99,111,100,101,70,111,114,109,97,116,73,110,102,111,114,109,97,116,105,111,110,0,103,101,116,73,110,102,111,114,109,97,116,105,111,110,0,114,97,119,73,110,102,111,114,109,97,116,105,111,110,0,105,110,102,111,114,109,97,116,105,111,110,0,115,116,114,105,110,103,82,101,112,114,101,115,101,110,116,97,116,105,111,110,0,103,101,116,82,111,116,97,116,105,111,110,0,105,115,80,117,110,99,116,117,97,116,105,111,110,0,83,121,115,116,101,109,46,71,108,111,98,97,108,105,122,97,116,105,111,110,0,103,101,116,95,67,111,109,112,97,99,116,105,111,110,0,115,101,116,95,67,111,109,112,97,99,116,105,111,110,0,110,117,109,101,114,105,99,67,111,109,112,97,99,116,105,111,110,0,98,121,116,101,67,111,109,112,97,99,116,105,111,110,0,115,101,116,67,111,109,112,97,99,116,105,111,110,0,100,101,99,111,100,101,84,101,120,116,67,111,109,112,97,99,116,105,111,110,0,116,101,120,116,67,111,109,112,97,99,116,105,111,110,0,99,111,109,112,97,99,116,105,111,110,0,111,112,95,83,117,98,116,114,97,99,116,105,111,110,0,103,101,116,95,86,101,104,105,99,108,101,73,100,101,110,116,105,102,105,101,114,83,101,99,116,105,111,110,0,115,101,116,95,86,101,104,105,99,108,101,73,100,101,110,116,105,102,105,101,114,83,101,99,116,105,111,110,0,118,101,104,105,99,108,101,73,100,101,110,116,105,102,105,101,114,83,101,99,116,105,111,110,0,103,101,116,95,86,101,104,105,99,108,101,68,101,115,99,114,105,112,116,111,114,83,101,99,116,105,111,110,0,115,101,116,95,86,101,104,105,99,108,101,68,101,115,99,114,105,112,116,111,114,83,101,99,116,105,111,110,0,118,101,104,105,99,108,101,68,101,115,99,114,105,112,116,111,114,83,101,99,116,105,111,110,0,83,121,115,116,101,109,46,82,101,102,108,101,99,116,105,111,110,0,71,114,111,117,112,67,111,108,108,101,99,116,105,111,110,0,97,112,112,108,121,77,105,114,114,111,114,101,100,67,111,114,114,101,99,116,105,111,110,0,80,68,70,52,49,55,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,103,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,115,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,103,101,110,101,114,97,116,101,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,101,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,111,112,95,65,100,100,105,116,105,111,110,0,98,97,115,101,50,53,54,67,111,100,101,119,111,114,100,80,111,115,105,116,105,111,110,0,99,111,100,101,119,111,114,100,80,111,115,105,116,105,111,110,0,99,104,101,99,107,80,111,115,105,116,105,111,110,0,105,110,105,116,105,97,108,80,111,115,105,116,105,111,110,0,105,110,105,116,105,97,108,66,117,102,102,101,114,80,111,115,105,116,105,111,110,0,103,101,116,80,111,115,105,116,105,111,110,0,115,101,116,80,111,115,105,116,105,111,110,0,105,110,99,114,101,109,101,110,116,80,111,115,105,116,105,111,110,0,103,101,116,95,78,101,119,80,111,115,105,116,105,111,110,0,115,101,116,95,78,101,119,80,111,115,105,116,105,111,110,0,110,101,119,80,111,115,105,116,105,111,110,0,112,111,115,105,116,105,111,110,0,65,114,105,116,104,109,101,116,105,99,69,120,99,101,112,116,105,111,110,0,78,111,116,83,117,112,112,111,114,116,101,100,69,120,99,101,112,116,105,111,110,0,73,110,100,101,120,79,117,116,79,102,82,97,110,103,101,69,120,99,101,112,116,105,111,110,0,65,114,103,117,109,101,110,116,78,117,108,108,69,120,99,101,112,116,105,111,110,0,73,110,118,97,108,105,100,79,112,101,114,97,116,105,111,110,69,120,99,101,112,116,105,111,110,0,68,105,118,105,100,101,66,121,90,101,114,111,69,120,99,101,112,116,105,111,110,0,82,101,97,100,101,114,69,120,99,101,112,116,105,111,110,0,66,105,103,73,110,116,101,103,101,114,69,120,99,101,112,116,105,111,110,0,105,110,110,101,114,69,120,99,101,112,116,105,111,110,0,87,114,105,116,101,114,69,120,99,101,112,116,105,111,110,0,70,111,114,109,97,116,69,120,99,101,112,116,105,111,110,0,65,114,103,117,109,101,110,116,69,120,99,101,112,116,105,111,110,0,103,101,116,95,68,101,115,99,114,105,112,116,105,111,110,0,100,101,115,99,114,105,112,116,105,111,110,0,103,101,116,95,78,101,116,119,111,114,107,69,110,99,114,121,112,116,105,111,110,0,115,101,116,95,78,101,116,119,111,114,107,69,110,99,114,121,112,116,105,111,110,0,110,101,116,119,111,114,107,69,110,99,114,121,112,116,105,111,110,0,103,101,116,95,67,104,101,99,107,115,117,109,80,111,114,116,105,111,110,0,115,101,116,95,67,104,101,99,107,115,117,109,80,111,114,116,105,111,110,0,99,104,101,99,107,115,117,109,80,111,114,116,105,111,110,0,90,88,105,110,103,46,67,111,109,109,111,110,0,80,68,70,52,49,55,67,111,109,109,111,110,0,90,88,105,110,103,46,67,111,109,109,111,110,46,82,101,101,100,83,111,108,111,109,111,110,0,83,116,114,105,110,103,67,111,109,112,97,114,105,115,111,110,0,105,115,79,100,100,80,97,116,116,101,114,110,0,111,100,100,80,97,116,116,101,114,110,0,102,105,110,100,69,110,100,80,97,116,116,101,114,110,0,97,112,112,101,110,100,80,97,116,116,101,114,110,0,102,105,110,100,71,117,97,114,100,80,97,116,116,101,114,110,0,102,105,110,100,83,116,97,114,116,71,117,97,114,100,80,97,116,116,101,114,110,0,114,101,99,111,114,100,80,97,116,116,101,114,110,0,116,111,78,97,114,114,111,119,87,105,100,101,80,97,116,116,101,114,110,0,118,97,108,105,100,97,116,101,80,97,116,116,101,114,110,0,102,105,110,100,82,111,119,115,87,105,116,104,80,97,116,116,101,114,110,0,103,101,116,95,77,97,115,107,80,97,116,116,101,114,110,0,115,101,116,95,77,97,115,107,80,97,116,116,101,114,110,0,105,115,86,97,108,105,100,77,97,115,107,80,97,116,116,101,114,110,0,99,104,111,111,115,101,77,97,115,107,80,97,116,116,101,114,110,0,109,97,115,107,80,97,116,116,101,114,110,0,102,105,110,100,65,115,116,101,114,105,115,107,80,97,116,116,101,114,110,0,101,109,98,101,100,86,101,114,116,105,99,97,108,83,101,112,97,114,97,116,105,111,110,80,97,116,116,101,114,110,0,101,109,98,101,100,72,111,114,105,122,111,110,116,97,108,83,101,112,97,114,97,116,105,111,110,80,97,116,116,101,114,110,0,101,109,98,101,100,80,111,115,105,116,105,111,110,68,101,116,101,99,116,105,111,110,80,97,116,116,101,114,110,0,98,117,105,108,100,70,117,110,99,116,105,111,110,80,97,116,116,101,114,110,0,116,111,80,97,116,116,101,114,110,0,103,101,116,95,70,105,110,100,101,114,80,97,116,116,101,114,110,0,115,101,116,95,70,105,110,100,101,114,80,97,116,116,101,114,110,0,102,105,110,100,70,105,110,100,101,114,80,97,116,116,101,114,110,0,112,97,114,115,101,70,111,117,110,100,70,105,110,100,101,114,80,97,116,116,101,114,110,0,105,115,70,105,110,100,101,114,80,97,116,116,101,114,110,0,114,105,103,104,116,70,105,110,100,101,114,80,97,116,116,101,114,110,0,102,105,110,100,101,114,80,97,116,116,101,114,110,0,111,116,104,101,114,80,97,116,116,101,114,110,0,65,108,105,103,110,109,101,110,116,80,97,116,116,101,114,110,0,97,108,105,103,110,109,101,110,116,80,97,116,116,101,114,110,0,101,109,98,101,100,80,111,115,105,116,105,111,110,65,100,106,117,115,116,109,101,110,116,80,97,116,116,101,114,110,0,102,105,110,100,83,116,97,114,116,80,97,116,116,101,114,110,0,115,116,97,114,116,80,97,116,116,101,114,110,0,112,97,116,116,101,114,110,0,116,111,82,101,116,117,114,110,0,109,97,120,87,104,105,116,101,82,117,110,0,115,105,122,101,79,102,66,108,97,99,107,87,104,105,116,101,66,108,97,99,107,82,117,110,0,85,110,107,110,111,119,110,0,103,101,116,95,84,111,0,115,101,116,95,84,111,0,97,112,112,101,110,100,84,111,0,67,111,109,112,97,114,101,84,111,0,105,115,66,101,116,116,101,114,84,104,97,110,79,114,69,113,117,97,108,84,111,0,67,111,112,121,84,111,0,103,101,116,95,71,101,111,0,103,101,111,0,97,112,112,101,110,100,77,111,100,101,73,110,102,111,0,84,105,109,101,90,111,110,101,73,110,102,111,0,101,109,98,101,100,84,121,112,101,73,110,102,111,0,67,117,108,116,117,114,101,73,110,102,111,0,97,112,112,101,110,100,76,101,110,103,116,104,73,110,102,111,0,103,101,116,95,83,121,109,98,111,108,73,110,102,111,0,117,112,100,97,116,101,83,121,109,98,111,108,73,110,102,111,0,114,101,115,101,116,83,121,109,98,111,108,73,110,102,111,0,115,121,109,98,111,108,73,110,102,111,0,109,97,121,98,101,69,109,98,101,100,86,101,114,115,105,111,110,73,110,102,111,0,112,114,111,99,101,115,115,70,105,110,100,101,114,80,97,116,116,101,114,110,73,110,102,111,0,112,97,114,115,101,100,70,111,114,109,97,116,73,110,102,111,0,102,111,114,109,97,116,73,110,102,111,0,105,110,102,111,0,80,68,70,52,49,55,65,115,112,101,99,116,82,97,116,105,111,0,103,101,116,95,65,115,112,101,99,116,82,97,116,105,111,0,115,101,116,95,65,115,112,101,99,116,82,97,116,105,111,0,97,115,112,101,99,116,82,97,116,105,111,0,77,111,100,117,108,111,0,103,101,116,95,90,101,114,111,0,115,101,116,95,90,101,114,111,0,103,101,116,95,105,115,90,101,114,111,0,122,101,114,111,0,115,116,114,105,112,77,97,105,108,116,111,0,84,119,111,0,120,48,112,0,121,48,112,0,120,49,112,0,121,49,112,0,120,50,112,0,121,50,112,0,120,51,112,0,121,51,112,0,99,111,100,101,84,97,98,108,101,77,97,112,0,102,111,114,109,97,116,77,97,112,0,99,97,112,0,98,97,114,99,111,100,101,66,105,116,109,97,112,0,99,117,114,114,101,110,116,66,105,116,109,97,112,0,66,105,110,97,114,121,66,105,116,109,97,112,0,109,97,121,98,101,87,114,97,112,0,105,115,88,49,50,84,101,114,109,83,101,112,0,102,105,110,100,82,111,119,83,107,105,112,0,102,108,105,112,0,103,101,116,95,84,105,109,101,115,116,97,109,112,0,115,101,116,95,84,105,109,101,115,116,97,109,112,0,116,105,109,101,115,116,97,109,112,0,100,105,109,101,110,115,105,111,110,84,111,112,0,108,105,115,116,84,111,112,0,99,114,111,112,0,115,116,111,112,0,95,108,111,111,107,117,112,0,71,114,111,117,112,0,101,120,112,0,100,113,0,97,100,100,66,97,114,0,103,101,116,78,101,120,116,83,101,99,111,110,100,66,97,114,0,103,101,116,95,77,111,100,101,108,89,101,97,114,0,115,101,116,95,77,111,100,101,108,89,101,97,114,0,109,111,100,101,108,89,101,97,114,0,67,108,101,97,114,0,99,108,101,97,114,0,116,111,65,108,112,104,97,78,117,109,101,114,105,99,67,104,97,114,0,68,101,99,111,100,101,100,67,104,97,114,0,101,110,100,67,104,97,114,0,111,117,116,115,105,100,101,67,104,97,114,0,101,110,99,111,100,101,67,104,97,114,0,99,104,101,99,107,67,104,97,114,0,112,97,116,116,101,114,110,84,111,67,104,97,114,0,117,112,100,97,116,101,83,116,97,116,101,70,111,114,67,104,97,114,0,117,112,100,97,116,101,83,116,97,116,101,76,105,115,116,70,111,114,67,104,97,114,0,103,101,116,95,76,101,102,116,67,104,97,114,0,115,101,116,95,76,101,102,116,67,104,97,114,0,108,101,102,116,67,104,97,114,0,97,100,100,66,105,110,97,114,121,83,104,105,102,116,67,104,97,114,0,103,101,116,95,82,105,103,104,116,67,104,97,114,0,115,101,116,95,82,105,103,104,116,67,104,97,114,0,114,105,103,104,116,67,104,97,114,0,103,101,116,95,67,117,114,114,101,110,116,67,104,97,114,0,115,99,97,108,97,114,0,99,111,114,114,101,99,116,84,111,112,82,105,103,104,116,82,101,99,116,97,110,103,117,108,97,114,0,97,108,108,111,119,82,101,99,116,97,110,103,117,108,97,114,0,114,101,99,116,97,110,103,117,108,97,114,0,103,101,116,95,78,117,109,98,101,114,0,115,101,116,95,78,117,109,98,101,114,0,103,101,116,95,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,83,101,113,117,101,110,99,101,78,117,109,98,101,114,0,115,101,116,95,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,83,101,113,117,101,110,99,101,78,117,109,98,101,114,0,68,105,118,105,100,101,66,121,66,105,103,78,117,109,98,101,114,0,103,101,116,84,114,97,99,107,105,110,103,78,117,109,98,101,114,0,103,101,116,95,83,101,113,117,101,110,116,105,97,108,78,117,109,98,101,114,0,115,101,116,95,83,101,113,117,101,110,116,105,97,108,78,117,109,98,101,114,0,115,101,113,117,101,110,116,105,97,108,78,117,109,98,101,114,0,103,101,116,95,86,101,114,115,105,111,110,78,117,109,98,101,114,0,103,101,116,86,101,114,115,105,111,110,78,117,109,98,101,114,0,118,101,114,115,105,111,110,78,117,109,98,101,114,0,103,101,116,86,101,114,115,105,111,110,70,111,114,78,117,109,98,101,114,0,103,101,116,67,111,100,101,119,111,114,100,66,117,99,107,101,116,78,117,109,98,101,114,0,68,105,118,105,100,101,66,121,79,110,101,68,105,103,105,116,78,117,109,98,101,114,0,103,101,116,95,76,111,116,78,117,109,98,101,114,0,108,111,116,78,117,109,98,101,114,0,105,115,67,111,108,111,110,70,111,108,108,111,119,101,100,66,121,80,111,114,116,78,117,109,98,101,114,0,103,101,116,95,82,111,119,78,117,109,98,101,114,0,115,101,116,95,82,111,119,78,117,109,98,101,114,0,73,115,86,97,108,105,100,82,111,119,78,117,109,98,101,114,0,103,101,116,95,72,97,115,86,97,108,105,100,82,111,119,78,117,109,98,101,114,0,114,111,119,73,110,100,105,99,97,116,111,114,82,111,119,78,117,109,98,101,114,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,0,114,111,119,78,117,109,98,101,114,0,110,117,109,98,101,114,0,65,100,100,72,101,97,100,101,114,0,69,65,78,49,51,82,101,97,100,101,114,0,101,97,110,49,51,82,101,97,100,101,114,0,67,111,100,101,57,51,82,101,97,100,101,114,0,82,83,83,49,52,82,101,97,100,101,114,0,80,68,70,52,49,55,82,101,97,100,101,114,0,67,111,100,101,49,50,56,82,101,97,100,101,114,0,69,65,78,56,82,101,97,100,101,114,0,67,111,100,101,51,57,82,101,97,100,101,114,0,85,80,67,65,82,101,97,100,101,114,0,73,77,66,82,101,97,100,101,114,0,77,117,108,116,105,70,111,114,109,97,116,79,110,101,68,82,101,97,100,101,114,0,85,80,67,69,82,101,97,100,101,114,0,73,84,70,82,101,97,100,101,114,0,77,83,73,82,101,97,100,101,114,0,77,117,108,116,105,70,111,114,109,97,116,85,80,67,69,65,78,82,101,97,100,101,114,0,65,98,115,116,114,97,99,116,82,83,83,82,101,97,100,101,114,0,103,101,116,95,82,101,97,100,101,114,0,65,122,116,101,99,82,101,97,100,101,114,0,82,83,83,69,120,112,97,110,100,101,100,82,101,97,100,101,114,0,81,82,67,111,100,101,82,101,97,100,101,114,0,77,97,120,105,67,111,100,101,82,101,97,100,101,114,0,73,66,97,114,99,111,100,101,82,101,97,100,101,114,0,71,101,110,101,114,105,99,77,117,108,116,105,112,108,101,66,97,114,99,111,100,101,82,101,97,100,101,114,0,81,82,67,111,100,101,77,117,108,116,105,82,101,97,100,101,114,0,101,120,116,101,110,115,105,111,110,82,101,97,100,101,114,0,67,111,100,97,66,97,114,82,101,97,100,101,114,0,77,117,108,116,105,70,111,114,109,97,116,82,101,97,100,101,114,0,66,121,81,117,97,100,114,97,110,116,82,101,97,100,101,114,0,68,97,116,97,77,97,116,114,105,120,82,101,97,100,101,114,0,114,101,97,100,101,114,0,112,97,114,115,101,70,105,101,108,100,68,105,118,105,100,101,114,0,73,70,111,114,109,97,116,80,114,111,118,105,100,101,114,0,83,116,114,105,110,103,66,117,105,108,100,101,114,0,66,105,116,65,114,114,97,121,66,117,105,108,100,101,114,0,82,101,110,100,101,114,0,77,117,108,116,105,70,105,110,100,101,114,80,97,116,116,101,114,110,70,105,110,100,101,114,0,65,108,105,103,110,109,101,110,116,80,97,116,116,101,114,110,70,105,110,100,101,114,0,114,101,109,97,105,110,100,101,114,0,65,110,121,65,73,68,101,99,111,100,101,114,0,71,101,110,101,114,97,108,65,112,112,73,100,68,101,99,111,100,101,114,0,65,98,115,116,114,97,99,116,69,120,112,97,110,100,101,100,68,101,99,111,100,101,114,0,80,68,70,52,49,55,67,111,100,101,119,111,114,100,68,101,99,111,100,101,114,0,99,114,101,97,116,101,68,101,99,111,100,101,114,0,80,68,70,52,49,55,83,99,97,110,110,105,110,103,68,101,99,111,100,101,114,0,103,101,116,71,101,110,101,114,97,108,68,101,99,111,100,101,114,0,103,101,110,101,114,97,108,68,101,99,111,100,101,114,0,82,101,101,100,83,111,108,111,109,111,110,68,101,99,111,100,101,114,0,114,115,68,101,99,111,100,101,114,0,103,101,116,68,101,99,111,100,101,114,0,65,73,48,49,119,101,105,103,104,116,68,101,99,111,100,101,114,0,65,73,48,49,51,50,48,120,68,101,99,111,100,101,114,0,65,73,48,49,51,120,48,120,68,101,99,111,100,101,114,0,65,73,48,49,51,120,48,120,49,120,68,101,99,111,100,101,114,0,65,73,48,49,51,57,50,120,68,101,99,111,100,101,114,0,65,73,48,49,51,57,51,120,68,101,99,111,100,101,114,0,65,73,48,49,100,101,99,111,100,101,114,0,65,73,48,49,51,49,48,51,100,101,99,111,100,101,114,0,90,88,105,110,103,46,68,97,116,97,109,97,116,114,105,120,46,69,110,99,111,100,101,114,0,67,52,48,69,110,99,111,100,101,114,0,88,49,50,69,110,99,111,100,101,114,0,66,97,115,101,50,53,54,69,110,99,111,100,101,114,0,65,83,67,73,73,69,110,99,111,100,101,114,0,103,101,116,95,69,110,99,111,100,101,114,0,115,101,116,95,69,110,99,111,100,101,114,0,80,68,70,52,49,55,72,105,103,104,76,101,118,101,108,69,110,99,111,100,101,114,0,98,105,116,77,97,116,114,105,120,70,114,111,109,69,110,99,111,100,101,114,0,82,101,101,100,83,111,108,111,109,111,110,69,110,99,111,100,101,114,0,69,100,105,102,97,99,116,69,110,99,111,100,101,114,0,103,101,116,69,110,99,111,100,101,114,0,84,101,120,116,69,110,99,111,100,101,114,0,101,110,99,111,100,101,114,0,103,101,116,95,84,114,121,72,97,114,100,101,114,0,115,101,116,95,84,114,121,72,97,114,100,101,114,0,100,101,99,111,100,101,82,111,119,83,116,114,105,110,103,66,117,102,102,101,114,0,102,114,97,103,109,101,110,116,66,117,102,102,101,114,0,98,117,102,102,101,114,0,66,97,115,101,49,48,66,105,103,73,110,116,101,103,101,114,0,103,101,116,95,73,110,115,116,97,110,116,77,101,115,115,101,110,103,101,114,0,105,110,115,116,97,110,116,77,101,115,115,101,110,103,101,114,0,103,101,116,95,79,116,104,101,114,0,115,101,116,95,79,116,104,101,114,0,111,116,104,101,114,0,108,111,111,107,117,112,67,111,117,110,116,114,121,73,100,101,110,116,105,102,105,101,114,0,114,101,115,117,108,116,84,114,97,105,108,101,114,0,68,105,118,105,100,101,66,121,66,105,103,78,117,109,98,101,114,83,109,97,108,108,101,114,0,115,101,116,71,114,105,100,83,97,109,112,108,101,114,0,68,101,102,97,117,108,116,71,114,105,100,83,97,109,112,108,101,114,0,110,101,119,71,114,105,100,83,97,109,112,108,101,114,0,103,114,105,100,83,97,109,112,108,101,114,0,68,105,103,105,116,67,111,110,116,97,105,110,101,114,0,101,109,98,101,100,68,97,114,107,68,111,116,65,116,76,101,102,116,66,111,116,116,111,109,67,111,114,110,101,114,0,105,115,65,108,112,104,97,85,112,112,101,114,0,84,111,85,112,112,101,114,0,103,101,116,95,82,111,119,67,111,117,110,116,85,112,112,101,114,0,115,101,116,95,82,111,119,67,111,117,110,116,85,112,112,101,114,0,103,101,116,95,82,101,110,100,101,114,101,114,0,115,101,116,95,82,101,110,100,101,114,101,114,0,80,105,120,101,108,68,97,116,97,82,101,110,100,101,114,101,114,0,83,118,103,82,101,110,100,101,114,101,114,0,82,97,119,82,101,110,100,101,114,101,114,0,70,105,101,108,100,80,97,114,115,101,114,0,68,101,99,111,100,101,100,66,105,116,83,116,114,101,97,109,80,97,114,115,101,114,0,85,82,73,82,101,115,117,108,116,80,97,114,115,101,114,0,73,83,66,78,82,101,115,117,108,116,80,97,114,115,101,114,0,86,73,78,82,101,115,117,108,116,80,97,114,115,101,114,0,85,82,76,84,79,82,101,115,117,108,116,80,97,114,115,101,114,0,83,77,83,84,79,77,77,83,84,79,82,101,115,117,108,116,80,97,114,115,101,114,0,83,77,84,80,82,101,115,117,108,116,80,97,114,115,101,114,0,83,77,83,77,77,83,82,101,115,117,108,116,80,97,114,115,101,114,0,65,100,100,114,101,115,115,66,111,111,107,65,85,82,101,115,117,108,116,80,97,114,115,101,114,0,86,67,97,114,100,82,101,115,117,108,116,80,97,114,115,101,114,0,66,105,122,99,97,114,100,82,101,115,117,108,116,80,97,114,115,101,114,0,87,105,102,105,82,101,115,117,108,116,80,97,114,115,101,114,0,84,101,108,82,101,115,117,108,116,80,97,114,115,101,114,0,65,100,100,114,101,115,115,66,111,111,107,68,111,67,111,77,111,82,101,115,117,108,116,80,97,114,115,101,114,0,66,111,111,107,109,97,114,107,68,111,67,111,77,111,82,101,115,117,108,116,80,97,114,115,101,114,0,69,109,97,105,108,68,111,67,111,77,111,82,101,115,117,108,116,80,97,114,115,101,114,0,65,98,115,116,114,97,99,116,68,111,67,111,77,111,82,101,115,117,108,116,80,97,114,115,101,114,0,71,101,111,82,101,115,117,108,116,80,97,114,115,101,114,0,69,109,97,105,108,65,100,100,114,101,115,115,82,101,115,117,108,116,80,97,114,115,101,114,0,69,120,112,97,110,100,101,100,80,114,111,100,117,99,116,82,101,115,117,108,116,80,97,114,115,101,114,0,86,69,118,101,110,116,82,101,115,117,108,116,80,97,114,115,101,114,0,99,114,101,97,116,101,66,105,116,77,97,116,114,105,120,80,97,114,115,101,114,0,112,97,114,115,101,114,0,71,114,101,97,116,101,114,0,100,101,99,111,100,101,68,97,116,97,67,104,97,114,97,99,116,101,114,0,98,97,99,107,116,114,97,99,107,79,110,101,67,104,97,114,97,99,116,101,114,0,105,108,108,101,103,97,108,67,104,97,114,97,99,116,101,114,0,103,101,116,67,104,97,114,97,99,116,101,114,0,69,65,78,49,51,87,114,105,116,101,114,0,67,111,100,101,57,51,87,114,105,116,101,114,0,80,68,70,52,49,55,87,114,105,116,101,114,0,67,111,100,101,49,50,56,87,114,105,116,101,114,0,69,65,78,56,87,114,105,116,101,114,0,67,111,100,101,51,57,87,114,105,116,101,114,0,85,80,67,65,87,114,105,116,101,114,0,85,80,67,69,87,114,105,116,101,114,0,73,84,70,87,114,105,116,101,114,0,77,83,73,87,114,105,116,101,114,0,85,80,67,69,65,78,87,114,105,116,101,114,0,115,117,98,87,114,105,116,101,114,0,65,122,116,101,99,87,114,105,116,101,114,0,81,82,67,111,100,101,87,114,105,116,101,114,0,79,110,101,68,105,109,101,110,115,105,111,110,97,108,67,111,100,101,87,114,105,116,101,114,0,73,66,97,114,99,111,100,101,87,114,105,116,101,114,0,67,111,100,97,66,97,114,87,114,105,116,101,114,0,77,117,108,116,105,70,111,114,109,97,116,87,114,105,116,101,114,0,68,97,116,97,77,97,116,114,105,120,87,114,105,116,101,114,0,80,108,101,115,115,101,121,87,114,105,116,101,114,0,104,97,110,100,108,101,80,111,115,115,105,98,108,101,67,101,110,116,101,114,0,102,105,110,100,67,111,114,110,101,114,70,114,111,109,67,101,110,116,101,114,0,112,67,101,110,116,101,114,0,103,101,116,77,97,116,114,105,120,67,101,110,116,101,114,0,99,101,110,116,101,114,0,66,105,116,67,111,110,118,101,114,116,101,114,0,105,115,65,108,112,104,97,76,111,119,101,114,0,84,111,76,111,119,101,114,0,103,101,116,95,82,111,119,67,111,117,110,116,76,111,119,101,114,0,115,101,116,95,82,111,119,67,111,117,110,116,76,111,119,101,114,0,80,111,119,101,114,0,84,111,116,97,108,66,105,116,115,73,110,76,97,121,101,114,0,116,111,116,97,108,66,105,116,115,73,110,76,97,121,101,114,0,103,101,116,95,79,114,103,97,110,105,122,101,114,0,111,114,103,97,110,105,122,101,114,0,72,121,98,114,105,100,66,105,110,97,114,105,122,101,114,0,103,101,116,95,67,114,101,97,116,101,66,105,110,97,114,105,122,101,114,0,100,101,102,97,117,108,116,67,114,101,97,116,101,66,105,110,97,114,105,122,101,114,0,99,114,101,97,116,101,66,105,110,97,114,105,122,101,114,0,71,108,111,98,97,108,72,105,115,116,111,103,114,97,109,66,105,110,97,114,105,122,101,114,0,98,105,110,97,114,105,122,101,114,0,69,120,112,97,110,100,101,100,80,97,105,114,0,100,101,99,111,100,101,80,97,105,114,0,66,108,111,99,107,80,97,105,114,0,117,112,100,97,116,101,83,116,97,116,101,70,111,114,80,97,105,114,0,117,112,100,97,116,101,83,116,97,116,101,76,105,115,116,70,111,114,80,97,105,114,0,108,101,102,116,80,97,105,114,0,114,105,103,104,116,80,97,105,114,0,102,105,110,100,78,101,120,116,80,97,105,114,0,114,101,116,114,105,101,118,101,78,101,120,116,80,97,105,114,0,112,97,105,114,0,103,101,116,67,111,108,111,114,0,115,116,97,114,116,67,111,108,111,114,0,99,111,108,111,114,0,114,115,66,108,111,99,107,69,114,114,111,114,0,105,115,77,105,114,114,111,114,0,115,101,116,77,105,114,114,111,114,0,109,105,114,114,111,114,0,101,114,114,111,114,76,111,99,97,116,111,114,0,108,105,110,101,83,101,112,97,114,97,116,111,114,0,115,101,112,97,114,97,116,111,114,0,70,117,114,116,104,101,115,116,70,114,111,109,65,118,101,114,97,103,101,67,111,109,112,97,114,97,116,111,114,0,77,111,100,117,108,101,83,105,122,101,67,111,109,112,97,114,97,116,111,114,0,67,101,110,116,101,114,67,111,109,112,97,114,97,116,111,114,0,82,101,115,117,108,116,80,111,105,110,116,115,65,110,100,84,114,97,110,115,105,116,105,111,110,115,67,111,109,112,97,114,97,116,111,114,0,73,69,110,117,109,101,114,97,116,111,114,0,83,121,115,116,101,109,46,67,111,108,108,101,99,116,105,111,110,115,46,73,69,110,117,109,101,114,97,98,108,101,46,71,101,116,69,110,117,109,101,114,97,116,111,114,0,98,117,105,108,100,71,101,110,101,114,97,116,111,114,0,103,101,110,101,114,97,116,111,114,0,101,114,114,111,114,69,118,97,108,117,97,116,111,114,0,65,99,116,105,118,97,116,111,114,0,46,99,116,111,114,0,97,108,108,111,119,97,110,99,101,70,97,99,116,111,114,0,46,99,99,116,111,114,0,90,88,105,110,103,46,67,111,109,109,111,110,46,68,101,116,101,99,116,111,114,0,77,111,110,111,99,104,114,111,109,101,82,101,99,116,97,110,103,108,101,68,101,116,101,99,116,111,114,0,87,104,105,116,101,82,101,99,116,97,110,103,108,101,68,101,116,101,99,116,111,114,0,114,101,99,116,97,110,103,108,101,68,101,116,101,99,116,111,114,0,77,117,108,116,105,68,101,116,101,99,116,111,114,0,118,101,99,116,111,114,0,120,111,114,0,98,111,111,108,65,114,114,0,115,116,114,0,103,101,116,95,66,67,67,115,0,115,101,116,95,66,67,67,115,0,103,101,116,95,67,67,115,0,115,101,116,95,67,67,115,0,103,101,116,95,85,110,99,111,109,109,111,110,65,73,115,0,117,110,99,111,109,109,111,110,65,73,115,0,65,73,48,49,65,110,100,79,116,104,101,114,65,73,115,0,103,101,116,95,85,82,76,115,0,103,101,116,95,86,105,97,115,0,115,101,116,95,86,105,97,115,0,118,105,97,115,0,65,98,115,0,98,99,99,115,0,83,121,115,116,101,109,46,68,105,97,103,110,111,115,116,105,99,115,0,110,117,109,69,67,87,111,114,100,115,0,103,101,116,78,117,109,98,101,114,79,102,69,67,67,111,100,101,87,111,114,100,115,0,103,101,116,95,67,111,100,101,87,111,114,100,115,0,115,101,116,95,67,111,100,101,87,111,114,100,115,0,115,111,117,114,99,101,67,111,100,101,87,111,114,100,115,0,101,114,114,111,114,67,111,114,114,101,99,116,105,111,110,67,111,100,101,87,111,114,100,115,0,103,101,116,67,111,100,101,87,111,114,100,115,0,103,101,110,101,114,97,116,101,67,104,101,99,107,87,111,114,100,115,0,116,111,116,97,108,87,111,114,100,115,0,109,101,115,115,97,103,101,83,105,122,101,73,110,87,111,114,100,115,0,98,105,116,115,84,111,87,111,114,100,115,0,103,101,116,95,69,67,67,111,100,101,119,111,114,100,115,0,103,101,116,95,84,111,116,97,108,69,67,67,111,100,101,119,111,114,100,115,0,110,117,109,69,67,67,111,100,101,119,111,114,100,115,0,103,101,116,95,67,111,100,101,119,111,114,100,115,0,115,101,116,95,67,111,100,101,119,111,114,100,115,0,103,101,116,95,68,97,116,97,67,111,100,101,119,111,114,100,115,0,103,101,116,95,78,117,109,68,97,116,97,67,111,100,101,119,111,114,100,115,0,110,117,109,68,97,116,97,67,111,100,101,119,111,114,100,115,0,100,97,116,97,67,111,100,101,119,111,114,100,115,0,101,99,67,111,100,101,119,111,114,100,115,0,103,101,116,78,117,109,98,101,114,79,102,80,97,100,67,111,100,101,119,111,114,100,115,0,114,101,97,100,67,111,100,101,119,111,114,100,115,0,100,101,99,111,100,101,67,111,100,101,119,111,114,100,115,0,119,114,105,116,101,67,111,100,101,119,111,114,100,115,0,103,101,116,95,84,111,116,97,108,67,111,100,101,119,111,114,100,115,0,103,101,116,84,111,116,97,108,67,111,100,101,119,111,114,100,115,0,116,111,116,97,108,67,111,100,101,119,111,114,100,115,0,102,117,108,108,67,111,100,101,119,111,114,100,115,0,101,110,99,111,100,101,84,111,67,111,100,101,119,111,114,100,115,0,101,114,114,111,114,67,111,100,101,119,111,114,100,115,0,114,101,109,111,118,101,73,110,99,111,114,114,101,99,116,67,111,100,101,119,111,114,100,115,0,114,97,119,67,111,100,101,119,111,114,100,115,0,99,111,100,101,119,111,114,100,115,0,102,105,110,100,86,101,114,116,105,99,101,115,0,83,121,115,116,101,109,46,82,117,110,116,105,109,101,46,67,111,109,112,105,108,101,114,83,101,114,118,105,99,101,115,0,110,101,119,76,117,109,105,110,97,110,99,101,115,0,108,117,109,105,110,97,110,99,101,115,0,115,105,100,101,115,0,100,101,99,111,100,101,65,108,108,67,111,100,101,115,0,68,101,98,117,103,103,105,110,103,77,111,100,101,115,0,102,105,110,100,69,114,114,111,114,77,97,103,110,105,116,117,100,101,115,0,103,101,116,95,65,116,116,101,110,100,101,101,115,0,97,116,116,101,110,100,101,101,115,0,99,101,110,116,101,114,69,100,103,101,115,0,114,97,110,103,101,115,0,99,111,117,110,116,80,114,101,99,101,100,105,110,103,66,97,99,107,115,108,97,115,104,101,115,0,99,111,100,101,84,97,98,108,101,115,0,110,117,109,77,111,100,117,108,101,115,0,78,117,109,98,101,114,83,116,121,108,101,115,0,103,101,116,95,78,97,109,101,115,0,101,110,99,111,100,105,110,103,78,97,109,101,115,0,102,111,114,109,97,116,78,97,109,101,115,0,103,101,116,95,78,105,99,107,110,97,109,101,115,0,110,105,99,107,110,97,109,101,115,0,116,105,109,101,115,0,103,101,116,95,80,104,111,110,101,84,121,112,101,115,0,112,104,111,110,101,84,121,112,101,115,0,103,101,116,95,69,109,97,105,108,84,121,112,101,115,0,101,109,97,105,108,84,121,112,101,115,0,116,111,84,121,112,101,115,0,103,101,116,95,65,100,100,114,101,115,115,84,121,112,101,115,0,97,100,100,114,101,115,115,84,121,112,101,115,0,103,101,116,95,69,114,97,115,117,114,101,115,0,115,101,116,95,69,114,97,115,117,114,101,115,0,101,114,97,115,117,114,101,115,0,103,101,116,95,65,100,100,114,101,115,115,101,115,0,97,100,100,114,101,115,115,101,115,0,115,105,109,112,108,105,102,121,83,116,97,116,101,115,0,115,116,97,116,101,115,0,103,101,116,95,86,101,104,105,99,108,101,65,116,116,114,105,98,117,116,101,115,0,115,101,116,95,86,101,104,105,99,108,101,65,116,116,114,105,98,117,116,101,115,0,118,101,104,105,99,108,101,65,116,116,114,105,98,117,116,101,115,0,103,101,110,101,114,97,116,101,69,67,66,121,116,101,115,0,105,110,116,101,114,108,101,97,118,101,87,105,116,104,69,67,66,121,116,101,115,0,103,101,116,95,68,97,116,97,66,121,116,101,115,0,110,117,109,68,97,116,97,66,121,116,101,115,0,100,97,116,97,66,121,116,101,115,0,101,99,66,121,116,101,115,0,97,112,112,101,110,100,78,117,109,101,114,105,99,66,121,116,101,115,0,97,112,112,101,110,100,65,108,112,104,97,110,117,109,101,114,105,99,66,121,116,101,115,0,97,112,112,101,110,100,66,121,116,101,115,0,99,111,100,101,119,111,114,100,66,121,116,101,115,0,97,112,112,101,110,100,75,97,110,106,105,66,121,116,101,115,0,110,117,109,84,111,116,97,108,66,121,116,101,115,0,110,117,109,66,121,116,101,115,0,103,101,116,95,83,105,122,101,73,110,66,121,116,101,115,0,103,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,66,121,116,101,115,0,101,114,114,111,114,67,111,114,114,101,99,116,105,111,110,66,121,116,101,115,0,116,111,66,121,116,101,115,0,112,97,114,115,101,84,119,111,66,121,116,101,115,0,71,101,116,66,121,116,101,115,0,97,112,112,101,110,100,56,66,105,116,66,121,116,101,115,0,103,114,97,121,49,54,82,97,119,66,121,116,101,115,0,103,101,116,95,82,97,119,66,121,116,101,115,0,115,101,116,95,82,97,119,66,121,116,101,115,0,114,103,98,82,97,119,66,121,116,101,115,0,121,117,121,118,82,97,119,66,121,116,101,115,0,117,121,118,121,82,97,119,66,121,116,101,115,0,114,97,119,66,121,116,101,115,0,98,105,110,97,114,121,66,121,116,101,115,0,98,121,116,101,115,0,103,101,116,95,86,97,108,117,101,115,0,99,114,101,97,116,101,68,101,99,111,100,101,114,82,101,115,117,108,116,70,114,111,109,65,109,98,105,103,117,111,117,115,86,97,108,117,101,115,0,99,97,108,99,117,108,97,116,101,77,105,110,77,97,120,86,97,108,117,101,115,0,97,109,98,105,103,117,111,117,115,73,110,100,101,120,86,97,108,117,101,115,0,116,111,80,114,105,109,97,114,121,86,97,108,117,101,115,0,118,97,108,117,101,115,0,100,101,115,116,105,110,97,116,105,111,110,73,110,100,101,120,101,115,0,97,109,98,105,103,117,111,117,115,73,110,100,101,120,101,115,0,115,116,114,105,110,103,115,0,69,118,101,110,116,65,114,103,115,0,97,114,103,115,0,99,114,99,48,87,105,100,116,104,115,0,99,114,99,49,87,105,100,116,104,115,0,101,110,100,87,105,100,116,104,115,0,116,101,114,109,105,110,97,116,105,111,110,87,105,100,116,104,115,0,110,117,109,98,101,114,87,105,100,116,104,115,0,115,116,97,114,116,87,105,100,116,104,115,0,119,105,100,116,104,115,0,103,101,116,95,65,108,108,111,119,101,100,76,101,110,103,116,104,115,0,115,101,116,95,65,108,108,111,119,101,100,76,101,110,103,116,104,115,0,103,101,116,95,84,105,99,107,115,0,103,101,116,69,67,66,108,111,99,107,115,0,110,117,109,82,83,66,108,111,99,107,115,0,110,98,68,97,116,97,66,108,111,99,107,115,0,103,101,116,68,97,116,97,66,108,111,99,107,115,0,101,99,66,108,111,99,107,115,0,112,97,114,115,101,66,108,111,99,107,115,0,103,101,116,95,78,117,109,66,108,111,99,107,115,0,103,101,116,95,68,97,116,97,98,108,111,99,107,115,0,115,101,116,95,68,97,116,97,98,108,111,99,107,115,0,103,101,116,95,78,98,68,97,116,97,98,108,111,99,107,115,0,115,101,116,95,78,98,68,97,116,97,98,108,111,99,107,115,0,110,98,68,97,116,97,98,108,111,99,107,115,0,100,97,116,97,98,108,111,99,107,115,0,97,98,111,117,116,69,113,117,97,108,115,0,103,101,116,95,80,105,120,101,108,115,0,115,101,116,95,80,105,120,101,108,115,0,112,105,120,101,108,115,0,103,101,116,95,69,109,97,105,108,115,0,101,109,97,105,108,115,0,82,83,83,85,116,105,108,115,0,83,116,114,105,110,103,85,116,105,108,115,0,77,97,116,104,85,116,105,108,115,0,103,101,116,95,77,105,110,67,111,108,115,0,109,105,110,67,111,108,115,0,103,101,116,95,77,97,120,67,111,108,115,0,109,97,120,67,111,108,115,0,115,121,109,98,111,108,115,0,103,101,116,95,78,117,109,99,111,108,115,0,110,117,109,99,111,108,115,0,117,114,108,115,0,102,105,110,100,77,105,110,105,109,117,109,115,0,99,104,101,99,107,67,104,101,99,107,115,117,109,115,0,97,114,114,97,121,67,111,110,116,97,105,110,115,0,99,111,109,98,105,110,115,0,109,105,110,115,0,103,101,116,83,121,109,98,111,108,83,105,122,101,67,111,108,117,109,110,115,0,115,121,109,98,111,108,83,105,122,101,67,111,108,117,109,110,115,0,103,101,116,68,97,116,97,82,101,103,105,111,110,83,105,122,101,67,111,108,117,109,110,115,0,100,97,116,97,82,101,103,105,111,110,83,105,122,101,67,111,108,117,109,110,115,0,110,117,109,67,111,108,117,109,110,115,0,103,101,116,95,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,67,111,108,117,109,110,115,0,115,101,116,95,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,67,111,108,117,109,110,115,0,103,101,116,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,67,111,108,117,109,110,115,0,103,101,116,86,101,114,116,105,99,97,108,68,97,116,97,82,101,103,105,111,110,115,0,103,101,116,72,111,114,105,122,111,110,116,97,108,68,97,116,97,82,101,103,105,111,110,115,0,100,97,116,97,82,101,103,105,111,110,115,0,103,101,116,95,68,105,109,101,110,115,105,111,110,115,0,115,101,116,95,68,105,109,101,110,115,105,111,110,115,0,100,101,116,101,114,109,105,110,101,68,105,109,101,110,115,105,111,110,115,0,103,101,116,86,101,114,115,105,111,110,70,111,114,68,105,109,101,110,115,105,111,110,115,0,115,101,116,68,105,109,101,110,115,105,111,110,115,0,83,121,115,116,101,109,46,82,117,110,116,105,109,101,46,69,120,116,101,110,115,105,111,110,115,0,103,101,116,95,65,108,108,111,119,101,100,69,65,78,69,120,116,101,110,115,105,111,110,115,0,115,101,116,95,65,108,108,111,119,101,100,69,65,78,69,120,116,101,110,115,105,111,110,115,0,98,117,105,108,100,86,101,114,115,105,111,110,115,0,99,104,97,114,97,99,116,101,114,67,111,117,110,116,66,105,116,115,70,111,114,86,101,114,115,105,111,110,115,0,83,121,115,116,101,109,46,84,101,120,116,46,82,101,103,117,108,97,114,69,120,112,114,101,115,115,105,111,110,115,0,102,105,110,100,69,114,114,111,114,76,111,99,97,116,105,111,110,115,0,101,114,114,111,114,76,111,99,97,116,105,111,110,115,0,83,121,115,116,101,109,46,67,111,108,108,101,99,116,105,111,110,115,0,103,101,116,95,84,114,97,110,115,105,116,105,111,110,115,0,115,101,116,95,84,114,97,110,115,105,116,105,111,110,115,0,82,101,115,117,108,116,80,111,105,110,116,115,65,110,100,84,114,97,110,115,105,116,105,111,110,115,0,116,114,97,110,115,105,116,105,111,110,115,0,103,101,116,95,79,112,116,105,111,110,115,0,115,101,116,95,79,112,116,105,111,110,115,0,68,101,99,111,100,105,110,103,79,112,116,105,111,110,115,0,80,68,70,52,49,55,69,110,99,111,100,105,110,103,79,112,116,105,111,110,115,0,67,111,100,101,49,50,56,69,110,99,111,100,105,110,103,79,112,116,105,111,110,115,0,65,122,116,101,99,69,110,99,111,100,105,110,103,79,112,116,105,111,110,115,0,81,114,67,111,100,101,69,110,99,111,100,105,110,103,79,112,116,105,111,110,115,0,68,97,116,97,109,97,116,114,105,120,69,110,99,111,100,105,110,103,79,112,116,105,111,110,115,0,82,101,103,101,120,79,112,116,105,111,110,115,0,111,112,116,105,111,110,115,0,101,109,98,101,100,66,97,115,105,99,80,97,116,116,101,114,110,115,0,101,109,98,101,100,84,105,109,105,110,103,80,97,116,116,101,114,110,115,0,102,105,110,100,101,114,80,97,116,116,101,114,110,115,0,109,97,121,98,101,69,109,98,101,100,80,111,115,105,116,105,111,110,65,100,106,117,115,116,109,101,110,116,80,97,116,116,101,114,110,115,0,115,101,108,101,99,116,77,117,116,105,112,108,101,66,101,115,116,80,97,116,116,101,114,110,115,0,111,114,100,101,114,66,101,115,116,80,97,116,116,101,114,110,115,0,115,101,108,101,99,116,66,101,115,116,80,97,116,116,101,114,110,115,0,112,97,116,116,101,114,110,115,0,103,101,116,95,80,111,115,0,115,101,116,95,80,111,115,0,105,110,105,116,105,97,108,80,111,115,0,98,97,114,80,111,115,0,99,117,114,114,101,110,116,80,111,115,0,115,116,97,114,116,80,111,115,0,103,101,116,95,84,111,115,0,115,101,116,95,84,111,115,0,115,116,97,114,116,112,111,115,0,110,117,109,98,101,114,79,102,84,114,97,105,108,105,110,103,90,101,114,111,115,0,116,111,115,0,103,101,116,95,71,114,111,117,112,115,0,103,101,116,78,117,109,98,101,114,66,97,114,115,0,103,101,116,95,67,104,97,114,115,0,115,101,116,95,67,104,97,114,115,0,103,101,116,95,78,117,109,98,101,114,115,0,115,101,116,95,78,117,109,98,101,114,115,0,103,101,116,95,80,104,111,110,101,78,117,109,98,101,114,115,0,98,117,105,108,100,80,104,111,110,101,78,117,109,98,101,114,115,0,112,104,111,110,101,78,117,109,98,101,114,115,0,97,100,106,117,115,116,67,111,109,112,108,101,116,101,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,82,111,119,78,117,109,98,101,114,115,0,97,100,106,117,115,116,73,110,99,111,109,112,108,101,116,101,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,82,111,119,78,117,109,98,101,114,115,0,97,100,106,117,115,116,73,110,100,105,99,97,116,111,114,67,111,108,117,109,110,82,111,119,78,117,109,98,101,114,115,0,115,101,116,82,111,119,78,117,109,98,101,114,115,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,115,0,110,117,109,98,101,114,115,0,114,101,97,100,101,114,115,0,90,88,105,110,103,46,79,110,101,68,46,82,83,83,46,69,120,112,97,110,100,101,100,46,68,101,99,111,100,101,114,115,0,99,111,117,110,116,114,121,73,100,101,110,116,105,102,105,101,114,115,0,103,101,116,66,117,108,108,115,69,121,101,67,111,114,110,101,114,115,0,98,117,108,108,115,69,121,101,67,111,114,110,101,114,115,0,82,117,110,116,105,109,101,72,101,108,112,101,114,115,0,103,101,116,95,72,97,115,77,111,114,101,67,104,97,114,97,99,116,101,114,115,0,103,101,116,95,82,101,109,97,105,110,105,110,103,67,104,97,114,97,99,116,101,114,115,0,101,120,116,114,97,99,116,80,97,114,97,109,101,116,101,114,115,0,103,101,116,95,83,117,112,112,111,114,116,101,100,87,114,105,116,101,114,115,0,104,97,118,101,77,117,108,116,105,112,108,121,67,111,110,102,105,114,109,101,100,67,101,110,116,101,114,115,0,103,101,116,95,80,111,115,115,105,98,108,101,67,101,110,116,101,114,115,0,112,111,115,115,105,98,108,101,67,101,110,116,101,114,115,0,103,101,116,95,65,108,105,103,110,109,101,110,116,80,97,116,116,101,114,110,67,101,110,116,101,114,115,0,97,108,105,103,110,109,101,110,116,80,97,116,116,101,114,110,67,101,110,116,101,114,115,0,112,97,116,116,101,114,110,67,101,110,116,101,114,115,0,100,101,99,111,100,101,77,105,100,100,108,101,67,111,117,110,116,101,114,115,0,114,101,118,101,114,115,101,67,111,117,110,116,101,114,115,0,110,117,109,67,111,117,110,116,101,114,115,0,103,101,116,68,101,99,111,100,101,70,105,110,100,101,114,67,111,117,110,116,101,114,115,0,100,101,99,111,100,101,70,105,110,100,101,114,67,111,117,110,116,101,114,115,0,103,101,116,68,97,116,97,67,104,97,114,97,99,116,101,114,67,111,117,110,116,101,114,115,0,100,97,116,97,67,104,97,114,97,99,116,101,114,67,111,117,110,116,101,114,115,0,115,101,116,67,111,117,110,116,101,114,115,0,99,111,117,110,116,101,114,115,0,110,117,109,76,101,116,116,101,114,115,0,103,101,116,95,76,97,121,101,114,115,0,115,101,116,95,76,97,121,101,114,115,0,103,101,116,95,78,98,76,97,121,101,114,115,0,115,101,116,95,78,98,76,97,121,101,114,115,0,110,98,76,97,121,101,114,115,0,117,115,101,114,83,112,101,99,105,102,105,101,100,76,97,121,101,114,115,0,110,98,67,101,110,116,101,114,76,97,121,101,114,115,0,108,97,121,101,114,115,0,103,101,116,95,80,97,105,114,115,0,115,101,116,95,80,97,105,114,115,0,112,111,115,115,105,98,108,101,80,97,105,114,115,0,112,97,114,115,101,78,97,109,101,86,97,108,117,101,80,97,105,114,115,0,111,116,104,101,114,80,97,105,114,115,0,112,114,101,118,105,111,117,115,80,97,105,114,115,0,112,111,115,115,105,98,108,101,76,101,102,116,80,97,105,114,115,0,112,111,115,115,105,98,108,101,82,105,103,104,116,80,97,105,114,115,0,100,101,99,111,100,101,82,111,119,50,112,97,105,114,115,0,103,101,116,79,100,100,82,111,117,110,100,105,110,103,69,114,114,111,114,115,0,111,100,100,82,111,117,110,100,105,110,103,69,114,114,111,114,115,0,103,101,116,69,118,101,110,82,111,117,110,100,105,110,103,69,114,114,111,114,115,0,101,118,101,110,82,111,117,110,100,105,110,103,69,114,114,111,114,115,0,99,111,114,114,101,99,116,69,114,114,111,114,115,0,101,114,114,111,114,115,0,101,109,98,101,100,80,111,115,105,116,105,111,110,68,101,116,101,99,116,105,111,110,80,97,116,116,101,114,110,115,65,110,100,83,101,112,97,114,97,116,111,114,115,0,99,97,99,104,101,100,71,101,110,101,114,97,116,111,114,115,0,103,101,116,83,101,114,118,105,99,101,67,108,97,115,115,0,83,117,112,112,111,114,116,67,108,97,115,115,0,103,101,116,95,83,117,99,99,101,115,115,0,103,101,116,95,69,109,97,105,108,65,100,100,114,101,115,115,0,105,115,66,97,115,105,99,97,108,108,121,86,97,108,105,100,69,109,97,105,108,65,100,100,114,101,115,115,0,102,111,117,110,100,80,97,116,116,101,114,110,67,114,111,115,115,0,103,101,116,95,80,111,115,115,105,98,108,101,70,111,114,109,97,116,115,0,115,101,116,95,80,111,115,115,105,98,108,101,70,111,114,109,97,116,115,0,65,116,116,114,105,98,117,116,101,84,97,114,103,101,116,115,0,98,117,99,107,101,116,115,0,103,101,116,82,111,119,72,101,105,103,104,116,115,0,103,101,116,95,66,105,116,115,0,115,101,116,95,66,105,116,115,0,101,109,98,101,100,68,97,116,97,66,105,116,115,0,100,97,116,97,66,105,116,115,0,114,101,97,100,66,105,116,115,0,115,116,117,102,102,101,100,66,105,116,115,0,99,111,114,114,101,99,116,101,100,66,105,116,115,0,97,112,112,101,110,100,66,105,116,115,0,101,120,116,114,97,99,116,80,117,114,101,66,105,116,115,0,116,101,114,109,105,110,97,116,101,66,105,116,115,0,115,116,117,102,102,66,105,116,115,0,116,111,116,97,108,66,105,116,115,0,103,101,116,95,78,117,109,66,105,116,115,0,115,101,116,95,78,117,109,66,105,116,115,0,110,117,109,66,105,116,115,0,118,101,114,115,105,111,110,66,105,116,115,0,109,97,107,101,84,121,112,101,73,110,102,111,66,105,116,115,0,109,97,107,101,86,101,114,115,105,111,110,73,110,102,111,66,105,116,115,0,104,101,97,100,101,114,66,105,116,115,0,102,111,114,66,105,116,115,0,101,120,116,114,97,99,116,66,105,116,115,0,99,111,114,114,101,99,116,66,105,116,115,0,103,101,116,67,104,97,114,97,99,116,101,114,67,111,117,110,116,66,105,116,115,0,110,117,109,73,110,112,117,116,66,105,116,115,0,110,101,119,66,105,116,115,0,114,97,119,98,105,116,115,0,101,110,99,111,100,101,65,83,67,73,73,68,105,103,105,116,115,0,105,115,83,116,114,105,110,103,79,102,68,105,103,105,116,115,0,105,115,83,117,98,115,116,114,105,110,103,79,102,68,105,103,105,116,115,0,83,105,122,101,73,110,66,105,110,97,114,121,68,105,103,105,116,115,0,82,97,116,105,111,84,111,66,105,110,97,114,121,68,105,103,105,116,115,0,102,105,114,115,116,65,73,100,105,103,105,116,115,0,114,101,115,117,108,116,115,0,103,101,116,95,67,111,101,102,102,105,99,105,101,110,116,115,0,99,111,101,102,102,105,99,105,101,110,116,115,0,103,101,116,95,66,121,116,101,83,101,103,109,101,110,116,115,0,115,101,116,95,66,121,116,101,83,101,103,109,101,110,116,115,0,98,121,116,101,83,101,103,109,101,110,116,115,0,99,111,109,112,111,110,101,110,116,115,0,99,111,110,116,101,110,116,115,0,103,101,116,95,72,105,110,116,115,0,115,101,116,95,72,105,110,116,115,0,115,101,116,83,105,122,101,67,111,110,115,116,114,97,105,110,116,115,0,104,105,110,116,115,0,103,101,116,95,80,111,105,110,116,115,0,115,101,116,95,80,111,105,110,116,115,0,99,104,101,99,107,65,110,100,78,117,100,103,101,80,111,105,110,116,115,0,99,97,108,99,117,108,97,116,101,66,108,97,99,107,80,111,105,110,116,115,0,98,108,97,99,107,80,111,105,110,116,115,0,116,114,97,110,115,102,111,114,109,80,111,105,110,116,115,0,103,101,116,77,97,116,114,105,120,67,111,114,110,101,114,80,111,105,110,116,115,0,99,111,114,110,101,114,80,111,105,110,116,115,0,103,101,116,95,82,101,115,117,108,116,80,111,105,110,116,115,0,115,101,116,95,82,101,115,117,108,116,80,111,105,110,116,115,0,97,100,100,82,101,115,117,108,116,80,111,105,110,116,115,0,116,114,97,110,115,108,97,116,101,82,101,115,117,108,116,80,111,105,110,116,115,0,114,101,115,117,108,116,80,111,105,110,116,115,0,110,101,119,80,111,105,110,116,115,0,112,111,105,110,116,115,0,103,101,116,79,100,100,67,111,117,110,116,115,0,111,100,100,67,111,117,110,116,115,0,97,100,106,117,115,116,79,100,100,69,118,101,110,67,111,117,110,116,115,0,103,101,116,69,118,101,110,67,111,117,110,116,115,0,101,118,101,110,67,111,117,110,116,115,0,99,108,101,97,114,67,111,117,110,116,115,0,105,110,116,67,104,97,114,67,111,117,110,116,115,0,99,104,97,114,67,111,117,110,116,115,0,115,97,109,112,108,101,66,105,116,67,111,117,110,116,115,0,105,110,118,97,108,105,100,82,111,119,67,111,117,110,116,115,0,99,111,117,110,116,115,0,102,105,108,108,76,105,115,116,115,0,108,105,115,116,115,0,111,112,95,77,111,100,117,108,117,115,0,109,111,100,117,108,117,115,0,103,101,116,95,80,114,101,118,105,111,117,115,0,112,114,101,118,105,111,117,115,0,103,101,116,95,82,111,119,115,0,99,111,108,108,101,99,116,101,100,82,111,119,115,0,109,105,115,115,105,110,103,69,110,100,82,111,119,115,0,103,101,116,83,121,109,98,111,108,83,105,122,101,82,111,119,115,0,115,121,109,98,111,108,83,105,122,101,82,111,119,115,0,103,101,116,68,97,116,97,82,101,103,105,111,110,83,105,122,101,82,111,119,115,0,100,97,116,97,82,101,103,105,111,110,83,105,122,101,82,111,119,115,0,99,97,108,99,117,108,97,116,101,78,117,109,98,101,114,79,102,82,111,119,115,0,97,100,100,77,105,115,115,105,110,103,82,111,119,115,0,99,104,101,99,107,82,111,119,115,0,114,101,109,111,118,101,80,97,114,116,105,97,108,82,111,119,115,0,110,117,109,82,111,119,115,0,103,101,116,95,77,105,110,82,111,119,115,0,109,105,110,82,111,119,115,0,109,105,115,115,105,110,103,83,116,97,114,116,82,111,119,115,0,103,101,116,95,77,97,120,82,111,119,115,0,109,97,120,82,111,119,115,0,103,101,116,95,78,117,109,114,111,119,115,0,110,117,109,114,111,119,115,0,115,105,122,101,79,102,66,108,97,99,107,87,104,105,116,101,66,108,97,99,107,82,117,110,66,111,116,104,87,97,121,115,0,105,110,105,116,65,114,114,97,121,115,0,103,101,116,95,75,101,121,115,0,101,118,97,108,117,97,116,101,65,116,0,82,101,109,111,118,101,65,116,0,67,111,110,99,97,116,0,103,101,116,95,71,83,49,70,111,114,109,97,116,0,115,101,116,95,71,83,49,70,111,114,109,97,116,0,103,101,116,95,70,111,114,109,97,116,0,115,101,116,95,70,111,114,109,97,116,0,65,112,112,101,110,100,70,111,114,109,97,116,0,103,101,116,95,66,97,114,99,111,100,101,70,111,114,109,97,116,0,115,101,116,95,66,97,114,99,111,100,101,70,111,114,109,97,116,0,77,111,100,105,102,121,67,111,110,116,101,110,116,68,101,112,101,110,100,105,110,103,79,110,66,97,114,99,111,100,101,70,111,114,109,97,116,0,68,101,116,101,114,109,105,110,101,66,105,116,109,97,112,70,111,114,109,97,116,0,98,105,116,109,97,112,70,111,114,109,97,116,0,102,111,114,109,97,116,0,103,101,116,95,67,111,109,112,97,99,116,0,115,101,116,95,67,111,109,112,97,99,116,0,103,101,116,95,105,115,67,111,109,112,97,99,116,0,115,101,116,95,105,115,67,111,109,112,97,99,116,0,115,101,116,67,111,109,112,97,99,116,0,99,111,109,112,97,99,116,0,97,100,100,79,114,83,117,98,116,114,97,99,116,0,115,117,98,116,114,97,99,116,0,80,97,114,115,101,69,120,97,99,116,0,102,99,49,73,110,69,102,102,101,99,116,0,68,101,99,111,100,101,100,79,98,106,101,99,116,0,111,98,106,101,99,116,0,103,101,116,95,83,117,98,106,101,99,116,0,115,101,116,95,83,117,98,106,101,99,116,0,115,117,98,106,101,99,116,0,100,101,116,101,99,116,0,102,105,110,100,77,83,66,83,101,116,0,111,118,101,114,114,105,100,101,83,121,109,98,111,108,83,101,116,0,103,101,116,95,67,104,97,114,97,99,116,101,114,83,101,116,0,115,101,116,95,67,104,97,114,97,99,116,101,114,83,101,116,0,97,100,100,67,104,97,114,97,99,116,101,114,83,101,116,0,103,101,116,78,101,120,116,83,101,116,0,103,101,116,95,65,108,112,104,97,98,101,116,0,116,97,114,103,101,116,0,103,101,116,95,66,117,99,107,101,116,0,115,101,116,95,66,117,99,107,101,116,0,98,117,99,107,101,116,0,119,114,105,116,101,78,101,120,116,84,114,105,112,108,101,116,0,114,101,115,101,116,0,102,111,114,99,101,100,79,102,102,115,101,116,0,103,101,116,95,66,121,116,101,79,102,102,115,101,116,0,98,121,116,101,79,102,102,115,101,116,0,112,105,120,101,108,83,116,111,112,79,102,102,115,101,116,0,108,101,102,116,79,102,102,115,101,116,0,103,101,116,95,66,105,116,79,102,102,115,101,116,0,98,105,116,79,102,102,115,101,116,0,112,105,120,101,108,83,116,97,114,116,79,102,102,115,101,116,0,114,111,119,79,102,102,115,101,116,0,120,79,102,102,115,101,116,0,121,79,102,102,115,101,116,0,120,111,102,102,115,101,116,0,121,111,102,102,115,101,116,0,103,101,116,78,101,120,116,85,110,115,101,116,0,99,104,97,114,115,101,116,0,80,97,100,76,101,102,116,0,103,101,116,95,66,111,116,116,111,109,76,101,102,116,0,115,101,116,95,66,111,116,116,111,109,76,101,102,116,0,105,109,97,103,101,66,111,116,116,111,109,76,101,102,116,0,98,111,116,116,111,109,76,101,102,116,0,103,101,116,95,84,111,112,76,101,102,116,0,115,101,116,95,84,111,112,76,101,102,116,0,105,109,97,103,101,84,111,112,76,101,102,116,0,116,111,112,76,101,102,116,0,103,101,116,95,73,115,76,101,102,116,0,115,101,116,95,73,115,76,101,102,116,0,105,115,76,101,102,116,0,105,115,78,111,116,65,49,108,101,102,116,0,67,104,117,110,107,83,105,122,101,68,105,118,105,115,105,111,110,83,104,105,102,116,0,97,100,100,66,105,110,97,114,121,83,104,105,102,116,0,101,110,100,66,105,110,97,114,121,83,104,105,102,116,0,115,104,105,102,116,0,103,101,116,95,66,111,116,116,111,109,82,105,103,104,116,0,115,101,116,95,66,111,116,116,111,109,82,105,103,104,116,0,105,109,97,103,101,66,111,116,116,111,109,82,105,103,104,116,0,83,101,116,66,111,116,116,111,109,82,105,103,104,116,0,98,111,116,116,111,109,82,105,103,104,116,0,100,105,109,101,110,115,105,111,110,82,105,103,104,116,0,108,101,102,116,84,111,82,105,103,104,116,0,103,101,116,95,84,111,112,82,105,103,104,116,0,115,101,116,95,84,111,112,82,105,103,104,116,0,105,109,97,103,101,84,111,112,82,105,103,104,116,0,99,111,114,114,101,99,116,84,111,112,82,105,103,104,116,0,116,111,112,82,105,103,104,116,0,103,101,116,95,72,101,105,103,104,116,0,115,101,116,95,72,101,105,103,104,116,0,103,101,116,83,121,109,98,111,108,68,97,116,97,72,101,105,103,104,116,0,100,97,116,97,72,101,105,103,104,116,0,115,117,98,72,101,105,103,104,116,0,103,101,116,95,84,104,117,109,98,110,97,105,108,72,101,105,103,104,116,0,103,101,116,83,121,109,98,111,108,72,101,105,103,104,116,0,114,101,113,72,101,105,103,104,116,0,109,97,116,114,105,120,72,101,105,103,104,116,0,103,101,116,95,87,101,105,103,104,116,0,101,110,99,111,100,101,67,111,109,112,114,101,115,115,101,100,87,101,105,103,104,116,0,99,104,101,99,107,87,101,105,103,104,116,0,66,67,104,97,110,110,101,108,87,101,105,103,104,116,0,71,67,104,97,110,110,101,108,87,101,105,103,104,116,0,82,67,104,97,110,110,101,108,87,101,105,103,104,116,0,118,105,110,80,111,115,105,116,105,111,110,87,101,105,103,104,116,0,109,97,120,87,101,105,103,104,116,0,104,101,105,103,104,116,0,119,101,105,103,104,116,0,114,105,103,104,116,0,105,115,56,66,105,116,0,97,112,112,101,110,100,66,105,116,0,103,101,116,68,97,116,97,77,97,115,107,66,105,116,0,103,101,116,84,111,112,76,101,102,116,79,110,66,105,116,0,103,101,116,66,111,116,116,111,109,82,105,103,104,116,79,110,66,105,116,0,104,97,115,66,105,116,0,103,101,116,66,105,116,0,115,101,116,66,105,116,0,99,111,112,121,66,105,116,0,119,105,108,108,70,105,116,0,98,105,116,0,111,112,95,73,109,112,108,105,99,105,116,0,111,112,95,69,120,112,108,105,99,105,116,0,103,101,116,83,101,99,111,110,100,68,105,103,105,116,0,115,101,99,111,110,100,68,105,103,105,116,0,100,101,99,111,100,101,68,105,103,105,116,0,103,101,116,95,65,115,115,117,109,101,67,111,100,101,51,57,67,104,101,99,107,68,105,103,105,116,0,115,101,116,95,65,115,115,117,109,101,67,111,100,101,51,57,67,104,101,99,107,68,105,103,105,116,0,103,101,116,95,65,115,115,117,109,101,77,83,73,67,104,101,99,107,68,105,103,105,116,0,115,101,116,95,65,115,115,117,109,101,77,83,73,67,104,101,99,107,68,105,103,105,116,0,100,101,116,101,114,109,105,110,101,78,117,109,83,121,115,65,110,100,67,104,101,99,107,68,105,103,105,116,0,97,112,112,101,110,100,67,104,101,99,107,68,105,103,105,116,0,100,101,116,101,114,109,105,110,101,67,104,101,99,107,68,105,103,105,116,0,117,115,105,110,103,67,104,101,99,107,68,105,103,105,116,0,99,104,101,99,107,68,105,103,105,116,0,73,115,68,105,103,105,116,0,105,115,68,105,103,105,116,0,100,101,116,101,114,109,105,110,101,70,105,114,115,116,68,105,103,105,116,0,103,101,116,70,105,114,115,116,68,105,103,105,116,0,102,105,114,115,116,68,105,103,105,116,0,112,97,114,115,101,72,101,120,68,105,103,105,116,0,100,105,103,105,116,0,83,112,108,105,116,0,100,111,119,110,73,110,105,116,0,117,112,73,110,105,116,0,108,101,102,116,73,110,105,116,0,114,105,103,104,116,73,110,105,116,0,105,110,105,116,0,71,101,116,86,97,108,117,101,79,114,68,101,102,97,117,108,116,0,100,101,102,97,117,108,116,0,90,88,105,110,103,46,67,108,105,101,110,116,46,82,101,115,117,108,116,0,73,65,115,121,110,99,82,101,115,117,108,116,0,85,82,73,80,97,114,115,101,100,82,101,115,117,108,116,0,73,83,66,78,80,97,114,115,101,100,82,101,115,117,108,116,0,86,73,78,80,97,114,115,101,100,82,101,115,117,108,116,0,83,77,83,80,97,114,115,101,100,82,101,115,117,108,116,0,87,105,102,105,80,97,114,115,101,100,82,101,115,117,108,116,0,66,108,111,99,107,80,97,114,115,101,100,82,101,115,117,108,116,0,65,100,100,114,101,115,115,66,111,111,107,80,97,114,115,101,100,82,101,115,117,108,116,0,84,101,108,80,97,114,115,101,100,82,101,115,117,108,116,0,71,101,111,80,97,114,115,101,100,82,101,115,117,108,116,0,67,97,108,101,110,100,97,114,80,97,114,115,101,100,82,101,115,117,108,116,0,69,109,97,105,108,65,100,100,114,101,115,115,80,97,114,115,101,100,82,101,115,117,108,116,0,69,120,112,97,110,100,101,100,80,114,111,100,117,99,116,80,97,114,115,101,100,82,101,115,117,108,116,0,84,101,120,116,80,97,114,115,101,100,82,101,115,117,108,116,0,116,104,101,82,101,115,117,108,116,0,112,97,114,115,101,82,101,115,117,108,116,0,68,101,116,101,99,116,105,111,110,82,101,115,117,108,116,0,100,101,116,101,99,116,105,111,110,82,101,115,117,108,116,0,109,97,121,98,101,82,101,116,117,114,110,82,101,115,117,108,116,0,99,111,112,121,84,111,82,101,115,117,108,116,0,116,109,112,82,101,115,117,108,116,0,114,101,110,100,101,114,82,101,115,117,108,116,0,99,114,101,97,116,101,68,101,99,111,100,101,114,82,101,115,117,108,116,0,80,68,70,52,49,55,68,101,116,101,99,116,111,114,82,101,115,117,108,116,0,65,122,116,101,99,68,101,116,101,99,116,111,114,82,101,115,117,108,116,0,100,101,116,101,99,116,111,114,82,101,115,117,108,116,0,99,111,110,115,116,114,117,99,116,82,101,115,117,108,116,0,100,101,99,111,100,101,82,111,119,82,101,115,117,108,116,0,103,101,116,95,68,105,115,112,108,97,121,82,101,115,117,108,116,0,103,101,116,68,105,115,112,108,97,121,82,101,115,117,108,116,0,114,101,115,117,108,116,0,103,101,116,73,110,116,0,109,105,110,69,67,67,80,101,114,99,101,110,116,0,101,99,99,80,101,114,99,101,110,116,0,103,101,116,67,111,101,102,102,105,99,105,101,110,116,0,99,111,101,102,102,105,99,105,101,110,116,0,73,115,69,113,117,105,118,97,108,101,110,116,0,68,101,102,97,117,108,116,80,108,97,99,101,109,101,110,116,0,112,108,97,99,101,109,101,110,116,0,111,112,95,68,101,99,114,101,109,101,110,116,0,100,101,99,114,101,109,101,110,116,0,111,112,95,73,110,99,114,101,109,101,110,116,0,103,101,116,95,80,114,105,99,101,73,110,99,114,101,109,101,110,116,0,112,114,105,99,101,73,110,99,114,101,109,101,110,116,0,103,101,116,95,87,101,105,103,104,116,73,110,99,114,101,109,101,110,116,0,119,101,105,103,104,116,73,110,99,114,101,109,101,110,116,0,105,110,99,114,101,109,101,110,116,0,109,97,121,98,101,65,112,112,101,110,100,70,114,97,103,109,101,110,116,0,100,101,99,111,100,101,67,52,48,83,101,103,109,101,110,116,0,100,101,99,111,100,101,65,110,115,105,88,49,50,83,101,103,109,101,110,116,0,100,101,99,111,100,101,66,97,115,101,50,53,54,83,101,103,109,101,110,116,0,100,101,99,111,100,101,78,117,109,101,114,105,99,83,101,103,109,101,110,116,0,100,101,99,111,100,101,65,108,112,104,97,110,117,109,101,114,105,99,83,101,103,109,101,110,116,0,100,101,99,111,100,101,66,121,116,101,83,101,103,109,101,110,116,0,100,101,99,111,100,101,65,115,99,105,105,83,101,103,109,101,110,116,0,100,101,99,111,100,101,75,97,110,106,105,83,101,103,109,101,110,116,0,100,101,99,111,100,101,72,97,110,122,105,83,101,103,109,101,110,116,0,103,101,116,66,108,97,99,107,80,111,105,110,116,79,110,83,101,103,109,101,110,116,0,100,101,99,111,100,101,69,100,105,102,97,99,116,83,101,103,109,101,110,116,0,103,101,116,95,73,115,76,97,115,116,83,101,103,109,101,110,116,0,115,101,116,95,73,115,76,97,115,116,83,101,103,109,101,110,116,0,100,101,99,111,100,101,84,101,120,116,83,101,103,109,101,110,116,0,69,110,118,105,114,111,110,109,101,110,116,0,109,97,121,98,101,65,112,112,101,110,100,67,111,109,112,111,110,101,110,116,0,101,120,112,111,110,101,110,116,0,103,101,116,70,105,114,115,116,68,105,102,102,101,114,101,110,116,0,103,101,116,95,67,117,114,114,101,110,116,0,99,117,114,114,101,110,116,0,103,101,116,95,67,111,110,116,101,110,116,0,115,101,116,95,67,111,110,116,101,110,116,0,99,111,110,116,101,110,116,0,83,121,109,98,111,108,83,104,97,112,101,72,105,110,116,0,101,115,116,105,109,97,116,101,66,108,97,99,107,80,111,105,110,116,0,99,111,110,116,97,105,110,115,66,108,97,99,107,80,111,105,110,116,0,98,108,97,99,107,80,111,105,110,116,0,116,111,82,101,115,117,108,116,80,111,105,110,116,0,114,101,115,117,108,116,80,111,105,110,116,0,115,116,97,114,116,80,111,105,110,116,0,98,117,105,108,100,65,100,106,111,105,110,116,0,112,111,105,110,116,0,103,101,116,95,67,111,117,110,116,0,115,101,116,95,67,111,117,110,116,0,103,101,116,95,67,111,100,101,119,111,114,100,67,111,117,110,116,0,103,101,116,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,67,111,100,101,119,111,114,100,67,111,117,110,116,0,103,101,116,67,111,100,101,119,111,114,100,67,111,117,110,116,0,97,100,106,117,115,116,67,111,100,101,119,111,114,100,67,111,117,110,116,0,118,101,114,105,102,121,67,111,100,101,119,111,114,100,67,111,117,110,116,0,103,101,116,95,67,114,111,115,115,67,104,101,99,107,83,116,97,116,101,67,111,117,110,116,0,99,114,111,115,115,67,104,101,99,107,83,116,97,116,101,67,111,117,110,116,0,115,116,97,116,101,67,111,117,110,116,0,103,101,116,95,66,105,110,97,114,121,83,104,105,102,116,66,121,116,101,67,111,117,110,116,0,98,105,110,97,114,121,83,104,105,102,116,66,121,116,101,67,111,117,110,116,0,98,121,116,101,67,111,117,110,116,0,103,101,116,73,110,116,101,114,108,101,97,118,101,100,66,108,111,99,107,67,111,117,110,116,0,67,104,117,110,107,67,111,117,110,116,0,103,101,116,77,105,110,105,109,117,109,67,111,117,110,116,0,103,101,116,95,67,111,108,117,109,110,67,111,117,110,116,0,115,101,116,95,67,111,108,117,109,110,67,111,117,110,116,0,99,111,108,117,109,110,67,111,117,110,116,0,103,101,116,95,84,111,116,97,108,77,101,115,115,97,103,101,67,104,97,114,67,111,117,110,116,0,101,114,114,111,114,76,111,99,97,116,105,111,110,115,67,111,117,110,116,0,103,101,116,95,66,105,116,67,111,117,110,116,0,103,101,116,77,111,100,117,108,101,66,105,116,67,111,117,110,116,0,109,111,100,117,108,101,66,105,116,67,111,117,110,116,0,98,105,116,67,111,117,110,116,0,100,101,116,101,114,109,105,110,101,67,111,110,115,101,99,117,116,105,118,101,68,105,103,105,116,67,111,117,110,116,0,105,110,99,114,101,109,101,110,116,67,111,117,110,116,0,100,101,116,101,114,109,105,110,101,67,111,110,115,101,99,117,116,105,118,101,84,101,120,116,67,111,117,110,116,0,103,101,116,95,82,111,119,67,111,117,110,116,0,115,101,116,95,82,111,119,67,111,117,110,116,0,109,97,120,67,111,117,110,116,0,100,101,116,101,114,109,105,110,101,67,111,110,115,101,99,117,116,105,118,101,66,105,110,97,114,121,67,111,117,110,116,0,99,111,117,110,116,0,108,105,115,116,66,111,116,0,110,117,109,98,101,114,80,97,114,116,0,114,111,119,67,111,117,110,116,85,112,112,101,114,80,97,114,116,0,114,111,119,67,111,117,110,116,76,111,119,101,114,80,97,114,116,0,103,101,116,95,83,116,97,114,116,0,112,97,121,108,111,97,100,83,116,97,114,116,0,101,110,100,83,116,97,114,116,0,115,111,117,114,99,101,83,116,97,114,116,0,100,101,99,111,100,101,83,116,97,114,116,0,100,101,115,116,105,110,97,116,105,111,110,83,116,97,114,116,0,98,105,110,97,114,121,83,104,105,102,116,83,116,97,114,116,0,120,83,116,97,114,116,0,121,83,116,97,114,116,0,115,116,97,114,116,0,73,110,115,101,114,116,0,105,110,118,101,114,116,0,67,111,110,118,101,114,116,0,83,97,83,101,113,117,101,110,99,101,83,111,114,116,0,85,80,67,69,65,78,69,120,116,101,110,115,105,111,110,50,83,117,112,112,111,114,116,0,85,80,67,69,65,78,69,120,116,101,110,115,105,111,110,53,83,117,112,112,111,114,116,0,102,105,118,101,83,117,112,112,111,114,116,0,69,65,78,77,97,110,117,102,97,99,116,117,114,101,114,79,114,103,83,117,112,112,111,114,116,0,101,97,110,77,97,110,83,117,112,112,111,114,116,0,85,80,67,69,65,78,69,120,116,101,110,115,105,111,110,83,117,112,112,111,114,116,0,116,119,111,83,117,112,112,111,114,116,0,73,110,116,101,103,101,114,83,113,114,116,0,65,100,100,76,97,115,116,0,103,101,116,95,77,117,115,116,66,101,76,97,115,116,0,103,101,116,95,77,97,121,66,101,76,97,115,116,0,115,101,116,95,77,97,121,66,101,76,97,115,116,0,109,97,121,66,101,76,97,115,116,0,108,111,111,107,65,104,101,97,100,84,101,115,116,0,108,105,115,116,0,65,100,100,70,105,114,115,116,0,119,104,105,116,101,70,105,114,115,116,0,105,110,112,117,116,0,84,79,117,116,112,117,116,0,77,111,118,101,78,101,120,116,0,83,121,115,116,101,109,46,84,101,120,116,0,103,101,116,95,84,101,120,116,0,115,101,116,95,84,101,120,116,0,65,100,100,84,101,120,116,0,101,110,99,111,100,101,84,101,120,116,0,105,115,78,97,116,105,118,101,84,101,120,116,0,105,115,84,101,120,116,0,103,101,116,95,82,97,119,84,101,120,116,0,114,97,119,84,101,120,116,0,69,110,99,111,100,101,114,67,111,110,116,101,120,116,0,99,111,110,116,101,120,116,0,117,0,118,0,114,97,119,0,99,104,101,99,107,67,111,100,101,119,111,114,100,83,107,101,119,0,103,101,116,95,78,111,119,0,80,111,119,0,69,120,112,97,110,100,101,100,82,111,119,0,103,101,116,83,99,97,108,101,100,82,111,119,0,100,101,99,111,100,101,82,111,119,0,66,97,114,99,111,100,101,82,111,119,0,105,109,97,103,101,82,111,119,0,115,116,111,114,101,82,111,119,0,103,101,116,66,108,97,99,107,82,111,119,0,105,115,80,97,114,116,105,97,108,82,111,119,0,116,111,112,82,111,119,0,73,110,100,101,120,70,111,114,82,111,119,0,99,111,100,101,119,111,114,100,115,82,111,119,0,103,101,116,82,111,119,0,115,101,116,82,111,119,0,103,101,116,67,117,114,114,101,110,116,82,111,119,0,99,117,114,114,101,110,116,82,111,119,0,98,111,116,82,111,119,0,115,116,97,114,116,82,111,119,0,108,105,115,116,82,111,119,0,97,100,106,117,115,116,82,111,119,78,117,109,98,101,114,115,66,121,82,111,119,0,110,111,78,97,114,114,111,119,0,103,101,116,77,97,120,0,119,101,105,103,104,116,77,97,120,0,109,97,120,0,100,120,0,103,101,116,95,73,110,100,101,120,0,101,110,100,73,110,100,101,120,0,105,109,97,103,101,82,111,119,84,111,67,111,100,101,119,111,114,100,73,110,100,101,120,0,99,111,100,101,119,111,114,100,73,110,100,101,120,0,99,111,100,101,73,110,100,101,120,0,99,111,109,112,117,116,101,67,104,101,99,107,115,117,109,73,110,100,101,120,0,82,111,119,70,111,114,73,110,100,101,120,0,103,101,116,95,83,101,103,109,101,110,116,73,110,100,101,120,0,115,101,116,95,83,101,103,109,101,110,116,73,110,100,101,120,0,115,116,97,114,116,73,110,100,101,120,0,97,114,114,97,121,73,110,100,101,120,0,105,110,100,101,120,0,82,101,103,101,120,0,109,97,116,99,104,77,117,108,116,105,112,108,101,86,97,108,117,101,80,114,101,102,105,120,0,112,114,101,102,105,120,0,103,101,116,95,77,97,116,114,105,120,0,115,101,116,95,77,97,116,114,105,120,0,103,101,116,83,99,97,108,101,100,77,97,116,114,105,120,0,105,110,118,101,114,116,101,100,77,97,116,114,105,120,0,98,117,105,108,100,77,97,116,114,105,120,0,103,101,116,95,66,97,114,99,111,100,101,77,97,116,114,105,120,0,99,114,101,97,116,101,66,97,114,99,111,100,101,77,97,116,114,105,120,0,98,97,114,99,111,100,101,77,97,116,114,105,120,0,66,121,116,101,77,97,116,114,105,120,0,114,101,97,100,77,97,112,112,105,110,103,77,97,116,114,105,120,0,103,101,116,95,66,108,97,99,107,77,97,116,114,105,120,0,99,108,101,97,114,77,97,116,114,105,120,0,103,101,116,77,97,116,114,105,120,0,109,97,112,112,105,110,103,66,105,116,77,97,116,114,105,120,0,117,110,109,97,115,107,66,105,116,77,97,116,114,105,120,0,99,111,110,118,101,114,116,66,121,116,101,77,97,116,114,105,120,84,111,66,105,116,77,97,116,114,105,120,0,98,105,116,77,97,116,114,105,120,0,90,88,105,110,103,46,68,97,116,97,109,97,116,114,105,120,0,103,101,116,95,66,111,120,0,115,101,116,95,66,111,120,0,97,100,106,117,115,116,66,111,117,110,100,105,110,103,66,111,120,0,98,111,117,110,100,105,110,103,66,111,120,0,108,101,102,116,66,111,120,0,114,105,103,104,116,66,111,120,0,98,111,120,0,103,101,116,95,105,115,69,110,100,65,108,108,68,97,121,0,101,110,100,65,108,108,68,97,121,0,105,115,83,116,97,114,116,65,108,108,68,97,121,0,115,116,97,114,116,65,108,108,68,97,121,0,97,108,108,68,97,121,0,99,97,108,99,117,108,97,116,101,77,111,100,117,108,101,83,105,122,101,79,110,101,87,97,121,0,103,101,116,95,66,105,114,116,104,100,97,121,0,98,105,114,116,104,100,97,121,0,103,101,116,95,65,114,114,97,121,0,101,115,99,97,112,101,100,65,114,114,97,121,0,108,117,109,105,110,97,110,99,101,65,114,114,97,121,0,109,97,107,101,65,114,114,97,121,0,101,114,97,115,117,114,101,65,114,114,97,121,0,114,111,116,97,116,101,65,114,114,97,121,0,99,111,110,118,101,114,116,66,111,111,108,65,114,114,97,121,84,111,66,121,116,101,65,114,114,97,121,0,98,121,116,101,65,114,114,97,121,0,73,110,105,116,105,97,108,105,122,101,65,114,114,97,121,0,116,111,83,116,114,105,110,103,65,114,114,97,121,0,100,101,115,116,105,110,97,116,105,111,110,65,114,114,97,121,0,84,111,65,114,114,97,121,0,84,111,67,104,97,114,65,114,114,97,121,0,98,117,105,108,100,66,105,116,65,114,114,97,121,0,97,112,112,101,110,100,66,105,116,65,114,114,97,121,0,101,120,116,114,97,99,116,78,117,109,101,114,105,99,86,97,108,117,101,70,114,111,109,66,105,116,65,114,114,97,121,0,98,105,116,77,97,116,114,105,120,70,114,111,109,66,105,116,65,114,114,97,121,0,116,111,66,105,116,65,114,114,97,121,0,98,105,116,65,114,114,97,121,0,116,111,73,110,116,65,114,114,97,121,0,114,111,119,65,114,114,97,121,0,98,105,116,97,114,114,97,121,0,103,101,116,67,111,100,101,119,111,114,100,78,101,97,114,98,121,0,103,101,116,95,80,114,105,99,101,67,117,114,114,101,110,99,121,0,112,114,105,99,101,67,117,114,114,101,110,99,121,0,103,101,116,95,66,111,100,121,0,115,101,116,95,66,111,100,121,0,98,111,100,121,0,84,75,101,121,0,103,101,116,95,75,101,121,0,67,111,110,116,97,105,110,115,75,101,121,0,107,101,121,0,97,100,100,79,114,84,97,108,108,121,0,103,101,116,95,73,115,82,101,97,100,79,110,108,121,0,71,101,110,101,114,105,99,71,70,80,111,108,121,0,77,111,100,117,108,117,115,80,111,108,121,0,112,111,108,121,0,111,112,95,77,117,108,116,105,112,108,121,0,109,117,108,116,105,112,108,121,0,66,108,111,99,107,67,111,112,121,0,103,101,116,95,83,117,109,109,97,114,121,0,115,117,109,109,97,114,121,0,101,110,99,111,100,101,66,105,110,97,114,121,0,98,105,110,97,114,121,0,66,105,103,73,110,116,101,103,101,114,76,105,98,114,97,114,121,0,103,101,116,95,81,117,101,114,121,0,115,101,116,95,81,117,101,114,121,0,113,117,101,114,121,0,103,101,116,67,111,117,110,116,114,121,0,103,101,116,95,67,97,112,97,99,105,116,121,0,100,97,116,97,67,97,112,97,99,105,116,121,0,101,110,115,117,114,101,67,97,112,97,99,105,116,121,0,83,101,116,67,97,112,97,99,105,116,121,0,110,101,119,67,97,112,97,99,105,116,121,0,111,112,95,69,113,117,97,108,105,116,121,0,111,112,95,73,110,101,113,117,97,108,105,116,121,0,73,115,80,111,115,105,116,105,118,101,73,110,102,105,110,105,116,121,0,115,97,80,97,114,105,116,121,0,103,101,116,95,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,80,97,114,105,116,121,0,115,101,116,95,83,116,114,117,99,116,117,114,101,100,65,112,112,101,110,100,80,97,114,105,116,121,0,103,101,116,95,73,100,101,110,116,105,116,121,0,115,101,116,95,73,100,101,110,116,105,116,121,0,103,101,116,95,65,110,111,110,121,109,111,117,115,73,100,101,110,116,105,116,121,0,115,101,116,95,65,110,111,110,121,109,111,117,115,73,100,101,110,116,105,116,121,0,97,110,111,110,121,109,111,117,115,73,100,101,110,116,105,116,121,0,105,100,101,110,116,105,116,121,0,99,97,108,99,117,108,97,116,101,77,97,115,107,80,101,110,97,108,116,121,0,73,115,78,117,108,108,79,114,69,109,112,116,121,0,105,115,69,109,112,116,121,0,114,101,118,101,114,115,101,72,111,114,105,122,0,0,47,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,110,0,117,0,109,0,101,0,114,0,105,0,99,0,32,0,115,0,116,0,114,0,105,0,110,0,103,0,46,0,0,128,133,84,0,104,0,101,0,32,0,98,0,121,0,116,0,101,0,32,0,97,0,114,0,114,0,97,0,121,0,39,0,115,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,32,0,101,0,120,0,99,0,101,0,101,0,100,0,115,0,32,0,116,0,104,0,101,0,32,0,109,0,97,0,120,0,105,0,109,0,117,0,109,0,32,0,115,0,105,0,122,0,101,0,32,0,111,0,102,0,32,0,97,0,32,0,66,0,105,0,103,0,73,0,110,0,116,0,101,0,103,0,101,0,114,0,46,0,1,49,111,0,98,0,106,0,32,0,105,0,115,0,32,0,110,0,111,0,116,0,32,0,97,0,32,0,66,0,105,0,103,0,73,0,110,0,116,0,101,0,103,0,101,0,114,0,46,0,0,45,67,0,97,0,110,0,110,0,111,0,116,0,32,0,100,0,105,0,118,0,105,0,100,0,101,0,32,0,98,0,121,0,32,0,122,0,101,0,114,0,111,0,46,0,0,95,67,0,97,0,110,0,110,0,111,0,116,0,32,0,114,0,97,0,105,0,115,0,101,0,32,0,97,0,110,0,32,0,66,0,105,0,103,0,73,0,110,0,116,0,101,0,103,0,101,0,114,0,32,0,116,0,111,0,32,0,97,0,32,0,110,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,32,0,112,0,111,0,119,0,101,0,114,0,46,0,0,121,67,0,97,0,110,0,110,0,111,0,116,0,32,0,99,0,111,0,109,0,112,0,117,0,116,0,101,0,32,0,116,0,104,0,101,0,32,0,105,0,110,0,116,0,101,0,103,0,101,0,114,0,32,0,115,0,113,0,117,0,97,0,114,0,101,0,32,0,114,0,111,0,111,0,116,0,32,0,111,0,102,0,32,0,97,0,32,0,110,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,46,0,0,95,67,0,97,0,110,0,110,0,111,0,116,0,32,0,99,0,111,0,109,0,112,0,117,0,116,0,101,0,32,0,116,0,104,0,101,0,32,0,71,0,99,0,100,0,32,0,111,0,102,0,32,0,110,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,32,0,66,0,105,0,103,0,73,0,110,0,116,0,101,0,103,0,101,0,114,0,115,0,46,0,0,128,135,67,0,97,0,110,0,110,0,111,0,116,0,32,0,112,0,101,0,114,0,102,0,111,0,114,0,109,0,32,0,97,0,32,0,109,0,111,0,100,0,117,0,108,0,111,0,32,0,111,0,112,0,101,0,114,0,97,0,116,0,105,0,111,0,110,0,32,0,97,0,103,0,97,0,105,0,110,0,115,0,116,0,32,0,97,0,32,0,66,0,105,0,103,0,73,0,110,0,116,0,101,0,103,0,101,0,114,0,32,0,108,0,101,0,115,0,115,0,32,0,116,0,104,0,97,0,110,0,32,0,50,0,46,0,0,79,67,0,97,0,110,0,110,0,111,0,116,0,32,0,111,0,98,0,116,0,97,0,105,0,110,0,32,0,116,0,104,0,101,0,32,0,109,0,111,0,100,0,117,0,108,0,97,0,114,0,32,0,105,0,110,0,118,0,101,0,114,0,115,0,101,0,32,0,111,0,102,0,32,0,48,0,46,0,0,128,167,67,0,97,0,110,0,110,0,111,0,116,0,32,0,111,0,98,0,116,0,97,0,105,0,110,0,32,0,116,0,104,0,101,0,32,0,109,0,111,0,100,0,117,0,108,0,97,0,114,0,32,0,105,0,110,0,118,0,101,0,114,0,115,0,101,0,32,0,111,0,102,0,32,0,97,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,32,0,116,0,104,0,97,0,116,0,32,0,105,0,115,0,32,0,110,0,111,0,116,0,32,0,99,0,111,0,112,0,114,0,105,0,109,0,101,0,32,0,119,0,105,0,116,0,104,0,32,0,116,0,104,0,101,0,32,0,109,0,111,0,100,0,117,0,108,0,117,0,115,0,46,0,0,93,67,0,97,0,110,0,110,0,111,0,116,0,32,0,114,0,97,0,105,0,115,0,101,0,32,0,97,0,32,0,66,0,105,0,103,0,73,0,110,0,116,0,101,0,103,0,101,0,114,0,32,0,116,0,111,0,32,0,97,0,32,0,110,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,32,0,112,0,111,0,119,0,101,0,114,0,46,0,0,97,89,0,111,0,117,0,32,0,104,0,97,0,118,0,101,0,32,0,116,0,111,0,32,0,100,0,101,0,99,0,108,0,97,0,114,0,101,0,32,0,97,0,32,0,108,0,117,0,109,0,105,0,110,0,97,0,110,0,99,0,101,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,100,0,101,0,108,0,101,0,103,0,97,0,116,0,101,0,46,0,0,27,98,0,97,0,114,0,99,0,111,0,100,0,101,0,66,0,105,0,116,0,109,0,97,0,112,0,0,13,114,0,97,0,119,0,82,0,71,0,66,0,0,73,89,0,111,0,117,0,32,0,104,0,97,0,118,0,101,0,32,0,116,0,111,0,32,0,115,0,101,0,116,0,32,0,97,0,32,0,114,0,101,0,110,0,100,0,101,0,114,0,101,0,114,0,32,0,105,0,110,0,115,0,116,0,97,0,110,0,99,0,101,0,46,0,0,93,67,0,114,0,111,0,112,0,32,0,114,0,101,0,99,0,116,0,97,0,110,0,103,0,108,0,101,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,102,0,105,0,116,0,32,0,119,0,105,0,116,0,104,0,105,0,110,0,32,0,105,0,109,0,97,0,103,0,101,0,32,0,100,0,97,0,116,0,97,0,46,0,0,49,83,0,111,0,117,0,114,0,99,0,101,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,110,0,111,0,110,0,45,0,110,0,117,0,108,0,108,0,46,0,1,55,66,0,105,0,110,0,97,0,114,0,105,0,122,0,101,0,114,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,110,0,111,0,110,0,45,0,110,0,117,0,108,0,108,0,46,0,1,49,109,0,97,0,116,0,114,0,105,0,120,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,110,0,111,0,110,0,45,0,110,0,117,0,108,0,108,0,46,0,1,3,120,0,0,97,84,0,104,0,105,0,115,0,32,0,108,0,117,0,109,0,105,0,110,0,97,0,110,0,99,0,101,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,32,0,99,0,114,0,111,0,112,0,112,0,105,0,110,0,103,0,46,0,0,97,84,0,104,0,105,0,115,0,32,0,108,0,117,0,109,0,105,0,110,0,97,0,110,0,99,0,101,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,32,0,114,0,111,0,116,0,97,0,116,0,105,0,111,0,110,0,46,0,0,125,84,0,104,0,105,0,115,0,32,0,108,0,117,0,109,0,105,0,110,0,97,0,110,0,99,0,101,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,32,0,114,0,111,0,116,0,97,0,116,0,105,0,111,0,110,0,32,0,98,0,121,0,32,0,52,0,53,0,32,0,100,0,101,0,103,0,114,0,101,0,101,0,115,0,46,0,0,99,84,0,104,0,105,0,115,0,32,0,108,0,117,0,109,0,105,0,110,0,97,0,110,0,99,0,101,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,32,0,105,0,110,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,46,0,0,65,78,0,111,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,114,0,32,0,97,0,118,0,97,0,105,0,108,0,97,0,98,0,108,0,101,0,32,0,102,0,111,0,114,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,32,0,0,73,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,114,0,111,0,119,0,32,0,105,0,115,0,32,0,111,0,117,0,116,0,115,0,105,0,100,0,101,0,32,0,116,0,104,0,101,0,32,0,105,0,109,0,97,0,103,0,101,0,58,0,32,0,0,47,84,0,101,0,120,0,116,0,32,0,97,0,110,0,100,0,32,0,98,0,121,0,116,0,101,0,115,0,32,0,97,0,114,0,101,0,32,0,110,0,117,0,108,0,108,0,0,3,91,0,0,15,32,0,98,0,121,0,116,0,101,0,115,0,93,0,0,21,40,0,123,0,48,0,125,0,44,0,32,0,123,0,49,0,125,0,41,0,0,128,153,84,0,104,0,101,0,32,0,98,0,105,0,116,0,109,0,97,0,112,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,32,0,99,0,111,0,117,0,108,0,100,0,32,0,110,0,111,0,116,0,32,0,98,0,101,0,32,0,100,0,101,0,116,0,101,0,114,0,109,0,105,0,110,0,101,0,100,0,46,0,32,0,80,0,108,0,101,0,97,0,115,0,101,0,32,0,115,0,112,0,101,0,99,0,105,0,102,0,121,0,32,0,116,0,104,0,101,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,32,0,118,0,97,0,108,0,117,0,101,0,46,0,0,69,84,0,104,0,101,0,32,0,98,0,105,0,116,0,109,0,97,0,112,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,32,0,105,0,115,0,110,0,39,0,116,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,101,0,100,0,46,0,1,11,65,0,114,0,105,0,97,0,108,0,0,7,32,0,32,0,32,0,0,41,70,0,111,0,117,0,110,0,100,0,32,0,101,0,109,0,112,0,116,0,121,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,0,67,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,81,0,82,0,95,0,67,0,79,0,68,0,69,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,73,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,100,0,105,0,109,0,101,0,110,0,115,0,105,0,111,0,110,0,115,0,32,0,97,0,114,0,101,0,32,0,116,0,111,0,111,0,32,0,115,0,109,0,97,0,108,0,108,0,58,0,32,0,0,3,76,0,0,3,77,0,0,3,81,0,0,3,72,0,0,5,13,0,10,0,0,3,10,0,0,65,66,0,97,0,100,0,32,0,69,0,67,0,73,0,32,0,98,0,105,0,116,0,115,0,32,0,115,0,116,0,97,0,114,0,116,0,105,0,110,0,103,0,32,0,119,0,105,0,116,0,104,0,32,0,98,0,121,0,116,0,101,0,32,0,0,91,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,32,0,36,0,37,0,42,0,43,0,45,0,46,0,47,0,58,0,1,85,67,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,32,0,99,0,111,0,117,0,110,0,116,0,32,0,100,0,111,0,101,0,115,0,110,0,39,0,116,0,32,0,97,0,112,0,112,0,108,0,121,0,32,0,116,0,111,0,32,0,116,0,104,0,105,0,115,0,32,0,109,0,111,0,100,0,101,0,1,5,32,0,48,0,0,5,32,0,49,0,0,5,32,0,32,0,0,69,68,0,97,0,116,0,97,0,32,0,116,0,111,0,111,0,32,0,98,0,105,0,103,0,32,0,102,0,111,0,114,0,32,0,114,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,0,19,83,0,104,0,105,0,102,0,116,0,95,0,74,0,73,0,83,0,0,25,68,0,97,0,116,0,97,0,32,0,116,0,111,0,111,0,32,0,98,0,105,0,103,0,0,71,100,0,97,0,116,0,97,0,32,0,98,0,105,0,116,0,115,0,32,0,99,0,97,0,110,0,110,0,111,0,116,0,32,0,102,0,105,0,116,0,32,0,105,0,110,0,32,0,116,0,104,0,101,0,32,0,81,0,82,0,32,0,67,0,111,0,100,0,101,0,0,7,32,0,62,0,32,0,0,67,66,0,105,0,116,0,115,0,32,0,115,0,105,0,122,0,101,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,101,0,113,0,117,0,97,0,108,0,32,0,99,0,97,0,112,0,97,0,99,0,105,0,116,0,121,0,0,37,66,0,108,0,111,0,99,0,107,0,32,0,73,0,68,0,32,0,116,0,111,0,111,0,32,0,108,0,97,0,114,0,103,0,101,0,0,35,69,0,67,0,32,0,98,0,121,0,116,0,101,0,115,0,32,0,109,0,105,0,115,0,109,0,97,0,116,0,99,0,104,0,0,37,82,0,83,0,32,0,98,0,108,0,111,0,99,0,107,0,115,0,32,0,109,0,105,0,115,0,109,0,97,0,116,0,99,0,104,0,0,41,84,0,111,0,116,0,97,0,108,0,32,0,98,0,121,0,116,0,101,0,115,0,32,0,109,0,105,0,115,0,109,0,97,0,116,0,99,0,104,0,0,89,78,0,117,0,109,0,98,0,101,0,114,0,32,0,111,0,102,0,32,0,98,0,105,0,116,0,115,0,32,0,97,0,110,0,100,0,32,0,100,0,97,0,116,0,97,0,32,0,98,0,121,0,116,0,101,0,115,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,0,65,68,0,97,0,116,0,97,0,32,0,98,0,121,0,116,0,101,0,115,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,32,0,111,0,102,0,102,0,115,0,101,0,116,0,0,41,73,0,110,0,116,0,101,0,114,0,108,0,101,0,97,0,118,0,105,0,110,0,103,0,32,0,101,0,114,0,114,0,111,0,114,0,58,0,32,0,0,11,32,0,97,0,110,0,100,0,32,0,0,17,32,0,100,0,105,0,102,0,102,0,101,0,114,0,46,0,0,33,32,0,105,0,115,0,32,0,98,0,105,0,103,0,103,0,101,0,114,0,32,0,116,0,104,0,97,0,110,0,32,0,0,29,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,109,0,111,0,100,0,101,0,58,0,32,0,0,43,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,98,0,121,0,116,0,101,0,32,0,115,0,101,0,113,0,117,0,101,0,110,0,99,0,101,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,1,45,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,109,0,97,0,115,0,107,0,32,0,112,0,97,0,116,0,116,0,101,0,114,0,110,0,58,0,32,0,0,47,78,0,111,0,116,0,32,0,97,0,108,0,108,0,32,0,98,0,105,0,116,0,115,0,32,0,99,0,111,0,110,0,115,0,117,0,109,0,101,0,100,0,58,0,32,0,0,3,47,0,0,27,48,0,32,0,112,0,111,0,108,0,121,0,110,0,111,0,109,0,105,0,110,0,97,0,108,0,0,9,112,0,111,0,108,0,121,0,0,41,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,109,0,97,0,115,0,107,0,32,0,112,0,97,0,116,0,116,0,101,0,114,0,110,0,0,61,115,0,104,0,111,0,117,0,108,0,100,0,32,0,110,0,111,0,116,0,32,0,104,0,97,0,112,0,112,0,101,0,110,0,32,0,98,0,117,0,116,0,32,0,119,0,101,0,32,0,103,0,111,0,116,0,58,0,32,0,0,7,60,0,60,0,10,0,0,15,32,0,109,0,111,0,100,0,101,0,58,0,32,0,0,23,10,0,32,0,101,0,99,0,76,0,101,0,118,0,101,0,108,0,58,0,32,0,0,23,10,0,32,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,58,0,32,0,0,9,110,0,117,0,108,0,108,0,0,31,10,0,32,0,109,0,97,0,115,0,107,0,80,0,97,0,116,0,116,0,101,0,114,0,110,0,58,0,32,0,0,31,10,0,32,0,109,0,97,0,116,0,114,0,105,0,120,0,58,0,32,0,110,0,117,0,108,0,108,0,10,0,0,21,10,0,32,0,109,0,97,0,116,0,114,0,105,0,120,0,58,0,10,0,0,7,62,0,62,0,10,0,0,67,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,80,0,68,0,70,0,95,0,52,0,49,0,55,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,3,124,0,0,59,59,0,60,0,62,0,64,0,91,0,92,0,93,0,95,0,96,0,126,0,33,0,13,0,9,0,44,0,58,0,10,0,45,0,46,0,36,0,47,0,34,0,124,0,42,0,40,0,41,0,63,0,123,0,125,0,39,0,1,51,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,38,0,13,0,9,0,44,0,58,0,35,0,45,0,46,0,36,0,47,0,43,0,37,0,42,0,61,0,94,0,1,19,67,0,87,0,32,0,123,0,48,0,44,0,51,0,125,0,58,0,0,17,32,0,32,0,32,0,32,0,124,0,32,0,32,0,32,0,0,25,32,0,123,0,48,0,44,0,51,0,125,0,124,0,123,0,49,0,44,0,51,0,125,0,0,31,123,0,48,0,44,0,51,0,125,0,58,0,32,0,32,0,32,0,32,0,124,0,32,0,32,0,32,0,10,0,0,39,123,0,48,0,44,0,51,0,125,0,58,0,32,0,123,0,49,0,44,0,51,0,125,0,124,0,123,0,50,0,44,0,51,0,125,0,10,0,0,19,73,0,115,0,32,0,76,0,101,0,102,0,116,0,58,0,32,0,0,5,32,0,10,0,0,23,82,0,111,0,119,0,32,0,123,0,48,0,44,0,50,0,125,0,58,0,32,0,0,17,32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,0,25,123,0,48,0,44,0,52,0,125,0,40,0,123,0,49,0,44,0,50,0,125,0,41,0,0,127,69,0,110,0,99,0,111,0,100,0,101,0,100,0,32,0,109,0,101,0,115,0,115,0,97,0,103,0,101,0,32,0,99,0,111,0,110,0,116,0,97,0,105,0,110,0,115,0,32,0,116,0,111,0,111,0,32,0,109,0,97,0,110,0,121,0,32,0,99,0,111,0,100,0,101,0,32,0,119,0,111,0,114,0,100,0,115,0,44,0,32,0,109,0,101,0,115,0,115,0,97,0,103,0,101,0,32,0,116,0,111,0,111,0,32,0,98,0,105,0,103,0,32,0,40,0,0,15,32,0,98,0,121,0,116,0,101,0,115,0,41,0,0,65,85,0,110,0,97,0,98,0,108,0,101,0,32,0,116,0,111,0,32,0,102,0,105,0,116,0,32,0,109,0,101,0,115,0,115,0,97,0,103,0,101,0,32,0,105,0,110,0,32,0,99,0,111,0,108,0,117,0,109,0,110,0,115,0,0,95,69,0,114,0,114,0,111,0,114,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,108,0,101,0,118,0,101,0,108,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,98,0,101,0,116,0,119,0,101,0,101,0,110,0,32,0,48,0,32,0,97,0,110,0,100,0,32,0,56,0,33,0,0,53,78,0,111,0,32,0,114,0,101,0,99,0,111,0,109,0,109,0,101,0,110,0,100,0,97,0,116,0,105,0,111,0,110,0,32,0,112,0,111,0,115,0,115,0,105,0,98,0,108,0,101,0,0,11,85,0,84,0,70,0,45,0,56,0,1,59,78,0,111,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,32,0,102,0,111,0,114,0,32,0,97,0,110,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,105,0,110,0,103,0,58,0,32,0,0,3,49,0,0,69,78,0,111,0,110,0,45,0,101,0,110,0,99,0,111,0,100,0,97,0,98,0,108,0,101,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,32,0,100,0,101,0,116,0,101,0,99,0,116,0,101,0,100,0,58,0,32,0,1,23,32,0,40,0,85,0,110,0,105,0,99,0,111,0,100,0,101,0,58,0,32,0,0,3,41,0,0,109,69,0,67,0,73,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,32,0,110,0,111,0,116,0,32,0,105,0,110,0,32,0,118,0,97,0,108,0,105,0,100,0,32,0,114,0,97,0,110,0,103,0,101,0,32,0,102,0,114,0,111,0,109,0,32,0,48,0,46,0,46,0,56,0,49,0,49,0,55,0,57,0,57,0,44,0,32,0,98,0,117,0,116,0,32,0,119,0,97,0,115,0,32,0,0,91,77,0,111,0,100,0,117,0,108,0,117,0,115,0,80,0,111,0,108,0,121,0,115,0,32,0,100,0,111,0,32,0,110,0,111,0,116,0,32,0,104,0,97,0,118,0,101,0,32,0,115,0,97,0,109,0,101,0,32,0,77,0,111,0,100,0,117,0,108,0,117,0,115,0,71,0,70,0,32,0,102,0,105,0,101,0,108,0,100,0,0,7,32,0,45,0,32,0,1,7,32,0,43,0,32,0,0,5,120,0,94,0,0,41,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,45,0,36,0,58,0,47,0,46,0,43,0,65,0,66,0,67,0,68,0,1,53,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,115,0,116,0,97,0,114,0,116,0,47,0,101,0,110,0,100,0,32,0,103,0,117,0,97,0,114,0,100,0,115,0,58,0,32,0,0,35,67,0,97,0,110,0,110,0,111,0,116,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,58,0,32,0,39,0,1,3,39,0,1,7,93,0,67,0,49,0,0,69,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,67,0,79,0,68,0,69,0,95,0,49,0,50,0,56,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,3,241,0,1,127,67,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,98,0,101,0,32,0,98,0,101,0,116,0,119,0,101,0,101,0,110,0,32,0,49,0,32,0,97,0,110,0,100,0,32,0,56,0,48,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,115,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,49,66,0,97,0,100,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,32,0,105,0,110,0,32,0,105,0,110,0,112,0,117,0,116,0,58,0,32,0,0,87,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,45,0,46,0,32,0,36,0,47,0,43,0,37,0,1,67,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,67,0,79,0,68,0,69,0,95,0,51,0,57,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,127,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,98,0,101,0,32,0,108,0,101,0,115,0,115,0,32,0,116,0,104,0,97,0,110,0,32,0,56,0,48,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,32,0,108,0,111,0,110,0,103,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,111,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,32,0,99,0,111,0,110,0,116,0,97,0,105,0,110,0,115,0,32,0,97,0,32,0,110,0,111,0,110,0,45,0,101,0,110,0,99,0,111,0,100,0,97,0,98,0,108,0,101,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,58,0,32,0,39,0,1,55,32,0,40,0,101,0,120,0,116,0,101,0,110,0,100,0,101,0,100,0,32,0,102,0,117,0,108,0,108,0,32,0,97,0,115,0,99,0,105,0,105,0,32,0,109,0,111,0,100,0,101,0,41,0,0,5,37,0,85,0,0,3,32,0,0,3,45,0,1,3,46,0,0,5,37,0,86,0,0,5,37,0,87,0,0,3,36,0,0,3,37,0,0,3,43,0,0,97,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,45,0,46,0,32,0,36,0,47,0,43,0,37,0,97,0,98,0,99,0,100,0,42,0,1,67,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,67,0,79,0,68,0,69,0,95,0,57,0,51,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,65,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,69,0,65,0,78,0,95,0,49,0,51,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,57,67,0,104,0,101,0,99,0,107,0,115,0,117,0,109,0,32,0,99,0,97,0,110,0,39,0,116,0,32,0,98,0,101,0,32,0,99,0,97,0,108,0,99,0,117,0,108,0,97,0,116,0,101,0,100,0,1,59,67,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,100,0,111,0,32,0,110,0,111,0,116,0,32,0,112,0,97,0,115,0,115,0,32,0,99,0,104,0,101,0,99,0,107,0,115,0,117,0,109,0,0,33,73,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,0,128,169,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,98,0,101,0,32,0,49,0,50,0,32,0,40,0,119,0,105,0,116,0,104,0,111,0,117,0,116,0,32,0,99,0,104,0,101,0,99,0,107,0,115,0,117,0,109,0,32,0,100,0,105,0,103,0,105,0,116,0,41,0,32,0,111,0,114,0,32,0,49,0,51,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,32,0,108,0,111,0,110,0,103,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,63,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,69,0,65,0,78,0,95,0,56,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,128,165,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,98,0,101,0,32,0,55,0,32,0,40,0,119,0,105,0,116,0,104,0,111,0,117,0,116,0,32,0,99,0,104,0,101,0,99,0,107,0,115,0,117,0,109,0,32,0,100,0,105,0,103,0,105,0,116,0,41,0,32,0,111,0,114,0,32,0,56,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,32,0,108,0,111,0,110,0,103,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,11,85,0,83,0,47,0,67,0,65,0,0,5,85,0,83,0,0,5,70,0,82,0,0,5,66,0,71,0,0,5,83,0,73,0,0,5,72,0,82,0,0,5,66,0,65,0,0,5,68,0,69,0,0,5,74,0,80,0,0,5,82,0,85,0,0,5,84,0,87,0,0,5,69,0,69,0,0,5,76,0,86,0,0,5,65,0,90,0,0,5,76,0,84,0,0,5,85,0,90,0,0,5,76,0,75,0,0,5,80,0,72,0,0,5,66,0,89,0,0,5,85,0,65,0,0,5,77,0,68,0,0,5,65,0,77,0,0,5,71,0,69,0,0,5,75,0,90,0,0,5,72,0,75,0,0,5,71,0,66,0,0,5,71,0,82,0,0,5,76,0,66,0,0,5,67,0,89,0,0,5,77,0,75,0,0,5,77,0,84,0,0,5,73,0,69,0,0,11,66,0,69,0,47,0,76,0,85,0,0,5,80,0,84,0,0,5,73,0,83,0,0,5,68,0,75,0,0,5,80,0,76,0,0,5,82,0,79,0,0,5,72,0,85,0,0,5,90,0,65,0,0,5,71,0,72,0,0,5,66,0,72,0,0,5,77,0,85,0,0,5,77,0,65,0,0,5,68,0,90,0,0,5,75,0,69,0,0,5,67,0,73,0,0,5,84,0,78,0,0,5,83,0,89,0,0,5,69,0,71,0,0,5,76,0,89,0,0,5,74,0,79,0,0,5,73,0,82,0,0,5,75,0,87,0,0,5,83,0,65,0,0,5,65,0,69,0,0,5,70,0,73,0,0,5,67,0,78,0,0,5,78,0,79,0,0,5,73,0,76,0,0,5,83,0,69,0,0,5,71,0,84,0,0,5,83,0,86,0,0,5,72,0,78,0,0,5,78,0,73,0,0,5,67,0,82,0,0,5,80,0,65,0,0,5,68,0,79,0,0,5,77,0,88,0,0,5,67,0,65,0,0,5,86,0,69,0,0,5,67,0,72,0,0,5,67,0,79,0,0,5,85,0,89,0,0,5,80,0,69,0,0,5,66,0,79,0,0,5,65,0,82,0,0,5,67,0,76,0,0,5,80,0,89,0,0,5,69,0,67,0,0,5,66,0,82,0,0,5,73,0,84,0,0,5,69,0,83,0,0,5,67,0,85,0,0,5,83,0,75,0,0,5,67,0,90,0,0,5,89,0,85,0,0,5,77,0,78,0,0,5,75,0,80,0,0,5,84,0,82,0,0,5,78,0,76,0,0,5,75,0,82,0,0,5,84,0,72,0,0,5,83,0,71,0,0,5,73,0,78,0,0,5,86,0,78,0,0,5,80,0,75,0,0,5,73,0,68,0,0,5,65,0,84,0,0,5,65,0,85,0,0,5,77,0,89,0,0,5,77,0,79,0,0,59,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,73,0,84,0,70,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,77,84,0,104,0,101,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,32,0,111,0,102,0,32,0,116,0,104,0,101,0,32,0,105,0,110,0,112,0,117,0,116,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,98,0,101,0,32,0,101,0,118,0,101,0,110,0,0,113,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,111,0,110,0,108,0,121,0,32,0,99,0,111,0,110,0,116,0,97,0,105,0,110,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,39,0,1,21,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,0,59,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,77,0,83,0,73,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,113,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,99,0,111,0,110,0,116,0,97,0,105,0,110,0,115,0,32,0,97,0,32,0,110,0,111,0,116,0,32,0,101,0,110,0,99,0,111,0,100,0,97,0,98,0,108,0,101,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,58,0,32,0,39,0,1,75,78,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,32,0,115,0,105,0,122,0,101,0,32,0,105,0,115,0,32,0,110,0,111,0,116,0,32,0,97,0,108,0,108,0,111,0,119,0,101,0,100,0,46,0,32,0,73,0,110,0,112,0,117,0,116,0,58,0,32,0,0,67,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,80,0,108,0,101,0,115,0,115,0,101,0,121,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,33,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,0,63,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,85,0,80,0,67,0,45,0,65,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,1,3,48,0,0,3,163,0,1,11,57,0,48,0,48,0,48,0,48,0,0,11,57,0,57,0,57,0,57,0,49,0,0,9,48,0,46,0,48,0,48,0,0,11,57,0,57,0,57,0,57,0,48,0,0,9,85,0,115,0,101,0,100,0,0,1,0,93,67,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,111,0,110,0,108,0,121,0,32,0,99,0,111,0,110,0,116,0,97,0,105,0,110,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,39,0,1,9,48,0,48,0,48,0,48,0,0,11,48,0,48,0,48,0,48,0,48,0,0,63,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,85,0,80,0,67,0,95,0,69,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,105,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,99,0,111,0,110,0,116,0,101,0,110,0,116,0,115,0,32,0,115,0,104,0,111,0,117,0,108,0,100,0,32,0,98,0,101,0,32,0,56,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,32,0,108,0,111,0,110,0,103,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,57,78,0,117,0,109,0,98,0,101,0,114,0,32,0,115,0,121,0,115,0,116,0,101,0,109,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,48,0,32,0,111,0,114,0,32,0,49,0,0,3,40,0,0,5,91,0,32,0,0,7,32,0,44,0,32,0,0,7,32,0,58,0,32,0,0,5,32,0,93,0,0,5,123,0,32,0,0,5,32,0,125,0,0,7,51,0,49,0,48,0,0,5,49,0,49,0,0,7,51,0,50,0,48,0,0,5,49,0,51,0,0,5,49,0,53,0,0,5,49,0,55,0,0,35,117,0,110,0,107,0,110,0,111,0,119,0,110,0,32,0,100,0,101,0,99,0,111,0,100,0,101,0,114,0,58,0,32,0,0,13,40,0,51,0,49,0,48,0,51,0,41,0,0,13,40,0,51,0,50,0,48,0,50,0,41,0,0,13,40,0,51,0,50,0,48,0,51,0,41,0,0,9,40,0,51,0,57,0,50,0,0,9,40,0,51,0,57,0,51,0,0,9,40,0,48,0,49,0,41,0,0,67,100,0,105,0,103,0,105,0,116,0,115,0,32,0,104,0,97,0,115,0,32,0,116,0,111,0,32,0,98,0,101,0,32,0,98,0,101,0,116,0,119,0,101,0,101,0,110,0,32,0,48,0,32,0,97,0,110,0,100,0,32,0,49,0,48,0,0,5,48,0,48,0,0,5,48,0,49,0,0,5,48,0,50,0,0,5,49,0,48,0,0,5,49,0,50,0,0,5,50,0,48,0,0,5,50,0,49,0,0,5,50,0,50,0,0,5,51,0,48,0,0,5,51,0,55,0,0,5,57,0,48,0,0,5,57,0,49,0,0,5,57,0,50,0,0,5,57,0,51,0,0,5,57,0,52,0,0,5,57,0,53,0,0,5,57,0,54,0,0,5,57,0,55,0,0,5,57,0,56,0,0,5,57,0,57,0,0,7,50,0,52,0,48,0,0,7,50,0,52,0,49,0,0,7,50,0,52,0,50,0,0,7,50,0,53,0,48,0,0,7,50,0,53,0,49,0,0,7,50,0,53,0,51,0,0,7,50,0,53,0,52,0,0,7,52,0,48,0,48,0,0,7,52,0,48,0,49,0,0,7,52,0,48,0,50,0,0,7,52,0,48,0,51,0,0,7,52,0,49,0,48,0,0,7,52,0,49,0,49,0,0,7,52,0,49,0,50,0,0,7,52,0,49,0,51,0,0,7,52,0,49,0,52,0,0,7,52,0,50,0,48,0,0,7,52,0,50,0,49,0,0,7,52,0,50,0,50,0,0,7,52,0,50,0,51,0,0,7,52,0,50,0,52,0,0,7,52,0,50,0,53,0,0,7,52,0,50,0,54,0,0,7,51,0,49,0,49,0,0,7,51,0,49,0,50,0,0,7,51,0,49,0,51,0,0,7,51,0,49,0,52,0,0,7,51,0,49,0,53,0,0,7,51,0,49,0,54,0,0,7,51,0,50,0,49,0,0,7,51,0,50,0,50,0,0,7,51,0,50,0,51,0,0,7,51,0,50,0,52,0,0,7,51,0,50,0,53,0,0,7,51,0,50,0,54,0,0,7,51,0,50,0,55,0,0,7,51,0,50,0,56,0,0,7,51,0,50,0,57,0,0,7,51,0,51,0,48,0,0,7,51,0,51,0,49,0,0,7,51,0,51,0,50,0,0,7,51,0,51,0,51,0,0,7,51,0,51,0,52,0,0,7,51,0,51,0,53,0,0,7,51,0,51,0,54,0,0,7,51,0,52,0,48,0,0,7,51,0,52,0,49,0,0,7,51,0,52,0,50,0,0,7,51,0,52,0,51,0,0,7,51,0,52,0,52,0,0,7,51,0,52,0,53,0,0,7,51,0,52,0,54,0,0,7,51,0,52,0,55,0,0,7,51,0,52,0,56,0,0,7,51,0,52,0,57,0,0,7,51,0,53,0,48,0,0,7,51,0,53,0,49,0,0,7,51,0,53,0,50,0,0,7,51,0,53,0,51,0,0,7,51,0,53,0,52,0,0,7,51,0,53,0,53,0,0,7,51,0,53,0,54,0,0,7,51,0,53,0,55,0,0,7,51,0,54,0,48,0,0,7,51,0,54,0,49,0,0,7,51,0,54,0,50,0,0,7,51,0,54,0,51,0,0,7,51,0,54,0,52,0,0,7,51,0,54,0,53,0,0,7,51,0,54,0,54,0,0,7,51,0,54,0,55,0,0,7,51,0,54,0,56,0,0,7,51,0,54,0,57,0,0,7,51,0,57,0,48,0,0,7,51,0,57,0,49,0,0,7,51,0,57,0,50,0,0,7,51,0,57,0,51,0,0,7,55,0,48,0,51,0,0,9,55,0,48,0,48,0,49,0,0,9,55,0,48,0,48,0,50,0,0,9,55,0,48,0,48,0,51,0,0,9,56,0,48,0,48,0,49,0,0,9,56,0,48,0,48,0,50,0,0,9,56,0,48,0,48,0,51,0,0,9,56,0,48,0,48,0,52,0,0,9,56,0,48,0,48,0,53,0,0,9,56,0,48,0,48,0,54,0,0,9,56,0,48,0,48,0,55,0,0,9,56,0,48,0,48,0,56,0,0,9,56,0,48,0,49,0,56,0,0,9,56,0,48,0,50,0,48,0,0,9,56,0,49,0,48,0,48,0,0,9,56,0,49,0,48,0,49,0,0,9,56,0,49,0,48,0,50,0,0,9,56,0,49,0,49,0,48,0,0,9,56,0,50,0,48,0,48,0,0,73,68,0,101,0,99,0,111,0,100,0,105,0,110,0,103,0,32,0,105,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,73,0,83,0,79,0,47,0,73,0,69,0,67,0,32,0,54,0,52,0,54,0,32,0,118,0,97,0,108,0,117,0,101,0,58,0,32,0,0,75,68,0,101,0,99,0,111,0,100,0,105,0,110,0,103,0,32,0,105,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,97,0,108,0,112,0,104,0,97,0,110,0,117,0,109,0,101,0,114,0,105,0,99,0,32,0,118,0,97,0,108,0,117,0,101,0,58,0,32,0,0,21,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,0,7,48,0,48,0,48,0,0,15,91,0,41,0,62,0,30,0,48,0,49,0,29,0,1,3,29,0,1,19,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,0,128,129,10,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,250,255,28,0,29,0,30,0,251,255,32,0,252,255,34,0,35,0,36,0,37,0,38,0,39,0,40,0,41,0,42,0,43,0,44,0,45,0,46,0,47,0,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,58,0,241,255,242,255,243,255,244,255,248,255,1,128,129,96,0,97,0,98,0,99,0,100,0,101,0,102,0,103,0,104,0,105,0,106,0,107,0,108,0,109,0,110,0,111,0,112,0,113,0,114,0,115,0,116,0,117,0,118,0,119,0,120,0,121,0,122,0,250,255,28,0,29,0,30,0,251,255,123,0,252,255,125,0,126,0,127,0,59,0,60,0,61,0,62,0,63,0,91,0,92,0,93,0,94,0,95,0,32,0,44,0,46,0,47,0,58,0,64,0,33,0,124,0,252,255,245,255,246,255,252,255,240,255,242,255,243,255,244,255,247,255,1,127,192,0,193,0,194,0,195,0,196,0,197,0,198,0,199,0,200,0,201,0,202,0,203,0,204,0,205,0,206,0,207,0,208,0,209,0,210,0,211,0,212,0,213,0,214,0,215,0,216,0,217,0,218,0,250,255,28,0,29,0,30,0,219,0,220,0,221,0,222,0,223,0,170,0,172,0,177,0,178,0,179,0,181,0,185,0,186,0,188,0,189,0,190,0,128,0,129,0,130,0,131,0,132,0,133,0,134,0,135,0,136,0,137,0,247,255,32,0,249,255,243,255,244,255,248,255,1,128,129,224,0,225,0,226,0,227,0,228,0,229,0,230,0,231,0,232,0,233,0,234,0,235,0,236,0,237,0,238,0,239,0,240,0,241,0,242,0,243,0,244,0,245,0,246,0,247,0,248,0,249,0,250,0,250,255,28,0,29,0,30,0,251,255,251,0,252,0,253,0,254,0,255,0,161,0,168,0,171,0,175,0,176,0,180,0,183,0,184,0,187,0,191,0,138,0,139,0,140,0,141,0,142,0,143,0,144,0,145,0,146,0,147,0,148,0,247,255,32,0,242,255,249,255,244,255,248,255,1,128,129,0,0,1,0,2,0,3,0,4,0,5,0,6,0,7,0,8,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,16,0,17,0,18,0,19,0,20,0,21,0,22,0,23,0,24,0,25,0,26,0,250,255,252,255,252,255,27,0,251,255,28,0,29,0,30,0,31,0,159,0,160,0,162,0,163,0,164,0,165,0,166,0,167,0,169,0,173,0,174,0,182,0,149,0,150,0,151,0,152,0,153,0,154,0,155,0,156,0,157,0,158,0,247,255,32,0,242,255,243,255,249,255,248,255,1,128,129,0,0,1,0,2,0,3,0,4,0,5,0,6,0,7,0,8,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,16,0,17,0,18,0,19,0,20,0,21,0,22,0,23,0,24,0,25,0,26,0,27,0,28,0,29,0,30,0,31,0,32,0,33,0,34,0,35,0,36,0,37,0,38,0,39,0,40,0,41,0,42,0,43,0,44,0,45,0,46,0,47,0,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,58,0,59,0,60,0,61,0,62,0,63,0,1,27,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,0,3,70,0,0,3,68,0,0,3,65,0,0,3,84,0,0,75,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,68,0,65,0,84,0,65,0,95,0,77,0,65,0,84,0,82,0,73,0,88,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,81,82,0,101,0,113,0,117,0,101,0,115,0,116,0,101,0,100,0,32,0,100,0,105,0,109,0,101,0,110,0,115,0,105,0,111,0,110,0,115,0,32,0,99,0,97,0,110,0,39,0,116,0,32,0,98,0,101,0,32,0,110,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,58,0,32,0,1,29,73,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,109,0,111,0,100,0,101,0,58,0,32,0,0,25,110,0,111,0,116,0,32,0,100,0,105,0,103,0,105,0,116,0,115,0,58,0,32,0,0,73,77,0,101,0,115,0,115,0,97,0,103,0,101,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,32,0,110,0,111,0,116,0,32,0,105,0,110,0,32,0,118,0,97,0,108,0,105,0,100,0,32,0,114,0,97,0,110,0,103,0,101,0,115,0,58,0,32,0,0,63,85,0,110,0,101,0,120,0,112,0,101,0,99,0,116,0,101,0,100,0,32,0,99,0,97,0,115,0,101,0,46,0,32,0,80,0,108,0,101,0,97,0,115,0,101,0,32,0,114,0,101,0,112,0,111,0,114,0,116,0,33,0,0,5,1,0,30,0,1,39,73,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,58,0,32,0,0,47,67,0,111,0,117,0,110,0,116,0,32,0,109,0,117,0,115,0,116,0,32,0,110,0,111,0,116,0,32,0,101,0,120,0,99,0,101,0,101,0,100,0,32,0,52,0,0,63,83,0,116,0,114,0,105,0,110,0,103,0,66,0,117,0,105,0,108,0,100,0,101,0,114,0,32,0,109,0,117,0,115,0,116,0,32,0,110,0,111,0,116,0,32,0,98,0,101,0,32,0,101,0,109,0,112,0,116,0,121,0,0,73,77,0,101,0,115,0,115,0,97,0,103,0,101,0,32,0,99,0,111,0,110,0,116,0,97,0,105,0,110,0,115,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,115,0,32,0,111,0,117,0,116,0,115,0,105,0,100,0,101,0,32,0,0,21,32,0,101,0,110,0,99,0,111,0,100,0,105,0,110,0,103,0,46,0,0,117,84,0,104,0,101,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,32,0,111,0,102,0,32,0,99,0,111,0,100,0,101,0,119,0,111,0,114,0,100,0,115,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,32,0,116,0,104,0,101,0,32,0,115,0,101,0,108,0,101,0,99,0,116,0,101,0,100,0,32,0,115,0,121,0,109,0,98,0,111,0,108,0,0,113,73,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,32,0,111,0,102,0,32,0,101,0,114,0,114,0,111,0,114,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,99,0,111,0,100,0,101,0,119,0,111,0,114,0,100,0,115,0,32,0,115,0,112,0,101,0,99,0,105,0,102,0,105,0,101,0,100,0,58,0,32,0,0,15,91,0,41,0,62,0,30,0,48,0,53,0,29,0,1,5,30,0,4,0,1,15,91,0,41,0,62,0,30,0,48,0,54,0,29,0,1,65,73,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,58,0,32,0,123,0,48,0,125,0,32,0,40,0,48,0,120,0,123,0,49,0,58,0,88,0,125,0,41,0,0,128,149,67,0,97,0,110,0,39,0,116,0,32,0,102,0,105,0,110,0,100,0,32,0,97,0,32,0,115,0,121,0,109,0,98,0,111,0,108,0,32,0,97,0,114,0,114,0,97,0,110,0,103,0,101,0,109,0,101,0,110,0,116,0,32,0,116,0,104,0,97,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,101,0,115,0,32,0,116,0,104,0,101,0,32,0,109,0,101,0,115,0,115,0,97,0,103,0,101,0,46,0,32,0,68,0,97,0,116,0,97,0,32,0,99,0,111,0,100,0,101,0,119,0,111,0,114,0,100,0,115,0,58,0,32,0,1,83,67,0,97,0,110,0,110,0,111,0,116,0,32,0,104,0,97,0,110,0,100,0,108,0,101,0,32,0,116,0,104,0,105,0,115,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,32,0,111,0,102,0,32,0,100,0,97,0,116,0,97,0,32,0,114,0,101,0,103,0,105,0,111,0,110,0,115,0,0,29,83,0,113,0,117,0,97,0,114,0,101,0,32,0,83,0,121,0,109,0,98,0,111,0,108,0,58,0,0,39,82,0,101,0,99,0,116,0,97,0,110,0,103,0,117,0,108,0,97,0,114,0,32,0,83,0,121,0,109,0,98,0,111,0,108,0,58,0,0,27,32,0,100,0,97,0,116,0,97,0,32,0,114,0,101,0,103,0,105,0,111,0,110,0,32,0,0,29,44,0,32,0,115,0,121,0,109,0,98,0,111,0,108,0,32,0,115,0,105,0,122,0,101,0,32,0,0,39,44,0,32,0,115,0,121,0,109,0,98,0,111,0,108,0,32,0,100,0,97,0,116,0,97,0,32,0,115,0,105,0,122,0,101,0,32,0,0,25,44,0,32,0,99,0,111,0,100,0,101,0,119,0,111,0,114,0,100,0,115,0,32,0,0,101,68,0,105,0,109,0,101,0,110,0,115,0,105,0,111,0,110,0,32,0,111,0,102,0,32,0,98,0,105,0,116,0,77,0,97,0,116,0,114,0,105,0,120,0,32,0,109,0,117,0,115,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,32,0,116,0,104,0,101,0,32,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,32,0,115,0,105,0,122,0,101,0,0,91,80,0,108,0,97,0,116,0,102,0,111,0,114,0,109,0,32,0,100,0,111,0,101,0,115,0,32,0,110,0,111,0,116,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,32,0,114,0,101,0,113,0,117,0,105,0,114,0,101,0,100,0,32,0,101,0,110,0,99,0,111,0,100,0,105,0,110,0,103,0,58,0,32,0,0,47,115,0,105,0,122,0,101,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,97,0,116,0,32,0,108,0,101,0,97,0,115,0,116,0,32,0,49,0,0,67,78,0,117,0,109,0,32,0,98,0,105,0,116,0,115,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,98,0,101,0,116,0,119,0,101,0,101,0,110,0,32,0,48,0,32,0,97,0,110,0,100,0,32,0,51,0,50,0,0,35,83,0,105,0,122,0,101,0,115,0,32,0,100,0,111,0,110,0,39,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,1,87,67,0,97,0,110,0,39,0,116,0,32,0,99,0,97,0,108,0,108,0,32,0,68,0,105,0,109,0,101,0,110,0,115,0,105,0,111,0,110,0,32,0,111,0,110,0,32,0,97,0,32,0,110,0,111,0,110,0,45,0,115,0,113,0,117,0,97,0,114,0,101,0,32,0,109,0,97,0,116,0,114,0,105,0,120,0,1,77,66,0,111,0,116,0,104,0,32,0,100,0,105,0,109,0,101,0,110,0,115,0,105,0,111,0,110,0,115,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,103,0,114,0,101,0,97,0,116,0,101,0,114,0,32,0,116,0,104,0,97,0,110,0,32,0,48,0,0,3,13,0,0,49,114,0,111,0,119,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,115,0,32,0,100,0,111,0,32,0,110,0,111,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,0,63,105,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,32,0,101,0,110,0,99,0,111,0,117,0,110,0,116,0,101,0,114,0,101,0,100,0,58,0,32,0,0,73,105,0,110,0,112,0,117,0,116,0,32,0,109,0,97,0,116,0,114,0,105,0,120,0,32,0,100,0,105,0,109,0,101,0,110,0,115,0,105,0,111,0,110,0,115,0,32,0,100,0,111,0,32,0,110,0,111,0,116,0,32,0,109,0,97,0,116,0,99,0,104,0,0,65,76,0,101,0,102,0,116,0,32,0,97,0,110,0,100,0,32,0,116,0,111,0,112,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,110,0,111,0,110,0,110,0,101,0,103,0,97,0,116,0,105,0,118,0,101,0,0,71,72,0,101,0,105,0,103,0,104,0,116,0,32,0,97,0,110,0,100,0,32,0,119,0,105,0,100,0,116,0,104,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,97,0,116,0,32,0,108,0,101,0,97,0,115,0,116,0,32,0,49,0,0,75,84,0,104,0,101,0,32,0,114,0,101,0,103,0,105,0,111,0,110,0,32,0,109,0,117,0,115,0,116,0,32,0,102,0,105,0,116,0,32,0,105,0,110,0,115,0,105,0,100,0,101,0,32,0,116,0,104,0,101,0,32,0,109,0,97,0,116,0,114,0,105,0,120,0,0,5,88,0,32,0,0,15,110,0,117,0,109,0,66,0,105,0,116,0,115,0,0,11,67,0,80,0,52,0,51,0,55,0,0,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,50,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,50,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,51,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,51,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,52,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,52,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,53,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,53,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,54,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,54,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,55,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,55,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,56,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,56,0,0,21,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,57,0,1,19,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,57,0,0,23,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,48,0,1,21,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,48,0,0,23,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,49,0,1,21,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,49,0,0,23,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,51,0,1,21,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,51,0,0,23,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,52,0,1,21,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,52,0,0,23,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,53,0,1,21,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,53,0,0,23,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,54,0,1,21,73,0,83,0,79,0,56,0,56,0,53,0,57,0,95,0,49,0,54,0,0,9,83,0,74,0,73,0,83,0,0,25,87,0,73,0,78,0,68,0,79,0,87,0,83,0,45,0,49,0,50,0,53,0,48,0,1,13,67,0,80,0,49,0,50,0,53,0,48,0,0,25,87,0,73,0,78,0,68,0,79,0,87,0,83,0,45,0,49,0,50,0,53,0,49,0,1,13,67,0,80,0,49,0,50,0,53,0,49,0,0,25,87,0,73,0,78,0,68,0,79,0,87,0,83,0,45,0,49,0,50,0,53,0,50,0,1,13,67,0,80,0,49,0,50,0,53,0,50,0,0,25,87,0,73,0,78,0,68,0,79,0,87,0,83,0,45,0,49,0,50,0,53,0,54,0,1,13,67,0,80,0,49,0,50,0,53,0,54,0,0,17,85,0,84,0,70,0,45,0,49,0,54,0,66,0,69,0,1,21,85,0,78,0,73,0,67,0,79,0,68,0,69,0,66,0,73,0,71,0,0,9,85,0,84,0,70,0,56,0,0,17,85,0,83,0,45,0,65,0,83,0,67,0,73,0,73,0,1,9,66,0,73,0,71,0,53,0,0,15,71,0,66,0,49,0,56,0,48,0,51,0,48,0,0,13,71,0,66,0,50,0,51,0,49,0,50,0,0,13,69,0,85,0,67,0,95,0,67,0,78,0,0,7,71,0,66,0,75,0,0,13,69,0,85,0,67,0,45,0,75,0,82,0,1,13,69,0,85,0,67,0,95,0,75,0,82,0,0,31,66,0,97,0,100,0,32,0,69,0,67,0,73,0,32,0,118,0,97,0,108,0,117,0,101,0,58,0,32,0,0,13,69,0,85,0,67,0,45,0,74,0,80,0,1,11,71,0,70,0,40,0,48,0,120,0,0,3,88,0,0,3,44,0,0,95,71,0,101,0,110,0,101,0,114,0,105,0,99,0,71,0,70,0,80,0,111,0,108,0,121,0,115,0,32,0,100,0,111,0,32,0,110,0,111,0,116,0,32,0,104,0,97,0,118,0,101,0,32,0,115,0,97,0,109,0,101,0,32,0,71,0,101,0,110,0,101,0,114,0,105,0,99,0,71,0,70,0,32,0,102,0,105,0,101,0,108,0,100,0,0,23,68,0,105,0,118,0,105,0,100,0,101,0,32,0,98,0,121,0,32,0,48,0,0,5,97,0,94,0,0,51,78,0,111,0,32,0,101,0,114,0,114,0,111,0,114,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,98,0,121,0,116,0,101,0,115,0,0,45,78,0,111,0,32,0,100,0,97,0,116,0,97,0,32,0,98,0,121,0,116,0,101,0,115,0,32,0,112,0,114,0,111,0,118,0,105,0,100,0,101,0,100,0,0,13,77,0,69,0,77,0,79,0,82,0,89,0,0,13,78,0,65,0,77,0,69,0,49,0,58,0,0,13,78,0,65,0,77,0,69,0,50,0,58,0,0,7,84,0,69,0,76,0,0,9,77,0,65,0,73,0,76,0,0,15,77,0,69,0,77,0,79,0,82,0,89,0,58,0,0,9,65,0,68,0,68,0,58,0,0,3,58,0,0,15,77,0,69,0,67,0,65,0,82,0,68,0,58,0,0,5,78,0,58,0,0,13,83,0,79,0,85,0,78,0,68,0,58,0,0,9,84,0,69,0,76,0,58,0,0,13,69,0,77,0,65,0,73,0,76,0,58,0,0,11,78,0,79,0,84,0,69,0,58,0,0,9,65,0,68,0,82,0,58,0,0,11,66,0,68,0,65,0,89,0,58,0,0,9,85,0,82,0,76,0,58,0,0,9,79,0,82,0,71,0,58,0,0,77,80,0,104,0,111,0,110,0,101,0,32,0,110,0,117,0,109,0,98,0,101,0,114,0,115,0,32,0,97,0,110,0,100,0,32,0,116,0,121,0,112,0,101,0,115,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,115,0,32,0,100,0,105,0,102,0,102,0,101,0,114,0,0,63,69,0,109,0,97,0,105,0,108,0,115,0,32,0,97,0,110,0,100,0,32,0,116,0,121,0,112,0,101,0,115,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,115,0,32,0,100,0,105,0,102,0,102,0,101,0,114,0,0,69,65,0,100,0,100,0,114,0,101,0,115,0,115,0,101,0,115,0,32,0,97,0,110,0,100,0,32,0,116,0,121,0,112,0,101,0,115,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,115,0,32,0,100,0,105,0,102,0,102,0,101,0,114,0,0,17,66,0,73,0,90,0,67,0,65,0,82,0,68,0,58,0,0,5,88,0,58,0,0,5,84,0,58,0,0,5,67,0,58,0,0,5,65,0,58,0,0,5,66,0,58,0,0,5,77,0,58,0,0,5,70,0,58,0,0,5,69,0,58,0,0,13,77,0,69,0,66,0,75,0,77,0,58,0,0,13,84,0,73,0,84,0,76,0,69,0,58,0,0,39,110,0,111,0,32,0,100,0,97,0,116,0,101,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,58,0,32,0,123,0,48,0,125,0,0,17,121,0,121,0,121,0,121,0,77,0,77,0,100,0,100,0,0,35,121,0,121,0,121,0,121,0,77,0,77,0,100,0,100,0,39,0,84,0,39,0,72,0,72,0,109,0,109,0,115,0,115,0,1,128,141,92,0,65,0,40,0,63,0,58,0,80,0,40,0,63,0,58,0,40,0,92,0,100,0,43,0,41,0,87,0,41,0,63,0,40,0,63,0,58,0,40,0,92,0,100,0,43,0,41,0,68,0,41,0,63,0,40,0,63,0,58,0,84,0,40,0,63,0,58,0,40,0,92,0,100,0,43,0,41,0,72,0,41,0,63,0,40,0,63,0,58,0,40,0,92,0,100,0,43,0,41,0,77,0,41,0,63,0,40,0,63,0,58,0,40,0,92,0,100,0,43,0,41,0,83,0,41,0,63,0,41,0,63,0,41,0,92,0,122,0,0,61,92,0,65,0,40,0,63,0,58,0,91,0,48,0,45,0,57,0,93,0,123,0,56,0,125,0,40,0,84,0,91,0,48,0,45,0,57,0,93,0,123,0,54,0,125,0,90,0,63,0,41,0,63,0,41,0,92,0,122,0,1,15,109,0,97,0,105,0,108,0,116,0,111,0,58,0,0,5,116,0,111,0,0,5,99,0,99,0,0,7,98,0,99,0,99,0,0,15,115,0,117,0,98,0,106,0,101,0,99,0,116,0,0,9,98,0,111,0,100,0,121,0,0,15,77,0,65,0,84,0,77,0,83,0,71,0,58,0,0,7,84,0,79,0,58,0,0,9,83,0,85,0,66,0,58,0,0,11,66,0,79,0,68,0,89,0,58,0,0,85,92,0,65,0,40,0,63,0,58,0,91,0,97,0,45,0,122,0,65,0,45,0,90,0,48,0,45,0,57,0,64,0,46,0,33,0,35,0,36,0,37,0,38,0,39,0,42,0,43,0,92,0,45,0,47,0,61,0,63,0,94,0,95,0,96,0,123,0,124,0,125,0,126,0,93,0,43,0,41,0,92,0,122,0,1,5,75,0,71,0,0,9,51,0,49,0,48,0,48,0,0,9,51,0,49,0,48,0,49,0,0,9,51,0,49,0,48,0,50,0,0,9,51,0,49,0,48,0,51,0,0,9,51,0,49,0,48,0,52,0,0,9,51,0,49,0,48,0,53,0,0,9,51,0,49,0,48,0,54,0,0,9,51,0,49,0,48,0,55,0,0,9,51,0,49,0,48,0,56,0,0,9,51,0,49,0,48,0,57,0,0,9,51,0,50,0,48,0,48,0,0,9,51,0,50,0,48,0,49,0,0,9,51,0,50,0,48,0,50,0,0,9,51,0,50,0,48,0,51,0,0,9,51,0,50,0,48,0,52,0,0,9,51,0,50,0,48,0,53,0,0,9,51,0,50,0,48,0,54,0,0,9,51,0,50,0,48,0,55,0,0,9,51,0,50,0,48,0,56,0,0,9,51,0,50,0,48,0,57,0,0,9,51,0,57,0,50,0,48,0,0,9,51,0,57,0,50,0,49,0,0,9,51,0,57,0,50,0,50,0,0,9,51,0,57,0,50,0,51,0,0,9,51,0,57,0,51,0,48,0,0,9,51,0,57,0,51,0,49,0,0,9,51,0,57,0,51,0,50,0,0,9,51,0,57,0,51,0,51,0,0,37,123,0,48,0,58,0,48,0,46,0,48,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,125,0,0,5,44,0,32,0,0,5,32,0,40,0,0,9,103,0,101,0,111,0,58,0,0,55,104,0,116,0,116,0,112,0,58,0,47,0,47,0,109,0,97,0,112,0,115,0,46,0,103,0,111,0,111,0,103,0,108,0,101,0,46,0,99,0,111,0,109,0,47,0,63,0,108,0,108,0,61,0,0,7,38,0,122,0,61,0,0,127,92,0,65,0,40,0,63,0,58,0,103,0,101,0,111,0,58,0,40,0,91,0,92,0,45,0,48,0,45,0,57,0,46,0,93,0,43,0,41,0,44,0,40,0,91,0,92,0,45,0,48,0,45,0,57,0,46,0,93,0,43,0,41,0,40,0,63,0,58,0,44,0,40,0,91,0,92,0,45,0,48,0,45,0,57,0,46,0,93,0,43,0,41,0,41,0,63,0,40,0,63,0,58,0,92,0,63,0,40,0,46,0,42,0,41,0,41,0,63,0,41,0,92,0,122,0,1,7,57,0,55,0,56,0,0,7,57,0,55,0,57,0,0,39,117,0,114,0,108,0,32,0,100,0,101,0,99,0,111,0,100,0,105,0,110,0,103,0,32,0,102,0,97,0,105,0,108,0,101,0,100,0,0,23,92,0,65,0,40,0,63,0,58,0,92,0,100,0,43,0,41,0,92,0,122,0,0,3,38,0,0,3,61,0,0,9,115,0,109,0,115,0,58,0,0,9,83,0,77,0,83,0,58,0,0,9,109,0,109,0,115,0,58,0,0,9,77,0,77,0,83,0,58,0,0,9,118,0,105,0,97,0,61,0,0,11,59,0,118,0,105,0,97,0,61,0,0,11,98,0,111,0,100,0,121,0,61,0,0,17,115,0,117,0,98,0,106,0,101,0,99,0,116,0,61,0,0,13,115,0,109,0,115,0,116,0,111,0,58,0,0,13,83,0,77,0,83,0,84,0,79,0,58,0,0,13,109,0,109,0,115,0,116,0,111,0,58,0,0,13,77,0,77,0,83,0,84,0,79,0,58,0,0,11,115,0,109,0,116,0,112,0,58,0,0,11,83,0,77,0,84,0,80,0,58,0,0,9,116,0,101,0,108,0,58,0,0,15,104,0,116,0,116,0,112,0,58,0,47,0,47,0,0,35,58,0,47,0,42,0,40,0,91,0,94,0,47,0,64,0,93,0,43,0,41,0,64,0,91,0,94,0,47,0,93,0,43,0,0,9,85,0,82,0,73,0,58,0,0,49,91,0,97,0,45,0,122,0,65,0,45,0,90,0,93,0,91,0,97,0,45,0,122,0,65,0,45,0,90,0,48,0,45,0,57,0,43,0,45,0,46,0,93,0,43,0,58,0,1,109,40,0,91,0,97,0,45,0,122,0,65,0,45,0,90,0,48,0,45,0,57,0,92,0,45,0,93,0,43,0,92,0,46,0,41,0,123,0,49,0,44,0,54,0,125,0,91,0,97,0,45,0,122,0,65,0,45,0,90,0,93,0,123,0,50,0,44,0,125,0,40,0,58,0,92,0,100,0,123,0,49,0,44,0,53,0,125,0,41,0,63,0,40,0,47,0,124,0,92,0,63,0,124,0,36,0,41,0,1,13,117,0,114,0,108,0,116,0,111,0,58,0,0,13,85,0,82,0,76,0,84,0,79,0,58,0,0,5,70,0,78,0,0,3,78,0,0,17,78,0,73,0,67,0,75,0,78,0,65,0,77,0,69,0,0,11,69,0,77,0,65,0,73,0,76,0,0,9,78,0,79,0,84,0,69,0,0,7,65,0,68,0,82,0,0,7,79,0,82,0,71,0,0,9,66,0,68,0,65,0,89,0,0,11,84,0,73,0,84,0,76,0,69,0,0,7,85,0,82,0,76,0,0,9,73,0,77,0,80,0,80,0,0,7,71,0,69,0,79,0,0,15,40,0,63,0,58,0,94,0,124,0,10,0,41,0,0,29,40,0,63,0,58,0,59,0,40,0,91,0,94,0,58,0,93,0,42,0,41,0,41,0,63,0,58,0,0,17,69,0,78,0,67,0,79,0,68,0,73,0,78,0,71,0,0,33,81,0,85,0,79,0,84,0,69,0,68,0,45,0,80,0,82,0,73,0,78,0,84,0,65,0,66,0,76,0,69,0,1,15,67,0,72,0,65,0,82,0,83,0,69,0,84,0,0,11,86,0,65,0,76,0,85,0,69,0,0,5,36,0,49,0,0,7,117,0,114,0,105,0,0,9,84,0,89,0,80,0,69,0,0,23,66,0,69,0,71,0,73,0,78,0,58,0,86,0,67,0,65,0,82,0,68,0,0,55,92,0,65,0,40,0,63,0,58,0,92,0,100,0,123,0,52,0,125,0,45,0,63,0,92,0,100,0,123,0,50,0,125,0,45,0,63,0,92,0,100,0,123,0,50,0,125,0,41,0,92,0,122,0,1,13,13,0,10,0,91,0,32,0,9,0,93,0,0,13,92,0,92,0,91,0,110,0,78,0,93,0,0,21,92,0,92,0,40,0,91,0,44,0,59,0,92,0,92,0,93,0,41,0,0,3,59,0,0,19,40,0,63,0,60,0,33,0,92,0,92,0,41,0,59,0,43,0,0,9,91,0,59,0,44,0,93,0,0,25,66,0,69,0,71,0,73,0,78,0,58,0,86,0,69,0,86,0,69,0,78,0,84,0,0,15,83,0,85,0,77,0,77,0,65,0,82,0,89,0,0,15,68,0,84,0,83,0,84,0,65,0,82,0,84,0,0,11,68,0,84,0,69,0,78,0,68,0,0,17,68,0,85,0,82,0,65,0,84,0,73,0,79,0,78,0,0,17,76,0,79,0,67,0,65,0,84,0,73,0,79,0,78,0,0,19,79,0,82,0,71,0,65,0,78,0,73,0,90,0,69,0,82,0,0,17,65,0,84,0,84,0,69,0,78,0,68,0,69,0,69,0,0,23,68,0,69,0,83,0,67,0,82,0,73,0,80,0,84,0,73,0,79,0,78,0,0,15,77,0,65,0,73,0,76,0,84,0,79,0,58,0,0,5,75,0,79,0,0,5,85,0,75,0,0,11,91,0,73,0,79,0,81,0,93,0,0,41,92,0,65,0,40,0,63,0,58,0,91,0,65,0,45,0,90,0,48,0,45,0,57,0,93,0,123,0,49,0,55,0,125,0,41,0,92,0,122,0,1,11,87,0,73,0,70,0,73,0,58,0,0,5,83,0,58,0,0,5,80,0,58,0,0,13,110,0,111,0,112,0,97,0,115,0,115,0,0,5,72,0,58,0,0,5,73,0,58,0,0,73,67,0,97,0,110,0,32,0,111,0,110,0,108,0,121,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,32,0,65,0,90,0,84,0,69,0,67,0,32,0,99,0,111,0,100,0,101,0,44,0,32,0,98,0,117,0,116,0,32,0,103,0,111,0,116,0,32,0,0,41,78,0,111,0,32,0,105,0,110,0,112,0,117,0,116,0,32,0,99,0,111,0,100,0,101,0,32,0,109,0,97,0,116,0,114,0,105,0,120,0,0,11,67,0,84,0,82,0,76,0,95,0,0,15,67,0,84,0,82,0,76,0,95,0,80,0,83,0,0,3,66,0,0,3,67,0,0,3,69,0,0,3,71,0,0,3,73,0,0,3,74,0,0,3,75,0,0,3,79,0,0,3,80,0,0,3,82,0,0,3,83,0,0,3,85,0,0,3,86,0,0,3,87,0,0,3,89,0,0,3,90,0,0,15,67,0,84,0,82,0,76,0,95,0,76,0,76,0,0,15,67,0,84,0,82,0,76,0,95,0,77,0,76,0,0,15,67,0,84,0,82,0,76,0,95,0,68,0,76,0,0,15,67,0,84,0,82,0,76,0,95,0,66,0,83,0,0,3,97,0,0,3,98,0,0,3,99,0,0,3,100,0,0,3,101,0,0,3,102,0,0,3,103,0,0,3,104,0,0,3,105,0,0,3,106,0,0,3,107,0,0,3,108,0,0,3,109,0,0,3,110,0,0,3,111,0,0,3,112,0,0,3,113,0,0,3,114,0,0,3,115,0,0,3,116,0,0,3,117,0,0,3,118,0,0,3,119,0,0,3,121,0,0,3,122,0,0,15,67,0,84,0,82,0,76,0,95,0,85,0,83,0,0,3,1,0,1,3,2,0,1,3,3,0,1,3,4,0,1,3,5,0,1,3,6,0,1,3,7,0,1,3,8,0,1,3,9,0,0,3,12,0,0,3,33,0,0,3,34,0,0,3,35,0,0,3,64,0,0,3,92,0,0,3,94,0,0,3,95,0,0,3,96,0,0,3,126,0,0,3,177,0,1,15,67,0,84,0,82,0,76,0,95,0,85,0,76,0,0,15,67,0,84,0,82,0,76,0,95,0,80,0,76,0,0,5,46,0,32,0,0,5,58,0,32,0,0,3,42,0,0,3,60,0,0,3,62,0,0,3,63,0,0,3,93,0,0,3,123,0,0,3,125,0,0,3,50,0,0,3,51,0,0,3,52,0,0,3,53,0,0,3,54,0,0,3,55,0,0,3,56,0,0,3,57,0,0,5,58,0,58,0,0,57,73,0,108,0,108,0,101,0,103,0,97,0,108,0,32,0,118,0,97,0,108,0,117,0,101,0,32,0,123,0,48,0,125,0,32,0,102,0,111,0,114,0,32,0,108,0,97,0,121,0,101,0,114,0,115,0,0,77,68,0,97,0,116,0,97,0,32,0,116,0,111,0,32,0,108,0,97,0,114,0,103,0,101,0,32,0,102,0,111,0,114,0,32,0,117,0,115,0,101,0,114,0,32,0,115,0,112,0,101,0,99,0,105,0,102,0,105,0,101,0,100,0,32,0,108,0,97,0,121,0,101,0,114,0,0,65,68,0,97,0,116,0,97,0,32,0,116,0,111,0,111,0,32,0,108,0,97,0,114,0,103,0,101,0,32,0,102,0,111,0,114,0,32,0,97,0,110,0,32,0,65,0,122,0,116,0,101,0,99,0,32,0,99,0,111,0,100,0,101,0,0,105,115,0,105,0,122,0,101,0,32,0,111,0,102,0,32,0,98,0,105,0,116,0,32,0,97,0,114,0,114,0,97,0,121,0,32,0,105,0,115,0,32,0,110,0,111,0,116,0,32,0,97,0,32,0,109,0,117,0,108,0,116,0,105,0,112,0,108,0,101,0,32,0,111,0,102,0,32,0,116,0,104,0,101,0,32,0,119,0,111,0,114,0,100,0,32,0,115,0,105,0,122,0,101,0,0,45,85,0,110,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,101,0,100,0,32,0,119,0,111,0,114,0,100,0,32,0,115,0,105,0,122,0,101,0,32,0,0,11,85,0,80,0,80,0,69,0,82,0,0,11,76,0,79,0,87,0,69,0,82,0,0,11,68,0,73,0,71,0,73,0,84,0,0,11,77,0,73,0,88,0,69,0,68,0,0,11,80,0,85,0,78,0,67,0,84,0,0,45,123,0,48,0,125,0,32,0,98,0,105,0,116,0,115,0,61,0,123,0,49,0,125,0,32,0,98,0,121,0,116,0,101,0,115,0,61,0,123,0,50,0,125,0,0,75,60,0,63,0,120,0,109,0,108,0,32,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,61,0,34,0,49,0,46,0,48,0,34,0,32,0,115,0,116,0,97,0,110,0,100,0,97,0,108,0,111,0,110,0,101,0,61,0,34,0,110,0,111,0,34,0,63,0,62,0,0,127,60,0,33,0,45,0,45,0,32,0,67,0,114,0,101,0,97,0,116,0,101,0,100,0,32,0,119,0,105,0,116,0,104,0,32,0,90,0,88,0,105,0,110,0,103,0,46,0,78,0,101,0,116,0,32,0,40,0,104,0,116,0,116,0,112,0,58,0,47,0,47,0,122,0,120,0,105,0,110,0,103,0,110,0,101,0,116,0,46,0,99,0,111,0,100,0,101,0,112,0,108,0,101,0,120,0,46,0,99,0,111,0,109,0,47,0,41,0,32,0,45,0,45,0,62,0,1,128,197,60,0,33,0,68,0,79,0,67,0,84,0,89,0,80,0,69,0,32,0,115,0,118,0,103,0,32,0,80,0,85,0,66,0,76,0,73,0,67,0,32,0,34,0,45,0,47,0,47,0,87,0,51,0,67,0,47,0,47,0,68,0,84,0,68,0,32,0,83,0,86,0,71,0,32,0,49,0,46,0,49,0,47,0,47,0,69,0,78,0,34,0,32,0,34,0,104,0,116,0,116,0,112,0,58,0,47,0,47,0,119,0,119,0,119,0,46,0,119,0,51,0,46,0,111,0,114,0,103,0,47,0,71,0,114,0,97,0,112,0,104,0,105,0,99,0,115,0,47,0,83,0,86,0,71,0,47,0,49,0,46,0,49,0,47,0,68,0,84,0,68,0,47,0,115,0,118,0,103,0,49,0,49,0,46,0,100,0,116,0,100,0,34,0,62,0,1,13,60,0,47,0,115,0,118,0,103,0,62,0,0,129,177,60,0,115,0,118,0,103,0,32,0,120,0,109,0,108,0,110,0,115,0,61,0,34,0,104,0,116,0,116,0,112,0,58,0,47,0,47,0,119,0,119,0,119,0,46,0,119,0,51,0,46,0,111,0,114,0,103,0,47,0,50,0,48,0,48,0,48,0,47,0,115,0,118,0,103,0,34,0,32,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,61,0,34,0,49,0,46,0,50,0,34,0,32,0,98,0,97,0,115,0,101,0,80,0,114,0,111,0,102,0,105,0,108,0,101,0,61,0,34,0,116,0,105,0,110,0,121,0,34,0,32,0,115,0,104,0,97,0,112,0,101,0,45,0,114,0,101,0,110,0,100,0,101,0,114,0,105,0,110,0,103,0,61,0,34,0,99,0,114,0,105,0,115,0,112,0,69,0,100,0,103,0,101,0,115,0,34,0,32,0,118,0,105,0,101,0,119,0,66,0,111,0,120,0,61,0,34,0,48,0,32,0,48,0,32,0,123,0,48,0,125,0,32,0,123,0,49,0,125,0,34,0,32,0,118,0,105,0,101,0,119,0,112,0,111,0,114,0,116,0,45,0,102,0,105,0,108,0,108,0,61,0,34,0,114,0,103,0,98,0,40,0,123,0,50,0,125,0,41,0,34,0,32,0,118,0,105,0,101,0,119,0,112,0,111,0,114,0,116,0,45,0,102,0,105,0,108,0,108,0,45,0,111,0,112,0,97,0,99,0,105,0,116,0,121,0,61,0,34,0,123,0,51,0,125,0,34,0,32,0,102,0,105,0,108,0,108,0,61,0,34,0,114,0,103,0,98,0,40,0,123,0,52,0,125,0,41,0,34,0,32,0,102,0,105,0,108,0,108,0,45,0,111,0,112,0,97,0,99,0,105,0,116,0,121,0,61,0,34,0,123,0,53,0,125,0,34,0,32,0,123,0,54,0,125,0,62,0,1,129,227,60,0,115,0,118,0,103,0,32,0,120,0,109,0,108,0,110,0,115,0,61,0,34,0,104,0,116,0,116,0,112,0,58,0,47,0,47,0,119,0,119,0,119,0,46,0,119,0,51,0,46,0,111,0,114,0,103,0,47,0,50,0,48,0,48,0,48,0,47,0,115,0,118,0,103,0,34,0,32,0,118,0,101,0,114,0,115,0,105,0,111,0,110,0,61,0,34,0,49,0,46,0,50,0,34,0,32,0,98,0,97,0,115,0,101,0,80,0,114,0,111,0,102,0,105,0,108,0,101,0,61,0,34,0,116,0,105,0,110,0,121,0,34,0,32,0,115,0,104,0,97,0,112,0,101,0,45,0,114,0,101,0,110,0,100,0,101,0,114,0,105,0,110,0,103,0,61,0,34,0,99,0,114,0,105,0,115,0,112,0,69,0,100,0,103,0,101,0,115,0,34,0,32,0,118,0,105,0,101,0,119,0,66,0,111,0,120,0,61,0,34,0,48,0,32,0,48,0,32,0,123,0,48,0,125,0,32,0,123,0,49,0,125,0,34,0,32,0,118,0,105,0,101,0,119,0,112,0,111,0,114,0,116,0,45,0,102,0,105,0,108,0,108,0,61,0,34,0,114,0,103,0,98,0,40,0,123,0,50,0,125,0,41,0,34,0,32,0,118,0,105,0,101,0,119,0,112,0,111,0,114,0,116,0,45,0,102,0,105,0,108,0,108,0,45,0,111,0,112,0,97,0,99,0,105,0,116,0,121,0,61,0,34,0,123,0,51,0,125,0,34,0,32,0,102,0,105,0,108,0,108,0,61,0,34,0,114,0,103,0,98,0,40,0,123,0,52,0,125,0,41,0,34,0,32,0,102,0,105,0,108,0,108,0,45,0,111,0,112,0,97,0,99,0,105,0,116,0,121,0,61,0,34,0,123,0,53,0,125,0,34,0,32,0,123,0,54,0,125,0,32,0,119,0,105,0,100,0,116,0,104,0,61,0,34,0,123,0,55,0,125,0,34,0,32,0,104,0,101,0,105,0,103,0,104,0,116,0,61,0,34,0,123,0,56,0,125,0,34,0,62,0,1,128,193,60,0,116,0,101,0,120,0,116,0,32,0,120,0,61,0,34,0,53,0,48,0,37,0,34,0,32,0,121,0,61,0,34,0,57,0,56,0,37,0,34,0,32,0,115,0,116,0,121,0,108,0,101,0,61,0,34,0,102,0,111,0,110,0,116,0,45,0,102,0,97,0,109,0,105,0,108,0,121,0,58,0,32,0,123,0,48,0,125,0,59,0,32,0,102,0,111,0,110,0,116,0,45,0,115,0,105,0,122,0,101,0,58,0,32,0,123,0,49,0,125,0,112,0,120,0,34,0,32,0,116,0,101,0,120,0,116,0,45,0,97,0,110,0,99,0,104,0,111,0,114,0,61,0,34,0,109,0,105,0,100,0,100,0,108,0,101,0,34,0,62,0,123,0,50,0,125,0,60,0,47,0,116,0,101,0,120,0,116,0,62,0,1,97,60,0,114,0,101,0,99,0,116,0,32,0,120,0,61,0,34,0,123,0,48,0,125,0,34,0,32,0,121,0,61,0,34,0,123,0,49,0,125,0,34,0,32,0,119,0,105,0,100,0,116,0,104,0,61,0,34,0,123,0,50,0,125,0,34,0,32,0,104,0,101,0,105,0,103,0,104,0,116,0,61,0,34,0,123,0,51,0,125,0,34,0,47,0,62,0,0,128,139,115,0,116,0,121,0,108,0,101,0,61,0,34,0,98,0,97,0,99,0,107,0,103,0,114,0,111,0,117,0,110,0,100,0,45,0,99,0,111,0,108,0,111,0,114,0,58,0,114,0,103,0,98,0,40,0,123,0,48,0,125,0,44,0,123,0,49,0,125,0,44,0,123,0,50,0,125,0,41,0,59,0,98,0,97,0,99,0,107,0,103,0,114,0,111,0,117,0,110,0,100,0,45,0,99,0,111,0,108,0,111,0,114,0,58,0,114,0,103,0,98,0,97,0,40,0,123,0,51,0,125,0,41,0,59,0,34,0,1,0,0,0,55,58,211,204,255,16,125,64,144,163,31,183,92,140,39,222,0,4,32,1,1,8,3,32,0,1,5,32,1,1,17,17,4,32,1,1,14,4,32,1,1,2,5,32,1,1,17,61,6,21,18,81,1,18,20,6,21,18,89,1,18,20,6,21,18,96,1,19,0,7,21,18,117,1,18,128,160,7,21,18,117,1,18,128,152,7,21,18,56,1,18,128,196,7,21,18,56,1,18,132,120,6,21,18,116,1,19,0,8,21,18,128,192,1,18,128,196,7,21,18,128,192,1,29,5,8,21,18,128,192,1,18,132,120,8,21,18,128,197,1,18,129,20,8,21,18,128,197,1,18,132,176,9,21,18,128,217,2,28,18,128,133,5,32,0,18,128,225,9,21,18,128,137,2,19,0,19,1,14,21,18,128,145,1,21,17,128,149,2,19,0,19,1,13,21,18,125,1,21,17,128,149,2,19,0,19,1,3,7,1,8,4,7,2,8,8,5,7,2,18,73,8,5,32,1,18,73,3,5,32,1,18,73,10,3,32,0,14,4,7,1,18,16,5,0,2,2,28,28,7,7,4,18,16,10,10,8,8,7,5,18,16,8,10,10,2,12,7,7,8,8,10,10,18,16,18,132,84,8,8,7,4,18,20,17,28,8,3,4,32,1,3,8,4,0,1,10,14,3,32,0,8,6,7,4,2,8,8,8,7,7,3,18,16,18,16,8,4,7,1,18,20,6,7,2,18,20,18,20,12,7,5,18,20,18,20,18,20,18,20,18,20,4,7,2,10,8,4,7,2,11,8,7,7,4,18,20,10,10,8,8,7,5,18,20,8,10,10,2,12,7,7,8,8,10,10,18,20,18,132,88,8,6,7,3,18,20,8,10,15,7,9,8,8,8,10,10,18,20,18,20,18,20,18,20,5,7,3,8,10,10,6,32,2,1,14,18,93,5,7,1,18,128,128,9,21,18,105,2,29,5,18,128,128,6,32,1,19,1,19,0,5,32,2,1,28,24,6,21,18,40,1,19,0,24,32,3,1,18,128,144,21,18,105,2,19,0,18,128,128,21,18,105,2,18,128,128,18,68,38,32,4,1,18,128,144,21,18,105,2,19,0,18,128,128,21,18,105,2,18,128,128,18,68,21,18,109,5,29,5,8,8,17,132,104,18,128,128,10,6,21,18,105,2,19,0,18,128,128,11,32,0,21,18,105,2,19,0,18,128,128,2,19,0,9,21,18,105,2,19,0,18,128,128,5,7,1,18,128,144,5,7,1,18,128,164,8,21,18,128,137,2,17,76,28,5,32,1,2,19,0,7,32,2,1,19,0,19,1,23,7,3,21,18,117,1,18,128,160,21,18,117,1,18,128,160,21,18,117,1,18,128,160,11,0,2,18,129,21,18,129,21,18,129,21,12,16,1,3,30,0,16,30,0,30,0,30,0,9,10,1,21,18,117,1,18,128,160,23,7,3,21,18,117,1,18,128,152,21,18,117,1,18,128,152,21,18,117,1,18,128,152,9,10,1,21,18,117,1,18,128,152,12,7,5,18,128,152,18,72,18,128,132,8,8,9,21,18,105,2,18,128,128,18,68,9,21,18,128,137,2,17,128,156,28,27,7,9,29,18,128,152,18,72,8,8,18,130,168,21,18,121,1,17,32,29,18,128,152,8,18,128,152,7,21,18,128,145,1,17,32,13,7,2,21,18,128,129,1,18,128,152,18,128,152,7,21,18,125,1,18,128,152,9,32,0,21,18,128,129,1,19,0,8,21,18,128,129,1,18,128,152,4,32,0,19,0,5,32,1,1,19,0,3,32,0,2,14,21,18,109,5,29,5,8,8,17,132,104,18,128,128,12,32,4,19,4,19,0,19,1,19,2,19,3,10,32,1,1,21,18,128,192,1,19,0,6,21,18,56,1,19,0,8,6,21,18,128,192,1,19,0,5,7,1,18,131,48,9,32,0,21,18,128,192,1,19,0,7,21,18,128,192,1,19,0,13,32,4,19,0,18,131,48,17,32,14,18,131,80,5,7,1,18,131,80,12,0,5,1,18,129,49,8,18,129,49,8,8,12,7,8,29,5,8,8,29,5,8,8,8,8,13,7,9,29,5,29,5,8,8,8,8,8,8,8,2,6,14,4,7,1,18,80,6,0,3,14,28,28,28,6,7,3,29,5,8,8,10,7,6,29,5,18,73,8,8,8,3,9,7,2,2,21,18,121,1,17,32,6,21,18,121,1,17,32,8,21,18,128,181,1,18,128,144,8,21,18,128,145,1,18,128,144,10,7,1,21,18,128,129,1,18,128,144,7,21,18,125,1,18,128,144,8,21,18,128,129,1,18,128,144,12,7,4,18,128,164,8,18,128,144,18,128,152,7,21,18,121,1,18,128,144,5,32,1,19,0,8,6,32,2,1,8,19,0,15,21,18,128,209,2,17,32,21,18,128,141,1,18,128,184,8,21,18,128,141,1,18,128,184,15,21,18,128,137,2,17,32,21,18,128,141,1,18,128,184,9,32,0,21,18,128,145,1,19,0,5,0,2,14,28,28,10,7,7,8,8,8,29,5,8,8,8,13,7,9,8,8,29,8,29,5,8,8,8,8,8,10,7,7,29,5,8,8,8,8,8,5,4,7,1,17,57,4,0,0,17,57,3,32,0,10,9,21,18,128,209,2,17,128,156,28,25,7,2,21,18,128,129,1,21,17,128,149,2,17,128,156,28,21,17,128,149,2,17,128,156,28,13,21,18,125,1,21,17,128,149,2,17,128,156,28,14,21,18,128,129,1,21,17,128,149,2,17,128,156,28,9,21,17,128,149,2,17,128,156,28,4,32,0,19,1,10,7,2,29,18,128,160,29,18,128,160,5,0,1,29,5,12,5,7,1,18,128,160,4,7,1,18,73,5,0,0,18,129,61,10,32,3,18,73,18,129,69,14,29,28,14,7,6,12,12,12,18,128,160,18,128,160,18,128,160,4,7,2,12,12,5,32,2,1,14,14,9,7,7,8,8,5,8,8,8,8,7,7,5,8,8,8,8,8,9,7,7,8,8,5,5,5,5,5,6,7,4,8,8,5,5,5,7,3,8,8,5,5,16,1,0,30,0,4,10,1,30,0,7,21,18,128,145,1,30,0,6,21,18,121,1,30,0,4,7,1,29,14,6,21,18,128,145,1,14,7,32,2,1,29,19,0,8,13,7,3,18,73,21,18,128,129,1,30,0,30,0,6,21,18,125,1,30,0,7,21,18,128,129,1,30,0,2,30,0,5,32,1,18,73,28,5,32,1,18,73,14,5,7,2,29,3,8,8,0,3,1,18,129,49,8,8,5,32,1,1,29,3,19,7,14,8,8,8,8,29,5,8,8,8,8,17,132,108,8,8,8,8,4,0,1,2,14,19,7,14,8,8,8,8,29,5,8,8,8,8,17,132,112,8,8,8,8,5,7,1,18,132,120,7,7,5,8,8,8,14,8,2,6,8,5,32,2,14,8,14,13,7,9,8,8,18,131,48,2,8,8,8,8,8,5,7,3,8,8,8,8,21,18,128,137,2,17,84,28,8,7,1,21,17,128,173,1,8,6,21,17,128,173,1,8,28,7,8,18,131,60,29,18,128,160,18,129,0,18,128,152,21,18,121,1,29,5,14,18,131,48,18,131,72,22,7,16,29,8,29,8,12,8,8,8,8,8,8,8,8,8,18,131,48,8,8,8,4,0,1,13,13,8,7,6,8,8,8,8,2,8,9,7,5,18,128,244,8,28,14,28,5,0,1,14,29,28,5,0,2,2,14,14,4,0,1,8,14,20,7,14,18,129,36,8,8,8,8,8,8,8,8,18,131,48,8,8,8,8,5,0,2,8,8,8,10,7,8,8,8,8,8,8,8,8,8,22,7,13,18,128,248,18,129,4,8,18,131,48,2,29,5,8,8,8,8,8,8,8,40,7,23,18,132,132,8,29,18,132,136,29,18,128,228,8,8,8,8,8,8,29,18,132,136,8,18,132,136,18,132,136,8,8,8,8,8,8,8,8,8,10,7,1,21,18,128,177,3,8,8,2,8,21,18,128,177,3,8,8,2,33,7,14,18,131,52,18,73,21,18,128,181,1,29,5,8,8,14,18,131,56,2,18,128,252,18,131,60,17,132,128,8,8,8,7,21,18,128,181,1,29,5,5,32,2,14,14,14,3,0,0,14,8,7,5,29,5,8,8,8,2,6,0,1,18,128,201,14,7,32,3,14,29,5,8,8,7,7,4,29,5,14,8,2,7,21,18,128,145,1,29,5,6,32,2,18,73,8,8,7,32,2,18,73,8,29,3,4,32,0,29,3,8,7,2,18,128,224,18,131,60,33,7,14,18,129,4,18,128,248,18,128,244,29,5,29,18,128,228,8,29,5,8,29,18,128,228,8,18,128,228,29,5,8,8,8,7,5,8,29,8,8,8,8,5,7,1,18,128,248,12,7,7,8,8,29,29,8,8,29,8,8,8,2,29,8,9,0,2,1,18,129,49,17,129,93,5,7,1,17,132,128,12,7,5,8,8,29,18,132,136,8,18,132,136,5,7,1,18,129,4,10,7,6,8,18,131,48,8,8,8,8,4,0,1,14,8,3,7,1,12,4,0,1,12,12,8,21,18,128,181,1,18,129,8,18,7,11,8,8,8,8,29,8,8,8,8,8,18,129,8,18,129,8,8,21,18,128,145,1,18,129,8,7,21,18,121,1,18,129,8,9,7,2,12,21,17,128,173,1,12,4,0,1,2,12,6,21,17,128,173,1,12,4,7,2,12,8,13,7,5,8,29,8,8,8,21,17,128,173,1,12,4,0,1,8,8,33,7,8,8,21,17,128,173,1,12,21,17,128,173,1,12,12,18,129,8,21,18,128,129,1,18,129,8,18,129,8,18,129,8,7,21,18,125,1,18,129,8,8,21,18,128,129,1,18,129,8,5,7,1,18,129,28,36,7,17,18,129,20,18,129,20,18,129,20,12,8,18,129,4,8,18,129,8,18,131,96,18,131,48,29,18,128,160,12,12,12,8,8,8,7,7,5,12,12,12,12,12,5,7,3,12,8,8,14,7,12,2,8,8,8,8,8,8,8,8,8,8,8,5,7,3,8,12,12,8,21,18,128,181,1,18,129,20,21,7,12,2,8,8,8,2,29,8,29,18,129,20,8,8,8,8,29,18,128,160,7,7,5,8,12,12,8,8,7,7,4,29,8,8,8,8,24,7,8,8,21,17,128,173,1,12,21,17,128,173,1,12,12,2,8,18,129,20,18,129,20,17,7,4,18,128,160,21,17,128,193,1,18,129,20,18,129,20,8,9,32,0,21,17,128,193,1,19,0,8,21,17,128,193,1,18,129,20,22,7,9,8,12,8,12,12,21,17,128,193,1,18,129,20,18,129,20,8,18,129,20,23,7,12,8,12,12,12,12,12,21,17,128,193,1,18,129,20,12,8,12,12,18,129,20,10,32,1,1,21,18,128,197,1,19,0,5,0,2,12,12,12,11,32,2,21,18,128,181,1,19,0,8,8,2,29,5,6,7,3,8,29,5,8,9,7,5,18,73,8,29,5,8,5,33,7,13,14,2,18,128,252,18,131,44,18,131,44,18,129,4,18,131,44,18,132,132,8,18,129,52,18,129,36,8,18,131,56,4,32,1,2,14,6,7,4,2,2,8,3,8,7,5,29,5,8,2,8,8,5,32,1,29,5,14,6,7,4,8,8,8,8,6,7,2,8,18,129,4,8,7,6,8,8,8,8,8,8,9,7,7,8,8,8,8,8,8,8,40,7,16,8,8,8,21,18,128,181,1,18,129,32,18,131,44,8,29,8,29,8,8,29,5,29,5,8,21,17,128,193,1,18,129,32,29,5,8,29,5,8,21,18,128,181,1,18,129,32,8,21,17,128,193,1,18,129,32,9,7,5,8,29,8,29,5,8,8,4,32,1,2,28,10,7,5,29,5,18,93,29,5,8,5,13,7,9,29,5,8,18,93,8,8,8,8,8,8,15,7,9,8,29,29,5,8,8,8,29,5,29,5,8,8,12,7,7,8,29,29,5,8,8,8,8,29,5,13,7,8,8,29,29,5,8,8,8,8,29,5,8,13,7,9,8,8,8,29,29,5,8,8,8,8,8,13,7,9,18,131,44,8,8,8,8,8,8,8,8,9,7,5,18,131,44,8,8,8,8,7,7,3,8,8,18,131,44,6,7,3,8,29,8,8,13,7,8,8,29,8,29,8,8,8,29,8,8,8,5,32,1,18,73,8,3,7,1,28,8,0,1,18,129,97,17,129,101,8,0,3,28,18,129,97,14,2,12,7,4,29,8,8,21,18,128,129,1,8,8,6,21,18,128,145,1,8,5,21,18,125,1,8,6,21,18,128,129,1,8,9,16,1,2,8,29,30,0,30,0,3,10,1,8,6,7,1,29,18,128,152,35,7,7,21,18,128,181,1,18,128,152,18,129,120,21,17,128,193,1,29,18,128,160,29,18,128,160,18,131,60,18,128,152,18,129,68,8,21,18,128,181,1,18,128,152,9,21,18,128,181,1,29,18,128,160,9,21,17,128,193,1,29,18,128,160,5,32,0,29,19,0,17,7,9,18,129,144,8,8,8,17,129,136,18,129,140,28,28,14,7,0,2,2,18,129,97,28,12,7,6,29,29,4,2,8,8,8,29,29,4,11,7,6,18,131,48,8,8,29,4,8,8,9,7,5,29,29,4,8,8,8,8,2,29,4,7,21,18,128,137,2,8,8,8,32,2,2,19,0,16,19,1,28,7,4,8,21,18,128,181,1,8,21,18,128,129,1,21,17,128,149,2,8,8,21,17,128,149,2,8,8,6,21,18,128,181,1,8,11,21,18,125,1,21,17,128,149,2,8,8,12,21,18,128,129,1,21,17,128,149,2,8,8,7,21,17,128,149,2,8,8,7,21,18,128,209,2,8,8,22,7,8,18,128,160,18,128,160,18,128,160,18,128,160,8,18,128,160,8,18,128,160,5,7,2,18,20,8,12,7,5,18,73,8,8,18,129,68,18,128,201,8,7,2,18,128,201,18,128,201,14,7,9,29,8,14,18,73,8,8,29,8,8,2,8,10,0,3,1,18,129,49,18,129,49,8,9,7,5,29,8,29,8,8,2,8,16,7,5,17,132,148,17,132,148,8,8,21,17,128,173,1,3,6,21,17,128,173,1,3,17,7,11,8,10,2,18,128,205,29,5,29,8,8,8,8,8,8,4,32,1,1,5,4,32,0,29,5,8,7,5,8,2,29,8,8,14,6,7,3,18,20,14,8,4,32,1,14,8,9,7,4,8,8,29,18,129,88,8,15,7,5,29,18,129,88,29,18,129,88,8,8,18,129,88,14,7,7,8,29,18,129,88,8,8,8,8,18,129,88,25,7,7,18,129,88,29,18,129,88,29,18,129,88,29,18,129,88,29,18,129,88,8,18,129,88,12,7,5,18,73,18,129,100,8,8,18,129,88,7,7,3,18,129,88,8,8,13,7,5,18,73,8,29,18,129,88,8,18,129,88,10,7,3,29,18,129,88,8,18,129,88,24,7,13,29,18,129,88,18,128,160,18,128,160,8,8,8,8,8,18,129,88,8,8,2,8,16,7,6,18,129,76,29,8,29,18,129,88,8,18,129,88,8,21,7,10,18,128,160,18,128,160,8,29,18,129,88,8,8,8,8,18,129,88,8,40,7,16,29,18,129,88,18,129,80,18,129,80,18,129,80,18,129,80,29,8,29,8,29,8,29,8,18,129,76,29,18,129,88,8,18,129,88,8,8,8,9,7,5,8,18,129,88,8,8,8,3,7,1,2,7,0,4,14,14,14,14,14,8,7,6,8,8,8,8,8,12,2,29,12,9,7,6,12,29,8,8,8,8,12,5,7,3,11,11,8,14,7,10,8,29,12,12,8,8,8,12,29,12,8,12,28,7,14,18,129,84,18,129,104,18,129,104,18,129,96,8,2,8,8,8,18,129,100,8,8,8,18,129,88,8,7,2,18,129,76,18,129,84,18,7,11,29,8,8,8,29,18,129,88,8,29,8,8,8,8,8,8,8,7,2,18,129,76,18,129,76,12,7,6,18,129,104,8,8,8,8,18,129,88,8,7,3,18,129,80,29,8,8,37,7,11,29,29,18,129,80,21,18,128,181,1,8,29,8,21,18,128,181,1,29,8,21,18,128,181,1,8,29,29,8,8,8,29,8,8,8,7,21,18,128,181,1,29,8,13,7,6,29,8,8,8,18,131,60,18,131,60,8,27,7,11,29,29,18,129,80,8,8,8,29,18,129,100,8,18,129,100,29,18,129,88,8,18,129,88,8,4,29,18,129,80,15,7,6,8,18,129,88,8,29,18,129,88,8,18,129,88,10,7,7,29,8,8,8,8,8,8,8,8,7,5,8,29,8,8,8,2,7,7,3,8,8,18,131,60,6,7,3,29,8,8,8,11,7,5,18,73,8,8,18,129,80,29,8,14,7,2,18,131,48,21,18,128,181,1,29,18,128,160,31,7,7,21,18,128,181,1,29,18,128,160,8,8,2,29,18,128,160,21,17,128,193,1,29,18,128,160,29,18,128,160,8,7,3,8,8,29,18,128,160,20,7,10,29,18,128,160,2,29,8,8,29,8,29,8,8,29,8,29,8,8,8,7,6,8,8,8,8,8,2,12,7,10,8,8,8,8,8,8,8,8,8,8,8,7,4,29,29,4,8,8,8,5,7,2,29,4,8,7,7,5,8,2,8,8,2,14,7,11,14,8,8,8,8,8,8,18,73,14,14,8,5,0,2,14,14,14,15,7,12,8,8,12,29,8,8,8,8,2,8,8,8,12,14,7,10,8,29,3,8,18,73,8,8,8,8,8,8,8,7,6,8,8,4,8,8,4,18,7,11,18,73,8,8,8,18,131,56,29,5,8,29,5,8,8,8,8,0,3,8,14,14,17,129,113,5,32,2,14,8,8,4,7,1,18,93,6,32,1,29,5,29,3,10,7,7,18,73,8,8,3,8,3,8,11,7,8,8,29,3,10,8,8,8,8,8,15,7,8,8,18,73,18,20,18,20,8,18,20,18,20,8,6,7,4,8,8,8,3,6,7,4,8,8,3,8,8,7,6,8,8,8,3,8,8,40,7,19,18,129,168,29,8,2,18,129,168,18,129,168,29,18,129,168,18,129,168,18,129,168,29,8,29,8,8,8,29,8,8,8,8,18,129,168,8,8,35,7,15,18,129,168,18,129,168,18,129,168,18,129,168,8,8,18,129,168,18,129,168,18,129,168,18,129,168,18,129,168,8,8,8,8,7,7,4,8,29,8,8,8,16,7,10,8,29,8,18,129,168,8,29,8,8,8,8,8,8,4,7,1,29,8,9,7,6,8,8,29,8,8,8,8,10,7,5,29,8,29,8,29,8,8,8,13,7,8,29,8,8,29,8,8,29,8,8,8,8,6,7,3,18,73,8,8,20,7,16,8,8,8,8,3,3,8,12,12,18,128,164,8,8,8,8,8,8,5,32,2,1,8,3,3,10,1,2,5,10,1,18,128,164,22,7,16,29,8,29,8,8,8,29,8,29,8,8,8,8,8,8,8,8,8,8,8,6,7,4,8,8,2,8,20,7,17,8,29,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,20,7,17,8,29,2,8,3,3,3,2,2,2,8,8,3,8,2,8,8,8,6,0,3,14,14,14,14,4,0,1,3,3,4,0,1,2,3,14,7,11,8,8,29,8,8,2,8,8,8,8,8,8,7,7,4,8,8,29,8,8,44,7,30,2,29,8,8,21,18,128,181,1,5,8,2,2,18,73,8,8,29,8,8,8,8,8,2,2,2,8,8,12,12,18,128,164,8,29,5,2,29,8,8,8,8,6,21,18,128,181,1,5,36,7,19,8,21,18,128,181,1,29,8,8,8,8,8,8,29,2,8,8,3,8,8,3,21,17,128,193,1,29,8,29,8,8,8,29,8,7,21,17,128,193,1,29,8,4,7,2,8,3,7,7,3,17,132,152,3,8,28,7,22,29,8,8,8,3,8,8,8,2,2,14,12,12,18,128,164,8,8,29,8,8,8,8,8,8,8,4,32,1,8,3,4,0,1,2,28,8,7,6,8,8,8,2,8,8,16,7,13,8,8,8,8,8,8,29,8,8,8,8,8,8,8,9,7,6,8,18,73,8,3,3,3,21,7,15,8,29,8,8,29,2,8,29,8,8,3,8,8,29,8,8,8,8,8,7,7,4,8,18,73,8,8,22,7,16,29,8,8,8,3,8,8,14,12,12,18,128,164,8,8,29,8,8,8,8,10,7,8,8,8,8,8,2,8,8,8,12,7,9,8,8,8,29,8,8,8,8,8,8,13,7,9,8,29,8,29,2,8,8,8,8,8,3,18,7,13,29,8,8,8,8,29,8,8,8,29,8,8,8,8,8,8,20,7,11,8,8,8,29,2,8,21,17,128,173,1,8,18,88,8,8,8,8,17,7,12,29,8,8,8,29,8,8,8,29,8,8,8,8,8,8,18,7,9,8,29,2,8,21,17,128,173,1,8,18,88,8,8,8,8,9,7,6,8,8,8,29,8,8,8,6,21,18,128,181,1,14,21,7,12,29,8,29,8,18,73,14,29,8,8,8,2,18,128,164,29,8,8,8,15,7,9,29,8,29,8,29,8,8,8,8,29,8,8,8,5,7,2,8,29,8,10,7,7,8,29,8,8,2,8,8,8,8,7,5,8,8,8,29,8,8,14,7,10,8,29,2,8,8,3,8,8,8,29,8,8,5,0,2,8,14,8,25,7,16,29,8,8,3,8,29,5,14,12,12,18,128,164,8,29,8,29,8,29,8,8,8,14,5,0,0,18,128,201,8,7,6,8,8,8,2,8,12,9,7,7,8,8,8,2,8,12,8,12,7,8,8,29,2,8,8,3,8,8,29,8,13,7,6,21,18,121,1,17,32,2,2,2,2,2,8,21,18,128,181,1,18,130,0,8,21,18,128,145,1,18,130,0,16,7,3,21,18,128,129,1,18,130,0,18,128,152,18,128,152,7,21,18,125,1,18,130,0,8,21,18,128,129,1,18,130,0,10,7,1,21,18,128,129,1,18,130,0,16,7,2,21,18,121,1,17,32,21,18,128,181,1,18,130,28,8,21,18,128,181,1,18,130,28,19,7,6,29,8,29,18,130,28,8,18,128,152,21,18,121,1,17,32,2,7,7,2,29,18,130,28,8,4,7,2,8,28,4,0,1,8,28,12,7,8,8,8,8,8,8,18,131,48,8,8,9,7,6,2,8,29,8,8,8,8,24,7,8,18,128,152,2,18,72,21,18,128,137,2,17,128,156,28,8,29,18,128,160,8,8,52,7,17,8,8,18,131,44,2,8,8,8,8,8,2,8,8,18,128,152,21,18,128,137,2,17,76,28,21,18,128,129,1,21,17,128,149,2,17,76,28,21,17,128,149,2,17,76,28,29,18,128,160,8,21,18,128,209,2,17,76,28,12,21,18,125,1,21,17,128,149,2,17,76,28,13,21,18,128,129,1,21,17,128,149,2,17,76,28,8,21,17,128,149,2,17,76,28,7,7,5,8,2,8,8,8,4,7,2,8,2,19,7,14,8,29,2,29,5,8,8,8,3,8,8,29,8,8,8,8,5,3,7,1,14,17,7,4,18,73,8,21,18,128,137,2,17,128,156,28,18,128,152,13,7,9,29,8,8,8,8,8,8,29,8,8,8,14,7,10,29,8,8,8,8,8,8,8,29,8,8,8,8,7,6,14,14,8,14,3,8,7,7,2,29,8,18,128,152,8,7,4,8,29,8,29,8,8,11,7,7,2,29,8,8,29,8,8,8,8,32,7,19,18,128,164,18,73,8,29,8,8,8,14,12,12,17,32,18,128,152,18,128,152,8,29,8,2,29,8,8,8,14,10,7,3,8,21,17,128,173,1,8,8,9,7,7,8,8,8,8,3,8,8,8,7,6,8,8,2,8,8,8,6,7,3,14,18,73,3,7,32,3,18,73,14,8,8,19,7,10,8,8,8,8,29,2,8,21,17,128,173,1,8,18,88,8,8,5,7,3,8,12,8,10,7,7,8,12,8,8,29,8,8,8,5,7,1,18,130,48,5,7,1,18,130,52,8,21,18,128,181,1,18,130,56,18,7,8,18,130,56,18,130,56,8,8,18,130,56,8,8,18,130,56,14,7,3,2,21,18,128,129,1,18,130,56,18,130,56,7,21,18,125,1,18,130,56,8,21,18,128,129,1,18,130,56,8,21,18,128,145,1,18,130,56,18,7,9,10,14,18,73,8,29,18,128,160,29,18,128,160,8,8,8,17,7,6,29,8,18,130,52,18,128,164,18,130,48,18,130,48,12,41,7,34,29,8,8,12,29,8,29,8,29,12,29,12,8,8,8,8,8,8,8,8,8,8,12,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,10,7,7,29,8,8,2,8,8,8,8,10,7,7,2,8,8,29,8,8,8,8,11,7,9,8,8,8,2,2,2,2,2,2,15,7,12,8,8,8,8,29,8,8,8,8,8,8,8,8,17,7,11,8,18,131,44,8,8,8,8,18,130,72,8,8,8,8,8,21,18,128,181,1,18,130,72,5,7,1,18,130,72,9,32,1,1,21,18,125,1,19,0,5,7,1,18,130,76,8,21,18,128,181,1,18,130,76,24,7,6,8,18,130,76,8,21,18,128,181,1,18,130,76,21,18,128,181,1,18,130,72,8,10,7,5,29,29,8,8,29,8,2,8,8,7,4,8,2,2,18,130,76,30,7,8,8,18,130,76,2,21,17,128,193,1,18,130,72,18,130,72,2,21,17,128,193,1,18,130,72,18,130,72,8,21,17,128,193,1,18,130,72,38,7,9,21,18,128,129,1,18,130,76,18,130,76,2,21,18,128,129,1,18,130,72,18,130,72,2,21,17,128,193,1,18,130,72,18,130,72,2,7,21,18,125,1,18,130,76,8,21,18,128,129,1,18,130,76,7,21,18,125,1,18,130,72,8,21,18,128,129,1,18,130,72,11,7,3,14,29,18,128,160,29,18,128,160,17,7,7,18,130,48,18,130,48,8,8,8,18,130,72,18,130,48,14,7,6,2,18,130,52,2,8,18,130,48,18,130,48,11,7,8,29,8,8,8,2,2,8,8,8,37,7,30,29,8,12,12,29,8,29,8,29,12,29,12,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,8,8,8,8,8,8,8,7,3,18,73,8,18,130,140,9,7,4,18,73,8,8,18,130,140,10,7,1,21,18,128,209,2,14,29,28,8,21,18,128,209,2,14,29,28,13,7,7,14,14,14,29,28,29,28,29,28,29,28,8,21,18,128,137,2,14,29,28,6,7,4,14,14,14,14,7,7,5,14,8,14,14,14,9,7,5,8,14,18,130,140,14,8,5,7,1,18,130,140,6,7,2,2,18,130,128,8,7,2,18,130,144,18,130,140,5,7,1,18,130,136,5,7,3,8,8,3,12,7,7,8,8,8,18,128,152,8,8,18,72,6,7,2,8,18,128,160,16,7,4,21,18,128,181,1,18,128,152,8,29,18,128,152,8,23,7,14,18,128,152,2,29,18,128,160,8,8,12,12,12,12,8,8,18,128,160,12,12,7,21,18,121,1,18,128,152,8,21,18,128,145,1,18,128,152,14,7,4,29,18,128,160,29,18,128,160,8,18,128,160,38,7,10,21,18,128,181,1,18,128,152,29,18,131,72,8,18,131,72,18,131,60,29,18,128,160,18,129,0,18,128,152,21,18,121,1,29,5,14,66,7,19,2,21,18,128,181,1,18,128,152,21,18,128,181,1,18,128,152,14,8,8,29,5,29,5,8,8,18,128,152,21,17,128,193,1,18,128,152,18,128,152,18,128,152,21,18,128,129,1,29,5,29,5,18,128,152,29,5,21,18,128,181,1,29,5,8,21,17,128,193,1,18,128,152,8,21,18,129,121,1,18,128,152,10,32,1,1,21,18,129,121,1,19,0,6,21,18,125,1,29,5,7,21,18,128,129,1,29,5,28,7,7,18,128,164,29,18,129,28,21,18,128,181,1,18,131,72,29,18,129,28,8,18,129,28,18,131,72,8,21,18,128,181,1,18,131,72,50,7,19,21,18,128,181,1,18,129,20,8,21,18,128,181,1,29,18,129,20,8,18,129,20,8,18,129,20,12,8,18,129,20,12,29,18,129,20,18,129,28,12,12,12,12,12,29,18,128,160,4,29,18,129,20,9,21,18,128,181,1,29,18,129,20,41,7,15,2,18,131,48,8,8,8,29,8,29,29,18,129,20,21,18,128,181,1,18,129,28,8,8,8,29,29,18,129,20,8,29,18,129,20,29,18,128,160,8,21,18,128,181,1,18,129,28,12,7,4,18,131,60,18,128,152,14,18,131,48,15,7,10,29,8,8,8,8,8,18,131,48,8,8,8,8,11,7,7,29,5,8,8,8,29,8,8,8,10,7,7,18,73,14,14,14,8,14,8,4,32,1,14,14,5,0,1,14,29,14,6,32,2,18,73,8,14,10,7,7,18,73,8,8,8,8,3,8,7,7,3,29,5,8,29,5,8,7,5,8,8,29,8,8,8,8,7,4,29,7,29,7,8,8,2,29,3,6,7,4,7,7,14,8,5,0,2,13,13,13,5,7,3,14,14,8,15,7,10,29,18,73,29,7,8,8,8,8,8,8,8,8,6,32,2,18,73,14,14,19,7,12,29,8,18,20,29,8,14,11,18,73,8,8,8,29,8,8,8,5,32,2,14,8,3,4,7,2,2,8,2,6,2,14,7,12,8,8,8,8,2,8,8,2,8,8,8,8,37,7,14,8,8,8,18,131,44,18,131,44,8,8,21,18,128,181,1,8,21,18,128,181,1,8,21,18,128,181,1,8,14,14,18,128,164,8,25,7,7,18,131,60,29,18,128,160,18,128,152,21,18,121,1,29,5,14,18,131,48,18,131,72,19,7,13,29,8,29,8,8,8,8,8,8,8,8,18,131,48,8,8,8,19,7,9,17,131,8,8,18,80,18,80,18,131,4,18,80,18,80,28,28,13,7,9,8,8,18,129,36,8,8,8,8,8,8,15,7,11,8,8,8,8,8,8,18,131,48,8,8,8,8,10,7,1,21,17,128,173,1,17,131,8,8,21,17,128,173,1,17,131,8,5,7,3,3,8,8,11,7,8,18,73,8,8,2,3,8,8,8,12,7,8,18,73,3,8,8,8,8,8,18,73,5,7,3,8,3,8,7,7,5,3,3,3,3,3,3,10,1,5,7,7,5,8,8,14,2,8,11,7,8,3,3,3,3,3,3,3,18,73,9,7,5,29,5,18,73,8,8,3,20,7,13,18,73,8,14,29,8,29,8,29,8,8,8,18,73,14,8,8,8,15,7,10,8,29,8,29,3,29,3,8,8,8,8,8,8,13,7,5,29,18,130,244,18,130,248,8,8,18,73,19,7,12,29,12,8,3,8,29,5,29,8,8,29,8,29,5,8,8,3,6,0,2,14,14,29,28,5,7,1,17,131,8,10,7,3,29,18,131,4,8,18,131,4,7,7,4,18,73,8,3,8,13,7,10,29,5,8,8,8,8,8,2,2,2,2,21,7,17,8,8,8,8,8,8,18,131,48,8,8,8,8,8,8,8,8,8,8,42,7,25,18,132,168,8,29,18,132,172,29,18,131,24,8,8,8,8,2,8,8,29,18,132,172,8,18,132,172,18,132,172,8,8,8,8,8,8,8,8,8,8,19,7,5,18,131,52,18,73,18,73,21,18,128,181,1,29,5,17,132,164,5,7,3,2,8,8,11,7,8,2,29,8,8,8,8,8,3,3,12,7,9,2,29,8,8,8,8,8,3,3,3,10,7,6,8,8,8,29,5,8,18,93,28,7,13,18,131,20,29,5,29,18,131,24,8,29,5,8,29,18,131,24,8,18,131,24,8,29,5,8,8,12,7,5,8,8,29,18,132,172,8,18,132,172,10,7,3,29,18,131,36,8,18,131,36,82,7,23,29,18,128,160,18,128,160,18,128,160,18,128,160,18,128,160,18,132,176,18,132,176,21,18,128,209,2,18,128,160,8,18,128,160,18,128,160,18,128,160,18,128,160,18,128,160,18,128,160,8,8,18,131,48,18,128,160,21,17,128,213,2,18,128,160,8,21,17,128,149,2,18,128,160,8,18,128,160,8,8,8,21,18,128,181,1,18,132,176,9,21,18,128,209,2,18,128,160,8,11,32,0,21,17,128,213,2,19,0,19,1,9,21,17,128,213,2,18,128,160,8,11,32,0,21,17,128,149,2,19,0,19,1,9,21,17,128,149,2,18,128,160,8,13,7,7,12,8,12,12,18,128,160,18,128,160,8,9,21,18,128,137,2,18,128,160,8,17,7,15,8,8,8,8,2,8,8,8,8,8,8,2,8,8,2,12,7,9,29,8,8,8,8,10,8,8,8,8,6,7,2,18,131,44,8,3,32,0,28,11,7,6,8,8,18,131,48,8,29,2,8,13,7,8,29,2,8,8,8,8,8,18,131,48,8,8,32,2,19,2,19,0,19,1,10,7,5,18,131,44,8,8,29,8,8,10,7,4,8,18,131,44,18,131,44,8,11,7,9,8,8,8,8,8,8,8,8,8,6,7,2,18,131,48,8,9,21,18,128,209,2,8,18,131,56,9,21,18,128,209,2,14,18,131,56,5,7,1,18,131,56,9,21,18,128,137,2,8,18,131,56,9,21,18,128,137,2,14,18,131,56,9,7,4,18,131,56,29,14,8,14,29,7,3,21,18,128,217,2,28,18,128,133,21,18,128,217,2,28,18,128,133,21,18,128,217,2,28,18,128,133,11,10,1,21,18,128,217,2,28,18,128,133,10,7,1,21,18,132,184,2,17,76,28,8,21,18,132,184,2,17,76,28,12,32,1,1,21,18,128,217,2,28,18,128,133,4,6,18,128,133,5,7,1,18,131,96,19,7,12,18,131,48,29,12,8,8,12,8,8,8,8,8,8,18,131,48,8,21,18,128,209,2,17,84,28,14,7,10,8,29,5,29,8,8,8,8,8,8,8,8,24,7,16,18,128,128,29,5,8,8,18,131,48,29,8,8,8,8,8,8,8,8,8,8,8,16,7,14,8,8,8,8,8,8,8,8,8,8,8,8,8,8,11,7,9,8,8,2,8,8,8,8,8,8,15,7,7,18,128,128,8,8,8,8,29,29,8,18,131,48,15,7,12,8,8,8,8,8,8,8,8,8,8,8,29,8,26,7,20,8,8,29,29,8,8,8,8,29,8,29,8,8,8,8,8,8,8,8,8,8,8,8,8,16,7,14,8,12,12,12,12,12,12,12,12,12,8,12,12,12,7,7,5,8,8,12,12,12,10,7,8,12,12,12,12,12,12,12,12,21,7,19,8,2,2,2,8,8,8,8,8,8,8,8,8,8,8,2,14,8,8,18,7,8,18,131,108,18,131,108,8,8,8,8,18,131,108,18,131,108,7,7,4,18,73,8,8,8,29,7,13,18,131,108,29,8,2,18,131,108,29,18,131,108,18,131,108,29,8,18,131,108,29,8,8,8,8,8,35,7,15,18,131,108,18,131,108,18,131,108,18,131,108,8,8,18,131,108,18,131,108,18,131,108,18,131,108,18,131,108,8,8,8,8,11,7,8,8,29,8,8,8,8,8,8,8,8,21,18,128,181,1,18,131,108,8,21,18,128,145,1,18,131,108,9,7,3,18,131,108,8,18,131,108,7,21,18,121,1,18,131,108,12,7,6,8,18,131,108,29,8,29,8,8,8,24,7,14,8,8,8,8,8,8,8,8,8,8,18,128,160,18,128,160,18,128,160,18,128,160,10,7,6,29,8,8,8,29,8,8,8,5,7,1,18,131,128,34,7,24,8,8,8,8,2,2,2,2,2,2,2,2,2,2,2,8,18,128,160,18,128,160,18,128,160,18,128,160,8,8,8,8,8,7,6,8,12,12,8,8,8,13,7,8,14,14,14,29,14,29,14,14,14,29,14,4,32,1,8,14,9,7,3,21,18,121,1,14,8,14,17,7,10,14,29,14,14,29,14,29,14,14,29,14,14,29,14,14,12,7,9,14,14,14,14,29,14,14,14,14,14,8,7,1,21,18,128,181,1,14,7,7,4,14,14,29,14,14,12,7,3,18,73,10,21,17,128,173,1,17,57,8,32,5,1,8,8,8,8,8,9,0,2,17,57,17,57,17,129,133,7,21,17,128,173,1,17,57,6,32,1,18,128,237,14,9,0,3,17,57,14,14,18,129,69,7,32,2,14,14,18,129,69,8,7,4,18,128,237,10,8,14,5,32,0,18,129,141,6,32,1,18,129,137,8,23,7,12,14,14,8,29,14,21,18,128,137,2,14,14,29,14,29,14,14,14,14,14,14,5,32,1,29,14,14,7,21,18,128,137,2,14,14,8,7,5,14,29,14,14,14,8,5,7,1,18,131,172,22,7,3,21,18,128,129,1,21,17,128,149,2,14,14,21,17,128,149,2,14,14,2,12,21,18,128,145,1,21,17,128,149,2,14,14,11,21,18,125,1,21,17,128,149,2,14,14,12,21,18,128,129,1,21,17,128,149,2,14,14,7,21,17,128,149,2,14,14,26,7,18,14,14,14,14,14,14,14,14,14,14,14,14,14,14,21,18,128,209,2,14,14,8,14,14,7,21,18,128,209,2,14,14,7,7,4,14,18,73,8,3,7,7,4,18,73,14,8,3,10,7,6,14,18,128,237,14,13,13,13,12,0,4,2,14,17,129,153,18,129,69,16,13,7,32,2,1,14,17,129,157,8,7,2,18,131,196,17,131,200,5,7,1,17,131,200,5,7,2,29,14,8,6,7,3,17,32,14,14,10,7,3,29,18,131,212,8,18,131,196,9,7,6,8,8,18,73,2,8,3,8,32,3,18,73,29,3,8,8,8,32,3,18,128,237,14,8,8,13,7,4,8,21,18,128,209,2,14,14,29,14,8,8,7,4,29,14,14,14,18,93,6,32,2,29,14,14,8,12,7,6,21,18,121,1,14,8,8,8,2,14,5,32,2,8,14,8,5,32,2,8,3,8,12,7,8,29,3,8,8,18,73,8,3,8,8,30,7,12,14,21,18,128,137,2,14,14,14,14,2,8,14,8,8,21,18,128,181,1,14,21,18,128,181,1,14,14,5,7,3,8,14,14,8,7,5,18,73,2,2,2,8,6,7,4,14,14,14,8,7,7,5,14,14,14,14,8,5,7,1,18,128,237,5,7,3,14,8,14,107,7,16,14,18,128,237,21,18,128,181,1,21,18,128,181,1,14,21,18,128,181,1,14,29,14,21,18,128,181,1,21,18,128,181,1,14,21,18,128,181,1,21,18,128,181,1,14,21,18,128,181,1,14,21,18,128,181,1,21,18,128,181,1,14,21,18,128,181,1,14,21,18,128,181,1,14,21,18,128,181,1,14,21,18,128,181,1,21,18,128,181,1,14,21,18,128,181,1,14,21,18,128,181,1,14,29,14,47,7,19,21,18,128,181,1,21,18,128,181,1,14,8,8,18,128,237,14,21,18,128,181,1,14,2,14,14,8,29,14,8,14,29,14,14,14,14,18,128,241,21,18,128,181,1,14,7,32,2,18,128,237,14,8,11,21,18,128,181,1,21,18,128,181,1,14,11,0,3,2,14,17,129,161,16,18,128,241,13,7,8,8,18,73,18,128,205,8,3,3,8,8,5,7,2,29,5,14,7,32,2,10,10,17,129,165,4,32,1,1,10,13,7,1,21,18,128,181,1,21,18,128,181,1,14,20,7,3,21,18,128,181,1,14,21,18,128,129,1,21,18,128,181,1,14,14,11,21,18,128,145,1,21,18,128,181,1,14,10,21,18,125,1,21,18,128,181,1,14,11,21,18,128,129,1,21,18,128,181,1,14,29,7,7,21,18,128,181,1,14,21,18,128,129,1,21,18,128,181,1,14,21,18,128,181,1,14,14,8,14,8,27,7,8,21,18,128,129,1,21,18,128,181,1,14,21,18,128,181,1,14,14,29,14,8,8,8,18,73,20,7,15,14,14,14,14,14,14,14,29,14,14,14,13,13,8,8,18,131,196,17,7,4,21,18,128,181,1,21,18,128,181,1,14,8,29,14,8,7,7,3,14,14,18,131,196,4,7,2,3,3,5,7,2,18,73,2,10,7,8,14,14,14,2,14,14,14,14,6,0,2,2,14,16,2,39,7,12,18,131,48,18,132,48,29,18,128,160,18,131,60,18,132,40,18,128,152,21,18,121,1,29,5,14,18,128,164,29,18,128,160,8,18,128,160,10,7,6,18,128,201,8,8,28,28,28,18,7,12,18,131,48,8,8,8,8,8,8,18,131,48,8,8,8,8,10,7,4,18,131,48,29,2,29,2,14,20,7,12,8,17,132,188,17,132,188,29,14,18,73,8,8,8,8,8,8,14,10,21,18,128,137,2,17,132,188,29,14,9,21,18,128,137,2,3,17,132,188,23,7,17,18,131,104,8,8,8,8,8,29,8,8,8,29,2,8,8,8,8,8,8,8,22,7,18,2,8,8,29,8,29,2,8,8,8,8,8,8,8,8,8,8,8,8,8,5,7,2,29,5,8,10,21,18,128,209,2,17,132,188,29,14,9,21,18,128,209,2,3,17,132,188,19,7,5,18,132,192,29,18,128,160,18,131,48,29,18,128,160,18,128,160,9,7,6,8,29,8,10,8,8,8,9,7,6,8,29,8,8,8,8,8,10,7,7,8,8,8,29,8,8,8,8,40,7,14,18,132,192,18,132,192,18,132,192,18,132,192,2,18,128,160,18,128,160,18,128,160,18,128,160,18,132,192,18,132,192,18,132,192,18,132,192,12,23,7,8,18,128,160,18,128,160,18,128,160,18,128,160,8,8,18,131,128,29,18,128,160,9,7,7,8,12,12,12,12,12,8,12,7,10,12,12,12,8,12,12,2,8,12,8,18,7,8,12,12,12,12,18,128,160,18,128,160,18,128,160,18,128,160,5,0,2,6,6,6,45,7,32,18,131,44,8,8,2,8,8,8,18,131,44,18,131,44,8,18,131,44,8,29,8,8,18,131,48,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,5,7,1,18,131,44,14,7,8,8,8,29,8,8,18,131,44,29,8,8,8,8,7,5,29,8,8,8,8,8,10,7,6,18,131,44,8,8,8,8,8,15,7,9,29,8,29,8,8,8,8,8,8,29,29,8,8,28,7,8,21,18,128,145,1,18,132,72,18,132,72,8,8,8,5,21,18,128,129,1,18,132,72,18,132,72,8,21,18,129,173,1,18,132,72,8,21,18,128,145,1,18,132,72,7,21,18,125,1,18,132,72,8,21,18,128,129,1,18,132,72,21,7,3,21,18,128,245,1,18,132,72,21,18,128,129,1,18,132,72,18,132,72,8,21,18,128,245,1,18,132,72,18,7,8,3,2,18,132,72,8,8,18,132,72,18,132,72,18,132,72,18,7,2,21,18,128,245,1,18,132,72,21,18,128,129,1,18,132,72,11,7,3,18,132,72,18,132,72,18,132,72,52,7,9,21,18,128,245,1,18,132,72,21,18,128,181,1,18,132,72,21,18,128,129,1,18,132,72,18,132,72,2,21,17,128,249,1,18,132,72,18,132,72,21,17,128,193,1,18,132,72,18,132,72,8,21,18,128,181,1,18,132,72,9,32,0,21,17,128,249,1,19,0,8,21,17,128,249,1,18,132,72,11,32,1,21,18,129,177,1,19,0,19,0,8,21,17,128,193,1,18,132,72,8,7,4,8,18,132,76,8,8,12,7,6,18,132,76,8,8,8,18,132,72,8,24,7,4,21,18,128,245,1,18,132,76,18,131,44,18,132,76,21,17,128,249,1,18,132,76,8,21,18,128,245,1,18,132,76,8,21,17,128,249,1,18,132,76,2,29,10,5,7,2,8,29,10,5,0,2,13,13,8,3,7,1,13,11,7,4,8,29,18,132,136,8,18,132,136,9,21,18,132,184,2,19,0,19,1,10,6,21,18,128,217,2,28,18,128,133,9,21,18,128,209,2,19,0,19,1,10,6,21,18,128,137,2,19,0,19,1,9,32,0,21,18,128,145,1,19,1,8,176,63,95,127,17,213,10,58,128,160,0,36,0,0,4,128,0,0,148,0,0,0,6,2,0,0,0,36,0,0,82,83,65,49,0,4,0,0,1,0,1,0,69,251,74,203,149,28,213,227,42,233,229,58,130,177,230,43,2,148,149,123,115,116,97,24,234,176,217,78,73,165,70,63,73,148,176,96,67,27,99,137,223,241,56,220,27,105,50,0,107,226,254,0,122,130,23,98,97,237,136,211,217,221,221,14,229,104,152,139,185,111,54,103,170,216,76,43,238,19,149,249,236,35,207,97,221,245,167,202,84,14,52,180,162,228,25,32,198,162,4,211,156,247,142,191,125,67,49,200,35,169,108,179,106,29,91,193,168,198,102,219,30,222,244,171,103,193,103,220,8,10,0,0,0,0,0,0,0,4,0,25,0,0,8,0,0,1,0,0,0,0,0,4,0,5,0,0,4,16,0,0,0,4,0,0,0,0,4,1,0,0,0,4,2,0,0,0,4,4,0,0,0,4,8,0,0,0,4,32,0,0,0,4,64,0,0,0,4,128,0,0,0,4,0,1,0,0,4,0,2,0,0,4,0,4,0,0,4,0,8,0,0,4,0,16,0,0,4,0,32,0,0,4,0,64,0,0,4,0,128,0,0,4,0,0,1,0,4,0,0,2,0,4,0,0,4,0,4,0,0,8,0,4,222,241,0,0,4,106,76,0,0,4,150,150,0,0,4,0,29,0,0,4,3,0,0,0,4,5,0,0,0,4,6,0,0,0,4,7,0,0,0,4,9,0,0,0,4,10,0,0,0,4,11,0,0,0,4,12,0,0,0,4,13,0,0,0,4,14,0,0,0,4,15,0,0,0,4,17,0,0,0,4,18,0,0,0,10,65,0,114,0,105,0,97,0,108,0,4,18,84,0,0,4,97,0,0,0,4,40,0,0,0,4,37,31,0,0,4,55,5,0,0,4,30,0,0,0,4,132,3,0,0,4,133,3,0,0,4,134,3,0,0,4,156,3,0,0,4,157,3,0,0,4,158,3,0,0,4,159,3,0,0,4,160,3,0,0,4,155,3,0,0,4,154,3,0,0,4,145,3,0,0,4,25,0,0,0,4,27,0,0,0,4,28,0,0,0,4,29,0,0,0,4,107,0,0,0,4,204,0,0,0,4,168,254,1,0,4,41,250,3,0,4,0,0,64,64,4,180,200,182,62,4,0,0,0,64,40,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,45,0,36,0,58,0,47,0,46,0,43,0,65,0,66,0,67,0,68,0,4,98,0,0,0,4,99,0,0,0,4,100,0,0,0,4,101,0,0,0,4,102,0,0,0,4,96,0,0,0,4,103,0,0,0,4,104,0,0,0,4,105,0,0,0,4,106,0,0,0,2,241,0,2,242,0,2,243,0,2,244,0,96,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,45,0,46,0,32,0,36,0,47,0,43,0,37,0,97,0,98,0,99,0,100,0,42,0,4,95,0,0,0,4,67,0,0,0,32,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,4,51,0,0,0,4,171,170,74,63,4,73,146,100,63,4,0,0,0,63,4,33,0,0,0,2,240,255,2,241,255,2,242,255,2,243,255,2,244,255,2,245,255,2,246,255,2,247,255,2,248,255,2,249,255,2,250,255,2,251,255,2,252,255,2,28,0,2,29,0,18,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,48,0,6,48,0,48,0,48,0,4,65,0,0,0,4,45,1,0,0,2,129,0,2,230,0,2,231,0,2,232,0,2,233,0,2,234,0,2,235,0,2,236,0,2,237,0,2,238,0,2,239,0,2,240,0,2,254,0,14,91,0,41,0,62,0,30,0,48,0,53,0,29,0,14,91,0,41,0,62,0,30,0,48,0,54,0,29,0,4,30,0,4,0,4,24,0,0,0,10,85,0,84,0,70,0,45,0,56,0,12,69,0,85,0,67,0,45,0,74,0,80,0,20,73,0,83,0,79,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,4,200,0,0,0,4,80,0,0,0,3,6,18,8,2,6,10,3,6,18,16,4,6,18,132,84,3,6,17,28,3,6,18,20,4,6,18,132,88,3,6,17,32,10,6,21,18,105,2,29,5,18,128,128,10,6,21,18,105,2,18,128,128,18,68,15,6,21,18,109,5,29,5,8,8,17,132,104,18,128,128,4,6,18,128,144,4,6,18,131,64,8,6,21,18,117,1,18,128,160,8,6,21,18,117,1,18,128,152,4,6,18,131,80,4,6,18,128,184,3,6,29,5,4,6,18,128,128,3,6,18,68,4,6,18,131,48,3,6,17,76,3,6,17,84,9,6,21,18,128,137,2,17,76,28,8,6,21,18,121,1,18,128,144,16,6,21,18,128,137,2,17,32,21,18,128,141,1,18,128,184,5,6,29,18,128,160,10,6,21,18,128,137,2,17,128,156,28,4,6,17,128,156,2,6,12,4,6,17,132,108,4,6,17,132,112,4,6,17,132,116,4,6,18,128,240,4,6,18,129,4,4,6,18,128,248,10,6,29,21,18,128,177,3,8,8,2,3,6,29,3,4,6,18,131,112,4,6,18,128,244,5,6,29,18,128,244,4,6,29,29,8,3,6,29,8,2,6,5,4,6,17,132,128,4,6,18,128,252,5,6,29,18,129,4,5,6,29,18,132,132,8,6,21,18,121,1,18,129,8,4,6,18,128,164,9,6,21,18,128,181,1,18,129,20,4,6,18,129,20,4,6,29,29,5,4,6,18,129,36,8,6,21,18,128,137,2,8,8,4,6,18,128,160,4,6,29,18,20,4,6,18,129,76,5,6,29,18,129,100,4,6,18,129,84,5,6,29,18,129,88,4,6,29,29,12,4,6,18,129,160,10,6,21,18,128,181,1,29,18,128,160,4,6,17,129,124,5,6,29,18,129,132,3,6,29,4,4,6,17,129,136,4,6,18,129,128,4,6,18,128,201,4,6,17,129,152,4,6,18,129,164,4,6,18,129,168,3,6,18,73,2,6,3,8,6,21,18,128,181,1,29,8,7,6,21,18,128,181,1,14,8,6,21,18,121,1,18,130,0,5,6,29,18,130,28,4,6,18,130,28,4,6,18,129,212,4,6,18,130,16,4,6,18,130,20,4,6,18,130,24,4,6,18,129,224,3,6,29,12,4,6,18,130,52,9,6,21,18,128,181,1,18,130,56,4,6,18,130,48,9,6,21,18,128,181,1,18,130,72,9,6,21,18,128,181,1,18,130,76,4,6,18,131,44,4,6,18,130,156,4,6,18,130,140,4,6,17,132,156,2,6,28,9,6,21,18,128,137,2,14,29,28,4,6,18,130,132,5,6,29,18,131,72,5,6,29,18,129,28,4,6,18,130,196,3,6,29,14,4,6,29,29,3,3,6,18,72,4,6,18,131,32,4,6,17,131,8,3,6,18,80,4,6,18,131,4,5,6,29,18,131,4,4,6,18,131,36,5,6,29,18,131,36,4,6,18,132,168,4,6,18,131,128,10,6,21,18,128,137,2,8,18,131,56,10,6,21,18,128,137,2,14,18,131,56,7,6,21,18,121,1,29,5,9,6,21,18,128,137,2,17,84,28,4,6,18,131,88,4,6,18,131,104,4,6,18,131,108,8,6,21,18,121,1,18,131,108,4,6,18,128,233,3,6,29,10,3,6,17,57,8,6,21,17,128,173,1,17,57,2,6,13,8,6,21,18,128,137,2,14,14,4,6,17,131,200,5,6,29,18,131,212,11,6,21,18,128,137,2,17,132,188,29,14,10,6,21,18,128,137,2,3,17,132,188,4,6,18,132,40,2,6,6,4,6,18,132,72,4,6,18,132,76,4,6,17,132,228,4,6,17,132,220,4,6,17,132,212,4,6,17,133,68,4,6,17,133,20,4,6,17,132,236,4,6,17,132,216,4,6,17,133,32,4,6,17,132,248,4,6,17,133,64,4,6,17,133,0,4,6,17,132,224,4,6,17,132,208,4,6,17,133,52,4,6,17,133,76,4,6,17,132,196,4,6,17,133,112,4,6,17,133,60,4,6,17,132,244,4,6,17,133,4,4,6,17,133,12,4,6,17,133,116,4,6,17,133,28,4,6,17,133,48,4,6,17,132,200,4,6,17,133,8,4,6,17,133,96,4,6,17,133,104,4,6,17,132,240,4,6,17,133,40,4,6,17,132,252,4,6,17,133,108,4,6,17,133,72,4,6,17,133,80,4,6,17,132,232,4,6,17,133,36,4,6,17,133,92,4,6,17,132,204,4,6,17,133,84,4,6,17,133,88,4,6,17,133,100,4,6,17,133,44,4,6,17,133,24,4,6,17,133,56,4,6,17,133,16,4,6,29,29,10,4,6,18,132,92,4,6,18,132,96,4,6,18,132,100,4,6,17,132,104,4,6,18,132,124,5,6,29,18,132,136,4,6,17,132,148,4,6,17,132,152,4,6,17,132,164,5,6,29,18,132,172,4,6,17,132,188,8,0,2,17,57,17,57,18,8,3,0,0,1,5,32,1,1,17,28,5,32,1,1,18,16,5,32,1,2,18,16,6,0,1,18,16,18,16,7,0,2,2,18,16,18,16,8,0,2,18,16,18,16,18,16,5,0,1,18,16,10,5,32,1,1,18,20,5,32,1,1,29,5,5,32,1,2,18,20,5,0,1,18,20,14,5,32,1,8,18,20,4,32,1,8,28,5,0,1,8,18,20,6,0,1,18,20,18,20,7,0,2,2,18,20,18,20,8,0,2,18,20,18,20,18,20,7,0,2,18,20,18,20,8,14,0,4,18,20,18,20,18,20,16,18,20,16,18,20,10,0,3,18,20,18,20,18,20,18,20,5,0,1,18,20,10,5,0,1,18,20,8,5,0,1,11,18,20,7,0,2,18,20,18,20,10,9,0,4,2,18,20,18,20,8,8,9,0,4,1,18,20,18,20,8,8,9,0,4,10,18,20,18,20,8,8,24,32,3,1,18,128,144,21,18,105,2,29,5,18,128,128,21,18,105,2,18,128,128,18,68,38,32,4,1,18,128,144,21,18,105,2,29,5,18,128,128,21,18,105,2,18,128,128,18,68,21,18,109,5,29,5,8,8,17,132,104,18,128,128,11,32,0,21,18,105,2,29,5,18,128,128,7,32,1,18,128,152,29,5,8,32,1,29,18,128,152,29,5,12,32,1,1,21,18,105,2,19,0,18,128,128,29,32,3,1,18,128,144,21,18,105,2,18,128,128,18,68,21,18,109,5,29,5,8,8,17,132,104,18,128,128,7,32,1,18,128,152,19,0,8,32,1,29,18,128,152,19,0,5,32,0,18,131,64,6,32,1,1,18,131,64,5,32,0,18,128,144,10,32,1,1,21,18,117,1,18,128,160,10,32,1,1,21,18,117,1,18,128,152,11,32,0,21,18,105,2,18,128,128,18,68,8,32,1,18,128,152,18,128,128,9,32,1,29,18,128,152,18,128,128,10,32,1,1,21,18,125,1,18,128,152,6,32,1,1,18,128,152,6,32,1,1,18,128,160,12,32,4,18,128,152,29,5,8,8,17,132,104,13,32,4,29,18,128,152,29,5,8,8,17,132,104,7,32,2,1,28,18,128,133,5,32,1,19,0,14,7,32,1,19,0,18,131,48,4,32,0,17,32,5,32,1,1,17,32,5,32,0,18,131,80,6,32,1,1,18,131,80,5,32,0,18,128,184,6,32,1,1,18,128,184,6,32,1,18,131,48,14,5,32,2,1,8,8,7,32,3,1,29,5,8,8,7,32,2,29,5,8,29,5,5,32,0,18,128,128,9,32,4,18,128,128,8,8,8,8,9,32,3,18,128,128,29,5,8,8,6,32,1,1,18,128,128,9,32,2,18,131,44,8,18,131,44,5,32,0,18,131,48,7,32,1,18,68,18,128,128,5,32,1,1,18,68,6,32,1,1,18,131,48,8,32,4,18,72,8,8,8,8,4,32,0,18,72,5,32,1,1,18,93,6,32,1,18,128,196,14,8,32,1,18,128,196,18,131,48,6,32,1,18,132,120,14,8,32,1,18,132,120,18,131,48,7,32,1,18,128,152,18,72,15,32,2,18,128,152,18,72,21,18,128,137,2,17,76,28,11,32,1,1,21,18,128,137,2,17,76,28,9,0,0,21,18,128,145,1,17,32,10,32,4,18,131,48,14,17,32,8,8,18,32,5,18,131,48,14,17,32,8,8,21,18,128,137,2,17,84,28,12,32,8,1,29,5,8,8,8,8,8,8,2,4,32,0,29,8,6,32,0,29,18,128,160,7,32,1,1,29,18,128,160,11,32,0,21,18,128,137,2,17,128,156,28,12,32,1,1,21,18,128,137,2,17,128,156,28,12,32,4,1,14,29,5,29,18,128,160,17,32,13,32,5,1,14,29,5,8,29,18,128,160,17,32,13,32,5,1,14,29,5,29,18,128,160,17,32,10,14,32,6,1,14,29,5,8,29,18,128,160,17,32,10,7,32,2,1,17,128,156,28,5,32,2,1,12,12,3,32,0,12,7,0,1,1,29,18,128,160,9,0,2,12,18,128,160,18,128,160,12,0,3,12,18,128,160,18,128,160,18,128,160,12,32,3,18,128,157,18,128,160,18,128,161,28,6,32,1,1,18,128,157,8,32,4,1,29,5,8,8,2,10,32,4,1,29,5,8,8,17,132,104,9,0,3,17,132,104,29,5,8,8,8,32,2,1,29,5,17,132,104,9,0,5,1,14,8,8,29,3,8,11,16,1,2,1,21,18,121,1,30,0,8,10,0,1,29,14,21,18,128,145,1,14,11,16,1,2,14,14,21,18,125,1,30,0,9,16,1,2,1,29,30,0,30,0,11,16,1,4,1,29,30,0,8,8,30,0,17,16,1,3,30,0,21,18,128,137,2,17,76,28,17,76,30,0,10,32,3,19,0,18,131,48,17,32,14,7,32,3,1,8,8,29,5,5,32,0,17,132,108,6,32,1,1,17,132,108,11,32,3,18,128,196,18,131,48,17,32,14,14,32,4,18,128,196,18,131,48,17,32,14,18,131,80,5,32,0,17,132,112,6,32,1,1,17,132,112,10,32,3,29,5,18,131,48,17,32,14,13,32,4,29,5,18,131,48,17,32,14,18,131,80,5,32,0,17,132,116,6,32,1,1,17,132,116,11,32,3,18,132,120,18,131,48,17,32,14,14,32,4,18,132,120,18,131,48,17,32,14,18,131,80,15,32,5,1,18,132,120,18,131,48,17,32,14,18,131,80,6,32,2,14,17,32,14,11,0,4,1,18,132,120,18,131,48,8,8,14,0,6,1,18,131,48,18,131,48,8,8,8,16,8,5,32,0,18,128,244,6,32,1,1,18,128,244,8,32,0,21,17,128,173,1,8,9,32,1,1,21,17,128,173,1,8,5,32,0,18,128,240,8,0,1,18,131,48,18,131,48,10,0,3,2,29,8,18,131,48,16,12,11,0,4,18,131,48,18,129,52,8,8,8,8,0,1,18,128,224,18,131,48,5,32,0,18,128,248,5,32,0,18,129,4,6,32,3,8,8,8,8,6,32,2,1,8,29,5,14,0,3,29,18,128,228,29,5,18,129,4,18,128,244,8,0,3,1,8,18,131,48,8,21,0,4,18,131,60,29,5,18,129,4,18,128,244,21,18,128,137,2,17,76,28,9,0,3,2,18,131,52,18,73,8,26,0,6,2,18,131,52,18,73,8,18,131,56,21,18,121,1,29,5,21,18,128,137,2,17,76,28,4,0,1,3,8,10,0,4,2,18,131,52,18,73,8,2,6,0,1,8,18,131,52,16,32,2,18,131,60,29,29,2,21,18,128,137,2,17,76,28,16,32,2,18,131,60,18,131,48,21,18,128,137,2,17,76,28,16,32,2,18,131,60,18,128,224,21,18,128,137,2,17,76,28,6,32,2,2,29,5,8,6,32,3,1,8,8,14,6,0,1,18,128,244,8,7,0,2,18,128,248,8,8,3,32,0,5,5,32,0,17,132,128,6,32,1,1,17,132,128,9,32,3,1,29,8,8,17,132,128,6,0,1,18,128,252,8,6,32,1,8,18,129,4,10,32,3,1,8,29,8,29,18,132,132,8,32,1,18,132,132,18,128,244,6,0,1,18,129,4,8,6,0,0,29,18,129,4,6,32,3,1,12,12,12,6,32,3,2,12,12,12,8,32,3,18,129,8,12,12,12,14,32,7,1,18,131,48,8,8,8,8,12,18,128,164,5,32,0,18,129,8,11,0,2,21,17,128,173,1,12,29,8,8,5,32,1,2,29,8,12,32,4,21,17,128,173,1,12,8,8,8,8,9,32,3,18,129,8,29,8,8,8,5,32,0,18,128,164,5,32,0,18,131,72,13,32,1,18,131,72,21,18,128,137,2,17,76,28,8,32,1,18,131,72,18,129,28,18,0,5,18,131,96,18,128,160,18,128,160,18,128,160,18,128,160,8,12,0,3,18,131,48,18,131,48,18,131,96,8,15,0,5,2,18,128,160,18,128,160,18,128,160,12,16,8,12,32,3,12,18,128,160,18,128,160,18,128,160,9,32,2,12,18,128,160,18,128,160,7,32,4,12,8,8,8,8,9,32,4,18,129,8,12,8,8,12,7,32,4,1,12,12,12,8,8,32,3,18,129,20,12,12,12,9,32,2,1,18,131,48,18,128,164,10,32,0,21,18,128,181,1,18,129,20,13,32,1,18,129,28,21,18,128,137,2,17,76,28,5,0,1,2,29,8,5,32,1,1,29,8,5,32,2,2,8,8,8,32,4,2,29,8,8,8,2,7,32,3,2,29,8,8,8,6,32,0,29,18,129,20,7,32,1,1,29,18,129,20,5,32,0,18,129,20,7,32,2,1,29,5,29,5,5,32,2,8,8,8,6,32,3,1,8,8,8,5,32,0,29,29,5,6,32,3,1,8,8,5,6,32,3,1,8,8,2,6,0,1,8,18,129,36,9,0,2,18,129,52,14,18,128,244,17,0,3,18,129,52,14,18,128,244,21,18,128,137,2,17,84,28,17,0,4,18,129,4,18,128,244,18,128,252,18,131,44,18,131,44,15,0,4,8,18,128,252,18,131,44,18,131,44,18,129,4,6,0,1,18,128,252,14,7,0,2,18,128,252,14,14,15,0,4,8,18,131,44,18,128,244,18,129,4,18,129,36,9,0,2,18,129,4,8,18,128,244,10,0,3,2,8,18,129,4,18,128,244,7,0,2,1,8,18,131,44,11,0,6,1,8,8,8,8,29,8,29,8,11,0,4,18,131,44,18,131,44,8,8,8,7,0,2,29,5,29,5,8,9,0,2,1,18,128,252,18,131,44,13,0,4,1,8,18,129,4,18,128,252,18,131,44,11,0,4,1,14,18,128,252,18,131,44,14,7,0,2,1,14,18,131,44,8,0,3,1,14,18,131,44,14,9,0,2,1,18,131,56,18,131,44,7,0,3,2,29,5,8,8,9,0,4,2,29,29,5,8,8,8,6,0,3,2,8,8,8,7,0,2,8,18,129,36,2,6,0,1,1,18,129,36,16,0,5,1,18,131,44,18,128,244,18,129,4,8,18,129,36,9,0,2,1,18,129,4,18,129,36,10,0,3,1,18,128,244,8,18,129,36,10,0,3,1,18,131,44,8,18,129,36,10,0,3,1,18,128,244,8,18,131,44,9,0,2,1,18,129,4,18,131,44,4,0,1,2,8,8,0,3,1,8,8,18,129,36,5,32,0,18,128,252,6,32,1,1,18,128,252,6,32,1,1,18,129,4,5,32,0,18,129,36,6,32,1,1,18,129,36,5,32,0,17,129,136,6,32,1,1,17,129,136,5,32,0,18,129,140,6,32,1,1,18,129,140,5,32,0,17,129,152,6,32,1,1,17,129,152,5,32,0,17,129,124,6,32,1,1,17,129,124,5,0,1,8,29,8,10,0,1,29,8,21,18,128,145,1,8,4,0,1,8,10,8,32,1,29,18,128,152,18,72,16,32,2,29,18,128,152,18,72,21,18,128,137,2,17,76,28,17,0,3,29,18,128,152,18,72,21,18,128,137,2,17,76,28,2,9,0,2,8,18,128,160,18,128,160,7,0,1,8,29,18,128,160,14,0,7,18,131,48,18,129,144,14,8,8,8,8,8,9,0,2,18,131,48,29,29,4,8,8,0,1,29,29,4,29,29,4,7,32,4,1,8,8,8,8,4,32,1,8,8,5,32,0,18,128,160,20,0,5,18,129,84,18,131,48,18,128,160,18,128,160,18,128,160,18,128,160,8,0,1,18,129,84,18,129,84,18,32,5,1,18,131,48,18,128,160,18,128,160,18,128,160,18,128,160,11,0,2,18,129,84,18,129,84,18,129,84,8,32,3,18,129,84,8,8,2,4,32,1,2,8,8,0,2,18,131,60,29,8,14,9,0,3,8,29,8,8,18,129,68,8,0,3,8,29,8,8,18,73,10,0,4,1,29,8,29,8,8,18,73,12,0,5,8,8,29,8,18,128,201,8,18,73,6,0,2,14,29,8,8,5,32,0,18,129,76,6,32,1,1,18,129,76,6,32,0,29,18,129,100,7,32,1,1,29,18,129,100,5,32,0,18,129,84,6,32,1,1,18,129,84,9,32,2,1,18,129,76,18,129,84,6,32,1,1,18,129,100,8,0,3,8,8,8,18,129,88,9,32,3,1,8,8,29,18,129,88,9,0,2,2,18,129,88,18,129,88,6,32,0,29,18,129,88,7,32,1,1,29,18,129,88,6,32,1,18,129,88,8,7,32,2,1,8,18,129,88,7,32,2,1,18,129,84,2,10,32,2,1,29,18,129,88,18,129,76,6,0,1,29,8,29,8,22,0,7,18,131,60,18,131,48,18,128,160,18,128,160,18,128,160,18,128,160,8,8,11,0,2,18,129,96,18,129,104,18,129,104,8,0,1,18,129,84,18,129,104,11,0,2,18,129,76,18,129,104,18,129,104,17,0,6,18,129,104,18,131,48,18,129,84,18,128,160,2,8,8,11,0,2,2,18,129,96,29,29,18,129,80,8,0,1,18,131,60,18,129,96,15,0,5,18,131,60,8,29,8,29,8,29,8,29,29,8,10,0,1,29,29,18,129,80,18,129,96,7,0,2,2,18,129,96,8,9,0,4,8,18,129,96,8,8,2,15,0,8,18,129,88,18,131,48,8,8,2,8,8,8,8,12,0,6,29,8,18,131,48,8,8,2,8,8,11,0,6,8,18,131,48,8,8,2,8,8,10,0,3,18,131,60,29,8,8,29,8,8,0,3,8,29,8,29,8,8,6,0,2,2,29,8,8,5,0,1,29,8,8,8,0,1,14,29,29,18,129,80,16,0,3,18,129,120,18,72,21,18,128,137,2,17,76,28,2,15,0,2,21,18,128,181,1,29,18,128,160,2,18,131,48,11,0,3,29,18,128,160,18,131,48,8,8,13,0,3,1,29,18,128,160,29,18,128,160,29,8,15,0,6,29,18,128,160,18,131,48,8,8,8,8,29,8,15,0,7,29,8,18,131,48,8,8,8,2,29,8,29,8,11,32,0,21,18,128,181,1,29,18,128,160,12,32,1,1,21,18,128,181,1,29,18,128,160,15,32,2,1,18,131,48,21,18,128,181,1,29,18,128,160,6,32,3,1,8,8,4,5,32,0,18,129,132,5,32,0,29,29,4,7,32,2,29,29,4,8,8,4,32,1,4,8,5,32,2,1,8,4,5,32,2,1,8,2,5,32,2,1,2,8,5,32,1,29,4,8,5,32,0,18,129,128,6,0,3,8,8,8,8,7,0,4,8,8,8,8,8,8,0,3,1,8,8,18,129,132,10,32,5,1,14,8,8,8,18,129,128,9,32,5,1,14,8,8,8,16,8,10,32,5,29,8,8,8,8,8,16,8,5,0,2,14,14,8,11,0,4,14,14,17,129,136,18,128,201,2,8,0,1,18,128,201,18,128,201,8,0,2,29,5,14,18,128,201,8,0,2,29,5,3,18,128,201,9,0,5,8,14,8,8,18,73,8,10,0,5,1,29,5,8,8,8,18,73,8,0,4,1,14,8,8,18,73,10,0,4,8,14,29,5,8,18,128,201,6,0,2,1,8,18,73,10,32,4,2,29,8,8,29,8,16,8,13,32,3,29,18,129,168,18,129,168,18,129,168,8,7,32,1,29,8,18,129,168,12,32,3,29,8,18,129,168,18,129,168,29,8,5,32,0,18,129,168,6,32,1,1,18,129,168,7,32,2,18,129,168,8,8,8,32,2,1,18,129,164,29,8,8,32,1,18,129,168,18,129,168,6,32,1,18,129,168,8,17,32,3,18,128,152,8,18,131,44,21,18,128,137,2,17,76,28,6,32,1,2,18,131,44,6,0,2,2,29,3,3,5,32,1,29,2,14,7,0,1,29,8,18,131,44,11,0,4,2,18,131,44,29,8,8,16,8,7,0,2,17,132,152,14,8,6,32,3,8,14,8,8,5,32,2,1,2,2,9,0,2,29,8,18,131,44,29,8,6,0,2,2,8,16,3,4,0,1,14,14,6,0,2,1,8,29,8,7,32,1,29,8,18,131,44,5,0,1,14,18,73,5,0,1,2,18,73,7,0,3,2,18,73,8,8,9,0,4,8,29,2,8,29,8,2,8,0,3,8,29,2,8,29,8,10,32,3,8,18,131,44,29,8,18,73,6,0,2,2,18,73,8,6,32,2,1,29,8,14,10,0,4,2,18,131,44,8,8,18,73,7,32,2,2,18,131,44,8,6,0,1,8,18,131,44,10,0,3,29,8,18,131,44,8,29,8,7,0,2,2,29,8,16,8,9,32,2,29,8,18,131,44,29,8,10,32,3,29,8,18,131,44,8,29,8,6,32,2,1,29,8,8,6,32,2,8,29,8,8,10,0,4,18,131,48,29,2,8,8,8,9,0,3,2,18,131,44,8,29,8,10,0,4,2,18,131,44,8,29,8,8,19,32,4,18,128,152,8,18,131,44,29,8,21,18,128,137,2,17,76,28,8,0,1,18,128,152,18,128,152,11,32,3,18,128,152,8,18,131,44,29,8,12,0,1,21,18,128,137,2,17,128,156,28,14,6,0,2,2,8,16,8,10,32,3,18,128,152,8,18,131,44,8,9,0,1,21,17,128,173,1,8,14,8,32,2,29,8,18,131,44,8,11,0,4,29,8,18,131,44,8,2,29,8,13,0,5,29,8,18,131,44,8,2,29,8,29,8,14,0,5,2,18,131,44,29,8,8,29,29,8,16,8,4,32,0,29,12,10,0,3,2,29,8,29,29,8,16,8,7,0,2,1,29,8,29,12,9,32,5,1,8,29,8,8,8,8,5,32,0,18,130,52,6,32,1,1,18,130,52,8,32,3,1,8,8,18,130,52,13,0,2,1,21,18,121,1,18,130,56,18,130,56,11,0,2,18,128,152,18,130,56,18,130,56,9,0,2,2,18,130,56,18,130,56,18,32,4,18,130,56,18,131,44,2,8,21,18,128,137,2,17,76,28,12,32,3,18,130,48,18,131,44,18,130,52,2,8,32,2,29,8,18,131,44,2,12,32,4,18,130,52,18,131,44,8,2,29,8,5,32,2,2,2,8,7,0,3,8,29,8,8,2,13,0,1,18,131,44,21,18,128,181,1,18,130,72,5,32,0,18,130,48,6,32,1,1,18,130,48,13,32,4,1,18,130,48,18,130,48,18,130,52,2,13,32,3,1,21,18,128,181,1,18,130,72,8,2,10,32,0,21,18,128,181,1,18,130,72,11,32,1,1,21,18,128,181,1,18,130,72,11,32,1,2,21,18,128,181,1,18,130,72,7,32,2,2,8,18,131,44,11,32,1,21,18,128,181,1,18,130,72,2,19,32,2,21,18,128,181,1,18,130,72,21,18,128,181,1,18,130,76,8,11,0,1,2,21,18,128,181,1,18,130,72,19,0,2,1,21,18,128,181,1,18,130,72,21,18,128,181,1,18,130,76,17,0,2,2,21,18,125,1,18,130,72,21,18,125,1,18,130,76,10,32,0,21,18,128,181,1,18,130,76,13,0,1,18,128,152,21,18,128,181,1,18,130,72,7,0,2,8,18,131,44,8,17,32,3,18,130,72,18,131,44,21,18,128,181,1,18,130,72,8,15,32,3,2,18,131,44,21,18,128,181,1,18,130,72,8,5,0,1,1,29,8,10,32,3,18,130,52,18,131,44,8,2,13,32,4,18,130,48,18,131,44,18,130,52,2,2,8,0,3,2,18,130,52,2,2,6,32,1,1,18,131,44,5,32,0,18,131,44,5,32,0,18,130,156,8,0,1,18,130,84,18,131,44,6,32,2,1,18,73,8,8,32,3,1,18,131,44,14,14,7,32,3,1,18,73,8,8,6,0,2,1,18,73,8,7,32,2,1,18,130,140,2,5,32,0,18,130,140,3,32,0,3,5,32,2,1,8,14,6,32,3,1,8,14,8,6,0,3,14,8,8,14,6,32,2,14,18,73,8,6,32,1,18,130,144,8,8,0,3,8,18,131,44,8,8,7,32,2,18,130,140,8,14,5,32,0,18,130,128,6,32,1,18,130,136,8,6,32,1,1,18,128,144,9,0,3,1,29,18,128,160,8,8,23,32,6,1,18,72,21,18,128,137,2,17,76,28,21,18,121,1,18,128,152,8,8,8,10,0,3,18,128,152,18,128,152,8,8,18,32,1,21,18,128,181,1,18,128,152,21,18,128,181,1,18,128,152,9,32,2,8,18,128,152,18,128,152,14,32,1,29,18,131,72,21,18,128,137,2,17,76,28,7,32,0,29,29,18,129,20,14,32,1,29,18,129,28,21,18,128,137,2,17,76,28,8,0,2,18,131,60,29,5,8,6,0,2,8,8,29,5,7,0,2,8,29,5,29,5,5,0,1,8,29,5,5,0,1,14,29,5,7,0,3,14,29,5,8,8,8,32,1,18,131,60,18,131,48,9,32,5,2,29,5,8,8,8,8,4,32,1,7,14,27,32,6,2,16,29,8,14,21,18,128,137,2,8,8,21,18,128,137,2,8,8,29,29,8,29,29,3,35,32,8,1,18,131,44,18,131,44,18,131,44,16,21,18,128,181,1,8,16,21,18,128,181,1,8,16,21,18,128,181,1,8,8,8,12,32,4,8,18,131,44,16,8,16,8,16,8,9,32,4,8,18,131,44,8,8,8,10,0,3,2,29,8,18,131,48,16,8,13,0,4,18,131,48,18,130,232,18,131,4,8,8,10,0,3,18,131,48,18,129,36,8,8,10,32,0,21,17,128,173,1,17,131,8,11,32,1,1,21,17,128,173,1,17,131,8,4,32,0,18,80,5,32,1,1,18,80,6,32,1,1,18,130,248,5,0,2,3,3,3,5,0,2,3,3,8,11,32,4,8,18,130,248,18,73,18,73,8,8,0,2,1,18,130,248,18,73,8,32,2,1,18,130,248,18,73,6,32,2,8,3,18,73,6,0,2,14,18,73,8,6,32,3,1,14,8,8,6,0,2,1,3,18,73,6,32,1,1,17,131,8,7,32,2,1,18,80,18,80,4,32,1,1,3,4,32,0,18,73,5,32,0,18,131,4,7,0,2,14,14,18,131,4,7,0,4,14,14,8,8,8,12,0,5,14,14,17,131,8,18,80,18,80,8,6,0,3,8,14,8,8,10,0,4,8,29,12,29,8,8,29,5,4,0,1,1,3,7,0,1,1,29,18,131,4,9,32,6,1,2,8,8,8,8,8,11,32,8,1,2,8,8,8,8,8,8,8,6,0,1,18,131,4,8,9,0,2,18,131,4,8,17,131,8,8,0,3,18,131,4,8,2,2,10,0,3,18,131,4,8,17,131,8,2,14,0,5,18,131,4,8,17,131,8,18,80,18,80,2,5,32,0,18,131,36,8,0,1,18,131,36,18,131,48,7,32,4,2,8,8,8,8,7,32,4,8,8,8,8,8,8,32,1,18,131,48,18,131,48,11,0,2,29,18,131,24,29,5,18,131,36,7,0,1,18,131,60,29,5,14,0,4,2,18,131,52,18,73,18,73,16,17,132,164,8,0,2,2,18,131,52,18,73,7,0,3,1,8,8,29,8,14,0,3,2,18,131,52,18,73,21,18,121,1,29,5,8,32,1,18,131,60,29,29,2,11,32,6,1,8,8,8,8,8,18,132,168,5,32,0,18,132,168,7,0,2,18,131,36,8,8,6,0,0,29,18,131,36,19,32,6,18,128,160,18,128,160,18,128,160,18,128,160,18,128,160,8,8,18,32,5,18,128,160,18,128,160,18,128,160,18,128,160,18,128,160,8,6,32,1,2,18,128,160,15,0,2,1,21,18,128,137,2,18,128,160,8,18,128,160,22,0,7,18,131,48,18,131,48,18,128,160,18,128,160,18,128,160,18,128,160,8,8,11,32,2,18,132,176,18,128,160,18,128,160,6,32,3,2,8,8,2,8,32,4,1,8,29,5,8,8,8,32,4,1,8,8,8,29,8,7,32,3,1,8,8,29,8,8,0,1,18,131,48,29,29,2,8,0,3,18,131,48,14,14,14,11,32,1,1,21,18,128,177,3,8,8,2,7,32,2,1,8,18,131,44,6,32,3,14,14,14,14,5,0,2,1,8,14,6,0,2,1,8,29,14,6,0,1,18,131,56,8,6,0,1,18,131,56,14,8,32,0,21,18,121,1,29,5,9,32,1,1,21,18,121,1,29,5,4,32,1,1,28,13,32,4,1,29,5,14,21,18,121,1,29,5,14,15,32,6,1,29,5,14,21,18,121,1,29,5,14,8,8,14,32,5,1,29,5,8,14,21,18,121,1,29,5,14,16,32,7,1,29,5,8,14,21,18,121,1,29,5,14,8,8,10,32,0,21,18,128,137,2,17,76,28,8,32,0,21,18,121,1,17,32,9,32,1,1,21,18,121,1,17,32,26,32,19,18,131,48,18,131,48,8,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,32,4,18,131,48,18,131,48,8,8,18,131,96,10,32,2,1,18,131,48,29,18,128,160,6,0,1,18,131,76,8,10,32,0,21,18,128,137,2,17,84,28,11,32,1,1,21,18,128,137,2,17,84,28,5,0,0,18,131,88,6,0,1,1,18,131,88,8,0,2,2,18,131,48,29,12,15,0,7,1,29,5,8,8,8,8,29,29,8,18,131,48,12,0,6,1,29,5,8,8,8,8,18,131,48,11,0,5,29,29,8,29,5,8,8,8,8,12,32,9,1,12,12,12,12,12,12,12,12,12,21,0,16,18,131,96,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,5,32,1,1,29,12,7,32,2,1,29,12,29,12,13,0,8,18,131,96,12,12,12,12,12,12,12,12,5,32,0,18,131,96,8,32,1,18,131,96,18,131,96,13,0,2,14,29,5,21,18,128,137,2,17,76,28,5,32,0,18,131,108,7,32,2,18,131,108,8,8,8,32,2,1,18,131,104,29,8,8,32,1,18,131,108,18,131,108,6,32,1,18,131,108,8,9,32,1,29,18,131,108,18,131,108,6,32,1,1,18,131,104,6,32,2,2,29,8,8,13,32,3,29,18,131,108,18,131,108,18,131,108,8,7,32,1,29,8,18,131,108,9,32,2,29,8,18,131,108,29,8,4,0,1,8,12,7,0,4,12,12,12,12,12,7,0,4,12,8,8,8,8,14,32,9,18,128,160,8,8,8,8,8,8,8,8,8,9,32,5,29,8,8,8,8,8,2,8,0,1,18,131,128,18,131,48,11,0,4,18,131,128,18,131,48,8,8,8,9,32,4,1,18,131,48,8,8,8,9,32,4,18,128,160,12,12,12,12,18,32,4,29,18,128,160,18,128,160,18,128,160,18,128,160,18,128,160,7,32,4,2,8,8,8,2,7,0,3,29,14,14,14,2,6,0,3,14,14,14,2,8,32,1,18,131,196,18,128,152,8,0,4,29,14,14,8,14,2,17,32,7,1,29,14,29,14,29,14,29,14,29,14,29,14,29,14,29,32,16,1,29,14,29,14,14,29,14,29,14,29,14,29,14,14,14,29,14,29,14,14,14,14,29,14,29,14,4,32,0,29,14,7,0,3,29,14,14,14,14,14,32,10,1,14,14,14,14,14,14,29,14,14,13,13,4,32,0,17,57,9,32,0,21,17,128,173,1,17,57,3,32,0,13,5,0,1,17,57,14,11,0,2,14,2,21,17,128,173,1,17,57,5,32,1,1,29,14,11,32,5,1,29,14,29,14,29,14,14,14,24,32,15,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,21,18,128,137,2,14,14,17,0,2,2,21,18,128,137,2,14,14,21,18,128,137,2,14,14,9,32,0,21,18,128,137,2,14,14,5,0,2,14,8,14,7,32,4,1,13,13,13,14,4,32,1,1,13,5,32,0,17,131,200,6,32,1,1,17,131,200,6,0,2,1,14,18,73,7,0,2,1,29,14,18,73,8,0,1,18,131,196,18,128,152,5,0,1,29,14,14,4,0,1,8,3,5,0,2,2,14,8,6,0,3,2,14,8,8,10,0,1,21,18,128,137,2,14,14,14,11,0,2,1,14,21,18,128,137,2,14,14,8,0,4,29,14,14,14,3,2,7,0,4,14,14,14,3,2,5,0,1,8,29,3,16,0,3,1,21,18,128,145,1,14,21,18,128,145,1,14,14,7,32,4,1,14,14,14,14,9,32,4,1,29,14,29,14,14,14,6,32,3,1,14,14,14,17,0,4,21,18,128,181,1,21,18,128,181,1,14,14,14,2,2,9,0,3,1,18,128,205,14,18,73,12,0,4,21,18,128,181,1,14,14,14,2,2,9,0,1,14,21,18,128,181,1,14,15,0,1,29,14,21,18,128,145,1,21,18,128,181,1,14,13,0,1,1,21,18,125,1,21,18,128,181,1,14,8,0,3,1,29,14,8,18,73,12,32,9,1,14,14,14,14,14,14,8,3,14,7,32,4,1,14,14,14,2,11,32,8,1,14,14,14,2,14,14,14,14,6,32,3,1,2,8,8,15,0,7,18,131,48,14,17,32,8,8,18,128,201,8,8,10,0,3,18,131,48,18,132,52,8,8,13,32,5,1,18,131,48,29,18,128,160,2,8,8,8,32,1,18,131,60,18,132,40,5,0,1,14,29,2,6,0,1,17,132,188,3,6,0,2,14,29,14,8,6,32,1,29,2,29,2,7,32,1,29,2,18,131,48,7,0,3,8,29,2,8,8,6,0,2,5,29,2,8,6,0,1,29,5,29,2,5,0,2,8,8,2,5,32,0,18,132,40,6,32,1,18,132,40,2,7,32,1,2,29,18,128,160,6,0,2,8,29,8,8,5,0,2,8,10,2,9,32,1,29,18,128,160,18,132,192,5,32,0,18,132,192,10,32,1,29,18,128,160,29,18,128,160,20,32,5,18,131,48,18,131,48,18,128,160,18,128,160,18,128,160,18,128,160,10,32,3,8,18,128,160,18,128,160,8,15,32,4,2,18,132,192,18,132,192,18,132,192,18,132,192,9,32,2,8,18,132,192,18,132,192,11,32,4,18,132,192,18,132,192,2,8,8,12,0,3,29,18,128,160,29,18,128,160,12,12,9,0,2,12,18,132,192,18,132,192,8,32,3,1,18,132,76,8,8,8,32,2,1,18,131,44,29,5,7,0,1,18,132,52,29,5,9,0,3,18,132,52,29,5,8,8,8,0,3,1,18,131,48,8,8,8,0,3,18,131,44,2,8,8,11,0,4,1,18,131,48,2,8,18,131,44,10,0,3,18,131,44,18,131,44,8,8,9,0,3,29,8,18,131,44,8,8,6,0,1,18,131,104,8,9,0,2,18,131,44,18,131,44,8,18,32,2,21,18,128,145,1,18,132,72,21,18,125,1,18,132,72,8,15,32,3,1,18,132,72,8,21,18,128,145,1,18,132,72,19,0,3,21,18,128,145,1,18,132,72,21,18,125,1,18,132,72,8,8,16,0,4,1,18,132,72,8,8,21,18,128,145,1,18,132,72,17,0,1,21,18,128,145,1,18,132,72,21,18,125,1,18,132,72,9,32,4,1,18,132,76,8,8,8,5,32,0,18,132,76,7,32,2,18,132,72,8,8,6,32,1,18,132,72,8,6,32,1,2,18,132,72,7,32,1,18,131,44,29,5,6,32,1,1,18,132,76,7,32,2,18,132,76,8,8,4,32,1,10,8,5,32,2,1,8,10,7,32,1,18,128,128,29,5,12,32,4,18,128,128,29,5,8,8,17,132,104,7,32,4,1,5,5,5,5,13,32,6,1,8,8,8,8,17,132,116,17,132,116,6,32,3,1,14,14,8,6,0,1,13,17,132,116,6,0,1,14,17,132,116,8,32,2,1,8,29,18,132,136,6,32,0,29,18,132,136,4,32,1,1,12,9,32,2,8,18,129,20,18,129,20,7,32,2,1,8,18,132,172,10,32,3,1,8,18,132,172,18,132,172,6,32,0,29,18,132,172,10,32,3,1,18,128,160,18,128,160,8,9,32,2,8,18,132,176,18,132,176,12,32,1,1,21,17,128,149,2,19,0,19,1,12,32,1,2,21,17,128,149,2,19,0,19,1,14,32,2,1,29,21,17,128,149,2,19,0,19,1,8,16,32,0,21,18,128,129,1,21,17,128,149,2,19,0,19,1,4,40,0,17,28,11,40,0,21,18,105,2,29,5,18,128,128,11,40,0,21,18,105,2,19,0,18,128,128,5,40,0,18,131,64,5,40,0,18,128,144,3,40,0,2,11,40,0,21,18,105,2,18,128,128,18,68,9,40,0,21,18,128,192,1,19,0,4,40,0,17,32,5,40,0,18,131,80,5,40,0,18,128,184,4,40,0,29,5,5,40,0,18,128,128,5,40,0,18,131,48,3,40,0,8,10,40,0,21,18,128,137,2,17,76,28,9,8,0,21,18,128,145,1,17,32,3,40,0,14,6,40,0,29,18,128,160,11,40,0,21,18,128,137,2,17,128,156,28,3,40,0,10,3,40,0,12,5,40,0,17,132,108,5,40,0,17,132,112,5,40,0,17,132,116,5,40,0,18,128,244,8,40,0,21,17,128,173,1,8,3,40,0,5,5,40,0,17,132,128,4,40,0,29,8,5,40,0,18,128,164,10,40,0,21,18,128,181,1,18,129,20,5,40,0,18,129,20,5,40,2,8,8,8,5,40,0,29,29,5,5,40,0,18,128,252,5,40,0,18,129,4,5,40,0,18,129,36,5,40,0,17,129,136,5,40,0,18,129,140,5,40,0,17,129,152,5,40,0,17,129,124,5,40,0,18,128,160,5,40,0,18,129,76,6,40,0,29,18,129,100,5,40,0,18,129,84,6,40,0,29,18,129,88,11,40,0,21,18,128,181,1,29,18,128,160,4,40,1,4,8,5,40,0,18,129,128,5,40,0,18,129,168,3,8,0,14,5,40,0,18,130,52,5,40,0,18,130,48,10,40,0,21,18,128,181,1,18,130,72,10,40,0,21,18,128,181,1,18,130,76,10,40,0,21,17,128,173,1,17,131,8,4,40,0,18,80,3,40,0,3,4,40,0,18,73,5,40,0,18,131,4,5,40,0,18,131,36,4,40,1,2,8,5,40,2,2,8,8,8,40,0,21,18,121,1,29,5,3,40,0,28,8,40,0,21,18,121,1,17,32,10,40,0,21,18,128,137,2,17,84,28,5,8,0,18,131,88,5,40,0,18,131,108,4,40,0,29,14,4,40,0,17,57,9,40,0,21,17,128,173,1,17,57,3,40,0,13,9,40,0,21,18,128,137,2,14,14,5,40,0,17,131,200,5,40,0,18,132,76,4,40,1,10,8,6,40,0,29,18,132,172,9,40,0,21,18,128,145,1,19,0,9,40,0,21,18,128,145,1,19,1,6,40,1,19,1,19,0,8,1,0,8,0,0,0,0,0,30,1,0,1,0,84,2,22,87,114,97,112,78,111,110,69,120,99,101,112,116,105,111,110,84,104,114,111,119,115,1,8,1,0,2,0,0,0,0,0,94,1,0,89,112,111,114,116,32,111,102,32,116,104,101,32,106,97,118,97,32,98,97,115,101,100,32,98,97,114,99,111,100,101,32,115,99,97,110,110,105,110,103,32,108,105,98,114,97,114,121,32,102,111,114,32,46,110,101,116,32,40,106,97,118,97,32,122,120,105,110,103,32,48,52,46,48,51,46,50,48,49,56,32,50,50,58,49,55,58,52,48,41,0,0,26,1,0,21,90,88,105,110,103,46,78,101,116,32,68,101,118,101,108,111,112,109,101,110,116,0,0,14,1,0,9,90,88,105,110,103,46,78,101,116,0,0,22,1,0,17,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,49,50,0,0,5,1,0,0,0,0,13,1,0,8,48,46,49,54,46,50,46,48,0,0,5,1,0,1,0,0,93,1,0,44,46,78,69,84,80,111,114,116,97,98,108,101,44,86,101,114,115,105,111,110,61,118,52,46,53,44,80,114,111,102,105,108,101,61,80,114,111,102,105,108,101,50,53,57,1,0,84,14,20,70,114,97,109,101,119,111,114,107,68,105,115,112,108,97,121,78,97,109,101,20,46,78,69,84,32,80,111,114,116,97,98,108,101,32,83,117,98,115,101,116,78,1,0,73,85,115,101,32,82,71,66,76,117,109,105,110,97,110,99,101,83,111,117,114,99,101,40,108,117,109,105,110,97,110,99,101,65,114,114,97,121,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,66,105,116,109,97,112,70,111,114,109,97,116,46,71,114,97,121,56,41,0,0,44,1,0,39,111,110,108,121,32,101,120,105,115,116,115,32,102,111,114,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,0,0,61,1,0,56,119,105,116,104,111,117,116,32,114,101,112,108,97,99,101,109,101,110,116,59,32,105,110,116,101,110,100,101,100,32,97,115,32,97,110,32,105,110,116,101,114,110,97,108,45,111,110,108,121,32,109,101,116,104,111,100,0,0,8,1,0,255,127,0,0,0,0,21,1,0,0,1,0,0,1,0,84,2,9,73,110,104,101,114,105,116,101,100,0,21,1,0,28,16,0,0,1,0,84,2,9,73,110,104,101,114,105,116,101,100,0,41,1,0,36,112,108,101,97,115,101,32,117,115,101,32,80,105,120,101,108,68,97,116,97,82,101,110,100,101,114,101,114,32,105,110,115,116,101,97,100,0,0,9,1,0,4,73,116,101,109,0,0,35,1,0,30,100,101,112,114,101,99,97,116,101,100,32,119,105,116,104,111,117,116,32,114,101,112,108,97,99,101,109,101,110,116,0,0,0,70,215,32,124,202,150,16,153,114,116,82,231,53,160,55,6,236,222,237,43,174,111,250,6,14,115,195,25,183,112,54,109,90,202,245,108,199,204,135,239,121,120,1,4,240,37,255,181,11,207,83,68,81,57,230,125,34,137,15,166,123,210,49,195,81,235,9,27,230,43,202,115,207,33,227,247,207,38,248,54,167,253,86,77,191,9,158,125,141,168,7,69,153,22,224,27,79,26,207,16,226,106,246,103,174,211,141,36,187,4,218,197,177,80,139,96,97,214,183,240,246,134,116,233,36,121,201,213,0,0,0,0,195,223,196,90,0,0,0,0,2,0,0,0,28,1,0,0,132,10,6,0,132,236,5,0,82,83,68,83,159,182,224,5,19,185,32,66,175,178,83,249,69,56,23,90,1,0,0,0,67,58,92,112,114,111,106,101,99,116,115,92,122,120,105,110,103,45,110,101,116,45,109,111,98,105,108,101,92,83,111,117,114,99,101,92,90,88,105,110,103,46,78,101,116,92,83,111,117,114,99,101,92,108,105,98,92,111,98,106,92,82,101,108,101,97,115,101,92,112,111,114,116,97,98,108,101,92,122,120,105,110,103,46,112,111,114,116,97,98,108,101,46,112,100,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,11,6,0,0,0,0,0,0,0,0,0,226,11,6,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,11,6,0,0,0,0,0,0,0,0,0,0,0,95,67,111,114,68,108,108,77,97,105,110,0,109,115,99,111,114,101,101,46,100,108,108,0,0,0,0,0,255,37,0,32,0,16,6,0,0,0,28,0,0,0,54,0,0,0,80,0,0,0,106,0,0,0,132,0,0,0,158,0,0,0,0,0,0,0,6,0,0,0,32,0,0,0,58,0,0,0,84,0,0,0,110,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,34,0,0,0,60,0,0,0,86,0,0,0,112,0,0,0,138,0,0,0,6,0,0,0,26,0,0,0,48,0,0,0,70,0,0,0,52,0,0,0,33,1,0,0,97,0,0,0,96,1,0,0,49,0,0,0,48,1,0,0,112,0,0,0,37,0,0,0,36,1,0,0,100,0,0,0,9,1,0,0,73,0,0,0,72,1,0,0,25,0,0,0,24,1,0,0,88,0,0,0,13,0,0,0,12,1,0,0,76,0,0,0,28,0,0,0,3,1,0,0,67,0,0,0,66,1,0,0,19,0,0,0,18,1,0,0,82,0,0,0,7,0,0,0,6,1,0,0,70,0,0,0,22,0,0,0,129,1,0,0,193,0,0,0,192,1,0,0,145,0,0,0,144,1,0,0,208,0,0,0,133,0,0,0,132,1,0,0,196,0,0,0,168,0,0,0,162,0,0,0,138,0,0,0,42,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,6,0,0,0,9,0,0,0,96,0,0,0,18,0,0,0,66,0,0,0,33,0,0,0,36,0,0,0,48,0,0,0,72,0,0,0,12,0,0,0,24,0,0,0,69,0,0,0,81,0,0,0,84,0,0,0,21,0,0,0,26,0,0,0,41,0,0,0,11,0,0,0,14,0,0,0,6,0,0,0,18,0,0,0,54,0,0,0,162,0,0,0,64,0,0,0,192,0,0,0,154,0,0,0,40,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,238,1,9,0,0,0,0,0,30,0,5,0,29,0,5,0,190,3,10,0,0,0,0,0,3,0,0,0,4,0,0,0,6,0,0,0,1,0,0,0,157,1,0,0,156,1,0,0,151,1,0,0,150,1,0,0,145,1,0,0,144,1,0,0,139,1,0,0,138,1,0,0,83,0,0,0,82,0,0,0,41,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,5,0,0,0,4,0,0,0,47,0,0,0,46,0,0,0,113,0,0,0,112,0,0,0,133,1,0,0,132,1,0,0,127,1,0,0,126,1,0,0,121,1,0,0,120,1,0,0,63,3,0,0,253,255,255,255,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,4,0,0,0,4,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,193,0,0,0,157,0,0,0,49,0,0,0,147,0,0,0,19,0,0,0,57,0,0,0,171,0,0,0,91,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,6,0,0,0,18,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,114,0,0,0,142,0,0,0,170,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,5,0,0,0,153,1,0,0,152,1,0,0,147,1,0,0,146,1,0,0,141,1,0,0,140,1,0,0,135,1,0,0,134,1,0,0,79,0,0,0,78,0,0,0,254,255,255,255,254,255,255,255,13,0,0,0,12,0,0,0,37,0,0,0,36,0,0,0,2,0,0,0,255,255,255,255,44,0,0,0,43,0,0,0,109,0,0,0,108,0,0,0,129,1,0,0,128,1,0,0,123,1,0,0,122,1,0,0,117,1,0,0,116,1,0,0,60,3,0,0,253,255,255,255,84,0,78,0,42,0,69,0,47,0,58,0,43,0,46,0,228,0,0,0,48,0,0,0,15,0,0,0,111,0,0,0,62,0,0,0,0,0,0,0,77,0,0,0,193,0,0,0,137,0,0,0,31,0,0,0,19,0,0,0,38,0,0,0,22,0,0,0,153,0,0,0,247,0,0,0,105,0,0,0,122,0,0,0,2,0,0,0,245,0,0,0,133,0,0,0,242,0,0,0,8,0,0,0,175,0,0,0,95,0,0,0,100,0,0,0,9,0,0,0,167,0,0,0,105,0,0,0,214,0,0,0,111,0,0,0,57,0,0,0,121,0,0,0,21,0,0,0,1,0,0,0,253,0,0,0,57,0,0,0,54,0,0,0,101,0,0,0,248,0,0,0,202,0,0,0,69,0,0,0,50,0,0,0,150,0,0,0,177,0,0,0,226,0,0,0,5,0,0,0,9,0,0,0,5,0,0,0,10,2,0,0,56,2,0,0,211,2,0,0,41,3,0,0,6,0,0,0,26,0,0,0,50,0,0,0,74,0,0,0,98,0,0,0,122,0,0,0,255,255,255,255,0,0,0,0,6,0,0,0,32,0,0,0,58,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,26,0,0,0,50,0,0,0,74,0,0,0,98,0,0,0,122,0,0,0,57,2,0,0,56,2,0,0,63,2,0,0,62,2,0,0,69,2,0,0,68,2,0,0,75,2,0,0,74,2,0,0,81,2,0,0,80,2,0,0,87,2,0,0,86,2,0,0,93,2,0,0,92,2,0,0,99,2,0,0,98,2,0,0,105,2,0,0,104,2,0,0,111,2,0,0,110,2,0,0,117,2,0,0,116,2,0,0,123,2,0,0,122,2,0,0,129,2,0,0,128,2,0,0,135,2,0,0,134,2,0,0,86,3,0,0,85,3,0,0,123,0,0,0,122,0,0,0,129,0,0,0,128,0,0,0,135,0,0,0,134,0,0,0,141,0,0,0,140,0,0,0,147,0,0,0,146,0,0,0,153,0,0,0,152,0,0,0,159,0,0,0,158,0,0,0,165,0,0,0,164,0,0,0,171,0,0,0,170,0,0,0,177,0,0,0,176,0,0,0,183,0,0,0,182,0,0,0,189,0,0,0,188,0,0,0,195,0,0,0,194,0,0,0,201,0,0,0,200,0,0,0,48,3,0,0,253,255,255,255,1,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,219,2,0,0,218,2,0,0,213,2,0,0,212,2,0,0,207,2,0,0,206,2,0,0,201,2,0,0,200,2,0,0,195,2,0,0,194,2,0,0,189,2,0,0,188,2,0,0,183,2,0,0,182,2,0,0,177,2,0,0,176,2,0,0,171,2,0,0,170,2,0,0,165,2,0,0,164,2,0,0,159,2,0,0,158,2,0,0,153,2,0,0,152,2,0,0,147,2,0,0,146,2,0,0,141,2,0,0,140,2,0,0,90,3,0,0,253,255,255,255,175,0,0,0,138,0,0,0,205,0,0,0,12,0,0,0,194,0,0,0,168,0,0,0,39,0,0,0,245,0,0,0,60,0,0,0,97,0,0,0,120,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,163,1,0,0,162,1,0,0,169,1,0,0,168,1,0,0,175,1,0,0,174,1,0,0,107,0,0,0,106,0,0,0,59,0,0,0,58,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,23,0,0,0,89,0,0,0,88,0,0,0,181,1,0,0,180,1,0,0,187,1,0,0,186,1,0,0,193,1,0,0,192,1,0,0,68,3,0,0,67,3,0,0,1,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,60,0,0,0,14,0,0,0,1,0,0,0,27,0,0,0,38,0,0,0,61,0,0,0,10,0,0,0,24,0,0,0,50,0,0,0,55,0,0,0,19,0,0,0,32,0,0,0,45,0,0,0,0,0,0,0,65,0,68,0,65,0,68,0,65,0,68,0,65,0,65,0,68,0,65,0,68,0,65,0,68,0,0,0,0,0,0,0,65,0,65,0,65,0,68,0,68,0,68,0,65,0,68,0,68,0,68,0,65,0,68,0,65,0,0,0,0,0,0,0,6,0,0,0,24,0,0,0,42,0,0,0,0,0,0,0,221,2,0,0,220,2,0,0,227,2,0,0,226,2,0,0,233,2,0,0,232,2,0,0,239,2,0,0,238,2,0,0,245,2,0,0,244,2,0,0,251,2,0,0,250,2,0,0,1,3,0,0,0,3,0,0,7,3,0,0,6,3,0,0,13,3,0,0,12,3,0,0,19,3,0,0,18,3,0,0,25,3,0,0,24,3,0,0,31,3,0,0,30,3,0,0,37,3,0,0,36,3,0,0,43,3,0,0,42,3,0,0,92,3,0,0,91,3,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,6,0,0,0,32,0,0,0,58,0,0,0,84,0,0,0,110,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,8,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,90,0,0,0,118,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,4,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,26,0,0,0,46,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,90,0,0,0,118,0,0,0,146,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,26,0,0,0,52,0,0,0,78,0,0,0,104,0,0,0,130,0,0,0,53,2,0,0,52,2,0,0,59,2,0,0,58,2,0,0,65,2,0,0,64,2,0,0,71,2,0,0,70,2,0,0,77,2,0,0,76,2,0,0,83,2,0,0,82,2,0,0,89,2,0,0,88,2,0,0,95,2,0,0,94,2,0,0,101,2,0,0,100,2,0,0,107,2,0,0,106,2,0,0,113,2,0,0,112,2,0,0,119,2,0,0,118,2,0,0,125,2,0,0,124,2,0,0,131,2,0,0,130,2,0,0,83,3,0,0,82,3,0,0,6,0,0,0,26,0,0,0,50,0,0,0,74,0,0,0,98,0,0,0,0,0,0,0,49,2,0,0,48,2,0,0,43,2,0,0,42,2,0,0,37,2,0,0,36,2,0,0,31,2,0,0,30,2,0,0,75,0,0,0,74,0,0,0,254,255,255,255,255,255,255,255,7,0,0,0,6,0,0,0,35,0,0,0,34,0,0,0,11,0,0,0,254,255,255,255,69,0,0,0,68,0,0,0,117,0,0,0,116,0,0,0,25,2,0,0,24,2,0,0,19,2,0,0,18,2,0,0,13,2,0,0,12,2,0,0,80,3,0,0,79,3,0,0,3,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,102,0,0,0,126,0,0,0,255,255,255,255,0,0,0,0,47,0,0,0,5,0,0,0,35,0,0,0,39,0,0,0,30,0,0,0,42,0,0,0,15,0,0,0,60,0,0,0,20,0,0,0,10,0,0,0,65,0,0,0,54,0,0,0,23,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,245,0,0,0,127,0,0,0,242,0,0,0,218,0,0,0,130,0,0,0,250,0,0,0,162,0,0,0,181,0,0,0,102,0,0,0,120,0,0,0,84,0,0,0,179,0,0,0,220,0,0,0,251,0,0,0,80,0,0,0,182,0,0,0,229,0,0,0,18,0,0,0,2,0,0,0,4,0,0,0,68,0,0,0,33,0,0,0,101,0,0,0,137,0,0,0,95,0,0,0,119,0,0,0,115,0,0,0,44,0,0,0,175,0,0,0,184,0,0,0,59,0,0,0,25,0,0,0,225,0,0,0,98,0,0,0,81,0,0,0,112,0,0,0,175,0,0,0,9,0,0,0,223,0,0,0,238,0,0,0,12,0,0,0,17,0,0,0,220,0,0,0,208,0,0,0,100,0,0,0,29,0,0,0,175,0,0,0,170,0,0,0,230,0,0,0,192,0,0,0,215,0,0,0,235,0,0,0,150,0,0,0,159,0,0,0,36,0,0,0,223,0,0,0,38,0,0,0,200,0,0,0,132,0,0,0,54,0,0,0,228,0,0,0,146,0,0,0,218,0,0,0,234,0,0,0,117,0,0,0,203,0,0,0,29,0,0,0,232,0,0,0,144,0,0,0,238,0,0,0,22,0,0,0,150,0,0,0,201,0,0,0,117,0,0,0,62,0,0,0,207,0,0,0,164,0,0,0,13,0,0,0,137,0,0,0,245,0,0,0,127,0,0,0,67,0,0,0,247,0,0,0,28,0,0,0,155,0,0,0,43,0,0,0,203,0,0,0,107,0,0,0,233,0,0,0,53,0,0,0,143,0,0,0,46,0,0,0,33,34,35,36,25,26,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,161,1,0,0,160,1,0,0,167,1,0,0,166,1,0,0,173,1,0,0,172,1,0,0,105,0,0,0,104,0,0,0,57,0,0,0,56,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,22,0,0,0,21,0,0,0,87,0,0,0,86,0,0,0,179,1,0,0,178,1,0,0,185,1,0,0,184,1,0,0,191,1,0,0,190,1,0,0,66,3,0,0,253,255,255,255,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,192,213,1,0,240,234,1,0,124,245,1,0,224,212,1,0,120,234,1,0,62,245,1,0,192,168,1,0,112,212,1,0,96,168,1,0,64,80,1,0,48,168,1,0,32,80,1,0,192,173,1,0,240,214,1,0,124,235,1,0,224,172,1,0,120,214,1,0,62,235,1,0,192,88,1,0,112,172,1,0,96,88,1,0,192,93,1,0,240,174,1,0,124,215,1,0,224,92,1,0,120,174,1,0,62,215,1,0,112,92,1,0,60,174,1,0,240,94,1,0,124,175,1,0,120,94,1,0,62,175,1,0,124,95,1,0,250,245,1,0,224,210,1,0,120,233,1,0,190,244,1,0,192,164,1,0,112,210,1,0,60,233,1,0,96,164,1,0,56,210,1,0,64,72,1,0,48,164,1,0,28,210,1,0,32,72,1,0,24,164,1,0,16,72,1,0,224,166,1,0,120,211,1,0,190,233,1,0,192,76,1,0,112,166,1,0,60,211,1,0,96,76,1,0,56,166,1,0,30,211,1,0,48,76,1,0,28,166,1,0,224,78,1,0,120,167,1,0,190,211,1,0,112,78,1,0,60,167,1,0,56,78,1,0,30,167,1,0,120,79,1,0,190,167,1,0,60,79,1,0,30,79,1,0,192,162,1,0,112,209,1,0,188,232,1,0,96,162,1,0,56,209,1,0,158,232,1,0,64,68,1,0,48,162,1,0,28,209,1,0,32,68,1,0,24,162,1,0,16,68,1,0,8,68,1,0,192,70,1,0,112,163,1,0,188,209,1,0,96,70,1,0,56,163,1,0,158,209,1,0,48,70,1,0,28,163,1,0,24,70,1,0,12,70,1,0,112,71,1,0,188,163,1,0,56,71,1,0,158,163,1,0,28,71,1,0,188,71,1,0,96,161,1,0,184,208,1,0,94,232,1,0,64,66,1,0,48,161,1,0,156,208,1,0,32,66,1,0,24,161,1,0,142,208,1,0,16,66,1,0,12,161,1,0,8,66,1,0,6,161,1,0,96,67,1,0,184,161,1,0,222,208,1,0,48,67,1,0,156,161,1,0,24,67,1,0,142,161,1,0,12,67,1,0,6,67,1,0,222,161,1,0,142,67,1,0,64,65,1,0,176,160,1,0,92,208,1,0,32,65,1,0,152,160,1,0,78,208,1,0,16,65,1,0,140,160,1,0,8,65,1,0,134,160,1,0,4,65,1,0,176,65,1,0,152,65,1,0,140,65,1,0,160,64,1,0,46,208,1,0,76,160,1,0,70,160,1,0,130,64,1,0,224,202,1,0,120,229,1,0,190,242,1,0,192,148,1,0,112,202,1,0,60,229,1,0,96,148,1,0,56,202,1,0,30,229,1,0,64,40,1,0,48,148,1,0,32,40,1,0,224,150,1,0,120,203,1,0,190,229,1,0,192,44,1,0,112,150,1,0,60,203,1,0,96,44,1,0,56,150,1,0,48,44,1,0,24,44,1,0,224,46,1,0,120,151,1,0,190,203,1,0,112,46,1,0,60,151,1,0,56,46,1,0,28,46,1,0,120,47,1,0,190,151,1,0,60,47,1,0,190,47,1,0,192,218,1,0,112,237,1,0,188,246,1,0,96,218,1,0,56,237,1,0,158,246,1,0,64,180,1,0,48,218,1,0,28,237,1,0,32,180,1,0,24,218,1,0,14,237,1,0,16,180,1,0,12,218,1,0,192,146,1,0,112,201,1,0,188,228,1,0,192,182,1,0,96,146,1,0,56,201,1,0,158,228,1,0,96,182,1,0,56,219,1,0,158,237,1,0,64,108,1,0,32,36,1,0,24,146,1,0,14,201,1,0,32,108,1,0,24,182,1,0,16,108,1,0,192,38,1,0,112,147,1,0,188,201,1,0,192,110,1,0,96,38,1,0,56,147,1,0,158,201,1,0,96,110,1,0,56,183,1,0,158,219,1,0,48,110,1,0,24,38,1,0,24,110,1,0,112,39,1,0,188,147,1,0,112,111,1,0,56,39,1,0,158,147,1,0,56,111,1,0,158,183,1,0,28,111,1,0,188,39,1,0,188,111,1,0,158,39,1,0,158,111,1,0,96,217,1,0,184,236,1,0,94,246,1,0,64,178,1,0,48,217,1,0,156,236,1,0,32,178,1,0,24,217,1,0,142,236,1,0,16,178,1,0,12,217,1,0,8,178,1,0,4,178,1,0,96,145,1,0,184,200,1,0,94,228,1,0,96,179,1,0,48,145,1,0,156,200,1,0,64,102,1,0,32,34,1,0,156,217,1,0,142,200,1,0,32,102,1,0,16,34,1,0,12,145,1,0,16,102,1,0,12,179,1,0,6,145,1,0,4,34,1,0,96,35,1,0,184,145,1,0,222,200,1,0,96,103,1,0,48,35,1,0,156,145,1,0,48,103,1,0,156,179,1,0,142,145,1,0,24,103,1,0,12,35,1,0,6,35,1,0,184,35,1,0,222,145,1,0,184,103,1,0,156,35,1,0,156,103,1,0,142,35,1,0,142,103,1,0,222,103,1,0,64,177,1,0,176,216,1,0,92,236,1,0,32,177,1,0,152,216,1,0,78,236,1,0,16,177,1,0,140,216,1,0,8,177,1,0,134,216,1,0,4,177,1,0,2,177,1,0,64,33,1,0,176,144,1,0,92,200,1,0,64,99,1,0,32,33,1,0,152,144,1,0,78,200,1,0,32,99,1,0,152,177,1,0,206,216,1,0,16,99,1,0,8,33,1,0,134,144,1,0,8,99,1,0,134,177,1,0,4,99,1,0,176,33,1,0,220,144,1,0,176,99,1,0,152,33,1,0,206,144,1,0,152,99,1,0,206,177,1,0,140,99,1,0,134,33,1,0,134,99,1,0,220,99,1,0,206,99,1,0,160,176,1,0,88,216,1,0,46,236,1,0,144,176,1,0,76,216,1,0,136,176,1,0,70,216,1,0,132,176,1,0,130,176,1,0,160,32,1,0,88,144,1,0,46,200,1,0,160,97,1,0,144,32,1,0,76,144,1,0,144,97,1,0,204,176,1,0,70,144,1,0,136,97,1,0,132,32,1,0,132,97,1,0,130,32,1,0,216,32,1,0,216,97,1,0,204,97,1,0,198,97,1,0,44,216,1,0,38,216,1,0,66,176,1,0,44,144,1,0,72,32,1,0,200,96,1,0,196,96,1,0,194,96,1,0,192,138,1,0,112,197,1,0,188,226,1,0,96,138,1,0,56,197,1,0,64,20,1,0,48,138,1,0,28,197,1,0,32,20,1,0,24,138,1,0,16,20,1,0,8,20,1,0,192,22,1,0,112,139,1,0,188,197,1,0,96,22,1,0,56,139,1,0,158,197,1,0,48,22,1,0,28,139,1,0,24,22,1,0,12,22,1,0,112,23,1,0,188,139,1,0,56,23,1,0,158,139,1,0,28,23,1,0,188,23,1,0,158,23,1,0,96,205,1,0,184,230,1,0,94,243,1,0,64,154,1,0,48,205,1,0,156,230,1,0,32,154,1,0,24,205,1,0,142,230,1,0,16,154,1,0,12,205,1,0,8,154,1,0,6,205,1,0,96,137,1,0,184,196,1,0,94,226,1,0,96,155,1,0,48,137,1,0,156,196,1,0,64,54,1,0,32,18,1,0,156,205,1,0,142,196,1,0,32,54,1,0,24,155,1,0,12,137,1,0,16,54,1,0,8,18,1,0,8,54,1,0,96,19,1,0,184,137,1,0,222,196,1,0,96,55,1,0,48,19,1,0,222,205,1,0,48,55,1,0,156,155,1,0,142,137,1,0,24,55,1,0,12,19,1,0,12,55,1,0,184,19,1,0,222,137,1,0,184,55,1,0,156,19,1,0,156,55,1,0,142,19,1,0,222,19,1,0,222,55,1,0,64,221,1,0,176,238,1,0,92,247,1,0,32,221,1,0,152,238,1,0,78,247,1,0,16,221,1,0,140,238,1,0,8,221,1,0,134,238,1,0,4,221,1,0,64,153,1,0,176,204,1,0,92,230,1,0,64,187,1,0,32,153,1,0,220,238,1,0,78,230,1,0,32,187,1,0,152,221,1,0,206,238,1,0,16,187,1,0,8,153,1,0,134,204,1,0,8,187,1,0,134,221,1,0,2,153,1,0,64,17,1,0,176,136,1,0,92,196,1,0,64,51,1,0,32,17,1,0,152,136,1,0,78,196,1,0,64,119,1,0,32,51,1,0,152,153,1,0,206,204,1,0,32,119,1,0,152,187,1,0,206,221,1,0,134,136,1,0,16,119,1,0,8,51,1,0,134,153,1,0,8,119,1,0,2,17,1,0,176,17,1,0,220,136,1,0,176,51,1,0,152,17,1,0,206,136,1,0,176,119,1,0,152,51,1,0,206,153,1,0,152,119,1,0,206,187,1,0,134,17,1,0,134,51,1,0,220,17,1,0,220,51,1,0,206,17,1,0,220,119,1,0,206,51,1,0,160,220,1,0,88,238,1,0,46,247,1,0,144,220,1,0,76,238,1,0,136,220,1,0,70,238,1,0,132,220,1,0,130,220,1,0,160,152,1,0,88,204,1,0,46,230,1,0,160,185,1,0,144,152,1,0,110,238,1,0,144,185,1,0,204,220,1,0,70,204,1,0,136,185,1,0,132,152,1,0,132,185,1,0,130,152,1,0,130,185,1,0,160,16,1,0,88,136,1,0,46,196,1,0,160,49,1,0,144,16,1,0,76,136,1,0,160,115,1,0,144,49,1,0,204,152,1,0,70,136,1,0,144,115,1,0,204,185,1,0,132,16,1,0,136,115,1,0,132,49,1,0,130,16,1,0,130,49,1,0,216,16,1,0,110,136,1,0,216,49,1,0,204,16,1,0,216,115,1,0,204,49,1,0,198,16,1,0,204,115,1,0,198,49,1,0,238,16,1,0,238,115,1,0,80,220,1,0,44,238,1,0,72,220,1,0,38,238,1,0,68,220,1,0,66,220,1,0,80,152,1,0,44,204,1,0,208,184,1,0,72,152,1,0,38,204,1,0,200,184,1,0,102,220,1,0,196,184,1,0,66,152,1,0,194,184,1,0,80,16,1,0,44,136,1,0,208,48,1,0,72,16,1,0,38,136,1,0,208,113,1,0,200,48,1,0,102,152,1,0,200,113,1,0,230,184,1,0,66,16,1,0,196,113,1,0,194,48,1,0,194,113,1,0,236,48,1,0,236,113,1,0,230,113,1,0,22,238,1,0,34,220,1,0,22,204,1,0,36,152,1,0,34,152,1,0,40,16,1,0,104,48,1,0,232,112,1,0,34,16,1,0,98,48,1,0,96,133,1,0,64,10,1,0,48,133,1,0,32,10,1,0,24,133,1,0,142,194,1,0,16,10,1,0,12,133,1,0,8,10,1,0,6,133,1,0,96,11,1,0,184,133,1,0,222,194,1,0,48,11,1,0,156,133,1,0,24,11,1,0,142,133,1,0,12,11,1,0,6,11,1,0,184,11,1,0,222,133,1,0,156,11,1,0,142,11,1,0,222,11,1,0,64,141,1,0,176,198,1,0,92,227,1,0,32,141,1,0,152,198,1,0,16,141,1,0,140,198,1,0,8,141,1,0,134,198,1,0,4,141,1,0,64,9,1,0,176,132,1,0,92,194,1,0,64,27,1,0,32,9,1,0,220,198,1,0,78,194,1,0,32,27,1,0,152,141,1,0,206,198,1,0,16,27,1,0,8,9,1,0,134,132,1,0,8,27,1,0,134,141,1,0,2,9,1,0,176,9,1,0,220,132,1,0,176,27,1,0,152,9,1,0,206,132,1,0,152,27,1,0,206,141,1,0,140,27,1,0,134,9,1,0,220,9,1,0,220,27,1,0,206,9,1,0,206,27,1,0,160,206,1,0,88,231,1,0,174,243,1,0,144,206,1,0,76,231,1,0,136,206,1,0,70,231,1,0,132,206,1,0,130,206,1,0,160,140,1,0,88,198,1,0,160,157,1,0,144,140,1,0,76,198,1,0,144,157,1,0,204,206,1,0,70,198,1,0,136,157,1,0,132,140,1,0,132,157,1,0,130,140,1,0,130,157,1,0,160,8,1,0,88,132,1,0,160,25,1,0,144,8,1,0,110,198,1,0,160,59,1,0,144,25,1,0,204,140,1,0,70,132,1,0,144,59,1,0,204,157,1,0,132,8,1,0,136,59,1,0,132,25,1,0,130,8,1,0,130,25,1,0,216,8,1,0,110,132,1,0,216,25,1,0,204,8,1,0,216,59,1,0,204,25,1,0,198,8,1,0,204,59,1,0,198,25,1,0,238,8,1,0,238,25,1,0,238,59,1,0,80,239,1,0,172,247,1,0,72,239,1,0,166,247,1,0,68,239,1,0,66,239,1,0,80,206,1,0,44,231,1,0,208,222,1,0,108,239,1,0,38,231,1,0,200,222,1,0,102,239,1,0,196,222,1,0,66,206,1,0,194,222,1,0,80,140,1,0,44,198,1,0,208,156,1,0,72,140,1,0,38,198,1,0,208,189,1,0,200,156,1,0,102,206,1,0,200,189,1,0,230,222,1,0,66,140,1,0,196,189,1,0,194,156,1,0,194,189,1,0,80,8,1,0,44,132,1,0,208,24,1,0,72,8,1,0,38,132,1,0,208,57,1,0,200,24,1,0,102,140,1,0,208,123,1,0,200,57,1,0,230,156,1,0,66,8,1,0,200,123,1,0,230,189,1,0,194,24,1,0,196,123,1,0,108,8,1,0,236,24,1,0,102,8,1,0,236,57,1,0,230,24,1,0,236,123,1,0,230,57,1,0,230,123,1,0,40,239,1,0,150,247,1,0,36,239,1,0,34,239,1,0,40,206,1,0,22,231,1,0,104,222,1,0,54,239,1,0,100,222,1,0,34,206,1,0,98,222,1,0,40,140,1,0,22,198,1,0,104,156,1,0,36,140,1,0,232,188,1,0,100,156,1,0,34,140,1,0,228,188,1,0,98,156,1,0,226,188,1,0,40,8,1,0,22,132,1,0,104,24,1,0,54,140,1,0,232,56,1,0,100,24,1,0,34,8,1,0,232,121,1,0,228,56,1,0,98,24,1,0,228,121,1,0,226,56,1,0,226,121,1,0,118,24,1,0,246,121,1,0,18,239,1,0,52,222,1,0,50,222,1,0,52,156,1,0,116,188,1,0,114,188,1,0,52,24,1,0,116,56,1,0,244,120,1,0,242,120,1,0,64,5,1,0,32,5,1,0,152,130,1,0,16,5,1,0,8,5,1,0,4,5,1,0,176,5,1,0,152,5,1,0,140,5,1,0,134,5,1,0,220,5,1,0,206,5,1,0,160,134,1,0,144,134,1,0,76,195,1,0,136,134,1,0,70,195,1,0,132,134,1,0,130,134,1,0,160,4,1,0,88,130,1,0,160,13,1,0,216,134,1,0,76,130,1,0,144,13,1,0,204,134,1,0,136,13,1,0,198,134,1,0,132,13,1,0,130,4,1,0,130,13,1,0,216,4,1,0,110,130,1,0,216,13,1,0,238,134,1,0,204,13,1,0,198,4,1,0,198,13,1,0,238,4,1,0,238,13,1,0,80,199,1,0,72,199,1,0,68,199,1,0,66,199,1,0,80,134,1,0,208,142,1,0,108,199,1,0,38,195,1,0,200,142,1,0,102,199,1,0,196,142,1,0,66,134,1,0,194,142,1,0,80,4,1,0,208,12,1,0,72,4,1,0,38,130,1,0,208,29,1,0,200,12,1,0,68,4,1,0,200,29,1,0,196,12,1,0,66,4,1,0,196,29,1,0,194,12,1,0,108,4,1,0,236,12,1,0,102,4,1,0,236,29,1,0,230,12,1,0,230,29,1,0,168,231,1,0,164,231,1,0,162,231,1,0,40,199,1,0,104,207,1,0,182,231,1,0,100,207,1,0,34,199,1,0,98,207,1,0,40,134,1,0,22,195,1,0,104,142,1,0,54,199,1,0,232,158,1,0,100,142,1,0,34,134,1,0,228,158,1,0,98,142,1,0,226,158,1,0,40,4,1,0,22,130,1,0,104,12,1,0,54,134,1,0,232,28,1,0,100,12,1,0,34,4,1,0,232,61,1,0,228,28,1,0,98,12,1,0,228,61,1,0,226,28,1,0,54,4,1,0,118,12,1,0,246,28,1,0,246,61,1,0,212,247,1,0,210,247,1,0,148,231,1,0,180,239,1,0,146,231,1,0,178,239,1,0,20,199,1,0,52,207,1,0,18,199,1,0,116,223,1,0,50,207,1,0,114,223,1,0,20,134,1,0,52,142,1,0,18,134,1,0,116,158,1,0,50,142,1,0,244,190,1,0,0,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,24,5,0,0,20,6,0,0,12,9,0,0,18,10,0,0,10,12,0,0,6,17,0,0,17,18,0,0,9,20,0,0,5,24,0,0,3,33,0,128,16,34,0,128,8,36,0,128,4,40,0,128,2,48,0,128,1,65,0,64,16,66,0,64,8,68,0,64,4,72,0,64,2,80,0,64,1,96,0,192,0,129,0,32,16,130,0,32,8,132,0,32,4,136,0,32,2,144,0,32,1,1,1,16,16,2,1,16,8,4,1,16,4,8,1,16,2,1,2,8,16,2,2,8,8,4,2,8,4,1,4,4,16,2,4,4,8,1,8,2,16,1,16,2,8,4,4,8,2,16,1,160,0,0,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,65,0,68,0,65,0,68,0,65,0,65,0,68,0,68,0,68,0,65,0,65,0,65,0,68,0,0,0,0,0,0,0,31,0,5,0,252,3,10,0,254,3,10,0,253,3,10,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,7,0,0,0,11,0,0,0,13,0,0,0,14,0,0,0,19,0,0,0,25,0,0,0,28,0,0,0,21,0,0,0,22,0,0,0,26,0,0,0,33,0,34,0,35,0,36,0,37,0,38,0,39,0,40,0,41,0,42,0,43,0,44,0,45,0,46,0,47,0,58,0,59,0,60,0,61,0,62,0,63,0,64,0,91,0,92,0,93,0,94,0,95,0,0,0,18,1,0,0,50,2,0,0,232,0,0,0,243,2,0,0,87,2,0,0,12,2,0,0,33,3,0,0,132,0,0,0,39,1,0,0,116,0,0,0,186,1,0,0,172,1,0,0,39,1,0,0,42,0,0,0,176,0,0,0,65,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,96,245,1,0,184,250,1,0,64,234,1,0,48,245,1,0,156,250,1,0,32,234,1,0,24,245,1,0,142,250,1,0,16,234,1,0,12,245,1,0,8,234,1,0,6,245,1,0,4,234,1,0,96,235,1,0,184,245,1,0,222,250,1,0,64,214,1,0,48,235,1,0,156,245,1,0,32,214,1,0,24,235,1,0,142,245,1,0,16,214,1,0,12,235,1,0,8,214,1,0,6,235,1,0,4,214,1,0,96,215,1,0,184,235,1,0,222,245,1,0,64,174,1,0,48,215,1,0,156,235,1,0,32,174,1,0,24,215,1,0,142,235,1,0,16,174,1,0,12,215,1,0,8,174,1,0,6,215,1,0,4,174,1,0,96,175,1,0,184,215,1,0,222,235,1,0,64,94,1,0,48,175,1,0,156,215,1,0,32,94,1,0,24,175,1,0,142,215,1,0,16,94,1,0,12,175,1,0,8,94,1,0,6,175,1,0,96,95,1,0,184,175,1,0,222,215,1,0,48,95,1,0,156,175,1,0,24,95,1,0,142,175,1,0,12,95,1,0,184,95,1,0,222,175,1,0,156,95,1,0,142,95,1,0,64,233,1,0,176,244,1,0,92,250,1,0,32,233,1,0,152,244,1,0,78,250,1,0,16,233,1,0,140,244,1,0,8,233,1,0,134,244,1,0,4,233,1,0,2,233,1,0,64,211,1,0,176,233,1,0,220,244,1,0,32,211,1,0,152,233,1,0,206,244,1,0,16,211,1,0,140,233,1,0,8,211,1,0,134,233,1,0,4,211,1,0,2,211,1,0,64,167,1,0,176,211,1,0,220,233,1,0,32,167,1,0,152,211,1,0,206,233,1,0,16,167,1,0,140,211,1,0,8,167,1,0,134,211,1,0,4,167,1,0,2,167,1,0,64,79,1,0,176,167,1,0,220,211,1,0,32,79,1,0,152,167,1,0,206,211,1,0,16,79,1,0,140,167,1,0,8,79,1,0,134,167,1,0,4,79,1,0,176,79,1,0,220,167,1,0,152,79,1,0,206,167,1,0,140,79,1,0,134,79,1,0,220,79,1,0,206,79,1,0,160,232,1,0,88,244,1,0,46,250,1,0,144,232,1,0,76,244,1,0,136,232,1,0,70,244,1,0,132,232,1,0,130,232,1,0,160,209,1,0,216,232,1,0,110,244,1,0,144,209,1,0,204,232,1,0,136,209,1,0,198,232,1,0,132,209,1,0,130,209,1,0,160,163,1,0,216,209,1,0,238,232,1,0,144,163,1,0,204,209,1,0,136,163,1,0,198,209,1,0,132,163,1,0,130,163,1,0,160,71,1,0,216,163,1,0,238,209,1,0,144,71,1,0,204,163,1,0,136,71,1,0,198,163,1,0,132,71,1,0,130,71,1,0,216,71,1,0,238,163,1,0,204,71,1,0,198,71,1,0,238,71,1,0,80,232,1,0,44,244,1,0,72,232,1,0,38,244,1,0,68,232,1,0,66,232,1,0,208,208,1,0,108,232,1,0,200,208,1,0,102,232,1,0,196,208,1,0,194,208,1,0,208,161,1,0,236,208,1,0,200,161,1,0,230,208,1,0,196,161,1,0,194,161,1,0,208,67,1,0,236,161,1,0,200,67,1,0,230,161,1,0,196,67,1,0,194,67,1,0,236,67,1,0,230,67,1,0,40,232,1,0,22,244,1,0,36,232,1,0,34,232,1,0,104,208,1,0,54,232,1,0,100,208,1,0,98,208,1,0,232,160,1,0,118,208,1,0,228,160,1,0,226,160,1,0,232,65,1,0,246,160,1,0,228,65,1,0,226,65,1,0,20,232,1,0,18,232,1,0,52,208,1,0,50,208,1,0,116,160,1,0,114,160,1,0,64,229,1,0,176,242,1,0,92,249,1,0,32,229,1,0,152,242,1,0,78,249,1,0,16,229,1,0,140,242,1,0,8,229,1,0,134,242,1,0,4,229,1,0,2,229,1,0,64,203,1,0,176,229,1,0,220,242,1,0,32,203,1,0,152,229,1,0,206,242,1,0,16,203,1,0,140,229,1,0,8,203,1,0,134,229,1,0,4,203,1,0,2,203,1,0,64,151,1,0,176,203,1,0,220,229,1,0,32,151,1,0,152,203,1,0,206,229,1,0,16,151,1,0,140,203,1,0,8,151,1,0,134,203,1,0,4,151,1,0,2,151,1,0,64,47,1,0,176,151,1,0,220,203,1,0,32,47,1,0,152,151,1,0,206,203,1,0,16,47,1,0,140,151,1,0,8,47,1,0,134,151,1,0,4,47,1,0,176,47,1,0,220,151,1,0,152,47,1,0,206,151,1,0,140,47,1,0,134,47,1,0,220,47,1,0,206,47,1,0,160,246,1,0,88,251,1,0,240,107,1,0,144,246,1,0,76,251,1,0,248,105,1,0,136,246,1,0,70,251,1,0,252,104,1,0,132,246,1,0,130,246,1,0,160,228,1,0,88,242,1,0,46,249,1,0,160,237,1,0,144,228,1,0,110,251,1,0,144,237,1,0,204,246,1,0,70,242,1,0,136,237,1,0,132,228,1,0,132,237,1,0,130,228,1,0,130,237,1,0,160,201,1,0,216,228,1,0,110,242,1,0,160,219,1,0,144,201,1,0,204,228,1,0,144,219,1,0,204,237,1,0,198,228,1,0,136,219,1,0,132,201,1,0,132,219,1,0,130,201,1,0,130,219,1,0,160,147,1,0,216,201,1,0,238,228,1,0,160,183,1,0,144,147,1,0,204,201,1,0,144,183,1,0,204,219,1,0,198,201,1,0,136,183,1,0,132,147,1,0,132,183,1,0,130,147,1,0,130,183,1,0,160,39,1,0,216,147,1,0,238,201,1,0,160,111,1,0,144,39,1,0,204,147,1,0,144,111,1,0,204,183,1,0,198,147,1,0,136,111,1,0,132,39,1,0,132,111,1,0,130,39,1,0,216,39,1,0,238,147,1,0,216,111,1,0,204,39,1,0,204,111,1,0,198,39,1,0,198,111,1,0,238,39,1,0,80,246,1,0,44,251,1,0,248,101,1,0,72,246,1,0,38,251,1,0,252,100,1,0,68,246,1,0,126,100,1,0,66,246,1,0,80,228,1,0,44,242,1,0,208,236,1,0,72,228,1,0,38,242,1,0,200,236,1,0,102,246,1,0,196,236,1,0,66,228,1,0,194,236,1,0,208,200,1,0,108,228,1,0,208,217,1,0,200,200,1,0,102,228,1,0,200,217,1,0,230,236,1,0,196,217,1,0,194,200,1,0,194,217,1,0,208,145,1,0,236,200,1,0,208,179,1,0,200,145,1,0,230,200,1,0,200,179,1,0,230,217,1,0,196,179,1,0,194,145,1,0,194,179,1,0,208,35,1,0,236,145,1,0,208,103,1,0,200,35,1,0,230,145,1,0,200,103,1,0,230,179,1,0,196,103,1,0,194,35,1,0,194,103,1,0,236,35,1,0,236,103,1,0,230,35,1,0,230,103,1,0,40,246,1,0,22,251,1,0,252,98,1,0,36,246,1,0,126,98,1,0,34,246,1,0,40,228,1,0,22,242,1,0,104,236,1,0,54,246,1,0,100,236,1,0,34,228,1,0,98,236,1,0,104,200,1,0,54,228,1,0,232,216,1,0,100,200,1,0,228,216,1,0,98,200,1,0,226,216,1,0,232,144,1,0,118,200,1,0,232,177,1,0,246,216,1,0,228,177,1,0,226,144,1,0,226,177,1,0,232,33,1,0,246,144,1,0,232,99,1,0,228,33,1,0,228,99,1,0,226,33,1,0,226,99,1,0,246,33,1,0,246,99,1,0,20,246,1,0,126,97,1,0,18,246,1,0,20,228,1,0,52,236,1,0,18,228,1,0,50,236,1,0,52,200,1,0,116,216,1,0,50,200,1,0,114,216,1,0,116,144,1,0,244,176,1,0,114,144,1,0,242,176,1,0,244,32,1,0,244,97,1,0,242,32,1,0,242,97,1,0,10,246,1,0,10,228,1,0,26,236,1,0,26,200,1,0,58,216,1,0,58,144,1,0,122,176,1,0,160,226,1,0,88,241,1,0,174,248,1,0,144,226,1,0,76,241,1,0,136,226,1,0,70,241,1,0,132,226,1,0,130,226,1,0,160,197,1,0,216,226,1,0,110,241,1,0,144,197,1,0,204,226,1,0,136,197,1,0,198,226,1,0,132,197,1,0,130,197,1,0,160,139,1,0,216,197,1,0,238,226,1,0,144,139,1,0,204,197,1,0,136,139,1,0,198,197,1,0,132,139,1,0,130,139,1,0,160,23,1,0,216,139,1,0,238,197,1,0,144,23,1,0,204,139,1,0,136,23,1,0,198,139,1,0,132,23,1,0,130,23,1,0,216,23,1,0,238,139,1,0,204,23,1,0,198,23,1,0,238,23,1,0,80,243,1,0,172,249,1,0,248,53,1,0,72,243,1,0,166,249,1,0,252,52,1,0,68,243,1,0,126,52,1,0,66,243,1,0,80,226,1,0,44,241,1,0,208,230,1,0,72,226,1,0,38,241,1,0,200,230,1,0,102,243,1,0,196,230,1,0,66,226,1,0,194,230,1,0,208,196,1,0,108,226,1,0,208,205,1,0,200,196,1,0,102,226,1,0,200,205,1,0,230,230,1,0,196,205,1,0,194,196,1,0,194,205,1,0,208,137,1,0,236,196,1,0,208,155,1,0,200,137,1,0,230,196,1,0,200,155,1,0,230,205,1,0,196,155,1,0,194,137,1,0,194,155,1,0,208,19,1,0,236,137,1,0,208,55,1,0,200,19,1,0,230,137,1,0,200,55,1,0,230,155,1,0,196,55,1,0,194,19,1,0,194,55,1,0,236,19,1,0,236,55,1,0,230,19,1,0,230,55,1,0,168,251,1,0,240,117,1,0,252,186,1,0,164,251,1,0,248,116,1,0,126,186,1,0,162,251,1,0,124,116,1,0,62,116,1,0,40,243,1,0,150,249,1,0,252,50,1,0,104,247,1,0,182,251,1,0,252,118,1,0,126,50,1,0,100,247,1,0,34,243,1,0,126,118,1,0,98,247,1,0,40,226,1,0,22,241,1,0,104,230,1,0,36,226,1,0,232,238,1,0,118,247,1,0,34,226,1,0,228,238,1,0,98,230,1,0,226,238,1,0,104,196,1,0,54,226,1,0,232,204,1,0,100,196,1,0,232,221,1,0,228,204,1,0,98,196,1,0,228,221,1,0,226,204,1,0,226,221,1,0,232,136,1,0,118,196,1,0,232,153,1,0,228,136,1,0,232,187,1,0,228,153,1,0,226,136,1,0,228,187,1,0,226,153,1,0,226,187,1,0,232,17,1,0,246,136,1,0,232,51,1,0,228,17,1,0,232,119,1,0,228,51,1,0,226,17,1,0,228,119,1,0,226,51,1,0,226,119,1,0,246,17,1,0,246,51,1,0,148,251,1,0,248,114,1,0,126,185,1,0,146,251,1,0,124,114,1,0,62,114,1,0,20,243,1,0,126,49,1,0,52,247,1,0,18,243,1,0,126,115,1,0,50,247,1,0,20,226,1,0,52,230,1,0,18,226,1,0,116,238,1,0,50,230,1,0,114,238,1,0,52,196,1,0,116,204,1,0,50,196,1,0,244,220,1,0,114,204,1,0,242,220,1,0,116,136,1,0,244,152,1,0,114,136,1,0,244,185,1,0,242,152,1,0,242,185,1,0,244,16,1,0,244,49,1,0,242,16,1,0,244,115,1,0,242,49,1,0,242,115,1,0,138,251,1,0,124,113,1,0,62,113,1,0,10,243,1,0,26,247,1,0,10,226,1,0,26,230,1,0,58,238,1,0,26,196,1,0,58,204,1,0,122,220,1,0,58,136,1,0,122,152,1,0,250,184,1,0,122,16,1,0,250,48,1,0,250,113,1,0,190,112,1,0,80,225,1,0,172,240,1,0,72,225,1,0,166,240,1,0,68,225,1,0,66,225,1,0,208,194,1,0,108,225,1,0,200,194,1,0,102,225,1,0,196,194,1,0,194,194,1,0,208,133,1,0,236,194,1,0,200,133,1,0,230,194,1,0,196,133,1,0,194,133,1,0,208,11,1,0,236,133,1,0,200,11,1,0,230,133,1,0,196,11,1,0,194,11,1,0,236,11,1,0,230,11,1,0,168,241,1,0,214,248,1,0,252,26,1,0,164,241,1,0,126,26,1,0,162,241,1,0,40,225,1,0,150,240,1,0,104,227,1,0,36,225,1,0,100,227,1,0,34,225,1,0,98,227,1,0,104,194,1,0,54,225,1,0,232,198,1,0,100,194,1,0,228,198,1,0,98,194,1,0,226,198,1,0,232,132,1,0,118,194,1,0,232,141,1,0,228,132,1,0,228,141,1,0,226,132,1,0,226,141,1,0,232,9,1,0,246,132,1,0,232,27,1,0,228,9,1,0,228,27,1,0,226,9,1,0,226,27,1,0,246,9,1,0,246,27,1,0,212,249,1,0,248,58,1,0,126,157,1,0,210,249,1,0,124,58,1,0,62,58,1,0,148,241,1,0,126,25,1,0,180,243,1,0,146,241,1,0,126,59,1,0,178,243,1,0,20,225,1,0,52,227,1,0,18,225,1,0,116,231,1,0,50,227,1,0,114,231,1,0,52,194,1,0,116,198,1,0,50,194,1,0,244,206,1,0,114,198,1,0,242,206,1,0,116,132,1,0,244,140,1,0,114,132,1,0,244,157,1,0,242,140,1,0,242,157,1,0,244,8,1,0,244,25,1,0,242,8,1,0,244,59,1,0,242,25,1,0,242,59,1,0,240,122,1,0,124,189,1,0,120,122,1,0,62,189,1,0,60,122,1,0,30,122,1,0,202,249,1,0,124,57,1,0,218,251,1,0,124,123,1,0,62,57,1,0,62,123,1,0,138,241,1,0,154,243,1,0,186,247,1,0,10,225,1,0,26,227,1,0,58,231,1,0,122,239,1,0,26,194,1,0,58,198,1,0,122,206,1,0,250,222,1,0,58,132,1,0,122,140,1,0,250,156,1,0,250,189,1,0,122,8,1,0,250,24,1,0,250,57,1,0,120,121,1,0,190,188,1,0,60,121,1,0,30,121,1,0,190,56,1,0,190,121,1,0,188,120,1,0,158,120,1,0,94,120,1,0,168,224,1,0,164,224,1,0,162,224,1,0,104,193,1,0,182,224,1,0,100,193,1,0,98,193,1,0,232,130,1,0,118,193,1,0,228,130,1,0,226,130,1,0,232,5,1,0,246,130,1,0,228,5,1,0,226,5,1,0,246,5,1,0,212,240,1,0,126,13,1,0,210,240,1,0,148,224,1,0,180,225,1,0,146,224,1,0,178,225,1,0,52,193,1,0,116,195,1,0,50,193,1,0,114,195,1,0,116,130,1,0,244,134,1,0,114,130,1,0,242,134,1,0,244,4,1,0,244,13,1,0,242,4,1,0,242,13,1,0,234,248,1,0,124,29,1,0,62,29,1,0,202,240,1,0,218,241,1,0,138,224,1,0,154,225,1,0,186,227,1,0,26,193,1,0,58,195,1,0,122,199,1,0,58,130,1,0,122,134,1,0,250,142,1,0,122,4,1,0,250,12,1,0,250,29,1,0,120,61,1,0,190,158,1,0,60,61,1,0,30,61,1,0,190,28,1,0,190,61,1,0,112,125,1,0,188,190,1,0,56,125,1,0,158,190,1,0,28,125,1,0,14,125,1,0,188,60,1,0,188,125,1,0,158,60,1,0,158,125,1,0,184,124,1,0,94,190,1,0,156,124,1,0,142,124,1,0,94,60,1,0,222,124,1,0,92,124,1,0,78,124,1,0,46,124,1,0,180,192,1,0,178,192,1,0,116,129,1,0,114,129,1,0,244,2,1,0,242,2,1,0,218,224,1,0,154,192,1,0,186,193,1,0,58,129,1,0,122,131,1,0,122,2,1,0,250,6,1,0,190,14,1,0,188,30,1,0,158,30,1,0,184,62,1,0,94,159,1,0,156,62,1,0,142,62,1,0,94,30,1,0,222,62,1,0,176,126,1,0,92,191,1,0,152,126,1,0,78,191,1,0,140,126,1,0,134,126,1,0,92,62,1,0,220,126,1,0,78,62,1,0,206,126,1,0,88,126,1,0,46,191,1,0,76,126,1,0,70,126,1,0,46,62,1,0,110,126,1,0,44,126,1,0,38,126,1,0,94,15,1,0,92,31,1,0,78,31,1,0,88,63,1,0,174,159,1,0,76,63,1,0,70,63,1,0,46,31,1,0,110,63,1,0,44,63,1,0,38,63,1,0,0,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,65,0,65,0,65,0,68,0,68,0,65,0,68,0,65,0,65,0,68,0,68,0,68,0,65,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,94,2,1,0,122,2,1,0,158,2,1,0,188,2,1,0,242,2,1,0,244,2,1,0,46,3,1,0,78,3,1,0,92,3,1,0,150,3,1,0,166,3,1,0,172,3,1,0,34,4,1,0,40,4,1,0,54,4,1,0,66,4,1,0,68,4,1,0,72,4,1,0,80,4,1,0,94,4,1,0,102,4,1,0,108,4,1,0,122,4,1,0,130,4,1,0,158,4,1,0,160,4,1,0,188,4,1,0,198,4,1,0,216,4,1,0,238,4,1,0,242,4,1,0,244,4,1,0,4,5,1,0,8,5,1,0,16,5,1,0,30,5,1,0,32,5,1,0,60,5,1,0,64,5,1,0,120,5,1,0,134,5,1,0,140,5,1,0,152,5,1,0,176,5,1,0,190,5,1,0,206,5,1,0,220,5,1,0,226,5,1,0,228,5,1,0,232,5,1,0,246,5,1,0,46,6,1,0,78,6,1,0,92,6,1,0,142,6,1,0,156,6,1,0,184,6,1,0,222,6,1,0,250,6,1,0,22,7,1,0,38,7,1,0,44,7,1,0,70,7,1,0,76,7,1,0,88,7,1,0,110,7,1,0,146,7,1,0,148,7,1,0,162,7,1,0,164,7,1,0,168,7,1,0,182,7,1,0,34,8,1,0,40,8,1,0,66,8,1,0,72,8,1,0,80,8,1,0,94,8,1,0,102,8,1,0,108,8,1,0,122,8,1,0,130,8,1,0,132,8,1,0,144,8,1,0,158,8,1,0,160,8,1,0,188,8,1,0,198,8,1,0,204,8,1,0,216,8,1,0,238,8,1,0,242,8,1,0,244,8,1,0,2,9,1,0,8,9,1,0,30,9,1,0,32,9,1,0,60,9,1,0,64,9,1,0,120,9,1,0,134,9,1,0,152,9,1,0,176,9,1,0,190,9,1,0,206,9,1,0,220,9,1,0,226,9,1,0,228,9,1,0,232,9,1,0,246,9,1,0,8,10,1,0,16,10,1,0,30,10,1,0,32,10,1,0,60,10,1,0,64,10,1,0,120,10,1,0,240,10,1,0,6,11,1,0,12,11,1,0,24,11,1,0,48,11,1,0,62,11,1,0,96,11,1,0,124,11,1,0,142,11,1,0,156,11,1,0,184,11,1,0,194,11,1,0,196,11,1,0,200,11,1,0,208,11,1,0,222,11,1,0,230,11,1,0,236,11,1,0,46,12,1,0,78,12,1,0,92,12,1,0,98,12,1,0,100,12,1,0,104,12,1,0,118,12,1,0,142,12,1,0,156,12,1,0,184,12,1,0,194,12,1,0,196,12,1,0,200,12,1,0,208,12,1,0,222,12,1,0,230,12,1,0,236,12,1,0,250,12,1,0,14,13,1,0,28,13,1,0,56,13,1,0,112,13,1,0,126,13,1,0,130,13,1,0,132,13,1,0,136,13,1,0,144,13,1,0,158,13,1,0,160,13,1,0,188,13,1,0,198,13,1,0,204,13,1,0,216,13,1,0,238,13,1,0,242,13,1,0,244,13,1,0,22,14,1,0,38,14,1,0,44,14,1,0,70,14,1,0,88,14,1,0,110,14,1,0,134,14,1,0,140,14,1,0,152,14,1,0,176,14,1,0,190,14,1,0,206,14,1,0,220,14,1,0,10,15,1,0,18,15,1,0,20,15,1,0,34,15,1,0,40,15,1,0,54,15,1,0,66,15,1,0,68,15,1,0,72,15,1,0,80,15,1,0,94,15,1,0,102,15,1,0,108,15,1,0,178,15,1,0,180,15,1,0,34,16,1,0,40,16,1,0,66,16,1,0,72,16,1,0,80,16,1,0,94,16,1,0,122,16,1,0,130,16,1,0,132,16,1,0,144,16,1,0,158,16,1,0,160,16,1,0,188,16,1,0,198,16,1,0,204,16,1,0,216,16,1,0,238,16,1,0,242,16,1,0,244,16,1,0,2,17,1,0,30,17,1,0,32,17,1,0,60,17,1,0,64,17,1,0,120,17,1,0,134,17,1,0,152,17,1,0,176,17,1,0,190,17,1,0,206,17,1,0,220,17,1,0,226,17,1,0,228,17,1,0,232,17,1,0,246,17,1,0,8,18,1,0,30,18,1,0,32,18,1,0,120,18,1,0,240,18,1,0,12,19,1,0,48,19,1,0,62,19,1,0,96,19,1,0,124,19,1,0,142,19,1,0,156,19,1,0,184,19,1,0,194,19,1,0,200,19,1,0,208,19,1,0,222,19,1,0,230,19,1,0,236,19,1,0,8,20,1,0,16,20,1,0,30,20,1,0,32,20,1,0,60,20,1,0,64,20,1,0,120,20,1,0,240,20,1,0,224,21,1,0,12,22,1,0,24,22,1,0,48,22,1,0,62,22,1,0,96,22,1,0,124,22,1,0,192,22,1,0,248,22,1,0,28,23,1,0,56,23,1,0,112,23,1,0,126,23,1,0,130,23,1,0,132,23,1,0,136,23,1,0,144,23,1,0,158,23,1,0,160,23,1,0,188,23,1,0,198,23,1,0,204,23,1,0,216,23,1,0,238,23,1,0,46,24,1,0,52,24,1,0,78,24,1,0,92,24,1,0,98,24,1,0,100,24,1,0,104,24,1,0,118,24,1,0,142,24,1,0,156,24,1,0,184,24,1,0,194,24,1,0,200,24,1,0,208,24,1,0,222,24,1,0,230,24,1,0,236,24,1,0,250,24,1,0,14,25,1,0,28,25,1,0,56,25,1,0,112,25,1,0,126,25,1,0,130,25,1,0,132,25,1,0,144,25,1,0,158,25,1,0,160,25,1,0,188,25,1,0,198,25,1,0,204,25,1,0,216,25,1,0,238,25,1,0,242,25,1,0,244,25,1,0,14,26,1,0,28,26,1,0,56,26,1,0,112,26,1,0,126,26,1,0,224,26,1,0,252,26,1,0,8,27,1,0,16,27,1,0,30,27,1,0,32,27,1,0,60,27,1,0,64,27,1,0,120,27,1,0,140,27,1,0,152,27,1,0,176,27,1,0,190,27,1,0,206,27,1,0,220,27,1,0,226,27,1,0,228,27,1,0,232,27,1,0,246,27,1,0,22,28,1,0,38,28,1,0,44,28,1,0,70,28,1,0,76,28,1,0,88,28,1,0,110,28,1,0,134,28,1,0,152,28,1,0,176,28,1,0,190,28,1,0,206,28,1,0,220,28,1,0,226,28,1,0,228,28,1,0,232,28,1,0,246,28,1,0,6,29,1,0,12,29,1,0,24,29,1,0,48,29,1,0,62,29,1,0,96,29,1,0,124,29,1,0,142,29,1,0,156,29,1,0,184,29,1,0,196,29,1,0,200,29,1,0,208,29,1,0,222,29,1,0,230,29,1,0,236,29,1,0,250,29,1,0,10,30,1,0,18,30,1,0,20,30,1,0,34,30,1,0,36,30,1,0,40,30,1,0,54,30,1,0,66,30,1,0,68,30,1,0,80,30,1,0,94,30,1,0,102,30,1,0,108,30,1,0,130,30,1,0,132,30,1,0,136,30,1,0,144,30,1,0,158,30,1,0,160,30,1,0,188,30,1,0,198,30,1,0,204,30,1,0,216,30,1,0,238,30,1,0,26,31,1,0,46,31,1,0,50,31,1,0,52,31,1,0,78,31,1,0,92,31,1,0,98,31,1,0,100,31,1,0,104,31,1,0,118,31,1,0,72,32,1,0,94,32,1,0,130,32,1,0,132,32,1,0,144,32,1,0,158,32,1,0,160,32,1,0,188,32,1,0,216,32,1,0,242,32,1,0,244,32,1,0,8,33,1,0,30,33,1,0,32,33,1,0,60,33,1,0,64,33,1,0,120,33,1,0,134,33,1,0,152,33,1,0,176,33,1,0,190,33,1,0,226,33,1,0,228,33,1,0,232,33,1,0,246,33,1,0,4,34,1,0,16,34,1,0,30,34,1,0,32,34,1,0,120,34,1,0,240,34,1,0,6,35,1,0,12,35,1,0,48,35,1,0,62,35,1,0,96,35,1,0,124,35,1,0,142,35,1,0,156,35,1,0,184,35,1,0,194,35,1,0,200,35,1,0,208,35,1,0,230,35,1,0,236,35,1,0,30,36,1,0,32,36,1,0,60,36,1,0,240,36,1,0,224,37,1,0,24,38,1,0,62,38,1,0,96,38,1,0,124,38,1,0,192,38,1,0,248,38,1,0,56,39,1,0,112,39,1,0,126,39,1,0,130,39,1,0,132,39,1,0,144,39,1,0,158,39,1,0,160,39,1,0,188,39,1,0,198,39,1,0,204,39,1,0,216,39,1,0,238,39,1,0,32,40,1,0,60,40,1,0,64,40,1,0,120,40,1,0,240,40,1,0,224,41,1,0,192,43,1,0,24,44,1,0,48,44,1,0,62,44,1,0,96,44,1,0,124,44,1,0,192,44,1,0,248,44,1,0,240,45,1,0,28,46,1,0,56,46,1,0,112,46,1,0,126,46,1,0,224,46,1,0,252,46,1,0,4,47,1,0,8,47,1,0,16,47,1,0,32,47,1,0,60,47,1,0,64,47,1,0,120,47,1,0,134,47,1,0,140,47,1,0,152,47,1,0,176,47,1,0,190,47,1,0,206,47,1,0,220,47,1,0,46,48,1,0,78,48,1,0,92,48,1,0,98,48,1,0,104,48,1,0,142,48,1,0,156,48,1,0,184,48,1,0,194,48,1,0,200,48,1,0,208,48,1,0,222,48,1,0,236,48,1,0,250,48,1,0,14,49,1,0,56,49,1,0,112,49,1,0,126,49,1,0,130,49,1,0,132,49,1,0,144,49,1,0,158,49,1,0,160,49,1,0,188,49,1,0,198,49,1,0,204,49,1,0,216,49,1,0,242,49,1,0,244,49,1,0,14,50,1,0,28,50,1,0,112,50,1,0,126,50,1,0,224,50,1,0,252,50,1,0,8,51,1,0,30,51,1,0,32,51,1,0,60,51,1,0,64,51,1,0,120,51,1,0,134,51,1,0,152,51,1,0,176,51,1,0,190,51,1,0,206,51,1,0,220,51,1,0,226,51,1,0,228,51,1,0,232,51,1,0,246,51,1,0,14,52,1,0,28,52,1,0,56,52,1,0,112,52,1,0,126,52,1,0,224,52,1,0,252,52,1,0,192,53,1,0,248,53,1,0,8,54,1,0,16,54,1,0,30,54,1,0,32,54,1,0,60,54,1,0,64,54,1,0,120,54,1,0,240,54,1,0,12,55,1,0,24,55,1,0,48,55,1,0,62,55,1,0,96,55,1,0,124,55,1,0,156,55,1,0,184,55,1,0,194,55,1,0,196,55,1,0,200,55,1,0,208,55,1,0,222,55,1,0,230,55,1,0,236,55,1,0,22,56,1,0,38,56,1,0,44,56,1,0,70,56,1,0,76,56,1,0,88,56,1,0,110,56,1,0,116,56,1,0,134,56,1,0,152,56,1,0,176,56,1,0,190,56,1,0,206,56,1,0,220,56,1,0,226,56,1,0,228,56,1,0,232,56,1,0,6,57,1,0,12,57,1,0,48,57,1,0,62,57,1,0,96,57,1,0,124,57,1,0,142,57,1,0,156,57,1,0,184,57,1,0,200,57,1,0,208,57,1,0,222,57,1,0,230,57,1,0,236,57,1,0,250,57,1,0,6,58,1,0,12,58,1,0,24,58,1,0,48,58,1,0,62,58,1,0,96,58,1,0,124,58,1,0,192,58,1,0,248,58,1,0,14,59,1,0,28,59,1,0,56,59,1,0,112,59,1,0,126,59,1,0,136,59,1,0,144,59,1,0,158,59,1,0,160,59,1,0,188,59,1,0,204,59,1,0,216,59,1,0,238,59,1,0,242,59,1,0,244,59,1,0,18,60,1,0,20,60,1,0,34,60,1,0,36,60,1,0,40,60,1,0,54,60,1,0,66,60,1,0,72,60,1,0,80,60,1,0,94,60,1,0,102,60,1,0,108,60,1,0,130,60,1,0,132,60,1,0,144,60,1,0,158,60,1,0,160,60,1,0,188,60,1,0,198,60,1,0,204,60,1,0,216,60,1,0,238,60,1,0,2,61,1,0,4,61,1,0,8,61,1,0,16,61,1,0,30,61,1,0,32,61,1,0,60,61,1,0,64,61,1,0,120,61,1,0,134,61,1,0,140,61,1,0,152,61,1,0,176,61,1,0,190,61,1,0,206,61,1,0,220,61,1,0,228,61,1,0,232,61,1,0,246,61,1,0,26,62,1,0,46,62,1,0,50,62,1,0,52,62,1,0,78,62,1,0,92,62,1,0,98,62,1,0,100,62,1,0,104,62,1,0,118,62,1,0,142,62,1,0,156,62,1,0,184,62,1,0,194,62,1,0,196,62,1,0,200,62,1,0,208,62,1,0,222,62,1,0,230,62,1,0,236,62,1,0,38,63,1,0,44,63,1,0,58,63,1,0,70,63,1,0,76,63,1,0,88,63,1,0,110,63,1,0,114,63,1,0,116,63,1,0,130,64,1,0,158,64,1,0,160,64,1,0,188,64,1,0,4,65,1,0,8,65,1,0,16,65,1,0,30,65,1,0,32,65,1,0,60,65,1,0,64,65,1,0,120,65,1,0,140,65,1,0,152,65,1,0,176,65,1,0,190,65,1,0,226,65,1,0,228,65,1,0,232,65,1,0,8,66,1,0,16,66,1,0,30,66,1,0,32,66,1,0,60,66,1,0,64,66,1,0,120,66,1,0,240,66,1,0,6,67,1,0,12,67,1,0,24,67,1,0,48,67,1,0,62,67,1,0,96,67,1,0,124,67,1,0,142,67,1,0,194,67,1,0,196,67,1,0,200,67,1,0,208,67,1,0,230,67,1,0,236,67,1,0,8,68,1,0,16,68,1,0,30,68,1,0,32,68,1,0,60,68,1,0,64,68,1,0,120,68,1,0,240,68,1,0,224,69,1,0,12,70,1,0,24,70,1,0,48,70,1,0,62,70,1,0,96,70,1,0,124,70,1,0,192,70,1,0,248,70,1,0,28,71,1,0,56,71,1,0,112,71,1,0,126,71,1,0,130,71,1,0,132,71,1,0,136,71,1,0,144,71,1,0,160,71,1,0,188,71,1,0,198,71,1,0,204,71,1,0,216,71,1,0,238,71,1,0,16,72,1,0,32,72,1,0,60,72,1,0,64,72,1,0,120,72,1,0,240,72,1,0,224,73,1,0,192,75,1,0,48,76,1,0,62,76,1,0,96,76,1,0,124,76,1,0,192,76,1,0,248,76,1,0,240,77,1,0,56,78,1,0,112,78,1,0,126,78,1,0,224,78,1,0,252,78,1,0,4,79,1,0,8,79,1,0,16,79,1,0,30,79,1,0,32,79,1,0,60,79,1,0,64,79,1,0,120,79,1,0,134,79,1,0,140,79,1,0,152,79,1,0,176,79,1,0,206,79,1,0,220,79,1,0,32,80,1,0,64,80,1,0,120,80,1,0,240,80,1,0,224,81,1,0,192,83,1,0,96,88,1,0,124,88,1,0,192,88,1,0,248,88,1,0,240,89,1,0,224,91,1,0,112,92,1,0,126,92,1,0,224,92,1,0,252,92,1,0,192,93,1,0,248,93,1,0,8,94,1,0,16,94,1,0,32,94,1,0,64,94,1,0,120,94,1,0,240,94,1,0,12,95,1,0,24,95,1,0,48,95,1,0,96,95,1,0,124,95,1,0,142,95,1,0,156,95,1,0,184,95,1,0,78,96,1,0,92,96,1,0,142,96,1,0,156,96,1,0,184,96,1,0,194,96,1,0,196,96,1,0,200,96,1,0,222,96,1,0,14,97,1,0,28,97,1,0,56,97,1,0,112,97,1,0,126,97,1,0,132,97,1,0,136,97,1,0,144,97,1,0,158,97,1,0,160,97,1,0,188,97,1,0,198,97,1,0,204,97,1,0,216,97,1,0,242,97,1,0,244,97,1,0,14,98,1,0,28,98,1,0,56,98,1,0,112,98,1,0,126,98,1,0,224,98,1,0,252,98,1,0,4,99,1,0,8,99,1,0,16,99,1,0,30,99,1,0,32,99,1,0,60,99,1,0,64,99,1,0,120,99,1,0,134,99,1,0,140,99,1,0,152,99,1,0,176,99,1,0,190,99,1,0,206,99,1,0,220,99,1,0,226,99,1,0,228,99,1,0,232,99,1,0,246,99,1,0,14,100,1,0,28,100,1,0,56,100,1,0,112,100,1,0,126,100,1,0,224,100,1,0,252,100,1,0,192,101,1,0,248,101,1,0,16,102,1,0,30,102,1,0,32,102,1,0,60,102,1,0,64,102,1,0,120,102,1,0,240,102,1,0,24,103,1,0,48,103,1,0,62,103,1,0,96,103,1,0,124,103,1,0,142,103,1,0,156,103,1,0,184,103,1,0,194,103,1,0,196,103,1,0,200,103,1,0,208,103,1,0,222,103,1,0,230,103,1,0,236,103,1,0,28,104,1,0,56,104,1,0,112,104,1,0,224,104,1,0,252,104,1,0,192,105,1,0,248,105,1,0,240,107,1,0,16,108,1,0,30,108,1,0,32,108,1,0,60,108,1,0,64,108,1,0,120,108,1,0,240,108,1,0,224,109,1,0,24,110,1,0,48,110,1,0,62,110,1,0,96,110,1,0,124,110,1,0,192,110,1,0,248,110,1,0,28,111,1,0,56,111,1,0,112,111,1,0,126,111,1,0,132,111,1,0,136,111,1,0,144,111,1,0,158,111,1,0,160,111,1,0,188,111,1,0,198,111,1,0,204,111,1,0,216,111,1,0,38,112,1,0,44,112,1,0,70,112,1,0,76,112,1,0,88,112,1,0,110,112,1,0,134,112,1,0,140,112,1,0,152,112,1,0,176,112,1,0,190,112,1,0,206,112,1,0,220,112,1,0,232,112,1,0,6,113,1,0,12,113,1,0,24,113,1,0,48,113,1,0,62,113,1,0,96,113,1,0,124,113,1,0,142,113,1,0,156,113,1,0,184,113,1,0,194,113,1,0,196,113,1,0,200,113,1,0,208,113,1,0,222,113,1,0,230,113,1,0,236,113,1,0,250,113,1,0,6,114,1,0,12,114,1,0,24,114,1,0,48,114,1,0,62,114,1,0,96,114,1,0,124,114,1,0,192,114,1,0,248,114,1,0,14,115,1,0,28,115,1,0,56,115,1,0,112,115,1,0,126,115,1,0,136,115,1,0,144,115,1,0,158,115,1,0,160,115,1,0,188,115,1,0,204,115,1,0,216,115,1,0,238,115,1,0,242,115,1,0,244,115,1,0,12,116,1,0,24,116,1,0,48,116,1,0,62,116,1,0,96,116,1,0,124,116,1,0,192,116,1,0,248,116,1,0,240,117,1,0,14,118,1,0,28,118,1,0,56,118,1,0,112,118,1,0,126,118,1,0,224,118,1,0,252,118,1,0,8,119,1,0,16,119,1,0,30,119,1,0,32,119,1,0,60,119,1,0,64,119,1,0,120,119,1,0,152,119,1,0,176,119,1,0,190,119,1,0,220,119,1,0,226,119,1,0,228,119,1,0,232,119,1,0,34,120,1,0,36,120,1,0,40,120,1,0,54,120,1,0,66,120,1,0,68,120,1,0,72,120,1,0,80,120,1,0,94,120,1,0,102,120,1,0,108,120,1,0,130,120,1,0,132,120,1,0,136,120,1,0,144,120,1,0,158,120,1,0,160,120,1,0,188,120,1,0,198,120,1,0,204,120,1,0,216,120,1,0,238,120,1,0,242,120,1,0,244,120,1,0,2,121,1,0,4,121,1,0,8,121,1,0,16,121,1,0,30,121,1,0,32,121,1,0,60,121,1,0,64,121,1,0,120,121,1,0,134,121,1,0,140,121,1,0,152,121,1,0,176,121,1,0,190,121,1,0,206,121,1,0,220,121,1,0,226,121,1,0,228,121,1,0,232,121,1,0,246,121,1,0,4,122,1,0,8,122,1,0,16,122,1,0,30,122,1,0,32,122,1,0,60,122,1,0,64,122,1,0,120,122,1,0,240,122,1,0,6,123,1,0,12,123,1,0,24,123,1,0,48,123,1,0,62,123,1,0,96,123,1,0,124,123,1,0,142,123,1,0,156,123,1,0,184,123,1,0,196,123,1,0,200,123,1,0,208,123,1,0,222,123,1,0,230,123,1,0,236,123,1,0,46,124,1,0,50,124,1,0,52,124,1,0,78,124,1,0,92,124,1,0,98,124,1,0,100,124,1,0,104,124,1,0,118,124,1,0,142,124,1,0,156,124,1,0,184,124,1,0,194,124,1,0,196,124,1,0,200,124,1,0,208,124,1,0,222,124,1,0,230,124,1,0,236,124,1,0,14,125,1,0,28,125,1,0,56,125,1,0,112,125,1,0,130,125,1,0,132,125,1,0,136,125,1,0,144,125,1,0,158,125,1,0,160,125,1,0,188,125,1,0,198,125,1,0,204,125,1,0,216,125,1,0,238,125,1,0,38,126,1,0,44,126,1,0,58,126,1,0,70,126,1,0,76,126,1,0,88,126,1,0,110,126,1,0,114,126,1,0,116,126,1,0,134,126,1,0,140,126,1,0,152,126,1,0,176,126,1,0,206,126,1,0,220,126,1,0,226,126,1,0,228,126,1,0,232,126,1,0,246,126,1,0,58,129,1,0,114,129,1,0,116,129,1,0,22,130,1,0,38,130,1,0,58,130,1,0,76,130,1,0,88,130,1,0,110,130,1,0,114,130,1,0,116,130,1,0,152,130,1,0,190,130,1,0,226,130,1,0,228,130,1,0,232,130,1,0,246,130,1,0,94,131,1,0,122,131,1,0,174,131,1,0,214,131,1,0,22,132,1,0,38,132,1,0,44,132,1,0,58,132,1,0,70,132,1,0,88,132,1,0,110,132,1,0,114,132,1,0,116,132,1,0,134,132,1,0,176,132,1,0,190,132,1,0,206,132,1,0,220,132,1,0,226,132,1,0,228,132,1,0,232,132,1,0,246,132,1,0,6,133,1,0,12,133,1,0,24,133,1,0,48,133,1,0,62,133,1,0,96,133,1,0,124,133,1,0,142,133,1,0,156,133,1,0,184,133,1,0,194,133,1,0,196,133,1,0,200,133,1,0,208,133,1,0,222,133,1,0,230,133,1,0,236,133,1,0,250,133,1,0,18,134,1,0,20,134,1,0,34,134,1,0,40,134,1,0,54,134,1,0,66,134,1,0,80,134,1,0,94,134,1,0,122,134,1,0,130,134,1,0,132,134,1,0,136,134,1,0,144,134,1,0,158,134,1,0,160,134,1,0,188,134,1,0,198,134,1,0,204,134,1,0,216,134,1,0,238,134,1,0,242,134,1,0,244,134,1,0,46,135,1,0,78,135,1,0,92,135,1,0,150,135,1,0,166,135,1,0,172,135,1,0,210,135,1,0,212,135,1,0,38,136,1,0,44,136,1,0,58,136,1,0,70,136,1,0,76,136,1,0,88,136,1,0,110,136,1,0,114,136,1,0,116,136,1,0,134,136,1,0,152,136,1,0,176,136,1,0,190,136,1,0,206,136,1,0,220,136,1,0,226,136,1,0,228,136,1,0,232,136,1,0,246,136,1,0,12,137,1,0,48,137,1,0,62,137,1,0,96,137,1,0,124,137,1,0,142,137,1,0,184,137,1,0,194,137,1,0,200,137,1,0,208,137,1,0,222,137,1,0,230,137,1,0,236,137,1,0,250,137,1,0,24,138,1,0,48,138,1,0,62,138,1,0,96,138,1,0,124,138,1,0,192,138,1,0,248,138,1,0,28,139,1,0,56,139,1,0,112,139,1,0,126,139,1,0,130,139,1,0,132,139,1,0,136,139,1,0,144,139,1,0,158,139,1,0,160,139,1,0,188,139,1,0,198,139,1,0,204,139,1,0,216,139,1,0,238,139,1,0,242,139,1,0,244,139,1,0,34,140,1,0,36,140,1,0,40,140,1,0,54,140,1,0,66,140,1,0,72,140,1,0,80,140,1,0,94,140,1,0,102,140,1,0,122,140,1,0,130,140,1,0,132,140,1,0,144,140,1,0,158,140,1,0,160,140,1,0,188,140,1,0,204,140,1,0,242,140,1,0,244,140,1,0,4,141,1,0,8,141,1,0,16,141,1,0,30,141,1,0,32,141,1,0,60,141,1,0,64,141,1,0,120,141,1,0,134,141,1,0,152,141,1,0,206,141,1,0,226,141,1,0,228,141,1,0,232,141,1,0,46,142,1,0,50,142,1,0,52,142,1,0,78,142,1,0,92,142,1,0,98,142,1,0,100,142,1,0,104,142,1,0,142,142,1,0,156,142,1,0,184,142,1,0,194,142,1,0,196,142,1,0,200,142,1,0,208,142,1,0,250,142,1,0,22,143,1,0,38,143,1,0,44,143,1,0,70,143,1,0,76,143,1,0,88,143,1,0,110,143,1,0,138,143,1,0,146,143,1,0,148,143,1,0,162,143,1,0,164,143,1,0,168,143,1,0,182,143,1,0,44,144,1,0,58,144,1,0,70,144,1,0,76,144,1,0,88,144,1,0,114,144,1,0,116,144,1,0,134,144,1,0,152,144,1,0,176,144,1,0,190,144,1,0,206,144,1,0,220,144,1,0,226,144,1,0,232,144,1,0,246,144,1,0,6,145,1,0,12,145,1,0,48,145,1,0,62,145,1,0,96,145,1,0,124,145,1,0,142,145,1,0,156,145,1,0,184,145,1,0,194,145,1,0,200,145,1,0,208,145,1,0,222,145,1,0,230,145,1,0,236,145,1,0,250,145,1,0,24,146,1,0,62,146,1,0,96,146,1,0,124,146,1,0,192,146,1,0,248,146,1,0,56,147,1,0,112,147,1,0,126,147,1,0,130,147,1,0,132,147,1,0,144,147,1,0,158,147,1,0,160,147,1,0,188,147,1,0,198,147,1,0,204,147,1,0,216,147,1,0,238,147,1,0,242,147,1,0,244,147,1,0,48,148,1,0,62,148,1,0,96,148,1,0,124,148,1,0,192,148,1,0,248,148,1,0,240,149,1,0,56,150,1,0,112,150,1,0,126,150,1,0,224,150,1,0,252,150,1,0,2,151,1,0,4,151,1,0,8,151,1,0,16,151,1,0,32,151,1,0,60,151,1,0,64,151,1,0,120,151,1,0,134,151,1,0,140,151,1,0,152,151,1,0,176,151,1,0,190,151,1,0,206,151,1,0,220,151,1,0,226,151,1,0,228,151,1,0,232,151,1,0,34,152,1,0,36,152,1,0,66,152,1,0,72,152,1,0,80,152,1,0,94,152,1,0,102,152,1,0,122,152,1,0,130,152,1,0,132,152,1,0,144,152,1,0,158,152,1,0,160,152,1,0,188,152,1,0,204,152,1,0,242,152,1,0,244,152,1,0,2,153,1,0,8,153,1,0,30,153,1,0,32,153,1,0,60,153,1,0,64,153,1,0,120,153,1,0,134,153,1,0,152,153,1,0,206,153,1,0,226,153,1,0,228,153,1,0,232,153,1,0,8,154,1,0,16,154,1,0,30,154,1,0,32,154,1,0,60,154,1,0,64,154,1,0,120,154,1,0,240,154,1,0,24,155,1,0,62,155,1,0,96,155,1,0,156,155,1,0,194,155,1,0,196,155,1,0,200,155,1,0,208,155,1,0,230,155,1,0,46,156,1,0,52,156,1,0,78,156,1,0,92,156,1,0,98,156,1,0,100,156,1,0,104,156,1,0,142,156,1,0,156,156,1,0,184,156,1,0,194,156,1,0,200,156,1,0,208,156,1,0,230,156,1,0,250,156,1,0,14,157,1,0,28,157,1,0,56,157,1,0,112,157,1,0,126,157,1,0,130,157,1,0,132,157,1,0,136,157,1,0,144,157,1,0,160,157,1,0,204,157,1,0,242,157,1,0,244,157,1,0,22,158,1,0,38,158,1,0,44,158,1,0,70,158,1,0,76,158,1,0,88,158,1,0,116,158,1,0,134,158,1,0,140,158,1,0,152,158,1,0,176,158,1,0,190,158,1,0,206,158,1,0,226,158,1,0,228,158,1,0,232,158,1,0,10,159,1,0,18,159,1,0,20,159,1,0,34,159,1,0,36,159,1,0,40,159,1,0,66,159,1,0,68,159,1,0,72,159,1,0,80,159,1,0,94,159,1,0,108,159,1,0,154,159,1,0,174,159,1,0,178,159,1,0,180,159,1,0,70,160,1,0,76,160,1,0,114,160,1,0,116,160,1,0,134,160,1,0,140,160,1,0,152,160,1,0,176,160,1,0,190,160,1,0,226,160,1,0,228,160,1,0,232,160,1,0,246,160,1,0,6,161,1,0,12,161,1,0,24,161,1,0,48,161,1,0,62,161,1,0,96,161,1,0,124,161,1,0,142,161,1,0,156,161,1,0,184,161,1,0,194,161,1,0,196,161,1,0,200,161,1,0,208,161,1,0,222,161,1,0,230,161,1,0,236,161,1,0,24,162,1,0,48,162,1,0,62,162,1,0,96,162,1,0,124,162,1,0,192,162,1,0,248,162,1,0,28,163,1,0,56,163,1,0,112,163,1,0,126,163,1,0,130,163,1,0,132,163,1,0,136,163,1,0,144,163,1,0,158,163,1,0,160,163,1,0,188,163,1,0,198,163,1,0,204,163,1,0,216,163,1,0,238,163,1,0,242,163,1,0,244,163,1,0,24,164,1,0,48,164,1,0,62,164,1,0,96,164,1,0,124,164,1,0,192,164,1,0,248,164,1,0,240,165,1,0,28,166,1,0,56,166,1,0,112,166,1,0,126,166,1,0,224,166,1,0,252,166,1,0,2,167,1,0,4,167,1,0,8,167,1,0,16,167,1,0,30,167,1,0,32,167,1,0,60,167,1,0,64,167,1,0,120,167,1,0,134,167,1,0,140,167,1,0,152,167,1,0,176,167,1,0,190,167,1,0,206,167,1,0,220,167,1,0,226,167,1,0,228,167,1,0,232,167,1,0,48,168,1,0,96,168,1,0,124,168,1,0,192,168,1,0,248,168,1,0,240,169,1,0,224,171,1,0,112,172,1,0,126,172,1,0,224,172,1,0,252,172,1,0,192,173,1,0,248,173,1,0,4,174,1,0,8,174,1,0,16,174,1,0,32,174,1,0,60,174,1,0,64,174,1,0,120,174,1,0,240,174,1,0,6,175,1,0,12,175,1,0,24,175,1,0,48,175,1,0,62,175,1,0,96,175,1,0,124,175,1,0,142,175,1,0,156,175,1,0,184,175,1,0,196,175,1,0,200,175,1,0,208,175,1,0,222,175,1,0,66,176,1,0,94,176,1,0,122,176,1,0,130,176,1,0,132,176,1,0,136,176,1,0,144,176,1,0,158,176,1,0,160,176,1,0,188,176,1,0,204,176,1,0,242,176,1,0,244,176,1,0,2,177,1,0,4,177,1,0,8,177,1,0,16,177,1,0,30,177,1,0,32,177,1,0,60,177,1,0,64,177,1,0,120,177,1,0,134,177,1,0,152,177,1,0,206,177,1,0,226,177,1,0,228,177,1,0,232,177,1,0,4,178,1,0,8,178,1,0,16,178,1,0,30,178,1,0,32,178,1,0,60,178,1,0,64,178,1,0,120,178,1,0,240,178,1,0,12,179,1,0,62,179,1,0,96,179,1,0,156,179,1,0,194,179,1,0,196,179,1,0,200,179,1,0,208,179,1,0,230,179,1,0,16,180,1,0,30,180,1,0,32,180,1,0,60,180,1,0,64,180,1,0,120,180,1,0,240,180,1,0,224,181,1,0,24,182,1,0,96,182,1,0,124,182,1,0,192,182,1,0,56,183,1,0,130,183,1,0,132,183,1,0,136,183,1,0,144,183,1,0,158,183,1,0,160,183,1,0,204,183,1,0,46,184,1,0,78,184,1,0,92,184,1,0,142,184,1,0,156,184,1,0,184,184,1,0,194,184,1,0,196,184,1,0,200,184,1,0,208,184,1,0,230,184,1,0,250,184,1,0,14,185,1,0,28,185,1,0,56,185,1,0,112,185,1,0,126,185,1,0,130,185,1,0,132,185,1,0,136,185,1,0,144,185,1,0,158,185,1,0,160,185,1,0,204,185,1,0,242,185,1,0,244,185,1,0,14,186,1,0,28,186,1,0,56,186,1,0,112,186,1,0,126,186,1,0,224,186,1,0,252,186,1,0,8,187,1,0,16,187,1,0,32,187,1,0,60,187,1,0,64,187,1,0,152,187,1,0,206,187,1,0,226,187,1,0,228,187,1,0,232,187,1,0,22,188,1,0,38,188,1,0,44,188,1,0,70,188,1,0,76,188,1,0,88,188,1,0,114,188,1,0,116,188,1,0,134,188,1,0,140,188,1,0,152,188,1,0,176,188,1,0,190,188,1,0,206,188,1,0,226,188,1,0,228,188,1,0,232,188,1,0,6,189,1,0,12,189,1,0,24,189,1,0,48,189,1,0,62,189,1,0,96,189,1,0,124,189,1,0,156,189,1,0,194,189,1,0,196,189,1,0,200,189,1,0,208,189,1,0,230,189,1,0,250,189,1,0,18,190,1,0,20,190,1,0,34,190,1,0,36,190,1,0,40,190,1,0,66,190,1,0,68,190,1,0,72,190,1,0,80,190,1,0,94,190,1,0,102,190,1,0,130,190,1,0,132,190,1,0,136,190,1,0,144,190,1,0,158,190,1,0,160,190,1,0,188,190,1,0,204,190,1,0,244,190,1,0,26,191,1,0,46,191,1,0,50,191,1,0,52,191,1,0,78,191,1,0,92,191,1,0,98,191,1,0,100,191,1,0,104,191,1,0,154,192,1,0,178,192,1,0,180,192,1,0,26,193,1,0,50,193,1,0,52,193,1,0,98,193,1,0,100,193,1,0,104,193,1,0,118,193,1,0,186,193,1,0,26,194,1,0,50,194,1,0,52,194,1,0,78,194,1,0,92,194,1,0,98,194,1,0,100,194,1,0,104,194,1,0,118,194,1,0,142,194,1,0,194,194,1,0,196,194,1,0,200,194,1,0,208,194,1,0,222,194,1,0,230,194,1,0,236,194,1,0,250,194,1,0,22,195,1,0,38,195,1,0,58,195,1,0,70,195,1,0,76,195,1,0,114,195,1,0,116,195,1,0,26,196,1,0,46,196,1,0,50,196,1,0,52,196,1,0,78,196,1,0,92,196,1,0,98,196,1,0,100,196,1,0,104,196,1,0,118,196,1,0,142,196,1,0,156,196,1,0,184,196,1,0,194,196,1,0,200,196,1,0,208,196,1,0,222,196,1,0,230,196,1,0,236,196,1,0,250,196,1,0,28,197,1,0,56,197,1,0,112,197,1,0,126,197,1,0,130,197,1,0,132,197,1,0,136,197,1,0,144,197,1,0,158,197,1,0,160,197,1,0,188,197,1,0,198,197,1,0,204,197,1,0,216,197,1,0,238,197,1,0,242,197,1,0,244,197,1,0,22,198,1,0,38,198,1,0,44,198,1,0,58,198,1,0,70,198,1,0,76,198,1,0,88,198,1,0,110,198,1,0,114,198,1,0,116,198,1,0,134,198,1,0,140,198,1,0,152,198,1,0,176,198,1,0,190,198,1,0,206,198,1,0,220,198,1,0,226,198,1,0,228,198,1,0,232,198,1,0,18,199,1,0,20,199,1,0,34,199,1,0,40,199,1,0,54,199,1,0,66,199,1,0,68,199,1,0,72,199,1,0,80,199,1,0,94,199,1,0,102,199,1,0,108,199,1,0,122,199,1,0,174,199,1,0,214,199,1,0,234,199,1,0,26,200,1,0,46,200,1,0,50,200,1,0,52,200,1,0,78,200,1,0,92,200,1,0,98,200,1,0,100,200,1,0,104,200,1,0,118,200,1,0,142,200,1,0,156,200,1,0,184,200,1,0,194,200,1,0,200,200,1,0,208,200,1,0,222,200,1,0,230,200,1,0,236,200,1,0,250,200,1,0,14,201,1,0,56,201,1,0,112,201,1,0,126,201,1,0,130,201,1,0,132,201,1,0,144,201,1,0,158,201,1,0,160,201,1,0,188,201,1,0,198,201,1,0,204,201,1,0,216,201,1,0,238,201,1,0,242,201,1,0,244,201,1,0,56,202,1,0,112,202,1,0,126,202,1,0,224,202,1,0,252,202,1,0,2,203,1,0,4,203,1,0,8,203,1,0,16,203,1,0,32,203,1,0,60,203,1,0,64,203,1,0,120,203,1,0,134,203,1,0,140,203,1,0,152,203,1,0,176,203,1,0,190,203,1,0,206,203,1,0,220,203,1,0,226,203,1,0,228,203,1,0,232,203,1,0,246,203,1,0,22,204,1,0,38,204,1,0,44,204,1,0,58,204,1,0,70,204,1,0,88,204,1,0,114,204,1,0,116,204,1,0,134,204,1,0,176,204,1,0,190,204,1,0,206,204,1,0,226,204,1,0,228,204,1,0,232,204,1,0,6,205,1,0,12,205,1,0,24,205,1,0,48,205,1,0,62,205,1,0,96,205,1,0,124,205,1,0,156,205,1,0,194,205,1,0,196,205,1,0,200,205,1,0,208,205,1,0,222,205,1,0,230,205,1,0,250,205,1,0,34,206,1,0,40,206,1,0,66,206,1,0,80,206,1,0,94,206,1,0,102,206,1,0,122,206,1,0,130,206,1,0,132,206,1,0,136,206,1,0,144,206,1,0,158,206,1,0,160,206,1,0,188,206,1,0,204,206,1,0,242,206,1,0,244,206,1,0,46,207,1,0,50,207,1,0,52,207,1,0,78,207,1,0,92,207,1,0,98,207,1,0,100,207,1,0,104,207,1,0,150,207,1,0,166,207,1,0,172,207,1,0,202,207,1,0,210,207,1,0,212,207,1,0,46,208,1,0,50,208,1,0,52,208,1,0,78,208,1,0,92,208,1,0,98,208,1,0,100,208,1,0,104,208,1,0,118,208,1,0,142,208,1,0,156,208,1,0,184,208,1,0,194,208,1,0,196,208,1,0,200,208,1,0,208,208,1,0,222,208,1,0,230,208,1,0,236,208,1,0,250,208,1,0,28,209,1,0,56,209,1,0,112,209,1,0,126,209,1,0,130,209,1,0,132,209,1,0,136,209,1,0,144,209,1,0,158,209,1,0,160,209,1,0,188,209,1,0,198,209,1,0,204,209,1,0,216,209,1,0,238,209,1,0,242,209,1,0,244,209,1,0,28,210,1,0,56,210,1,0,112,210,1,0,126,210,1,0,224,210,1,0,252,210,1,0,2,211,1,0,4,211,1,0,8,211,1,0,16,211,1,0,30,211,1,0,32,211,1,0,60,211,1,0,64,211,1,0,120,211,1,0,134,211,1,0,140,211,1,0,152,211,1,0,176,211,1,0,190,211,1,0,206,211,1,0,220,211,1,0,226,211,1,0,228,211,1,0,232,211,1,0,246,211,1,0,112,212,1,0,126,212,1,0,224,212,1,0,252,212,1,0,192,213,1,0,248,213,1,0,4,214,1,0,8,214,1,0,16,214,1,0,32,214,1,0,64,214,1,0,120,214,1,0,240,214,1,0,6,215,1,0,12,215,1,0,24,215,1,0,48,215,1,0,62,215,1,0,96,215,1,0,124,215,1,0,142,215,1,0,156,215,1,0,184,215,1,0,194,215,1,0,196,215,1,0,200,215,1,0,208,215,1,0,222,215,1,0,230,215,1,0,236,215,1,0,38,216,1,0,44,216,1,0,58,216,1,0,70,216,1,0,76,216,1,0,88,216,1,0,114,216,1,0,116,216,1,0,134,216,1,0,140,216,1,0,152,216,1,0,176,216,1,0,190,216,1,0,206,216,1,0,226,216,1,0,228,216,1,0,232,216,1,0,246,216,1,0,12,217,1,0,24,217,1,0,48,217,1,0,62,217,1,0,96,217,1,0,124,217,1,0,156,217,1,0,194,217,1,0,196,217,1,0,200,217,1,0,208,217,1,0,230,217,1,0,250,217,1,0,12,218,1,0,24,218,1,0,48,218,1,0,62,218,1,0,96,218,1,0,124,218,1,0,192,218,1,0,248,218,1,0,56,219,1,0,130,219,1,0,132,219,1,0,136,219,1,0,144,219,1,0,158,219,1,0,160,219,1,0,204,219,1,0,242,219,1,0,244,219,1,0,34,220,1,0,66,220,1,0,68,220,1,0,72,220,1,0,80,220,1,0,94,220,1,0,102,220,1,0,122,220,1,0,130,220,1,0,132,220,1,0,136,220,1,0,144,220,1,0,158,220,1,0,160,220,1,0,188,220,1,0,204,220,1,0,242,220,1,0,244,220,1,0,4,221,1,0,8,221,1,0,16,221,1,0,30,221,1,0,32,221,1,0,60,221,1,0,64,221,1,0,120,221,1,0,134,221,1,0,152,221,1,0,206,221,1,0,226,221,1,0,228,221,1,0,232,221,1,0,46,222,1,0,50,222,1,0,52,222,1,0,78,222,1,0,92,222,1,0,98,222,1,0,100,222,1,0,104,222,1,0,142,222,1,0,156,222,1,0,184,222,1,0,194,222,1,0,196,222,1,0,200,222,1,0,208,222,1,0,230,222,1,0,250,222,1,0,22,223,1,0,38,223,1,0,44,223,1,0,70,223,1,0,76,223,1,0,88,223,1,0,114,223,1,0,116,223,1,0,138,223,1,0,146,223,1,0,148,223,1,0,162,223,1,0,164,223,1,0,168,223,1,0,138,224,1,0,146,224,1,0,148,224,1,0,162,224,1,0,164,224,1,0,168,224,1,0,182,224,1,0,218,224,1,0,10,225,1,0,18,225,1,0,20,225,1,0,34,225,1,0,36,225,1,0,40,225,1,0,54,225,1,0,66,225,1,0,68,225,1,0,72,225,1,0,80,225,1,0,102,225,1,0,108,225,1,0,122,225,1,0,154,225,1,0,178,225,1,0,180,225,1,0,10,226,1,0,18,226,1,0,20,226,1,0,34,226,1,0,36,226,1,0,40,226,1,0,54,226,1,0,66,226,1,0,72,226,1,0,80,226,1,0,94,226,1,0,102,226,1,0,108,226,1,0,122,226,1,0,130,226,1,0,132,226,1,0,136,226,1,0,144,226,1,0,160,226,1,0,188,226,1,0,198,226,1,0,204,226,1,0,216,226,1,0,238,226,1,0,242,226,1,0,244,226,1,0,26,227,1,0,50,227,1,0,52,227,1,0,92,227,1,0,98,227,1,0,100,227,1,0,104,227,1,0,186,227,1,0,10,228,1,0,18,228,1,0,20,228,1,0,34,228,1,0,40,228,1,0,54,228,1,0,66,228,1,0,72,228,1,0,80,228,1,0,94,228,1,0,102,228,1,0,108,228,1,0,122,228,1,0,130,228,1,0,132,228,1,0,144,228,1,0,158,228,1,0,160,228,1,0,188,228,1,0,198,228,1,0,204,228,1,0,216,228,1,0,238,228,1,0,242,228,1,0,244,228,1,0,2,229,1,0,4,229,1,0,8,229,1,0,16,229,1,0,30,229,1,0,32,229,1,0,60,229,1,0,64,229,1,0,120,229,1,0,134,229,1,0,140,229,1,0,152,229,1,0,176,229,1,0,190,229,1,0,206,229,1,0,220,229,1,0,226,229,1,0,228,229,1,0,232,229,1,0,246,229,1,0,26,230,1,0,46,230,1,0,50,230,1,0,52,230,1,0,78,230,1,0,92,230,1,0,98,230,1,0,104,230,1,0,142,230,1,0,156,230,1,0,184,230,1,0,194,230,1,0,196,230,1,0,200,230,1,0,208,230,1,0,230,230,1,0,250,230,1,0,22,231,1,0,38,231,1,0,44,231,1,0,58,231,1,0,70,231,1,0,76,231,1,0,88,231,1,0,114,231,1,0,116,231,1,0,146,231,1,0,148,231,1,0,162,231,1,0,164,231,1,0,168,231,1,0,182,231,1,0,18,232,1,0,20,232,1,0,34,232,1,0,36,232,1,0,40,232,1,0,54,232,1,0,66,232,1,0,68,232,1,0,72,232,1,0,80,232,1,0,94,232,1,0,102,232,1,0,108,232,1,0,122,232,1,0,130,232,1,0,132,232,1,0,136,232,1,0,144,232,1,0,158,232,1,0,160,232,1,0,188,232,1,0,198,232,1,0,204,232,1,0,216,232,1,0,238,232,1,0,242,232,1,0,244,232,1,0,2,233,1,0,4,233,1,0,8,233,1,0,16,233,1,0,32,233,1,0,60,233,1,0,64,233,1,0,120,233,1,0,134,233,1,0,140,233,1,0,152,233,1,0,176,233,1,0,190,233,1,0,206,233,1,0,220,233,1,0,226,233,1,0,228,233,1,0,232,233,1,0,246,233,1,0,4,234,1,0,8,234,1,0,16,234,1,0,32,234,1,0,64,234,1,0,120,234,1,0,240,234,1,0,6,235,1,0,12,235,1,0,24,235,1,0,48,235,1,0,62,235,1,0,96,235,1,0,124,235,1,0,142,235,1,0,156,235,1,0,184,235,1,0,194,235,1,0,196,235,1,0,200,235,1,0,208,235,1,0,222,235,1,0,230,235,1,0,236,235,1,0,26,236,1,0,46,236,1,0,50,236,1,0,52,236,1,0,78,236,1,0,92,236,1,0,98,236,1,0,100,236,1,0,104,236,1,0,142,236,1,0,156,236,1,0,184,236,1,0,194,236,1,0,196,236,1,0,200,236,1,0,208,236,1,0,230,236,1,0,250,236,1,0,14,237,1,0,28,237,1,0,56,237,1,0,112,237,1,0,126,237,1,0,130,237,1,0,132,237,1,0,136,237,1,0,144,237,1,0,158,237,1,0,160,237,1,0,204,237,1,0,242,237,1,0,244,237,1,0,22,238,1,0,38,238,1,0,44,238,1,0,58,238,1,0,70,238,1,0,76,238,1,0,88,238,1,0,110,238,1,0,114,238,1,0,116,238,1,0,134,238,1,0,140,238,1,0,152,238,1,0,176,238,1,0,190,238,1,0,206,238,1,0,220,238,1,0,226,238,1,0,228,238,1,0,232,238,1,0,18,239,1,0,34,239,1,0,36,239,1,0,40,239,1,0,54,239,1,0,66,239,1,0,68,239,1,0,72,239,1,0,80,239,1,0,94,239,1,0,102,239,1,0,108,239,1,0,122,239,1,0,174,239,1,0,178,239,1,0,180,239,1,0,214,239,1,0,150,240,1,0,166,240,1,0,172,240,1,0,186,240,1,0,202,240,1,0,210,240,1,0,212,240,1,0,22,241,1,0,38,241,1,0,44,241,1,0,58,241,1,0,70,241,1,0,76,241,1,0,88,241,1,0,110,241,1,0,114,241,1,0,116,241,1,0,138,241,1,0,146,241,1,0,148,241,1,0,162,241,1,0,164,241,1,0,168,241,1,0,218,241,1,0,22,242,1,0,38,242,1,0,44,242,1,0,58,242,1,0,70,242,1,0,88,242,1,0,110,242,1,0,114,242,1,0,116,242,1,0,134,242,1,0,140,242,1,0,152,242,1,0,176,242,1,0,190,242,1,0,206,242,1,0,220,242,1,0,226,242,1,0,228,242,1,0,232,242,1,0,246,242,1,0,10,243,1,0,18,243,1,0,20,243,1,0,34,243,1,0,40,243,1,0,66,243,1,0,68,243,1,0,72,243,1,0,80,243,1,0,94,243,1,0,102,243,1,0,122,243,1,0,154,243,1,0,174,243,1,0,178,243,1,0,180,243,1,0,22,244,1,0,38,244,1,0,44,244,1,0,58,244,1,0,70,244,1,0,76,244,1,0,88,244,1,0,110,244,1,0,114,244,1,0,116,244,1,0,134,244,1,0,140,244,1,0,152,244,1,0,176,244,1,0,190,244,1,0,206,244,1,0,220,244,1,0,226,244,1,0,228,244,1,0,232,244,1,0,246,244,1,0,6,245,1,0,12,245,1,0,24,245,1,0,48,245,1,0,62,245,1,0,96,245,1,0,124,245,1,0,142,245,1,0,156,245,1,0,184,245,1,0,194,245,1,0,196,245,1,0,200,245,1,0,208,245,1,0,222,245,1,0,230,245,1,0,236,245,1,0,250,245,1,0,10,246,1,0,18,246,1,0,20,246,1,0,34,246,1,0,36,246,1,0,40,246,1,0,54,246,1,0,66,246,1,0,68,246,1,0,72,246,1,0,80,246,1,0,94,246,1,0,102,246,1,0,122,246,1,0,130,246,1,0,132,246,1,0,136,246,1,0,144,246,1,0,158,246,1,0,160,246,1,0,188,246,1,0,204,246,1,0,242,246,1,0,244,246,1,0,26,247,1,0,46,247,1,0,50,247,1,0,52,247,1,0,78,247,1,0,92,247,1,0,98,247,1,0,100,247,1,0,104,247,1,0,118,247,1,0,150,247,1,0,166,247,1,0,172,247,1,0,186,247,1,0,210,247,1,0,212,247,1,0,154,248,1,0,174,248,1,0,178,248,1,0,180,248,1,0,214,248,1,0,234,248,1,0,26,249,1,0,46,249,1,0,50,249,1,0,52,249,1,0,78,249,1,0,92,249,1,0,98,249,1,0,100,249,1,0,104,249,1,0,118,249,1,0,150,249,1,0,166,249,1,0,172,249,1,0,186,249,1,0,202,249,1,0,210,249,1,0,212,249,1,0,26,250,1,0,46,250,1,0,50,250,1,0,52,250,1,0,78,250,1,0,92,250,1,0,98,250,1,0,100,250,1,0,104,250,1,0,118,250,1,0,142,250,1,0,156,250,1,0,184,250,1,0,194,250,1,0,196,250,1,0,200,250,1,0,208,250,1,0,222,250,1,0,230,250,1,0,236,250,1,0,22,251,1,0,38,251,1,0,44,251,1,0,58,251,1,0,70,251,1,0,76,251,1,0,88,251,1,0,110,251,1,0,114,251,1,0,116,251,1,0,138,251,1,0,146,251,1,0,148,251,1,0,162,251,1,0,164,251,1,0,168,251,1,0,182,251,1,0,218,251,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,4,0,0,0,150,0,0,0,28,0,0,0,84,0,0,0,41,0,0,0,123,0,0,0,158,0,0,0,52,0,0,0,156,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,9,0,0,0,1,0,0,0,211,0,0,0,231,0,0,0,43,0,0,0,97,0,0,0,71,0,0,0,96,0,0,0,103,0,0,0,174,0,0,0,37,0,0,0,151,0,0,0,170,0,0,0,53,0,0,0,75,0,0,0,34,0,0,0,249,0,0,0,121,0,0,0,17,0,0,0,138,0,0,0,110,0,0,0,213,0,0,0,141,0,0,0,136,0,0,0,120,0,0,0,151,0,0,0,233,0,0,0,168,0,0,0,93,0,0,0,255,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,148,124,0,0,188,133,0,0,153,154,0,0,211,164,0,0,246,187,0,0,98,199,0,0,71,216,0,0,13,230,0,0,40,249,0,0,120,11,1,0,93,20,1,0,23,42,1,0,50,53,1,0,166,73,1,0,131,86,1,0,201,104,1,0,236,119,1,0,196,142,1,0,225,145,1,0,171,175,1,0,142,176,1,0,26,204,1,0,63,211,1,0,117,237,1,0,80,242,1,0,213,9,2,0,240,22,2,0,186,40,2,0,159,55,2,0,11,75,2,0,46,84,2,0,100,106,2,0,65,117,2,0,105,140,2,0,4,0,0,0,20,0,0,0,48,0,0,0,81,0,0,0,223,2,0,0,222,2,0,0,229,2,0,0,228,2,0,0,235,2,0,0,234,2,0,0,241,2,0,0,240,2,0,0,247,2,0,0,246,2,0,0,253,2,0,0,252,2,0,0,3,3,0,0,2,3,0,0,9,3,0,0,8,3,0,0,15,3,0,0,14,3,0,0,21,3,0,0,20,3,0,0,27,3,0,0,26,3,0,0,33,3,0,0,32,3,0,0,39,3,0,0,38,3,0,0,45,3,0,0,44,3,0,0,93,3,0,0,253,255,255,255,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,4,0,0,0,20,0,0,0,52,0,0,0,104,0,0,0,204,0,0,0,0,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,9,0,0,0,27,0,0,0,81,0,0,0,32,0,0,0,96,0,0,0,77,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,6,0,0,0,32,0,0,0,58,0,0,0,84,0,0,0,110,0,0,0,136,0,0,0,162,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,37,1,0,0,36,1,0,0,43,1,0,0,42,1,0,0,49,1,0,0,48,1,0,0,55,1,0,0,54,1,0,0,61,1,0,0,60,1,0,0,67,1,0,0,66,1,0,0,73,1,0,0,72,1,0,0,79,1,0,0,78,1,0,0,85,1,0,0,84,1,0,0,91,1,0,0,90,1,0,0,97,1,0,0,96,1,0,0,103,1,0,0,102,1,0,0,109,1,0,0,108,1,0,0,115,1,0,0,114,1,0,0,59,3,0,0,58,3,0,0,6,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,14,0,0,0,0,0,0,0,224,171,1,0,248,213,1,0,192,83,1,0,240,169,1,0,252,212,1,0,224,81,1,0,248,168,1,0,126,212,1,0,240,80,1,0,124,168,1,0,120,80,1,0,208,250,1,0,224,91,1,0,248,173,1,0,200,250,1,0,240,89,1,0,252,172,1,0,196,250,1,0,248,88,1,0,126,172,1,0,194,250,1,0,124,88,1,0,208,245,1,0,236,250,1,0,248,93,1,0,200,245,1,0,230,250,1,0,252,92,1,0,196,245,1,0,126,92,1,0,194,245,1,0,208,235,1,0,236,245,1,0,200,235,1,0,230,245,1,0,196,235,1,0,194,235,1,0,208,215,1,0,236,235,1,0,200,215,1,0,230,235,1,0,196,215,1,0,194,215,1,0,208,175,1,0,236,215,1,0,200,175,1,0,230,215,1,0,196,175,1,0,192,75,1,0,240,165,1,0,252,210,1,0,224,73,1,0,248,164,1,0,126,210,1,0,240,72,1,0,124,164,1,0,120,72,1,0,62,164,1,0,60,72,1,0,104,250,1,0,240,77,1,0,252,166,1,0,100,250,1,0,248,76,1,0,126,166,1,0,98,250,1,0,124,76,1,0,62,76,1,0,232,244,1,0,118,250,1,0,252,78,1,0,228,244,1,0,126,78,1,0,226,244,1,0,232,233,1,0,246,244,1,0,228,233,1,0,226,233,1,0,232,211,1,0,246,233,1,0,228,211,1,0,226,211,1,0,232,167,1,0,246,211,1,0,228,167,1,0,226,167,1,0,224,69,1,0,248,162,1,0,126,209,1,0,240,68,1,0,124,162,1,0,120,68,1,0,62,162,1,0,60,68,1,0,30,68,1,0,52,250,1,0,248,70,1,0,126,163,1,0,50,250,1,0,124,70,1,0,62,70,1,0,116,244,1,0,126,71,1,0,114,244,1,0,244,232,1,0,242,232,1,0,244,209,1,0,242,209,1,0,244,163,1,0,242,163,1,0,240,66,1,0,124,161,1,0,120,66,1,0,62,161,1,0,60,66,1,0,30,66,1,0,26,250,1,0,124,67,1,0,62,67,1,0,58,244,1,0,122,232,1,0,250,208,1,0,120,65,1,0,190,160,1,0,60,65,1,0,30,65,1,0,190,65,1,0,188,64,1,0,158,64,1,0,192,43,1,0,240,149,1,0,252,202,1,0,224,41,1,0,248,148,1,0,126,202,1,0,240,40,1,0,124,148,1,0,120,40,1,0,62,148,1,0,60,40,1,0,104,249,1,0,240,45,1,0,252,150,1,0,100,249,1,0,248,44,1,0,126,150,1,0,98,249,1,0,124,44,1,0,62,44,1,0,232,242,1,0,118,249,1,0,252,46,1,0,228,242,1,0,126,46,1,0,226,242,1,0,232,229,1,0,246,242,1,0,228,229,1,0,226,229,1,0,232,203,1,0,246,229,1,0,228,203,1,0,226,203,1,0,232,151,1,0,246,203,1,0,228,151,1,0,226,151,1,0,224,181,1,0,248,218,1,0,126,237,1,0,192,105,1,0,240,180,1,0,124,218,1,0,224,104,1,0,120,180,1,0,62,218,1,0,112,104,1,0,60,180,1,0,56,104,1,0,30,180,1,0,28,104,1,0,224,37,1,0,248,146,1,0,126,201,1,0,224,109,1,0,240,36,1,0,124,146,1,0,240,108,1,0,124,182,1,0,62,146,1,0,120,108,1,0,60,36,1,0,60,108,1,0,30,36,1,0,30,108,1,0,52,249,1,0,248,38,1,0,126,147,1,0,116,251,1,0,50,249,1,0,248,110,1,0,124,38,1,0,114,251,1,0,124,110,1,0,62,38,1,0,62,110,1,0,116,242,1,0,126,39,1,0,244,246,1,0,114,242,1,0,126,111,1,0,242,246,1,0,244,228,1,0,244,237,1,0,242,228,1,0,242,237,1,0,244,201,1,0,244,219,1,0,242,201,1,0,242,219,1,0,244,147,1,0,242,147,1,0,192,101,1,0,240,178,1,0,124,217,1,0,224,100,1,0,120,178,1,0,62,217,1,0,112,100,1,0,60,178,1,0,56,100,1,0,30,178,1,0,28,100,1,0,14,100,1,0,240,34,1,0,124,145,1,0,240,102,1,0,120,34,1,0,62,145,1,0,120,102,1,0,62,179,1,0,60,102,1,0,30,34,1,0,30,102,1,0,26,249,1,0,124,35,1,0,58,251,1,0,124,103,1,0,62,35,1,0,62,103,1,0,58,242,1,0,122,246,1,0,122,228,1,0,250,236,1,0,250,200,1,0,250,217,1,0,250,145,1,0,224,98,1,0,120,177,1,0,190,216,1,0,112,98,1,0,60,177,1,0,56,98,1,0,30,177,1,0,28,98,1,0,14,98,1,0,120,33,1,0,190,144,1,0,120,99,1,0,60,33,1,0,60,99,1,0,30,33,1,0,30,99,1,0,190,33,1,0,190,99,1,0,112,97,1,0,188,176,1,0,56,97,1,0,158,176,1,0,28,97,1,0,14,97,1,0,188,32,1,0,188,97,1,0,158,32,1,0,158,97,1,0,184,96,1,0,94,176,1,0,156,96,1,0,142,96,1,0,94,32,1,0,222,96,1,0,92,96,1,0,78,96,1,0,224,21,1,0,248,138,1,0,126,197,1,0,240,20,1,0,124,138,1,0,120,20,1,0,62,138,1,0,60,20,1,0,30,20,1,0,180,248,1,0,248,22,1,0,126,139,1,0,178,248,1,0,124,22,1,0,62,22,1,0,116,241,1,0,126,23,1,0,114,241,1,0,244,226,1,0,242,226,1,0,244,197,1,0,242,197,1,0,244,139,1,0,242,139,1,0,192,53,1,0,240,154,1,0,124,205,1,0,224,52,1,0,120,154,1,0,62,205,1,0,112,52,1,0,60,154,1,0,56,52,1,0,30,154,1,0,28,52,1,0,14,52,1,0,240,18,1,0,124,137,1,0,240,54,1,0,120,18,1,0,62,137,1,0,120,54,1,0,62,155,1,0,60,54,1,0,30,18,1,0,30,54,1,0,154,248,1,0,124,19,1,0,186,249,1,0,124,55,1,0,62,19,1,0,62,55,1,0,58,241,1,0,122,243,1,0,122,226,1,0,250,230,1,0,250,196,1,0,250,205,1,0,250,137,1,0,224,186,1,0,120,221,1,0,190,238,1,0,192,116,1,0,112,186,1,0,60,221,1,0,96,116,1,0,56,186,1,0,30,221,1,0,48,116,1,0,28,186,1,0,24,116,1,0,14,186,1,0,12,116,1,0,224,50,1,0,120,153,1,0,190,204,1,0,224,118,1,0,112,50,1,0,60,153,1,0,112,118,1,0,60,187,1,0,30,153,1,0,56,118,1,0,28,50,1,0,28,118,1,0,14,50,1,0,14,118,1,0,120,17,1,0,190,136,1,0,120,51,1,0,60,17,1,0,120,119,1,0,60,51,1,0,30,17,1,0,60,119,1,0,30,51,1,0,30,119,1,0,190,17,1,0,190,51,1,0,190,119,1,0,192,114,1,0,112,185,1,0,188,220,1,0,96,114,1,0,56,185,1,0,158,220,1,0,48,114,1,0,28,185,1,0,24,114,1,0,14,185,1,0,12,114,1,0,6,114,1,0,112,49,1,0,188,152,1,0,112,115,1,0,56,49,1,0,158,152,1,0,56,115,1,0,158,185,1,0,28,115,1,0,14,49,1,0,14,115,1,0,188,16,1,0,188,49,1,0,158,16,1,0,188,115,1,0,158,49,1,0,158,115,1,0,96,113,1,0,184,184,1,0,94,220,1,0,48,113,1,0,156,184,1,0,24,113,1,0,142,184,1,0,12,113,1,0,6,113,1,0,184,48,1,0,94,152,1,0,184,113,1,0,156,48,1,0,156,113,1,0,142,48,1,0,142,113,1,0,94,16,1,0,222,48,1,0,222,113,1,0,176,112,1,0,92,184,1,0,152,112,1,0,78,184,1,0,140,112,1,0,134,112,1,0,92,48,1,0,220,112,1,0,78,48,1,0,206,112,1,0,88,112,1,0,46,184,1,0,76,112,1,0,70,112,1,0,46,48,1,0,110,112,1,0,44,112,1,0,38,112,1,0,240,10,1,0,124,133,1,0,120,10,1,0,62,133,1,0,60,10,1,0,30,10,1,0,124,11,1,0,62,11,1,0,186,240,1,0,122,225,1,0,250,194,1,0,250,133,1,0,224,26,1,0,120,141,1,0,190,198,1,0,112,26,1,0,60,141,1,0,56,26,1,0,30,141,1,0,28,26,1,0,14,26,1,0,120,9,1,0,190,132,1,0,120,27,1,0,60,9,1,0,60,27,1,0,30,9,1,0,30,27,1,0,190,9,1,0,190,27,1,0,192,58,1,0,112,157,1,0,188,206,1,0,96,58,1,0,56,157,1,0,158,206,1,0,48,58,1,0,28,157,1,0,24,58,1,0,14,157,1,0,12,58,1,0,6,58,1,0,112,25,1,0,188,140,1,0,112,59,1,0,56,25,1,0,158,140,1,0,56,59,1,0,28,25,1,0,28,59,1,0,14,25,1,0,14,59,1,0,188,8,1,0,188,25,1,0,158,8,1,0,188,59,1,0,158,25,1,0,158,59,1,0,96,189,1,0,184,222,1,0,94,239,1,0,64,122,1,0,48,189,1,0,156,222,1,0,32,122,1,0,24,189,1,0,142,222,1,0,16,122,1,0,12,189,1,0,8,122,1,0,6,189,1,0,4,122,1,0,96,57,1,0,184,156,1,0,94,206,1,0,96,123,1,0,48,57,1,0,156,156,1,0,48,123,1,0,156,189,1,0,142,156,1,0,24,123,1,0,12,57,1,0,12,123,1,0,6,57,1,0,6,123,1,0,184,24,1,0,94,140,1,0,184,57,1,0,156,24,1,0,184,123,1,0,156,57,1,0,142,24,1,0,156,123,1,0,142,57,1,0,142,123,1,0,94,8,1,0,222,24,1,0,222,57,1,0,222,123,1,0,64,121,1,0,176,188,1,0,92,222,1,0,32,121,1,0,152,188,1,0,78,222,1,0,16,121,1,0,140,188,1,0,8,121,1,0,134,188,1,0,4,121,1,0,2,121,1,0,176,56,1,0,92,156,1,0,176,121,1,0,152,56,1,0,78,156,1,0,152,121,1,0,206,188,1,0,140,121,1,0,134,56,1,0,134,121,1,0,92,24,1,0,220,56,1,0,78,24,1,0,220,121,1,0,206,56,1,0,206,121,1,0,160,120,1,0,88,188,1,0,46,222,1,0,144,120,1,0,76,188,1,0,136,120,1,0,70,188,1,0,132,120,1,0,130,120,1,0,88,56,1,0,46,156,1,0,216,120,1,0,76,56,1,0,204,120,1,0,70,56,1,0,198,120,1,0,46,24,1,0,110,56,1,0,238,120,1,0,80,120,1,0,44,188,1,0,72,120,1,0,38,188,1,0,68,120,1,0,66,120,1,0,44,56,1,0,108,120,1,0,38,56,1,0,102,120,1,0,40,120,1,0,22,188,1,0,36,120,1,0,34,120,1,0,22,56,1,0,54,120,1,0,120,5,1,0,190,130,1,0,60,5,1,0,30,5,1,0,190,5,1,0,112,13,1,0,188,134,1,0,56,13,1,0,158,134,1,0,28,13,1,0,14,13,1,0,188,4,1,0,188,13,1,0,158,4,1,0,158,13,1,0,96,29,1,0,184,142,1,0,94,199,1,0,48,29,1,0,156,142,1,0,24,29,1,0,142,142,1,0,12,29,1,0,6,29,1,0,184,12,1,0,94,134,1,0,184,29,1,0,156,12,1,0,156,29,1,0,142,12,1,0,142,29,1,0,94,4,1,0,222,12,1,0,222,29,1,0,64,61,1,0,176,158,1,0,92,207,1,0,32,61,1,0,152,158,1,0,78,207,1,0,16,61,1,0,140,158,1,0,8,61,1,0,134,158,1,0,4,61,1,0,2,61,1,0,176,28,1,0,92,142,1,0,176,61,1,0,152,28,1,0,78,142,1,0,152,61,1,0,206,158,1,0,140,61,1,0,134,28,1,0,134,61,1,0,92,12,1,0,220,28,1,0,78,12,1,0,220,61,1,0,206,28,1,0,206,61,1,0,160,190,1,0,88,223,1,0,174,239,1,0,144,190,1,0,76,223,1,0,136,190,1,0,70,223,1,0,132,190,1,0,130,190,1,0,160,60,1,0,88,158,1,0,46,207,1,0,160,125,1,0,144,60,1,0,76,158,1,0,144,125,1,0,204,190,1,0,70,158,1,0,136,125,1,0,132,60,1,0,132,125,1,0,130,60,1,0,130,125,1,0,88,28,1,0,46,142,1,0,216,60,1,0,76,28,1,0,216,125,1,0,204,60,1,0,70,28,1,0,204,125,1,0,198,60,1,0,198,125,1,0,46,12,1,0,110,28,1,0,238,60,1,0,238,125,1,0,80,190,1,0,44,223,1,0,72,190,1,0,38,223,1,0,68,190,1,0,66,190,1,0,80,60,1,0,44,158,1,0,208,124,1,0,72,60,1,0,38,158,1,0,200,124,1,0,102,190,1,0,196,124,1,0,66,60,1,0,194,124,1,0,44,28,1,0,108,60,1,0,38,28,1,0,236,124,1,0,102,60,1,0,230,124,1,0,40,190,1,0,22,223,1,0,36,190,1,0,34,190,1,0,40,60,1,0,22,158,1,0,104,124,1,0,36,60,1,0,100,124,1,0,34,60,1,0,98,124,1,0,22,28,1,0,54,60,1,0,118,124,1,0,20,190,1,0,18,190,1,0,20,60,1,0,52,124,1,0,18,60,1,0,50,124,1,0,188,2,1,0,158,2,1,0,184,6,1,0,94,131,1,0,156,6,1,0,142,6,1,0,94,2,1,0,222,6,1,0,176,14,1,0,92,135,1,0,152,14,1,0,78,135,1,0,140,14,1,0,134,14,1,0,92,6,1,0,220,14,1,0,78,6,1,0,206,14,1,0,160,30,1,0,88,143,1,0,174,199,1,0,144,30,1,0,76,143,1,0,136,30,1,0,70,143,1,0,132,30,1,0,130,30,1,0,88,14,1,0,46,135,1,0,216,30,1,0,110,143,1,0,204,30,1,0,70,14,1,0,198,30,1,0,46,6,1,0,110,14,1,0,238,30,1,0,80,159,1,0,172,207,1,0,72,159,1,0,166,207,1,0,68,159,1,0,66,159,1,0,80,30,1,0,44,143,1,0,208,62,1,0,108,159,1,0,38,143,1,0,200,62,1,0,68,30,1,0,196,62,1,0,66,30,1,0,194,62,1,0,44,14,1,0,108,30,1,0,38,14,1,0,236,62,1,0,102,30,1,0,230,62,1,0,168,223,1,0,214,239,1,0,164,223,1,0,162,223,1,0,40,159,1,0,150,207,1,0,104,191,1,0,36,159,1,0,100,191,1,0,34,159,1,0,98,191,1,0,40,30,1,0,22,143,1,0,104,62,1,0,36,30,1,0,232,126,1,0,100,62,1,0,34,30,1,0,228,126,1,0,98,62,1,0,226,126,1,0,22,14,1,0,54,30,1,0,118,62,1,0,246,126,1,0,148,223,1,0,146,223,1,0,20,159,1,0,52,191,1,0,18,159,1,0,50,191,1,0,20,30,1,0,52,62,1,0,18,30,1,0,116,126,1,0,50,62,1,0,114,126,1,0,138,223,1,0,10,159,1,0,26,191,1,0,10,30,1,0,26,62,1,0,58,126,1,0,92,3,1,0,78,3,1,0,88,7,1,0,174,131,1,0,76,7,1,0,70,7,1,0,46,3,1,0,110,7,1,0,80,15,1,0,172,135,1,0,72,15,1,0,166,135,1,0,68,15,1,0,66,15,1,0,44,7,1,0,108,15,1,0,38,7,1,0,102,15,1,0,168,143,1,0,214,199,1,0,164,143,1,0,162,143,1,0,40,15,1,0,150,135,1,0,104,31,1,0,182,143,1,0,100,31,1,0,34,15,1,0,98,31,1,0,22,7,1,0,54,15,1,0,118,31,1,0,212,207,1,0,210,207,1,0,148,143,1,0,180,159,1,0,146,143,1,0,178,159,1,0,20,15,1,0,52,31,1,0,18,15,1,0,116,63,1,0,50,31,1,0,114,63,1,0,202,207,1,0,138,143,1,0,154,159,1,0,10,15,1,0,26,31,1,0,58,63,1,0,172,3,1,0,166,3,1,0,168,7,1,0,214,131,1,0,164,7,1,0,162,7,1,0,150,3,1,0,182,7,1,0,212,135,1,0,210,135,1,0,148,7,1,0,180,15,1,0,146,7,1,0,178,15,1,0,234,199,1,0,0,0,0,0,6,0,0,0,26,0,0,0,52,0,0,0,78,0,0,0,104,0,0,0,130,0,0,0,255,255,255,255,0,0,0,0,109,0,0,0,116,0,0,0,137,0,0,0,200,0,0,0,178,0,0,0,112,0,0,0,125,0,0,0,164,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,5,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,6,0,0,0,22,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,30,0,0,0,56,0,0,0,82,0,0,0,108,0,0,0,134,0,0,0,255,255,255,255,0,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,161,0,0,0,61,0,0,0,183,0,0,0,127,0,0,0,170,0,0,0,88,0,0,0,53,0,0,0,159,0,0,0,6,0,0,0,26,0,0,0,50,0,0,0,74,0,0,0,98,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,1,1,1,1,0,1,0,0,1,0,0,0,0,0,0,0,39,40,41,42,31,32,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,8,0,0,0,16,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,114,0,0,0,142,0,0,0,15,16,17,18,7,8,0,0,3,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,27,28,29,30,19,20,0,0,9,0,0,0,11,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,156,0,0,0,97,0,0,0,192,0,0,0,252,0,0,0,95,0,0,0,9,0,0,0,157,0,0,0,119,0,0,0,138,0,0,0,45,0,0,0,18,0,0,0,186,0,0,0,83,0,0,0,185,0,0,0,31,1,0,0,30,1,0,0,25,1,0,0,24,1,0,0,19,1,0,0,18,1,0,0,13,1,0,0,12,1,0,0,7,1,0,0,6,1,0,0,1,1,0,0,0,1,0,0,251,0,0,0,250,0,0,0,245,0,0,0,244,0,0,0,239,0,0,0,238,0,0,0,233,0,0,0,232,0,0,0,227,0,0,0,226,0,0,0,221,0,0,0,220,0,0,0,215,0,0,0,214,0,0,0,209,0,0,0,208,0,0,0,54,3,0,0,253,255,255,255,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,21,22,23,24,13,14,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,9,10,11,12,1,2,0,0,1,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,6,0,0,0,26,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,9,2,0,0,54,1,0,0,96,3,0,0,35,2,0,0,90,3,0,0,68,2,0,0,40,1,0,0,123,1,0,0,53,0,0,0,11,3,0,0,129,3,0,0,188,1,0,0,144,1,0,0,157,3,0,0,237,2,0,0,159,1,0,0,54,3,0,0,93,0,0,0,217,0,0,0,208,0,0,0,160,3,0,0,244,0,0,0,71,2,0,0,108,2,0,0,246,0,0,0,148,0,0,0,191,1,0,0,119,2,0,0,36,1,0,0,140,3,0,0,234,1,0,0,192,2,0,0,4,2,0,0,2,1,0,0,201,1,0,0,139,3,0,0,82,2,0,0,211,2,0,0,162,2,0,0,36,1,0,0,16,1,0,0,96,0,0,0,172,2,0,0,176,1,0,0,174,2,0,0,94,2,0,0,92,3,0,0,57,2,0,0,193,0,0,0,219,0,0,0,129,0,0,0,186,0,0,0,236,0,0,0,31,1,0,0,192,0,0,0,7,3,0,0,22,1,0,0,173,0,0,0,40,0,0,0,123,1,0,0,200,2,0,0,207,1,0,0,134,2,0,0,8,3,0,0,171,0,0,0,235,1,0,0,41,1,0,0,251,2,0,0,156,0,0,0,220,2,0,0,95,0,0,0,14,1,0,0,191,1,0,0,90,0,0,0,251,1,0,0,48,0,0,0,228,0,0,0,53,3,0,0,40,3,0,0,130,3,0,0,16,3,0,0,151,2,0,0,115,2,0,0,122,1,0,0,126,1,0,0,6,1,0,0,124,1,0,0,90,2,0,0,242,2,0,0,80,1,0,0,89,0,0,0,102,2,0,0,87,0,0,0,176,1,0,0,158,2,0,0,104,2,0,0,157,0,0,0,118,1,0,0,242,0,0,0,214,2,0,0,88,2,0,0,13,1,0,0,119,1,0,0,130,3,0,0,77,3,0,0,198,1,0,0,98,1,0,0,130,0,0,0,46,3,0,0,75,2,0,0,36,3,0,0,34,0,0,0,211,0,0,0,74,1,0,0,27,2,0,0,41,1,0,0,59,3,0,0,97,3,0,0,37,0,0,0,5,2,0,0,66,3,0,0,59,1,0,0,38,2,0,0,86,0,0,0,33,3,0,0,4,0,0,0,108,0,0,0,27,2,0,0,6,0,0,0,28,0,0,0,50,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,62,0,0,0,186,0,0,0,136,0,0,0,197,0,0,0,169,0,0,0,85,0,0,0,44,0,0,0,132,0,0,0,217,2,0,0,216,2,0,0,211,2,0,0,210,2,0,0,205,2,0,0,204,2,0,0,199,2,0,0,198,2,0,0,193,2,0,0,192,2,0,0,187,2,0,0,186,2,0,0,181,2,0,0,180,2,0,0,175,2,0,0,174,2,0,0,169,2,0,0,168,2,0,0,163,2,0,0,162,2,0,0,157,2,0,0,156,2,0,0,151,2,0,0,150,2,0,0,145,2,0,0,144,2,0,0,139,2,0,0,138,2,0,0,89,3,0,0,88,3,0,0,4,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,90,0,0,0,8,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,96,1,0,0,77,0,0,0,117,1,0,0,248,1,0,0,35,0,0,0,87,2,0,0,172,1,0,0,207,0,0,0,153,1,0,0,62,2,0,0,118,0,0,0,242,1,0,0,29,1,0,0,124,1,0,0,94,1,0,0,236,1,0,0,197,0,0,0,9,1,0,0,152,3,0,0,155,0,0,0,146,3,0,0,43,1,0,0,229,0,0,0,131,2,0,0,38,1,0,0,103,3,0,0,50,1,0,0,88,0,0,0,87,0,0,0,193,0,0,0,96,1,0,0,13,3,0,0,78,3,0,0,75,0,0,0,71,1,0,0,8,2,0,0,179,1,0,0,31,2,0,0,203,0,0,0,154,2,0,0,249,0,0,0,90,1,0,0,13,3,0,0,109,2,0,0,128,2,0,0,12,1,0,0,26,3,0,0,22,2,0,0,27,2,0,0,13,3,0,0,152,1,0,0,134,1,0,0,132,2,0,0,102,0,0,0,220,1,0,0,243,1,0,0,34,1,0,0,120,2,0,0,33,2,0,0,37,0,0,0,90,3,0,0,148,3,0,0,40,2,0,0,41,0,0,0,30,2,0,0,33,1,0,0,122,0,0,0,16,1,0,0,127,1,0,0,32,3,0,0,229,1,0,0,98,0,0,0,240,2,0,0,216,1,0,0,249,2,0,0,107,0,0,0,16,3,0,0,92,3,0,0,146,2,0,0,229,2,0,0,34,1,0,0,204,0,0,0,169,2,0,0,151,1,0,0,87,3,0,0,85,0,0,0,99,0,0,0,62,0,0,0,226,1,0,0,180,0,0,0,20,0,0,0,41,1,0,0,195,1,0,0,81,2,0,0,145,3,0,0,142,0,0,0,40,3,0,0,172,2,0,0,31,1,0,0,24,2,0,0,49,2,0,0,76,0,0,0,141,2,0,0,131,3,0,0,217,2,0,0,55,2,0,0,232,2,0,0,134,1,0,0,1,2,0,0,192,0,0,0,4,2,0,0,2,1,0,0,240,0,0,0,6,2,0,0,26,3,0,0,139,1,0,0,0,3,0,0,80,3,0,0,51,0,0,0,98,2,0,0,128,1,0,0,168,0,0,0,190,0,0,0,58,3,0,0,72,1,0,0,84,2,0,0,18,3,0,0,47,1,0,0,58,2,0,0,125,1,0,0,159,1,0,0,129,2,0,0,156,0,0,0,237,0,0,0,151,0,0,0,173,1,0,0,19,2,0,0,207,0,0,0,164,2,0,0,198,2,0,0,89,0,0,0,168,0,0,0,48,1,0,0,146,1,0,0,40,0,0,0,196,2,0,0,63,2,0,0,162,0,0,0,96,3,0,0,229,0,0,0,65,0,0,0,93,3,0,0,73,3,0,0,0,2,0,0,164,0,0,0,221,1,0,0,221,0,0,0,92,0,0,0,102,1,0,0,17,3,0,0,32,1,0,0,101,1,0,0,82,3,0,0,68,3,0,0,59,3,0,0,224,2,0,0,195,2,0,0,94,0,0,0,8,0,0,0,238,1,0,0,114,0,0,0,9,2,0,0,2,0,0,0,243,1,0,0,83,3,0,0,31,2,0,0,152,0,0,0,217,2,0,0,3,3,0,0,95,0,0,0,248,0,0,0,105,1,0,0,66,2,0,0,67,1,0,0,88,3,0,0,29,3,0,0,33,1,0,0,51,0,0,0,172,2,0,0,210,1,0,0,21,2,0,0,52,3,0,0,157,2,0,0,45,0,0,0,134,3,0,0,196,1,0,0,167,0,0,0,86,1,0,0,244,0,0,0,173,0,0,0,35,0,0,0,207,1,0,0,139,2,0,0,51,0,0,0,187,2,0,0,79,2,0,0,196,1,0,0,66,2,0,0,37,0,0,0,124,0,0,0,42,1,0,0,76,1,0,0,40,2,0,0,43,0,0,0,171,1,0,0,119,0,0,0,150,2,0,0,9,3,0,0,219,1,0,0,82,3,0,0,252,2,0,0,108,1,0,0,66,2,0,0,143,3,0,0,27,1,0,0,199,2,0,0,216,1,0,0,164,1,0,0,245,0,0,0,32,1,0,0,82,2,0,0,138,1,0,0,255,1,0,0,71,1,0,0,77,2,0,0,9,3,0,0,187,2,0,0,176,2,0,0,43,0,0,0,152,1,0,0,74,3,0,0,127,1,0,0,209,2,0,0,9,2,0,0,48,2,0,0,132,2,0,0,202,2,0,0,47,2,0,0,62,0,0,0,145,0,0,0,105,3,0,0,151,2,0,0,201,2,0,0,159,0,0,0,160,2,0,0,217,2,0,0,112,2,0,0,59,0,0,0,193,0,0,0,161,1,0,0,158,0,0,0,209,0,0,0,51,2,0,0,52,2,0,0,87,1,0,0,181,2,0,0,109,0,0,0,96,2,0,0,51,2,0,0,109,1,0,0,181,0,0,0,4,3,0,0,165,2,0,0,54,1,0,0,248,0,0,0,97,1,0,0,196,2,0,0,154,1,0,0,67,2,0,0,102,3,0,0,105,2,0,0,73,3,0,0,120,2,0,0,92,3,0,0,33,1,0,0,24,2,0,0,35,0,0,0,9,3,0,0,106,2,0,0,74,2,0,0,168,1,0,0,65,3,0,0,77,0,0,0,85,2,0,0,90,1,0,0,13,1,0,0,245,2,0,0,120,2,0,0,183,2,0,0,239,2,0,0,75,1,0,0,247,0,0,0,184,0,0,0,45,0,0,0,19,3,0,0,168,2,0,0,18,0,0,0,66,0,0,0,151,1,0,0,113,1,0,0,54,0,0,0,236,1,0,0,228,0,0,0,101,2,0,0,62,3,0,0,154,3,0,0,181,1,0,0,7,2,0,0,132,2,0,0,137,3,0,0,21,3,0,0,164,1,0,0,49,1,0,0,185,1,0,0,207,0,0,0,44,1,0,0,124,3,0,0,59,3,0,0,141,0,0,0,25,2,0,0,125,1,0,0,150,2,0,0,1,2,0,0,56,0,0,0,252,0,0,0,85,1,0,0,242,0,0,0,29,3,0,0,70,3,0,0,69,3,0,0,208,2,0,0,224,0,0,0,51,1,0,0,119,2,0,0,61,0,0,0,87,0,0,0,48,2,0,0,54,1,0,0,244,2,0,0,153,2,0,0,141,1,0,0,40,3,0,0,83,3,0,0,53,1,0,0,217,1,0,0,27,3,0,0,122,1,0,0,31,0,0,0,135,2,0,0,147,3,0,0,203,1,0,0,38,3,0,0,78,2,0,0,219,2,0,0,169,1,0,0,216,0,0,0,36,2,0,0,249,0,0,0,65,1,0,0,113,3,0,0,187,2,0,0,23,2,0,0,161,2,0,0,14,3,0,0,210,0,0,0,47,3,0,0,137,3,0,0,47,1,0,0,75,3,0,0,154,3,0,0,25,1,0,0,73,0,0,0,213,1,0,0,23,3,0,0,148,2,0,0,162,0,0,0,242,1,0,0,52,1,0,0,155,0,0,0,166,1,0,0,139,3,0,0,49,3,0,0,187,0,0,0,62,0,0,0,16,0,0,0,169,1,0,0,23,2,0,0,80,1,0,0,30,1,0,0,181,1,0,0,119,1,0,0,17,1,0,0,98,2,0,0,40,1,0,0,183,0,0,0,155,3,0,0,116,0,0,0,155,2,0,0,239,2,0,0,97,1,0,0,62,0,0,0,110,1,0,0,179,2,0,0,123,1,0,0,175,2,0,0,74,3,0,0,37,0,0,0,101,1,0,0,208,2,0,0,230,2,0,0,74,1,0,0,5,0,0,0,39,0,0,0,155,3,0,0,55,1,0,0,168,1,0,0,242,0,0,0,237,2,0,0,65,1,0,0,54,0,0,0,157,2,0,0,60,1,0,0,86,1,0,0,43,1,0,0,22,2,0,0,105,0,0,0,155,2,0,0,232,1,0,0,128,2,0,0,160,2,0,0,64,2,0,0,28,2,0,0,60,1,0,0,230,1,0,0,209,2,0,0,98,2,0,0,46,0,0,0,144,2,0,0,191,1,0,0,171,0,0,0,104,2,0,0,208,1,0,0,190,0,0,0,19,2,0,0,41,1,0,0,65,1,0,0,250,2,0,0,240,2,0,0,21,2,0,0,175,0,0,0,134,0,0,0,14,0,0,0,125,1,0,0,177,1,0,0,205,2,0,0,45,0,0,0,111,0,0,0,20,0,0,0,84,2,0,0,28,1,0,0,224,2,0,0,138,0,0,0,134,2,0,0,155,1,0,0,109,3,0,0,157,2,0,0,141,0,0,0,151,3,0,0,45,0,0,0,12,3,0,0,151,1,0,0,164,0,0,0,76,1,0,0,131,3,0,0,165,0,0,0,214,2,0,0,88,2,0,0,69,1,0,0,242,1,0,0,143,2,0,0,101,1,0,0,240,2,0,0,0,3,0,0,223,0,0,0,81,3,0,0,135,2,0,0,63,0,0,0,54,1,0,0,95,3,0,0,251,0,0,0,110,1,0,0,48,1,0,0,26,1,0,0,226,2,0,0,163,2,0,0,154,1,0,0,133,1,0,0,244,0,0,0,31,0,0,0,121,0,0,0,47,1,0,0,7,1,0,0,0,0,0,0,2,0,0,0,4,0,0,0,6,0,0,0,8,0,0,0,1,0,0,0,3,0,0,0,5,0,0,0,7,0,0,0,9,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,30,0,0,0,56,0,0,0,82,0,0,0,108,0,0,0,134,0,0,0,159,1,0,0,158,1,0,0,165,1,0,0,164,1,0,0,171,1,0,0,170,1,0,0,103,0,0,0,102,0,0,0,55,0,0,0,54,0,0,0,16,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,20,0,0,0,19,0,0,0,85,0,0,0,84,0,0,0,177,1,0,0,176,1,0,0,183,1,0,0,182,1,0,0,189,1,0,0,188,1,0,0,65,3,0,0,64,3,0,0,1,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,5,0,0,0,7,0,0,0,1,0,0,0,6,0,0,0,30,0,0,0,56,0,0,0,82,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,113,0,0,0,128,0,0,0,173,0,0,0,97,0,0,0,80,0,0,0,29,0,0,0,87,0,0,0,50,0,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,114,0,0,0,142,0,0,0,255,255,255,255,0,0,0,0,2,0,0,0,5,0,0,0,6,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,8,0,0,0,4,0,0,0,1,0,0,0,65,0,68,0,65,0,68,0,65,0,68,0,65,0,65,0,65,0,65,0,68,0,65,0,68,0,0,0,0,0,0,0,105,1,0,0,63,2,0,0,154,3,0,0,13,2,0,0,176,0,0,0,74,2,0,0,128,2,0,0,65,1,0,0,24,2,0,0,230,2,0,0,165,2,0,0,230,2,0,0,175,2,0,0,28,1,0,0,193,0,0,0,5,2,0,0,17,1,0,0,238,1,0,0,7,1,0,0,147,0,0,0,81,2,0,0,32,3,0,0,59,2,0,0,64,1,0,0,35,3,0,0,133,0,0,0,231,0,0,0,134,1,0,0,173,2,0,0,74,1,0,0,63,0,0,0,154,1,0,0,233,1,0,0,232,1,0,0,239,1,0,0,238,1,0,0,245,1,0,0,244,1,0,0,99,0,0,0,98,0,0,0,63,0,0,0,62,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,28,0,0,0,27,0,0,0,93,0,0,0,92,0,0,0,251,1,0,0,250,1,0,0,1,2,0,0,0,2,0,0,7,2,0,0,6,2,0,0,75,3,0,0,253,255,255,255,41,0,0,0,153,0,0,0,158,0,0,0,91,0,0,0,61,0,0,0,42,0,0,0,142,0,0,0,213,0,0,0,97,0,0,0,178,0,0,0,100,0,0,0,242,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,31,0,0,31,47,0,128,30,55,0,128,29,59,0,128,27,61,0,128,23,62,0,128,15,79,0,64,30,87,0,64,29,91,0,64,27,93,0,64,23,94,0,64,15,103,0,192,28,107,0,192,26,109,0,192,22,110,0,192,14,115,0,192,25,117,0,192,21,118,0,192,13,121,0,192,19,122,0,192,11,124,0,192,7,143,0,32,30,151,0,32,29,155,0,32,27,157,0,32,23,158,0,32,15,167,0,160,28,171,0,160,26,173,0,160,22,174,0,160,14,179,0,160,25,181,0,160,21,182,0,160,13,185,0,160,19,186,0,160,11,188,0,160,7,199,0,96,28,203,0,96,26,205,0,96,22,206,0,96,14,211,0,96,25,213,0,96,21,214,0,96,13,217,0,96,19,218,0,96,11,220,0,96,7,227,0,224,24,229,0,224,20,230,0,224,12,233,0,224,18,234,0,224,10,236,0,224,6,241,0,224,17,242,0,224,9,244,0,224,5,248,0,224,3,15,1,16,30,23,1,16,29,27,1,16,27,29,1,16,23,30,1,16,15,39,1,144,28,43,1,144,26,45,1,144,22,46,1,144,14,51,1,144,25,53,1,144,21,54,1,144,13,57,1,144,19,58,1,144,11,60,1,144,7,71,1,80,28,75,1,80,26,77,1,80,22,78,1,80,14,83,1,80,25,85,1,80,21,86,1,80,13,89,1,80,19,90,1,80,11,92,1,80,7,99,1,208,24,101,1,208,20,102,1,208,12,105,1,208,18,106,1,208,10,108,1,208,6,113,1,208,17,114,1,208,9,116,1,208,5,120,1,208,3,135,1,48,28,139,1,48,26,141,1,48,22,142,1,48,14,147,1,48,25,149,1,48,21,150,1,48,13,153,1,48,19,154,1,48,11,156,1,48,7,163,1,176,24,165,1,176,20,166,1,176,12,169,1,176,18,170,1,176,10,172,1,176,6,177,1,176,17,178,1,176,9,180,1,176,5,184,1,176,3,195,1,112,24,197,1,112,20,198,1,112,12,201,1,112,18,202,1,112,10,204,1,112,6,209,1,112,17,210,1,112,9,212,1,112,5,216,1,112,3,225,1,240,16,226,1,240,8,228,1,240,4,232,1,240,2,15,2,8,30,23,2,8,29,27,2,8,27,29,2,8,23,30,2,8,15,39,2,136,28,43,2,136,26,45,2,136,22,46,2,136,14,51,2,136,25,53,2,136,21,54,2,136,13,57,2,136,19,58,2,136,11,60,2,136,7,71,2,72,28,75,2,72,26,77,2,72,22,78,2,72,14,83,2,72,25,85,2,72,21,86,2,72,13,89,2,72,19,90,2,72,11,92,2,72,7,99,2,200,24,101,2,200,20,102,2,200,12,105,2,200,18,106,2,200,10,108,2,200,6,113,2,200,17,114,2,200,9,116,2,200,5,120,2,200,3,135,2,40,28,139,2,40,26,141,2,40,22,142,2,40,14,147,2,40,25,149,2,40,21,150,2,40,13,153,2,40,19,154,2,40,11,156,2,40,7,163,2,168,24,165,2,168,20,166,2,168,12,169,2,168,18,170,2,168,10,172,2,168,6,177,2,168,17,178,2,168,9,180,2,168,5,184,2,168,3,195,2,104,24,197,2,104,20,198,2,104,12,201,2,104,18,202,2,104,10,204,2,104,6,209,2,104,17,210,2,104,9,212,2,104,5,216,2,104,3,225,2,232,16,226,2,232,8,228,2,232,4,7,3,24,28,11,3,24,26,13,3,24,22,14,3,24,14,19,3,24,25,21,3,24,21,22,3,24,13,25,3,24,19,26,3,24,11,28,3,24,7,35,3,152,24,37,3,152,20,38,3,152,12,41,3,152,18,42,3,152,10,44,3,152,6,49,3,152,17,50,3,152,9,52,3,152,5,56,3,152,3,67,3,88,24,69,3,88,20,70,3,88,12,73,3,88,18,74,3,88,10,76,3,88,6,81,3,88,17,82,3,88,9,84,3,88,5,97,3,216,16,98,3,216,8,100,3,216,4,131,3,56,24,133,3,56,20,134,3,56,12,137,3,56,18,138,3,56,10,140,3,56,6,145,3,56,17,146,3,56,9,148,3,56,5,161,3,184,16,162,3,184,8,164,3,184,4,193,3,120,16,194,3,120,8,196,3,120,4,15,4,4,30,23,4,4,29,27,4,4,27,29,4,4,23,30,4,4,15,39,4,132,28,43,4,132,26,45,4,132,22,46,4,132,14,51,4,132,25,53,4,132,21,54,4,132,13,57,4,132,19,58,4,132,11,60,4,132,7,71,4,68,28,75,4,68,26,77,4,68,22,78,4,68,14,83,4,68,25,85,4,68,21,86,4,68,13,89,4,68,19,90,4,68,11,92,4,68,7,99,4,196,24,101,4,196,20,102,4,196,12,105,4,196,18,106,4,196,10,108,4,196,6,113,4,196,17,114,4,196,9,116,4,196,5,135,4,36,28,139,4,36,26,141,4,36,22,142,4,36,14,147,4,36,25,149,4,36,21,150,4,36,13,153,4,36,19,154,4,36,11,156,4,36,7,163,4,164,24,165,4,164,20,166,4,164,12,169,4,164,18,170,4,164,10,172,4,164,6,177,4,164,17,178,4,164,9,180,4,164,5,195,4,100,24,197,4,100,20,198,4,100,12,201,4,100,18,202,4,100,10,204,4,100,6,209,4,100,17,210,4,100,9,212,4,100,5,225,4,228,16,226,4,228,8,7,5,20,28,11,5,20,26,13,5,20,22,14,5,20,14,19,5,20,25,21,5,20,21,22,5,20,13,25,5,20,19,26,5,20,11,28,5,20,7,35,5,148,24,37,5,148,20,38,5,148,12,41,5,148,18,42,5,148,10,44,5,148,6,49,5,148,17,50,5,148,9,52,5,148,5,67,5,84,24,69,5,84,20,70,5,84,12,73,5,84,18,74,5,84,10,76,5,84,6,81,5,84,17,82,5,84,9,97,5,212,16,98,5,212,8,131,5,52,24,133,5,52,20,134,5,52,12,137,5,52,18,138,5,52,10,140,5,52,6,145,5,52,17,146,5,52,9,161,5,180,16,162,5,180,8,193,5,116,16,194,5,116,8,7,6,12,28,11,6,12,26,13,6,12,22,14,6,12,14,19,6,12,25,21,6,12,21,22,6,12,13,25,6,12,19,26,6,12,11,28,6,12,7,35,6,140,24,37,6,140,20,38,6,140,12,41,6,140,18,42,6,140,10,44,6,140,6,49,6,140,17,50,6,140,9,67,6,76,24,69,6,76,20,70,6,76,12,73,6,76,18,74,6,76,10,81,6,76,17,82,6,76,9,97,6,204,16,98,6,204,8,131,6,44,24,133,6,44,20,134,6,44,12,137,6,44,18,138,6,44,10,145,6,44,17,146,6,44,9,161,6,172,16,162,6,172,8,193,6,108,16,194,6,108,8,3,7,28,24,5,7,28,20,6,7,28,12,9,7,28,18,10,7,28,10,17,7,28,17,18,7,28,9,33,7,156,16,34,7,156,8,65,7,92,16,66,7,92,8,129,7,60,16,130,7,60,8,15,8,2,30,23,8,2,29,27,8,2,27,29,8,2,23,30,8,2,15,39,8,130,28,43,8,130,26,45,8,130,22,46,8,130,14,51,8,130,25,53,8,130,21,54,8,130,13,57,8,130,19,58,8,130,11,71,8,66,28,75,8,66,26,77,8,66,22,78,8,66,14,83,8,66,25,85,8,66,21,86,8,66,13,89,8,66,19,90,8,66,11,99,8,194,24,101,8,194,20,102,8,194,12,105,8,194,18,106,8,194,10,113,8,194,17,114,8,194,9,135,8,34,28,139,8,34,26,141,8,34,22,142,8,34,14,147,8,34,25,149,8,34,21,150,8,34,13,153,8,34,19,154,8,34,11,163,8,162,24,165,8,162,20,166,8,162,12,169,8,162,18,170,8,162,10,177,8,162,17,178,8,162,9,195,8,98,24,197,8,98,20,198,8,98,12,201,8,98,18,202,8,98,10,209,8,98,17,210,8,98,9,225,8,226,16,7,9,18,28,11,9,18,26,13,9,18,22,14,9,18,14,19,9,18,25,21,9,18,21,22,9,18,13,25,9,18,19,26,9,18,11,35,9,146,24,37,9,146,20,38,9,146,12,41,9,146,18,42,9,146,10,49,9,146,17,50,9,146,9,67,9,82,24,69,9,82,20,70,9,82,12,73,9,82,18,74,9,82,10,81,9,82,17,97,9,210,16,131,9,50,24,133,9,50,20,134,9,50,12,137,9,50,18,138,9,50,10,145,9,50,17,161,9,178,16,193,9,114,16,7,10,10,28,11,10,10,26,13,10,10,22,14,10,10,14,19,10,10,25,21,10,10,21,22,10,10,13,25,10,10,19,26,10,10,11,35,10,138,24,37,10,138,20,38,10,138,12,41,10,138,18,42,10,138,10,49,10,138,17,67,10,74,24,69,10,74,20,70,10,74,12,73,10,74,18,81,10,74,17,97,10,202,16,131,10,42,24,133,10,42,20,134,10,42,12,137,10,42,18,145,10,42,17,161,10,170,16,193,10,106,16,3,11,26,24,5,11,26,20,6,11,26,12,9,11,26,18,17,11,26,17,33,11,154,16,65,11,90,16,129,11,58,16,7,12,6,28,11,12,6,26,13,12,6,22,14,12,6,14,19,12,6,25,21,12,6,21,22,12,6,13,25,12,6,19,35,12,134,24,37,12,134,20,38,12,134,12,41,12,134,18,49,12,134,17,67,12,70,24,69,12,70,20,73,12,70,18,81,12,70,17,97,12,198,16,131,12,38,24,133,12,38,20,137,12,38,18,145,12,38,17,161,12,166,16,193,12,102,16,3,13,22,24,5,13,22,20,9,13,22,18,17,13,22,17,33,13,150,16,65,13,86,16,129,13,54,16,3,14,14,24,5,14,14,20,9,14,14,18,17,14,14,17,33,14,142,16,65,14,78,16,129,14,46,16,1,15,30,16,15,16,1,30,23,16,1,29,27,16,1,27,29,16,1,23,39,16,129,28,43,16,129,26,45,16,129,22,51,16,129,25,53,16,129,21,57,16,129,19,71,16,65,28,75,16,65,26,77,16,65,22,83,16,65,25,85,16,65,21,89,16,65,19,99,16,193,24,101,16,193,20,105,16,193,18,113,16,193,17,135,16,33,28,139,16,33,26,141,16,33,22,147,16,33,25,149,16,33,21,153,16,33,19,163,16,161,24,165,16,161,20,169,16,161,18,177,16,161,17,195,16,97,24,197,16,97,20,201,16,97,18,209,16,97,17,7,17,17,28,11,17,17,26,13,17,17,22,19,17,17,25,21,17,17,21,25,17,17,19,35,17,145,24,37,17,145,20,41,17,145,18,49,17,145,17,67,17,81,24,69,17,81,20,73,17,81,18,131,17,49,24,133,17,49,20,137,17,49,18,7,18,9,28,11,18,9,26,13,18,9,22,19,18,9,25,21,18,9,21,25,18,9,19,35,18,137,24,37,18,137,20,41,18,137,18,67,18,73,24,69,18,73,20,131,18,41,24,133,18,41,20,3,19,25,24,5,19,25,20,7,20,5,28,11,20,5,26,13,20,5,22,19,20,5,25,21,20,5,21,35,20,133,24,37,20,133,20,67,20,69,24,131,20,37,24,3,21,21,24,3,22,13,24,7,24,3,28,11,24,3,26,19,24,3,25,35,24,131,24,67,24,69,20,73,18,81,17,225,16,70,12,74,10,82,9,226,8,76,6,84,5,228,4,88,3,232,2,240,1,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,7,0,0,0,10,0,0,0,11,0,0,0,12,0,0,0,14,0,0,0,18,0,0,0,20,0,0,0,24,0,0,0,28,0,0,0,36,0,0,0,42,0,0,0,48,0,0,0,56,0,0,0,62,0,0,0,68,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,6,0,0,0,30,0,0,0,56,0,0,0,82,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,26,0,0,0,46,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,20,0,0,0,60,0,0,0,180,0,0,0,118,0,0,0,143,0,0,0,7,0,0,0,21,0,0,0,63,0,0,0,125,0,0,0,124,0,0,0,131,0,0,0,130,0,0,0,137,0,0,0,136,0,0,0,143,0,0,0,142,0,0,0,149,0,0,0,148,0,0,0,155,0,0,0,154,0,0,0,161,0,0,0,160,0,0,0,167,0,0,0,166,0,0,0,173,0,0,0,172,0,0,0,179,0,0,0,178,0,0,0,185,0,0,0,184,0,0,0,191,0,0,0,190,0,0,0,197,0,0,0,196,0,0,0,203,0,0,0,202,0,0,0,50,3,0,0,49,3,0,0,7,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,20,1,0,0,72,1,0,0,68,1,0,0,66,1,0,0,40,1,0,0,36,1,0,0,34,1,0,0,80,1,0,0,18,1,0,0,10,1,0,0,168,1,0,0,164,1,0,0,162,1,0,0,148,1,0,0,146,1,0,0,138,1,0,0,104,1,0,0,100,1,0,0,98,1,0,0,52,1,0,0,26,1,0,0,88,1,0,0,76,1,0,0,70,1,0,0,44,1,0,0,22,1,0,0,180,1,0,0,178,1,0,0,172,1,0,0,166,1,0,0,150,1,0,0,154,1,0,0,108,1,0,0,102,1,0,0,54,1,0,0,58,1,0,0,46,1,0,0,212,1,0,0,210,1,0,0,202,1,0,0,110,1,0,0,118,1,0,0,174,1,0,0,38,1,0,0,218,1,0,0,214,1,0,0,50,1,0,0,94,1,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,114,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,148,0,0,0,22,0,0,0,66,0,0,0,198,0,0,0,172,0,0,0,94,0,0,0,71,0,0,0,2,0,0,0,231,1,0,0,230,1,0,0,237,1,0,0,236,1,0,0,243,1,0,0,242,1,0,0,97,0,0,0,96,0,0,0,61,0,0,0,60,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,26,0,0,0,91,0,0,0,90,0,0,0,249,1,0,0,248,1,0,0,255,1,0,0,254,1,0,0,5,2,0,0,4,2,0,0,74,3,0,0,73,3,0,0,4,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,40,0,0,0,35,0,0,0,57,0,0,0,52,0,0,0,49,0,0,0,7,0,0,0,24,0,0,0,17,0,0,0,3,0,0,0,63,0,0,0,29,0,0,0,44,0,0,0,12,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,5,0,0,0,1,0,0,0,189,0,0,0,145,0,0,0,13,0,0,0,39,0,0,0,117,0,0,0,140,0,0,0,209,0,0,0,205,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,7,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,14,0,4,0,220,1,9,0,0,0,0,0,221,1,9,0,190,59,14,0,0,0,0,0,47,2,0,0,46,2,0,0,41,2,0,0,40,2,0,0,35,2,0,0,34,2,0,0,29,2,0,0,28,2,0,0,73,0,0,0,72,0,0,0,32,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,10,0,0,0,67,0,0,0,66,0,0,0,115,0,0,0,114,0,0,0,23,2,0,0,22,2,0,0,17,2,0,0,16,2,0,0,11,2,0,0,10,2,0,0,78,3,0,0,253,255,255,255,3,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,92,1,0,0,108,5,0,0,132,11,0,0,148,15,0,0,0,0,0,0,24,0,0,0,20,0,0,0,18,0,0,0,17,0,0,0,12,0,0,0,6,0,0,0,3,0,0,0,10,0,0,0,9,0,0,0,5,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,3,0,0,0,8,0,0,0,6,0,0,0,4,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,76,0,0,0,17,0,0,0,51,0,0,0,153,0,0,0,37,0,0,0,111,0,0,0,122,0,0,0,155,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,2,0,0,0,242,0,0,0,93,0,0,0,169,0,0,0,50,0,0,0,144,0,0,0,210,0,0,0,39,0,0,0,118,0,0,0,202,0,0,0,188,0,0,0,201,0,0,0,189,0,0,0,143,0,0,0,108,0,0,0,196,0,0,0,37,0,0,0,185,0,0,0,112,0,0,0,134,0,0,0,230,0,0,0,245,0,0,0,63,0,0,0,197,0,0,0,190,0,0,0,250,0,0,0,106,0,0,0,185,0,0,0,221,0,0,0,175,0,0,0,64,0,0,0,114,0,0,0,71,0,0,0,161,0,0,0,44,0,0,0,147,0,0,0,6,0,0,0,27,0,0,0,218,0,0,0,51,0,0,0,63,0,0,0,87,0,0,0,10,0,0,0,40,0,0,0,130,0,0,0,188,0,0,0,17,0,0,0,163,0,0,0,31,0,0,0,176,0,0,0,170,0,0,0,4,0,0,0,107,0,0,0,232,0,0,0,7,0,0,0,94,0,0,0,166,0,0,0,224,0,0,0,124,0,0,0,86,0,0,0,47,0,0,0,11,0,0,0,204,0,0,0,48,49,50,51,52,53,54,55,56,57,38,13,9,44,58,35,45,46,36,47,43,37,42,61,94,0,32,0,0,0,0,0,33,34,35,36,25,26,27,28,29,30,19,20,21,22,23,24,13,14,15,16,17,18,7,8,9,10,11,12,1,2,0,0,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,102,0,0,0,0,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,0,0,0,0,79,0,0,0,26,0,0,0,78,0,0,0,23,0,0,0,69,0,0,0,207,0,0,0,199,0,0,0,175,0,0,0,2,0,0,0,7,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,224,14,0,0,220,1,0,0,59,8,0,0,7,7,0,0,3,0,0,0,6,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,32,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,4,0,0,0,5,0,0,0,6,0,0,0,7,0,0,0,8,0,0,0,9,0,0,0,10,0,0,0,11,0,0,0,12,0,0,0,13,0,0,0,27,0,0,0,28,0,0,0,29,0,0,0,30,0,0,0,31,0,0,0,64,0,0,0,92,0,0,0,94,0,0,0,95,0,0,0,96,0,0,0,124,0,0,0,126,0,0,0,127,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,90,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,39,0,0,0,35,0,0,0,36,0,0,0,37,0,0,0,38,0,0,0,39,0,0,0,40,0,0,0,41,0,0,0,42,0,0,0,43,0,0,0,44,0,0,0,45,0,0,0,46,0,0,0,47,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,61,0,0,0,62,0,0,0,63,0,0,0,91,0,0,0,93,0,0,0,123,0,0,0,125,0,0,0,0,0,0,0,28,0,0,0,24,0,0,0,185,0,0,0,166,0,0,0,223,0,0,0,248,0,0,0,116,0,0,0,255,0,0,0,110,0,0,0,61,0,0,0,0,0,0,0,0,0,128,63,0,0,128,63,0,0,128,63,0,0,128,63,0,0,160,63,6,0,0,0,34,0,0,0,60,0,0,0,86,0,0,0,112,0,0,0,138,0,0,0,255,255,255,255,0,0,0,0,68,0,68,0,65,0,65,0,68,0,68,0,65,0,65,0,68,0,68,0,68,0,68,0,65,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,3,0,0,0,4,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,6,0,0,0,13,0,0,0,16,0,0,0,21,0,0,0,30,0,0,0,34,0,0,0,40,0,0,0,45,0,0,0,48,0,0,0,52,0,0,0,56,0,0,0,62,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,36,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,37,0,0,0,38,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,39,0,0,0,40,0,0,0,255,255,255,255,41,0,0,0,42,0,0,0,43,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,4,0,0,0,5,0,0,0,6,0,0,0,7,0,0,0,8,0,0,0,9,0,0,0,44,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,10,0,0,0,11,0,0,0,12,0,0,0,13,0,0,0,14,0,0,0,15,0,0,0,16,0,0,0,17,0,0,0,18,0,0,0,19,0,0,0,20,0,0,0,21,0,0,0,22,0,0,0,23,0,0,0,24,0,0,0,25,0,0,0,26,0,0,0,27,0,0,0,28,0,0,0,29,0,0,0,30,0,0,0,31,0,0,0,32,0,0,0,33,0,0,0,34,0,0,0,35,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,2,0,0,0,3,0,0,0,8,0,0,0,1,0,0,0,29,0,5,0,28,0,5,0,190,3,10,0,0,0,0,0,30,0,5,0,0,0,0,0,6,0,0,0,34,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,26,0,0,0,46,0,0,0,66,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,120,0,0,0,149,0,0,0,25,0,0,0,75,0,0,0,14,0,0,0,42,0,0,0,126,0,0,0,167,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,3,0,0,0,1,0,0,0,9,0,0,0,1,0,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,114,0,0,0,0,0,0,0,6,0,0,0,28,0,0,0,54,0,0,0,80,0,0,0,106,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,26,0,0,0,50,0,0,0,74,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,32,0,0,0,58,0,0,0,0,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,0,0,128,63,0,0,0,64,0,0,0,64,0,0,0,64,0,0,0,64,0,0,16,64,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,102,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,4,0,0,0,5,0,0,0,5,0,0,0,45,0,0,0,135,0,0,0,194,0,0,0,160,0,0,0,58,0,0,0,174,0,0,0,100,0,0,0,89,0,0,0,51,2,0,0,50,2,0,0,45,2,0,0,44,2,0,0,39,2,0,0,38,2,0,0,33,2,0,0,32,2,0,0,77,0,0,0,76,0,0,0,254,255,255,255,33,0,0,0,9,0,0,0,8,0,0,0,25,0,0,0,24,0,0,0,255,255,255,255,254,255,255,255,71,0,0,0,70,0,0,0,119,0,0,0,118,0,0,0,27,2,0,0,26,2,0,0,21,2,0,0,20,2,0,0,15,2,0,0,14,2,0,0,81,3,0,0,253,255,255,255,55,56,57,58,59,60,49,50,51,52,0,0,0,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,103,0,0,0,98,0,0,0,83,0,0,0,38,0,0,0,114,0,0,0,131,0,0,0,182,0,0,0,124,0,0,0,42,0,42,0,42,0,32,0,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,97,0,98,0,99,0,100,0,101,0,102,0,103,0,104,0,105,0,106,0,107,0,108,0,109,0,110,0,111,0,112,0,113,0,114,0,115,0,116,0,117,0,118,0,119,0,120,0,121,0,122,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,225,1,0,0,224,1,0,0,219,1,0,0,218,1,0,0,213,1,0,0,212,1,0,0,48,0,0,0,254,255,255,255,30,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,0,0,0,0,53,0,0,0,52,0,0,0,207,1,0,0,206,1,0,0,201,1,0,0,200,1,0,0,195,1,0,0,194,1,0,0,69,3,0,0,253,255,255,255,2,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,55,0,0,0,165,0,0,0,73,0,0,0,8,0,0,0,24,0,0,0,72,0,0,0,5,0,0,0,15,0,0,0,33,0,0,0,37,0,0,0,21,0,0,0,9,0,0,0,17,0,0,0,49,0,0,0,59,0,0,0,14,0,0,0,64,0,0,0,26,0,0,0,42,0,0,0,4,0,0,0,53,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,102,0,0,0,126,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,65,0,66,0,67,0,68,0,0,0,0,0,161,0,0,0,193,3,0,0,223,7,0,0,155,10,0,0,0,0,0,0,6,0,0,0,26,0,0,0,48,0,0,0,70,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,134,0,0,0,191,0,0,0,151,0,0,0,31,0,0,0,93,0,0,0,68,0,0,0,204,0,0,0,190,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,28,0,5,0,30,0,5,0,29,0,5,0,190,3,10,0,0,0,0,0,0,132,12,36,0,0,0,0,0,92,38,5,0,0,0,0,128,238,54,0,0,0,0,0,96,234,0,0,0,0,0,0,232,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,35,1,0,0,34,1,0,0,41,1,0,0,40,1,0,0,47,1,0,0,46,1,0,0,53,1,0,0,52,1,0,0,59,1,0,0,58,1,0,0,65,1,0,0,64,1,0,0,71,1,0,0,70,1,0,0,77,1,0,0,76,1,0,0,83,1,0,0,82,1,0,0,89,1,0,0,88,1,0,0,95,1,0,0,94,1,0,0,101,1,0,0,100,1,0,0,107,1,0,0,106,1,0,0,113,1,0,0,112,1,0,0,57,3,0,0,253,255,255,255,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,6,0,0,0,28,0,0,0,50,0,0,0,72,0,0,0,94,0,0,0,0,0,0,0,65,0,68,0,65,0,68,0,65,0,68,0,68,0,65,0,65,0,68,0,65,0,68,0,65,0,0,0,0,0,0,0,121,0,0,0,120,0,0,0,127,0,0,0,126,0,0,0,133,0,0,0,132,0,0,0,139,0,0,0,138,0,0,0,145,0,0,0,144,0,0,0,151,0,0,0,150,0,0,0,157,0,0,0,156,0,0,0,163,0,0,0,162,0,0,0,169,0,0,0,168,0,0,0,175,0,0,0,174,0,0,0,181,0,0,0,180,0,0,0,187,0,0,0,186,0,0,0,193,0,0,0,192,0,0,0,199,0,0,0,198,0,0,0,254,255,255,255,254,255,255,255,1,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,229,1,0,0,228,1,0,0,223,1,0,0,222,1,0,0,217,1,0,0,216,1,0,0,51,0,0,0,50,0,0,0,31,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,1,0,0,0,254,255,255,255,42,0,0,0,211,1,0,0,210,1,0,0,205,1,0,0,204,1,0,0,199,1,0,0,198,1,0,0,72,3,0,0,253,255,255,255,27,2,0,0,166,1,0,0,6,0,0,0,93,0,0,0,94,3,0,0,3,3,0,0,197,1,0,0,106,0,0,0,98,2,0,0,31,1,0,0,107,0,0,0,249,1,0,0,221,2,0,0,109,3,0,0,125,1,0,0,100,2,0,0,211,2,0,0,220,1,0,0,206,1,0,0,172,0,0,0,174,1,0,0,97,2,0,0,90,3,0,0,54,3,0,0,31,2,0,0,120,1,0,0,255,1,0,0,144,1,0,0,160,2,0,0,250,2,0,0,27,1,0,0,184,0,0,0,184,1,0,0,35,0,0,0,7,2,0,0,31,0,0,0,204,1,0,0,82,2,0,0,225,0,0,0,23,2,0,0,5,2,0,0,96,1,0,0,93,2,0,0,158,0,0,0,139,2,0,0,201,0,0,0,232,1,0,0,246,1,0,0,136,2,0,0,221,2,0,0,205,2,0,0,83,0,0,0,148,1,0,0,97,0,0,0,24,1,0,0,3,3,0,0,72,3,0,0,117,2,0,0,4,0,0,0,125,1,0,0,75,3,0,0,111,2,0,0,8,1,0,0,31,2,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,6,0,0,0,24,0,0,0,50,0,0,0,76,0,0,0,102,0,0,0,128,0,0,0,154,0,0,0,0,0,0,0,6,0,0,0,26,0,0,0,54,0,0,0,82,0,0,0,110,0,0,0,138,0,0,0,166,0,0,0,0,0,0,0,43,0,0,0,129,0,0,0,176,0,0,0,106,0,0,0,107,0,0,0,110,0,0,0,119,0,0,0,146,0,0,0,220,0,0,0,228,0,0,0,173,0,0,0,89,0,0,0,251,0,0,0,149,0,0,0,159,0,0,0,56,0,0,0,89,0,0,0,33,0,0,0,147,0,0,0,244,0,0,0,154,0,0,0,36,0,0,0,73,0,0,0,127,0,0,0,213,0,0,0,136,0,0,0,248,0,0,0,180,0,0,0,234,0,0,0,197,0,0,0,158,0,0,0,177,0,0,0,68,0,0,0,122,0,0,0,93,0,0,0,213,0,0,0,15,0,0,0,160,0,0,0,227,0,0,0,236,0,0,0,66,0,0,0,139,0,0,0,153,0,0,0,185,0,0,0,202,0,0,0,167,0,0,0,179,0,0,0,25,0,0,0,220,0,0,0,232,0,0,0,96,0,0,0,210,0,0,0,231,0,0,0,136,0,0,0,223,0,0,0,239,0,0,0,181,0,0,0,241,0,0,0,59,0,0,0,52,0,0,0,172,0,0,0,25,0,0,0,49,0,0,0,232,0,0,0,211,0,0,0,189,0,0,0,64,0,0,0,54,0,0,0,108,0,0,0,153,0,0,0,132,0,0,0,63,0,0,0,96,0,0,0,103,0,0,0,82,0,0,0,186,0,0,0,0,0,0,0,11,0,0,0,13,0,0,0,14,0,0,0,19,0,0,0,25,0,0,0,28,0,0,0,21,0,0,0,22,0,0,0,26,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,0,0,0,0,56,0,0,0,52,0,0,0,50,0,0,0,49,0,0,0,44,0,0,0,38,0,0,0,35,0,0,0,42,0,0,0,41,0,0,0,37,0,0,0,70,0,0,0,210,0,0,0,208,0,0,0,202,0,0,0,184,0,0,0,130,0,0,0,179,0,0,0,115,0,0,0,96,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,123,0,124,0,125,0,126,0,127,0,235,1,0,0,234,1,0,0,241,1,0,0,240,1,0,0,247,1,0,0,246,1,0,0,101,0,0,0,100,0,0,0,65,0,0,0,64,0,0,0,17,0,0,0,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,18,0,0,0,29,0,0,0,95,0,0,0,94,0,0,0,253,1,0,0,252,1,0,0,3,2,0,0,2,2,0,0,9,2,0,0,8,2,0,0,77,3,0,0,76,3,0,0,68,0,65,0,68,0,65,0,68,0,65,0,68,0,68,0,65,0,65,0,65,0,68,0,65,0,0,0,0,0,0,0,27,1,0,0,26,1,0,0,21,1,0,0,20,1,0,0,15,1,0,0,14,1,0,0,9,1,0,0,8,1,0,0,3,1,0,0,2,1,0,0,253,0,0,0,252,0,0,0,247,0,0,0,246,0,0,0,241,0,0,0,240,0,0,0,235,0,0,0,234,0,0,0,229,0,0,0,228,0,0,0,223,0,0,0,222,0,0,0,217,0,0,0,216,0,0,0,211,0,0,0,210,0,0,0,205,0,0,0,204,0,0,0,51,3,0,0,253,255,255,255,4,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,4,0,0,0,1,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,12,2,0,0,126,3,0,0,75,0,0,0,254,2,0,0,114,3,0,0,89,3,0,0,74,0,0,0,204,0,0,0,82,0,0,0,74,2,0,0,196,2,0,0,250,0,0,0,137,3,0,0,18,3,0,0,138,0,0,0,208,2,0,0,90,3,0,0,194,0,0,0,55,1,0,0,145,3,0,0,19,1,0,0,190,0,0,0,119,1,0,0,82,3,0,0,182,1,0,0,221,2,0,0,194,0,0,0,24,1,0,0,201,0,0,0,24,1,0,0,60,3,0,0,245,2,0,0,198,2,0,0,46,3,0,0,151,3,0,0,89,0,0,0,68,0,0,0,57,2,0,0,11,0,0,0,204,0,0,0,28,3,0,0,93,2,0,0,28,2,0,0,145,3,0,0,33,3,0,0,188,2,0,0,31,3,0,0,137,0,0,0,183,1,0,0,162,1,0,0,80,2,0,0,156,2,0,0,97,1,0,0,91,3,0,0,114,1,0,0,182,2,0,0,69,1,0,0,240,0,0,0,216,0,0,0,1,1,0,0,28,1,0,0,37,2,0,0,209,0,0,0,116,3,0,0,59,1,0,0,70,0,0,0,73,1,0,0,25,3,0,0,234,1,0,0,18,1,0,0,109,3,0,0,162,0,0,0,237,2,0,0,44,3,0,0,172,2,0,0,205,1,0,0,78,1,0,0,120,1,0,0,81,3,0,0,9,2,0,0,51,1,0,0,35,1,0,0,35,3,0,0,200,2,0,0,19,0,0,0,102,1,0,0,143,1,0,0,140,3,0,0,103,0,0,0,255,1,0,0,51,0,0,0,8,0,0,0,5,2,0,0,225,0,0,0,33,1,0,0,214,1,0,0,125,2,0,0,219,2,0,0,66,0,0,0,255,0,0,0,149,3,0,0,13,1,0,0,207,1,0,0,62,3,0,0,218,2,0,0,177,1,0,0,80,3,0,0,73,2,0,0,136,0,0,0,26,2,0,0,138,3,0,0,90,0,0,0,2,0,0,0,34,1,0,0,231,2,0,0,199,0,0,0,143,2,0,0,135,3,0,0,73,1,0,0,49,0,0,0,34,3,0,0,68,2,0,0,99,1,0,0,76,2,0,0,188,0,0,0,206,1,0,0,10,0,0,0,134,0,0,0,116,2,0,0,64,1,0,0,223,1,0,0,130,0,0,0,227,2,0,0,71,0,0,0,7,1,0,0,62,1,0,0,118,1,0,0,89,2,0,0,192,0,0,0,93,2,0,0,142,0,0,0,161,2,0,0,175,2,0,0,234,0,0,0,210,2,0,0,128,1,0,0,177,0,0,0,240,2,0,0,95,2,0,0,128,2,0,0,199,1,0,0,193,0,0,0,177,2,0,0,195,2,0,0,37,3,0,0,129,2,0,0,48,0,0,0,60,0,0,0,220,2,0,0,109,2,0,0,127,3,0,0,32,2,0,0,5,1,0,0,84,3,0,0,143,2,0,0,53,1,0,0,185,2,0,0,243,2,0,0,244,2,0,0,60,0,0,0,231,0,0,0,5,3,0,0,178,1,0,0,165,1,0,0,214,2,0,0,16,2,0,0,247,1,0,0,118,0,0,0,49,0,0,0,27,3,0,0,32,0,0,0,144,0,0,0,244,1,0,0,238,0,0,0,68,3,0,0,138,1,0,0,24,1,0,0,54,2,0,0,63,1,0,0,9,0,0,0,135,2,0,0,38,2,0,0,73,0,0,0,146,3,0,0,86,1,0,0,126,0,0,0,32,0,0,0,169,2,0,0,75,1,0,0,24,3,0,0,108,2,0,0,60,0,0,0,97,2,0,0,185,1,0,0,180,0,0,0,23,3,0,0,125,3,0,0,242,2,0,0,93,2,0,0,127,1,0,0,228,0,0,0,237,2,0,0,248,2,0,0,213,0,0,0,54,0,0,0,41,1,0,0,134,0,0,0,54,0,0,0,66,3,0,0,43,1,0,0,154,3,0,0,191,0,0,0,142,3,0,0,20,2,0,0,97,2,0,0,61,3,0,0,189,0,0,0,20,0,0,0,167,0,0,0,29,0,0,0,104,3,0,0,193,1,0,0,83,0,0,0,146,1,0,0,41,0,0,0,144,2,0,0,249,1,0,0,67,2,0,0,225,1,0,0,173,0,0,0,148,1,0,0,251,0,0,0,176,2,0,0,95,0,0,0,241,1,0,0,43,2,0,0,130,2,0,0,31,2,0,0,51,1,0,0,159,0,0,0,156,3,0,0,46,2,0,0,136,2,0,0,55,0,0,0,241,1,0,0,10,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,53,54,43,44,45,46,47,48,37,38,0,0,0,0,0,0,2,0,0,0,4,0,0,0,6,0,0,0,8,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,22,0,0,0,18,0,0,0,39,0,0,0,41,0,0,0,11,0,0,0,57,0,0,0,54,0,0,0,50,0,0,0,7,0,0,0,32,0,0,0,2,0,0,0,62,0,0,0,26,0,0,0,0,0,0,0,245,0,0,0,132,0,0,0,172,0,0,0,223,0,0,0,96,0,0,0,32,0,0,0,117,0,0,0,22,0,0,0,238,0,0,0,133,0,0,0,238,0,0,0,231,0,0,0,205,0,0,0,188,0,0,0,237,0,0,0,87,0,0,0,191,0,0,0,106,0,0,0,16,0,0,0,147,0,0,0,118,0,0,0,23,0,0,0,37,0,0,0,90,0,0,0,170,0,0,0,205,0,0,0,131,0,0,0,88,0,0,0,120,0,0,0,100,0,0,0,66,0,0,0,138,0,0,0,186,0,0,0,240,0,0,0,82,0,0,0,44,0,0,0,176,0,0,0,87,0,0,0,187,0,0,0,147,0,0,0,160,0,0,0,175,0,0,0,69,0,0,0,213,0,0,0,92,0,0,0,253,0,0,0,225,0,0,0,19,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,23,0,0,0,68,0,0,0,144,0,0,0,134,0,0,0,240,0,0,0,92,0,0,0,254,0,0,0,0,0,0,0,16,0,0,0,48,0,0,0,144,0,0,0,10,0,0,0,30,0,0,0,90,0,0,0,59,0,0,0,177,0,0,0,6,0,0,0,24,0,0,0,42,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,6,0,0,0,22,0,0,0,38,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,155,1,0,0,154,1,0,0,149,1,0,0,148,1,0,0,143,1,0,0,142,1,0,0,137,1,0,0,136,1,0,0,81,0,0,0,80,0,0,0,40,0,0,0,254,255,255,255,15,0,0,0,14,0,0,0,39,0,0,0,38,0,0,0,3,0,0,0,255,255,255,255,255,255,255,255,45,0,0,0,111,0,0,0,110,0,0,0,131,1,0,0,130,1,0,0,125,1,0,0,124,1,0,0,119,1,0,0,118,1,0,0,62,3,0,0,61,3,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,15,0,0,0,195,0,0,0,244,0,0,0,9,0,0,0,233,0,0,0,71,0,0,0,168,0,0,0,2,0,0,0,188,0,0,0,160,0,0,0,153,0,0,0,145,0,0,0,253,0,0,0,79,0,0,0,108,0,0,0,82,0,0,0,27,0,0,0,174,0,0,0,186,0,0,0,172,0,0,0,0,0,0,0,80,1,0,0,12,4,0,0,236,5,0,0,4,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,12,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,215,2,0,0,214,2,0,0,209,2,0,0,208,2,0,0,203,2,0,0,202,2,0,0,197,2,0,0,196,2,0,0,191,2,0,0,190,2,0,0,185,2,0,0,184,2,0,0,179,2,0,0,178,2,0,0,173,2,0,0,172,2,0,0,167,2,0,0,166,2,0,0,161,2,0,0,160,2,0,0,155,2,0,0,154,2,0,0,149,2,0,0,148,2,0,0,143,2,0,0,142,2,0,0,137,2,0,0,136,2,0,0,87,3,0,0,253,255,255,255,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,2,0,0,0,36,9,0,0,38,9,0,0,52,9,0,0,54,9,0,0,164,9,0,0,166,9,0,0,180,9,0,0,182,9,0,0,36,13,0,0,38,13,0,0,55,2,0,0,54,2,0,0,61,2,0,0,60,2,0,0,67,2,0,0,66,2,0,0,73,2,0,0,72,2,0,0,79,2,0,0,78,2,0,0,85,2,0,0,84,2,0,0,91,2,0,0,90,2,0,0,97,2,0,0,96,2,0,0,103,2,0,0,102,2,0,0,109,2,0,0,108,2,0,0,115,2,0,0,114,2,0,0,121,2,0,0,120,2,0,0,127,2,0,0,126,2,0,0,133,2,0,0,132,2,0,0,84,3,0,0,253,255,255,255,6,0,0,0,26,0,0,0,46,0,0,0,66,0,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,90,0,0,0,118,0,0,0,146,0,0,0,255,255,255,255,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,3,0,0,0,1,0,0,0,237,0,0,0,52,1,0,0,180,1,0,0,28,1,0,0,134,2,0,0,141,2,0,0,172,1,0,0,123,1,0,0,67,10,0,0,27,7,0,0,62,10,0,0,61,10,0,0,21,7,0,0,20,7,0,0,169,10,0,0,164,10,0,0,163,10,0,0,219,10,0,0,214,10,0,0,213,10,0,0,134,3,0,0,128,3,0,0,140,3,0,0,100,3,0,0,97,3,0,0,93,3,0,0,91,3,0,0,207,9,0,0,105,3,0,0,103,3,0,0,244,6,0,0,67,3,0,0,189,9,0,0,57,3,0,0,187,9,0,0,74,3,0,0,69,3,0,0,76,3,0,0,228,6,0,0,226,6,0,0,43,3,0,0,42,3,0,0,41,3,0,0,179,9,0,0,39,3,0,0,178,9,0,0,38,3,0,0,176,9,0,0,47,3,0,0,46,3,0,0,45,3,0,0,44,3,0,0,180,9,0,0,49,3,0,0,48,3,0,0,209,6,0,0,208,6,0,0,206,6,0,0,210,6,0,0,95,10,0,0,77,10,0,0,75,10,0,0,66,10,0,0,65,10,0,0,63,10,0,0,68,10,0,0,28,7,0,0,192,10,0,0,179,10,0,0,177,10,0,0,168,10,0,0,167,10,0,0,165,10,0,0,170,10,0,0,225,10,0,0,223,10,0,0,218,10,0,0,217,10,0,0,215,10,0,0,220,10,0,0,19,3,0,0,13,3,0,0,235,2,0,0,227,2,0,0,224,2,0,0,109,9,0,0,242,2,0,0,240,2,0,0,183,6,0,0,180,2,0,0,177,2,0,0,169,2,0,0,67,9,0,0,166,2,0,0,65,9,0,0,188,2,0,0,185,2,0,0,182,2,0,0,191,2,0,0,152,6,0,0,150,6,0,0,130,2,0,0,126,2,0,0,39,9,0,0,119,2,0,0,37,9,0,0,115,2,0,0,34,9,0,0,139,2,0,0,134,2,0,0,131,2,0,0,41,9,0,0,142,2,0,0,140,2,0,0,116,6,0,0,114,6,0,0,111,6,0,0,118,6,0,0,89,2,0,0,87,2,0,0,18,9,0,0,84,2,0,0,17,9,0,0,82,2,0,0,15,9,0,0,13,9,0,0,99,2,0,0,98,2,0,0,96,2,0,0,94,2,0,0,20,9,0,0,91,2,0,0,19,9,0,0,103,2,0,0,102,2,0,0,100,2,0,0,81,6,0,0,80,6,0,0,78,6,0,0,76,6,0,0,104,2,0,0,83,6,0,0,82,6,0,0,15,10,0,0,234,9,0,0,232,9,0,0,137,3,0,0,133,3,0,0,130,3,0,0,141,3,0,0,205,9,0,0,203,9,0,0,200,9,0,0,102,3,0,0,99,3,0,0,96,3,0,0,92,3,0,0,208,9,0,0,107,3,0,0,104,3,0,0,245,6,0,0,186,9,0,0,185,9,0,0,183,9,0,0,181,9,0,0,212,6,0,0,68,3,0,0,66,3,0,0,64,3,0,0,62,3,0,0,190,9,0,0,59,3,0,0,188,9,0,0,75,3,0,0,73,3,0,0,71,3,0,0,77,3,0,0,229,6,0,0,227,6,0,0,141,10,0,0,116,10,0,0,114,10,0,0,93,10,0,0,88,10,0,0,96,10,0,0,74,10,0,0,73,10,0,0,71,10,0,0,69,10,0,0,29,7,0,0,78,10,0,0,76,10,0,0,210,10,0,0,203,10,0,0,201,10,0,0,190,10,0,0,185,10,0,0,193,10,0,0,176,10,0,0,175,10,0,0,173,10,0,0,171,10,0,0,56,7,0,0,180,10,0,0,178,10,0,0,226,10,0,0,224,10,0,0,79,2,0,0,76,2,0,0,64,2,0,0,57,2,0,0,54,2,0,0,248,8,0,0,54,6,0,0,25,2,0,0,22,2,0,0,14,2,0,0,228,8,0,0,10,2,0,0,226,8,0,0,33,2,0,0,30,2,0,0,27,2,0,0,36,2,0,0,36,6,0,0,34,6,0,0,225,1,0,0,197,8,0,0,210,1,0,0,194,8,0,0,206,1,0,0,191,8,0,0,236,1,0,0,229,1,0,0,226,1,0,0,201,8,0,0,240,1,0,0,238,1,0,0,254,5,0,0,251,5,0,0,248,5,0,0,2,6,0,0,157,1,0,0,148,8,0,0,150,1,0,0,143,8,0,0,140,8,0,0,169,1,0,0,163,1,0,0,154,8,0,0,159,1,0,0,151,8,0,0,176,1,0,0,174,1,0,0,171,1,0,0,192,5,0,0,187,5,0,0,184,5,0,0,177,1,0,0,196,5,0,0,194,5,0,0,112,1,0,0,111,1,0,0,112,8,0,0,109,1,0,0,111,8,0,0,106,1,0,0,109,8,0,0,107,8,0,0,104,8,0,0,122,1,0,0,121,1,0,0,119,1,0,0,118,8,0,0,116,1,0,0,117,8,0,0,113,1,0,0,114,8,0,0,127,1,0,0,125,1,0,0,123,1,0,0,120,8,0,0,139,5,0,0,138,5,0,0,136,5,0,0,134,5,0,0,129,1,0,0,131,5,0,0,128,1,0,0,143,5,0,0,142,5,0,0,140,5,0,0,144,5,0,0,157,9,0,0,34,3,0,0,137,9,0,0,135,9,0,0,22,3,0,0,18,3,0,0,15,3,0,0,26,3,0,0,105,9,0,0,102,9,0,0,99,9,0,0,238,2,0,0,230,2,0,0,226,2,0,0,110,9,0,0,244,2,0,0,241,2,0,0,184,6,0,0,63,9,0,0,61,9,0,0,58,9,0,0,55,9,0,0,127,6,0,0,181,2,0,0,179,2,0,0,172,2,0,0,69,9,0,0,168,2,0,0,66,9,0,0,190,2,0,0,187,2,0,0,184,2,0,0,192,2,0,0,154,6,0,0,151,6,0,0,33,9,0,0,32,9,0,0,30,9,0,0,28,9,0,0,88,6,0,0,25,9,0,0,86,6,0,0,128,2,0,0,125,2,0,0,40,9,0,0,122,2,0,0,38,9,0,0,118,2,0,0,36,9,0,0,138,2,0,0,136,2,0,0,133,2,0,0,42,9,0,0,143,2,0,0,141,2,0,0,117,6,0,0,115,6,0,0,113,6,0,0,119,6,0,0,52,10,0,0,37,10,0,0,35,10,0,0,11,10,0,0,8,10,0,0,5,10,0,0,16,10,0,0,230,9,0,0,225,9,0,0,222,9,0,0,251,6,0,0,236,9,0,0,233,9,0,0,139,3,0,0,136,3,0,0,132,3,0,0,142,3,0,0,199,9,0,0,198,9,0,0,196,9,0,0,194,9,0,0,232,6,0,0,191,9,0,0,231,6,0,0,206,9,0,0,204,9,0,0,202,9,0,0,101,3,0,0,98,3,0,0,95,3,0,0,209,9,0,0,108,3,0,0,106,3,0,0,246,6,0,0,160,10,0,0,153,10,0,0,151,10,0,0,137,10,0,0,134,10,0,0,131,10,0,0,142,10,0,0,112,10,0,0,110,10,0,0,104,10,0,0,36,7,0,0,118,10,0,0,115,10,0,0,87,10,0,0,86,10,0,0,84,10,0,0,82,10,0,0,31,7,0,0,79,10,0,0,30,7,0,0,94,10,0,0,92,10,0,0,90,10,0,0,97,10,0,0,211,10,0,0,63,7,0,0,205,10,0,0,202,10,0,0,58,7,0,0,57,7,0,0,191,10,0,0,189,10,0,0,187,10,0,0,194,10,0,0,97,1,0,0,100,8,0,0,88,1,0,0,86,1,0,0,80,1,0,0,94,8,0,0,76,1,0,0,92,8,0,0,89,1,0,0,95,5,0,0,93,5,0,0,50,1,0,0,82,8,0,0,43,1,0,0,80,8,0,0,39,1,0,0,77,8,0,0,63,1,0,0,58,1,0,0,55,1,0,0,84,8,0,0,74,5,0,0,72,5,0,0,69,5,0,0,76,5,0,0,6,1,0,0,1,1,0,0,53,8,0,0,253,0,0,0,48,8,0,0,45,8,0,0,18,1,0,0,17,1,0,0,11,1,0,0,59,8,0,0,7,1,0,0,56,8,0,0,24,1,0,0,22,1,0,0,19,1,0,0,36,5,0,0,31,5,0,0,28,5,0,0,40,5,0,0,38,5,0,0,4,8,0,0,202,0,0,0,2,8,0,0,252,7,0,0,248,7,0,0,219,0,0,0,15,8,0,0,212,0,0,0,12,8,0,0,208,0,0,0,7,8,0,0,224,0,0,0,221,0,0,0,18,8,0,0,236,4,0,0,234,4,0,0,228,4,0,0,231,0,0,0,224,4,0,0,229,0,0,0,242,4,0,0,240,4,0,0,237,4,0,0,244,4,0,0,155,0,0,0,206,7,0,0,153,0,0,0,204,7,0,0,202,7,0,0,199,7,0,0,196,7,0,0,165,0,0,0,164,0,0,0,215,7,0,0,162,0,0,0,214,7,0,0,159,0,0,0,211,7,0,0,208,7,0,0,172,0,0,0,171,0,0,0,169,0,0,0,220,7,0,0,166,0,0,0,218,7,0,0,162,4,0,0,160,4,0,0,158,4,0,0,155,4,0,0,175,0,0,0,152,4,0,0,173,0,0,0,168,4,0,0,167,4,0,0,165,4,0,0,163,4,0,0,176,0,0,0,170,4,0,0,169,4,0,0,9,9,0,0,3,9,0,0,1,9,0,0,80,2,0,0,77,2,0,0,246,8,0,0,244,8,0,0,241,8,0,0,66,2,0,0,60,2,0,0,56,2,0,0,249,8,0,0,68,2,0,0,55,6,0,0,224,8,0,0,219,8,0,0,216,8,0,0,11,6,0,0,26,2,0,0,24,2,0,0,17,2,0,0,230,8,0,0,13,2,0,0,227,8,0,0,35,2,0,0,32,2,0,0,29,2,0,0,38,6,0,0,35,6,0,0,189,8,0,0,187,8,0,0,181,8,0,0,213,5,0,0,177,8,0,0,209,5,0,0,222,1,0,0,199,8,0,0,214,1,0,0,196,8,0,0,209,1,0,0,193,8,0,0,237,1,0,0,232,1,0,0,228,1,0,0,202,8,0,0,242,1,0,0,239,1,0,0,0,6,0,0,253,5,0,0,250,5,0,0,3,6,0,0,139,8,0,0,138,8,0,0,136,8,0,0,134,8,0,0,152,5,0,0,131,8,0,0,150,5,0,0,128,8,0,0,147,5,0,0,158,1,0,0,156,1,0,0,149,8,0,0,153,1,0,0,147,8,0,0,149,1,0,0,145,8,0,0,142,8,0,0,170,1,0,0,168,1,0,0,165,1,0,0,155,8,0,0,162,1,0,0,153,8,0,0,175,1,0,0,173,1,0,0,193,5,0,0,191,5,0,0,189,5,0,0,186,5,0,0,178,1,0,0,197,5,0,0,195,5,0,0,174,9,0,0,168,9,0,0,166,9,0,0,155,9,0,0,153,9,0,0,150,9,0,0,158,9,0,0,35,3,0,0,133,9,0,0,128,9,0,0,125,9,0,0,190,6,0,0,139,9,0,0,136,9,0,0,24,3,0,0,21,3,0,0,17,3,0,0,97,9,0,0,95,9,0,0,89,9,0,0,166,6,0,0,85,9,0,0,163,6,0,0,107,9,0,0,104,9,0,0,101,9,0,0,233,2,0,0,229,2,0,0,111,9,0,0,246,2,0,0,243,2,0,0,185,6,0,0,54,9,0,0,53,9,0,0,51,9,0,0,49,9,0,0,125,6,0,0,46,9,0,0,124,6,0,0,43,9,0,0,121,6,0,0,64,9,0,0,62,9,0,0,60,9,0,0,57,9,0,0,130,6,0,0,178,2,0,0,175,2,0,0,70,9,0,0,171,2,0,0,68,9,0,0,189,2,0,0,186,2,0,0,193,2,0,0,155,6,0,0,153,6,0,0,59,10,0,0,57,10,0,0,50,10,0,0,48,10,0,0,45,10,0,0,53,10,0,0,33,10,0,0,28,10,0,0,25,10,0,0,11,7,0,0,39,10,0,0,36,10,0,0,3,10,0,0,1,10,0,0,251,9,0,0,5,7,0,0,247,9,0,0,3,7,0,0,13,10,0,0,10,10,0,0,7,10,0,0,17,10,0,0,221,9,0,0,220,9,0,0,218,9,0,0,216,9,0,0,250,6,0,0,213,9,0,0,249,6,0,0,210,9,0,0,247,6,0,0,231,9,0,0,229,9,0,0,227,9,0,0,224,9,0,0,252,6,0,0,237,9,0,0,235,9,0,0,138,3,0,0,135,3,0,0,143,3,0,0,161,10,0,0,52,7,0,0,155,10,0,0,152,10,0,0,46,7,0,0,44,7,0,0,139,10,0,0,136,10,0,0,133,10,0,0,143,10,0,0,35,7,0,0,34,7,0,0,32,7,0,0,113,10,0,0,111,10,0,0,109,10,0,0,106,10,0,0,37,7,0,0,119,10,0,0,117,10,0,0,66,7,0,0,65,7,0,0,212,10,0,0,62,7,0,0,61,7,0,0,59,7,0,0,64,7,0,0,206,10,0,0,204,10,0,0,143,0,0,0,195,7,0,0,139,0,0,0,194,7,0,0,135,0,0,0,133,0,0,0,131,0,0,0,192,7,0,0,128,0,0,0,191,7,0,0,125,0,0,0,189,7,0,0,138,0,0,0,137,0,0,0,136,0,0,0,193,7,0,0,109,4,0,0,108,4,0,0,106,4,0,0,112,0,0,0,110,0,0,0,182,7,0,0,107,0,0,0,181,7,0,0,104,0,0,0,179,7,0,0,177,7,0,0,122,0,0,0,121,0,0,0,119,0,0,0,117,0,0,0,185,7,0,0,114,0,0,0,184,7,0,0,124,0,0,0,91,4,0,0,90,4,0,0,88,4,0,0,86,4,0,0,93,4,0,0,92,4,0,0,84,0,0,0,83,0,0,0,161,7,0,0,81,0,0,0,160,7,0,0,78,0,0,0,158,7,0,0,156,7,0,0,153,7,0,0,94,0,0,0,93,0,0,0,91,0,0,0,167,7,0,0,88,0,0,0,166,7,0,0,85,0,0,0,163,7,0,0,99,0,0,0,97,0,0,0,95,0,0,0,169,7,0,0,62,4,0,0,61,4,0,0,59,4,0,0,57,4,0,0,54,4,0,0,100,0,0,0,66,4,0,0,65,4,0,0,63,4,0,0,67,4,0,0,49,0,0,0,47,0,0,0,125,7,0,0,44,0,0,0,123,7,0,0,121,7,0,0,118,7,0,0,115,7,0,0,59,0,0,0,134,7,0,0,56,0,0,0,133,7,0,0,53,0,0,0,130,7,0,0,127,7,0,0,66,0,0,0,64,0,0,0,139,7,0,0,61,0,0,0,137,7,0,0,18,4,0,0,16,4,0,0,14,4,0,0,71,0,0,0,11,4,0,0,70,0,0,0,8,4,0,0,68,0,0,0,24,4,0,0,23,4,0,0,21,4,0,0,19,4,0,0,26,4,0,0,25,4,0,0,12,0,0,0,10,0,0,0,77,7,0,0,75,7,0,0,72,7,0,0,69,7,0,0,21,0,0,0,88,7,0,0,19,0,0,0,85,7,0,0,82,7,0,0,79,7,0,0,28,0,0,0,96,7,0,0,25,0,0,0,94,7,0,0,22,0,0,0,91,7,0,0,214,3,0,0,212,3,0,0,209,3,0,0,206,3,0,0,32,0,0,0,30,0,0,0,223,3,0,0,221,3,0,0,219,3,0,0,216,3,0,0,34,0,0,0,227,3,0,0,226,3,0,0,224,3,0,0,103,8,0,0,102,8,0,0,99,8,0,0,98,8,0,0,96,8,0,0,100,1,0,0,99,1,0,0,98,1,0,0,101,8,0,0,91,8,0,0,90,8,0,0,88,8,0,0,86,8,0,0,79,5,0,0,87,1,0,0,85,1,0,0,82,1,0,0,95,8,0,0,79,1,0,0,93,8,0,0,92,1,0,0,91,1,0,0,90,1,0,0,96,5,0,0,94,5,0,0,76,8,0,0,75,8,0,0,73,8,0,0,71,8,0,0,46,5,0,0,68,8,0,0,44,5,0,0,54,1,0,0,52,1,0,0,49,1,0,0,83,8,0,0,46,1,0,0,81,8,0,0,42,1,0,0,79,8,0,0,64,1,0,0,62,1,0,0,60,1,0,0,57,1,0,0,85,8,0,0,66,1,0,0,65,1,0,0,75,5,0,0,73,5,0,0,71,5,0,0,77,5,0,0,44,8,0,0,43,8,0,0,41,8,0,0,39,8,0,0,252,4,0,0,36,8,0,0,250,4,0,0,33,8,0,0,247,4,0,0,3,1,0,0,54,8,0,0,0,1,0,0,52,8,0,0,252,0,0,0,50,8,0,0,47,8,0,0,16,1,0,0,13,1,0,0,60,8,0,0,10,1,0,0,58,8,0,0,25,1,0,0,23,1,0,0,21,1,0,0,37,5,0,0,35,5,0,0,33,5,0,0,30,5,0,0,26,1,0,0,41,5,0,0,39,5,0,0,247,7,0,0,245,7,0,0,243,7,0,0,240,7,0,0,179,4,0,0,237,7,0,0,176,4,0,0,173,4,0,0,207,0,0,0,5,8,0,0,205,0,0,0,3,8,0,0,201,0,0,0,1,8,0,0,254,7,0,0,251,7,0,0,220,0,0,0,218,0,0,0,16,8,0,0,215,0,0,0,14,8,0,0,211,0,0,0,11,8,0,0,228,0,0,0,226,0,0,0,223,0,0,0,21,8,0,0,235,4,0,0,233,4,0,0,230,4,0,0,232,0,0,0,227,4,0,0,230,0,0,0,243,4,0,0,241,4,0,0,239,4,0,0,12,9,0,0,11,9,0,0,8,9,0,0,7,9,0,0,5,9,0,0,10,9,0,0,0,9,0,0,255,8,0,0,253,8,0,0,251,8,0,0,57,6,0,0,4,9,0,0,2,9,0,0,78,2,0,0,240,8,0,0,239,8,0,0,237,8,0,0,235,8,0,0,42,6,0,0,232,8,0,0,41,6,0,0,247,8,0,0,245,8,0,0,243,8,0,0,67,2,0,0,65,2,0,0,62,2,0,0,59,2,0,0,250,8,0,0,70,2,0,0,69,2,0,0,56,6,0,0,215,8,0,0,214,8,0,0,212,8,0,0,210,8,0,0,9,6,0,0,207,8,0,0,8,6,0,0,204,8,0,0,5,6,0,0,225,8,0,0,223,8,0,0,221,8,0,0,218,8,0,0,14,6,0,0,23,2,0,0,20,2,0,0,231,8,0,0,16,2,0,0,229,8,0,0,34,2,0,0,31,2,0,0,37,2,0,0,39,6,0,0,37,6,0,0,176,8,0,0,174,8,0,0,172,8,0,0,206,5,0,0,169,8,0,0,205,5,0,0,166,8,0,0,202,5,0,0,199,5,0,0,190,8,0,0,188,8,0,0,186,8,0,0,183,8,0,0,216,5,0,0,180,8,0,0,212,5,0,0,224,1,0,0,221,1,0,0,200,8,0,0,217,1,0,0,198,8,0,0,213,1,0,0,195,8,0,0,234,1,0,0,231,1,0,0,203,8,0,0,241,1,0,0,1,6,0,0,255,5,0,0,252,5,0,0,173,9,0,0,172,9,0,0,170,9,0,0,175,9,0,0,165,9,0,0,164,9,0,0,162,9,0,0,160,9,0,0,194,6,0,0,169,9,0,0,167,9,0,0,149,9,0,0,148,9,0,0,146,9,0,0,144,9,0,0,193,6,0,0,141,9,0,0,192,6,0,0,156,9,0,0,154,9,0,0,152,9,0,0,159,9,0,0,37,3,0,0,36,3,0,0,124,9,0,0,123,9,0,0,121,9,0,0,119,9,0,0,189,6,0,0,116,9,0,0,188,6,0,0,113,9,0,0,186,6,0,0,134,9,0,0,132,9,0,0,130,9,0,0,127,9,0,0,191,6,0,0,140,9,0,0,138,9,0,0,25,3,0,0,23,3,0,0,20,3,0,0,27,3,0,0,84,9,0,0,82,9,0,0,80,9,0,0,161,6,0,0,77,9,0,0,160,6,0,0,74,9,0,0,158,6,0,0,156,6,0,0,98,9,0,0,96,9,0,0,94,9,0,0,91,9,0,0,167,6,0,0,88,9,0,0,165,6,0,0,108,9,0,0,106,9,0,0,103,9,0,0,239,2,0,0,236,2,0,0,232,2,0,0,112,9,0,0,247,2,0,0,245,2,0,0,15,7,0,0,60,10,0,0,58,10,0,0,14,7,0,0,13,7,0,0,51,10,0,0,49,10,0,0,47,10,0,0,54,10,0,0,10,7,0,0,9,7,0,0,7,7,0,0,34,10,0,0,32,10,0,0,30,10,0,0,27,10,0,0,12,7,0,0,40,10,0,0,38,10,0,0,2,7,0,0,1,7,0,0,255,6,0,0,253,6,0,0,4,10,0,0,2,10,0,0,0,10,0,0,253,9,0,0,6,7,0,0,250,9,0,0,4,7,0,0,14,10,0,0,12,10,0,0,9,10,0,0,18,10,0,0,55,7,0,0,54,7,0,0,162,10,0,0,51,7,0,0,50,7,0,0,48,7,0,0,53,7,0,0,156,10,0,0,154,10,0,0,43,7,0,0,42,7,0,0,40,7,0,0,38,7,0,0,47,7,0,0,45,7,0,0,140,10,0,0,138,10,0,0,135,10,0,0,144,10,0,0,25,7,0,0,19,7,0,0,18,7,0,0,129,3,0,0,94,3,0,0,241,6,0,0,61,3,0,0,58,3,0,0,70,3,0,0,224,6,0,0,222,6,0,0,40,3,0,0,177,9,0,0,205,6,0,0,204,6,0,0,202,6,0,0,207,6,0,0,64,10,0,0,26,7,0,0,166,10,0,0,216,10,0,0,14,3,0,0,228,2,0,0,225,2,0,0,179,6,0,0,174,2,0,0,167,2,0,0,183,2,0,0,146,6,0,0,144,6,0,0,127,2,0,0,116,2,0,0,35,9,0,0,135,2,0,0,132,2,0,0,109,6,0,0,107,6,0,0,104,6,0,0,112,6,0,0,90,2,0,0,88,2,0,0,85,2,0,0,83,2,0,0,16,9,0,0,81,2,0,0,14,9,0,0,97,2,0,0,95,2,0,0,92,2,0,0,75,6,0,0,74,6,0,0,72,6,0,0,70,6,0,0,101,2,0,0,79,6,0,0,77,6,0,0,24,9,0,0,158,3,0,0,156,3,0,0,124,3,0,0,118,3,0,0,131,3,0,0,89,3,0,0,82,3,0,0,201,9,0,0,242,6,0,0,56,3,0,0,55,3,0,0,53,3,0,0,51,3,0,0,184,9,0,0,50,3,0,0,182,9,0,0,65,3,0,0,63,3,0,0,60,3,0,0,72,3,0,0,225,6,0,0,223,6,0,0,89,10,0,0,72,10,0,0,70,10,0,0,186,10,0,0,174,10,0,0,172,10,0,0,222,10,0,0,221,10,0,0,58,2,0,0,55,2,0,0,51,6,0,0,19,2,0,0,15,2,0,0,11,2,0,0,28,2,0,0,30,6,0,0,28,6,0,0,220,1,0,0,211,1,0,0,207,1,0,0,192,8,0,0,230,1,0,0,227,1,0,0,244,5,0,0,241,5,0,0,238,5,0,0,249,5,0,0,155,1,0,0,147,1,0,0,144,8,0,0,143,1,0,0,141,8,0,0,167,1,0,0,160,1,0,0,182,5,0,0,177,5,0,0,174,5,0,0,172,1,0,0,188,5,0,0,185,5,0,0,162,8,0,0,110,1,0,0,107,1,0,0,110,8,0,0,104,1,0,0,108,8,0,0,101,1,0,0,105,8,0,0,120,1,0,0,117,1,0,0,114,1,0,0,115,8,0,0,130,5,0,0,129,5,0,0,127,5,0,0,125,5,0,0,126,1,0,0,122,5,0,0,124,1,0,0,137,5,0,0,135,5,0,0,132,5,0,0,141,5,0,0,127,8,0,0,126,8,0,0,9,3,0,0,6,3,0,0,3,3,0,0,16,3,0,0,220,2,0,0,213,2,0,0,210,2,0,0,100,9,0,0,231,2,0,0,180,6,0,0,164,2,0,0,162,2,0,0,156,2,0,0,59,9,0,0,153,2,0,0,56,9,0,0,173,2,0,0,148,6,0,0,145,6,0,0,114,2,0,0,112,2,0,0,110,2,0,0,31,9,0,0,108,2,0,0,29,9,0,0,105,2,0,0,26,9,0,0,129,2,0,0,123,2,0,0,137,2,0,0,110,6,0,0,108,6,0,0,106,6,0,0,6,10,0,0,160,3,0,0,157,3,0,0,226,9,0,0,223,9,0,0,126,3,0,0,123,3,0,0,120,3,0,0,197,9,0,0,195,9,0,0,192,9,0,0,90,3,0,0,88,3,0,0,86,3,0,0,83,3,0,0,243,6,0,0,132,10,0,0,108,10,0,0,105,10,0,0,85,10,0,0,83,10,0,0,80,10,0,0,91,10,0,0,208,10,0,0,199,10,0,0,197,10,0,0,184,10,0,0,183,10,0,0,181,10,0,0,188,10,0,0,96,1,0,0,102,5,0,0,84,1,0,0,81,1,0,0,77,1,0,0,91,5,0,0,89,5,0,0,51,1,0,0,44,1,0,0,40,1,0,0,78,8,0,0,59,1,0,0,56,1,0,0,67,5,0,0,62,5,0,0,70,5,0,0,5,1,0,0,2,1,0,0,250,0,0,0,49,8,0,0,246,0,0,0,46,8,0,0,15,1,0,0,12,1,0,0,8,1,0,0,26,5,0,0,21,5,0,0,18,5,0,0,20,1,0,0,32,5,0,0,29,5,0,0,67,8,0,0,203,0,0,0,0,8,0,0,195,0,0,0,253,7,0,0,191,0,0,0,249,7,0,0,213,0,0,0,209,0,0,0,8,8,0,0,222,4,0,0,220,4,0,0,214,4,0,0,225,0,0,0,210,4,0,0,222,0,0,0,232,4,0,0,229,4,0,0,225,4,0,0,238,4,0,0,32,8,0,0,31,8,0,0,154,0,0,0,205,7,0,0,150,0,0,0,203,7,0,0,147,0,0,0,200,7,0,0,197,7,0,0,163,0,0,0,160,0,0,0,212,7,0,0,156,0,0,0,209,7,0,0,151,4,0,0,150,4,0,0,148,4,0,0,146,4,0,0,143,4,0,0,170,0,0,0,140,4,0,0,167,0,0,0,161,4,0,0,159,4,0,0,156,4,0,0,153,4,0,0,174,0,0,0,166,4,0,0,164,4,0,0,233,7,0,0,232,7,0,0,230,7,0,0,75,2,0,0,74,2,0,0,52,2,0,0,47,2,0,0,44,2,0,0,242,8,0,0,61,2,0,0,52,6,0,0,8,2,0,0,6,2,0,0,0,2,0,0,220,8,0,0,252,1,0,0,217,8,0,0,18,2,0,0,32,6,0,0,29,6,0,0,205,1,0,0,201,1,0,0,185,8,0,0,194,1,0,0,182,8,0,0,190,1,0,0,178,8,0,0,223,1,0,0,215,1,0,0,233,1,0,0,246,5,0,0,243,5,0,0,240,5,0,0,141,1,0,0,139,1,0,0,137,8,0,0,136,1,0,0,135,8,0,0,133,1,0,0,132,8,0,0,129,8,0,0,154,1,0,0,146,8,0,0,146,1,0,0,166,1,0,0,183,5,0,0,181,5,0,0,179,5,0,0,176,5,0,0,190,5,0,0,151,9,0,0,31,3,0,0,129,9,0,0,126,9,0,0,11,3,0,0,8,3,0,0,5,3,0,0,93,9,0,0,90,9,0,0,86,9,0,0,222,2,0,0,216,2,0,0,212,2,0,0,234,2,0,0,181,6,0,0,52,9,0,0,50,9,0,0,47,9,0,0,44,9,0,0,122,6,0,0,165,2,0,0,163,2,0,0,161,2,0,0,158,2,0,0,155,2,0,0,176,2,0,0,149,6,0,0,147,6,0,0,46,10,0,0,29,10,0,0,26,10,0,0,255,9,0,0,252,9,0,0,248,9,0,0,159,3,0,0,219,9,0,0,217,9,0,0,214,9,0,0,211,9,0,0,248,6,0,0,228,9,0,0,127,3,0,0,125,3,0,0,122,3,0,0,158,10,0,0,149,10,0,0,147,10,0,0,129,10,0,0,127,10,0,0,124,10,0,0,103,10,0,0,102,10,0,0,100,10,0,0,98,10,0,0,33,7,0,0,107,10,0,0,209,10,0,0,60,7,0,0,200,10,0,0,198,10,0,0,142,0,0,0,141,0,0,0,115,4,0,0,114,4,0,0,134,0,0,0,132,0,0,0,129,0,0,0,126,0,0,0,190,7,0,0,105,4,0,0,104,4,0,0,102,4,0,0,107,4,0,0,113,0,0,0,111,0,0,0,108,0,0,0,105,0,0,0,180,7,0,0,101,0,0,0,178,7,0,0,120,0,0,0,118,0,0,0,115,0,0,0,85,4,0,0,84,4,0,0,82,4,0,0,80,4,0,0,123,0,0,0,89,4,0,0,87,4,0,0,82,0,0,0,79,0,0,0,159,7,0,0,75,0,0,0,157,7,0,0,72,0,0,0,154,7,0,0,92,0,0,0,89,0,0,0,86,0,0,0,164,7,0,0,53,4,0,0,52,4,0,0,50,4,0,0,48,4,0,0,98,0,0,0,45,4,0,0,96,0,0,0,60,4,0,0,58,4,0,0,55,4,0,0,64,4,0,0,176,7,0,0,175,7,0,0,48,0,0,0,45,0,0,0,124,7,0,0,42,0,0,0,122,7,0,0,39,0,0,0,119,7,0,0,116,7,0,0,60,0,0,0,57,0,0,0,54,0,0,0,131,7,0,0,50,0,0,0,128,7,0,0,7,4,0,0,6,4,0,0,4,4,0,0,2,4,0,0,67,0,0,0,255,3,0,0,65,0,0,0,252,3,0,0,62,0,0,0,17,4,0,0,15,4,0,0,12,4,0,0,9,4,0,0,69,0,0,0,22,4,0,0,20,4,0,0,152,7,0,0,151,7,0,0,149,7,0,0,11,0,0,0,9,0,0,0,76,7,0,0,7,0,0,0,73,7,0,0,70,7,0,0,67,7,0,0,20,0,0,0,86,7,0,0,16,0,0,0,83,7,0,0,13,0,0,0,80,7,0,0,202,3,0,0,200,3,0,0,198,3,0,0,195,3,0,0,29,0,0,0,192,3,0,0,26,0,0,0,23,0,0,0,215,3,0,0,213,3,0,0,210,3,0,0,207,3,0,0,33,0,0,0,203,3,0,0,31,0,0,0,222,3,0,0,220,3,0,0,217,3,0,0,114,7,0,0,112,7,0,0,110,7,0,0,225,3,0,0,95,1,0,0,97,8,0,0,103,5,0,0,75,1,0,0,74,1,0,0,72,1,0,0,70,1,0,0,89,8,0,0,67,1,0,0,87,8,0,0,83,1,0,0,92,5,0,0,90,5,0,0,38,1,0,0,37,1,0,0,35,1,0,0,33,1,0,0,74,8,0,0,30,1,0,0,72,8,0,0,27,1,0,0,69,8,0,0,53,1,0,0,47,1,0,0,61,1,0,0,68,5,0,0,66,5,0,0,64,5,0,0,245,0,0,0,244,0,0,0,242,0,0,0,42,8,0,0,239,0,0,0,40,8,0,0,236,0,0,0,37,8,0,0,34,8,0,0,4,1,0,0,51,8,0,0,249,0,0,0,14,1,0,0,27,5,0,0,25,5,0,0,23,5,0,0,20,5,0,0,34,5,0,0,189,0,0,0,246,7,0,0,186,0,0,0,244,7,0,0,183,0,0,0,241,7,0,0,238,7,0,0,234,7,0,0,206,0,0,0,198,0,0,0,255,7,0,0,194,0,0,0,216,0,0,0,223,4,0,0,221,4,0,0,219,4,0,0,216,4,0,0,227,0,0,0,213,4,0,0,231,4,0,0,6,9,0,0,254,8,0,0,252,8,0,0,238,8,0,0,236,8,0,0,233,8,0,0,53,2,0,0,51,2,0,0,49,2,0,0,46,2,0,0,63,2,0,0,53,6,0,0,213,8,0,0,211,8,0,0,208,8,0,0,205,8,0,0,6,6,0,0,9,2,0,0,7,2,0,0,5,2,0,0,2,2,0,0,222,8,0,0,255,1,0,0,21,2,0,0,33,6,0,0,31,6,0,0,175,8,0,0,173,8,0,0,170,8,0,0,167,8,0,0,203,5,0,0,163,8,0,0,200,5,0,0,203,1,0,0,200,1,0,0,197,1,0,0,184,8,0,0,193,1,0,0,218,1,0,0,235,1,0,0,247,5,0,0,245,5,0,0,242,5,0,0,171,9,0,0,163,9,0,0,161,9,0,0,147,9,0,0,145,9,0,0,142,9,0,0,33,3,0,0,32,3,0,0,122,9,0,0,120,9,0,0,117,9,0,0,114,9,0,0,187,6,0,0,131,9,0,0,12,3,0,0,10,3,0,0,7,3,0,0,83,9,0,0,81,9,0,0,78,9,0,0,75,9,0,0,159,6,0,0,71,9,0,0,157,6,0,0,92,9,0,0,223,2,0,0,221,2,0,0,218,2,0,0,215,2,0,0,237,2,0,0,182,6,0,0,56,10,0,0,55,10,0,0,44,10,0,0,43,10,0,0,41,10,0,0,24,10,0,0,23,10,0,0,21,10,0,0,19,10,0,0,8,7,0,0,31,10,0,0,246,9,0,0,245,9,0,0,243,9,0,0,241,9,0,0,0,7,0,0,238,9,0,0,254,6,0,0,254,9,0,0,161,3,0,0,159,10,0,0,49,7,0,0,150,10,0,0,148,10,0,0,41,7,0,0,39,7,0,0,130,10,0,0,128,10,0,0,126,10,0,0,23,7,0,0,17,7,0,0,16,7,0,0,238,6,0,0,220,6,0,0,218,6,0,0,201,6,0,0,200,6,0,0,198,6,0,0,203,6,0,0,24,7,0,0,175,6,0,0,140,6,0,0,138,6,0,0,121,2,0,0,117,2,0,0,102,6,0,0,100,6,0,0,97,6,0,0,105,6,0,0,86,2,0,0,69,6,0,0,68,6,0,0,66,6,0,0,64,6,0,0,93,2,0,0,73,6,0,0,71,6,0,0,23,9,0,0,119,3,0,0,85,3,0,0,239,6,0,0,54,3,0,0,52,3,0,0,221,6,0,0,219,6,0,0,48,6,0,0,12,2,0,0,24,6,0,0,22,6,0,0,212,1,0,0,208,1,0,0,234,5,0,0,231,5,0,0,228,5,0,0,239,5,0,0,152,1,0,0,148,1,0,0,144,1,0,0,172,5,0,0,167,5,0,0,164,5,0,0,161,1,0,0,178,5,0,0,175,5,0,0,160,8,0,0,108,1,0,0,105,1,0,0,102,1,0,0,106,8,0,0,121,5,0,0,120,5,0,0,118,5,0,0,116,5,0,0,118,1,0,0,113,5,0,0,115,1,0,0,128,5,0,0,126,5,0,0,123,5,0,0,133,5,0,0,125,8,0,0,124,8,0,0,4,3,0,0,214,2,0,0,211,2,0,0,176,6,0,0,160,2,0,0,157,2,0,0,154,2,0,0,170,2,0,0,142,6,0,0,139,6,0,0,113,2,0,0,111,2,0,0,109,2,0,0,106,2,0,0,27,9,0,0,124,2,0,0,120,2,0,0,103,6,0,0,101,6,0,0,99,6,0,0,152,3,0,0,150,3,0,0,116,3,0,0,112,3,0,0,121,3,0,0,81,3,0,0,80,3,0,0,79,3,0,0,78,3,0,0,193,9,0,0,87,3,0,0,84,3,0,0,240,6,0,0,81,10,0,0,182,10,0,0,227,10,0,0,100,5,0,0,78,1,0,0,87,5,0,0,85,5,0,0,45,1,0,0,41,1,0,0,60,5,0,0,58,5,0,0,55,5,0,0,63,5,0,0,255,0,0,0,251,0,0,0,247,0,0,0,16,5,0,0,11,5,0,0,8,5,0,0,9,1,0,0,22,5,0,0,19,5,0,0,65,8,0,0,204,0,0,0,196,0,0,0,192,0,0,0,250,7,0,0,208,4,0,0,206,4,0,0,200,4,0,0,214,0,0,0,196,4,0,0,210,0,0,0,218,4,0,0,215,4,0,0,211,4,0,0,226,4,0,0,29,8,0,0,27,8,0,0,151,0,0,0,148,0,0,0,201,7,0,0,144,0,0,0,198,7,0,0,139,4,0,0,138,4,0,0,136,4,0,0,134,4,0,0,131,4,0,0,161,0,0,0,128,4,0,0,157,0,0,0,149,4,0,0,147,4,0,0,144,4,0,0,141,4,0,0,168,0,0,0,157,4,0,0,154,4,0,0,229,7,0,0,228,7,0,0,226,7,0,0,231,7,0,0,73,2,0,0,48,2,0,0,45,2,0,0,49,6,0,0,4,2,0,0,253,1,0,0,26,6,0,0,23,6,0,0,202,1,0,0,191,1,0,0,179,8,0,0,216,1,0,0,236,5,0,0,233,5,0,0,230,5,0,0,142,1,0,0,140,1,0,0,137,1,0,0,134,1,0,0,133,8,0,0,130,1,0,0,130,8,0,0,151,1,0,0,173,5,0,0,171,5,0,0,169,5,0,0,166,5,0,0,164,1,0,0,180,5,0,0,161,8,0,0,1,3,0,0,252,2,0,0,208,2,0,0,200,2,0,0,87,9,0,0,217,2,0,0,177,6,0,0,152,2,0,0,151,2,0,0,149,2,0,0,147,2,0,0,48,9,0,0,144,2,0,0,45,9,0,0,159,2,0,0,143,6,0,0,141,6,0,0,249,9,0,0,154,3,0,0,151,3,0,0,215,9,0,0,212,9,0,0,117,3,0,0,115,3,0,0,113,3,0,0,125,10,0,0,101,10,0,0,99,10,0,0,207,10,0,0,196,10,0,0,195,10,0,0,140,0,0,0,113,4,0,0,112,4,0,0,130,0,0,0,127,0,0,0,101,4,0,0,100,4,0,0,98,4,0,0,103,4,0,0,109,0,0,0,106,0,0,0,102,0,0,0,79,4,0,0,78,4,0,0,76,4,0,0,74,4,0,0,116,0,0,0,83,4,0,0,81,4,0,0,188,7,0,0,80,0,0,0,76,0,0,0,73,0,0,0,155,7,0,0,44,4,0,0,43,4,0,0,41,4,0,0,39,4,0,0,90,0,0,0,36,4,0,0,87,0,0,0,51,4,0,0,49,4,0,0,46,4,0,0,56,4,0,0,174,7,0,0,173,7,0,0,46,0,0,0,43,0,0,0,40,0,0,0,120,7,0,0,36,0,0,0,117,7,0,0,251,3,0,0,250,3,0,0,248,3,0,0,246,3,0,0,58,0,0,0,243,3,0,0,55,0,0,0,240,3,0,0,51,0,0,0,5,4,0,0,3,4,0,0,0,4,0,0,253,3,0,0,63,0,0,0,13,4,0,0,10,4,0,0,148,7,0,0,147,7,0,0,145,7,0,0,150,7,0,0,8,0,0,0,74,7,0,0,4,0,0,0,71,7,0,0,1,0,0,0,68,7,0,0,188,3,0,0,186,3,0,0,184,3,0,0,181,3,0,0,178,3,0,0,17,0,0,0,14,0,0,0,201,3,0,0,199,3,0,0,196,3,0,0,193,3,0,0,27,0,0,0,189,3,0,0,24,0,0,0,211,3,0,0,208,3,0,0,204,3,0,0,109,7,0,0,108,7,0,0,106,7,0,0,104,7,0,0,218,3,0,0,113,7,0,0,111,7,0,0,94,1,0,0,93,1,0,0,101,5,0,0,73,1,0,0,71,1,0,0,68,1,0,0,88,5,0,0,86,5,0,0,36,1,0,0,34,1,0,0,31,1,0,0,28,1,0,0,70,8,0,0,48,1,0,0,61,5,0,0,59,5,0,0,57,5,0,0,65,5,0,0,243,0,0,0,240,0,0,0,237,0,0,0,38,8,0,0,233,0,0,0,35,8,0,0,254,0,0,0,17,5,0,0,15,5,0,0,13,5,0,0,10,5,0,0,24,5,0,0,66,8,0,0,190,0,0,0,187,0,0,0,184,0,0,0,242,7,0,0,180,0,0,0,239,7,0,0,177,0,0,0,235,7,0,0,199,0,0,0,209,4,0,0,207,4,0,0,205,4,0,0,202,4,0,0,217,0,0,0,199,4,0,0,217,4,0,0,30,8,0,0,28,8,0,0,72,2,0,0,43,2,0,0,42,2,0,0,40,2,0,0,38,2,0,0,234,8,0,0,50,2,0,0,50,6,0,0,251,1,0,0,250,1,0,0,248,1,0,0,246,1,0,0,209,8,0,0,243,1,0,0,206,8,0,0,3,2,0,0,27,6,0,0,25,6,0,0,189,1,0,0,187,1,0,0,185,1,0,0,171,8,0,0,182,1,0,0,168,8,0,0,179,1,0,0,164,8,0,0,204,1,0,0,198,1,0,0,219,1,0,0,237,5,0,0,235,5,0,0,232,5,0,0,143,9,0,0,30,3,0,0,29,3,0,0,118,9,0,0,115,9,0,0,2,3,0,0,0,3,0,0,254,2,0,0,79,9,0,0,76,9,0,0,72,9,0,0,209,2,0,0,207,2,0,0,205,2,0,0,202,2,0,0,219,2,0,0,178,6,0,0,42,10,0,0,22,10,0,0,20,10,0,0,244,9,0,0,242,9,0,0,239,9,0,0,155,3,0,0,153,3,0,0,157,10,0,0,146,10,0,0,145,10,0,0,123,10,0,0,122,10,0,0,120,10,0,0,235,6,0,0,216,6,0,0,214,6,0,0,197,6,0,0,196,6,0,0,195,6,0,0,199,6,0,0,22,7,0,0,171,6,0,0,134,6,0,0,132,6,0,0,95,6,0,0,93,6,0,0,90,6,0,0,98,6,0,0,63,6,0,0,62,6,0,0,60,6,0,0,58,6,0,0,67,6,0,0,65,6,0,0,22,9,0,0,236,6,0,0,217,6,0,0,215,6,0,0,45,6,0,0,18,6,0,0,16,6,0,0,224,5,0,0,221,5,0,0,218,5,0,0,229,5,0,0,162,5,0,0,157,5,0,0,154,5,0,0,145,1,0,0,168,5,0,0,165,5,0,0,158,8,0,0,112,5,0,0,111,5,0,0,109,5,0,0,107,5,0,0,104,5,0,0,103,1,0,0,119,5,0,0,117,5,0,0,114,5,0,0,124,5,0,0,123,8,0,0,122,8,0,0,172,6,0,0,136,6,0,0,133,6,0,0,107,2,0,0,96,6,0,0,94,6,0,0,92,6,0,0,237,6,0,0,98,5,0,0,83,5,0,0,81,5,0,0,53,5,0,0,48,5,0,0,56,5,0,0,6,5,0,0,1,5,0,0,254,4,0,0,248,0,0,0,12,5,0,0,9,5,0,0,63,8,0,0,194,4,0,0,192,4,0,0,186,4,0,0,197,0,0,0,182,4,0,0,193,0,0,0,204,4,0,0,201,4,0,0,197,4,0,0,212,4,0,0,25,8,0,0,23,8,0,0,127,4,0,0,126,4,0,0,124,4,0,0,122,4,0,0,152,0,0,0,119,4,0,0,149,0,0,0,116,4,0,0,145,0,0,0,137,4,0,0,135,4,0,0,132,4,0,0,129,4,0,0,158,0,0,0,145,4,0,0,142,4,0,0,225,7,0,0,224,7,0,0,222,7,0,0,227,7,0,0,46,6,0,0,254,1,0,0,20,6,0,0,17,6,0,0,196,1,0,0,192,1,0,0,226,5,0,0,220,5,0,0,138,1,0,0,135,1,0,0,131,1,0,0,163,5,0,0,161,5,0,0,159,5,0,0,156,5,0,0,170,5,0,0,159,8,0,0,253,2,0,0,204,2,0,0,201,2,0,0,173,6,0,0,150,2,0,0,148,2,0,0,145,2,0,0,137,6,0,0,135,6,0,0,148,3,0,0,146,3,0,0,111,3,0,0,110,3,0,0,109,3,0,0,114,3,0,0,111,4,0,0,110,4,0,0,97,4,0,0,96,4,0,0,94,4,0,0,99,4,0,0,73,4,0,0,72,4,0,0,70,4,0,0,68,4,0,0,103,0,0,0,77,4,0,0,75,4,0,0,187,7,0,0,35,4,0,0,34,4,0,0,32,4,0,0,30,4,0,0,77,0,0,0,27,4,0,0,74,0,0,0,42,4,0,0,40,4,0,0,37,4,0,0,47,4,0,0,172,7,0,0,171,7,0,0,239,3,0,0,238,3,0,0,236,3,0,0,234,3,0,0,231,3,0,0,41,0,0,0,228,3,0,0,37,0,0,0,249,3,0,0,247,3,0,0,244,3,0,0,241,3,0,0,52,0,0,0,1,4,0,0,254,3,0,0,144,7,0,0,143,7,0,0,141,7,0,0,146,7,0,0,174,3,0,0,172,3,0,0,170,3,0,0,167,3,0,0,164,3,0,0,5,0,0,0,2,0,0,0,187,3,0,0,185,3,0,0,182,3,0,0,179,3,0,0,18,0,0,0,175,3,0,0,15,0,0,0,197,3,0,0,194,3,0,0,190,3,0,0,103,7,0,0,102,7,0,0,100,7,0,0,98,7,0,0,205,3,0,0,107,7,0,0,105,7,0,0,99,5,0,0,69,1,0,0,84,5,0,0,82,5,0,0,32,1,0,0,29,1,0,0,54,5,0,0,52,5,0,0,50,5,0,0,241,0,0,0,238,0,0,0,234,0,0,0,7,5,0,0,5,5,0,0,3,5,0,0,0,5,0,0,14,5,0,0,64,8,0,0,188,0,0,0,185,0,0,0,181,0,0,0,178,0,0,0,236,7,0,0,195,4,0,0,193,4,0,0,191,4,0,0,188,4,0,0,200,0,0,0,185,4,0,0,203,4,0,0,26,8,0,0,24,8,0,0,71,2,0,0,41,2,0,0,39,2,0,0,47,6,0,0,249,1,0,0,247,1,0,0,244,1,0,0,1,2,0,0,21,6,0,0,19,6,0,0,188,1,0,0,186,1,0,0,183,1,0,0,180,1,0,0,165,8,0,0,199,1,0,0,195,1,0,0,227,5,0,0,225,5,0,0,222,5,0,0,28,3,0,0,251,2,0,0,250,2,0,0,248,2,0,0,255,2,0,0,199,2,0,0,198,2,0,0,196,2,0,0,194,2,0,0,73,9,0,0,206,2,0,0,203,2,0,0,174,6,0,0,240,9,0,0,149,3,0,0,147,3,0,0,121,10,0,0,91,6,0,0,61,6,0,0,59,6,0,0,21,9,0,0,233,6,0,0,213,6,0,0,211,6,0,0,219,5,0,0,158,5,0,0,155,5,0,0,156,8,0,0,110,5,0,0,108,5,0,0,105,5,0,0,115,5,0,0,121,8,0,0,119,8,0,0,168,6,0,0,129,6,0,0,126,6,0,0,89,6,0,0,87,6,0,0,84,6,0,0,234,6,0,0,49,5,0,0,2,5,0,0,255,4,0,0,61,8,0,0,190,4,0,0,183,4,0,0,198,4,0,0,20,8,0,0,17,8,0,0,125,4,0,0,123,4,0,0,120,4,0,0,117,4,0,0,146,0,0,0,133,4,0,0,130,4,0,0,221,7,0,0,219,7,0,0,216,7,0,0,223,7,0,0,43,6,0,0,13,6,0,0,10,6,0,0,215,5,0,0,207,5,0,0,153,5,0,0,151,5,0,0,148,5,0,0,145,5,0,0,132,1,0,0,160,5,0,0,157,8,0,0,169,6,0,0,146,2,0,0,131,6,0,0,128,6,0,0,95,4,0,0,71,4,0,0,69,4,0,0,186,7,0,0,33,4,0,0,31,4,0,0,28,4,0,0,38,4,0,0,170,7,0,0,168,7,0,0,237,3,0,0,235,3,0,0,232,3,0,0,229,3,0,0,38,0,0,0,245,3,0,0,242,3,0,0,140,7,0,0,138,7,0,0,135,7,0,0,142,7,0,0,173,3,0,0,171,3,0,0,168,3,0,0,165,3,0,0,6,0,0,0,162,3,0,0,3,0,0,0,183,3,0,0,180,3,0,0,176,3,0,0,97,7,0,0,95,7,0,0,92,7,0,0,89,7,0,0,191,3,0,0,101,7,0,0,99,7,0,0,35,0,0,0,97,5,0,0,80,5,0,0,78,5,0,0,47,5,0,0,45,5,0,0,42,5,0,0,51,5,0,0,253,4,0,0,251,4,0,0,248,4,0,0,245,4,0,0,235,0,0,0,4,5,0,0,62,8,0,0,181,4,0,0,180,4,0,0,177,4,0,0,174,4,0,0,182,0,0,0,171,4,0,0,179,0,0,0,189,4,0,0,22,8,0,0,19,8,0,0,44,6,0,0,245,1,0,0,15,6,0,0,12,6,0,0,184,1,0,0,181,1,0,0,217,5,0,0,214,5,0,0,210,5,0,0,223,5,0,0,249,2,0,0,197,2,0,0,195,2,0,0,170,6,0,0,145,3,0,0,144,3,0,0,150,8,0,0,106,5,0,0,116,8,0,0,113,8,0,0,85,6,0,0,230,6,0,0,55,8,0,0,184,4,0,0,10,8,0,0,6,8,0,0,121,4,0,0,118,4,0,0,213,7,0,0,210,7,0,0,207,7,0,0,217,7,0,0,208,5,0,0,149,5,0,0,146,5,0,0,152,8,0,0,162,6,0,0,123,6,0,0,120,6,0,0,183,7,0,0,29,4,0,0,165,7,0,0,162,7,0,0,233,3,0,0,230,3,0,0,132,7,0,0,129,7,0,0,126,7,0,0,136,7,0,0,169,3,0,0,166,3,0,0,163,3,0,0,87,7,0,0,84,7,0,0,81,7,0,0,78,7,0,0,177,3,0,0,93,7,0,0,90,7,0,0,43,5,0,0,249,4,0,0,246,4,0,0,57,8,0,0,178,4,0,0,175,4,0,0,172,4,0,0,187,4,0,0,13,8,0,0,9,8,0,0,40,6,0,0,7,6,0,0,4,6,0,0,204,5,0,0,201,5,0,0,198,5,0,0,211,5,0,0,164,6,0,0,0,0,0,0,68,0,65,0,68,0,68,0,68,0,68,0,65,0,65,0,68,0,65,0,68,0,65,0,68,0,0,0,0,0,0,0,6,0,0,0,30,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,6,0,0,0,2,0,0,0,7,0,0,0,3,0,0,0,6,0,0,0,30,0,0,0,54,0,0,0,78,0,0,0,102,0,0,0,126,0,0,0,150,0,0,0,0,0,0,0,6,0,0,0,26,0,0,0,50,0,0,0,74,0,0,0,52,0,0,0,190,0,0,0,88,0,0,0,205,0,0,0,109,0,0,0,39,0,0,0,176,0,0,0,21,0,0,0,155,0,0,0,197,0,0,0,251,0,0,0,223,0,0,0,155,0,0,0,21,0,0,0,5,0,0,0,172,0,0,0,254,0,0,0,124,0,0,0,12,0,0,0,181,0,0,0,184,0,0,0,96,0,0,0,50,0,0,0,193,0,0,0,2,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,6,0,0,0,28,0,0,0,54,0,0,0,80,0,0,0,106,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,1,0,0,0,3,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,1,0,0,0,10,0,0,0,34,0,0,0,70,0,0,0,126,0,0,0,0,0,0,0,3,0,0,0,8,0,0,0,2,0,0,0,1,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,90,0,0,0,118,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,26,0,0,0,2,0,0,0,23,0,0,0,27,0,0,0,0,0,0,0,3,0,0,0,16,0,0,0,24,0,0,0,30,0,0,0,28,0,0,0,11,0,0,0,0,0,0,0,13,0,0,0,4,0,0,0,7,0,0,0,17,0,0,0,0,0,0,0,25,0,0,0,22,0,0,0,31,0,0,0,15,0,0,0,29,0,0,0,10,0,0,0,12,0,0,0,6,0,0,0,0,0,0,0,21,0,0,0,14,0,0,0,9,0,0,0,5,0,0,0,20,0,0,0,8,0,0,0,19,0,0,0,18,0,0,0,0,0,0,0,6,0,0,0,28,0,0,0,50,0,0,0,72,0,0,0,94,0,0,0,255,255,255,255,255,255,255,255,0,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,225,2,0,0,224,2,0,0,231,2,0,0,230,2,0,0,237,2,0,0,236,2,0,0,243,2,0,0,242,2,0,0,249,2,0,0,248,2,0,0,255,2,0,0,254,2,0,0,5,3,0,0,4,3,0,0,11,3,0,0,10,3,0,0,17,3,0,0,16,3,0,0,23,3,0,0,22,3,0,0,29,3,0,0,28,3,0,0,35,3,0,0,34,3,0,0,41,3,0,0,40,3,0,0,47,3,0,0,46,3,0,0,95,3,0,0,94,3,0,0,33,1,0,0,32,1,0,0,39,1,0,0,38,1,0,0,45,1,0,0,44,1,0,0,51,1,0,0,50,1,0,0,57,1,0,0,56,1,0,0,63,1,0,0,62,1,0,0,69,1,0,0,68,1,0,0,75,1,0,0,74,1,0,0,81,1,0,0,80,1,0,0,87,1,0,0,86,1,0,0,93,1,0,0,92,1,0,0,99,1,0,0,98,1,0,0,105,1,0,0,104,1,0,0,111,1,0,0,110,1,0,0,56,3,0,0,55,3,0,0,51,0,0,0,25,0,0,0,19,0,0,0,64,0,0,0,56,0,0,0,4,0,0,0,44,0,0,0,31,0,0,0,28,0,0,0,36,0,0,0,47,0,0,0,11,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,3,0,0,0,3,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,3,0,0,0,5,0,0,0,5,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,3,0,0,0,10,0,0,0,12,0,0,0,14,0,0,0,0,0,0,0,6,0,0,0,34,0,0,0,62,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,46,0,0,0,138,0,0,0,203,0,0,0,187,0,0,0,139,0,0,0,206,0,0,0,196,0,0,0,166,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,1,0,0,0,59,60,62,64,91,92,93,95,96,126,33,13,9,44,58,10,45,46,36,47,34,124,42,40,41,63,123,125,39,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,6,0,0,0,22,0,0,0,38,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,14,0,0,0,11,0,0,0,27,0,0,0,46,0,0,0,65,0,0,0,59,0,0,0,31,0,0,0,12,0,0,0,16,0,0,0,43,0,0,0,55,0,0,0,5,0,0,0,9,0,0,0,22,0,0,0,36,0,0,0,0,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,5,0,0,0,20,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,9,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,185,0,0,0,133,0,0,0,188,0,0,0,142,0,0,0,4,0,0,0,12,0,0,0,36,0,0,0,108,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,14,0,0,0,11,0,0,0,5,0,0,0,20,0,0,0,227,1,0,0,226,1,0,0,221,1,0,0,220,1,0,0,215,1,0,0,214,1,0,0,49,0,0,0,255,255,255,255,254,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,253,255,255,255,254,255,255,255,255,255,255,255,209,1,0,0,208,1,0,0,203,1,0,0,202,1,0,0,197,1,0,0,196,1,0,0,71,3,0,0,70,3,0,0,29,1,0,0,28,1,0,0,23,1,0,0,22,1,0,0,17,1,0,0,16,1,0,0,11,1,0,0,10,1,0,0,5,1,0,0,4,1,0,0,255,0,0,0,254,0,0,0,249,0,0,0,248,0,0,0,243,0,0,0,242,0,0,0,237,0,0,0,236,0,0,0,231,0,0,0,230,0,0,0,225,0,0,0,224,0,0,0,219,0,0,0,218,0,0,0,213,0,0,0,212,0,0,0,207,0,0,0,206,0,0,0,53,3,0,0,52,3,0,0,63,0,0,0,58,0,0,0,53,0,0,0,48,0,0,0,43,0,0,0,38,0,0,0,33,0,0,0,28,0,0,0,23,0,0,0,18,0,0,0,13,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,20,0,0,0,41,0,0,0,46,0,0,0,1,0,0,0,8,0,0,0,51,0,0,0,29,0,0,0,61,0,0,0,34,0,0,0,15,0,0,0,25,0,0,0,37,0,0,0,58,0,0,0,0,0,0,0,42,0,42,0,42,0,32,0,48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,56,0,57,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,88,0,89,0,90,0,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,28,0,0,0,50,0,0,0,0,0,0,0,83,0,0,0,195,0,0,0,100,0,0,0,39,0,0,0,188,0,0,0,75,0,0,0,66,0,0,0,61,0,0,0,241,0,0,0,213,0,0,0,109,0,0,0,129,0,0,0,94,0,0,0,254,0,0,0,225,0,0,0,48,0,0,0,90,0,0,0,188,0,0,0,68,0,68,0,68,0,68,0,65,0,65,0,65,0,65,0,68,0,65,0,68,0,68,0,65,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,6,0,0,0,30,0,0,0,58,0,0,0,86,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,24,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,48,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,72,0,0,0,88,0,7,0,6,4,0,0,0,0,0,0,0,0,0,0,6,4,52,0,0,0,86,0,83,0,95,0,86,0,69,0,82,0,83,0,73,0,79,0,78,0,95,0,73,0,78,0,70,0,79,0,0,0,0,0,189,4,239,254,0,0,1,0,16,0,0,0,0,0,2,0,16,0,0,0,0,0,2,0,63,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,1,0,86,0,97,0,114,0,70,0,105,0,108,0,101,0,73,0,110,0,102,0,111,0,0,0,0,0,36,0,4,0,0,0,84,0,114,0,97,0,110,0,115,0,108,0,97,0,116,0,105,0,111,0,110,0,0,0,0,0,0,0,176,4,102,3,0,0,1,0,83,0,116,0,114,0,105,0,110,0,103,0,70,0,105,0,108,0,101,0,73,0,110,0,102,0,111,0,0,0,66,3,0,0,1,0,48,0,48,0,48,0,48,0,48,0,52,0,98,0,48,0,0,0,204,0,90,0,1,0,67,0,111,0,109,0,109,0,101,0,110,0,116,0,115,0,0,0,112,0,111,0,114,0,116,0,32,0,111,0,102,0,32,0,116,0,104,0,101,0,32,0,106,0,97,0,118,0,97,0,32,0,98,0,97,0,115,0,101,0,100,0,32,0,98,0,97,0,114,0,99,0,111,0,100,0,101,0,32,0,115,0,99,0,97,0,110,0,110,0,105,0,110,0,103,0,32,0,108,0,105,0,98,0,114,0,97,0,114,0,121,0,32,0,102,0,111,0,114,0,32,0,46,0,110,0,101,0,116,0,32,0,40,0,106,0,97,0,118,0,97,0,32,0,122,0,120,0,105,0,110,0,103,0,32,0,48,0,52,0,46,0,48,0,51,0,46,0,50,0,48,0,49,0,56,0,32,0,50,0,50,0,58,0,49,0,55,0,58,0,52,0,48,0,41,0,0,0,76,0,22,0,1,0,67,0,111,0,109,0,112,0,97,0,110,0,121,0,78,0,97,0,109,0,101,0,0,0,0,0,90,0,88,0,105,0,110,0,103,0,46,0,78,0,101,0,116,0,32,0,68,0,101,0,118,0,101,0,108,0,111,0,112,0,109,0,101,0,110,0,116,0,0,0,44,0,2,0,1,0,70,0,105,0,108,0,101,0,68,0,101,0,115,0,99,0,114,0,105,0,112,0,116,0,105,0,111,0,110,0,0,0,0,0,32,0,0,0,50,0,9,0,1,0,70,0,105,0,108,0,101,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,0,0,0,0,48,0,46,0,49,0,54,0,46,0,50,0,46,0,48,0,0,0,0,0,70,0,19,0,1,0,73,0,110,0,116,0,101,0,114,0,110,0,97,0,108,0,78,0,97,0,109,0,101,0,0,0,122,0,120,0,105,0,110,0,103,0,46,0,112,0,111,0,114,0,116,0,97,0,98,0,108,0,101,0,46,0,100,0,108,0,108,0,0,0,0,0,70,0,17,0,1,0,76,0,101,0,103,0,97,0,108,0,67,0,111,0,112,0,121,0,114,0,105,0,103,0,104,0,116,0,0,0,67,0,111,0,112,0,121,0,114,0,105,0,103,0,104,0,116,0,32,0,169,0,32,0,50,0,48,0,49,0,50,0,0,0,0,0,42,0,1,0,1,0,76,0,101,0,103,0,97,0,108,0,84,0,114,0,97,0,100,0,101,0,109,0,97,0,114,0,107,0,115,0,0,0,0,0,0,0,0,0,78,0,19,0,1,0,79,0,114,0,105,0,103,0,105,0,110,0,97,0,108,0,70,0,105,0,108,0,101,0,110,0,97,0,109,0,101,0,0,0,122,0,120,0,105,0,110,0,103,0,46,0,112,0,111,0,114,0,116,0,97,0,98,0,108,0,101,0,46,0,100,0,108,0,108,0,0,0,0,0,52,0,10,0,1,0,80,0,114,0,111,0,100,0,117,0,99,0,116,0,78,0,97,0,109,0,101,0,0,0,0,0,90,0,88,0,105,0,110,0,103,0,46,0,78,0,101,0,116,0,0,0,54,0,9,0,1,0,80,0,114,0,111,0,100,0,117,0,99,0,116,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,0,0,48,0,46,0,49,0,54,0,46,0,50,0,46,0,48,0,0,0,0,0,58,0,9,0,1,0,65,0,115,0,115,0,101,0,109,0,98,0,108,0,121,0,32,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,0,0,48,0,46,0,49,0,54,0,46,0,50,0,46,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,12,0,0,0,244,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,".Split(',') -as [Byte[]]) | Out-Null;
  }
  Try {
if (([System.Reflection.Assembly]::GetAssembly([QRCodeEncoderLibrary.QREncoder]).Count) -eq 1) {
 Write-Host  "Asm 2 already loaded";
  }
 }
  Catch {
[System.Reflection.Assembly]::Load("77,90,144,0,3,0,0,0,4,0,0,0,255,255,0,0,184,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,14,31,186,14,0,180,9,205,33,184,1,76,205,33,84,104,105,115,32,112,114,111,103,114,97,109,32,99,97,110,110,111,116,32,98,101,32,114,117,110,32,105,110,32,68,79,83,32,109,111,100,101,46,13,13,10,36,0,0,0,0,0,0,0,80,69,0,0,76,1,3,0,179,130,21,253,0,0,0,0,0,0,0,0,224,0,34,32,11,1,48,0,0,158,0,0,0,10,0,0,0,0,0,0,250,168,0,0,0,32,0,0,0,192,0,0,0,0,0,16,0,32,0,0,0,2,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,3,0,64,133,0,0,16,0,0,16,0,0,0,0,16,0,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,165,168,0,0,79,0,0,0,0,192,0,0,120,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,12,0,0,0,136,167,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,8,0,0,0,0,0,0,0,0,0,0,0,8,32,0,0,72,0,0,0,0,0,0,0,0,0,0,0,46,116,101,120,116,0,0,0,56,157,0,0,0,32,0,0,0,158,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,96,46,114,115,114,99,0,0,0,120,6,0,0,0,192,0,0,0,8,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,64,46,114,101,108,111,99,0,0,12,0,0,0,0,224,0,0,0,2,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,168,0,0,0,0,0,0,72,0,0,0,2,0,5,0,244,93,0,0,148,73,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,48,5,0,104,0,0,0,1,0,0,17,0,23,10,22,11,43,74,0,4,32,176,21,0,0,50,7,32,176,21,0,0,43,1,4,12,4,8,89,16,2,43,17,0,6,2,3,37,23,88,16,1,145,88,10,7,6,88,11,0,8,23,89,37,12,22,254,4,22,254,1,13,9,45,224,6,32,241,255,0,0,94,10,7,32,241,255,0,0,94,11,0,4,22,254,2,19,4,17,4,45,172,7,31,16,98,6,96,19,5,43,0,17,5,42,19,48,6,0,52,0,0,0,2,0,0,17,0,21,10,43,32,126,1,0,0,4,6,2,3,37,23,88,16,1,145,97,32,255,0,0,0,95,149,6,30,100,97,10,4,23,89,16,2,4,22,254,2,11,7,45,216,6,102,12,43,0,8,42,110,32,0,1,0,0,141,25,0,0,1,37,208,137,0,0,4,40,15,0,0,10,128,1,0,0,4,42,19,48,5,0,249,0,0,0,3,0,0,17,0,2,31,34,111,16,0,0,10,22,254,4,19,4,17,4,44,29,0,2,23,141,30,0,0,1,37,22,31,32,157,111,17,0,0,10,40,5,0,0,6,0,56,201,0,0,0,115,18,0,0,10,10,22,11,22,12,22,13,56,165,0,0,0,0,43,5,0,7,23,88,11,7,2,111,19,0,0,10,47,13,2,7,111,20,0,0,10,31,32,254,1,43,1,22,19,5,17,5,45,222,7,2,111,19,0,0,10,254,1,19,6,17,6,44,2,43,116,2,7,111,20,0,0,10,31,34,254,1,19,7,17,7,44,43,0,7,23,88,11,2,31,34,7,111,21,0,0,10,12,8,22,254,4,19,8,17,8,44,11,114,1,0,0,112,115,22,0,0,10,122,8,23,88,13,0,43,31,0,2,31,32,7,111,21,0,0,10,12,8,22,254,4,19,9,17,9,44,7,2,111,19,0,0,10,12,8,13,0,6,2,7,8,7,89,111,23,0,0,10,111,24,0,0,10,0,9,11,0,56,86,255,255,255,6,111,25,0,0,10,40,5,0,0,6,0,43,0,42,0,0,0,19,48,4,0,69,4,0,0,4,0,0,17,0,2,44,8,2,142,105,24,254,4,43,1,23,19,6,17,6,44,11,114,49,0,0,112,115,22,0,0,10,122,22,10,20,11,20,12,115,60,0,0,6,19,5,22,19,7,56,197,3,0,0,0,2,17,7,154,19,8,17,8,22,111,20,0,0,10,31,47,46,17,17,8,22,111,20,0,0,10,31,45,254,1,22,254,1,43,1,22,19,10,17,10,44,64,0,7,20,254,1,19,11,17,11,44,9,0,17,8,11,56,128,3,0,0,8,20,254,1,19,12,17,12,44,9,0,17,8,12,56,109,3,0,0,114,59,0,0,112,17,7,23,88,140,32,0,0,1,40,26,0,0,10,115,22,0,0,10,122,17,8,31,58,111,16,0,0,10,19,9,17,9,22,254,4,19,13,17,13,44,11,17,8,31,61,111,16,0,0,10,19,9,17,9,22,254,2,19,14,17,14,44,30,0,17,8,23,17,9,23,89,111,23,0,0,10,13,17,8,17,9,23,88,111,27,0,0,10,19,4,0,43,18,0,17,8,23,111,27,0,0,10,13,126,28,0,0,10,19,4,0,9,111,29,0,0,10,13,17,4,111,29,0,0,10,19,4,9,19,15,17,15,40,64,0,0,6,19,16,17,16,32,224,34,12,224,53,62,17,16,32,62,78,230,189,53,28,17,16,32,81,135,145,33,46,106,43,0,17,16,32,62,78,230,189,59,224,0,0,0,56,147,2,0,0,17,16,32,157,144,159,215,46,122,43,0,17,16,32,224,34,12,224,46,89,56,122,2,0,0,17,16,32,23,50,53,234,53,25,17,16,32,120,47,12,232,46,110,43,0,17,16,32,23,50,53,234,46,121,56,88,2,0,0,17,16,32,163,61,12,241,59,170,0,0,0,43,0,17,16,32,92,66,12,244,46,115,56,60,2,0,0,17,15,114,117,0,0,112,40,30,0,0,10,58,159,0,0,0,56,38,2,0,0,17,15,114,129,0,0,112,40,30,0,0,10,58,137,0,0,0,56,16,2,0,0,17,15,114,133,0,0,112,40,30,0,0,10,58,185,1,0,0,56,250,1,0,0,17,15,114,147,0,0,112,40,30,0,0,10,58,163,1,0,0,56,228,1,0,0,17,15,114,151,0,0,112,40,30,0,0,10,58,174,1,0,0,56,206,1,0,0,17,15,114,163,0,0,112,40,30,0,0,10,58,152,1,0,0,56,184,1,0,0,17,15,114,167,0,0,112,40,30,0,0,10,58,163,1,0,0,56,162,1,0,0,17,15,114,177,0,0,112,40,30,0,0,10,58,141,1,0,0,56,140,1,0,0,17,4,19,20,17,20,40,64,0,0,6,19,16,17,16,32,231,202,194,89,53,68,17,16,32,253,185,221,61,53,31,17,16,32,118,215,175,53,59,144,0,0,0,43,0,17,16,32,253,185,221,61,59,194,0,0,0,56,241,0,0,0,17,16,32,129,106,81,79,46,81,43,0,17,16,32,231,202,194,89,59,134,0,0,0,56,213,0,0,0,17,16,32,11,49,12,233,53,25,17,16,32,120,47,12,232,46,95,43,0,17,16,32,11,49,12,233,46,52,56,179,0,0,0,17,16,32,87,55,12,237,59,131,0,0,0,43,0,17,16,32,92,66,12,244,46,88,56,151,0,0,0,17,20,114,181,0,0,112,40,30,0,0,10,45,117,56,132,0,0,0,17,20,114,189,0,0,112,40,30,0,0,10,45,98,43,116,17,20,114,193,0,0,112,40,30,0,0,10,45,87,43,100,17,20,114,147,0,0,112,40,30,0,0,10,45,71,43,84,17,20,114,207,0,0,112,40,30,0,0,10,45,60,43,68,17,20,114,163,0,0,112,40,30,0,0,10,45,44,43,52,17,20,114,223,0,0,112,40,30,0,0,10,45,33,43,36,17,20,114,233,0,0,112,40,30,0,0,10,45,17,43,20,22,19,17,43,26,23,19,17,43,21,24,19,17,43,16,25,19,17,43,11,114,237,0,0,112,115,22,0,0,10,122,17,5,17,17,111,18,0,0,6,0,43,96,17,4,18,18,40,31,0,0,10,22,254,1,19,21,17,21,44,3,21,19,18,17,5,17,18,111,20,0,0,6,0,43,63,17,4,18,19,40,31,0,0,10,22,254,1,19,22,17,22,44,3,21,19,19,17,5,17,19,111,22,0,0,6,0,43,30,23,10,43,26,114,47,1,0,112,17,7,23,88,140,32,0,0,1,9,40,32,0,0,10,115,33,0,0,10,122,0,17,7,23,88,19,7,17,7,2,142,105,254,4,19,23,17,23,58,43,252,255,255,6,19,24,17,24,44,22,0,7,40,34,0,0,10,19,25,17,5,17,25,111,23,0,0,6,0,0,43,20,0,7,40,35,0,0,10,19,26,17,5,17,26,111,25,0,0,6,0,0,17,5,8,111,27,0,0,6,0,43,0,42,46,114,115,1,0,112,128,2,0,0,4,42,30,2,123,26,0,0,4,42,34,2,3,125,26,0,0,4,42,30,2,123,27,0,0,4,42,34,2,3,125,27,0,0,4,42,30,2,123,28,0,0,4,42,34,2,3,125,28,0,0,4,42,30,2,123,29,0,0,4,42,34,2,3,125,29,0,0,4,42,30,2,123,30,0,0,4,42,34,2,3,125,30,0,0,4,42,0,0,19,48,1,0,12,0,0,0,5,0,0,17,0,2,123,51,0,0,4,10,43,0,6,42,19,48,2,0,37,0,0,0,6,0,0,17,0,3,22,50,6,3,25,254,2,43,1,23,10,6,44,11,114,248,5,0,112,115,22,0,0,10,122,2,3,125,51,0,0,4,43,0,42,0,0,0,19,48,1,0,12,0,0,0,7,0,0,17,0,2,123,52,0,0,4,10,43,0,6,42,19,48,4,0,91,0,0,0,8,0,0,17,0,3,23,50,7,3,31,100,254,2,43,1,23,10,6,44,11,114,120,6,0,112,115,22,0,0,10,122,2,3,125,52,0,0,4,2,123,53,0,0,4,26,3,90,254,4,11,7,44,9,2,26,3,90,125,53,0,0,4,2,24,2,123,53,0,0,4,90,2,40,11,0,0,6,2,123,52,0,0,4,90,88,40,14,0,0,6,0,43,0,42,0,19,48,1,0,12,0,0,0,7,0,0,17,0,2,123,53,0,0,4,10,43,0,6,42,19,48,4,0,77,0,0,0,6,0,0,17,0,3,26,2,123,52,0,0,4,90,50,10,3,32,144,1,0,0,254,2,43,1,23,10,6,44,11,114,186,6,0,112,115,22,0,0,10,122,2,3,125,53,0,0,4,2,24,2,123,53,0,0,4,90,2,40,11,0,0,6,2,123,52,0,0,4,90,88,40,14,0,0,6,0,43,0,42,0,0,0,19,48,5,0,54,0,0,0,9,0,0,17,0,3,40,36,0,0,10,11,7,44,11,114,65,7,0,112,115,37,0,0,10,122,40,38,0,0,10,3,111,39,0,0,10,10,2,23,141,2,0,0,27,37,22,6,162,40,26,0,0,6,0,43,0,42,0,0,19,48,5,0,134,0,0,0,10,0,0,17,0,3,44,7,3,142,22,254,1,43,1,23,11,7,44,11,114,143,7,0,112,115,37,0,0,10,122,22,12,43,27,0,3,8,154,20,254,1,13,9,44,11,114,221,7,0,112,115,37,0,0,10,122,0,8,23,88,12,8,3,142,105,254,4,19,4,17,4,45,217,3,142,105,141,2,0,0,27,10,22,19,5,43,26,0,6,17,5,40,38,0,0,10,3,17,5,154,111,39,0,0,10,162,0,17,5,23,88,19,5,17,5,3,142,105,254,4,19,6,17,6,45,217,2,6,40,26,0,0,6,0,43,0,42,0,0,19,48,5,0,47,0,0,0,6,0,0,17,0,3,44,7,3,142,22,254,1,43,1,23,10,6,44,11,114,63,8,0,112,115,37,0,0,10,122,2,23,141,2,0,0,27,37,22,3,162,40,26,0,0,6,0,43,0,42,0,19,48,4,0,69,1,0,0,11,0,0,17,0,3,44,7,3,142,22,254,1,43,1,23,11,7,44,11,114,155,8,0,112,115,37,0,0,10,122,2,20,40,8,0,0,6,0,2,22,40,10,0,0,6,0,2,22,40,12,0,0,6,0,2,22,40,14,0,0,6,0,22,10,22,12,43,37,0,3,8,154,13,9,20,254,1,19,4,17,4,44,11,3,8,22,141,37,0,0,1,162,43,6,6,9,142,105,88,10,0,8,23,88,12,8,3,142,105,254,4,19,5,17,5,45,207,6,22,254,1,19,6,17,6,44,11,114,235,8,0,112,115,22,0,0,10,122,2,3,125,31,0,0,4,2,40,30,0,0,6,0,2,40,31,0,0,6,0,2,40,33,0,0,6,0,2,40,35,0,0,6,0,2,40,47,0,0,6,0,2,40,36,0,0,6,0,2,40,37,0,0,6,0,2,40,44,0,0,6,0,2,2,40,11,0,0,6,2,40,11,0,0,6,115,40,0,0,10,40,8,0,0,6,0,22,19,7,43,79,0,22,19,8,43,50,0,2,123,48,0,0,4,17,7,17,8,40,41,0,0,10,23,95,22,254,3,19,9,17,9,44,16,2,40,7,0,0,6,17,7,17,8,23,40,42,0,0,10,0,17,8,23,88,19,8,17,8,2,40,11,0,0,6,254,4,19,10,17,10,45,190,0,17,7,23,88,19,7,17,7,2,40,11,0,0,6,254,4,19,11,17,11,45,161,43,0,42,0,0,0,27,48,4,0,110,0,0,0,12,0,0,17,0,3,20,254,1,10,6,44,11,114,35,9,0,112,115,37,0,0,10,122,3,114,111,9,0,112,27,111,43,0,0,10,22,254,1,11,7,44,11,114,121,9,0,112,115,22,0,0,10,122,2,40,7,0,0,6,20,254,1,12,8,44,11,114,227,9,0,112,115,33,0,0,10,122,3,24,24,22,115,44,0,0,10,13,0,2,9,40,28,0,0,6,0,0,222,11,9,44,7,9,111,45,0,0,10,0,220,43,0,42,0,0,1,16,0,0,2,0,84,0,12,96,0,11,0,0,0,0,19,48,4,0,129,0,0,0,13,0,0,17,0,2,40,7,0,0,6,20,254,1,19,4,17,4,44,11,114,227,9,0,112,115,33,0,0,10,122,2,40,57,0,0,6,10,2,40,59,0,0,6,11,7,40,58,0,0,6,12,3,115,46,0,0,10,13,9,126,49,0,0,4,22,126,49,0,0,4,142,105,111,47,0,0,10,0,9,6,22,6,142,105,111,47,0,0,10,0,9,8,22,8,142,105,111,47,0,0,10,0,9,126,50,0,0,4,22,126,50,0,0,4,142,105,111,47,0,0,10,0,9,111,48,0,0,10,0,43,0,42,0,0,0,19,48,4,0,247,0,0,0,14,0,0,17,0,2,40,7,0,0,6,20,254,1,19,4,17,4,44,11,114,227,9,0,112,115,33,0,0,10,122,2,40,13,0,0,6,10,6,6,115,40,0,0,10,11,2,123,53,0,0,4,12,2,123,53,0,0,4,13,22,19,5,56,156,0,0,0,0,22,19,6,43,111,0,2,40,7,0,0,6,17,5,17,6,40,49,0,0,10,19,7,17,7,44,73,0,22,19,8,43,50,0,22,19,9,43,21,7,9,17,8,88,8,17,9,88,23,40,42,0,0,10,17,9,23,88,19,9,17,9,2,40,19,0,0,6,254,4,19,10,17,10,45,219,0,17,8,23,88,19,8,17,8,2,40,19,0,0,6,254,4,19,11,17,11,45,190,0,8,2,40,19,0,0,6,88,12,0,17,6,23,88,19,6,17,6,2,40,11,0,0,6,254,4,19,12,17,12,45,129,2,123,53,0,0,4,12,9,2,40,19,0,0,6,88,13,0,17,5,23,88,19,5,17,5,2,40,11,0,0,6,254,4,19,13,17,13,58,81,255,255,255,7,19,14,43,0,17,14,42,0,19,48,4,0,19,2,0,0,15,0,0,17,0,2,2,123,31,0,0,4,142,105,141,6,0,0,2,125,41,0,0,4,2,22,125,32,0,0,4,22,11,56,245,0,0,0,0,2,123,31,0,0,4,7,154,12,8,142,105,13,23,19,4,22,19,6,43,56,0,126,56,0,0,4,8,17,6,145,145,19,7,17,7,31,10,254,4,19,8,17,8,44,2,43,23,17,7,31,45,254,4,19,9,17,9,44,6,0,24,19,4,43,5,26,19,4,43,17,17,6,23,88,19,6,17,6,9,254,4,19,10,17,10,45,189,26,19,5,17,4,19,11,17,11,23,89,69,4,0,0,0,2,0,0,0,53,0,0,0,94,0,0,0,84,0,0,0,43,92,17,5,31,10,9,25,91,90,88,19,5,9,25,93,23,254,1,19,12,17,12,44,8,17,5,26,88,19,5,43,18,9,25,93,24,254,1,19,13,17,13,44,6,17,5,29,88,19,5,43,41,17,5,31,11,9,24,91,90,88,19,5,9,23,95,22,254,3,19,14,17,14,44,6,17,5,28,88,19,5,43,10,17,5,30,9,90,88,19,5,43,0,2,123,41,0,0,4,7,17,4,158,2,2,123,32,0,0,4,17,5,88,125,32,0,0,4,0,7,23,88,11,7,2,123,31,0,0,4,142,105,254,4,19,15,17,15,58,247,254,255,255,22,10,2,23,40,10,0,0,6,0,56,151,0,0,0,0,2,31,17,26,2,40,9,0,0,6,90,88,40,12,0,0,6,0,2,24,2,123,53,0,0,4,90,2,40,11,0,0,6,2,123,52,0,0,4,90,88,40,14,0,0,6,0,2,40,46,0,0,6,0,22,10,22,19,16,43,24,6,2,2,123,41,0,0,4,17,16,148,40,45,0,0,6,88,10,17,16,23,88,19,16,17,16,2,123,41,0,0,4,142,105,254,4,19,17,17,17,45,214,2,123,32,0,0,4,6,88,2,123,35,0,0,4,254,2,22,254,1,19,18,17,18,44,2,43,42,0,2,40,9,0,0,6,19,19,2,17,19,23,88,40,10,0,0,6,0,2,40,9,0,0,6,31,40,254,2,22,254,1,19,20,17,20,58,83,255,255,255,2,40,9,0,0,6,31,40,254,2,19,21,17,21,44,11,114,29,10,0,112,115,33,0,0,10,122,2,2,123,32,0,0,4,6,88,125,32,0,0,4,43,0,42,0,19,48,7,0,134,2,0,0,16,0,0,17,0,2,2,123,33,0,0,4,141,37,0,0,1,125,42,0,0,4,2,22,125,43,0,0,4,2,22,125,44,0,0,4,2,22,125,45,0,0,4,22,11,56,141,1,0,0,0,2,123,31,0,0,4,7,154,12,8,142,105,13,2,2,123,41,0,0,4,7,148,26,40,32,0,0,6,0,2,9,2,2,123,41,0,0,4,7,148,40,45,0,0,6,40,32,0,0,6,0,2,123,41,0,0,4,7,148,19,4,17,4,23,89,69,4,0,0,0,5,0,0,0,171,0,0,0,49,1,0,0,13,1,0,0,56,44,1,0,0,9,25,91,25,90,19,5,22,19,7,43,57,2,31,100,126,56,0,0,4,8,17,7,145,145,90,31,10,126,56,0,0,4,8,17,7,23,88,145,145,90,88,126,56,0,0,4,8,17,7,24,88,145,145,88,31,10,40,32,0,0,6,0,17,7,25,88,19,7,17,7,17,5,254,4,19,8,17,8,45,187,9,17,5,89,23,254,1,19,9,17,9,44,20,2,126,56,0,0,4,8,17,5,145,145,26,40,32,0,0,6,0,43,47,9,17,5,89,24,254,1,19,10,17,10,44,34,2,31,10,126,56,0,0,4,8,17,5,145,145,90,126,56,0,0,4,8,17,5,23,88,145,145,88,29,40,32,0,0,6,0,56,134,0,0,0,9,24,91,24,90,19,6,22,19,11,43,41,2,31,45,126,56,0,0,4,8,17,11,145,145,90,126,56,0,0,4,8,17,11,23,88,145,145,88,31,11,40,32,0,0,6,0,17,11,24,88,19,11,17,11,17,6,254,4,19,12,17,12,45,203,9,17,6,89,23,254,1,19,13,17,13,44,18,2,126,56,0,0,4,8,17,6,145,145,28,40,32,0,0,6,0,43,36,22,19,14,43,18,2,8,17,14,145,30,40,32,0,0,6,0,17,14,23,88,19,14,17,14,9,254,4,19,15,17,15,45,227,43,0,0,7,23,88,11,7,2,123,31,0,0,4,142,105,254,4,19,16,17,16,58,95,254,255,255,2,123,32,0,0,4,2,123,35,0,0,4,254,4,19,17,17,17,44,40,2,22,2,123,35,0,0,4,2,123,32,0,0,4,89,26,50,3,26,43,13,2,123,35,0,0,4,2,123,32,0,0,4,89,40,32,0,0,6,0,2,123,45,0,0,4,22,254,2,19,18,17,18,44,37,2,123,42,0,0,4,2,2,123,43,0,0,4,19,19,17,19,23,88,125,43,0,0,4,17,19,2,123,44,0,0,4,31,24,100,210,156,2,123,34,0,0,4,2,123,43,0,0,4,89,10,22,19,20,43,38,2,123,42,0,0,4,2,123,43,0,0,4,17,20,88,17,20,23,95,44,4,31,17,43,5,32,236,0,0,0,210,156,17,20,23,88,19,20,17,20,6,254,4,19,21,17,21,45,207,43,0,42,0,0,19,48,5,0,129,0,0,0,17,0,0,17,0,2,2,123,44,0,0,4,3,31,32,2,123,45,0,0,4,89,4,89,31,31,95,98,96,125,44,0,0,4,2,2,123,45,0,0,4,4,88,125,45,0,0,4,43,64,0,2,123,42,0,0,4,2,2,123,43,0,0,4,10,6,23,88,125,43,0,0,4,6,2,123,44,0,0,4,31,24,100,210,156,2,2,123,44,0,0,4,30,98,125,44,0,0,4,2,2,123,45,0,0,4,30,89,125,45,0,0,4,0,2,123,45,0,0,4,30,254,4,22,254,1,11,7,45,176,43,0,42,0,0,0,19,48,5,0,246,0,0,0,18,0,0,17,0,126,93,0,0,4,2,123,36,0,0,4,29,89,154,10,2,123,38,0,0,4,2,123,40,0,0,4,40,50,0,0,10,2,123,36,0,0,4,88,11,7,141,37,0,0,1,12,2,123,38,0,0,4,13,9,2,123,36,0,0,4,88,19,4,22,19,5,2,123,34,0,0,4,19,6,2,123,37,0,0,4,2,123,39,0,0,4,88,19,7,22,19,8,56,129,0,0,0,0,17,8,2,123,37,0,0,4,254,1,19,9,17,9,44,19,0,2,123,40,0,0,4,13,9,2,123,36,0,0,4,88,19,4,0,2,123,42,0,0,4,17,5,8,22,9,40,51,0,0,10,0,8,9,2,123,36,0,0,4,40,52,0,0,10,0,17,5,9,88,19,5,8,17,4,6,2,123,36,0,0,4,40,34,0,0,6,0,8,9,2,123,42,0,0,4,17,6,2,123,36,0,0,4,40,51,0,0,10,0,17,6,2,123,36,0,0,4,88,19,6,0,17,8,23,88,19,8,17,8,17,7,254,4,19,10,17,10,58,112,255,255,255,43,0,42,0,0,19,48,6,0,104,0,0,0,19,0,0,17,0,3,5,89,10,22,11,43,82,0,2,7,145,22,254,1,13,9,44,2,43,65,126,95,0,0,4,2,7,145,145,12,22,19,4,43,38,0,2,7,23,88,17,4,88,2,7,23,88,17,4,88,145,126,94,0,0,4,4,17,4,145,8,88,145,97,210,156,0,17,4,23,88,19,4,17,4,5,254,4,19,5,17,5,45,207,0,7,23,88,11,7,6,254,4,19,6,17,6,45,164,43,0,42,19,48,5,0,167,1,0,0,20,0,0,17,0,2,123,33,0,0,4,141,37,0,0,1,10,2,123,37,0,0,4,2,123,39,0,0,4,88,11,7,141,32,0,0,1,12,23,19,6,43,41,8,17,6,8,17,6,23,89,148,17,6,2,123,37,0,0,4,49,8,2,123,40,0,0,4,43,6,2,123,38,0,0,4,88,158,17,6,23,88,19,6,17,6,7,254,4,19,7,17,7,45,204,2,123,38,0,0,4,7,90,13,22,19,5,22,19,4,43,56,0,6,17,4,2,123,42,0,0,4,8,17,5,148,145,156,8,17,5,143,32,0,0,1,37,74,23,88,84,17,5,23,88,19,5,17,5,7,254,1,19,8,17,8,44,3,22,19,5,0,17,4,23,88,19,4,17,4,9,254,4,19,9,17,9,45,189,2,123,40,0,0,4,2,123,38,0,0,4,254,2,19,10,17,10,44,91,0,2,123,34,0,0,4,13,2,123,37,0,0,4,19,5,43,61,0,6,17,4,2,123,42,0,0,4,8,17,5,148,145,156,8,17,5,143,32,0,0,1,37,74,23,88,84,17,5,23,88,19,5,17,5,7,254,1,19,11,17,11,44,8,2,123,37,0,0,4,19,5,0,17,4,23,88,19,4,17,4,9,254,4,19,12,17,12,45,184,0,8,22,2,123,34,0,0,4,158,23,19,13,43,23,8,17,13,8,17,13,23,89,148,2,123,36,0,0,4,88,158,17,13,23,88,19,13,17,13,7,254,4,19,14,17,14,45,222,2,123,33,0,0,4,13,22,19,5,43,56,0,6,17,4,2,123,42,0,0,4,8,17,5,148,145,156,8,17,5,143,32,0,0,1,37,74,23,88,84,17,5,23,88,19,5,17,5,7,254,1,19,15,17,15,44,3,22,19,5,0,17,4,23,88,19,4,17,4,9,254,4,19,16,17,16,45,189,2,6,125,42,0,0,4,43,0,42,0,19,48,5,0,29,1,0,0,21,0,0,17,0,22,10,30,2,123,33,0,0,4,90,11,2,40,11,0,0,6,23,89,12,2,40,11,0,0,6,23,89,13,22,19,4,56,239,0,0,0,0,2,123,46,0,0,4,8,9,40,41,0,0,10,24,95,22,254,1,19,5,17,5,44,67,0,2,123,42,0,0,4,6,25,99,145,23,29,6,29,95,89,31,31,95,98,95,22,254,3,19,6,17,6,44,14,2,123,46,0,0,4,8,9,23,40,53,0,0,10,6,23,88,37,10,7,254,1,19,7,17,7,44,5,56,155,0,0,0,0,43,14,9,28,254,1,19,8,17,8,44,4,9,23,89,13,17,4,19,9,17,9,69,4,0,0,0,2,0,0,0,11,0,0,0,49,0,0,0,58,0,0,0,43,103,9,23,89,13,23,19,4,43,95,9,23,88,13,8,23,89,12,8,22,254,4,22,254,1,19,10,17,10,44,6,0,22,19,4,43,68,9,24,89,13,22,12,24,19,4,43,57,9,23,89,13,25,19,4,43,48,9,23,88,13,8,23,88,12,8,2,40,11,0,0,6,254,4,19,11,17,11,44,6,0,24,19,4,43,19,9,24,89,13,2,40,11,0,0,6,23,89,12,22,19,4,43,1,0,56,12,255,255,255,43,0,42,0,0,0,19,48,2,0,173,0,0,0,22,0,0,17,0,32,255,255,255,127,10,2,22,40,16,0,0,6,0,22,11,56,135,0,0,0,0,2,7,40,48,0,0,6,0,2,40,38,0,0,6,12,8,6,254,4,22,254,1,13,9,44,2,43,102,8,2,40,39,0,0,6,88,12,8,6,254,4,22,254,1,19,4,17,4,44,2,43,78,8,2,40,40,0,0,6,88,12,8,6,254,4,22,254,1,19,5,17,5,44,2,43,54,8,2,40,41,0,0,6,88,12,8,6,254,4,22,254,1,19,6,17,6,44,2,43,30,2,2,123,47,0,0,4,125,48,0,0,4,2,20,125,47,0,0,4,8,10,2,7,40,16,0,0,6,0,0,7,23,88,11,7,30,254,4,19,7,17,7,58,108,255,255,255,43,0,42,0,0,0,19,48,4,0,60,1,0,0,23,0,0,17,0,22,10,22,11,43,119,0,23,12,23,13,43,73,0,2,123,47,0,0,4,7,9,23,89,40,41,0,0,10,2,123,47,0,0,4,7,9,40,41,0,0,10,97,23,95,22,254,3,19,4,17,4,44,23,0,8,27,254,4,22,254,1,19,5,17,5,44,6,6,8,24,89,88,10,22,12,0,8,23,88,12,0,9,23,88,13,9,2,40,11,0,0,6,254,4,19,6,17,6,45,168,8,27,254,4,22,254,1,19,7,17,7,44,6,6,8,24,89,88,10,0,7,23,88,11,7,2,40,11,0,0,6,254,4,19,8,17,8,58,119,255,255,255,22,19,9,56,137,0,0,0,0,23,19,10,23,19,11,43,84,0,2,123,47,0,0,4,17,11,23,89,17,9,40,41,0,0,10,2,123,47,0,0,4,17,11,17,9,40,41,0,0,10,97,23,95,22,254,3,19,12,17,12,44,26,0,17,10,27,254,4,22,254,1,19,13,17,13,44,7,6,17,10,24,89,88,10,22,19,10,0,17,10,23,88,19,10,0,17,11,23,88,19,11,17,11,2,40,11,0,0,6,254,4,19,14,17,14,45,156,17,10,27,254,4,22,254,1,19,15,17,15,44,7,6,17,10,24,89,88,10,0,17,9,23,88,19,9,17,9,2,40,11,0,0,6,254,4,19,16,17,16,58,100,255,255,255,6,19,17,43,0,17,17,42,19,48,5,0,227,0,0,0,24,0,0,17,0,22,10,23,11,56,191,0,0,0,23,12,56,162,0,0,0,0,2,123,47,0,0,4,7,23,89,8,23,89,40,41,0,0,10,2,123,47,0,0,4,7,23,89,8,40,41,0,0,10,95,2,123,47,0,0,4,7,8,23,89,40,41,0,0,10,95,2,123,47,0,0,4,7,8,40,41,0,0,10,95,23,95,22,254,3,13,9,44,6,6,25,88,10,43,78,2,123,47,0,0,4,7,23,89,8,23,89,40,41,0,0,10,2,123,47,0,0,4,7,23,89,8,40,41,0,0,10,96,2,123,47,0,0,4,7,8,23,89,40,41,0,0,10,96,2,123,47,0,0,4,7,8,40,41,0,0,10,96,23,95,22,254,1,19,4,17,4,44,4,6,25,88,10,0,8,23,88,12,8,2,40,11,0,0,6,254,4,19,5,17,5,58,76,255,255,255,7,23,88,11,7,2,40,11,0,0,6,254,4,19,6,17,6,58,47,255,255,255,6,19,7,43,0,17,7,42,0,19,48,4,0,213,1,0,0,25,0,0,17,0,22,10,22,11,56,189,0,0,0,0,22,12,22,13,43,120,0,2,123,47,0,0,4,7,9,40,41,0,0,10,23,95,22,254,1,19,4,17,4,44,2,43,89,9,8,89,26,254,4,22,254,1,19,5,17,5,44,69,0,8,29,50,12,2,7,8,29,89,40,42,0,0,6,43,1,22,19,6,17,6,44,5,6,31,40,88,10,2,40,11,0,0,6,9,89,29,50,10,2,7,9,40,42,0,0,6,43,1,22,19,7,17,7,44,11,0,6,31,40,88,10,9,28,88,13,0,0,9,23,88,12,0,9,23,88,13,9,2,40,11,0,0,6,254,4,19,8,17,8,58,118,255,255,255,2,40,11,0,0,6,8,89,26,50,16,8,29,50,12,2,7,8,29,89,40,42,0,0,6,43,1,22,19,9,17,9,44,5,6,31,40,88,10,0,7,23,88,11,7,2,40,11,0,0,6,254,4,19,10,17,10,58,49,255,255,255,22,19,11,56,217,0,0,0,0,22,19,12,22,19,13,56,136,0,0,0,0,2,123,47,0,0,4,17,13,17,11,40,41,0,0,10,23,95,22,254,1,19,14,17,14,44,2,43,101,17,13,17,12,89,26,254,4,22,254,1,19,15,17,15,44,77,0,17,12,29,50,14,2,17,12,29,89,17,11,40,43,0,0,6,43,1,22,19,16,17,16,44,5,6,31,40,88,10,2,40,11,0,0,6,17,13,89,29,50,12,2,17,13,17,11,40,43,0,0,6,43,1,22,19,17,17,17,44,13,0,6,31,40,88,10,17,13,28,88,19,13,0,0,17,13,23,88,19,12,0,17,13,23,88,19,13,17,13,2,40,11,0,0,6,254,4,19,18,17,18,58,101,255,255,255,2,40,11,0,0,6,17,12,89,26,50,19,17,12,29,50,14,2,17,12,29,89,17,11,40,43,0,0,6,43,1,22,19,19,17,19,44,5,6,31,40,88,10,0,17,11,23,88,19,11,17,11,2,40,11,0,0,6,254,4,19,20,17,20,58,20,255,255,255,6,19,21,43,0,17,21,42,0,0,0,19,48,3,0,197,0,0,0,26,0,0,17,0,22,10,22,12,43,55,22,13,43,32,2,123,47,0,0,4,8,9,40,41,0,0,10,23,95,22,254,3,19,4,17,4,44,4,6,23,88,10,9,23,88,13,9,2,40,11,0,0,6,254,4,19,5,17,5,45,209,8,23,88,12,8,2,40,11,0,0,6,254,4,19,6,17,6,45,186,6,108,2,40,11,0,0,6,2,40,11,0,0,6,90,108,91,11,7,35,154,153,153,153,153,153,225,63,254,2,19,7,17,7,44,29,35,0,0,0,0,0,0,52,64,7,35,0,0,0,0,0,0,224,63,89,90,105,31,10,90,19,8,43,52,7,35,205,204,204,204,204,204,220,63,254,4,19,9,17,9,44,29,35,0,0,0,0,0,0,52,64,35,0,0,0,0,0,0,224,63,7,89,90,105,31,10,90,19,8,43,5,22,19,8,43,0,17,8,42,0,0,0,19,48,5,0,122,0,0,0,6,0,0,17,0,2,123,47,0,0,4,3,4,40,41,0,0,10,2,123,47,0,0,4,3,4,23,88,40,41,0,0,10,102,95,2,123,47,0,0,4,3,4,24,88,40,41,0,0,10,95,2,123,47,0,0,4,3,4,25,88,40,41,0,0,10,95,2,123,47,0,0,4,3,4,26,88,40,41,0,0,10,95,2,123,47,0,0,4,3,4,27,88,40,41,0,0,10,102,95,2,123,47,0,0,4,3,4,28,88,40,41,0,0,10,95,23,95,22,254,3,10,43,0,6,42,0,0,19,48,4,0,122,0,0,0,6,0,0,17,0,2,123,47,0,0,4,3,4,40,41,0,0,10,2,123,47,0,0,4,3,23,88,4,40,41,0,0,10,102,95,2,123,47,0,0,4,3,24,88,4,40,41,0,0,10,95,2,123,47,0,0,4,3,25,88,4,40,41,0,0,10,95,2,123,47,0,0,4,3,26,88,4,40,41,0,0,10,95,2,123,47,0,0,4,3,27,88,4,40,41,0,0,10,102,95,2,123,47,0,0,4,3,28,88,4,40,41,0,0,10,95,23,95,22,254,3,10,43,0,6,42,0,0,19,48,5,0,200,1,0,0,27,0,0,17,0,2,40,9,0,0,6,29,254,4,22,254,1,13,9,57,189,0,0,0,0,2,40,11,0,0,6,31,11,89,19,4,126,99,0,0,4,2,40,9,0,0,6,29,89,148,19,5,23,10,22,19,6,43,62,22,19,7,43,40,0,2,123,48,0,0,4,17,6,17,4,17,7,88,17,5,6,95,45,3,28,43,1,29,40,53,0,0,10,6,23,98,10,0,17,7,23,88,19,7,17,7,25,254,4,19,8,17,8,45,205,17,6,23,88,19,6,17,6,28,254,4,19,9,17,9,45,183,23,10,22,19,10,43,62,22,19,11,43,40,0,2,123,48,0,0,4,17,4,17,11,88,17,10,17,5,6,95,45,3,28,43,1,29,40,53,0,0,10,6,23,98,10,0,17,11,23,88,19,11,17,11,25,254,4,19,12,17,12,45,205,17,10,23,88,19,10,17,10,28,254,4,19,13,17,13,45,183,0,22,11,2,123,51,0,0,4,19,14,17,14,69,4,0,0,0,2,0,0,0,16,0,0,0,6,0,0,0,11,0,0,0,43,14,30,11,43,10,31,24,11,43,5,31,16,11,43,0,126,96,0,0,4,7,2,40,15,0,0,6,88,148,12,23,10,22,19,15,56,155,0,0,0,0,8,6,95,45,3,28,43,1,29,19,16,6,23,98,10,2,123,48,0,0,4,126,97,0,0,4,17,15,22,40,54,0,0,10,126,97,0,0,4,17,15,23,40,54,0,0,10,17,16,210,40,53,0,0,10,126,98,0,0,4,17,15,22,40,54,0,0,10,19,17,17,17,22,254,4,19,19,17,19,44,11,17,17,2,40,11,0,0,6,88,19,17,126,98,0,0,4,17,15,23,40,54,0,0,10,19,18,17,18,22,254,4,19,20,17,20,44,11,17,18,2,40,11,0,0,6,88,19,18,2,123,48,0,0,4,17,17,17,18,17,16,210,40,53,0,0,10,0,17,15,23,88,19,15,17,15,31,15,254,4,19,21,17,21,58,86,255,255,255,43,0,42,19,48,2,0,126,0,0,0,28,0,0,17,0,3,10,6,23,89,69,4,0,0,0,2,0,0,0,35,0,0,0,86,0,0,0,68,0,0,0,43,84,2,40,9,0,0,6,31,10,50,18,2,40,9,0,0,6,31,27,50,4,31,14,43,2,31,12,43,2,31,10,11,43,62,2,40,9,0,0,6,31,10,50,18,2,40,9,0,0,6,31,27,50,4,31,13,43,2,31,11,43,2,31,9,11,43,29,2,40,9,0,0,6,31,10,50,4,31,16,43,1,30,11,43,11,114,89,10,0,112,115,33,0,0,10,122,7,42,0,0,19,48,4,0,192,0,0,0,7,0,0,17,0,2,40,9,0,0,6,23,89,26,90,2,123,51,0,0,4,88,10,2,126,61,0,0,4,6,22,40,41,0,0,10,125,37,0,0,4,2,126,61,0,0,4,6,23,40,41,0,0,10,125,38,0,0,4,2,126,61,0,0,4,6,24,40,41,0,0,10,125,39,0,0,4,2,126,61,0,0,4,6,25,40,41,0,0,10,125,40,0,0,4,2,2,123,37,0,0,4,2,123,38,0,0,4,90,2,123,39,0,0,4,2,123,40,0,0,4,90,88,125,34,0,0,4,2,30,2,123,34,0,0,4,90,125,35,0,0,4,2,126,55,0,0,4,2,40,9,0,0,6,148,125,33,0,0,4,2,2,123,33,0,0,4,2,123,34,0,0,4,89,2,123,37,0,0,4,2,123,39,0,0,4,88,91,125,36,0,0,4,43,0,42,19,48,8,0,217,2,0,0,29,0,0,17,0,2,2,40,11,0,0,6,27,88,2,40,11,0,0,6,27,88,115,55,0,0,10,125,46,0,0,4,22,11,43,46,22,12,43,29,2,123,46,0,0,4,7,8,126,110,0,0,4,7,8,40,41,0,0,10,40,53,0,0,10,8,23,88,12,8,31,9,254,4,13,9,45,218,7,23,88,11,7,31,9,254,4,19,4,17,4,45,199,2,40,11,0,0,6,30,89,10,22,19,5,43,59,22,19,6,43,37,2,123,46,0,0,4,17,5,6,17,6,88,126,111,0,0,4,17,5,17,6,40,41,0,0,10,40,53,0,0,10,17,6,23,88,19,6,17,6,30,254,4,19,7,17,7,45,208,17,5,23,88,19,5,17,5,31,9,254,4,19,8,17,8,45,185,22,19,9,43,60,22,19,10,43,37,2,123,46,0,0,4,6,17,9,88,17,10,126,112,0,0,4,17,9,17,10,40,41,0,0,10,40,53,0,0,10,17,10,23,88,19,10,17,10,31,9,254,4,19,11,17,11,45,207,17,9,23,88,19,9,17,9,30,254,4,19,12,17,12,45,185,30,19,13,43,49,2,123,46,0,0,4,17,13,28,2,123,46,0,0,4,28,17,13,17,13,23,95,44,3,28,43,1,29,37,19,14,40,53,0,0,10,17,14,40,53,0,0,10,17,13,23,88,19,13,17,13,2,40,11,0,0,6,30,89,254,4,19,15,17,15,45,189,2,40,9,0,0,6,23,254,2,19,16,17,16,57,229,0,0,0,0,126,54,0,0,4,2,40,9,0,0,6,154,19,17,17,17,142,105,19,18,22,19,19,56,184,0,0,0,22,19,20,56,155,0,0,0,0,17,20,45,4,17,19,44,29,17,20,17,18,23,89,51,4,17,19,44,17,17,20,45,10,17,19,17,18,23,89,254,1,43,1,22,43,1,23,19,23,17,23,44,2,43,102,17,17,17,19,145,19,21,17,17,17,20,145,19,22,31,254,19,24,43,70,31,254,19,25,43,47,0,2,123,46,0,0,4,17,21,17,24,88,17,22,17,25,88,126,113,0,0,4,17,24,24,88,17,25,24,88,40,41,0,0,10,40,53,0,0,10,0,17,25,23,88,19,25,17,25,25,254,4,19,26,17,26,45,198,17,24,23,88,19,24,17,24,25,254,4,19,27,17,27,45,175,0,17,20,23,88,19,20,17,20,17,18,254,4,19,28,17,28,58,86,255,255,255,17,19,23,88,19,19,17,19,17,18,254,4,19,29,17,29,58,57,255,255,255,0,2,40,9,0,0,6,29,254,4,22,254,1,19,30,17,30,57,136,0,0,0,0,2,40,11,0,0,6,31,11,89,10,22,19,31,43,46,22,19,32,43,24,2,123,46,0,0,4,17,31,6,17,32,88,24,40,53,0,0,10,17,32,23,88,19,32,17,32,25,254,4,19,33,17,33,45,221,17,31,23,88,19,31,17,31,28,254,4,19,34,17,34,45,199,22,19,35,43,46,22,19,36,43,24,2,123,46,0,0,4,6,17,36,88,17,35,24,40,53,0,0,10,17,36,23,88,19,36,17,36,25,254,4,19,37,17,37,45,221,17,35,23,88,19,35,17,35,28,254,4,19,38,17,38,45,199,0,43,0,42,0,0,0,19,48,2,0,140,0,0,0,7,0,0,17,0,2,2,123,46,0,0,4,111,56,0,0,10,116,4,0,0,27,125,47,0,0,4,3,10,6,69,8,0,0,0,2,0,0,0,11,0,0,0,20,0,0,0,29,0,0,0,38,0,0,0,47,0,0,0,56,0,0,0,65,0,0,0,43,72,2,40,49,0,0,6,0,43,63,2,40,50,0,0,6,0,43,54,2,40,51,0,0,6,0,43,45,2,40,52,0,0,6,0,43,36,2,40,53,0,0,6,0,43,27,2,40,54,0,0,6,0,43,18,2,40,55,0,0,6,0,43,9,2,40,56,0,0,6,0,43,0,43,0,42,19,48,4,0,145,0,0,0,30,0,0,17,0,22,10,43,119,22,11,43,96,0,2,123,47,0,0,4,6,7,40,41,0,0,10,24,95,22,254,1,12,8,44,19,2,123,47,0,0,4,6,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,23,88,40,41,0,0,10,24,95,22,254,1,13,9,44,23,2,123,47,0,0,4,6,23,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,0,7,24,88,11,7,2,40,11,0,0,6,254,4,19,4,17,4,45,145,6,24,88,10,6,2,40,11,0,0,6,254,4,19,5,17,5,58,119,255,255,255,43,0,42,0,0,0,19,48,3,0,89,0,0,0,31,0,0,17,0,22,10,43,66,22,11,43,45,2,123,47,0,0,4,6,7,40,41,0,0,10,24,95,22,254,1,12,8,44,19,2,123,47,0,0,4,6,7,40,57,0,0,10,37,71,23,97,210,82,7,23,88,11,7,2,40,11,0,0,6,254,4,13,9,45,198,6,24,88,10,6,2,40,11,0,0,6,254,4,19,4,17,4,45,175,43,0,42,0,0,0,19,48,3,0,89,0,0,0,31,0,0,17,0,22,10,43,66,22,11,43,45,2,123,47,0,0,4,6,7,40,41,0,0,10,24,95,22,254,1,12,8,44,19,2,123,47,0,0,4,6,7,40,57,0,0,10,37,71,23,97,210,82,7,25,88,11,7,2,40,11,0,0,6,254,4,13,9,45,198,6,23,88,10,6,2,40,11,0,0,6,254,4,19,4,17,4,45,175,43,0,42,0,0,0,19,48,4,0,205,0,0,0,32,0,0,17,0,22,10,56,176,0,0,0,22,11,56,147,0,0,0,0,2,123,47,0,0,4,6,7,40,41,0,0,10,24,95,22,254,1,12,8,44,19,2,123,47,0,0,4,6,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,24,88,40,41,0,0,10,24,95,22,254,1,13,9,44,23,2,123,47,0,0,4,6,23,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,4,17,4,44,23,2,123,47,0,0,4,6,24,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,0,7,25,88,11,7,2,40,11,0,0,6,254,4,19,5,17,5,58,91,255,255,255,6,25,88,10,6,2,40,11,0,0,6,254,4,19,6,17,6,58,62,255,255,255,43,0,42,0,0,0,19,48,4,0,140,2,0,0,33,0,0,17,0,22,10,56,111,2,0,0,22,11,56,82,2,0,0,0,2,123,47,0,0,4,6,7,40,41,0,0,10,24,95,22,254,1,12,8,44,19,2,123,47,0,0,4,6,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,7,23,88,40,41,0,0,10,24,95,22,254,1,13,9,44,21,2,123,47,0,0,4,6,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,7,24,88,40,41,0,0,10,24,95,22,254,1,19,4,17,4,44,21,2,123,47,0,0,4,6,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,40,41,0,0,10,24,95,22,254,1,19,5,17,5,44,21,2,123,47,0,0,4,6,23,88,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,6,17,6,44,23,2,123,47,0,0,4,6,23,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,7,17,7,44,23,2,123,47,0,0,4,6,23,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,8,17,8,44,23,2,123,47,0,0,4,6,24,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,9,17,9,44,23,2,123,47,0,0,4,6,24,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,10,17,10,44,23,2,123,47,0,0,4,6,24,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,11,17,11,44,23,2,123,47,0,0,4,6,25,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,12,17,12,44,23,2,123,47,0,0,4,6,25,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,13,17,13,44,23,2,123,47,0,0,4,6,25,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,0,7,28,88,11,7,2,40,11,0,0,6,254,4,19,14,17,14,58,156,253,255,255,6,26,88,10,6,2,40,11,0,0,6,254,4,19,15,17,15,58,127,253,255,255,43,0,42,19,48,4,0,146,1,0,0,34,0,0,17,0,22,10,56,117,1,0,0,22,11,56,88,1,0,0,0,22,12,43,49,2,123,47,0,0,4,6,7,8,88,40,41,0,0,10,24,95,22,254,1,13,9,44,21,2,123,47,0,0,4,6,7,8,88,40,57,0,0,10,37,71,23,97,210,82,8,23,88,12,8,28,254,4,19,4,17,4,45,197,23,19,5,43,55,2,123,47,0,0,4,6,17,5,88,7,40,41,0,0,10,24,95,22,254,1,19,6,17,6,44,22,2,123,47,0,0,4,6,17,5,88,7,40,57,0,0,10,37,71,23,97,210,82,17,5,23,88,19,5,17,5,28,254,4,19,7,17,7,45,190,2,123,47,0,0,4,6,24,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,8,17,8,44,23,2,123,47,0,0,4,6,24,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,9,17,9,44,23,2,123,47,0,0,4,6,25,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,10,17,10,44,23,2,123,47,0,0,4,6,25,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,11,17,11,44,23,2,123,47,0,0,4,6,26,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,0,7,28,88,11,7,2,40,11,0,0,6,254,4,19,12,17,12,58,150,254,255,255,6,28,88,10,6,2,40,11,0,0,6,254,4,19,13,17,13,58,121,254,255,255,43,0,42,0,0,19,48,4,0,42,3,0,0,35,0,0,17,0,22,10,56,13,3,0,0,22,11,56,240,2,0,0,0,22,12,43,49,2,123,47,0,0,4,6,7,8,88,40,41,0,0,10,24,95,22,254,1,13,9,44,21,2,123,47,0,0,4,6,7,8,88,40,57,0,0,10,37,71,23,97,210,82,8,23,88,12,8,28,254,4,19,4,17,4,45,197,23,19,5,43,55,2,123,47,0,0,4,6,17,5,88,7,40,41,0,0,10,24,95,22,254,1,19,6,17,6,44,22,2,123,47,0,0,4,6,17,5,88,7,40,57,0,0,10,37,71,23,97,210,82,17,5,23,88,19,5,17,5,28,254,4,19,7,17,7,45,190,2,123,47,0,0,4,6,23,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,8,17,8,44,23,2,123,47,0,0,4,6,23,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,9,17,9,44,23,2,123,47,0,0,4,6,23,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,10,17,10,44,23,2,123,47,0,0,4,6,24,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,11,17,11,44,23,2,123,47,0,0,4,6,24,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,12,17,12,44,23,2,123,47,0,0,4,6,24,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,13,17,13,44,23,2,123,47,0,0,4,6,25,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,14,17,14,44,23,2,123,47,0,0,4,6,25,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,15,17,15,44,23,2,123,47,0,0,4,6,26,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,16,17,16,44,23,2,123,47,0,0,4,6,26,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,17,17,17,44,23,2,123,47,0,0,4,6,26,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,27,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,18,17,18,44,23,2,123,47,0,0,4,6,27,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,27,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,19,17,19,44,23,2,123,47,0,0,4,6,27,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,0,7,28,88,11,7,2,40,11,0,0,6,254,4,19,20,17,20,58,254,252,255,255,6,28,88,10,6,2,40,11,0,0,6,254,4,19,21,17,21,58,225,252,255,255,43,0,42,0,0,19,48,4,0,186,3,0,0,36,0,0,17,0,22,10,56,157,3,0,0,22,11,56,128,3,0,0,0,2,123,47,0,0,4,6,7,40,41,0,0,10,24,95,22,254,1,12,8,44,19,2,123,47,0,0,4,6,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,7,24,88,40,41,0,0,10,24,95,22,254,1,13,9,44,21,2,123,47,0,0,4,6,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,7,26,88,40,41,0,0,10,24,95,22,254,1,19,4,17,4,44,21,2,123,47,0,0,4,6,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,5,17,5,44,23,2,123,47,0,0,4,6,23,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,6,17,6,44,23,2,123,47,0,0,4,6,23,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,23,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,7,17,7,44,23,2,123,47,0,0,4,6,23,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,40,41,0,0,10,24,95,22,254,1,19,8,17,8,44,21,2,123,47,0,0,4,6,24,88,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,26,88,40,41,0,0,10,24,95,22,254,1,19,9,17,9,44,23,2,123,47,0,0,4,6,24,88,7,26,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,24,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,10,17,10,44,23,2,123,47,0,0,4,6,24,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,11,17,11,44,23,2,123,47,0,0,4,6,25,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,12,17,12,44,23,2,123,47,0,0,4,6,25,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,25,88,7,27,88,40,41,0,0,10,24,95,22,254,1,19,13,17,13,44,23,2,123,47,0,0,4,6,25,88,7,27,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,40,41,0,0,10,24,95,22,254,1,19,14,17,14,44,21,2,123,47,0,0,4,6,26,88,7,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,15,17,15,44,23,2,123,47,0,0,4,6,26,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,26,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,16,17,16,44,23,2,123,47,0,0,4,6,26,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,27,88,7,23,88,40,41,0,0,10,24,95,22,254,1,19,17,17,17,44,23,2,123,47,0,0,4,6,27,88,7,23,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,27,88,7,24,88,40,41,0,0,10,24,95,22,254,1,19,18,17,18,44,23,2,123,47,0,0,4,6,27,88,7,24,88,40,57,0,0,10,37,71,23,97,210,82,2,123,47,0,0,4,6,27,88,7,25,88,40,41,0,0,10,24,95,22,254,1,19,19,17,19,44,23,2,123,47,0,0,4,6,27,88,7,25,88,40,57,0,0,10,37,71,23,97,210,82,0,7,28,88,11,7,2,40,11,0,0,6,254,4,19,20,17,20,58,110,252,255,255,6,28,88,10,6,2,40,11,0,0,6,254,4,19,21,17,21,58,81,252,255,255,43,0,42,0,0,19,48,4,0,189,0,0,0,37,0,0,17,0,31,25,141,37,0,0,1,10,6,22,22,156,6,23,22,156,6,24,22,156,6,25,31,13,156,6,26,31,73,156,6,27,31,72,156,6,28,31,68,156,6,29,31,82,156,2,40,13,0,0,6,11,6,30,7,31,24,99,210,156,6,31,9,7,31,16,99,210,156,6,31,10,7,30,99,210,156,6,31,11,7,210,156,6,31,12,7,31,24,99,210,156,6,31,13,7,31,16,99,210,156,6,31,14,7,30,99,210,156,6,31,15,7,210,156,6,31,16,23,156,6,31,17,22,156,6,31,18,22,156,6,31,19,22,156,6,31,20,22,156,6,26,31,17,40,2,0,0,6,12,6,31,21,8,31,24,100,210,156,6,31,22,8,31,16,100,210,156,6,31,23,8,30,100,210,156,6,31,24,8,210,156,6,13,43,0,9,42,0,0,0,19,48,4,0,205,0,0,0,38,0,0,17,0,2,40,63,0,0,6,10,6,142,105,31,12,89,11,6,22,7,31,24,99,210,156,6,23,7,31,16,99,210,156,6,24,7,30,99,210,156,6,25,7,210,156,6,26,31,73,156,6,27,31,68,156,6,28,31,65,156,6,29,31,84,156,2,22,2,142,105,40,1,0,0,6,12,6,142,105,30,89,13,6,9,37,23,88,13,8,31,24,100,210,156,6,9,37,23,88,13,8,31,16,100,210,156,6,9,37,23,88,13,8,30,100,210,156,6,9,8,210,156,6,26,6,142,105,30,89,40,2,0,0,6,19,4,6,142,105,26,89,19,5,6,17,5,37,23,88,19,5,17,4,31,24,100,210,156,6,17,5,37,23,88,19,5,17,4,31,16,100,210,156,6,17,5,37,23,88,19,5,17,4,30,100,210,156,6,17,5,37,23,88,19,5,17,4,210,156,6,19,6,43,0,17,6,42,0,0,0,19,48,6,0,172,1,0,0,39,0,0,17,0,2,40,13,0,0,6,10,6,29,88,30,91,23,88,11,7,6,90,12,8,141,37,0,0,1,13,23,19,4,43,15,9,17,4,32,255,0,0,0,156,17,4,23,88,19,4,17,4,7,254,4,19,6,17,6,45,230,2,40,21,0,0,6,7,90,19,5,43,11,9,17,4,24,156,17,4,7,88,19,4,17,4,17,5,254,4,19,7,17,7,45,233,22,19,8,56,235,0,0,0,0,17,4,7,88,19,5,17,4,23,88,19,9,43,15,9,17,9,32,255,0,0,0,156,17,9,23,88,19,9,17,9,17,5,254,4,19,10,17,10,45,229,22,19,11,43,118,0,2,40,7,0,0,6,17,8,17,11,40,49,0,0,10,22,254,1,19,14,17,14,44,2,43,85,2,40,19,0,0,6,17,11,90,2,40,21,0,0,6,88,19,12,17,12,2,40,19,0,0,6,88,19,13,43,41,0,9,17,4,23,17,12,30,91,88,88,143,37,0,0,1,37,71,23,29,17,12,29,95,89,31,31,95,98,102,210,95,210,82,0,17,12,23,88,19,12,17,12,17,13,254,4,19,15,17,15,45,203,0,17,11,23,88,19,11,17,11,2,40,11,0,0,6,254,4,19,16,17,16,58,119,255,255,255,17,4,2,40,19,0,0,6,7,90,88,19,5,17,4,7,88,19,4,43,11,9,17,4,24,156,17,4,7,88,19,4,17,4,17,5,254,4,19,17,17,17,45,233,0,17,8,23,88,19,8,17,8,2,40,11,0,0,6,254,4,19,18,17,18,58,2,255,255,255,17,4,7,88,19,5,17,4,23,88,19,4,43,15,9,17,4,32,255,0,0,0,156,17,4,23,88,19,4,17,4,17,5,254,4,19,19,17,19,45,229,43,11,9,17,4,24,156,17,4,7,88,19,4,17,4,8,254,4,19,20,17,20,45,234,9,19,21,43,0,17,21,42,118,2,23,125,51,0,0,4,2,24,125,52,0,0,4,2,30,125,53,0,0,4,2,40,58,0,0,10,0,42,186,30,141,37,0,0,1,37,208,150,0,0,4,40,15,0,0,10,128,49,0,0,4,31,12,141,37,0,0,1,37,208,181,0,0,4,40,15,0,0,10,128,50,0,0,4,42,0,0,0,19,48,7,0,84,8,0,0,0,0,0,0,31,41,141,2,0,0,27,37,24,24,141,37,0,0,1,37,22,28,156,37,23,31,18,156,162,37,25,24,141,37,0,0,1,37,22,28,156,37,23,31,22,156,162,37,26,24,141,37,0,0,1,37,22,28,156,37,23,31,26,156,162,37,27,24,141,37,0,0,1,37,22,28,156,37,23,31,30,156,162,37,28,24,141,37,0,0,1,37,22,28,156,37,23,31,34,156,162,37,29,25,141,37,0,0,1,37,208,177,0,0,4,40,15,0,0,10,162,37,30,25,141,37,0,0,1,37,208,184,0,0,4,40,15,0,0,10,162,37,31,9,25,141,37,0,0,1,37,208,134,0,0,4,40,15,0,0,10,162,37,31,10,25,141,37,0,0,1,37,208,114,0,0,4,40,15,0,0,10,162,37,31,11,25,141,37,0,0,1,37,208,148,0,0,4,40,15,0,0,10,162,37,31,12,25,141,37,0,0,1,37,208,187,0,0,4,40,15,0,0,10,162,37,31,13,25,141,37,0,0,1,37,208,165,0,0,4,40,15,0,0,10,162,37,31,14,26,141,37,0,0,1,37,208,156,0,0,4,40,15,0,0,10,162,37,31,15,26,141,37,0,0,1,37,208,132,0,0,4,40,15,0,0,10,162,37,31,16,26,141,37,0,0,1,37,208,151,0,0,4,40,15,0,0,10,162,37,31,17,26,141,37,0,0,1,37,208,186,0,0,4,40,15,0,0,10,162,37,31,18,26,141,37,0,0,1,37,208,168,0,0,4,40,15,0,0,10,162,37,31,19,26,141,37,0,0,1,37,208,125,0,0,4,40,15,0,0,10,162,37,31,20,26,141,37,0,0,1,37,208,117,0,0,4,40,15,0,0,10,162,37,31,21,27,141,37,0,0,1,37,208,153,0,0,4,40,15,0,0,10,162,37,31,22,27,141,37,0,0,1,37,208,183,0,0,4,40,15,0,0,10,162,37,31,23,27,141,37,0,0,1,37,208,179,0,0,4,40,15,0,0,10,162,37,31,24,27,141,37,0,0,1,37,208,120,0,0,4,40,15,0,0,10,162,37,31,25,27,141,37,0,0,1,37,208,192,0,0,4,40,15,0,0,10,162,37,31,26,27,141,37,0,0,1,37,208,122,0,0,4,40,15,0,0,10,162,37,31,27,27,141,37,0,0,1,37,208,178,0,0,4,40,15,0,0,10,162,37,31,28,28,141,37,0,0,1,37,208,163,0,0,4,40,15,0,0,10,162,37,31,29,28,141,37,0,0,1,37,208,194,0,0,4,40,15,0,0,10,162,37,31,30,28,141,37,0,0,1,37,208,170,0,0,4,40,15,0,0,10,162,37,31,31,28,141,37,0,0,1,37,208,133,0,0,4,40,15,0,0,10,162,37,31,32,28,141,37,0,0,1,37,208,169,0,0,4,40,15,0,0,10,162,37,31,33,28,141,37,0,0,1,37,208,193,0,0,4,40,15,0,0,10,162,37,31,34,28,141,37,0,0,1,37,208,115,0,0,4,40,15,0,0,10,162,37,31,35,29,141,37,0,0,1,37,208,164,0,0,4,40,15,0,0,10,162,37,31,36,29,141,37,0,0,1,37,208,175,0,0,4,40,15,0,0,10,162,37,31,37,29,141,37,0,0,1,37,208,139,0,0,4,40,15,0,0,10,162,37,31,38,29,141,37,0,0,1,37,208,136,0,0,4,40,15,0,0,10,162,37,31,39,29,141,37,0,0,1,37,208,130,0,0,4,40,15,0,0,10,162,37,31,40,29,141,37,0,0,1,37,208,123,0,0,4,40,15,0,0,10,162,128,54,0,0,4,31,41,141,32,0,0,1,37,208,147,0,0,4,40,15,0,0,10,128,55,0,0,4,32,0,1,0,0,141,37,0,0,1,37,208,189,0,0,4,40,15,0,0,10,128,56,0,0,4,32,160,0,0,0,26,115,55,0,0,10,37,208,143,0,0,4,40,15,0,0,10,128,61,0,0,4,29,141,37,0,0,1,37,208,176,0,0,4,40,15,0,0,10,128,62,0,0,4,31,10,141,37,0,0,1,37,208,144,0,0,4,40,15,0,0,10,128,63,0,0,4,31,13,141,37,0,0,1,37,208,180,0,0,4,40,15,0,0,10,128,64,0,0,4,31,15,141,37,0,0,1,37,208,159,0,0,4,40,15,0,0,10,128,65,0,0,4,31,16,141,37,0,0,1,37,208,140,0,0,4,40,15,0,0,10,128,66,0,0,4,31,17,141,37,0,0,1,37,208,172,0,0,4,40,15,0,0,10,128,67,0,0,4,31,18,141,37,0,0,1,37,208,118,0,0,4,40,15,0,0,10,128,68,0,0,4,31,20,141,37,0,0,1,37,208,157,0,0,4,40,15,0,0,10,128,69,0,0,4,31,22,141,37,0,0,1,37,208,155,0,0,4,40,15,0,0,10,128,70,0,0,4,31,24,141,37,0,0,1,37,208,191,0,0,4,40,15,0,0,10,128,71,0,0,4,31,26,141,37,0,0,1,37,208,152,0,0,4,40,15,0,0,10,128,72,0,0,4,31,28,141,37,0,0,1,37,208,119,0,0,4,40,15,0,0,10,128,73,0,0,4,31,30,141,37,0,0,1,37,208,146,0,0,4,40,15,0,0,10,128,74,0,0,4,31,32,141,37,0,0,1,37,208,149,0,0,4,40,15,0,0,10,128,75,0,0,4,31,34,141,37,0,0,1,37,208,171,0,0,4,40,15,0,0,10,128,76,0,0,4,31,36,141,37,0,0,1,37,208,182,0,0,4,40,15,0,0,10,128,77,0,0,4,31,40,141,37,0,0,1,37,208,121,0,0,4,40,15,0,0,10,128,78,0,0,4,31,42,141,37,0,0,1,37,208,116,0,0,4,40,15,0,0,10,128,79,0,0,4,31,44,141,37,0,0,1,37,208,188,0,0,4,40,15,0,0,10,128,80,0,0,4,31,46,141,37,0,0,1,37,208,128,0,0,4,40,15,0,0,10,128,81,0,0,4,31,48,141,37,0,0,1,37,208,185,0,0,4,40,15,0,0,10,128,82,0,0,4,31,50,141,37,0,0,1,37,208,161,0,0,4,40,15,0,0,10,128,83,0,0,4,31,52,141,37,0,0,1,37,208,154,0,0,4,40,15,0,0,10,128,84,0,0,4,31,54,141,37,0,0,1,37,208,127,0,0,4,40,15,0,0,10,128,85,0,0,4,31,56,141,37,0,0,1,37,208,190,0,0,4,40,15,0,0,10,128,86,0,0,4,31,58,141,37,0,0,1,37,208,124,0,0,4,40,15,0,0,10,128,87,0,0,4,31,60,141,37,0,0,1,37,208,131,0,0,4,40,15,0,0,10,128,88,0,0,4,31,62,141,37,0,0,1,37,208,174,0,0,4,40,15,0,0,10,128,89,0,0,4,31,64,141,37,0,0,1,37,208,167,0,0,4,40,15,0,0,10,128,90,0,0,4,31,66,141,37,0,0,1,37,208,126,0,0,4,40,15,0,0,10,128,91,0,0,4,31,68,141,37,0,0,1,37,208,162,0,0,4,40,15,0,0,10,128,92,0,0,4,31,62,141,2,0,0,27,37,22,126,62,0,0,4,162,37,25,126,63,0,0,4,162,37,28,126,64,0,0,4,162,37,30,126,65,0,0,4,162,37,31,9,126,66,0,0,4,162,37,31,10,126,67,0,0,4,162,37,31,11,126,68,0,0,4,162,37,31,13,126,69,0,0,4,162,37,31,15,126,70,0,0,4,162,37,31,17,126,71,0,0,4,162,37,31,19,126,72,0,0,4,162,37,31,21,126,73,0,0,4,162,37,31,23,126,74,0,0,4,162,37,31,25,126,75,0,0,4,162,37,31,27,126,76,0,0,4,162,37,31,29,126,77,0,0,4,162,37,31,33,126,78,0,0,4,162,37,31,35,126,79,0,0,4,162,37,31,37,126,80,0,0,4,162,37,31,39,126,81,0,0,4,162,37,31,41,126,82,0,0,4,162,37,31,43,126,83,0,0,4,162,37,31,45,126,84,0,0,4,162,37,31,47,126,85,0,0,4,162,37,31,49,126,86,0,0,4,162,37,31,51,126,87,0,0,4,162,37,31,53,126,88,0,0,4,162,37,31,55,126,89,0,0,4,162,37,31,57,126,90,0,0,4,162,37,31,59,126,91,0,0,4,162,37,31,61,126,92,0,0,4,162,128,93,0,0,4,32,255,1,0,0,141,37,0,0,1,37,208,173,0,0,4,40,15,0,0,10,128,94,0,0,4,32,0,1,0,0,141,37,0,0,1,37,208,166,0,0,4,40,15,0,0,10,128,95,0,0,4,31,32,141,32,0,0,1,37,208,145,0,0,4,40,15,0,0,10,128,96,0,0,4,31,15,24,115,59,0,0,10,37,208,129,0,0,4,40,15,0,0,10,128,97,0,0,4,31,15,24,115,59,0,0,10,37,208,141,0,0,4,40,15,0,0,10,128,98,0,0,4,31,34,141,32,0,0,1,37,208,142,0,0,4,40,15,0,0,10,128,99,0,0,4,31,9,31,9,115,55,0,0,10,37,208,138,0,0,4,40,15,0,0,10,128,110,0,0,4,31,9,30,115,55,0,0,10,37,208,160,0,0,4,40,15,0,0,10,128,111,0,0,4,30,31,9,115,55,0,0,10,37,208,158,0,0,4,40,15,0,0,10,128,112,0,0,4,27,27,115,55,0,0,10,37,208,135,0,0,4,40,15,0,0,10,128,113,0,0,4,42,19,48,4,0,110,0,0,0,40,0,0,17,0,2,142,105,10,115,60,0,0,10,11,7,23,23,115,61,0,0,10,12,8,2,22,6,111,62,0,0,10,0,8,111,63,0,0,10,0,7,111,64,0,0,10,105,13,9,31,18,88,141,37,0,0,1,19,4,17,4,30,31,120,156,17,4,31,9,32,156,0,0,0,156,7,22,106,22,111,65,0,0,10,38,7,17,4,31,10,9,111,66,0,0,10,38,7,111,63,0,0,10,0,17,4,19,5,43,0,17,5,42,0,0,19,48,2,0,46,0,0,0,41,0,0,17,2,44,41,32,197,157,28,129,10,22,11,43,20,2,7,111,20,0,0,10,6,97,32,147,1,0,1,90,10,7,23,88,11,7,2,111,19,0,0,10,47,2,43,225,6,42,0,0,66,83,74,66,1,0,1,0,0,0,0,0,12,0,0,0,118,52,46,48,46,51,48,51,49,57,0,0,0,0,5,0,108,0,0,0,204,21,0,0,35,126,0,0,56,22,0,0,180,32,0,0,35,83,116,114,105,110,103,115,0,0,0,0,236,54,0,0,132,10,0,0,35,85,83,0,112,65,0,0,16,0,0,0,35,71,85,73,68,0,0,0,128,65,0,0,20,8,0,0,35,66,108,111,98,0,0,0,0,0,0,0,2,0,0,1,87,157,162,41,9,2,0,0,0,250,1,51,0,22,0,0,1,0,0,0,46,0,0,0,56,0,0,0,194,0,0,0,64,0,0,0,37,0,0,0,66,0,0,0,35,0,0,0,33,0,0,0,46,0,0,0,41,0,0,0,1,0,0,0,8,0,0,0,16,0,0,0,5,0,0,0,81,0,0,0,1,0,0,0,1,0,0,0,46,0,0,0,0,0,227,26,1,0,0,0,0,0,6,0,26,25,216,29,6,0,135,25,216,29,6,0,60,24,150,29,15,0,248,29,0,0,6,0,130,24,8,26,6,0,110,25,60,28,6,0,222,24,60,28,6,0,83,25,60,28,6,0,253,24,60,28,6,0,155,24,60,28,6,0,184,24,60,28,6,0,58,25,60,28,6,0,107,24,60,28,6,0,218,30,51,27,6,0,198,3,211,21,6,0,58,27,51,27,6,0,33,24,216,29,6,0,227,23,150,29,6,0,80,24,150,29,6,0,44,27,127,21,6,0,82,29,127,21,6,0,38,27,127,21,6,0,11,27,242,27,6,0,167,23,51,27,6,0,149,4,51,27,6,0,106,30,216,29,6,0,122,32,51,27,6,0,53,23,51,27,6,0,34,26,51,27,6,0,28,29,51,27,6,0,186,28,51,27,6,0,150,4,51,27,6,0,165,28,51,27,6,0,87,23,127,21,6,0,143,28,51,27,6,0,255,25,133,31,6,0,165,25,51,27,6,0,204,28,51,27,6,0,0,27,127,21,6,0,211,22,127,21,6,0,121,30,127,21,6,0,177,23,127,21,6,0,41,23,51,27,6,0,75,26,51,27,6,0,249,22,242,27,6,0,85,27,127,21,0,0,0,0,39,17,0,0,0,0,1,0,1,0,128,1,16,0,129,4,133,32,57,0,1,0,1,0,128,1,16,0,123,4,133,32,57,0,1,0,2,0,129,1,16,0,115,23,133,32,57,0,2,0,4,0,1,1,0,0,127,28,133,32,65,0,3,0,7,0,1,1,0,0,236,22,133,32,65,0,8,0,7,0,1,0,16,0,62,29,133,32,57,0,25,0,7,0,128,1,16,0,7,30,133,32,57,0,54,0,62,0,128,1,16,0,8,28,133,32,57,0,114,0,63,0,0,1,0,0,48,17,0,0,57,0,114,0,64,0,19,1,0,0,184,7,0,0,97,0,195,0,65,0,19,1,0,0,233,10,0,0,97,0,195,0,65,0,19,1,0,0,15,13,0,0,97,0,195,0,65,0,19,1,0,0,135,14,0,0,97,0,195,0,65,0,19,1,0,0,1,0,0,0,97,0,195,0,65,0,19,1,0,0,14,4,0,0,97,0,195,0,65,0,19,1,0,0,143,6,0,0,97,0,195,0,65,0,19,1,0,0,71,10,0,0,97,0,195,0,65,0,19,1,0,0,57,11,0,0,97,0,195,0,65,0,19,1,0,0,145,13,0,0,97,0,195,0,65,0,19,1,0,0,20,15,0,0,97,0,195,0,65,0,19,1,0,0,82,0,0,0,97,0,195,0,65,0,19,1,0,0,53,4,0,0,97,0,195,0,65,0,19,1,0,0,152,8,0,0,97,0,195,0,65,0,19,1,0,0,122,10,0,0,97,0,195,0,65,0,19,1,0,0,98,11,0,0,97,0,195,0,65,0,19,1,0,0,91,15,0,0,97,0,195,0,65,0,19,1,0,0,123,0,0,0,97,0,195,0,65,0,19,1,0,0,94,4,0,0,97,0,195,0,65,0,19,1,0,0,193,8,0,0,97,0,195,0,65,0,19,1,0,0,169,11,0,0,97,0,195,0,65,0,19,1,0,0,194,0,0,0,97,0,195,0,65,0,19,1,0,0,156,4,0,0,97,0,195,0,65,0,19,1,0,0,234,8,0,0,97,0,195,0,65,0,19,1,0,0,251,11,0,0,97,0,195,0,65,0,19,1,0,0,132,15,0,0,97,0,195,0,65,0,19,1,0,0,235,0,0,0,97,0,195,0,65,0,19,1,0,0,238,4,0,0,97,0,195,0,65,0,19,1,0,0,19,9,0,0,97,0,195,0,65,0,19,1,0,0,66,12,0,0,97,0,195,0,65,0,19,1,0,0,173,15,0,0,97,0,195,0,65,0,19,1,0,0,61,1,0,0,97,0,195,0,65,0,19,1,0,0,64,5,0,0,97,0,195,0,65,0,19,1,0,0,90,9,0,0,97,0,195,0,65,0,19,1,0,0,148,12,0,0,97,0,195,0,65,0,19,1,0,0,255,15,0,0,97,0,195,0,65,0,19,1,0,0,146,5,0,0,97,0,195,0,65,0,19,1,0,0,92,3,0,0,97,0,195,0,65,0,19,1,0,0,52,0,0,0,97,0,195,0,65,0,19,1,0,0,61,15,0,0,97,0,195,0,65,0,19,1,0,0,139,11,0,0,97,0,195,0,65,0,19,1,0,0,60,9,0,0,97,0,195,0,65,0,19,1,0,0,36,12,0,0,97,0,195,0,65,0,19,1,0,0,144,2,0,0,97,0,195,0,65,0,19,1,0,0,164,0,0,0,97,0,195,0,65,0,19,1,0,0,121,8,0,0,97,0,195,0,65,0,17,0,16,23,68,4,54,0,8,29,162,0,6,6,139,21,72,4,86,128,123,21,75,4,86,128,125,21,75,4,86,128,137,21,75,4,86,128,121,21,75,4,6,6,139,21,72,4,86,128,103,29,79,4,86,128,203,21,79,4,86,128,198,21,79,4,86,128,155,22,79,4,86,128,165,25,79,4,86,128,123,31,79,4,86,128,95,13,79,4,86,128,215,14,79,4,86,128,134,26,79,4,86,128,162,22,79,4,86,128,30,0,79,4,86,128,174,2,79,4,86,128,43,4,79,4,86,128,172,6,79,4,86,128,111,8,79,4,86,128,100,10,79,4,86,128,33,29,162,0,1,0,125,22,83,4,1,0,94,22,72,4,1,0,23,22,72,4,1,0,56,22,72,4,1,0,253,21,72,4,3,0,16,32,92,4,3,0,149,30,72,4,3,0,203,29,72,4,3,0,169,29,72,4,3,0,165,30,72,4,3,0,186,29,72,4,3,0,1,4,72,4,3,0,237,3,72,4,3,0,130,6,72,4,3,0,110,6,72,4,3,0,220,22,97,4,3,0,113,32,102,4,3,0,137,29,72,4,3,0,72,29,106,4,3,0,72,27,72,4,3,0,204,31,109,4,3,0,215,31,109,4,3,0,226,31,109,4,49,0,187,23,102,4,49,0,178,26,102,4,1,0,101,28,75,4,1,0,194,25,72,4,1,0,150,23,72,4,51,0,38,32,92,4,51,0,110,32,118,4,51,0,27,23,102,4,83,128,184,3,72,4,83,128,162,3,72,4,83,128,64,6,72,4,83,128,42,6,72,4,51,0,238,28,109,4,49,0,224,14,102,4,49,0,40,0,102,4,49,0,182,6,102,4,49,0,110,10,102,4,49,0,86,11,102,4,49,0,174,13,102,4,49,0,49,15,102,4,49,0,111,0,102,4,49,0,82,4,102,4,49,0,181,8,102,4,49,0,127,11,102,4,49,0,120,15,102,4,49,0,152,0,102,4,49,0,137,4,102,4,49,0,222,8,102,4,49,0,198,11,102,4,49,0,223,0,102,4,49,0,185,4,102,4,49,0,7,9,102,4,49,0,24,12,102,4,49,0,161,15,102,4,49,0,8,1,102,4,49,0,11,5,102,4,49,0,48,9,102,4,49,0,136,12,102,4,49,0,202,15,102,4,49,0,90,1,102,4,49,0,93,5,102,4,49,0,119,9,102,4,49,0,218,12,102,4,49,0,28,16,102,4,51,0,29,32,92,4,51,0,96,31,102,4,51,0,13,29,102,4,51,0,69,32,118,4,51,0,101,23,122,4,51,0,250,28,122,4,51,0,239,31,118,4,83,128,21,24,131,4,83,128,167,26,131,4,83,128,190,21,131,4,83,128,247,21,131,4,83,128,250,23,131,4,83,128,140,26,131,4,83,128,15,24,131,4,83,128,161,26,131,4,83,128,4,24,131,4,83,128,150,26,131,4,51,0,1,31,109,4,51,0,68,31,109,4,51,0,233,30,109,4,51,0,221,28,109,4,51,1,141,19,134,4,51,1,5,11,138,4,51,1,59,19,142,4,51,1,104,13,72,4,51,1,254,20,147,4,51,1,12,14,151,4,51,1,172,9,155,4,51,1,90,16,159,4,51,1,227,13,155,4,51,1,161,17,164,4,51,1,235,14,168,4,51,1,29,8,72,4,51,1,143,7,173,4,51,1,51,3,178,4,51,1,69,18,183,4,51,1,184,2,188,4,51,1,10,3,164,4,51,1,254,16,193,4,51,1,177,12,72,4,51,1,70,8,138,4,51,1,49,16,134,4,51,1,121,3,198,4,51,1,43,13,164,4,51,1,20,7,202,4,51,1,223,19,207,4,51,1,51,2,164,4,51,1,80,21,212,4,51,1,105,5,188,4,51,1,100,19,216,4,51,1,61,7,221,4,51,1,210,11,226,4,51,1,243,17,230,4,51,1,172,20,235,4,51,1,8,20,239,4,51,1,225,2,134,4,51,1,163,14,244,4,51,1,30,10,248,4,51,1,102,7,72,4,51,1,102,1,251,4,51,1,175,5,155,4,51,1,1,6,255,4,51,1,131,9,4,5,51,1,94,14,72,4,51,1,214,15,8,5,51,1,131,20,12,5,51,1,20,1,17,5,51,1,151,10,12,5,51,1,192,10,21,5,51,1,202,17,26,5,51,1,90,20,138,4,51,1,92,2,164,4,51,1,213,20,134,4,51,1,225,1,31,5,51,1,230,12,36,5,51,1,186,13,72,4,51,1,10,2,138,4,51,1,95,12,138,4,51,1,28,18,41,5,51,1,120,17,45,5,51,1,131,16,49,5,51,1,212,7,54,5,51,1,79,17,164,4,51,1,213,16,164,4,51,1,213,9,134,4,51,1,184,1,155,4,51,1,197,4,155,4,51,1,18,19,59,5,51,1,192,18,63,5,51,1,233,18,67,5,51,1,23,5,155,4,51,1,151,18,134,4,51,1,143,1,71,5,51,1,216,5,72,4,51,1,235,6,134,4,51,1,110,18,76,5,51,1,172,16,31,5,51,1,53,14,81,5,51,1,182,19,86,5,51,1,49,20,155,4,51,1,39,21,138,4,51,1,194,6,138,4,80,32,0,0,0,0,147,0,63,27,90,5,1,0,196,32,0,0,0,0,147,0,63,27,90,5,4,0,4,33,0,0,0,0,145,24,130,29,98,5,7,0,32,33,0,0,0,0,150,0,9,23,102,5,7,0,40,34,0,0,0,0,150,0,9,23,107,5,8,0,121,38,0,0,0,0,145,24,130,29,98,5,9,0,133,38,0,0,0,0,134,8,165,31,113,5,9,0,141,38,0,0,0,0,131,8,182,31,123,5,9,0,150,38,0,0,0,0,134,8,206,27,85,0,10,0,158,38,0,0,0,0,131,8,224,27,1,0,10,0,167,38,0,0,0,0,134,8,116,27,85,0,11,0,175,38,0,0,0,0,131,8,136,27,1,0,11,0,184,38,0,0,0,0,134,8,156,27,85,0,12,0,192,38,0,0,0,0,131,8,181,27,1,0,12,0,201,38,0,0,0,0,134,8,185,22,85,0,13,0,209,38,0,0,0,0,131,8,198,22,1,0,13,0,220,38,0,0,0,0,134,8,78,28,134,5,14,0,244,38,0,0,0,0,134,8,98,28,139,5,14,0,40,39,0,0,0,0,134,8,176,25,85,0,15,0,64,39,0,0,0,0,134,8,191,25,1,0,15,0,168,39,0,0,0,0,134,8,133,23,85,0,16,0,192,39,0,0,0,0,134,8,147,23,1,0,16,0,28,40,0,0,0,0,134,0,9,23,16,0,17,0,96,40,0,0,0,0,134,0,9,23,145,5,18,0,244,40,0,0,0,0,134,0,9,23,151,5,19,0,48,41,0,0,0,0,134,0,9,23,157,5,20,0,132,42,0,0,0,0,134,0,72,23,16,0,21,0,16,43,0,0,0,0,134,0,72,23,93,1,22,0,160,43,0,0,0,0,134,0,64,30,113,5,23,0,164,44,0,0,0,0,131,0,45,28,6,0,23,0,196,46,0,0,0,0,131,0,147,21,6,0,23,0,88,49,0,0,0,0,131,0,85,32,24,1,23,0,232,49,0,0,0,0,131,0,118,28,6,0,25,0,236,50,0,0,0,0,147,0,96,27,164,5,25,0,96,51,0,0,0,0,131,0,47,30,6,0,29,0,20,53,0,0,0,0,131,0,171,21,6,0,29,0,64,54,0,0,0,0,131,0,191,26,6,0,29,0,252,54,0,0,0,0,131,0,216,3,85,0,29,0,68,56,0,0,0,0,131,0,89,6,85,0,29,0,52,57,0,0,0,0,131,0,8,8,85,0,29,0,24,59,0,0,0,0,131,0,9,10,85,0,29,0,236,59,0,0,0,0,131,0,44,31,137,1,29,0,116,60,0,0,0,0,131,0,22,31,137,1,31,0,252,60,0,0,0,0,131,0,24,28,6,0,33,0,208,62,0,0,0,0,131,0,177,30,174,5,33,0,92,63,0,0,0,0,131,0,91,26,6,0,34,0,40,64,0,0,0,0,131,0,199,31,6,0,34,0,16,67,0,0,0,0,131,0,206,26,1,0,34,0,168,67,0,0,0,0,131,0,133,2,6,0,35,0,72,68,0,0,0,0,131,0,205,3,6,0,35,0,176,68,0,0,0,0,131,0,78,6,6,0,35,0,24,69,0,0,0,0,131,0,253,7,6,0,35,0,244,69,0,0,0,0,131,0,254,9,6,0,35,0,140,72,0,0,0,0,131,0,46,11,6,0,35,0,44,74,0,0,0,0,131,0,84,13,6,0,35,0,100,77,0,0,0,0,131,0,204,14,6,0,35,0,44,81,0,0,0,0,129,0,47,29,180,5,35,0,248,81,0,0,0,0,147,0,158,21,185,5,35,0,212,82,0,0,0,0,131,0,237,25,180,5,36,0,140,84,0,0,0,0,134,24,124,29,6,0,36,0,170,84,0,0,0,0,145,24,130,29,98,5,36,0,220,84,0,0,0,0,145,24,130,29,98,5,36,0,60,93,0,0,0,0,147,0,140,30,185,5,36,0,184,93,0,0,0,0,147,0,51,26,192,5,37,0,0,0,1,0,75,29,0,0,2,0,92,30,0,0,3,0,81,27,0,0,1,0,75,29,0,0,2,0,92,30,0,0,3,0,81,27,0,0,1,0,121,23,0,0,1,0,42,30,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,170,25,0,0,1,0,105,31,0,0,1,0,192,30,0,0,1,0,223,25,0,0,1,0,16,32,0,0,1,0,92,23,0,0,1,0,25,27,0,0,1,0,193,21,0,0,2,0,187,30,0,0,1,0,216,26,0,0,2,0,114,26,0,0,3,0,114,29,0,0,4,0,186,29,0,0,1,0,157,31,0,0,2,0,252,26,0,0,1,0,157,31,0,0,2,0,252,26,0,0,1,0,236,22,0,0,1,0,211,26,0,0,1,0,214,25,0,0,1,0,214,25,0,0,1,0,209,30,9,0,124,29,1,0,17,0,124,29,6,0,25,0,124,29,10,0,41,0,124,29,16,0,49,0,124,29,16,0,57,0,124,29,16,0,65,0,124,29,16,0,73,0,124,29,16,0,81,0,124,29,16,0,89,0,124,29,16,0,97,0,124,29,16,0,105,0,124,29,16,0,137,0,124,29,6,0,153,0,124,29,21,0,209,0,0,32,42,0,233,0,206,25,67,0,233,0,90,31,72,0,12,0,124,29,6,0,233,0,80,26,85,0,233,0,96,30,89,0,233,0,206,25,94,0,249,0,124,29,16,0,233,0,41,26,100,0,12,0,243,21,106,0,12,0,61,32,112,0,233,0,211,30,151,0,233,0,41,26,157,0,233,0,174,32,162,0,233,0,95,29,165,0,233,0,154,32,169,0,1,1,218,23,175,0,233,0,211,30,182,0,9,1,124,29,16,0,17,1,145,31,189,0,17,1,20,30,194,0,233,0,166,32,224,0,25,1,124,29,16,0,33,1,40,16,229,0,33,1,33,30,235,0,28,0,124,29,24,1,36,0,225,30,38,1,28,0,229,30,44,1,233,0,125,26,59,1,57,1,124,29,67,1,89,1,210,23,6,0,169,0,124,29,93,1,169,0,27,24,99,1,169,0,69,26,6,0,28,0,225,30,137,1,97,1,161,31,219,1,217,0,128,32,225,1,217,0,22,29,236,1,36,0,229,30,35,2,44,0,225,30,157,2,36,0,124,29,24,1,217,0,161,23,212,2,36,0,132,30,225,2,113,0,124,29,6,0,44,0,124,29,24,1,177,0,124,29,6,0,185,0,124,29,141,3,161,0,27,24,99,1,161,0,204,23,6,0,161,0,80,26,151,3,161,0,173,26,155,3,161,0,238,21,163,3,8,0,16,0,185,3,8,0,20,0,190,3,8,0,24,0,195,3,8,0,28,0,200,3,8,0,36,0,185,3,8,0,40,0,190,3,8,0,44,0,195,3,8,0,48,0,200,3,8,0,52,0,205,3,8,0,56,0,210,3,8,0,60,0,215,3,8,0,64,0,220,3,8,0,68,0,225,3,8,0,72,0,230,3,8,0,76,0,235,3,8,0,80,0,240,3,8,0,84,0,245,3,8,0,88,0,250,3,8,0,92,0,255,3,8,0,96,0,4,4,14,0,100,0,9,4,8,0,228,0,185,3,8,0,232,0,190,3,8,0,236,0,195,3,8,0,240,0,200,3,5,0,144,1,54,4,5,0,148,1,56,4,5,0,152,1,58,4,5,0,156,1,60,4,5,0,160,1,54,4,5,0,164,1,56,4,5,0,168,1,58,4,5,0,172,1,62,4,5,0,176,1,64,4,5,0,180,1,66,4,46,0,11,0,216,5,46,0,19,0,225,5,46,0,27,0,0,6,46,0,35,0,9,6,46,0,43,0,64,6,46,0,51,0,80,6,46,0,59,0,91,6,46,0,67,0,146,6,46,0,75,0,217,7,46,0,83,0,230,7,46,0,91,0,241,7,46,0,99,0,241,7,224,0,107,0,190,3,0,1,107,0,190,3,32,1,107,0,190,3,64,1,107,0,190,3,67,1,107,0,190,3,96,1,107,0,190,3,128,1,107,0,190,3,160,1,107,0,190,3,192,1,107,0,190,3,224,1,107,0,190,3,0,2,107,0,190,3,65,3,107,0,190,3,65,3,115,0,11,8,97,3,107,0,190,3,97,3,115,0,11,8,129,3,107,0,190,3,129,3,115,0,11,8,161,3,107,0,190,3,161,3,115,0,11,8,193,3,107,0,190,3,193,3,115,0,11,8,1,0,3,0,0,0,11,0,1,0,5,0,0,0,12,0,1,0,6,0,0,0,13,0,1,0,7,0,0,0,14,0,1,0,10,0,0,0,15,0,1,0,12,0,0,0,16,0,1,0,13,0,0,0,17,0,1,0,15,0,0,0,18,0,1,0,16,0,0,0,19,0,1,0,17,0,0,0,20,0,1,0,18,0,0,0,21,0,1,0,20,0,0,0,22,0,1,0,22,0,0,0,23,0,1,0,24,0,0,0,24,0,1,0,25,0,0,0,25,0,1,0,26,0,0,0,26,0,1,0,28,0,0,0,27,0,1,0,30,0,0,0,28,0,1,0,32,0,0,0,29,0,1,0,34,0,0,0,30,0,1,0,36,0,0,0,31,0,1,0,40,0,0,0,32,0,1,0,42,0,0,0,33,0,1,0,44,0,0,0,34,0,1,0,46,0,0,0,35,0,1,0,48,0,0,0,36,0,1,0,50,0,0,0,37,0,1,0,52,0,0,0,38,0,1,0,54,0,0,0,39,0,1,0,56,0,0,0,40,0,1,0,58,0,0,0,41,0,1,0,60,0,0,0,42,0,1,0,62,0,0,0,43,0,1,0,64,0,0,0,44,0,1,0,66,0,0,0,45,0,1,0,68,0,0,0,46,0,1,0,72,0,0,0,47,0,1,0,81,0,0,0,48,0,1,0,120,0,0,0,49,0,1,0,128,0,0,0,50,0,1,0,136,0,0,0,51,0,1,0,164,0,0,0,52,0,1,0,0,1,0,0,53,0,1,0,255,1,0,0,54,0,1,0,128,2,0,0,55,0,1,0,0,4,0,0,56,0,27,0,36,0,50,0,118,0,200,0,205,0,209,0,213,0,218,0,244,0,0,1,51,1,81,1,107,1,143,1,171,1,198,1,203,1,244,1,254,1,20,2,42,2,53,2,74,2,85,2,110,2,123,2,163,2,169,2,216,2,232,2,240,2,250,2,13,3,30,3,55,3,80,3,89,3,101,3,128,3,171,3,7,0,1,0,0,0,186,31,197,5,0,0,228,27,207,5,0,0,140,27,207,5,0,0,185,27,207,5,0,0,202,22,207,5,0,0,127,28,211,5,0,0,195,25,207,5,0,0,151,23,207,5,2,0,7,0,3,0,1,0,8,0,3,0,2,0,9,0,5,0,1,0,10,0,5,0,2,0,11,0,7,0,1,0,12,0,7,0,2,0,13,0,9,0,1,0,14,0,9,0,2,0,15,0,11,0,1,0,16,0,11,0,2,0,17,0,13,0,1,0,18,0,13,0,2,0,19,0,15,0,1,0,20,0,15,0,2,0,21,0,17,0,1,0,22,0,17,0,79,0,241,0,16,1,30,1,149,2,0,169,0,0,114,0,8,169,0,0,115,0,16,169,0,0,116,0,64,169,0,0,117,0,72,169,0,0,118,0,96,169,0,0,119,0,128,169,0,0,120,0,136,169,0,0,121,0,176,169,0,0,122,0,184,169,0,0,123,0,192,169,0,0,124,0,0,170,0,0,125,0,8,170,0,0,126,0,80,170,0,0,127,0,136,170,0,0,128,0,184,170,0,0,129,0,48,171,0,0,130,0,56,171,0,0,131,0,120,171,0,0,132,0,128,171,0,0,133,0,136,171,0,0,134,0,144,171,0,0,135,0,176,171,0,0,136,0,184,171,0,0,137,0,184,175,0,0,138,0,16,176,0,0,139,0,24,176,0,0,140,0,40,176,0,0,141,0,160,176,0,0,142,0,40,177,0,0,143,0,168,179,0,0,144,0,184,179,0,0,145,0,56,180,0,0,146,0,88,180,0,0,147,0,0,181,0,0,148,0,8,181,0,0,149,0,40,181,0,0,150,0,48,181,0,0,151,0,56,181,0,0,152,0,88,181,0,0,153,0,96,181,0,0,154,0,152,181,0,0,155,0,176,181,0,0,156,0,184,181,0,0,157,0,208,181,0,0,158,0,24,182,0,0,159,0,40,182,0,0,160,0,112,182,0,0,161,0,168,182,0,0,162,0,240,182,0,0,163,0,248,182,0,0,164,0,0,183,0,0,165,0,8,183,0,0,166,0,8,184,0,0,167,0,72,184,0,0,168,0,80,184,0,0,169,0,88,184,0,0,170,0,96,184,0,0,171,0,136,184,0,0,172,0,160,184,0,0,173,0,160,186,0,0,174,0,224,186,0,0,175,0,232,186,0,0,176,0,240,186,0,0,177,0,248,186,0,0,178,0,0,187,0,0,179,0,8,187,0,0,180,0,24,187,0,0,181,0,40,187,0,0,182,0,80,187,0,0,183,0,88,187,0,0,184,0,96,187,0,0,185,0,144,187,0,0,186,0,152,187,0,0,187,0,160,187,0,0,188,0,208,187,0,0,189,0,208,188,0,0,190,0,8,189,0,0,191,0,32,189,0,0,192,0,40,189,0,0,193,0,48,189,0,0,194,0,4,128,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,133,32,0,0,2,0,0,0,0,0,0,0,0,0,0,0,176,3,173,22,0,0,0,0,11,0,10,0,12,0,10,0,13,0,10,0,14,0,10,0,15,0,10,0,16,0,10,0,17,0,10,0,18,0,10,0,19,0,10,0,20,0,10,0,21,0,10,0,22,0,10,0,23,0,10,0,24,0,10,0,25,0,10,0,26,0,10,0,27,0,10,0,28,0,10,0,29,0,10,0,30,0,10,0,31,0,10,0,32,0,10,0,33,0,10,0,34,0,10,0,35,0,10,0,36,0,10,0,37,0,10,0,38,0,10,0,39,0,10,0,40,0,10,0,41,0,10,0,42,0,10,0,43,0,10,0,44,0,10,0,45,0,10,0,46,0,10,0,47,0,10,0,48,0,10,0,49,0,10,0,50,0,10,0,51,0,10,0,52,0,10,0,53,0,10,0,54,0,10,0,55,0,10,0,56,0,10,0,0,0,0,0,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,48,0,85,110,107,110,111,119,110,49,48,0,71,101,110,101,114,97,116,111,114,49,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,48,0,71,101,110,101,114,97,116,111,114,50,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,48,0,71,101,110,101,114,97,116,111,114,51,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,52,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,48,0,71,101,110,101,114,97,116,111,114,52,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,48,0,71,101,110,101,114,97,116,111,114,53,48,0,54,66,56,56,67,69,69,53,48,53,69,51,53,54,56,69,54,70,65,57,52,50,70,56,70,50,70,50,57,55,55,55,54,55,54,54,53,48,54,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,48,0,71,101,110,101,114,97,116,111,114,54,48,0,53,51,57,57,56,56,55,53,56,51,48,50,54,48,52,50,69,69,67,52,51,69,53,69,56,49,52,54,55,67,48,54,67,53,66,56,50,52,55,48,0,68,65,66,54,55,57,57,52,55,50,49,69,57,56,52,69,49,65,65,53,67,50,67,54,67,65,68,66,66,70,54,68,55,66,68,50,56,65,55,48,0,66,55,51,70,67,52,66,69,54,66,49,67,68,69,51,51,56,51,56,70,70,56,57,49,54,53,52,53,68,50,69,53,51,68,57,66,68,55,57,48,0,56,69,51,65,67,52,55,52,52,53,68,57,57,50,52,57,48,65,52,69,68,68,50,53,52,49,53,56,54,48,69,55,69,53,48,55,52,51,66,48,0,57,48,65,54,57,69,52,65,55,53,57,67,54,54,57,65,65,56,48,55,70,49,52,53,65,67,55,68,51,55,57,53,68,49,54,65,54,51,67,48,0,51,65,65,69,68,57,48,67,51,55,51,52,66,70,56,53,66,55,51,50,55,65,69,65,68,65,70,66,57,66,53,66,57,49,57,53,52,53,67,48,0,56,55,68,65,49,68,69,70,54,68,70,48,67,66,67,49,69,50,50,65,48,70,54,70,57,57,53,66,68,70,53,49,68,66,52,50,49,56,69,48,0,65,112,112,108,121,77,97,115,107,48,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,49,49,0,85,110,107,110,111,119,110,49,49,0,49,70,54,66,52,50,54,55,56,49,54,56,69,53,66,67,54,67,57,54,70,55,53,48,53,54,56,66,50,52,54,48,48,65,69,49,51,51,50,49,0,52,55,68,50,53,56,68,69,51,70,54,51,66,48,65,67,49,55,56,69,49,68,69,54,68,49,52,67,49,52,53,69,69,53,51,49,54,52,52,49,0,50,48,68,49,48,52,67,56,68,49,51,51,53,51,48,65,68,68,56,65,69,67,70,54,68,55,68,56,48,69,68,55,49,70,70,55,66,65,52,49,0,49,66,51,50,49,51,65,66,57,52,51,55,52,67,54,55,49,69,67,67,56,56,68,49,55,56,65,65,68,53,48,70,56,49,54,51,57,51,55,49,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,56,49,0,51,52,54,48,53,48,57,66,55,69,50,51,69,54,68,53,65,50,48,48,54,49,54,51,57,49,67,66,65,48,65,51,65,50,67,55,66,69,68,49,0,68,65,84,65,95,67,79,68,69,87,79,82,68,83,95,71,82,79,85,80,49,0,66,76,79,67,75,83,95,71,82,79,85,80,49,0,76,105,115,116,96,49,0,65,112,112,108,121,77,97,115,107,49,0,69,118,97,108,117,97,116,105,111,110,67,111,110,100,105,116,105,111,110,49,0,68,97,116,97,67,111,100,101,119,111,114,100,115,71,114,111,117,112,49,0,66,108,111,99,107,115,71,114,111,117,112,49,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,0,85,110,107,110,111,119,110,49,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,50,0,71,101,110,101,114,97,116,111,114,50,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,50,0,67,82,67,51,50,0,65,100,108,101,114,51,50,0,71,101,110,101,114,97,116,111,114,51,50,0,85,73,110,116,51,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,50,0,71,101,110,101,114,97,116,111,114,52,50,0,67,50,52,54,54,53,52,57,51,48,51,66,54,53,70,68,69,49,56,54,57,49,50,54,50,57,66,49,53,54,51,54,51,65,49,55,67,53,53,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,50,0,71,101,110,101,114,97,116,111,114,53,50,0,68,49,50,54,50,68,55,69,65,53,51,67,67,57,65,51,52,51,50,55,51,57,48,49,53,51,56,48,69,66,48,65,55,49,68,56,57,56,54,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,50,0,71,101,110,101,114,97,116,111,114,54,50,0,51,68,54,65,56,53,55,56,49,66,51,56,52,55,65,65,57,70,49,52,68,57,67,68,53,70,49,68,56,65,51,57,66,51,68,67,65,52,55,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,55,50,0,53,56,53,69,50,68,69,66,57,55,67,70,52,67,51,67,56,55,50,66,70,57,49,48,69,69,69,52,66,49,66,49,55,48,50,70,48,48,65,50,0,69,51,48,56,54,70,49,65,48,65,57,68,50,54,65,67,57,69,52,70,55,56,68,57,52,50,70,57,70,70,68,57,51,57,70,55,57,52,69,50,0,53,57,67,56,69,53,51,57,70,70,48,50,52,68,53,49,48,69,57,55,57,68,54,53,55,57,68,48,70,49,53,53,50,57,53,67,49,70,70,50,0,68,65,84,65,95,67,79,68,69,87,79,82,68,83,95,71,82,79,85,80,50,0,66,76,79,67,75,83,95,71,82,79,85,80,50,0,65,112,112,108,121,77,97,115,107,50,0,69,118,97,108,117,97,116,105,111,110,67,111,110,100,105,116,105,111,110,50,0,68,97,116,97,67,111,100,101,119,111,114,100,115,71,114,111,117,112,50,0,66,108,111,99,107,115,71,114,111,117,112,50,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,51,0,85,110,107,110,111,119,110,49,51,0,71,101,110,101,114,97,116,111,114,49,51,0,70,70,67,70,57,51,53,70,50,57,57,53,53,69,50,49,65,55,66,50,66,51,67,69,49,56,56,57,68,66,52,66,69,67,48,49,56,70,50,51,0,69,52,48,51,52,67,70,54,50,65,52,50,69,53,52,51,65,51,51,56,67,49,55,69,51,53,54,70,69,48,56,65,57,69,69,52,55,56,51,51,0,51,55,51,66,52,57,52,70,50,49,48,67,54,53,54,49,51,52,67,53,55,50,56,68,53,53,49,68,52,67,57,55,66,48,49,51,69,66,51,51,0,52,48,66,56,70,65,48,67,48,51,50,69,69,68,54,56,49,54,48,48,55,50,67,48,52,51,69,49,50,49,57,66,48,55,56,49,51,68,51,51,0,52,70,67,68,56,67,54,50,48,68,50,67,54,66,53,48,51,67,51,48,51,51,53,49,53,56,53,55,54,70,55,56,66,69,52,49,57,53,55,51,0,49,65,69,65,65,57,67,65,52,57,70,55,54,48,66,54,70,50,54,53,52,65,51,54,48,49,51,54,57,56,54,48,49,69,53,67,56,51,56,51,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,0,65,67,53,69,54,68,69,52,54,50,53,67,50,53,54,70,56,65,67,65,52,49,49,68,66,52,55,70,49,70,67,70,67,50,70,48,70,51,66,51,0,65,112,112,108,121,77,97,115,107,51,0,69,118,97,108,117,97,116,105,111,110,67,111,110,100,105,116,105,111,110,51,0,49,65,66,66,52,50,49,52,51,50,51,53,55,57,49,48,67,52,51,49,66,57,66,54,55,57,70,54,69,56,65,70,65,49,67,54,55,48,48,52,0,50,70,55,57,51,66,56,48,50,55,56,56,57,65,65,48,69,52,54,55,55,57,52,53,68,50,54,68,52,56,65,50,69,54,51,53,49,66,48,52,0,85,110,107,110,111,119,110,49,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,48,50,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,52,0,71,101,110,101,114,97,116,111,114,50,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,52,0,71,101,110,101,114,97,116,111,114,51,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,52,0,71,101,110,101,114,97,116,111,114,52,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,52,0,71,101,110,101,114,97,116,111,114,53,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,54,52,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,52,0,71,101,110,101,114,97,116,111,114,54,52,0,53,68,57,52,69,65,52,69,67,57,70,65,51,55,69,49,49,48,55,65,56,54,52,55,66,49,52,57,49,57,52,65,67,55,52,50,69,51,55,52,0,48,70,67,56,50,65,67,52,52,68,48,49,48,55,52,53,55,51,48,66,51,67,67,65,48,67,70,57,70,66,69,56,70,48,65,67,50,69,56,52,0,66,51,67,54,67,67,68,66,52,66,50,54,55,68,66,51,57,67,67,55,68,67,68,55,69,65,67,67,54,51,55,67,68,49,49,57,48,66,66,52,0,65,112,112,108,121,77,97,115,107,52,0,69,118,97,108,117,97,116,105,111,110,67,111,110,100,105,116,105,111,110,52,0,52,67,65,69,67,69,53,51,57,66,48,51,57,66,49,54,69,49,54,50,48,54,69,65,50,52,55,56,70,56,67,53,70,70,66,50,67,65,48,53,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,53,0,85,110,107,110,111,119,110,49,53,0,71,101,110,101,114,97,116,111,114,49,53,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,53,0,55,68,55,68,65,52,68,50,65,48,51,54,65,49,56,65,48,49,51,66,49,56,51,48,54,66,55,66,50,65,57,55,52,57,57,51,48,53,53,53,0,55,69,48,70,50,65,56,54,66,65,68,69,67,69,48,49,56,67,68,50,54,65,50,54,65,65,55,53,51,48,48,65,54,50,66,53,50,49,57,53,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,0,48,53,54,50,53,56,67,50,52,66,54,69,68,48,55,56,54,50,51,56,51,51,49,70,54,54,52,67,55,65,56,56,69,48,48,69,66,57,69,53,0,65,112,112,108,121,77,97,115,107,53,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,54,0,71,101,110,101,114,97,116,111,114,49,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,54,0,71,101,110,101,114,97,116,111,114,50,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,51,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,51,54,0,71,101,110,101,114,97,116,111,114,51,54,0,52,49,54,53,68,65,55,69,51,67,57,53,48,48,51,57,49,70,54,51,56,67,54,48,67,55,53,69,65,66,57,49,48,69,52,56,52,55,52,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,54,0,71,101,110,101,114,97,116,111,114,52,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,53,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,54,0,57,50,51,51,69,50,56,70,52,55,65,70,55,49,52,57,48,52,50,67,57,50,68,50,50,54,57,67,55,65,48,53,70,65,51,48,55,65,53,54,0,71,101,110,101,114,97,116,111,114,53,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,54,0,50,56,57,68,52,70,57,49,66,69,51,57,70,53,48,55,48,70,69,70,66,66,53,49,51,70,66,70,65,48,52,52,66,56,49,49,69,68,54,54,0,71,101,110,101,114,97,116,111,114,54,54,0,56,70,49,56,67,57,55,56,70,50,66,54,53,68,69,52,54,70,50,55,65,69,50,48,68,57,68,69,50,67,56,50,57,68,49,55,69,51,55,54,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,0,51,54,56,54,53,69,53,67,68,53,57,55,56,48,68,56,69,50,66,53,56,51,50,57,67,52,65,56,55,56,54,67,54,53,65,70,48,54,70,54,0,65,112,112,108,121,77,97,115,107,54,0,85,110,107,110,111,119,110,54,0,48,54,49,51,56,54,57,65,52,50,68,67,51,51,70,54,53,70,48,52,49,69,69,57,53,48,65,50,57,68,56,49,54,49,56,50,49,56,48,55,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,55,0,71,101,110,101,114,97,116,111,114,49,55,0,56,70,70,56,56,54,54,68,55,51,67,65,53,67,65,56,69,68,51,68,65,57,66,70,56,53,70,65,52,68,65,52,57,53,50,50,69,56,50,55,0,49,51,51,56,48,67,69,65,66,56,69,69,57,51,52,67,49,67,56,54,50,57,54,54,66,50,55,53,49,48,57,66,56,52,55,69,56,66,50,55,0,48,70,56,65,54,52,67,51,66,48,53,56,48,56,65,66,52,52,55,68,66,50,51,69,55,51,70,50,66,51,68,52,50,53,56,67,49,67,50,55,0,70,48,53,57,50,68,66,67,57,70,70,51,66,69,66,56,65,50,53,55,55,48,65,48,57,55,51,66,66,65,52,69,53,65,49,54,53,52,53,55,0,54,51,56,68,66,50,48,48,55,67,69,55,53,51,53,52,54,51,65,67,65,69,56,55,65,67,65,50,65,52,67,48,55,52,54,67,65,70,55,55,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,55,0,52,56,54,50,51,55,48,50,65,70,48,65,66,50,70,56,50,52,70,51,51,57,51,67,53,53,52,66,54,70,67,67,53,54,55,48,52,52,69,55,0,65,112,112,108,121,77,97,115,107,55,0,85,110,107,110,111,119,110,55,0,71,101,110,101,114,97,116,111,114,55,0,49,56,50,50,68,48,69,65,70,54,69,69,54,69,54,69,48,55,50,48,50,57,65,52,70,53,69,57,57,55,56,51,51,66,65,66,51,48,48,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,56,0,71,101,110,101,114,97,116,111,114,49,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,49,50,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,50,56,0,71,101,110,101,114,97,116,111,114,50,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,52,56,0,71,101,110,101,114,97,116,111,114,52,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,53,56,0,71,101,110,101,114,97,116,111,114,53,56,0,54,52,50,70,50,52,53,57,52,55,66,54,54,48,67,68,65,65,57,53,56,57,57,56,55,55,69,70,53,69,57,66,66,66,70,67,56,51,54,56,0,95,95,83,116,97,116,105,99,65,114,114,97,121,73,110,105,116,84,121,112,101,83,105,122,101,61,54,56,0,71,101,110,101,114,97,116,111,114,54,56,0,103,101,116,95,85,84,70,56,0,51,52,48,70,54,57,48,66,50,65,55,48,56,54,69,49,55,65,52,67,50,50,65,70,49,51,49,48,50,55,69,65,67,55,48,65,57,65,50,57,0,49,50,66,50,67,68,49,56,52,54,50,65,67,69,50,69,66,67,51,54,66,51,49,65,66,67,48,57,55,68,69,52,53,50,69,53,48,53,53,57,0,65,66,49,65,69,55,56,67,48,53,68,49,54,70,65,69,49,48,49,51,51,55,54,55,57,70,51,48,70,68,49,54,53,52,50,50,66,55,53,57,0,69,67,70,68,69,52,55,54,52,65,70,66,66,70,50,54,56,65,51,49,53,65,49,49,56,65,56,50,54,54,66,70,55,55,52,52,65,57,54,57,0,65,69,65,55,48,51,55,67,54,57,70,55,65,50,53,53,68,65,48,55,55,48,52,56,49,50,52,65,68,70,67,55,53,69,55,52,51,53,55,57,0,50,55,56,51,57,68,54,69,66,48,50,68,52,53,50,48,55,53,52,52,55,53,65,48,54,48,66,48,70,70,56,49,55,54,53,67,51,66,66,57,0,60,77,111,100,117,108,101,62,0,60,80,114,105,118,97,116,101,73,109,112,108,101,109,101,110,116,97,116,105,111,110,68,101,116,97,105,108,115,62,0,65,68,50,50,48,54,70,68,69,51,52,53,65,66,57,69,69,56,50,55,52,52,55,69,56,70,50,52,48,70,57,53,70,49,57,69,67,49,49,65,0,57,69,56,66,53,51,70,55,53,70,53,50,68,66,55,54,67,52,49,51,65,54,70,54,65,52,55,49,69,67,55,65,66,65,56,49,49,67,49,65,0,49,54,51,67,54,52,48,49,69,67,69,68,56,54,70,52,54,53,48,57,53,49,69,67,67,54,68,49,65,48,66,68,65,56,66,48,55,70,52,65,0,56,48,67,51,52,50,65,67,65,53,49,48,65,68,52,56,48,69,54,55,55,66,69,70,67,67,68,48,49,52,55,66,53,52,56,57,66,55,57,65,0,52,51,70,51,57,48,53,68,70,54,69,52,48,65,50,52,49,48,54,69,52,57,49,48,50,52,50,48,50,68,50,70,53,53,55,68,67,54,69,65,0,57,50,67,66,56,51,48,57,68,70,69,68,56,57,68,53,51,68,70,65,69,53,56,52,50,55,51,54,65,65,56,52,49,67,70,67,50,49,52,66,0,49,66,69,53,53,51,50,50,50,49,57,50,69,50,65,66,70,49,65,65,51,53,52,68,69,51,54,51,70,57,51,68,51,56,50,51,67,65,53,66,0,69,67,69,56,66,51,65,69,67,56,69,55,54,53,50,57,65,48,66,65,66,50,53,68,68,51,56,66,70,54,52,55,57,55,65,52,55,69,53,66,0,68,56,65,70,54,50,57,65,67,55,56,70,66,54,53,69,50,53,70,52,53,50,51,69,55,66,56,70,55,66,53,55,66,67,52,50,57,66,57,66,0,67,56,51,54,56,56,54,56,57,49,48,57,65,70,52,66,65,67,49,66,69,50,54,53,57,67,67,53,54,52,54,51,53,53,52,68,66,69,67,66,0,68,48,49,69,51,51,70,51,54,66,67,70,52,56,55,54,50,56,48,52,50,54,68,48,57,56,51,66,54,57,57,67,52,49,70,51,69,56,48,67,0,67,51,53,50,53,52,53,65,50,67,52,52,68,50,53,48,65,66,51,49,52,65,53,69,65,57,70,67,70,50,68,55,50,53,49,67,52,69,48,67,0,48,54,48,53,70,67,49,51,68,48,54,70,67,67,54,54,67,65,65,67,54,67,57,65,57,50,65,57,53,57,70,56,65,53,69,53,55,50,49,67,0,52,48,66,56,50,67,67,70,48,51,55,66,57,54,54,69,50,65,54,66,53,70,52,66,65,67,56,54,57,48,52,55,57,54,57,54,53,65,49,67,0,48,52,68,52,50,70,70,69,57,53,48,67,48,68,48,68,67,51,54,70,53,48,66,56,70,56,49,49,48,70,56,55,50,48,56,55,48,65,50,67,0,70,52,54,54,70,54,49,55,66,52,69,54,54,53,48,68,50,69,52,51,67,56,54,57,48,67,50,48,50,70,49,66,70,70,49,67,54,67,48,68,0,51,65,50,50,55,68,55,53,57,55,56,56,69,55,67,50,50,49,69,66,66,69,51,54,67,55,52,66,52,68,55,55,51,53,52,65,57,66,53,68,0,52,55,68,48,55,57,55,54,67,65,56,53,54,52,70,52,65,54,68,50,57,67,65,53,52,55,55,70,67,67,66,51,70,55,56,66,50,69,65,68,0,70,53,56,56,66,65,54,51,53,69,69,51,65,57,52,56,53,53,70,66,49,50,57,48,56,51,49,70,57,70,57,65,57,68,48,52,68,48,66,68,0,56,55,67,66,69,69,53,49,52,66,70,54,56,54,68,70,65,54,65,66,53,65,70,68,56,48,53,49,49,67,56,70,50,50,51,54,51,69,67,68,0,54,66,55,56,53,57,70,50,70,51,48,68,49,66,50,49,52,50,52,55,57,49,67,69,67,50,53,55,49,49,53,53,51,51,69,56,52,48,53,69,0,52,52,57,55,51,53,53,66,68,67,68,66,54,57,50,67,68,54,50,67,70,55,56,49,53,55,57,54,50,53,51,48,56,53,70,68,65,56,53,69,0,56,67,70,56,51,52,70,55,70,67,51,67,49,53,65,51,52,69,51,67,55,66,51,55,67,55,68,67,66,65,52,70,52,70,70,55,54,54,55,69,0,48,54,57,69,51,53,70,53,56,51,51,50,55,57,52,56,49,55,57,48,50,70,50,66,67,53,69,67,49,69,68,55,51,48,66,49,49,70,56,69,0,70,57,70,54,66,56,51,51,48,48,53,55,53,56,48,48,68,52,56,55,65,57,66,70,52,69,48,50,51,69,66,54,66,57,48,68,69,56,57,70,0,51,66,48,49,54,56,69,68,52,66,69,68,48,56,55,70,66,49,53,51,51,48,65,50,48,48,68,48,50,65,68,65,69,65,57,65,50,56,69,70,0,72,0,76,0,77,0,83,121,115,116,101,109,46,73,79,0,81,0,118,97,108,117,101,95,95,0,69,110,99,111,100,101,68,97,116,97,0,80,110,103,73,109,97,103,101,68,97,116,97,0,76,111,97,100,77,97,116,114,105,120,87,105,116,104,68,97,116,97,0,78,111,110,68,97,116,97,0,65,108,112,104,97,78,117,109,101,114,105,99,0,83,121,115,116,101,109,46,67,111,108,108,101,99,116,105,111,110,115,46,71,101,110,101,114,105,99,0,82,101,97,100,0,65,100,100,0,70,105,120,101,100,0,60,77,97,115,107,67,111,100,101,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,81,82,67,111,100,101,68,105,109,101,110,115,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,81,82,67,111,100,101,73,109,97,103,101,68,105,109,101,110,115,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,81,82,67,111,100,101,86,101,114,115,105,111,110,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,60,81,82,67,111,100,101,77,97,116,114,105,120,62,107,95,95,66,97,99,107,105,110,103,70,105,101,108,100,0,65,112,112,101,110,100,0,70,78,67,49,83,101,99,111,110,100,0,110,101,116,115,116,97,110,100,97,114,100,0,103,101,116,95,77,97,115,107,67,111,100,101,0,115,101,116,95,77,97,115,107,67,111,100,101,0,70,105,108,101,77,111,100,101,0,69,110,99,111,100,105,110,103,83,101,103,77,111,100,101,0,69,110,99,111,100,105,110,103,77,111,100,101,0,67,111,109,112,114,101,115,115,105,111,110,77,111,100,101,0,69,110,99,111,100,101,0,67,82,67,51,50,84,97,98,108,101,0,69,110,99,111,100,105,110,103,84,97,98,108,101,0,73,68,105,115,112,111,115,97,98,108,101,0,82,117,110,116,105,109,101,70,105,101,108,100,72,97,110,100,108,101,0,83,97,118,101,81,82,67,111,100,101,84,111,80,110,103,70,105,108,101,0,70,105,108,101,78,97,109,101,0,70,111,114,109,97,116,73,110,102,111,79,110,101,0,81,82,67,111,100,101,67,111,109,109,97,110,100,76,105,110,101,0,103,101,116,95,81,117,105,101,116,90,111,110,101,0,115,101,116,95,81,117,105,101,116,90,111,110,101,0,67,108,111,110,101,0,86,97,108,117,101,84,121,112,101,0,70,105,108,101,83,104,97,114,101,0,80,110,103,70,105,108,101,83,105,103,110,97,116,117,114,101,0,67,108,111,115,101,0,68,105,115,112,111,115,101,0,84,114,121,80,97,114,115,101,0,68,101,98,117,103,103,101,114,66,114,111,119,115,97,98,108,101,83,116,97,116,101,0,68,97,116,97,87,104,105,116,101,0,70,105,120,101,100,87,104,105,116,101,0,70,111,114,109,97,116,87,104,105,116,101,0,87,114,105,116,101,0,67,111,109,112,105,108,101,114,71,101,110,101,114,97,116,101,100,65,116,116,114,105,98,117,116,101,0,68,101,98,117,103,103,97,98,108,101,65,116,116,114,105,98,117,116,101,0,68,101,98,117,103,103,101,114,66,114,111,119,115,97,98,108,101,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,84,105,116,108,101,65,116,116,114,105,98,117,116,101,0,84,97,114,103,101,116,70,114,97,109,101,119,111,114,107,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,70,105,108,101,86,101,114,115,105,111,110,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,73,110,102,111,114,109,97,116,105,111,110,97,108,86,101,114,115,105,111,110,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,67,111,110,102,105,103,117,114,97,116,105,111,110,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,68,101,115,99,114,105,112,116,105,111,110,65,116,116,114,105,98,117,116,101,0,67,111,109,112,105,108,97,116,105,111,110,82,101,108,97,120,97,116,105,111,110,115,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,80,114,111,100,117,99,116,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,67,111,112,121,114,105,103,104,116,65,116,116,114,105,98,117,116,101,0,65,115,115,101,109,98,108,121,67,111,109,112,97,110,121,65,116,116,114,105,98,117,116,101,0,82,117,110,116,105,109,101,67,111,109,112,97,116,105,98,105,108,105,116,121,65,116,116,114,105,98,117,116,101,0,66,121,116,101,0,118,97,108,117,101,0,103,101,116,95,77,111,100,117,108,101,83,105,122,101,0,115,101,116,95,77,111,100,117,108,101,83,105,122,101,0,73,110,100,101,120,79,102,0,73,110,112,117,116,66,117,102,0,83,105,110,103,108,101,68,97,116,97,83,101,103,0,81,82,67,111,100,101,77,97,116,114,105,120,84,111,80,110,103,0,69,110,99,111,100,105,110,103,0,83,121,115,116,101,109,46,82,117,110,116,105,109,101,46,86,101,114,115,105,111,110,105,110,103,0,83,116,114,105,110,103,0,83,117,98,115,116,114,105,110,103,0,67,111,109,112,117,116,101,83,116,114,105,110,103,72,97,115,104,0,70,108,117,115,104,0,77,97,116,104,0,103,101,116,95,76,101,110,103,116,104,0,83,101,116,68,97,116,97,67,111,100,101,119,111,114,100,115,76,101,110,103,116,104,0,80,111,108,121,76,101,110,103,116,104,0,69,110,100,115,87,105,116,104,0,75,97,110,106,105,0,68,97,116,97,66,108,97,99,107,0,70,105,120,101,100,66,108,97,99,107,0,70,111,114,109,97,116,66,108,97,99,107,0,83,101,101,107,0,80,110,103,73,101,110,100,67,104,117,110,107,0,83,101,108,101,99,116,66,97,115,116,77,97,115,107,0,65,112,112,108,121,77,97,115,107,0,80,111,108,121,110,111,109,105,97,108,0,81,82,67,111,100,101,69,110,99,111,100,101,114,76,105,98,114,97,114,121,46,100,108,108,0,67,111,108,0,70,105,108,101,83,116,114,101,97,109,0,68,101,102,108,97,116,101,83,116,114,101,97,109,0,79,117,116,112,117,116,83,116,114,101,97,109,0,77,101,109,111,114,121,83,116,114,101,97,109,0,83,121,115,116,101,109,0,69,110,117,109,0,67,104,101,99,107,115,117,109,0,66,105,116,66,117,102,102,101,114,76,101,110,0,83,101,101,107,79,114,105,103,105,110,0,80,111,108,121,110,111,109,105,110,97,108,68,105,118,105,115,105,111,110,0,103,101,116,95,81,82,67,111,100,101,68,105,109,101,110,115,105,111,110,0,115,101,116,95,81,82,67,111,100,101,68,105,109,101,110,115,105,111,110,0,103,101,116,95,81,82,67,111,100,101,73,109,97,103,101,68,105,109,101,110,115,105,111,110,0,115,101,116,95,81,82,67,111,100,101,73,109,97,103,101,68,105,109,101,110,115,105,111,110,0,103,101,116,95,81,82,67,111,100,101,86,101,114,115,105,111,110,0,115,101,116,95,81,82,67,111,100,101,86,101,114,115,105,111,110,0,83,121,115,116,101,109,46,73,79,46,67,111,109,112,114,101,115,115,105,111,110,0,90,76,105,98,67,111,109,112,114,101,115,115,105,111,110,0,65,100,100,70,111,114,109,97,116,73,110,102,111,114,109,97,116,105,111,110,0,73,110,105,116,105,97,108,105,122,97,116,105,111,110,0,83,121,115,116,101,109,46,82,101,102,108,101,99,116,105,111,110,0,103,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,115,101,116,95,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,67,97,108,99,117,108,97,116,101,69,114,114,111,114,67,111,114,114,101,99,116,105,111,110,0,65,114,103,117,109,101,110,116,78,117,108,108,69,120,99,101,112,116,105,111,110,0,65,112,112,108,105,99,97,116,105,111,110,69,120,99,101,112,116,105,111,110,0,65,114,103,117,109,101,110,116,69,120,99,101,112,116,105,111,110,0,83,116,114,105,110,103,67,111,109,112,97,114,105,115,111,110,0,65,108,105,103,110,109,101,110,116,80,97,116,116,101,114,110,0,69,67,66,108,111,99,107,73,110,102,111,0,70,111,114,109,97,116,73,110,102,111,84,119,111,0,72,101,108,112,0,73,110,116,84,111,69,120,112,0,67,108,101,97,114,0,67,104,97,114,0,86,101,114,115,105,111,110,78,117,109,98,101,114,0,66,117,105,108,100,80,110,103,72,101,97,100,101,114,0,81,82,69,110,99,111,100,101,114,0,66,105,116,66,117,102,102,101,114,0,66,105,110,97,114,121,87,114,105,116,101,114,0,84,111,76,111,119,101,114,0,84,101,114,109,105,110,97,116,111,114,0,71,101,110,101,114,97,116,111,114,0,46,99,116,111,114,0,46,99,99,116,111,114,0,67,111,100,101,119,111,114,100,115,80,116,114,0,83,121,115,116,101,109,46,68,105,97,103,110,111,115,116,105,99,115,0,77,97,120,68,97,116,97,67,111,100,101,119,111,114,100,115,0,69,114,114,67,111,114,114,67,111,100,101,119,111,114,100,115,0,77,97,120,67,111,100,101,119,111,114,100,115,0,83,121,115,116,101,109,46,82,117,110,116,105,109,101,46,67,111,109,112,105,108,101,114,83,101,114,118,105,99,101,115,0,68,101,98,117,103,103,105,110,103,77,111,100,101,115,0,83,116,97,116,105,99,84,97,98,108,101,115,0,82,101,97,100,65,108,108,66,121,116,101,115,0,71,101,116,66,121,116,101,115,0,65,114,103,115,0,73,110,116,101,114,108,101,97,118,101,66,108,111,99,107,115,0,67,111,110,118,101,114,116,81,82,67,111,100,101,77,97,116,114,105,120,84,111,80,105,120,101,108,115,0,80,111,115,0,103,101,116,95,67,104,97,114,115,0,82,117,110,116,105,109,101,72,101,108,112,101,114,115,0,70,105,108,101,65,99,99,101,115,115,0,65,100,100,114,101,115,115,0,67,111,109,112,114,101,115,115,0,69,110,99,111,100,101,100,68,97,116,97,66,105,116,115,0,77,97,120,68,97,116,97,66,105,116,115,0,68,97,116,97,76,101,110,103,116,104,66,105,116,115,0,83,116,114,105,110,103,68,97,116,97,83,101,103,109,101,110,116,115,0,70,111,114,109,97,116,0,79,98,106,101,99,116,0,71,101,116,0,83,101,116,0,70,105,110,100,101,114,80,97,116,116,101,114,110,66,111,116,116,111,109,76,101,102,116,0,70,105,110,100,101,114,80,97,116,116,101,114,110,84,111,112,76,101,102,116,0,84,101,115,116,86,101,114,116,105,99,97,108,68,97,114,107,76,105,103,104,116,0,84,101,115,116,72,111,114,105,122,111,110,116,97,108,68,97,114,107,76,105,103,104,116,0,70,105,110,100,101,114,80,97,116,116,101,114,110,84,111,112,82,105,103,104,116,0,83,112,108,105,116,0,69,120,112,84,111,73,110,116,0,83,116,114,105,110,103,68,97,116,97,83,101,103,109,101,110,116,0,70,78,67,49,70,105,114,115,116,0,83,121,115,116,101,109,46,84,101,120,116,0,82,101,97,100,65,108,108,84,101,120,116,0,82,111,119,0,77,97,120,0,103,101,116,95,81,82,67,111,100,101,77,97,116,114,105,120,0,115,101,116,95,81,82,67,111,100,101,77,97,116,114,105,120,0,66,117,105,108,100,66,97,115,101,77,97,116,114,105,120,0,77,97,115,107,77,97,116,114,105,120,0,82,101,115,117,108,116,77,97,116,114,105,120,0,86,101,114,115,105,111,110,67,111,100,101,65,114,114,97,121,0,73,110,105,116,105,97,108,105,122,101,65,114,114,97,121,0,68,97,116,97,83,101,103,65,114,114,97,121,0,71,101,110,65,114,114,97,121,0,65,108,105,103,110,109,101,110,116,80,111,115,105,116,105,111,110,65,114,114,97,121,0,84,111,65,114,114,97,121,0,70,111,114,109,97,116,73,110,102,111,65,114,114,97,121,0,83,97,118,101,66,105,116,115,84,111,67,111,100,101,119,111,114,100,115,65,114,114,97,121,0,77,97,120,67,111,100,101,119,111,114,100,115,65,114,114,97,121,0,67,111,112,121,0,81,82,67,111,100,101,69,110,99,111,100,101,114,76,105,98,114,97,114,121,0,111,112,95,69,113,117,97,108,105,116,121,0,73,115,78,117,108,108,79,114,69,109,112,116,121,0,0,47,85,0,110,0,98,0,97,0,108,0,97,0,110,0,99,0,101,0,100,0,32,0,100,0,111,0,117,0,98,0,108,0,101,0,32,0,113,0,117,0,111,0,116,0,101,0,0,9,104,0,101,0,108,0,112,0,0,57,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,111,0,112,0,116,0,105,0,111,0,110,0,46,0,32,0,65,0,114,0,103,0,117,0,109,0,101,0,110,0,116,0,61,0,123,0,48,0,125,0,0,11,101,0,114,0,114,0,111,0,114,0,0,3,101,0,0,13,109,0,111,0,100,0,117,0,108,0,101,0,0,3,109,0,0,11,113,0,117,0,105,0,101,0,116,0,0,3,113,0,0,9,116,0,101,0,120,0,116,0,0,3,116,0,0,7,108,0,111,0,119,0,0,3,108,0,0,13,109,0,101,0,100,0,105,0,117,0,109,0,0,15,113,0,117,0,97,0,114,0,116,0,101,0,114,0,0,9,104,0,105,0,103,0,104,0,0,3,104,0,0,65,69,0,114,0,114,0,111,0,114,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,111,0,112,0,116,0,105,0,111,0,110,0,32,0,105,0,110,0,32,0,101,0,114,0,114,0,111,0,114,0,0,67,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,97,0,114,0,103,0,117,0,109,0,101,0,110,0,116,0,32,0,110,0,111,0,32,0,123,0,48,0,125,0,44,0,32,0,99,0,111,0,100,0,101,0,32,0,123,0,49,0,125,0,0,132,131,81,0,82,0,67,0,111,0,100,0,101,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,114,0,32,0,99,0,111,0,110,0,115,0,111,0,108,0,101,0,32,0,97,0,112,0,112,0,108,0,105,0,99,0,97,0,116,0,105,0,111,0,110,0,32,0,115,0,117,0,112,0,112,0,111,0,114,0,116,0,13,0,10,0,65,0,112,0,112,0,78,0,97,0,109,0,101,0,32,0,91,0,111,0,112,0,116,0,105,0,111,0,110,0,97,0,108,0,32,0,97,0,114,0,103,0,117,0,109,0,101,0,110,0,116,0,115,0,93,0,32,0,105,0,110,0,112,0,117,0,116,0,45,0,102,0,105,0,108,0,101,0,32,0,111,0,117,0,116,0,112,0,117,0,116,0,45,0,102,0,105,0,108,0,101,0,13,0,10,0,79,0,117,0,116,0,112,0,117,0,116,0,32,0,102,0,105,0,108,0,101,0,32,0,109,0,117,0,115,0,116,0,32,0,104,0,97,0,118,0,101,0,32,0,46,0,112,0,110,0,103,0,32,0,101,0,120,0,116,0,101,0,110,0,115,0,105,0,111,0,110,0,13,0,10,0,79,0,112,0,116,0,105,0,111,0,110,0,115,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,32,0,47,0,99,0,111,0,100,0,101,0,58,0,118,0,97,0,108,0,117,0,101,0,32,0,111,0,114,0,32,0,45,0,99,0,111,0,100,0,101,0,58,0,118,0,97,0,108,0,117,0,101,0,32,0,40,0,116,0,104,0,101,0,32,0,58,0,32,0,99,0,97,0,110,0,32,0,98,0,101,0,32,0,61,0,41,0,13,0,10,0,69,0,114,0,114,0,111,0,114,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,108,0,101,0,118,0,101,0,108,0,46,0,32,0,99,0,111,0,100,0,101,0,61,0,91,0,101,0,114,0,114,0,111,0,114,0,124,0,101,0,93,0,44,0,32,0,118,0,97,0,108,0,117,0,101,0,61,0,91,0,108,0,111,0,119,0,124,0,108,0,124,0,109,0,101,0,100,0,105,0,117,0,109,0,124,0,109,0,124,0,113,0,117,0,97,0,114,0,116,0,101,0,114,0,124,0,113,0,124,0,124,0,104,0,105,0,103,0,104,0,124,0,104,0,93,0,44,0,32,0,100,0,101,0,102,0,97,0,117,0,108,0,116,0,61,0,109,0,13,0,10,0,77,0,111,0,100,0,117,0,108,0,101,0,32,0,115,0,105,0,122,0,101,0,46,0,32,0,99,0,111,0,100,0,101,0,61,0,91,0,109,0,111,0,100,0,117,0,108,0,101,0,124,0,109,0,93,0,44,0,32,0,118,0,97,0,108,0,117,0,101,0,61,0,91,0,49,0,45,0,49,0,48,0,48,0,93,0,44,0,32,0,100,0,101,0,102,0,97,0,117,0,108,0,116,0,61,0,50,0,13,0,10,0,81,0,117,0,105,0,101,0,116,0,32,0,122,0,111,0,110,0,101,0,46,0,32,0,99,0,111,0,100,0,101,0,61,0,91,0,113,0,117,0,105,0,101,0,116,0,124,0,113,0,93,0,44,0,32,0,118,0,97,0,108,0,117,0,101,0,61,0,91,0,50,0,45,0,50,0,48,0,48,0,93,0,44,0,32,0,100,0,101,0,102,0,97,0,117,0,108,0,116,0,61,0,52,0,44,0,32,0,109,0,105,0,110,0,61,0,50,0,42,0,119,0,105,0,100,0,116,0,104,0,13,0,10,0,84,0,101,0,120,0,116,0,32,0,102,0,105,0,108,0,101,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,46,0,32,0,99,0,111,0,100,0,101,0,61,0,91,0,116,0,101,0,120,0,116,0,124,0,116,0,93,0,32,0,115,0,101,0,101,0,32,0,110,0,111,0,116,0,101,0,115,0,32,0,98,0,101,0,108,0,111,0,119,0,13,0,10,0,73,0,110,0,112,0,117,0,116,0,32,0,102,0,105,0,108,0,101,0,32,0,105,0,115,0,32,0,98,0,105,0,110,0,97,0,114,0,121,0,32,0,117,0,110,0,108,0,101,0,115,0,115,0,32,0,116,0,101,0,120,0,116,0,32,0,102,0,105,0,108,0,101,0,32,0,111,0,112,0,116,0,105,0,111,0,110,0,32,0,105,0,115,0,32,0,115,0,112,0,101,0,99,0,105,0,102,0,105,0,101,0,100,0,13,0,10,0,73,0,102,0,32,0,105,0,110,0,112,0,117,0,116,0,32,0,102,0,105,0,108,0,101,0,32,0,102,0,111,0,114,0,109,0,97,0,116,0,32,0,105,0,115,0,32,0,116,0,101,0,120,0,116,0,32,0,99,0,104,0,97,0,114,0,97,0,99,0,116,0,101,0,114,0,32,0,115,0,101,0,116,0,32,0,105,0,115,0,32,0,105,0,115,0,111,0,45,0,56,0,56,0,53,0,57,0,45,0,49,0,13,0,10,0,1,127,69,0,114,0,114,0,111,0,114,0,32,0,99,0,111,0,114,0,114,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,105,0,115,0,32,0,105,0,110,0,118,0,97,0,108,0,105,0,100,0,46,0,32,0,77,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,76,0,44,0,32,0,77,0,44,0,32,0,81,0,32,0,111,0,114,0,32,0,72,0,46,0,32,0,68,0,101,0,102,0,97,0,117,0,108,0,116,0,32,0,105,0,115,0,32,0,77,0,0,65,77,0,111,0,100,0,117,0,108,0,101,0,32,0,115,0,105,0,122,0,101,0,32,0,101,0,114,0,114,0,111,0,114,0,46,0,32,0,68,0,101,0,102,0,97,0,117,0,108,0,116,0,32,0,105,0,115,0,32,0,50,0,46,0,0,128,133,81,0,117,0,105,0,101,0,116,0,32,0,122,0,111,0,110,0,101,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,97,0,116,0,32,0,108,0,101,0,97,0,115,0,116,0,32,0,52,0,32,0,116,0,105,0,109,0,101,0,115,0,32,0,116,0,104,0,101,0,32,0,109,0,111,0,100,0,117,0,108,0,101,0,32,0,115,0,105,0,122,0,101,0,46,0,32,0,68,0,101,0,102,0,97,0,117,0,108,0,116,0,32,0,105,0,115,0,32,0,56,0,46,0,0,77,83,0,116,0,114,0,105,0,110,0,103,0,32,0,100,0,97,0,116,0,97,0,32,0,115,0,101,0,103,0,109,0,101,0,110,0,116,0,32,0,105,0,115,0,32,0,110,0,117,0,108,0,108,0,32,0,111,0,114,0,32,0,109,0,105,0,115,0,115,0,105,0,110,0,103,0,0,77,83,0,116,0,114,0,105,0,110,0,103,0,32,0,100,0,97,0,116,0,97,0,32,0,115,0,101,0,103,0,109,0,101,0,110,0,116,0,115,0,32,0,97,0,114,0,101,0,32,0,110,0,117,0,108,0,108,0,32,0,111,0,114,0,32,0,101,0,109,0,112,0,116,0,121,0,0,97,79,0,110,0,101,0,32,0,111,0,102,0,32,0,116,0,104,0,101,0,32,0,115,0,116,0,114,0,105,0,110,0,103,0,32,0,100,0,97,0,116,0,97,0,32,0,115,0,101,0,103,0,109,0,101,0,110,0,116,0,115,0,32,0,105,0,115,0,32,0,110,0,117,0,108,0,108,0,32,0,111,0,114,0,32,0,101,0,109,0,112,0,116,0,121,0,0,91,83,0,105,0,110,0,103,0,108,0,101,0,32,0,100,0,97,0,116,0,97,0,32,0,115,0,101,0,103,0,109,0,101,0,110,0,116,0,32,0,97,0,114,0,103,0,117,0,109,0,101,0,110,0,116,0,32,0,105,0,115,0,32,0,110,0,117,0,108,0,108,0,32,0,111,0,114,0,32,0,101,0,109,0,112,0,116,0,121,0,0,79,68,0,97,0,116,0,97,0,32,0,115,0,101,0,103,0,109,0,101,0,110,0,116,0,115,0,32,0,97,0,114,0,103,0,117,0,109,0,101,0,110,0,116,0,32,0,105,0,115,0,32,0,110,0,117,0,108,0,108,0,32,0,111,0,114,0,32,0,101,0,109,0,112,0,116,0,121,0,0,55,84,0,104,0,101,0,114,0,101,0,32,0,105,0,115,0,32,0,110,0,111,0,32,0,100,0,97,0,116,0,97,0,32,0,116,0,111,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,46,0,0,75,83,0,97,0,118,0,101,0,81,0,82,0,67,0,111,0,100,0,101,0,84,0,111,0,80,0,110,0,103,0,70,0,105,0,108,0,101,0,58,0,32,0,70,0,105,0,108,0,101,0,78,0,97,0,109,0,101,0,32,0,105,0,115,0,32,0,110,0,117,0,108,0,108,0,0,9,46,0,112,0,110,0,103,0,0,105,83,0,97,0,118,0,101,0,81,0,82,0,67,0,111,0,100,0,101,0,84,0,111,0,80,0,110,0,103,0,70,0,105,0,108,0,101,0,58,0,32,0,70,0,105,0,108,0,101,0,78,0,97,0,109,0,101,0,32,0,101,0,120,0,116,0,101,0,110,0,115,0,105,0,111,0,110,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,46,0,112,0,110,0,103,0,0,57,81,0,82,0,67,0,111,0,100,0,101,0,32,0,109,0,117,0,115,0,116,0,32,0,98,0,101,0,32,0,101,0,110,0,99,0,111,0,100,0,101,0,100,0,32,0,102,0,105,0,114,0,115,0,116,0,0,59,73,0,110,0,112,0,117,0,116,0,32,0,100,0,97,0,116,0,97,0,32,0,115,0,116,0,114,0,105,0,110,0,103,0,32,0,105,0,115,0,32,0,116,0,111,0,111,0,32,0,108,0,111,0,110,0,103,0,0,39,69,0,110,0,99,0,111,0,100,0,105,0,110,0,103,0,32,0,109,0,111,0,100,0,101,0,32,0,101,0,114,0,114,0,111,0,114,0,0,0,0,0,85,117,164,225,196,143,21,66,157,234,91,73,97,222,228,49,0,4,32,1,1,8,3,32,0,1,5,32,1,1,17,17,4,32,1,1,14,5,32,1,1,17,73,8,7,6,9,9,8,2,2,9,5,7,3,9,2,9,7,0,2,1,18,109,17,113,16,7,10,21,18,61,1,14,8,8,8,2,2,2,2,2,2,4,32,1,8,3,6,32,1,29,14,29,3,5,21,18,61,1,14,3,32,0,8,4,32,1,3,8,5,32,2,8,3,8,5,32,2,14,8,8,5,32,1,1,19,0,5,32,0,29,19,0,32,7,27,2,14,14,14,14,18,28,2,8,14,8,2,2,2,2,2,14,9,17,20,8,8,14,2,2,2,2,14,29,5,5,0,2,14,14,28,4,32,1,14,8,2,6,14,3,32,0,14,5,0,2,2,14,14,6,0,2,2,14,16,8,6,0,3,14,14,28,28,4,0,1,14,14,5,0,1,29,5,14,4,7,1,17,20,3,7,1,2,3,7,1,8,4,7,2,2,2,5,7,2,29,5,2,4,0,1,2,14,5,0,0,18,128,145,5,32,1,29,5,14,2,29,5,11,7,7,29,29,5,2,8,2,2,8,2,15,7,12,8,2,8,29,5,2,2,2,8,8,2,2,2,7,20,2,2,0,2,0,0,5,32,2,1,8,8,7,20,5,2,0,2,0,0,5,32,2,5,8,8,6,32,3,1,8,8,2,7,7,4,2,2,2,18,81,7,32,2,2,14,17,128,153,13,32,4,1,14,17,128,161,17,128,165,17,128,169,11,7,5,29,5,29,5,29,5,18,85,2,5,32,1,1,18,81,7,32,3,1,29,5,8,8,29,7,15,8,20,2,2,0,2,0,0,8,8,2,8,8,2,8,8,2,2,2,2,20,2,2,0,2,0,0,5,32,2,2,8,8,27,7,22,8,8,29,5,8,17,24,8,8,8,2,2,2,17,24,2,2,2,2,8,2,2,8,2,2,26,7,22,8,8,29,5,8,17,24,8,8,8,2,2,2,8,2,2,8,2,2,2,2,8,8,2,4,7,2,8,2,15,7,11,29,5,8,29,5,8,8,8,8,8,8,2,2,5,0,2,8,8,8,10,0,5,1,18,109,8,18,109,8,8,7,0,3,1,18,109,8,8,9,7,7,8,8,8,2,8,2,2,21,7,17,29,5,8,29,8,8,8,8,8,2,2,2,2,2,2,8,2,2,2,14,7,12,8,8,8,8,8,2,2,2,2,8,2,2,6,32,3,1,8,8,5,10,7,8,8,8,8,2,2,2,2,2,20,7,18,8,8,8,8,2,2,2,2,2,8,8,8,2,2,2,2,2,8,10,7,8,8,8,8,2,2,2,2,8,24,7,22,8,8,8,8,2,2,2,2,2,2,2,8,8,8,2,2,2,2,2,2,2,8,12,7,10,8,13,8,8,2,2,2,2,8,2,25,7,22,8,8,8,2,8,8,8,8,2,2,8,8,2,2,17,20,8,8,8,8,2,2,2,7,20,8,2,0,2,0,0,5,32,2,8,8,8,5,7,2,17,24,8,42,7,39,8,8,8,2,2,8,8,2,2,8,8,2,2,8,5,2,2,29,5,8,8,8,8,8,2,8,8,2,2,2,2,2,8,8,2,2,8,8,2,2,3,32,0,28,8,7,6,8,8,2,2,2,2,6,32,2,16,5,8,8,7,7,5,8,8,2,2,2,9,7,7,8,8,2,2,2,2,2,18,7,16,8,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,16,7,14,8,8,8,2,2,8,2,2,2,2,2,2,2,2,24,7,22,8,8,8,2,2,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,24,7,22,8,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,7,4,29,5,8,9,29,5,11,7,7,29,5,8,9,8,9,8,29,5,26,7,22,8,8,8,29,5,8,8,2,2,8,8,2,8,8,8,2,2,2,2,2,2,2,29,5,12,7,6,8,18,89,18,93,8,29,5,29,5,9,32,3,1,18,81,17,128,181,2,3,32,0,10,7,32,2,10,10,17,128,185,7,32,3,8,29,5,8,8,4,7,2,9,8,8,204,123,19,255,205,45,221,81,4,0,0,0,0,4,1,0,0,0,4,2,0,0,0,4,3,0,0,0,4,4,0,0,0,4,5,0,0,0,4,6,0,0,0,4,7,0,0,0,4,8,0,0,0,4,9,0,0,0,4,10,0,0,0,4,11,0,0,0,4,12,0,0,0,4,13,0,0,0,4,14,0,0,0,4,15,0,0,0,44,86,0,101,0,114,0,32,0,50,0,46,0,48,0,46,0,48,0,32,0,45,0,32,0,50,0,48,0,49,0,57,0,45,0,48,0,53,0,45,0,49,0,53,0,1,0,1,1,1,2,1,4,1,3,1,6,1,7,3,6,29,9,2,6,8,3,6,17,20,3,6,17,24,8,6,20,2,2,0,2,0,0,4,6,29,29,5,4,6,29,17,24,3,6,29,5,2,6,9,8,6,20,5,2,0,2,0,0,3,6,29,8,8,6,20,8,2,0,2,0,0,2,6,5,3,6,17,44,3,6,17,52,4,6,17,128,132,3,6,17,84,3,6,17,108,3,6,17,48,4,6,17,128,128,3,6,17,56,4,6,17,128,164,4,6,17,128,180,4,6,17,128,156,4,6,17,128,140,4,6,17,128,196,4,6,17,128,168,3,6,17,100,4,6,17,128,224,4,6,17,128,192,3,6,17,76,4,6,17,128,204,4,6,17,128,220,3,6,17,60,4,6,17,128,200,3,6,17,112,4,6,17,128,208,3,6,17,116,2,6,10,3,6,17,104,4,6,17,128,152,3,6,17,92,3,6,17,88,4,6,17,128,188,3,6,17,72,4,6,17,128,148,4,6,17,128,184,4,6,17,128,212,4,6,17,128,176,3,6,17,120,3,6,17,80,4,6,17,128,216,4,6,17,128,172,3,6,17,68,3,6,17,64,3,6,17,124,4,6,17,128,144,4,6,17,128,136,4,6,17,128,160,3,6,17,96,7,0,3,9,29,5,8,8,3,0,0,1,4,0,1,1,14,5,0,1,1,29,14,9,32,0,20,2,2,0,2,0,0,10,32,1,1,20,2,2,0,2,0,0,4,32,0,17,20,5,32,1,1,17,20,5,32,1,1,29,14,5,32,1,1,29,5,6,32,1,1,29,29,5,9,0,4,1,29,5,8,29,5,8,5,32,1,8,17,24,4,32,0,29,5,6,0,1,29,5,29,5,4,0,1,9,14,9,40,0,20,2,2,0,2,0,0,3,40,0,8,4,40,0,17,20,8,1,0,8,0,0,0,0,0,30,1,0,1,0,84,2,22,87,114,97,112,78,111,110,69,120,99,101,112,116,105,111,110,84,104,114,111,119,115,1,8,1,0,7,1,0,0,0,0,54,1,0,25,46,78,69,84,83,116,97,110,100,97,114,100,44,86,101,114,115,105,111,110,61,118,50,46,48,1,0,84,14,20,70,114,97,109,101,119,111,114,107,68,105,115,112,108,97,121,78,97,109,101,0,15,1,0,10,85,122,105,32,71,114,97,110,111,116,0,0,10,1,0,5,68,101,98,117,103,0,0,54,1,0,49,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,56,32,85,122,105,32,71,114,97,110,111,116,32,65,108,108,32,114,105,103,104,116,115,32,82,101,115,101,114,118,101,100,0,0,129,69,1,0,129,63,84,104,101,32,81,82,32,67,111,100,101,32,108,105,98,114,97,114,121,32,97,108,108,111,119,115,32,121,111,117,114,32,112,114,111,103,114,97,109,32,116,111,32,99,114,101,97,116,101,32,40,101,110,99,111,100,101,41,32,81,82,32,67,111,100,101,32,105,109,97,103,101,46,32,84,104,101,32,97,116,116,97,99,104,101,100,32,115,111,117,114,99,101,32,99,111,100,101,32,105,115,32,97,32,118,105,115,117,97,108,32,115,116,117,100,105,111,32,115,111,108,117,116,105,111,110,46,32,84,104,101,32,115,111,108,117,116,105,111,110,32,116,97,114,103,101,116,115,32,46,78,69,84,32,102,114,97,109,101,119,111,114,107,32,40,110,101,116,52,54,50,41,32,97,110,100,32,46,78,69,84,32,115,116,97,110,100,97,114,100,32,40,110,101,116,115,116,97,110,100,97,114,100,50,46,48,41,46,32,32,84,104,101,32,115,111,117,114,99,101,32,99,111,100,101,32,105,115,32,119,114,105,116,116,101,110,32,105,110,32,67,35,46,32,73,116,32,105,115,32,97,110,32,111,112,101,110,32,115,111,117,114,99,101,32,99,111,100,101,46,32,70,111,114,32,116,101,115,116,47,100,101,109,111,32,97,112,112,108,105,99,97,116,105,111,110,32,118,105,115,105,116,32,116,104,101,32,112,114,111,106,101,99,116,32,85,82,76,46,0,0,12,1,0,7,50,46,48,46,48,46,48,0,0,10,1,0,5,50,46,48,46,48,0,0,25,1,0,20,81,82,67,111,100,101,69,110,99,111,100,101,114,76,105,98,114,97,114,121,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,247,10,57,181,0,1,77,80,2,0,0,0,162,0,0,0,220,167,0,0,220,137,0,0,0,0,0,0,0,0,0,0,1,0,0,0,19,0,0,0,39,0,0,0,126,168,0,0,126,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,83,68,83,139,101,41,191,68,224,101,71,186,252,145,196,12,234,98,130,1,0,0,0,67,58,92,85,115,101,114,115,92,115,116,97,110,100,97,114,100,117,115,101,114,92,68,111,119,110,108,111,97,100,115,92,81,82,67,111,100,101,69,110,99,111,100,101,114,45,109,97,115,116,101,114,92,81,82,67,111,100,101,69,110,99,111,100,101,114,92,81,82,67,111,100,101,69,110,99,111,100,101,114,76,105,98,114,97,114,121,92,111,98,106,92,68,101,98,117,103,92,110,101,116,115,116,97,110,100,97,114,100,50,46,48,92,81,82,67,111,100,101,69,110,99,111,100,101,114,76,105,98,114,97,114,121,46,112,100,98,0,83,72,65,50,53,54,0,139,101,41,191,68,224,101,167,186,252,145,196,12,234,98,130,247,10,57,53,7,248,82,154,59,7,100,157,10,219,191,2,205,168,0,0,0,0,0,0,0,0,0,0,231,168,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,168,0,0,0,0,0,0,0,0,0,0,0,0,95,67,111,114,68,108,108,77,97,105,110,0,109,115,99,111,114,101,101,46,100,108,108,0,0,0,0,0,0,0,0,255,37,0,32,0,16,6,28,50,0,0,0,0,0,6,34,62,90,118,146,0,0,250,103,221,230,25,18,137,231,0,3,58,242,221,191,110,84,230,8,188,106,96,147,15,131,139,34,101,223,39,101,213,199,237,254,201,123,171,162,194,117,50,96,0,0,0,0,0,0,6,34,62,90,0,0,0,0,215,234,158,94,184,97,118,170,79,187,152,148,252,179,5,98,96,153,0,0,0,0,0,0,168,223,200,104,224,234,108,180,110,190,195,147,205,27,232,201,21,43,245,87,42,195,212,119,242,37,9,123,0,0,0,0,6,28,54,80,106,0,0,0,59,116,79,161,252,98,128,205,128,161,247,57,163,56,235,106,53,26,187,174,226,104,170,7,175,35,181,114,88,41,47,163,125,134,72,20,232,53,35,15,6,30,58,86,114,0,0,0,6,30,58,86,114,142,170,0,82,116,26,247,66,27,62,107,252,182,200,185,235,55,251,242,210,144,154,237,176,141,192,248,152,249,206,85,253,142,65,165,125,23,24,30,122,240,214,6,129,218,29,145,127,134,206,245,117,29,41,63,159,142,233,125,148,123,0,0,0,0,0,0,6,30,58,86,0,0,0,0,5,118,222,180,136,136,162,51,46,117,13,215,81,17,139,247,197,171,95,173,65,137,178,68,111,95,101,41,72,214,169,197,95,7,44,154,77,111,236,40,121,143,63,87,80,253,240,126,217,77,34,232,106,50,168,82,76,146,67,106,171,25,132,93,45,105,0,0,0,0,0,0,183,26,201,84,210,221,113,21,46,65,45,50,238,184,249,225,102,58,209,218,109,165,26,95,184,192,52,245,35,254,238,175,172,79,123,25,122,43,120,108,215,80,128,201,235,8,153,59,101,31,198,76,31,156,0,0,112,94,88,112,253,224,202,115,187,99,89,5,54,113,129,44,58,16,135,216,169,211,36,1,4,96,60,241,73,104,234,8,249,245,119,174,52,25,157,224,43,202,223,19,82,15,0,0,0,0,0,0,8,0,0,0,1,0,0,0,8,0,0,0,2,0,0,0,8,0,0,0,3,0,0,0,8,0,0,0,4,0,0,0,8,0,0,0,5,0,0,0,8,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,7,0,0,0,8,0,0,0,5,0,0,0,8,0,0,0,4,0,0,0,8,0,0,0,3,0,0,0,8,0,0,0,2,0,0,0,8,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,6,26,54,82,110,138,166,0,107,140,26,12,9,141,243,197,226,197,219,45,211,101,219,120,28,181,127,6,100,247,2,205,198,57,115,219,101,109,160,82,37,38,238,49,160,209,121,86,11,124,30,181,84,25,194,87,65,102,190,220,70,27,209,16,89,7,33,240,0,0,0,0,6,26,48,70,0,0,0,0,6,30,56,82,108,134,0,0,6,26,46,0,0,0,0,0,7,7,7,7,7,7,6,6,6,7,7,6,7,6,7,7,6,6,6,7,7,7,7,7,7,0,0,0,0,0,0,0,6,32,58,84,110,136,162,0,0,0,0,0,150,48,7,119,44,97,14,238,186,81,9,153,25,196,109,7,143,244,106,112,53,165,99,233,163,149,100,158,50,136,219,14,164,184,220,121,30,233,213,224,136,217,210,151,43,76,182,9,189,124,177,126,7,45,184,231,145,29,191,144,100,16,183,29,242,32,176,106,72,113,185,243,222,65,190,132,125,212,218,26,235,228,221,109,81,181,212,244,199,133,211,131,86,152,108,19,192,168,107,100,122,249,98,253,236,201,101,138,79,92,1,20,217,108,6,99,99,61,15,250,245,13,8,141,200,32,110,59,94,16,105,76,228,65,96,213,114,113,103,162,209,228,3,60,71,212,4,75,253,133,13,210,107,181,10,165,250,168,181,53,108,152,178,66,214,201,187,219,64,249,188,172,227,108,216,50,117,92,223,69,207,13,214,220,89,61,209,171,172,48,217,38,58,0,222,81,128,81,215,200,22,97,208,191,181,244,180,33,35,196,179,86,153,149,186,207,15,165,189,184,158,184,2,40,8,136,5,95,178,217,12,198,36,233,11,177,135,124,111,47,17,76,104,88,171,29,97,193,61,45,102,182,144,65,220,118,6,113,219,1,188,32,210,152,42,16,213,239,137,133,177,113,31,181,182,6,165,228,191,159,51,212,184,232,162,201,7,120,52,249,0,15,142,168,9,150,24,152,14,225,187,13,106,127,45,61,109,8,151,108,100,145,1,92,99,230,244,81,107,107,98,97,108,28,216,48,101,133,78,0,98,242,237,149,6,108,123,165,1,27,193,244,8,130,87,196,15,245,198,217,176,101,80,233,183,18,234,184,190,139,124,136,185,252,223,29,221,98,73,45,218,21,243,124,211,140,101,76,212,251,88,97,178,77,206,81,181,58,116,0,188,163,226,48,187,212,65,165,223,74,215,149,216,61,109,196,209,164,251,244,214,211,106,233,105,67,252,217,110,52,70,136,103,173,208,184,96,218,115,45,4,68,229,29,3,51,95,76,10,170,201,124,13,221,60,113,5,80,170,65,2,39,16,16,11,190,134,32,12,201,37,181,104,87,179,133,111,32,9,212,102,185,159,228,97,206,14,249,222,94,152,201,217,41,34,152,208,176,180,168,215,199,23,61,179,89,129,13,180,46,59,92,189,183,173,108,186,192,32,131,184,237,182,179,191,154,12,226,182,3,154,210,177,116,57,71,213,234,175,119,210,157,21,38,219,4,131,22,220,115,18,11,99,227,132,59,100,148,62,106,109,13,168,90,106,122,11,207,14,228,157,255,9,147,39,174,0,10,177,158,7,125,68,147,15,240,210,163,8,135,104,242,1,30,254,194,6,105,93,87,98,247,203,103,101,128,113,54,108,25,231,6,107,110,118,27,212,254,224,43,211,137,90,122,218,16,204,74,221,103,111,223,185,249,249,239,190,142,67,190,183,23,213,142,176,96,232,163,214,214,126,147,209,161,196,194,216,56,82,242,223,79,241,103,187,209,103,87,188,166,221,6,181,63,75,54,178,72,218,43,13,216,76,27,10,175,246,74,3,54,96,122,4,65,195,239,96,223,85,223,103,168,239,142,110,49,121,190,105,70,140,179,97,203,26,131,102,188,160,210,111,37,54,226,104,82,149,119,12,204,3,71,11,187,185,22,2,34,47,38,5,85,190,59,186,197,40,11,189,178,146,90,180,43,4,106,179,92,167,255,215,194,49,207,208,181,139,158,217,44,29,174,222,91,176,194,100,155,38,242,99,236,156,163,106,117,10,147,109,2,169,6,9,156,63,54,14,235,133,103,7,114,19,87,0,5,130,74,191,149,20,122,184,226,174,43,177,123,56,27,182,12,155,142,210,146,13,190,213,229,183,239,220,124,33,223,219,11,212,210,211,134,66,226,212,241,248,179,221,104,110,131,218,31,205,22,190,129,91,38,185,246,225,119,176,111,119,71,183,24,230,90,8,136,112,106,15,255,202,59,6,102,92,11,1,17,255,158,101,143,105,174,98,248,211,255,107,97,69,207,108,22,120,226,10,160,238,210,13,215,84,131,4,78,194,179,3,57,97,38,103,167,247,22,96,208,77,71,105,73,219,119,110,62,74,106,209,174,220,90,214,217,102,11,223,64,240,59,216,55,83,174,188,169,197,158,187,222,127,207,178,71,233,255,181,48,28,242,189,189,138,194,186,202,48,147,179,83,166,163,180,36,5,54,208,186,147,6,215,205,41,87,222,84,191,103,217,35,46,122,102,179,184,74,97,196,2,27,104,93,148,43,111,42,55,190,11,180,161,142,12,195,27,223,5,90,141,239,2,45,7,7,7,7,7,7,7,6,2,7,6,6,6,6,6,7,6,2,7,6,7,7,7,6,7,6,2,7,6,7,7,7,6,7,6,2,7,6,7,7,7,6,7,6,2,7,6,6,6,6,6,7,6,2,7,7,7,7,7,7,7,6,2,6,6,6,6,6,6,6,6,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,6,28,54,80,106,132,158,0,120,104,107,109,102,161,76,3,91,191,147,169,182,194,225,120,8,0,0,0,255,255,255,255,8,0,0,0,254,255,255,255,8,0,0,0,253,255,255,255,8,0,0,0,252,255,255,255,8,0,0,0,251,255,255,255,8,0,0,0,250,255,255,255,8,0,0,0,249,255,255,255,8,0,0,0,248,255,255,255,249,255,255,255,8,0,0,0,250,255,255,255,8,0,0,0,251,255,255,255,8,0,0,0,252,255,255,255,8,0,0,0,253,255,255,255,8,0,0,0,254,255,255,255,8,0,0,0,255,255,255,255,8,0,0,0,148,124,0,0,188,133,0,0,153,154,0,0,211,164,0,0,246,187,0,0,98,199,0,0,71,216,0,0,13,230,0,0,40,249,0,0,120,11,1,0,93,20,1,0,23,42,1,0,50,53,1,0,166,73,1,0,131,86,1,0,201,104,1,0,236,119,1,0,196,142,1,0,225,145,1,0,171,175,1,0,142,176,1,0,26,204,1,0,63,211,1,0,117,237,1,0,80,242,1,0,213,9,2,0,240,22,2,0,186,40,2,0,159,55,2,0,11,75,2,0,46,84,2,0,100,106,2,0,65,117,2,0,105,140,2,0,1,19,0,0,1,16,0,0,1,13,0,0,1,9,0,0,1,34,0,0,1,28,0,0,1,22,0,0,1,16,0,0,1,55,0,0,1,44,0,0,2,17,0,0,2,13,0,0,1,80,0,0,2,32,0,0,2,24,0,0,4,9,0,0,1,108,0,0,2,43,0,0,2,15,2,16,2,11,2,12,2,68,0,0,4,27,0,0,4,19,0,0,4,15,0,0,2,78,0,0,4,31,0,0,2,14,4,15,4,13,1,14,2,97,0,0,2,38,2,39,4,18,2,19,4,14,2,15,2,116,0,0,3,36,2,37,4,16,4,17,4,12,4,13,2,68,2,69,4,43,1,44,6,19,2,20,6,15,2,16,4,81,0,0,1,50,4,51,4,22,4,23,3,12,8,13,2,92,2,93,6,36,2,37,4,20,6,21,7,14,4,15,4,107,0,0,8,37,1,38,8,20,4,21,12,11,4,12,3,115,1,116,4,40,5,41,11,16,5,17,11,12,5,13,5,87,1,88,5,41,5,42,5,24,7,25,11,12,7,13,5,98,1,99,7,45,3,46,15,19,2,20,3,15,13,16,1,107,5,108,10,46,1,47,1,22,15,23,2,14,17,15,5,120,1,121,9,43,4,44,17,22,1,23,2,14,19,15,3,113,4,114,3,44,11,45,17,21,4,22,9,13,16,14,3,107,5,108,3,41,13,42,15,24,5,25,15,15,10,16,4,116,4,117,17,42,0,0,17,22,6,23,19,16,6,17,2,111,7,112,17,46,0,0,7,24,16,25,34,13,0,0,4,121,5,122,4,47,14,48,11,24,14,25,16,15,14,16,6,117,4,118,6,45,14,46,11,24,16,25,30,16,2,17,8,106,4,107,8,47,13,48,7,24,22,25,22,15,13,16,10,114,2,115,19,46,4,47,28,22,6,23,33,16,4,17,8,122,4,123,22,45,3,46,8,23,26,24,12,15,28,16,3,117,10,118,3,45,23,46,4,24,31,25,11,15,31,16,7,116,7,117,21,45,7,46,1,23,37,24,19,15,26,16,5,115,10,116,19,47,10,48,15,24,25,25,23,15,25,16,13,115,3,116,2,46,29,47,42,24,1,25,23,15,28,16,17,115,0,0,10,46,23,47,10,24,35,25,19,15,35,16,17,115,1,116,14,46,21,47,29,24,19,25,11,15,46,16,13,115,6,116,14,46,23,47,44,24,7,25,59,16,1,17,12,121,7,122,12,47,26,48,39,24,14,25,22,15,41,16,6,121,14,122,6,47,34,48,46,24,10,25,2,15,64,16,17,122,4,123,29,46,14,47,49,24,10,25,24,15,46,16,4,122,18,123,13,46,32,47,48,24,14,25,42,15,32,16,20,117,4,118,40,47,7,48,43,24,22,25,10,15,67,16,19,118,6,119,18,47,31,48,34,24,34,25,20,15,61,16,251,67,46,61,118,70,64,94,32,45,0,0,0,0,0,0,18,84,0,0,37,81,0,0,124,94,0,0,75,91,0,0,249,69,0,0,206,64,0,0,151,79,0,0,160,74,0,0,196,119,0,0,243,114,0,0,170,125,0,0,157,120,0,0,47,102,0,0,24,99,0,0,65,108,0,0,118,105,0,0,137,22,0,0,190,19,0,0,231,28,0,0,208,25,0,0,98,7,0,0,85,2,0,0,12,13,0,0,59,8,0,0,95,53,0,0,104,48,0,0,49,63,0,0,6,58,0,0,180,36,0,0,131,33,0,0,218,46,0,0,237,43,0,0,41,173,145,152,216,31,179,182,50,48,110,86,239,96,222,125,42,173,226,193,224,130,156,37,251,216,238,40,192,180,0,0,0,0,0,0,26,0,0,0,44,0,0,0,70,0,0,0,100,0,0,0,134,0,0,0,172,0,0,0,196,0,0,0,242,0,0,0,36,1,0,0,90,1,0,0,148,1,0,0,210,1,0,0,20,2,0,0,69,2,0,0,143,2,0,0,221,2,0,0,47,3,0,0,133,3,0,0,223,3,0,0,61,4,0,0,132,4,0,0,234,4,0,0,84,5,0,0,194,5,0,0,52,6,0,0,170,6,0,0,36,7,0,0,129,7,0,0,3,8,0,0,137,8,0,0,19,9,0,0,161,9,0,0,51,10,0,0,201,10,0,0,60,11,0,0,218,11,0,0,124,12,0,0,34,13,0,0,204,13,0,0,122,14,0,0,0,0,0,0,6,30,54,0,0,0,0,0,10,6,106,190,249,167,4,67,209,138,138,32,242,123,89,27,120,185,80,156,38,60,171,60,28,222,80,52,254,185,220,241,137,80,78,71,13,10,26,10,6,26,50,74,0,0,0,0,173,125,158,2,103,182,118,17,145,201,111,28,165,53,161,21,245,142,13,102,48,227,153,145,218,70,0,0,0,0,0,0,6,28,50,72,94,0,0,0,116,50,86,186,50,220,251,89,192,46,86,127,124,19,184,233,151,215,22,14,59,145,37,242,203,134,254,89,190,94,59,65,124,113,100,233,235,121,22,76,86,97,39,242,200,220,101,33,239,254,116,51,0,0,0,0,210,171,247,242,93,230,14,109,221,53,200,74,8,172,98,80,219,134,160,105,165,231,0,0,6,26,46,66,0,0,0,0,17,60,79,50,61,163,26,187,202,180,221,225,83,239,156,164,212,212,188,190,0,0,0,0,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,6,2,7,6,6,6,6,6,7,6,2,7,6,7,7,7,6,7,6,2,7,6,7,7,7,6,7,6,2,7,6,7,7,7,6,7,6,2,7,6,6,6,6,6,7,6,2,7,7,7,7,7,7,7,6,2,8,183,61,91,202,37,51,58,58,237,140,124,5,99,105,0,6,7,7,7,7,7,7,7,6,7,6,6,6,6,6,7,6,7,6,7,7,7,6,7,6,7,6,7,7,7,6,7,6,7,6,7,7,7,6,7,6,7,6,6,6,6,6,7,6,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,2,2,2,2,2,2,2,2,232,125,157,161,164,9,118,46,209,99,203,193,35,3,209,111,195,242,203,225,46,13,32,160,126,209,130,160,242,215,242,75,77,42,189,32,113,65,124,69,228,114,235,175,124,170,215,232,133,205,0,0,0,0,0,0,247,159,223,33,224,93,77,70,90,160,32,254,43,150,84,101,190,205,133,52,60,202,165,220,203,151,93,84,15,84,253,173,160,89,227,52,199,97,95,231,52,177,41,125,137,241,166,225,118,2,54,32,82,215,175,198,43,238,235,27,101,184,127,3,5,8,163,238,0,0,0,0,6,26,50,74,98,122,0,0,6,30,54,78,102,126,150,0,6,34,62,0,0,0,0,0,0,0,1,25,2,50,26,198,3,223,51,238,27,104,199,75,4,100,224,14,52,141,239,129,28,193,105,248,200,8,76,113,5,138,101,47,225,36,15,33,53,147,142,218,240,18,130,69,29,181,194,125,106,39,249,185,201,154,9,120,77,228,114,166,6,191,139,98,102,221,48,253,226,152,37,179,16,145,34,136,54,208,148,206,143,150,219,189,241,210,19,92,131,56,70,64,30,66,182,163,195,72,126,110,107,58,40,84,250,133,186,61,202,94,155,159,10,21,121,43,78,212,229,172,115,243,167,87,7,112,192,247,140,128,99,13,103,74,222,237,49,197,254,24,227,165,153,119,38,184,180,124,17,68,146,217,35,32,137,46,55,63,209,91,149,188,207,205,144,135,151,178,220,252,190,97,242,86,211,171,20,42,93,158,132,60,57,83,71,109,65,162,31,45,67,216,183,123,164,118,196,23,73,236,127,12,111,246,108,161,59,82,41,157,85,170,251,96,134,177,187,204,62,90,203,89,95,176,156,169,160,81,11,245,22,235,122,117,44,215,79,174,213,233,230,231,173,232,116,214,244,234,168,80,88,175,45,51,175,9,7,158,159,49,68,119,92,123,177,204,187,254,200,78,141,149,119,26,127,53,160,93,199,212,29,24,145,156,208,150,218,209,4,216,91,47,184,146,47,140,195,195,125,242,238,63,99,108,140,230,242,31,204,11,178,243,217,156,213,231,6,30,56,82,0,0,0,0,6,34,60,86,112,138,0,0,6,26,52,78,104,130,0,0,111,77,146,94,26,21,108,19,105,94,113,193,86,140,163,125,58,158,229,239,218,103,56,70,114,61,183,129,167,13,98,62,129,51,0,0,0,0,0,0,43,139,206,78,43,239,123,206,214,147,24,99,150,39,243,163,136,0,0,0,0,0,0,0,1,2,4,8,16,32,64,128,29,58,116,232,205,135,19,38,76,152,45,90,180,117,234,201,143,3,6,12,24,48,96,192,157,39,78,156,37,74,148,53,106,212,181,119,238,193,159,35,70,140,5,10,20,40,80,160,93,186,105,210,185,111,222,161,95,190,97,194,153,47,94,188,101,202,137,15,30,60,120,240,253,231,211,187,107,214,177,127,254,225,223,163,91,182,113,226,217,175,67,134,17,34,68,136,13,26,52,104,208,189,103,206,129,31,62,124,248,237,199,147,59,118,236,197,151,51,102,204,133,23,46,92,184,109,218,169,79,158,33,66,132,21,42,84,168,77,154,41,82,164,85,170,73,146,57,114,228,213,183,115,230,209,191,99,198,145,63,126,252,229,215,179,123,246,241,255,227,219,171,75,150,49,98,196,149,55,110,220,165,87,174,65,130,25,50,100,200,141,7,14,28,56,112,224,221,167,83,166,81,162,89,178,121,242,249,239,195,155,43,86,172,69,138,9,18,36,72,144,61,122,244,245,247,243,251,235,203,139,11,22,44,88,176,125,250,233,207,131,27,54,108,216,173,71,142,1,2,4,8,16,32,64,128,29,58,116,232,205,135,19,38,76,152,45,90,180,117,234,201,143,3,6,12,24,48,96,192,157,39,78,156,37,74,148,53,106,212,181,119,238,193,159,35,70,140,5,10,20,40,80,160,93,186,105,210,185,111,222,161,95,190,97,194,153,47,94,188,101,202,137,15,30,60,120,240,253,231,211,187,107,214,177,127,254,225,223,163,91,182,113,226,217,175,67,134,17,34,68,136,13,26,52,104,208,189,103,206,129,31,62,124,248,237,199,147,59,118,236,197,151,51,102,204,133,23,46,92,184,109,218,169,79,158,33,66,132,21,42,84,168,77,154,41,82,164,85,170,73,146,57,114,228,213,183,115,230,209,191,99,198,145,63,126,252,229,215,179,123,246,241,255,227,219,171,75,150,49,98,196,149,55,110,220,165,87,174,65,130,25,50,100,200,141,7,14,28,56,112,224,221,167,83,166,81,162,89,178,121,242,249,239,195,155,43,86,172,69,138,9,18,36,72,144,61,122,244,245,247,243,251,235,203,139,11,22,44,88,176,125,250,233,207,131,27,54,108,216,173,71,142,1,0,65,202,113,98,71,223,248,118,214,94,0,122,37,23,2,228,58,121,7,105,135,78,243,118,70,76,223,89,72,50,70,111,194,17,212,126,181,35,221,117,235,11,229,149,147,123,213,40,115,6,200,100,26,246,182,218,127,215,36,186,110,106,0,0,6,24,50,76,102,128,154,0,87,229,146,149,238,102,21,0,6,22,38,0,0,0,0,0,6,34,62,90,118,0,0,0,6,30,54,78,102,0,0,0,74,152,176,100,86,100,106,104,130,218,206,140,78,0,0,0,0,0,0,0,73,69,78,68,174,66,96,130,0,0,0,0,200,183,98,16,172,31,246,234,60,152,115,0,167,152,113,248,238,107,18,63,218,37,87,210,105,177,120,74,121,196,117,251,113,233,30,120,0,0,0,0,6,26,50,74,98,0,0,0,6,24,42,0,0,0,0,0,228,25,196,130,211,146,60,24,251,90,39,102,240,61,178,63,46,123,115,18,221,111,135,160,182,205,107,206,95,150,120,184,91,21,247,156,140,238,191,11,94,227,84,50,163,39,34,108,6,30,54,78,0,0,0,0,6,32,58,0,0,0,0,0,190,7,61,121,71,246,69,55,168,188,89,243,191,25,72,123,9,145,14,247,1,238,44,78,143,62,224,126,118,114,68,163,52,194,217,147,204,169,37,130,113,102,73,181,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,36,45,45,45,37,38,45,45,45,45,39,40,45,41,42,43,0,1,2,3,4,5,6,7,8,9,44,45,45,45,45,45,45,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,106,120,107,157,164,216,112,116,2,91,248,163,36,201,202,229,6,144,254,155,135,208,170,209,12,139,127,142,182,249,177,174,190,28,10,85,239,184,101,124,152,206,96,23,163,61,27,196,247,151,154,202,207,20,61,10,229,121,135,48,211,117,251,126,159,180,169,152,192,226,228,218,111,0,117,232,87,96,227,21,6,32,58,84,110,0,0,0,6,30,58,86,114,142,0,0,6,30,54,78,102,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,24,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,48,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,72,0,0,0,88,192,0,0,28,6,0,0,0,0,0,0,0,0,0,0,28,6,52,0,0,0,86,0,83,0,95,0,86,0,69,0,82,0,83,0,73,0,79,0,78,0,95,0,73,0,78,0,70,0,79,0,0,0,0,0,189,4,239,254,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,63,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,1,0,86,0,97,0,114,0,70,0,105,0,108,0,101,0,73,0,110,0,102,0,111,0,0,0,0,0,36,0,4,0,0,0,84,0,114,0,97,0,110,0,115,0,108,0,97,0,116,0,105,0,111,0,110,0,0,0,0,0,0,0,176,4,124,5,0,0,1,0,83,0,116,0,114,0,105,0,110,0,103,0,70,0,105,0,108,0,101,0,73,0,110,0,102,0,111,0,0,0,88,5,0,0,1,0,48,0,48,0,48,0,48,0,48,0,52,0,98,0,48,0,0,0,152,2,64,1,1,0,67,0,111,0,109,0,109,0,101,0,110,0,116,0,115,0,0,0,84,0,104,0,101,0,32,0,81,0,82,0,32,0,67,0,111,0,100,0,101,0,32,0,108,0,105,0,98,0,114,0,97,0,114,0,121,0,32,0,97,0,108,0,108,0,111,0,119,0,115,0,32,0,121,0,111,0,117,0,114,0,32,0,112,0,114,0,111,0,103,0,114,0,97,0,109,0,32,0,116,0,111,0,32,0,99,0,114,0,101,0,97,0,116,0,101,0,32,0,40,0,101,0,110,0,99,0,111,0,100,0,101,0,41,0,32,0,81,0,82,0,32,0,67,0,111,0,100,0,101,0,32,0,105,0,109,0,97,0,103,0,101,0,46,0,32,0,84,0,104,0,101,0,32,0,97,0,116,0,116,0,97,0,99,0,104,0,101,0,100,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,99,0,111,0,100,0,101,0,32,0,105,0,115,0,32,0,97,0,32,0,118,0,105,0,115,0,117,0,97,0,108,0,32,0,115,0,116,0,117,0,100,0,105,0,111,0,32,0,115,0,111,0,108,0,117,0,116,0,105,0,111,0,110,0,46,0,32,0,84,0,104,0,101,0,32,0,115,0,111,0,108,0,117,0,116,0,105,0,111,0,110,0,32,0,116,0,97,0,114,0,103,0,101,0,116,0,115,0,32,0,46,0,78,0,69,0,84,0,32,0,102,0,114,0,97,0,109,0,101,0,119,0,111,0,114,0,107,0,32,0,40,0,110,0,101,0,116,0,52,0,54,0,50,0,41,0,32,0,97,0,110,0,100,0,32,0,46,0,78,0,69,0,84,0,32,0,115,0,116,0,97,0,110,0,100,0,97,0,114,0,100,0,32,0,40,0,110,0,101,0,116,0,115,0,116,0,97,0,110,0,100,0,97,0,114,0,100,0,50,0,46,0,48,0,41,0,46,0,32,0,32,0,84,0,104,0,101,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,99,0,111,0,100,0,101,0,32,0,105,0,115,0,32,0,119,0,114,0,105,0,116,0,116,0,101,0,110,0,32,0,105,0,110,0,32,0,67,0,35,0,46,0,32,0,73,0,116,0,32,0,105,0,115,0,32,0,97,0,110,0,32,0,111,0,112,0,101,0,110,0,32,0,115,0,111,0,117,0,114,0,99,0,101,0,32,0,99,0,111,0,100,0,101,0,46,0,32,0,70,0,111,0,114,0,32,0,116,0,101,0,115,0,116,0,47,0,100,0,101,0,109,0,111,0,32,0,97,0,112,0,112,0,108,0,105,0,99,0,97,0,116,0,105,0,111,0,110,0,32,0,118,0,105,0,115,0,105,0,116,0,32,0,116,0,104,0,101,0,32,0,112,0,114,0,111,0,106,0,101,0,99,0,116,0,32,0,85,0,82,0,76,0,46,0,0,0,54,0,11,0,1,0,67,0,111,0,109,0,112,0,97,0,110,0,121,0,78,0,97,0,109,0,101,0,0,0,0,0,85,0,122,0,105,0,32,0,71,0,114,0,97,0,110,0,111,0,116,0,0,0,0,0,82,0,21,0,1,0,70,0,105,0,108,0,101,0,68,0,101,0,115,0,99,0,114,0,105,0,112,0,116,0,105,0,111,0,110,0,0,0,0,0,81,0,82,0,67,0,111,0,100,0,101,0,69,0,110,0,99,0,111,0,100,0,101,0,114,0,76,0,105,0,98,0,114,0,97,0,114,0,121,0,0,0,0,0,48,0,8,0,1,0,70,0,105,0,108,0,101,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,0,0,0,0,50,0,46,0,48,0,46,0,48,0,46,0,48,0,0,0,82,0,25,0,1,0,73,0,110,0,116,0,101,0,114,0,110,0,97,0,108,0,78,0,97,0,109,0,101,0,0,0,81,0,82,0,67,0,111,0,100,0,101,0,69,0,110,0,99,0,111,0,100,0,101,0,114,0,76,0,105,0,98,0,114,0,97,0,114,0,121,0,46,0,100,0,108,0,108,0,0,0,0,0,136,0,50,0,1,0,76,0,101,0,103,0,97,0,108,0,67,0,111,0,112,0,121,0,114,0,105,0,103,0,104,0,116,0,0,0,67,0,111,0,112,0,121,0,114,0,105,0,103,0,104,0,116,0,32,0,40,0,99,0,41,0,32,0,50,0,48,0,49,0,56,0,32,0,85,0,122,0,105,0,32,0,71,0,114,0,97,0,110,0,111,0,116,0,32,0,65,0,108,0,108,0,32,0,114,0,105,0,103,0,104,0,116,0,115,0,32,0,82,0,101,0,115,0,101,0,114,0,118,0,101,0,100,0,0,0,90,0,25,0,1,0,79,0,114,0,105,0,103,0,105,0,110,0,97,0,108,0,70,0,105,0,108,0,101,0,110,0,97,0,109,0,101,0,0,0,81,0,82,0,67,0,111,0,100,0,101,0,69,0,110,0,99,0,111,0,100,0,101,0,114,0,76,0,105,0,98,0,114,0,97,0,114,0,121,0,46,0,100,0,108,0,108,0,0,0,0,0,74,0,21,0,1,0,80,0,114,0,111,0,100,0,117,0,99,0,116,0,78,0,97,0,109,0,101,0,0,0,0,0,81,0,82,0,67,0,111,0,100,0,101,0,69,0,110,0,99,0,111,0,100,0,101,0,114,0,76,0,105,0,98,0,114,0,97,0,114,0,121,0,0,0,0,0,48,0,6,0,1,0,80,0,114,0,111,0,100,0,117,0,99,0,116,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,0,0,50,0,46,0,48,0,46,0,48,0,0,0,56,0,8,0,1,0,65,0,115,0,115,0,101,0,109,0,98,0,108,0,121,0,32,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,0,0,50,0,46,0,48,0,46,0,48,0,46,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,12,0,0,0,252,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,".Split(',') -as [Byte[]]) | Out-Null;
  }
 }

# Main QR code generation part.
Process {
$exportname = $($qrtext -ireplace "\/\/","" -ireplace ":","" -ireplace "\.","");
$exportname = $exportname -ireplace "\/","";

<## using zxing.portable.dll ##>
if ($toSVG) {

$qrtosvg = [ZXing.BarcodeWriterSvg]::new(); 
$qrtosvg.Format = [ZXing.BarcodeFormat]::QR_CODE;
$qrtosvg.Options.Margin = 50;
$qrtosvg.Options.Height = 20; $qrtosvg.Options.Width = 20;
$svgwriter = $qrtosvg.Write("$($qrtext)");
$svgwriter.Content | Set-Content ".\$($exportname)_SVG.html";
return $(Start-Process ".\$($exportname)_SVG.html");
}
if ($toASCII) {

$qrtoascii = [ZXing.BarcodeWriterGeneric]::new(); 
$qrtoascii.Format =[ZXing.BarcodeFormat]::QR_CODE;
$qrasciipx = $qrtoascii.Encode("$($qrtext)"); 
$qrasciipx.ToString() | Set-Content ".\$($exportname)_ASCII.txt";
return $(Start-Process ".\$($exportname)_ASCII.txt");
}

<## using QRCodeEncoderLibrary.QREncoder.dll ##>
$QRimagewriter = New-Object QRCodeEncoderLibrary.QREncoder -ErrorAction Stop;
$QRimagewriter.Encode("$($qrtext)");
$path = Resolve-Path ".\";
$QRimagewriter.SaveQRCodeToPngFile("$($path)\$($exportname).png");
 }
}

<# Export module functions.. #>



Export-ModuleMember -Function @('Convert-NameToMD5',
                                'Get-ImageSize',
                                'Get-ImagePxRnd',
                                'Resolve-RndPx',
                                'Get-ImagePxAreaHash',
                                'Get-ImageMetadata',
                                'Set-ImageMetadata',
                                'ConvertFrom-ColorHexARGB',
                                'Get-GreyValue',
                                'Get-GreyScale',
                                'Get-ImageScaledSize',
                                'ConvertTo-Histogram',
                                'Resolve-HistogramData',
                                'Add-ImageWaterMark',
                                'Test-ImageInfo',
                                'Convert-ToImageSource',
                                'ConvertFrom-ToB64Image',
                                'Get-ImageFromUri',
                                'Get-QRFromText');