-- jeu de cartes GOLFE by Yann Henaux -- mon prem' en Lua function lg() return platform.window:width() end function ha() return platform.window:height() end function init(m) if m=="NOUVELLE PARTIE" then jeu=crejeu52() melange(jeu) end pio={} tas={{},{},{},{},{},{5,5,5,5,5,5,5}} dep={} local i,j,k -- creation de la pioche for i=1,16 do pio[i]=jeu[i] end pio["n"]=16 -- creations des tas de jeu 7 colonnes de 5 cartes k=17 for i=1,5 do for j=1,7 do tas[i][j]=jeu[k] k=k+1 end end tas["n"]=35 -- premiere carte pour jouer dep[1]=jeu[52] dep["n"]=1 -- variables globales xcsr=1 dcsr=false perdu,gagne=false,false dcoup,dcol=0,0 end function val(c) return tonumber(string.sub(c,2)) end function crejeu52() local i,j,l l={} for i=0,3 do for j=1,13 do l[j+i*13]=string.sub("pctk",i+1,i+1)..j end end return l end function melange(l) local i,p for i=1,52 do p=math.random(1,52) l[i],l[p]=l[p],l[i] end end function afcarte(c,x,y) local co,v,t co=string.sub(c,1,1) v=val(c) t=string.sub("A23456789XVDR",v,v) if co=="k" then platform.gc():drawImage(cartek,x,y) platform.gc():setColorRGB(255,0,0) elseif co=="c" then platform.gc():drawImage(cartec,x,y) platform.gc():setColorRGB(255,0,0) elseif co=="p" then platform.gc():drawImage(cartep,x,y) platform.gc():setColorRGB(0,0,0) elseif co=="t" then platform.gc():drawImage(cartet,x,y) platform.gc():setColorRGB(0,0,0) end platform.gc():setFont("serif","b",6) platform.gc():drawString(t,x+3,y-1,"top") end function afplateau() local i,j,x,y for j=1,7 do x=(j-1)*36 for i=1,tas[6][j] do y=(i-1)*14 afcarte(tas[i][j],x,y) end end end function afdep(n) local i for i=1,n do local x=(i-1)*6 afcarte(dep[i],x,164) end end function afpio(n) platform.gc():setColorRGB(0,0,0) if n>0 then platform.gc():drawImage(dos,280,22) platform.gc():setFont("serif","r",6) platform.gc():drawString(n,285,88) else platform.gc():drawRect(280,22,31,46) end end function afcsr(x) x=(x-1)*36+10 platform.gc():drawImage(csr,x,104) end function afmenu(gc) gc:setColorRGB(0,0,0) gc:setFont("serif","b",14) gc:drawString(mes1,90,135,"top") gc:setColorRGB(100,100,100) gc:drawString(mes2,90,160,"top") end function bloque() local dval=val(dep[dep.n]) if dval==13 then return(true) else local i,c c=true for i=1,7 do local n=tas[6][i] if n>0 then if math.abs(val(tas[n][i])-dval)==1 then c=false break end end end return (c) end end deroul=1 deja=false mes1,mes2="NOUVELLE PARTIE","REJOUER PARTIE" function on.paint(gc) gc:setColorRGB(0,150,0) gc:fillRect(0,0,lg(),ha()) if deroul==1 then gc:setColorRGB(120,200,50) gc:setFont("sansserif","b",20) gc:drawString("TI GOLFE",80,60,"top") gc:setFont("sansserif","b",16) gc:drawString("By Tyann",120,95,"top") if deja==true then afmenu(gc) end elseif deroul==2 then afplateau() afdep(dep.n) afpio(pio.n) afcsr(xcsr) end if dcsr==true then afcsr(xcsr) dcsr=false end if perdu==true then gc:setColorRGB(255,255,255) gc:setFont("serif","i",10) gc:drawString("Desole c'est perdu !!!",95,120,"top") deroul=3 perdu=false end if gagne==true then gc:setColorRGB(255,255,255) gc:setFont("serif","i",10) gc:drawString("Felicitations c'est gagne...",95,120,"top") deroul=3 gagne=false end end function on.enterKey() if deroul==1 then init(mes1) deroul=2 platform.window:invalidate() elseif deroul==3 then deja=true deroul=1 platform.window:invalidate() end end function on.arrowKey(k) if deroul==1 then mes1,mes2=mes2,mes1 platform.window:invalidate() elseif deroul==2 then if k=="left" then while true do xcsr=xcsr-1 if xcsr==0 then xcsr=7 end if tas[6][xcsr]>0 then break end end dcsr=true platform.window:invalidate(0,104,280,24) elseif k=="right" then while true do xcsr=xcsr+1 if xcsr==8 then xcsr=1 end if tas[6][xcsr]>0 then break end end dcsr=true platform.window:invalidate(0,104,280,24) elseif k=="down" then local i=tas[6][xcsr] local vd=val(dep[dep.n]) if i>0 and vd <13 then local v=val(tas[i][xcsr]) if math.abs(vd-v)==1 then dep.n=dep.n+1 dep[dep.n]=tas[i][xcsr] tas[6][xcsr]=i-1 dcoup=1 dcol=xcsr tas.n=tas.n-1 if tas.n==0 then gagne=true elseif pio.n==0 then perdu=bloque() end platform.window:invalidate() end end end end end function on.tabKey() if deroul==2 and pio.n>0 then dep.n=dep.n+1 dep[dep.n]=pio[pio.n] pio.n=pio.n-1 dcoup=2 if pio.n==0 then perdu=bloque() end platform.window:invalidate() end end function on.backspaceKey() if dcoup==1 then tas[6][dcol]=tas[6][dcol]+1 tas[tas[6][dcol]][dcol]=dep[dep.n] dep.n=dep.n-1 tas.n=tas.n+1 platform.window:invalidate() elseif dcoup==2 then pio.n=pio.n+1 pio[pio.n]=dep[dep.n] dep.n=dep.n-1 platform.window:invalidate() end dcoup=0 end function on.escapeKey() if deroul==2 then perdu=true platform.window:invalidate() end end cartec=image.new("\031\000\000\000.\000\000\000\000\000\000\000>\000\000\000\016\000\001\000\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\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\249\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\255\255\198\252\198\252\198\252\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\198\252\198\252\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\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") cartek=image.new("\031\000\000\000.\000\000\000\000\000\000\000>\000\000\000\016\000\001\000\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\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\249\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\198\252\198\252\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\198\252\198\252\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\198\252\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\198\252\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\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\198\252\198\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\198\252\255\255\255\255\198\252\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\198\252\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\198\252\255\255\255\255\198\252\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\198\252\255\255\255\255\255\255\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\198\252\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") cartet=image.new("\031\000\000\000.\000\000\000\000\000\000\000>\000\000\000\016\000\001\000\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\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\249\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\000\128\255\255\000\128\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\000\128\255\255\000\128\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\000\128\000\128\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\000\128\000\128\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\000\128\000\128\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\000\128\000\128\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\000\128\000\128\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\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") cartep=image.new("\031\000\000\000.\000\000\000\000\000\000\000>\000\000\000\016\000\001\000\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\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\249\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\000\128\000\128\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\255\255\000\128\255\255\000\128\000\128\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\000\128\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\000\128\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\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\255\255\000\128\000\128\000\128\000\128\000\128\255\255\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\255\255\255\255\000\128\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\000\128\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\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") dos=image.new("\031\000\000\000.\000\000\000\000\000\000\000>\000\000\000\016\000\001\000?\207?\207\211\152\211\152\211\152\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207\211\152?\207?\207?\207?\207\211\152?\207\211\152?\207?\207\211\152\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207?\207\211\152?\207\211\152\211\152\211\152\211\152?\207?\207\211\152?\207?\207\211\152?\207\211\152\211\152?\207?\207?\207\211\152\211\152?\207\211\152\211\152?\207\211\152\211\152?\207\211\152?\207?\207\211\152?\207\211\152\211\152?\207\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207?\207\211\152?\207?\207?\207?\207?\207\211\152?\207?\207?\207\211\152?\207?\207?\207\211\152\211\152\211\152?\207\211\152?\207\211\152?\207\211\152\211\152\211\152?\207\211\152?\207\211\152?\207?\207\211\152?\207\211\152?\207\211\152?\207\211\152?\207?\207\211\152?\207\211\152?\207?\207?\207?\207?\207?\207?\207?\207\211\152?\207?\207\211\152\211\152?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207\211\152\211\152\211\152?\207\211\152?\207\211\152?\207?\207\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207?\207?\207\211\152\211\152\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207\211\152?\207?\207\211\152\211\152\211\152\211\152?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152\211\152?\207?\207\211\152?\207\211\152?\207?\207?\207?\207?\207?\207\211\152?\207\211\152?\207?\207?\207?\207\211\152?\207\211\152\211\152\211\152\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207?\207?\207\211\152?\207?\207\211\152?\207\211\152\211\152?\207?\207?\207?\207\211\152\211\152\211\152\211\152\211\152\211\152\211\152?\207?\207\211\152?\207\211\152?\207\211\152?\207\211\152\211\152\211\152?\207\211\152\211\152?\207?\207?\207?\207?\207\211\152?\207?\207\211\152\211\152\211\152?\207?\207\211\152\211\152\211\152?\207?\207?\207\211\152?\207?\207\211\152\211\152\211\152?\207?\207?\207\211\152?\207?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152\211\152?\207?\207?\207\211\152\211\152\211\152\211\152\211\152?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207\211\152\211\152?\207\211\152\211\152?\207\211\152\211\152\211\152\211\152\211\152\211\152?\207\211\152\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207?\207\211\152\211\152?\207?\207\211\152?\207\211\152?\207?\207\211\152\211\152\211\152\211\152?\207\211\152?\207\211\152\211\152?\207\211\152?\207\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207\211\152\211\152\211\152\211\152?\207\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152?\207\211\152\211\152?\207\211\152?\207\211\152\211\152?\207?\207\211\152\211\152\211\152\211\152\211\152?\207?\207?\207\211\152?\207?\207?\207?\207\211\152\211\152\211\152?\207\211\152\211\152?\207?\207\211\152\211\152\211\152\211\152\211\152?\207\211\152?\207?\207?\207?\207?\207\211\152?\207\211\152?\207\211\152\211\152?\207\211\152\211\152\211\152\211\152?\207\211\152?\207\211\152?\207\211\152\211\152\211\152\211\152\211\152\211\152?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152?\207\211\152?\207\211\152\211\152?\207\211\152?\207?\207?\207\211\152?\207\211\152\211\152\211\152?\207\211\152?\207\211\152?\207?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207\211\152\211\152\211\152\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207\211\152?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152\211\152\211\152\211\152\211\152?\207\211\152?\207?\207?\207\211\152?\207\211\152\211\152?\207?\207\211\152?\207?\207\211\152?\207?\207?\207?\207?\207?\207?\207?\207\211\152\211\152\211\152\211\152\211\152\211\152?\207?\207\211\152\211\152?\207\211\152?\207\211\152?\207\211\152?\207\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152\211\152?\207?\207\211\152?\207?\207\211\152?\207?\207?\207?\207?\207?\207\211\152\211\152\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207?\207\211\152\211\152\211\152\211\152?\207\211\152\211\152?\207\211\152?\207\211\152?\207?\207\211\152\211\152?\207?\207?\207?\207?\207?\207\211\152?\207?\207\211\152?\207\211\152\211\152?\207?\207?\207\211\152\211\152\211\152\211\152?\207\211\152?\207?\207?\207?\207?\207\211\152?\207\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207?\207\211\152\211\152\211\152\211\152\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207?\207?\207\211\152?\207\211\152?\207\211\152\211\152?\207?\207\211\152?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152?\207?\207\211\152\211\152\211\152\211\152?\207\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207\211\152?\207?\207\211\152?\207?\207\211\152\211\152\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207\211\152\211\152?\207\211\152\211\152\211\152?\207?\207?\207\211\152?\207?\207?\207?\207?\207?\207\211\152?\207?\207\211\152?\207\211\152?\207\211\152?\207?\207?\207\211\152\211\152\211\152\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152\211\152\211\152\211\152\211\152?\207?\207?\207?\207?\207?\207?\207\211\152\211\152?\207?\207\211\152?\207\211\152\211\152?\207\211\152?\207\211\152\211\152?\207?\207\211\152?\207\211\152?\207\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152?\207?\207\211\152?\207\211\152\211\152\211\152?\207?\207\211\152?\207?\207\211\152\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207\211\152?\207?\207\211\152\211\152?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207?\207\211\152?\207?\207?\207\211\152?\207\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152?\207\211\152?\207\211\152?\207\211\152?\207\211\152?\207?\207?\207?\207?\207?\207?\207\211\152\211\152?\207\211\152\211\152\211\152\211\152\211\152?\207\211\152\211\152\211\152?\207\211\152?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207\211\152\211\152?\207?\207\211\152?\207?\207?\207\211\152?\207?\207?\207\211\152\211\152?\207\211\152\211\152\211\152\211\152\211\152\211\152\211\152?\207\211\152?\207?\207\211\152?\207\211\152\211\152?\207?\207?\207\211\152?\207?\207?\207?\207\211\152?\207?\207\211\152\211\152?\207?\207\211\152\211\152\211\152?\207?\207\211\152?\207?\207?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207?\207?\207\211\152\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207\211\152\211\152?\207?\207\211\152\211\152\211\152?\207?\207?\207?\207\211\152?\207\211\152?\207\211\152\211\152\211\152?\207\211\152\211\152\211\152?\207?\207?\207\211\152\211\152?\207\211\152?\207?\207?\207?\207\211\152\211\152\211\152\211\152\211\152?\207\211\152\211\152?\207\211\152?\207\211\152\211\152?\207?\207\211\152\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207\211\152?\207?\207?\207?\207?\207?\207\211\152\211\152?\207?\207?\207\211\152\211\152?\207?\207\211\152?\207\211\152?\207\211\152?\207\211\152?\207?\207?\207?\207?\207\211\152\211\152?\207?\207?\207?\207?\207\211\152\211\152\211\152\211\152?\207?\207?\207\211\152?\207?\207?\207\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152?\207?\207\211\152?\207?\207?\207?\207?\207?\207\211\152\211\152\211\152\211\152\211\152\211\152\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152\211\152?\207?\207\211\152\211\152\211\152\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207?\207\211\152\211\152\211\152\211\152?\207\211\152?\207\211\152\211\152\211\152?\207?\207?\207?\207\211\152?\207\211\152?\207\211\152?\207\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152?\207\211\152\211\152\211\152?\207?\207?\207?\207\211\152?\207?\207?\207?\207?\207\211\152?\207?\207?\207?\207?\207\211\152?\207\211\152?\207\211\152?\207\211\152\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207\211\152?\207?\207\211\152?\207?\207\211\152?\207?\207\211\152\211\152?\207?\207?\207?\207?\207?\207?\207\211\152?\207\211\152\211\152?\207?\207\211\152?\207\211\152\211\152?\207?\207\211\152\211\152?\207?\207?\207?\207?\207?\207?\207\211\152?\207?\207\211\152?\207?\207?\207\211\152?\207?\207?\207?\207\211\152\211\152?\207?\207?\207?\207?\207?\207?\207\211\152?\207\211\152?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207?\207\211\152?\207?\207?\207?\207\211\152?\207?\207\211\152?\207?\207?\207?\207?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152?\207?\207\211\152?\207\211\152?\207\211\152?\207?\207\211\152?\207\211\152?\207?\207?\207?\207\211\152?\207\211\152?\207?\207?\207\211\152\211\152?\207?\207?\207?\207?\207\211\152?\207?\207\211\152?\207?\207?\207\211\152\211\152") csr=image.new("\015\000\000\000\024\000\000\000\000\000\000\000\030\000\000\000\016\000\001\000`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128\000\128\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\128\000\128\000\128\000\128`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128\000\128\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130\000\128`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130`\130")