Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
go1.6 / pkg / linux_amd64 / image.a
Size: Mime:
!<arch>
__.PKGDEF       0           0     0     644     29409     `
go object linux amd64 go1.6 X:none
build id "d9c2e6d8ed1c0fedc82acf351b33767410d78ba1"

$$
package image
	import bufio "bufio"
	import errors "errors"
	import io "io"
	import color "image/color"
	import strconv "strconv"
	var @"".ErrFormat error
	type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
	type @"".Point struct { X int; Y int }
	func (@"".p·2 @"".Point) Add (@"".q·3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p·2.X + @"".q·3.X, Y:@"".p·2.Y + @"".q·3.Y }) }
	func (@"".p·2 @"".Point) Div (@"".k·3 int) (? @"".Point) { return (@"".Point{ X:@"".p·2.X / @"".k·3, Y:@"".p·2.Y / @"".k·3 }) }
	func (@"".p·2 @"".Point) Eq (@"".q·3 @"".Point) (? bool) { return @"".p·2 == @"".q·3 }
	func (@"".p·2 @"".Point) In (@"".r·3 @"".Rectangle) (? bool) { return @"".r·3.Min.X <= @"".p·2.X && @"".p·2.X < @"".r·3.Max.X && @"".r·3.Min.Y <= @"".p·2.Y && @"".p·2.Y < @"".r·3.Max.Y }
	func (@"".p·2 @"".Point) Mod (@"".r·3 @"".Rectangle) (? @"".Point)
	func (@"".p·2 @"".Point) Mul (@"".k·3 int) (? @"".Point) { return (@"".Point{ X:@"".p·2.X * @"".k·3, Y:@"".p·2.Y * @"".k·3 }) }
	func (@"".p·2 @"".Point) String () (? string)
	func (@"".p·2 @"".Point) Sub (@"".q·3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p·2.X - @"".q·3.X, Y:@"".p·2.Y - @"".q·3.Y }) }
	type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
	type @"".Rectangle struct { Min @"".Point; Max @"".Point }
	func (@"".r·2 @"".Rectangle) Add (@"".p·3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r·2.Min.X + @"".p·3.X, Y:@"".r·2.Min.Y + @"".p·3.Y }), Max:(@"".Point{ X:@"".r·2.Max.X + @"".p·3.X, Y:@"".r·2.Max.Y + @"".p·3.Y }) }) }
	func (@"".r·2 @"".Rectangle) At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { if (@"".Point{ X:@"".x·3, Y:@"".y·4 }).In(@"".r·2) { return @"image/color".Opaque }; return @"image/color".Transparent }
	func (@"".r·2 @"".Rectangle) Bounds () (? @"".Rectangle) { return @"".r·2 }
	func (@"".r·2 @"".Rectangle) Canon () (? @"".Rectangle) { if @"".r·2.Max.X < @"".r·2.Min.X { @"".r·2.Min.X, @"".r·2.Max.X = @"".r·2.Max.X, @"".r·2.Min.X }; if @"".r·2.Max.Y < @"".r·2.Min.Y { @"".r·2.Min.Y, @"".r·2.Max.Y = @"".r·2.Max.Y, @"".r·2.Min.Y }; return @"".r·2 }
	func (@"".r·2 @"".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
	func (@"".r·2 @"".Rectangle) Dx () (? int) { return @"".r·2.Max.X - @"".r·2.Min.X }
	func (@"".r·2 @"".Rectangle) Dy () (? int) { return @"".r·2.Max.Y - @"".r·2.Min.Y }
	func (@"".r·2 @"".Rectangle) Empty () (? bool) { return @"".r·2.Min.X >= @"".r·2.Max.X || @"".r·2.Min.Y >= @"".r·2.Max.Y }
	func (@"".r·2 @"".Rectangle) Eq (@"".s·3 @"".Rectangle) (? bool) { return @"".r·2 == @"".s·3 || @"".r·2.Empty() && @"".s·3.Empty() }
	func (@"".r·2 @"".Rectangle) In (@"".s·3 @"".Rectangle) (? bool) { if @"".r·2.Empty() { return bool(true) }; return @"".s·3.Min.X <= @"".r·2.Min.X && @"".r·2.Max.X <= @"".s·3.Max.X && @"".s·3.Min.Y <= @"".r·2.Min.Y && @"".r·2.Max.Y <= @"".s·3.Max.Y }
	func (@"".r·2 @"".Rectangle) Inset (@"".n·3 int) (? @"".Rectangle)
	func (@"".r·2 @"".Rectangle) Intersect (@"".s·3 @"".Rectangle) (? @"".Rectangle)
	func (@"".r·2 @"".Rectangle) Overlaps (@"".s·3 @"".Rectangle) (? bool)
	func (@"".r·2 @"".Rectangle) Size () (? @"".Point) { return (@"".Point{ X:@"".r·2.Max.X - @"".r·2.Min.X, Y:@"".r·2.Max.Y - @"".r·2.Min.Y }) }
	func (@"".r·2 @"".Rectangle) String () (? string)
	func (@"".r·2 @"".Rectangle) Sub (@"".p·3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r·2.Min.X - @"".p·3.X, Y:@"".r·2.Min.Y - @"".p·3.Y }), Max:(@"".Point{ X:@"".r·2.Max.X - @"".p·3.X, Y:@"".r·2.Max.Y - @"".p·3.Y }) }) }
	func (@"".r·2 @"".Rectangle) Union (@"".s·3 @"".Rectangle) (? @"".Rectangle)
	type @"".Image interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorModel() (? @"image/color".Model) }
	type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
	type @"".Config struct { ColorModel @"image/color".Model; Width int; Height int }
	func @"".RegisterFormat (@"".name·1 string, @"".magic·2 string, @"".decode·3 func(? @"io".Reader) (? @"".Image, ? error), @"".decodeConfig·4 func(? @"io".Reader) (? @"".Config, ? error)) { @"".formats = append(@"".formats, (@"".format{ @"".name:@"".name·1, @"".magic:@"".magic·2, @"".decode:@"".decode·3, @"".decodeConfig:@"".decodeConfig·4 })) }
	func @"".Decode (@"".r·4 @"io".Reader) (? @"".Image, ? string, ? error)
	func @"".DecodeConfig (@"".r·4 @"io".Reader) (? @"".Config, ? string, ? error)
	var @"".ZP @"".Point
	func @"".Pt (@"".X·2 int, @"".Y·3 int) (? @"".Point) { return (@"".Point{ X:@"".X·2, Y:@"".Y·3 }) }
	var @"".ZR @"".Rectangle
	func @"".Rect (@"".x0·2 int, @"".y0·3 int, @"".x1·4 int, @"".y1·5 int) (? @"".Rectangle) { if @"".x0·2 > @"".x1·4 { @"".x0·2, @"".x1·4 = @"".x1·4, @"".x0·2 }; if @"".y0·3 > @"".y1·5 { @"".y0·3, @"".y1·5 = @"".y1·5, @"".y0·3 }; return (@"".Rectangle{ Min:(@"".Point{ X:@"".x0·2, Y:@"".y0·3 }), Max:(@"".Point{ X:@"".x1·4, Y:@"".y1·5 }) }) }
	type @"".PalettedImage interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorIndexAt(@"".x int, @"".y int) (? uint8); ColorModel() (? @"image/color".Model) }
	type @"image/color".RGBA struct { R uint8; G uint8; B uint8; A uint8 }
	func (@"image/color".c·5 @"image/color".RGBA) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 |= @"image/color".r·1 << uint(0x8); @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << uint(0x8); @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << uint(0x8); @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << uint(0x8); return  }
	type @"".RGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".RGBA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".RGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".RGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBAModel }
	func (@"".p·2 *@"".RGBA "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".RGBA "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x4) }
	func (@"".p·2 *@"".RGBA "esc:0x1") RGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA)
	func (@"".p·1 *@"".RGBA "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".RGBA "esc:0x1") SetRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA)
	func (@"".p·2 *@"".RGBA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewRGBA (@"".r·2 @"".Rectangle) (? *@"".RGBA) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".buf·5 []uint8; @"".buf·5 = make([]uint8, int(0x4) * @"".w·3 * @"".h·4); return (&@"".RGBA{ Pix:@"".buf·5, Stride:int(0x4) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".RGBA64 struct { R uint16; G uint16; B uint16; A uint16 }
	func (@"image/color".c·5 @"image/color".RGBA64) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { return uint32(@"image/color".c·5.R), uint32(@"image/color".c·5.G), uint32(@"image/color".c·5.B), uint32(@"image/color".c·5.A) }
	type @"".RGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".RGBA64 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".RGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".RGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBA64Model }
	func (@"".p·2 *@"".RGBA64 "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".RGBA64 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x8) }
	func (@"".p·2 *@"".RGBA64 "esc:0x1") RGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA64)
	func (@"".p·1 *@"".RGBA64 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".RGBA64 "esc:0x1") SetRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA64)
	func (@"".p·2 *@"".RGBA64 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewRGBA64 (@"".r·2 @"".Rectangle) (? *@"".RGBA64) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x8) * @"".w·3 * @"".h·4); return (&@"".RGBA64{ Pix:@"".pix·5, Stride:int(0x8) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".NRGBA struct { R uint8; G uint8; B uint8; A uint8 }
	func (@"image/color".c·5 @"image/color".NRGBA) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 |= @"image/color".r·1 << uint(0x8); @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= uint32(0xff); @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << uint(0x8); @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= uint32(0xff); @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << uint(0x8); @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= uint32(0xff); @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << uint(0x8); return  }
	type @"".NRGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".NRGBA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".NRGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".NRGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBAModel }
	func (@"".p·2 *@"".NRGBA "esc:0x1") NRGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA)
	func (@"".p·2 *@"".NRGBA "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".NRGBA "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x4) }
	func (@"".p·1 *@"".NRGBA "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".NRGBA "esc:0x1") SetNRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA)
	func (@"".p·2 *@"".NRGBA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewNRGBA (@"".r·2 @"".Rectangle) (? *@"".NRGBA) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x4) * @"".w·3 * @"".h·4); return (&@"".NRGBA{ Pix:@"".pix·5, Stride:int(0x4) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".NRGBA64 struct { R uint16; G uint16; B uint16; A uint16 }
	func (@"image/color".c·5 @"image/color".NRGBA64) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= uint32(0xffff); @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= uint32(0xffff); @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= uint32(0xffff); @"image/color".a·4 = uint32(@"image/color".c·5.A); return  }
	type @"".NRGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".NRGBA64 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".NRGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".NRGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBA64Model }
	func (@"".p·2 *@"".NRGBA64 "esc:0x1") NRGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA64)
	func (@"".p·2 *@"".NRGBA64 "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".NRGBA64 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x8) }
	func (@"".p·1 *@"".NRGBA64 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".NRGBA64 "esc:0x1") SetNRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA64)
	func (@"".p·2 *@"".NRGBA64 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewNRGBA64 (@"".r·2 @"".Rectangle) (? *@"".NRGBA64) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x8) * @"".w·3 * @"".h·4); return (&@"".NRGBA64{ Pix:@"".pix·5, Stride:int(0x8) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".Alpha struct { A uint8 }
	func (@"image/color".c·5 @"image/color".Alpha) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << uint(0x8); return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 }
	type @"".Alpha struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".Alpha "esc:0x1") AlphaAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha)
	func (@"".p·2 *@"".Alpha "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".Alpha "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".Alpha "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".AlphaModel }
	func (@"".p·2 *@"".Alpha "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".Alpha "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x1) }
	func (@"".p·1 *@"".Alpha "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".Alpha "esc:0x1") SetAlpha (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha)
	func (@"".p·2 *@"".Alpha "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewAlpha (@"".r·2 @"".Rectangle) (? *@"".Alpha) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x1) * @"".w·3 * @"".h·4); return (&@"".Alpha{ Pix:@"".pix·5, Stride:int(0x1) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".Alpha16 struct { A uint16 }
	func (@"image/color".c·5 @"image/color".Alpha16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 }
	type @"".Alpha16 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".Alpha16 "esc:0x1") Alpha16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha16)
	func (@"".p·2 *@"".Alpha16 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".Alpha16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".Alpha16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
	func (@"".p·2 *@"".Alpha16 "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".Alpha16 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x2) }
	func (@"".p·1 *@"".Alpha16 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".Alpha16 "esc:0x1") SetAlpha16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha16)
	func (@"".p·2 *@"".Alpha16 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewAlpha16 (@"".r·2 @"".Rectangle) (? *@"".Alpha16) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x2) * @"".w·3 * @"".h·4); return (&@"".Alpha16{ Pix:@"".pix·5, Stride:int(0x2) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".Gray struct { Y uint8 }
	func (@"image/color".c·5 @"image/color".Gray) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { var @"image/color".y·6 uint32; ; @"image/color".y·6 = uint32(@"image/color".c·5.Y); @"image/color".y·6 |= @"image/color".y·6 << uint(0x8); return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, uint32(0xffff) }
	type @"".Gray struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".Gray "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".Gray "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".Gray "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".GrayModel }
	func (@"".p·2 *@"".Gray "esc:0x1") GrayAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray)
	func (@"".p·2 *@"".Gray "esc:0x1") Opaque () (? bool) { return bool(true) }
	func (@"".p·2 *@"".Gray "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x1) }
	func (@"".p·1 *@"".Gray "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".Gray "esc:0x1") SetGray (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray)
	func (@"".p·2 *@"".Gray "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewGray (@"".r·2 @"".Rectangle) (? *@"".Gray) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x1) * @"".w·3 * @"".h·4); return (&@"".Gray{ Pix:@"".pix·5, Stride:int(0x1) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".Gray16 struct { Y uint16 }
	func (@"image/color".c·5 @"image/color".Gray16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { var @"image/color".y·6 uint32; ; @"image/color".y·6 = uint32(@"image/color".c·5.Y); return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, uint32(0xffff) }
	type @"".Gray16 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".Gray16 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".Gray16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".Gray16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Gray16Model }
	func (@"".p·2 *@"".Gray16 "esc:0x1") Gray16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray16)
	func (@"".p·2 *@"".Gray16 "esc:0x1") Opaque () (? bool) { return bool(true) }
	func (@"".p·2 *@"".Gray16 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x2) }
	func (@"".p·1 *@"".Gray16 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".Gray16 "esc:0x1") SetGray16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray16)
	func (@"".p·2 *@"".Gray16 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewGray16 (@"".r·2 @"".Rectangle) (? *@"".Gray16) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, int(0x2) * @"".w·3 * @"".h·4); return (&@"".Gray16{ Pix:@"".pix·5, Stride:int(0x2) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".CMYK struct { C uint8; M uint8; Y uint8; K uint8 }
	func (@"image/color".c·5 @"image/color".CMYK) RGBA () (? uint32, ? uint32, ? uint32, ? uint32) { var @"image/color".w·6 uint32; ; @"image/color".w·6 = uint32(uint32(0xffff) - uint32(@"image/color".c·5.K) * uint32(0x101)); var @"image/color".r·7 uint32; ; @"image/color".r·7 = uint32(uint32(0xffff) - uint32(@"image/color".c·5.C) * uint32(0x101)) * @"image/color".w·6 / uint32(0xffff); var @"image/color".g·8 uint32; ; @"image/color".g·8 = uint32(uint32(0xffff) - uint32(@"image/color".c·5.M) * uint32(0x101)) * @"image/color".w·6 / uint32(0xffff); var @"image/color".b·9 uint32; ; @"image/color".b·9 = uint32(uint32(0xffff) - uint32(@"image/color".c·5.Y) * uint32(0x101)) * @"image/color".w·6 / uint32(0xffff); return uint32(@"image/color".r·7), uint32(@"image/color".g·8), uint32(@"image/color".b·9), uint32(0xffff) }
	type @"".CMYK struct { Pix []uint8; Stride int; Rect @"".Rectangle }
	func (@"".p·2 *@"".CMYK "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".CMYK "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".CMYK "esc:0x1") CMYKAt (@"".x·3 int, @"".y·4 int) (? @"image/color".CMYK)
	func (@"".p·2 *@"".CMYK "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".CMYKModel }
	func (@"".p·2 *@"".CMYK "esc:0x1") Opaque () (? bool) { return bool(true) }
	func (@"".p·2 *@"".CMYK "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x4) }
	func (@"".p·1 *@"".CMYK "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".CMYK "esc:0x1") SetCMYK (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".CMYK)
	func (@"".p·2 *@"".CMYK "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewCMYK (@"".r·2 @"".Rectangle) (? *@"".CMYK) {  var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".buf·5 []uint8; @"".buf·5 = make([]uint8, int(0x4) * @"".w·3 * @"".h·4); return (&@"".CMYK{ Pix:@"".buf·5, Stride:int(0x4) * @"".w·3, Rect:@"".r·2 }) }
	type @"image/color".Palette []@"image/color".Color
	func (@"image/color".p·2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c·3 @"image/color".Color) (? @"image/color".Color)
	func (@"image/color".p·2 @"image/color".Palette "esc:0x9") Index (@"image/color".c·3 @"image/color".Color) (? int)
	type @"".Paletted struct { Pix []uint8; Stride int; Rect @"".Rectangle; Palette @"image/color".Palette }
	func (@"".p·2 *@"".Paletted "esc:0x32") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".Paletted "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".Paletted "esc:0x1") ColorIndexAt (@"".x·3 int, @"".y·4 int) (? uint8)
	func (@"".p·2 *@"".Paletted "esc:0x22") ColorModel () (? @"image/color".Model) { return @"".p·2.Palette }
	func (@"".p·2 *@"".Paletted "esc:0x9") Opaque () (? bool)
	func (@"".p·2 *@"".Paletted "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * int(0x1) }
	func (@"".p·1 *@"".Paletted "esc:0x9") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
	func (@"".p·1 *@"".Paletted "esc:0x1") SetColorIndex (@"".x·2 int, @"".y·3 int, @"".index·4 uint8)
	func (@"".p·2 *@"".Paletted "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewPaletted (@"".r·2 @"".Rectangle, @"".p·3 @"image/color".Palette) (? *@"".Paletted) {  var @"".w·4 int; var @"".h·5 int; @"".w·4, @"".h·5 = @"".r·2.Dx(), @"".r·2.Dy();  var @"".pix·6 []uint8; @"".pix·6 = make([]uint8, int(0x1) * @"".w·4 * @"".h·5); return (&@"".Paletted{ Pix:@"".pix·6, Stride:int(0x1) * @"".w·4, Rect:@"".r·2, Palette:@"".p·3 }) }
	type @"".Uniform struct { C @"image/color".Color }
	func (@"".c·2 *@"".Uniform "esc:0x22") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { return @"".c·2.C }
	func (@"".c·2 *@"".Uniform "esc:0x1") Bounds () (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:int(-0x3b9aca00), Y:int(-0x3b9aca00) }), Max:(@"".Point{ X:int(0x3b9aca00), Y:int(0x3b9aca00) }) }) }
	func (@"".c·2 *@"".Uniform "esc:0x12") ColorModel () (? @"image/color".Model) { return @"".c·2 }
	func (@"".c·2 *@"".Uniform "esc:0x22") Convert (? @"image/color".Color) (? @"image/color".Color) { return @"".c·2.C }
	func (@"".c·2 *@"".Uniform "esc:0x9") Opaque () (? bool)
	func (@"".c·5 *@"".Uniform "esc:0x9") RGBA () (@"".r·1 uint32, @"".g·2 uint32, @"".b·3 uint32, @"".a·4 uint32)
	var @"".Black *@"".Uniform
	var @"".White *@"".Uniform
	var @"".Transparent *@"".Uniform
	var @"".Opaque *@"".Uniform
	func @"".NewUniform (@"".c·2 @"image/color".Color) (? *@"".Uniform) { return (&@"".Uniform{ C:@"".c·2 }) }
	type @"".YCbCrSubsampleRatio int
	func (@"".s·2 @"".YCbCrSubsampleRatio) String () (? string)
	const @"".YCbCrSubsampleRatio444 @"".YCbCrSubsampleRatio = 0x0
	const @"".YCbCrSubsampleRatio422 @"".YCbCrSubsampleRatio = 0x1
	const @"".YCbCrSubsampleRatio420 @"".YCbCrSubsampleRatio = 0x2
	const @"".YCbCrSubsampleRatio440 @"".YCbCrSubsampleRatio = 0x3
	const @"".YCbCrSubsampleRatio411 @"".YCbCrSubsampleRatio = 0x4
	const @"".YCbCrSubsampleRatio410 @"".YCbCrSubsampleRatio = 0x5
	type @"image/color".YCbCr struct { Y uint8; Cb uint8; Cr uint8 }
	func (@"image/color".c·5 @"image/color".YCbCr) RGBA () (? uint32, ? uint32, ? uint32, ? uint32)
	type @"".YCbCr struct { Y []uint8; Cb []uint8; Cr []uint8; YStride int; CStride int; SubsampleRatio @"".YCbCrSubsampleRatio; Rect @"".Rectangle }
	func (@"".p·2 *@"".YCbCr "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".YCbCr "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
	func (@"".p·2 *@"".YCbCr "esc:0x1") COffset (@"".x·3 int, @"".y·4 int) (? int)
	func (@"".p·2 *@"".YCbCr "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".YCbCrModel }
	func (@"".p·2 *@"".YCbCr "esc:0x1") Opaque () (? bool) { return bool(true) }
	func (@"".p·2 *@"".YCbCr "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func (@"".p·2 *@"".YCbCr "esc:0x1") YCbCrAt (@"".x·3 int, @"".y·4 int) (? @"image/color".YCbCr)
	func (@"".p·2 *@"".YCbCr "esc:0x1") YOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.YStride + (@"".x·3 - @"".p·2.Rect.Min.X) }
	func @"".NewYCbCr (@"".r·2 @"".Rectangle, @"".subsampleRatio·3 @"".YCbCrSubsampleRatio) (? *@"".YCbCr)
	type @"image/color".NYCbCrA struct { ? @"image/color".YCbCr; A uint8 }
	func (@"image/color".c·5 @"image/color".NYCbCrA) RGBA () (? uint32, ? uint32, ? uint32, ? uint32)
	type @"".NYCbCrA struct { ? @"".YCbCr; A []uint8; AStride int }
	func (@"".p·2 *@"".NYCbCrA "esc:0x1") AOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.YCbCr.Rect.Min.Y) * @"".p·2.AStride + (@"".x·3 - @"".p·2.YCbCr.Rect.Min.X) }
	func (@"".p·2 *@"".NYCbCrA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
	func (@"".p·2 *@"".NYCbCrA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NYCbCrAModel }
	func (@"".p·2 *@"".NYCbCrA "esc:0x1") NYCbCrAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".NYCbCrA)
	func (@"".p·2 *@"".NYCbCrA "esc:0x1") Opaque () (? bool)
	func (@"".p·2 *@"".NYCbCrA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
	func @"".NewNYCbCrA (@"".r·2 @"".Rectangle, @"".subsampleRatio·3 @"".YCbCrSubsampleRatio) (? *@"".NYCbCrA)
	func @"".init ()
	var @"image/color".Opaque @"image/color".Alpha16
	var @"image/color".Transparent @"image/color".Alpha16
	var @"image/color".Alpha16Model @"image/color".Model
	type @"".format struct { @"".name string; @"".magic string; @"".decode func(? @"io".Reader) (? @"".Image, ? error); @"".decodeConfig func(? @"io".Reader) (? @"".Config, ? error) }
	var @"".formats []@"".format
	var @"image/color".RGBAModel @"image/color".Model
	var @"image/color".RGBA64Model @"image/color".Model
	var @"image/color".NRGBAModel @"image/color".Model
	var @"image/color".NRGBA64Model @"image/color".Model
	var @"image/color".AlphaModel @"image/color".Model
	var @"image/color".GrayModel @"image/color".Model
	var @"image/color".Gray16Model @"image/color".Model
	var @"image/color".CMYKModel @"image/color".Model
	var @"image/color".YCbCrModel @"image/color".Model
	var @"image/color".NYCbCrAModel @"image/color".Model

$$
_go_.o          0           0     0     644     450598    `
go object linux amd64 go1.6 X:none

!
go13ldbufio.aerrors.aio.aimage/color.astrconv.aþ""".RegisterFormat€€dH‹%H;a†ZHì€1ÛH‰\$PH‰\$XH‰\$`H‰\$hH‰\$pH‰\$xH‹œ$ˆH‰\$PH‹œ$H‰\$XH‹œ$˜H‰\$`H‹œ$ H‰\$hH‹œ$¨H‰\$pH‹œ$°H‰\$xH‹H‹H‹
H‰ÃHÿÃH9Ëw;H‰H‰ÓH‰ÅHkí0HëHl$PH‰\$H‰l$H-H‰,$èHĀÃH-H‰,$H‰T$H‰D$H‰L$H‰\$ èH‹T$(H‹D$0H‹L$8H‰ÃH‰D$@HÿÃH‰H‰
H‰T$H€=uH‰éfÿÿÿH-H‰,$H‰T$èH‹T$HH‹D$@éBÿÿÿèé‰þÿÿÌÌÌÌÌÌÌÌÌ 
–"".formats¤"".formats² "".formatsÖ"".formatsœtype."".format®(runtime.typedmemmoveÌ type.[]"".format†"runtime.growsliceÈ"".formatsÖ "".formatsì(runtime.writeBarrier€"".formats˜"".formats´.runtime.writebarrierptrÜ0runtime.morestack_noctxt`€
"".autotmp_0000_type."".format"".decodeConfigPNtype.func(io.Reader) ("".Config, error)"".decode@Ltype.func(io.Reader) ("".Image, error)"".magic type.string"".nametype.string"€Èÿ€Šÿ€BÁŠÖ,W'Tgclocals·ac96ed3958d5792ac369a1dc2bfe9382Tgclocals·5bcb5afcb5617f15eb2d0b279323d8786$GOROOT/src/image/format.goþ"".asReader€€dH‹%H„$pÿÿÿH;A†Hì1ÛH‰œ$(H‰œ$01ÛH‰œ$H‰œ$˜HH‰$H‹œ$H‰\$H‹œ$ H‰\$Hœ$H‰\$è¶\$ H‹”$H‰T$`H‹Œ$˜H‰L$h€ûtH‰”$(H‰Œ$0HÄÃH‹œ$H‹„$ H‰\$pH‰D$xH‰„$ˆHÇÂH‰œ$€1íH9ëtH‹[H-H9ë…šHÇÁ€ùthH‹XH9Ó|_H‰D$HH‹1íH9ètH‹\$HH‰œ$0H‰„$(HÄÃHH‰$HH‰\$HH‰\$èH‹D$ë´H‰T$0Hƒú}	HÇD$0HH‰$èH‹L$0H‹D$H‰D$8H‰D$@HH‰$H‰L$H‰L$èH‹t$H‹l$ H‹T$(H‹Œ$€H‹„$ˆH¼$¸WÀHƒÇÐèGøH‰´$ H‰´$¸H‰¬$¨H‰¬$ÀH‰”$°H‰”$ÈH‰L$PH‰Œ$ÐH‰D$XH‰„$ØHDŽ$ÿÿÿÿHDŽ$ÿÿÿÿH‹\$@Hƒût,H¬$¸H‰\$H‰l$H-H‰,$èH‹D$8éþÿÿ‰ëÐ1À1ÉédþÿÿèéNýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ"
’type."".readerò$runtime.assertI2I2ð$type.*bufio.ReaderÄ>go.itab.*bufio.Reader."".readerš$type.*bufio.Reader°type."".readerÈ>go.itab.*bufio.Reader."".readerÜ runtime.typ2Itab "type.bufio.Reader²"runtime.newobjectètype.[]uint8Ž"runtime.makesliceôª runtime.duffzeroˆ
"type.bufio.Readerš
(runtime.typedmemmoveÒ
0runtime.morestack_noctxt@ "".autotmp_0010$type.*bufio.Reader"".autotmp_0009$type.*bufio.Reader"".autotmp_0008¯"type.bufio.Reader"".autotmp_0005$type.*bufio.Reader"".autotmp_0004ÿtype."".readerbufio.r·3ÿtype.io.Readerbufio.buf·2ßtype.[]uint8bufio.b·1Ÿ$type.*bufio.Readerbufio.r·6¯$type.*bufio.Readerbufio.size·3¿type.intbufio.rd·2Ÿtype.io.Readerbufio.rd·2¿type.io.Reader
"".rrßtype."".reader"".~r1 type."".reader"".rtype.io.Reader0" –Ÿ Ÿ ÞŸÀ X4m“\[Dxõ+.Æ4Tgclocals·a68b09a48716afad7ca7a02fe6add474Tgclocals·dd9a4d2009c4ac75e28d1a37bbe5075e6$GOROOT/src/image/format.goþ"".matchÀÀdH‹%H;avxH‹t$ L‹L$H‹|$H9÷tÆD$0ÃH‹L$H‹\$(1ÀI‰òL9Ð}6¶)H9øs;I¶@8ëtH9øs#I¶€û?tÆD$0ÃHÿÁHÿÀL9Ð|ÊÆD$0ÃèèèéoÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
ô$runtime.panicindex‚$runtime.panicindex0runtime.morestack_noctxt`
"".autotmp_0017type.int"".autotmp_0016type.int"".~r2Ptype.bool"".b type.[]uint8"".magictype.string  *h"
	
y'Tgclocals·b4c25e9b09fd0cf9bb429dcefe91c353Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6$GOROOT/src/image/format.goþ"".sniff 
 
dH‹%HD$H;A†gHìð1ÛH‰œ$H‰œ$H‰œ$H‰œ$ H‰œ$(H‰œ$0H‹H‹H‹H‰œ$ˆ1ÉH‰„$€H‰D$8H‰T$xH‰ÐH‹l$8H9鍫H‰D$HHƒø„ÖL‹L‹@H‹xH‹pH‹P H‹h(H‰L$@L‰Œ$ÀL‰Œ$L‰„$ÈL‰„$˜H‰¼$ÐH‰¼$ H‰´$ØH‰´$¨H‰”$àH‰”$°H‰¬$èH‰¬$¸H‹œ$¨H‰\$H‹œ$H‰$H‹œ$øH‹[ ÿÓL‹D$L‰D$`H‹l$H‰l$hH‹T$ H‰T$pH‹D$(H‹\$0H‰\$XH‰D$PHƒø…žHœ$ H‹H‰$H‹KH‰L$L‰D$H‰l$H‰T$ è¶\$(€ûthH‹œ$H‰œ$H‹œ$˜H‰œ$H‹œ$ H‰œ$H‹œ$¨H‰œ$ H‹œ$°H‰œ$(H‹œ$¸H‰œ$0HÄðÃH‹D$HH‹L$@HƒÀ0HÿÁH‹l$8H9éŒUþÿÿ1öH‰´$H‰´$H‰´$H‰´$ H‰´$(H‰´$0HÄðÉé#þÿÿèéwýÿÿÌÌÌÌÌÌÌ
¨"".formats¶"".formatsÄ "".formats†Ò"".match€
0runtime.morestack_noctxt€à"".autotmp_0027type."".format"".autotmp_0026_type."".format"".autotmp_0025Ïtype.*"".format"".autotmp_0024ïtype.int"".autotmp_0023ßtype.int"".autotmp_0020ï type.[]"".format"".err¿type.error"".bŸtype.[]uint8"".f¿type."".format"".~r1 type."".format"".rtype."".reader,àÿßàXßàߐ*‚QÍTEh:ÃÍTgclocals·99ef9ff0bd07d0e619cc0988c2dabb63Tgclocals·d82314ad8b4d0d463ee994662aedec136$GOROOT/src/image/format.goþ"".DecodeÀÀdH‹%H„$ðþÿÿH;A†:Hì1ÛH‰œ$¨H‰œ$°1ÛH‰œ$¸H‰œ$À1ÛH‰œ$ÈH‰œ$ÐH‹Œ$˜H‹„$ 1ÛH‰\$`H‰\$h1ÛH‰œ$àH‰œ$èHH‰$H‰Œ$ÀH‰L$H‰„$ÈH‰D$Hœ$àH‰\$è¶\$ H‹Œ$àH‰Œ$€H‹”$èH‰”$ˆ€û„rH‰ÐH‰L$`H‰D$hH‰Œ$H‰$H‰„$˜H‰D$èH‹\$H‰œ$H‹\$H‰œ$H‹\$ H‰œ$H‹\$(H‰œ$ H‹D$0H‹\$8H‰œ$0H‰„$(1íH9èuJ1ÛH‰œ$¨H‰œ$°1ÛH‰œ$¸H‰œ$ÀH‹H‰œ$ÈH‹H‰œ$ÐHĐÃHH‰$H‹œ$H‰\$H‹œ$˜H‰\$èH\$H‹H‰$H‹KH‰L$H‹”$(H‹ÿÓH‹l$H‹T$H‹L$ H‹D$(H‰¬$¨H‰”$°H‹œ$H‰œ$¸H‹œ$H‰œ$ÀH‰Œ$ÈH‰„$ÐHĐÃH‹œ$ÀH‹„$ÈH‰œ$ H‰„$¨H‰„$¸HÇÂH‰œ$°1íH9ëtH‹[H-H9녝HÇÁ€ùtkH‹XH9Ó|bH‰D$XH‹1íH9èt H‹T$XH‰„$ÐH‰ÁH‰”$ØH‰Ðé÷ýÿÿHH‰$HH‰\$HH‰\$èH‹D$ë±H‰T$@Hƒú}	HÇD$@HH‰$èH‹L$@H‹D$H‰D$HH‰D$PHH‰$H‰L$H‰L$èH‹t$H‹l$ H‹T$(H‹Œ$°H‹„$¸H¼$8WÀHƒÇÐèGøH‰´$ðH‰´$8H‰¬$øH‰¬$@H‰”$H‰”$HH‰L$pH‰Œ$PH‰D$xH‰„$XHDŽ$€ÿÿÿÿHDŽ$ˆÿÿÿÿH‹\$PHƒût,H¬$8H‰\$H‰l$H-H‰,$èH‹D$Hé|þÿÿ‰ëÐ1À1Ééaþÿÿèé¡ûÿÿÌ.
’type."".readerò$runtime.assertI2I2¤"".sniff¤"".ErrFormatÂ"".ErrFormatðtype.io.Reader¶runtime.convI2IþÄ
$type.*bufio.Reader˜>go.itab.*bufio.Reader."".readerô$type.*bufio.ReaderŠtype."".reader¢>go.itab.*bufio.Reader."".reader¶ runtime.typ2Itabú"type.bufio.ReaderŒ
"runtime.newobjectÂ
type.[]uint8è
"runtime.makesliceÎª runtime.duffzeroâ"type.bufio.Readerô(runtime.typedmemmove¬0runtime.morestack_noctxt€ ,"".autotmp_0035ÿtype."".reader"".autotmp_0034$type.*bufio.Reader"".autotmp_0033$type.*bufio.Reader"".autotmp_0032¯"type.bufio.Reader"".autotmp_0029ï$type.*bufio.Reader"".autotmp_0028ßtype."".readerbufio.r·3¿type.io.Readerbufio.buf·2¿type.[]uint8bufio.b·1ÿ$type.*bufio.Readerbufio.r·6$type.*bufio.Readerbufio.size·3Ÿtype.intbufio.rd·2¿type.io.Readerbufio.rd·2ßtype.io.Reader"".~r1ßtype."".reader
"".rrŸtype."".reader"".rŸtype.io.Reader"".ftype."".format
"".rrÿtype."".reader"".~r3`type.error"".~r2@type.string"".~r1 type."".Image"".rtype.io.Reader0" ’Ÿ §Ÿ øŸà4žX dJ`HœD*¸Y
ÉÀ+.Æ'Tgclocals·693e8a411a45da74e76c619c62a5bb87Tgclocals·a09af47d95804d1a0febde7c2c7293b66$GOROOT/src/image/format.goþ"".DecodeConfigÀÀdH‹%H„$ðþÿÿH;A†tHì1ÛH‰œ$¨H‰œ$°H‰œ$¸H‰œ$À1ÛH‰œ$ÈH‰œ$Ð1ÛH‰œ$ØH‰œ$àH‹Œ$˜H‹„$ 1ÛH‰\$`H‰\$h1ÛH‰œ$àH‰œ$èHH‰$H‰Œ$ÀH‰L$H‰„$ÈH‰D$Hœ$àH‰\$è¶\$ H‹Œ$àH‰Œ$€H‹”$èH‰”$ˆ€û„œH‰ÐH‰L$`H‰D$hH‰Œ$H‰$H‰„$˜H‰D$èH‹\$H‰œ$H‹\$H‰œ$H‹\$ H‰œ$H‹\$(H‰œ$ H‹\$0H‰œ$(H‹D$8H‰„$01íH9èuZ1ÒH‰”$¨H‰”$°H‰”$¸H‰”$À1ÛH‰œ$ÈH‰œ$ÐH‹H‰œ$ØH‹H‰œ$àHĐÃHH‰$H‹œ$H‰\$H‹œ$˜H‰\$èH\$H‹H‰$H‹KH‰L$H‹”$0H‹ÿÓH‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$¨H‰´$°H‰¬$¸H‰”$ÀH‹œ$H‰œ$ÈH‹œ$H‰œ$ÐH‰Œ$ØH‰„$àHĐÃH‹œ$ÀH‹„$ÈH‰œ$ H‰„$¨H‰„$¸HÇÂH‰œ$°1íH9ëtH‹[H-H9녝HÇÁ€ùtkH‹XH9Ó|bH‰D$XH‹1íH9èt H‹T$XH‰„$ÐH‰ÁH‰”$ØH‰ÐéÍýÿÿHH‰$HH‰\$HH‰\$èH‹D$ë±H‰T$@Hƒú}	HÇD$@HH‰$èH‹L$@H‹D$H‰D$HH‰D$PHH‰$H‰L$H‰L$èH‹t$H‹l$ H‹T$(H‹Œ$°H‹„$¸H¼$8WÀHƒÇÐèGøH‰´$ðH‰´$8H‰¬$øH‰¬$@H‰”$H‰”$HH‰L$pH‰Œ$PH‰D$xH‰„$XHDŽ$€ÿÿÿÿHDŽ$ˆÿÿÿÿH‹\$PHƒût,H¬$8H‰\$H‰l$H-H‰,$èH‹D$Hé|þÿÿ‰ëÐ1À1ÉéaþÿÿèégûÿÿÌÌÌÌÌÌÌ.
²type."".reader’$runtime.assertI2I2Ä"".sniffä"".ErrFormat‚"".ErrFormat°type.io.Readeröruntime.convI2I¾¸$type.*bufio.ReaderŒ>go.itab.*bufio.Reader."".readerè$type.*bufio.Readerþtype."".reader–
>go.itab.*bufio.Reader."".readerª
 runtime.typ2Itabî
"type.bufio.Reader€"runtime.newobject¶type.[]uint8Ü"runtime.makesliceÂª runtime.duffzeroÖ"type.bufio.Readerè(runtime.typedmemmove 0runtime.morestack_noctxt  ,"".autotmp_0045ÿtype."".reader"".autotmp_0044$type.*bufio.Reader"".autotmp_0043$type.*bufio.Reader"".autotmp_0042¯"type.bufio.Reader"".autotmp_0039ï$type.*bufio.Reader"".autotmp_0038ßtype."".readerbufio.r·3¿type.io.Readerbufio.buf·2¿type.[]uint8bufio.b·1ÿ$type.*bufio.Readerbufio.r·6$type.*bufio.Readerbufio.size·3Ÿtype.intbufio.rd·2¿type.io.Readerbufio.rd·2ßtype.io.Reader"".~r1ßtype."".reader
"".rrŸtype."".reader"".rŸtype.io.Reader"".ftype."".format
"".rrÿtype."".reader"".~r3€type.error"".~r2`type.string"".~r1 type."".Config"".rtype.io.Reader0" ²Ÿ ÁŸ øŸ 	,ºh dZjXø*ÈY
ÙÚ+.Æ-Tgclocals·473289be119113ddb746c224f05da7b4Tgclocals·a09af47d95804d1a0febde7c2c7293b66$GOROOT/src/image/format.goþ"".Point.StringÀÀdH‹%HD$øH;A†õHìˆ1ÛH‰œ$ H‰œ$¨H‹œ$H‰$èH‹\$H‰\$xH‹\$H‰œ$€H‹œ$˜H‰$èH‹L$H‹D$HÇ$HH‰\$HÇD$H‹\$xH‰\$H‹œ$€H‰\$ HH‰\$(HÇD$0H‰L$hH‰L$8H‰D$pH‰D$@HH‰\$HHÇD$PèH‹\$XH‰œ$ H‹\$`H‰œ$¨HĈÃèééþÿÿÌÌÌÌÌÌÌÌÌ
|strconv.ItoaÌstrconv.Itoaþgo.string."("Ögo.string.","¨go.string.")"Î*runtime.concatstring5œ0runtime.morestack_noctxt@"".autotmp_0050?type.string"".autotmp_0049type.string"".~r0 type.string"".ptype."".Pointí &1Ü=(:Tgclocals·64ca935d1a2110a30e2d604686188539Tgclocals·44750c784da4dd430afdd97fea5c405a2$GOROOT/src/image/geom.goþ"".Point.Add``1Û1ÛH‹L$H‹l$H‹D$HéH‹l$ HèH‰L$(H‰D$0ÃÌÌÌÌÌÌÌ`"".~r1@type."".Point"".q type."".Point"".ptype."".Point00
0.Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.Sub``1Û1ÛH‹L$H‹l$H‹D$H)éH‹l$ H)èH‰L$(H‰D$0ÃÌÌÌÌÌÌÌ`"".~r1@type."".Point"".q type."".Point"".ptype."".Point00
:.Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.Mul``H‹D$1Û1ÛH‹L$H‹\$H¯ÈH¯ØH‰L$ H‰\$(ÃÌÌÌÌÌÌÌÌÌÌP"".~r10type."".Point"".k type.int"".ptype."".Point00
D)Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.Div  H‹t$1Û1ÛH‹D$Hƒþÿt1H™H÷þH‰ÃH‹D$H‰ÙHƒþÿtH™H÷þH‰ÃH‰L$ H‰\$(ÃH÷ØH‰ÃëíH÷ØH‰ÃëÏÌÌÌP"".~r10type."".Point"".k type.int"".ptype."".PointPP
NITgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.In€€H‹L$H‹D$H‹\$H9Ë"H‹l$(H9é}H‹\$ H9ÃH‹l$0H9èœD$8ÃÆD$8ëøÌÌÌp"".~r1`type.bool"".r "type."".Rectangle"".ptype."".Point@@
X
6Tgclocals·627bbca91efe935c3ac76737d2026ca6Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.Mod  H‹|$(H‹t$0L‹L$L‹D$ 1ÛL)ÏL)ÆH‹D$H‹T$1Û1ÛL)ÈI‰ÒM)ÂHƒÿÿtJH™H÷ÿH‰ÓH‰ÙHƒû}HùL‰ÐHƒþÿt)H™H÷þH‰ÓH‰ØHƒû}Hð1Û1ÛLÉLÀH‰L$8H‰D$@Ã1ÛëÛ1ÛëºÌÌÌÌÌÌÌÌ̀"".autotmp_0062type."".Point"".autotmp_0059type.int"".autotmp_0058type.int"".autotmp_0056type.int"".autotmp_0055type.int"".~r1`type."".Point"".r "type."".Rectangle"".ptype."".Point2f
Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.EqÀÀHƒì H‹\$(H‰\$H‹\$0H‰\$H‹D$8H‰$H‹L$@H‰L$HL$H$H‹H‹(H9ëuH‹YH‹hH9ë”D$HHƒÄ ÃÆD$HëôÌÌÌÌÌP@
"".autotmp_0064?type."".Point"".autotmp_0063type."".Point"".~r1@type.bool"".q type."".Point"".ptype."".Point@O?@`„\Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ
"".Pt@@1Û1ÛH‹L$H‹D$H‰L$H‰D$ ÃÌÌÌÌÌÌÌ@"".~r2 type."".Point"".Ytype.int"".Xtype.int  ”Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ&"".Rectangle.String€€dH‹%H;a†ÔHƒìh1ÛH‰œ$H‰œ$˜H\$pH‹H‰$H‹KH‰L$èH‹\$H‰\$XH‹\$H‰\$`Hœ$€H‹H‰$H‹KH‰L$èH‹L$H‹D$HÇ$H‹\$XH‰\$H‹\$`H‰\$HH‰\$HÇD$ H‰L$HH‰L$(H‰D$PH‰D$0èH‹\$8H‰œ$H‹\$@H‰œ$˜HƒÄhÃèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
~"".Point.Stringà"".Point.Stringºgo.string."-"ˆ*runtime.concatstring3Ð0runtime.morestack_noctxt`Ð"".autotmp_0069?type.string"".autotmp_0068type.string"".~r0@type.string"".r"type."".RectangleÐÏÏ€¶)¾>1T=Tgclocals·ae0a20890c9ac6bfbea3383f34532babTgclocals·44750c784da4dd430afdd97fea5c405a2$GOROOT/src/image/geom.goþ"".Rectangle.Dx@@H‹\$H‹l$H)ëH‰\$(ÃÌÌÌÌÌÌÌÌÌÌÌÌÌP"".~r0@type.int"".r"type."".Rectangle  Â Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.Dy@@H‹\$ H‹l$H)ëH‰\$(ÃÌÌÌÌÌÌÌÌÌÌÌÌÌP"".~r0@type.int"".r"type."".Rectangle  Ì Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ""".Rectangle.Size``1Û1ÛH‹L$H‹l$H‹D$ H)éH‹l$H)èH‰L$(H‰D$0ÃÌÌÌÌÌÌÌ`"".~r0@type."".Point"".r"type."".Rectangle00 Ô
Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ "".Rectangle.Add  H‹L$(H‹D$01Û1ÛH‹t$H‹T$H‹\$HÎHÂHËH‰ÙH‹\$ HÃH‰t$8H‰T$@H‰L$HH‰\$PÃÌÌÌÌÌÌÌÌÌÌ "".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePP ä
Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23cTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ "".Rectangle.Sub  H‹L$(H‹D$01Û1ÛH‹t$H‹T$H‹\$H)ÎH)ÂH)ËH‰ÙH‹\$ H)ÃH‰t$8H‰T$@H‰L$HH‰\$PÃÌÌÌÌÌÌÌÌÌÌ "".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePP ô
Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23cTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.InsetÀÀL‹L$H‹T$H‹t$H‹|$ H‹D$(1ÛH‰ÓL)ËH‰ÅHÑåH9ë}]L‰ËHÓH‰ÙHÁû?H)ÙHÑùH‰ÊH‰ûH)óH‰ÅHÑåH9ë}(HþH‰óHÁû?H)ÞHÑþH‰ðH‰L$0H‰t$8H‰T$@H‰D$HÃHÆH‰ûH)ÃH‰ØëÝL‰ÉHÁH)Âë®ÌÌÌÌÌÌÌÌÌÌÌ̐"".autotmp_0080type.int"".autotmp_0079type.int"".autotmp_0078type.int"".autotmp_0076type.int"".autotmp_0075type.int"".autotmp_0074type.int"".autotmp_0073type.int"".~r1P"type."".Rectangle"".n@type.int"".r"type."".Rectangle  <ˆ

	Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ,"".Rectangle.IntersectÀÀL‹T$(L‹L$0L‹D$8H‹|$@H‹t$H‹T$H‹L$H‹D$ 1ÛL9Ö}L‰ÖL9Ê}L‰ÊL9Á~L‰ÁH9ø~H‰øH9ÎH9ÂH‰t$HH‰T$PH‰L$XH‰D$`ÃH‹H‰\$HH‹H‰\$PH‹H‰\$XH‹H‰\$`ÃÌÌÌÌÌÌØ
"".ZRð
"".ZRˆ 
"".ZR 0
"".ZRÀ"".~r1€"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle  4°*
7Tgclocals·5f32766c99d383f833fae93d4e4d71d1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.Union  L‹T$(L‹L$0L‹D$8H‹|$@H‹t$H‹T$H‹L$H‹D$ 1ÛH9΍‡H9Â@Å@€ýtL‰T$HL‰L$PL‰D$XH‰|$`ÃM9Â}WI9ù@Å@€ýtH‰t$HH‰T$PH‰L$XH‰D$`ÃL9Ö~L‰ÖL9Ê~L‰ÊL9Á}L‰ÁH9ø}H‰øH‰t$HH‰T$PH‰L$XH‰D$`ÃHÇÅë§HÇÅétÿÿÿÌÌÌÌÌÌÌÌÌÌÀ"".autotmp_0082type.bool"".~r1€"type."".Rectangle"".s@"type."".Rectangle"".r"type."".RectangleÐÐDØ*	Tgclocals·5f32766c99d383f833fae93d4e4d71d1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.Empty``H‹\$H‹l$H9ë}H‹\$H‹l$ H9ëD$(ÃÆD$(ëøÌÌÌÌÌÌÌP"".~r0@type.bool"".r"type."".Rectangle00ˆ0Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.EqààHƒì@L‹|$HL‹t$PL‹l$XL‹d$`L‹\$hL‹T$pL‹L$xH‹¼$€L‰|$ L‰t$(L‰l$0L‰d$8L‰$L‰T$L‰L$H‰|$H\$ H‰ÞH$H‰ÚHƒþ„¬Hƒû„›H‹H‹*H9ë…ˆH‹^H‹jH9ëu{H‰ðHƒÀH‰ÑHƒÁH‹H‹)H9ëu^H‹XH‹iH9ë”À<uBM9ï}4M9æÀ<t M9Ë}I9ú„$ˆHƒÄ@ÃHÇÀëëƄ$ˆëèHÇÀëÉƄ$ˆëÕ1Àë¬1À먉é^ÿÿÿ‰éMÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ̐€"".autotmp_0092type.bool"".autotmp_0091type.bool"".autotmp_0090type.*"".Point"".autotmp_0089type.*"".Point"".autotmp_0084"type."".Rectangle"".autotmp_0083?"type."".Rectangle"".~r1€type.bool"".s@"type."".Rectangle"".r"type."".Rectangle€á€J°’/Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ*"".Rectangle.Overlaps€€L‹l$L‹d$L‹\$L‹T$ L‹L$(L‹D$0H‹|$8H‹t$@M9Ý}AM9ԝÀ<u'I9ù})I9ðÀ<uI9ý}M9Ù}I9ô}	M9МD$HÃÆD$HëøHÇÀëÔHÇÀë¼ÌÌÌÌÌÌÌÌ̐"".autotmp_0095type.bool"".~r1€type.bool"".s@"type."".Rectangle"".r"type."".Rectangle€€(œ(#Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.InààL‹L$L‹D$H‹|$H‹t$ I9ù}CI9ðÀ<tÆD$HÃH‹\$(L9Ë"H‹l$8H9ïH‹\$0L9ÃH‹l$@H9îžD$HÃÆD$HëøHÇÀëºÌÌÌÌÌÌÌÌÌÌ̐"".~r1€type.bool"".s@"type."".Rectangle"".r"type."".Rectangleppª
3Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.Canon  H‹t$H‹T$H‹L$ H‹D$1ÛH9Ö}	H‰ÕH‰òH‰îH9Á}	H‰ÅH‰ÈH‰éH‰T$(H‰D$0H‰t$8H‰L$@ÃÌÌÌÌÌÌÌÌ̀"".autotmp_0098type.int"".~r0@"type."".Rectangle"".r"type."".RectanglePPÂ		Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.AtààdH‹%H;a†DHƒìh1ÛH‰œ$ H‰œ$¨1ÛH‹Œ$H‹„$˜H‰D$@H‹\$pH‹|$xH‰|$PH‹´$€H‰t$XH‹”$ˆH‰T$`H‰\$HH‰L$8H9ˏÔH9ñËH9ǏÂH9МÀ<t\HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH‹\$(H‰œ$ H‹\$0H‰œ$¨HƒÄhÃHH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH‹\$(H‰œ$ H‹\$0H‰œ$¨HƒÄhÃ1Àé=ÿÿÿèéŸþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
¶0type.image/color.Alpha16Ì,type.image/color.ColoräZgo.itab.image/color.Alpha16.image/color.Colorü$image/color.Opaque¢runtime.convT2Iî0type.image/color.Alpha16„,type.image/color.ColorœZgo.itab.image/color.Alpha16.image/color.Color´.image/color.TransparentÚruntime.convT2I°0runtime.morestack_noctxt€Ð"".r?"type."".Rectangle"".p_type."".Point"".~r2`,type.image/color.Color"".yPtype.int"".x@type.int"".r"type."".Rectangle,ÐÜÏÐ[ÏÐÏðØ)o\\РTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ&"".Rectangle.Bounds``1ÛH‹\$H‰\$(H‹\$H‰\$0H‹\$H‰\$8H‹\$ H‰\$@ÃÌÌÌÌ̀"".~r0@"type."".Rectangle"".r"type."".Rectangle00è.Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ."".Rectangle.ColorModel@@1ÛH‹H‰\$(H‹H‰\$0ÃÌÌÌÌÌ
0image/color.Alpha16Model"0image/color.Alpha16Model`"".~r0@,type.image/color.Model"".r"type."".Rectangle  òTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rect  H‹t$H‹T$H‹L$H‹D$ 1ÛH9Ö~	H‰õH‰ÖH‰êH9Á~	H‰ÍH‰ÁH‰è1ÛH‰t$(H‰L$0H‰T$8H‰D$@ÃÌÌÌÌÌÌ̀"".autotmp_0101type.int"".~r4@"type."".Rectangle
"".y10type.int
"".x1 type.int
"".y0type.int
"".x0type.intPP†		Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ*"".(*RGBA).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
*image/color.RGBAModel"*image/color.RGBAModel0"".~r0,type.image/color.Model"".ptype.*"".RGBA  Ž Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*RGBA).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".RGBA@@’@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*RGBA).At  dH‹%H;a†ªHƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãèé9ÿÿÿÌÌÌÌÌÌÌÌÌ
‚""".(*RGBA).RGBAAtØ*type.image/color.RGBAî,type.image/color.Color†Tgo.itab.image/color.RGBA.image/color.ColorÀruntime.convT2Iü0runtime.morestack_noctxtP€
"".autotmp_0103*type.image/color.RGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA€¥Ð–#š@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*RGBA).RGBAAtààdH‹%H;a†RL‹\$L‹T$H‹L$1Û1ÛHƒù„.L‹I L‹A(H‹y0H‹q8M9ُI9ûM9ЏüI9òœÀ<u1҈T$ ˆT$!ˆT$"ˆT$#ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇH‹1H‹QH‹iH9׃•H>¶I‰ÚH‰ÇHÿÇH‹1H‹QH‹iH9×snH>¶I‰ÙH‰ÇHƒÇH‹1H‹QH‹iH9×sFH>¶H‰ÞH‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsH¶DˆT$ DˆL$!@ˆt$"ˆ\$#Ãèèèè1Àéÿÿÿ‰éËþÿÿèé‘þÿÿÌ
ø$runtime.panicindex†$runtime.panicindex”$runtime.panicindex¢$runtime.panicindexÌ0runtime.morestack_noctxt@"".autotmp_0108*type.image/color.RGBA"".autotmp_0106type.int"".~r20*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBAðð"ž$A&¹»5Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*RGBA).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ ÃÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA@@²;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*RGBA).SetààdH‹%H;a†HƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„ÝM‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏¤I9ó›L9׏’I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$,H‰\$èH‹Œ$€H‹D$0¶\$,I‰Û¶\$-I‰Ú¶\$.I‰Ù¶\$/H‰ßI‰ÀIƒÀHƒù„”H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆH‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsH@ˆ;HƒÄxÃèèèè‰éeÿÿÿ1ÀémþÿÿA‰éþÿÿèéÑýÿÿÌ
¼*image/color.RGBAModelÒ*image/color.RGBAModelâ¤*type.image/color.RGBAò"runtime.assertI2Tè$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindexÌ0runtime.morestack_noctxtPð"".autotmp_0126type.int"".autotmp_0125type.int"".autotmp_0124type.int"".autotmp_0123type.int"".autotmp_0121type.int"".autotmp_0119—*type.image/color.RGBA"".autotmp_0118,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA,ð{ïðßïð2ï°Fº/_.©(!	ñ¿Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ$"".(*RGBA).SetRGBAÀÀdH‹%H;a†4L‹\$L‹T$H‹L$1ÛHƒù„L‹I L‹A(H‹y0H‹q8M9ُòI9ûéM9ЏàI9òœÀ<uÃH‹Y L‰ÚH)ÚH‹Y(L‰×H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇH‹1H‹QH‹iH9׃H>¶l$ @ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9×sdH>¶l$!@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s:H>¶l$"@ˆ+H‰ÂHƒÂH‰ËH‹	H‹CH‹kH9Âs
H¶l$#@ˆ+Ãèèèè1Àéÿÿÿ‰éçþÿÿèé¯þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
¼$runtime.panicindexÊ$runtime.panicindexØ$runtime.panicindexæ$runtime.panicindex0runtime.morestack_noctxt@"".autotmp_0137type.int"".autotmp_0136type.int"".autotmp_0135type.int"".autotmp_0134type.int"".autotmp_0132type.int"".c0*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBAàà@Ò"A&'"#&CTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*RGBA).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„«H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò0H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÊýÿÿ‰éNýÿÿèéÎüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".RGBAþ"runtime.newobjectè2go.itab.*"".RGBA."".ImageÄtype.*"".RGBAÚtype."".Imageò2go.itab.*"".RGBA."".Image† runtime.typ2Itabætype."".RGBAø"runtime.newobjectÞ(runtime.writeBarrier¤
2go.itab.*"".RGBA."".Image€type.*"".RGBA–type."".Image®2go.itab.*"".RGBA."".ImageÂ runtime.typ2Itabú.runtime.writebarrierptrž$runtime.panicsliceÒ0runtime.morestack_noctxtpÀ"".autotmp_0152type.*uint8"".autotmp_0151type.*"".RGBA"".autotmp_0150type.int"".autotmp_0149type.int"".autotmp_0146?type.*"".RGBA"".autotmp_0144type.*"".RGBA"".autotmp_0143/type.[]uint8"".autotmp_0142type.*"".RGBA"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA.À¿¿ÀÝ¿Àk¿ÀRì1wK›#?MJ -	 ‡ûyå.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ""".(*RGBA).OpaqueÀÀdH‹%H;a†ôH‹L$Hƒù„ÞH‹y H‹q(H‹Q0H‹A8H9׍¹H9ƝÀ<tÆD$ÃHƒù„˜H‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂH‰ÚL‹I(H‹Y8L9Ë~YL‰ÐH9Ð}1HƒùtXH‹9H‹qH‹iH9ðsAH¶€ûÿtÆD$ÃHƒÀH9Ð|ÏH‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9˧ÆD$Ãè‰뤉éaÿÿÿHÇÀéAÿÿÿ‰éÿÿÿèéïþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
Æ$runtime.panicindex0runtime.morestack_noctxt "".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0158type.int"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.int"".~r0type.bool"".ptype.*"".RGBA  HŽ-+
"	




â>Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewRGBA€€dH‹%HD$èH;A†QHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uPH‰(H‹l$0HÁåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëžèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
†type.[]uint8¬"runtime.makesliceˆtype."".RGBAš"runtime.newobjectú(runtime.writeBarrier¼.runtime.writebarrierptrÔ0runtime.morestack_noctxtP°"".autotmp_0169?type.*"".RGBA"".autotmp_0168type.int"".autotmp_0166type.int"".autotmp_0165type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wÏtype.int"".~r1@type.*"".RGBA"".r"type."".Rectangle °´¯°¯€²?1Q¨•7‘#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ."".(*RGBA64).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
.image/color.RGBA64Model".image/color.RGBA64Model0"".~r0,type.image/color.Model"".ptype.*"".RGBA64  Ô Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*RGBA64).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".RGBA64@@Ø@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*RGBA64).At  dH‹%H;a†²Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$èH·\$f‰\$8H·\$f‰\$:H·\$f‰\$<H·\$f‰\$>HH‰$HH‰\$HH‰\$H\$8H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãèé1ÿÿÿÌ
‚*"".(*RGBA64).RGBA64Atè.type.image/color.RGBA64þ,type.image/color.Color–Xgo.itab.image/color.RGBA64.image/color.ColorÐruntime.convT2IŒ0runtime.morestack_noctxtP€
"".autotmp_0170.type.image/color.RGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64€­ÐÜ#¢@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*RGBA64).RGBA64At 	 	dH‹%H;a†&L‹\$L‹T$H‹L$1Û1ÛHƒù„L‹I L‹A(H‹y0H‹q8M9ُâI9ûÙM9ЏÐI9òœÀ<u1Òf‰T$ f‰T$"f‰T$$f‰T$&ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇH‹1H‹QL‹AH9׃eH>f¶HÁãH‰ÇHÿÇH‹1H‹QL‹AH9׃8H,>f¶mH	ëI‰ÜH‰ÇHƒÇH‹1H‹QL‹AH9׃H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9׃ÙH,>f¶mH	ëI‰ÛH‰ÇHƒÇH‹1H‹QL‹AH9׃¨H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9×s~H,>f¶mH	ëI‰ÚH‰ÇHƒÇH‹1H‹QL‹AH9×sQH>f¶HÁãH‰ÂHƒÂH‰ÍH‹	H‹EL‹EH9Âs$H,f¶mH	ëfD‰d$ fD‰\$"fD‰T$$f‰\$&Ãèèèèèèèè1Àé/þÿÿ‰é÷ýÿÿèé½ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
è$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindex $runtime.panicindex®$runtime.panicindex¼$runtime.panicindexÊ$runtime.panicindexô0runtime.morestack_noctxt@"".autotmp_0175.type.image/color.RGBA64"".autotmp_0173type.int"".~r20.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64ÐÐDä$A&PQMI	ó]Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ,"".(*RGBA64).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ ÃÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA64@@‚;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*RGBA64).Set€€dH‹%H;a†ÝHƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„¨M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏oI9ófL9׏]I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$0H‰\$èH‹Œ$€H‹D$(H·\$0I‰ÙH·\$2H‰ßH·\$4H‰ÞH·\$6H‰ÚI‰ÃIƒÃHƒù„WH‹L‹QH‹iM9Óƒ<JL‰ÍfÁí@ˆ+I‰ÃIÿÃH‹L‹QH‹iM9Óƒ
JDˆI‰ÂIƒÂH‹L‹IH‹iM9ʃäJH‰ýfÁí@ˆ+I‰ÂIƒÂH‹L‹IH‹iM9ʃ´J@ˆ;I‰ÁIƒÁH‹H‹yH‹iI9ùƒ‹JH‰õfÁí@ˆ+I‰ÁIƒÁH‹H‹yH‹iI9ùs_J@ˆ3I‰ÀIƒÀH‹9H‹qH‹iI9ðs:JH‰ÕfÁí@ˆ+H‰ÆHƒÆH‰ËH‹	H‹CH‹kH9ÆsH1ˆHƒÄxÃèèèèèèèè‰é¢þÿÿ1Àé¢ýÿÿA‰éPýÿÿèéýÿÿÌÌÌÌÌÌ
¼.image/color.RGBA64ModelÒ.image/color.RGBA64Modelâ¬.type.image/color.RGBA64ú"runtime.assertI2TÆ
$runtime.panicindexÔ
$runtime.panicindexâ
$runtime.panicindexð
$runtime.panicindexþ
$runtime.panicindexŒ$runtime.panicindexš$runtime.panicindex¨$runtime.panicindexâ0runtime.morestack_noctxtPð$"".autotmp_0205type.int"".autotmp_0204type.int"".autotmp_0203type.int"".autotmp_0202type.int"".autotmp_0201type.int"".autotmp_0200type.int"".autotmp_0199type.int"".autotmp_0198type.int"".autotmp_0196type.int"".autotmp_0194.type.image/color.RGBA64"".autotmp_0193,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".iŸtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64,ð{ïðŽïðNï€fŠ/_.±3!)")% 	ñTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ,"".(*RGBA64).SetRGBA64ÀÀdH‹%H;a†øL‹|$L‹t$L·l$ L·d$"L·\$$L·T$&H‹L$1ÛHƒù„¾L‹I L‹A(H‹y0H‹q8M9ùžI9ÿ•M9ðŒI9öœÀ<uÃH‹Y L‰úH)ÚH‹Y(L‰÷H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇH‹1H‹QH‹iH9׃9H>L‰ífÁí@ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9׃
H>Dˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃áH>L‰åfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃±H>Dˆ#H‰ÇHƒÇH‹1H‹QH‹iH9׃ˆH>L‰ÝfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s\H>DˆH‰ÇHƒÇH‹1H‹QH‹iH9×s7H>L‰ÕfÁí@ˆ+H‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsHDˆÃèèèèèèèè1Àésþÿÿ‰é;þÿÿèéëýÿÿÌÌÌÌÌÌÌÌÌÌÌ
Œ$runtime.panicindexš$runtime.panicindex¨$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexÒ$runtime.panicindexà$runtime.panicindexî$runtime.panicindex˜0runtime.morestack_noctxt@"".autotmp_0224type.int"".autotmp_0223type.int"".autotmp_0222type.int"".autotmp_0221type.int"".autotmp_0220type.int"".autotmp_0219type.int"".autotmp_0218type.int"".autotmp_0217type.int"".autotmp_0215type.int"".c0.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64  `ª:A&)!)")%!Å[Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*RGBA64).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„«H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò0H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÊýÿÿ‰éNýÿÿèéÎüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".RGBA64þ"runtime.newobjectè6go.itab.*"".RGBA64."".ImageÄtype.*"".RGBA64Útype."".Imageò6go.itab.*"".RGBA64."".Image† runtime.typ2Itabætype."".RGBA64ø"runtime.newobjectÞ(runtime.writeBarrier¤
6go.itab.*"".RGBA64."".Image€type.*"".RGBA64–type."".Image®6go.itab.*"".RGBA64."".ImageÂ runtime.typ2Itabú.runtime.writebarrierptrž$runtime.panicsliceÒ0runtime.morestack_noctxtpÀ"".autotmp_0243type.*uint8"".autotmp_0242type.*"".RGBA64"".autotmp_0241type.int"".autotmp_0240type.int"".autotmp_0237?type.*"".RGBA64"".autotmp_0235type.*"".RGBA64"".autotmp_0234/type.[]uint8"".autotmp_0233type.*"".RGBA64"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA64.À¿¿ÀÝ¿Àk¿ÀRÌ1wK›#?MJ -	 ‡ûyå.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ&"".(*RGBA64).Opaque  dH‹%H;a†/H‹L$Hƒù„H‹y H‹q(H‹Q0H‹A8H9׍ôH9ƝÀ<tÆD$ÃHƒù„ÓH‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂH‰ÚL‹I(H‹Y8L9ËŽ€L‰ÐH9Ð}XI‰ÀIƒÀHƒù„H‹9H‹qH‹iI9ðsjJ¶€ûÿuQI‰ÀIÿÀH‹9H‹qH‹iI9ðsAJ¶€ûÿu/HƒÀH9Ð|¨H‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9Ë€ÆD$ÃÆD$Ãèè‰éxÿÿÿ‰é&ÿÿÿHÇÀéÿÿÿ‰éàþÿÿèé´þÿÿÌÌÌÌ
¨$runtime.panicindex¶$runtime.panicindex†0runtime.morestack_noctxt "".autotmp_0253type.int"".autotmp_0252type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int"".~r0type.bool"".ptype.*"".RGBA64ÐÐHî-+O	



“=Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewRGBA64€€dH‹%HD$èH;A†QHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uPH‰(H‹l$0HÁåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëžèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
†type.[]uint8¬"runtime.makesliceˆtype."".RGBA64š"runtime.newobjectú(runtime.writeBarrier¼.runtime.writebarrierptrÔ0runtime.morestack_noctxtP°"".autotmp_0263?type.*"".RGBA64"".autotmp_0262type.int"".autotmp_0260type.int"".autotmp_0259type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".RGBA64"".r"type."".Rectangle °´¯°¯€’?1Q¨•7‘#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ,"".(*NRGBA).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
,image/color.NRGBAModel",image/color.NRGBAModel0"".~r0,type.image/color.Model"".ptype.*"".NRGBA  ´ Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ$"".(*NRGBA).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".NRGBA@@¸@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*NRGBA).At  dH‹%H;a†ªHƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãèé9ÿÿÿÌÌÌÌÌÌÌÌÌ
‚&"".(*NRGBA).NRGBAAtØ,type.image/color.NRGBAî,type.image/color.Color†Vgo.itab.image/color.NRGBA.image/color.ColorÀruntime.convT2Iü0runtime.morestack_noctxtP€
"".autotmp_0264,type.image/color.NRGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA€¥Ð¼#š@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*NRGBA).NRGBAAtààdH‹%H;a†RL‹\$L‹T$H‹L$1Û1ÛHƒù„.L‹I L‹A(H‹y0H‹q8M9ُI9ûM9ЏüI9òœÀ<u1҈T$ ˆT$!ˆT$"ˆT$#ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇH‹1H‹QH‹iH9׃•H>¶I‰ÚH‰ÇHÿÇH‹1H‹QH‹iH9×snH>¶I‰ÙH‰ÇHƒÇH‹1H‹QH‹iH9×sFH>¶H‰ÞH‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsH¶DˆT$ DˆL$!@ˆt$"ˆ\$#Ãèèèè1Àéÿÿÿ‰éËþÿÿèé‘þÿÿÌ
ø$runtime.panicindex†$runtime.panicindex”$runtime.panicindex¢$runtime.panicindexÌ0runtime.morestack_noctxt@"".autotmp_0269,type.image/color.NRGBA"".autotmp_0267type.int"".~r20,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBAðð"Ä$A&¹»5Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*NRGBA).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ ÃÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".NRGBA@@Ø;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*NRGBA).SetààdH‹%H;a†HƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„ÝM‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏¤I9ó›L9׏’I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$,H‰\$èH‹Œ$€H‹D$0¶\$,I‰Û¶\$-I‰Ú¶\$.I‰Ù¶\$/H‰ßI‰ÀIƒÀHƒù„”H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆH‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsH@ˆ;HƒÄxÃèèèè‰éeÿÿÿ1ÀémþÿÿA‰éþÿÿèéÑýÿÿÌ
¼,image/color.NRGBAModelÒ,image/color.NRGBAModelâ¤,type.image/color.NRGBAò"runtime.assertI2Tè$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindexÌ0runtime.morestack_noctxtPð"".autotmp_0287type.int"".autotmp_0286type.int"".autotmp_0285type.int"".autotmp_0284type.int"".autotmp_0282type.int"".autotmp_0280—,type.image/color.NRGBA"".autotmp_0279,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA,ð{ïðßïð2ï°Fà/_.©(!	ñ¿Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ("".(*NRGBA).SetNRGBAÀÀdH‹%H;a†4L‹\$L‹T$H‹L$1ÛHƒù„L‹I L‹A(H‹y0H‹q8M9ُòI9ûéM9ЏàI9òœÀ<uÃH‹Y L‰ÚH)ÚH‹Y(L‰×H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇH‹1H‹QH‹iH9׃H>¶l$ @ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9×sdH>¶l$!@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s:H>¶l$"@ˆ+H‰ÂHƒÂH‰ËH‹	H‹CH‹kH9Âs
H¶l$#@ˆ+Ãèèèè1Àéÿÿÿ‰éçþÿÿèé¯þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
¼$runtime.panicindexÊ$runtime.panicindexØ$runtime.panicindexæ$runtime.panicindex0runtime.morestack_noctxt@"".autotmp_0298type.int"".autotmp_0297type.int"".autotmp_0296type.int"".autotmp_0295type.int"".autotmp_0293type.int"".c0,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBAàà@ø"A&'"#&CTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*NRGBA).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„«H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò0H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÊýÿÿ‰éNýÿÿèéÎüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".NRGBAþ"runtime.newobjectè4go.itab.*"".NRGBA."".ImageÄtype.*"".NRGBAÚtype."".Imageò4go.itab.*"".NRGBA."".Image† runtime.typ2Itabætype."".NRGBAø"runtime.newobjectÞ(runtime.writeBarrier¤
4go.itab.*"".NRGBA."".Image€type.*"".NRGBA–type."".Image®4go.itab.*"".NRGBA."".ImageÂ runtime.typ2Itabú.runtime.writebarrierptrž$runtime.panicsliceÒ0runtime.morestack_noctxtpÀ"".autotmp_0313type.*uint8"".autotmp_0312type.*"".NRGBA"".autotmp_0311type.int"".autotmp_0310type.int"".autotmp_0307?type.*"".NRGBA"".autotmp_0305type.*"".NRGBA"".autotmp_0304/type.[]uint8"".autotmp_0303type.*"".NRGBA"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".NRGBA.À¿¿ÀÝ¿Àk¿ÀR’1wK›#?MJ -	 ‡ûyå.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ$"".(*NRGBA).OpaqueÀÀdH‹%H;a†ôH‹L$Hƒù„ÞH‹y H‹q(H‹Q0H‹A8H9׍¹H9ƝÀ<tÆD$ÃHƒù„˜H‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂH‰ÚL‹I(H‹Y8L9Ë~YL‰ÐH9Ð}1HƒùtXH‹9H‹qH‹iH9ðsAH¶€ûÿtÆD$ÃHƒÀH9Ð|ÏH‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9˧ÆD$Ãè‰뤉éaÿÿÿHÇÀéAÿÿÿ‰éÿÿÿèéïþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
Æ$runtime.panicindex0runtime.morestack_noctxt "".autotmp_0323type.int"".autotmp_0322type.int"".autotmp_0319type.int"".autotmp_0318type.int"".autotmp_0317type.int"".autotmp_0316type.int"".~r0type.bool"".ptype.*"".NRGBA  H´-+
"	




â>Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewNRGBA€€dH‹%HD$èH;A†QHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uPH‰(H‹l$0HÁåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëžèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
†type.[]uint8¬"runtime.makesliceˆtype."".NRGBAš"runtime.newobjectú(runtime.writeBarrier¼.runtime.writebarrierptrÔ0runtime.morestack_noctxtP°"".autotmp_0330?type.*"".NRGBA"".autotmp_0329type.int"".autotmp_0327type.int"".autotmp_0326type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".NRGBA"".r"type."".Rectangle °´¯°¯€Ø?1Q¨•7‘#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ0"".(*NRGBA64).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
0image/color.NRGBA64Model"0image/color.NRGBA64Model0"".~r0,type.image/color.Model"".p type.*"".NRGBA64  ú Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*NRGBA64).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".p type.*"".NRGBA64@@þ@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*NRGBA64).At  dH‹%H;a†²Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$èH·\$f‰\$8H·\$f‰\$:H·\$f‰\$<H·\$f‰\$>HH‰$HH‰\$HH‰\$H\$8H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãèé1ÿÿÿÌ
‚."".(*NRGBA64).NRGBA64Atè0type.image/color.NRGBA64þ,type.image/color.Color–Zgo.itab.image/color.NRGBA64.image/color.ColorÐruntime.convT2IŒ0runtime.morestack_noctxtP€
"".autotmp_03310type.image/color.NRGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64€­Ђ#¢@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ."".(*NRGBA64).NRGBA64At 	 	dH‹%H;a†&L‹\$L‹T$H‹L$1Û1ÛHƒù„L‹I L‹A(H‹y0H‹q8M9ُâI9ûÙM9ЏÐI9òœÀ<u1Òf‰T$ f‰T$"f‰T$$f‰T$&ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇH‹1H‹QL‹AH9׃eH>f¶HÁãH‰ÇHÿÇH‹1H‹QL‹AH9׃8H,>f¶mH	ëI‰ÜH‰ÇHƒÇH‹1H‹QL‹AH9׃H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9׃ÙH,>f¶mH	ëI‰ÛH‰ÇHƒÇH‹1H‹QL‹AH9׃¨H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9×s~H,>f¶mH	ëI‰ÚH‰ÇHƒÇH‹1H‹QL‹AH9×sQH>f¶HÁãH‰ÂHƒÂH‰ÍH‹	H‹EL‹EH9Âs$H,f¶mH	ëfD‰d$ fD‰\$"fD‰T$$f‰\$&Ãèèèèèèèè1Àé/þÿÿ‰é÷ýÿÿèé½ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
è$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindex $runtime.panicindex®$runtime.panicindex¼$runtime.panicindexÊ$runtime.panicindexô0runtime.morestack_noctxt@"".autotmp_03360type.image/color.NRGBA64"".autotmp_0334type.int"".~r200type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64ÐÐDŠ$A&PQMI	ó]Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ."".(*NRGBA64).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ ÃÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".p type.*"".NRGBA64@@¨;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*NRGBA64).Set€€dH‹%H;a†ÝHƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„¨M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏oI9ófL9׏]I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$0H‰\$èH‹Œ$€H‹D$(H·\$0I‰ÙH·\$2H‰ßH·\$4H‰ÞH·\$6H‰ÚI‰ÃIƒÃHƒù„WH‹L‹QH‹iM9Óƒ<JL‰ÍfÁí@ˆ+I‰ÃIÿÃH‹L‹QH‹iM9Óƒ
JDˆI‰ÂIƒÂH‹L‹IH‹iM9ʃäJH‰ýfÁí@ˆ+I‰ÂIƒÂH‹L‹IH‹iM9ʃ´J@ˆ;I‰ÁIƒÁH‹H‹yH‹iI9ùƒ‹JH‰õfÁí@ˆ+I‰ÁIƒÁH‹H‹yH‹iI9ùs_J@ˆ3I‰ÀIƒÀH‹9H‹qH‹iI9ðs:JH‰ÕfÁí@ˆ+H‰ÆHƒÆH‰ËH‹	H‹CH‹kH9ÆsH1ˆHƒÄxÃèèèèèèèè‰é¢þÿÿ1Àé¢ýÿÿA‰éPýÿÿèéýÿÿÌÌÌÌÌÌ
¼0image/color.NRGBA64ModelÒ0image/color.NRGBA64Modelâ¬0type.image/color.NRGBA64ú"runtime.assertI2TÆ
$runtime.panicindexÔ
$runtime.panicindexâ
$runtime.panicindexð
$runtime.panicindexþ
$runtime.panicindexŒ$runtime.panicindexš$runtime.panicindex¨$runtime.panicindexâ0runtime.morestack_noctxtPð$"".autotmp_0366type.int"".autotmp_0365type.int"".autotmp_0364type.int"".autotmp_0363type.int"".autotmp_0362type.int"".autotmp_0361type.int"".autotmp_0360type.int"".autotmp_0359type.int"".autotmp_0357type.int"".autotmp_03550type.image/color.NRGBA64"".autotmp_0354,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".iŸtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64,ð{ïðŽïðNï€f°/_.±3!)")% 	ñTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ0"".(*NRGBA64).SetNRGBA64ÀÀdH‹%H;a†øL‹|$L‹t$L·l$ L·d$"L·\$$L·T$&H‹L$1ÛHƒù„¾L‹I L‹A(H‹y0H‹q8M9ùžI9ÿ•M9ðŒI9öœÀ<uÃH‹Y L‰úH)ÚH‹Y(L‰÷H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇH‹1H‹QH‹iH9׃9H>L‰ífÁí@ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9׃
H>Dˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃áH>L‰åfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃±H>Dˆ#H‰ÇHƒÇH‹1H‹QH‹iH9׃ˆH>L‰ÝfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s\H>DˆH‰ÇHƒÇH‹1H‹QH‹iH9×s7H>L‰ÕfÁí@ˆ+H‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsHDˆÃèèèèèèèè1Àésþÿÿ‰é;þÿÿèéëýÿÿÌÌÌÌÌÌÌÌÌÌÌ
Œ$runtime.panicindexš$runtime.panicindex¨$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexÒ$runtime.panicindexà$runtime.panicindexî$runtime.panicindex˜0runtime.morestack_noctxt@"".autotmp_0385type.int"".autotmp_0384type.int"".autotmp_0383type.int"".autotmp_0382type.int"".autotmp_0381type.int"".autotmp_0380type.int"".autotmp_0379type.int"".autotmp_0378type.int"".autotmp_0376type.int"".c00type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64  `Ð:A&)!)")%!Å[Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ,"".(*NRGBA64).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„«H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò0H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÊýÿÿ‰éNýÿÿèéÎüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".NRGBA64þ"runtime.newobjectè8go.itab.*"".NRGBA64."".ImageÄ type.*"".NRGBA64Útype."".Imageò8go.itab.*"".NRGBA64."".Image† runtime.typ2Itabætype."".NRGBA64ø"runtime.newobjectÞ(runtime.writeBarrier¤
8go.itab.*"".NRGBA64."".Image€ type.*"".NRGBA64–type."".Image®8go.itab.*"".NRGBA64."".ImageÂ runtime.typ2Itabú.runtime.writebarrierptrž$runtime.panicsliceÒ0runtime.morestack_noctxtpÀ"".autotmp_0404type.*uint8"".autotmp_0403 type.*"".NRGBA64"".autotmp_0402type.int"".autotmp_0401type.int"".autotmp_0398? type.*"".NRGBA64"".autotmp_0396 type.*"".NRGBA64"".autotmp_0395/type.[]uint8"".autotmp_0394 type.*"".NRGBA64"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NRGBA64.À¿¿ÀÝ¿Àk¿ÀRò1wK›#?MJ -	 ‡ûyå.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ("".(*NRGBA64).Opaque  dH‹%H;a†/H‹L$Hƒù„H‹y H‹q(H‹Q0H‹A8H9׍ôH9ƝÀ<tÆD$ÃHƒù„ÓH‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂH‰ÚL‹I(H‹Y8L9ËŽ€L‰ÐH9Ð}XI‰ÀIƒÀHƒù„H‹9H‹qH‹iI9ðsjJ¶€ûÿuQI‰ÀIÿÀH‹9H‹qH‹iI9ðsAJ¶€ûÿu/HƒÀH9Ð|¨H‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9Ë€ÆD$ÃÆD$Ãèè‰éxÿÿÿ‰é&ÿÿÿHÇÀéÿÿÿ‰éàþÿÿèé´þÿÿÌÌÌÌ
¨$runtime.panicindex¶$runtime.panicindex†0runtime.morestack_noctxt "".autotmp_0414type.int"".autotmp_0413type.int"".autotmp_0410type.int"".autotmp_0409type.int"".autotmp_0408type.int"".autotmp_0407type.int"".~r0type.bool"".p type.*"".NRGBA64ÐÐH”-+O	



“=Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewNRGBA64€€dH‹%HD$èH;A†QHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uPH‰(H‹l$0HÁåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëžèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
†type.[]uint8¬"runtime.makesliceˆtype."".NRGBA64š"runtime.newobjectú(runtime.writeBarrier¼.runtime.writebarrierptrÔ0runtime.morestack_noctxtP°"".autotmp_0424? type.*"".NRGBA64"".autotmp_0423type.int"".autotmp_0421type.int"".autotmp_0420type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@ type.*"".NRGBA64"".r"type."".Rectangle °´¯°¯€¸?1Q¨•7‘#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ,"".(*Alpha).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
,image/color.AlphaModel",image/color.AlphaModel0"".~r0,type.image/color.Model"".ptype.*"".Alpha  Ú Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ$"".(*Alpha).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".Alpha@@Þ@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Alpha).AtààdH‹%H;a†Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$?H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@ÃèéTÿÿÿÌÌÌÌ
‚&"".(*Alpha).AlphaAt¢,type.image/color.Alpha¸,type.image/color.ColorÐVgo.itab.image/color.Alpha.image/color.ColorŠruntime.convT2IÆ0runtime.morestack_noctxtP€
"".autotmp_0425,type.image/color.Alpha"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha€Š°â#
@pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*Alpha).AlphaAt€€dH‹%H;a†–L‹\$L‹T$L‹L$1Û1ÛIƒùtxM‹A I‹y(I‹q0I‹Q8M9Ø_I9ó}ZL9×UI9ÒœÀ<u1ۈ\$ ÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊ1ÛI‹	I‹AI‹iH9ÂsH¶ˆ\$ Ãè1Àë­A‰ëƒèéMÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
´$runtime.panicindexÔ0runtime.morestack_noctxt@"".autotmp_0430,type.image/color.Alpha"".autotmp_0428type.int"".~r20,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".AlphaÀÀ ê$1%	™'Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*Alpha).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ ÃÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Alpha@@þ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Alpha).Set  dH‹%H;a†eHƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„0M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏÷I9óîL9׏åI9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝHËH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$/H‰\$èH‹œ$€Hƒût-H‹H‹CH‹kH‹l$0H9ÅsH)¶l$/@ˆ+HƒÄxÃè‰ëÏ1ÀéÿÿÿA‰éÈþÿÿèé~þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
®,image/color.AlphaModelÄ,image/color.AlphaModelÔþ,type.image/color.AlphaÌ"runtime.assertI2T¾$runtime.panicindexò0runtime.morestack_noctxtPð"".autotmp_0436type.int"".autotmp_0434‘,type.image/color.Alpha"".autotmp_0433,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha,ð{ïðÊïðï*†/_'Ÿê¦Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ("".(*Alpha).SetAlphaààdH‹%H;a†L‹\$L‹T$L‹L$1ÛIƒùtqM‹A I‹y(I‹q0I‹Q8M9ØXI9ó}SL9×NI9ÒœÀ<uÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹	I‹AI‹iH9Âs
H¶l$ @ˆ+Ãè1Àë´A‰ëŠèéVÿÿÿÌÌÌÌÌÌ
¢$runtime.panicindexÂ0runtime.morestack_noctxt@
"".autotmp_0440type.int"".c0,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha°°(–"1	 Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*Alpha).SubImageààdH‹%HD$àH;A†	Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„¤H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò)H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅHÐL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÑýÿÿ‰éUýÿÿèéÕüÿÿÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".Alphaþ"runtime.newobjectè4go.itab.*"".Alpha."".ImageÄtype.*"".AlphaÚtype."".Imageò4go.itab.*"".Alpha."".Image† runtime.typ2ItabØtype."".Alphaê"runtime.newobjectÐ(runtime.writeBarrier–
4go.itab.*"".Alpha."".Imageò
type.*"".Alphaˆtype."".Image 4go.itab.*"".Alpha."".Image´ runtime.typ2Itabì.runtime.writebarrierptr$runtime.panicsliceÄ0runtime.morestack_noctxtpÀ"".autotmp_0453type.*uint8"".autotmp_0452type.*"".Alpha"".autotmp_0451type.int"".autotmp_0450type.int"".autotmp_0447?type.*"".Alpha"".autotmp_0445type.*"".Alpha"".autotmp_0444/type.[]uint8"".autotmp_0443type.*"".Alpha"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Alpha.À¿¿ÀÖ¿Àk¿°Rª1wK›?MJ -	 ‡ûrå.)Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ$"".(*Alpha).Opaque  dH‹%H;a†ëH‹L$Hƒù„ÕH‹y H‹q(H‹Q0H‹A8H9׍°H9ƝÀ<tÆD$ÃHƒù„H‹Q H‹i(H‹Y0H‹i8H)ÓE1ÒH‰ÚL‹I(H‹Y8L9Ë~XL‰ÐH9Ð}0HƒùtWH‹9H‹qH‹iH9ðs@H¶€ûÿtÆD$ÃHÿÀH9Ð|ÐH‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9˨ÆD$Ãè‰륉éjÿÿÿHÇÀéJÿÿÿ‰é$ÿÿÿèéøþÿÿÌÌÌÌÌÌÌÌ
´$runtime.panicindexþ0runtime.morestack_noctxt "".autotmp_0462type.int"".autotmp_0459type.int"".autotmp_0458type.int"".autotmp_0457type.int"".autotmp_0456type.int"".~r0type.bool"".ptype.*"".AlphaHÌ-#
"




Ù7Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewAlphaààdH‹%HD$èH;A†IHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uLH‰(H‹l$0H‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xë¢èé•þÿÿÌÌÌÌÌ
þtype.[]uint8¤"runtime.makeslice€type."".Alpha’"runtime.newobjectò(runtime.writeBarrier¬.runtime.writebarrierptrÄ0runtime.morestack_noctxtP°"".autotmp_0469?type.*"".Alpha"".autotmp_0468type.int"".autotmp_0466type.int"".autotmp_0465type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".Alpha"".r"type."".Rectangle °¬¯°¯ðð?1M¤‘7Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ0"".(*Alpha16).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
0image/color.Alpha16Model"0image/color.Alpha16Model0"".~r0,type.image/color.Model"".p type.*"".Alpha16  ’	 Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*Alpha16).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".p type.*"".Alpha16@@–	@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*Alpha16).AtààdH‹%H;a†‘Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$èH·\$f‰\$>HH‰$HH‰\$HH‰\$H\$>H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@ÃèéRÿÿÿÌÌ
‚."".(*Alpha16).Alpha16At¦0type.image/color.Alpha16¼,type.image/color.ColorÔZgo.itab.image/color.Alpha16.image/color.ColorŽruntime.convT2IÊ0runtime.morestack_noctxtP€
"".autotmp_04700type.image/color.Alpha16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16€Œ
°š	#
@pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ."".(*Alpha16).Alpha16At  dH‹%H;a†ëL‹\$L‹T$H‹L$1Û1ÛHƒù„ÇL‹I L‹A(H‹y0H‹q8M9ُ§I9ûžM9Џ•I9òœÀ<u1Ûf‰\$ ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÑåHè1ÛH‰ÇHƒÇH‹1H‹QL‹AH9×s>H>f¶HÁãH‰ÂHÿÂH‰ÍH‹	H‹EL‹EH9ÂsH,f¶mH	ëf‰\$ Ãèè1Àéjÿÿÿ‰é2ÿÿÿèéøþÿÿÌÌÌÌÌÌÌÌ
Æ$runtime.panicindexÔ$runtime.panicindexþ0runtime.morestack_noctxt@"".autotmp_04750type.image/color.Alpha16"".autotmp_0473type.int"".~r200type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16 ¢	$A%^â.Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ."".(*Alpha16).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÑåHëH‰\$ ÃÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".p type.*"".Alpha16@@¶	;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*Alpha16).Set€€dH‹%H;a†¢HƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„mM‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏4I9ó+L9׏"I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÑåHëH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$.H‰\$èL‹Œ$€H‹t$0H·\$.H‰ØH‰÷HƒÆIƒùtMI‹I‹II‹iH9Îs6H2H‰ÅfÁí@ˆ+H‰þHÿÆI‹I‹II‹iH9ÎsH2ˆHƒÄxÃèèA‰ë®1ÀéÝþÿÿA‰é‹þÿÿèéAþÿÿÌ
º0image/color.Alpha16ModelÐ0image/color.Alpha16ModelàŒ0type.image/color.Alpha16Ú"runtime.assertI2T¨$runtime.panicindex¶$runtime.panicindexì0runtime.morestack_noctxtPð"".autotmp_0487type.int"".autotmp_0486type.int"".autotmp_0484type.int"".autotmp_0482“0type.image/color.Alpha16"".autotmp_0481,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16,ð{ïðÿïð"ïÀ6¾	/_-‡+	ðÐTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ0"".(*Alpha16).SetAlpha16€€dH‹%H;a†ÞL‹d$L‹\$L·T$ H‹L$1ÛHƒù„¶L‹I L‹A(H‹y0H‹q8M9ᏖI9üM9؏„I9óœÀ<uÃH‹Y L‰âH)ÚH‹Y(L‰ßH)ßH‹iH¯ýH‰ÕHÑåHïH‰øHƒÇH‹1H‹QH‹iH9×s6H>L‰ÕfÁí@ˆ+H‰ÂHÿÂH‰ËH‹	H‹CH‹kH9ÂsHDˆÃèè1Àé{ÿÿÿ‰éCÿÿÿèéÿÿÿÌÌÌÌÌ
¬$runtime.panicindexº$runtime.panicindexä0runtime.morestack_noctxt@"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0491type.int"".c00type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16€€0Ò	(A%% Õ+Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ,"".(*Alpha16).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„ªH^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò/H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÑåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéËýÿÿ‰éOýÿÿèéÏüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".Alpha16þ"runtime.newobjectè8go.itab.*"".Alpha16."".ImageÄ type.*"".Alpha16Útype."".Imageò8go.itab.*"".Alpha16."".Image† runtime.typ2Itabätype."".Alpha16ö"runtime.newobjectÜ(runtime.writeBarrier¢
8go.itab.*"".Alpha16."".Imageþ
 type.*"".Alpha16”type."".Image¬8go.itab.*"".Alpha16."".ImageÀ runtime.typ2Itabø.runtime.writebarrierptrœ$runtime.panicsliceÐ0runtime.morestack_noctxtpÀ"".autotmp_0507type.*uint8"".autotmp_0506 type.*"".Alpha16"".autotmp_0505type.int"".autotmp_0504type.int"".autotmp_0501? type.*"".Alpha16"".autotmp_0499 type.*"".Alpha16"".autotmp_0498/type.[]uint8"".autotmp_0497 type.*"".Alpha16"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".Alpha16.À¿¿ÀÜ¿Àk¿ÀRè	1wK›"?MJ -	 ‡ûxå.3Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ("".(*Alpha16).Opaque  dH‹%H;a†*H‹L$Hƒù„H‹y H‹q(H‹Q0H‹A8H9׍ïH9ƝÀ<tÆD$ÃHƒù„ÎH‹Q H‹i(H‹Y0H‹i8H)ÓHÑãE1ÒH‰ÚL‹I(H‹Y8L9ËŽ€L‰ÐH9Ð}XI‰ÀIƒÀHƒù„H‹9H‹qH‹iI9ðsjJ¶€ûÿuQI‰ÀIÿÀH‹9H‹qH‹iI9ðsAJ¶€ûÿu/HƒÀH9Ð|¨H‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9Ë€ÆD$ÃÆD$Ãèè‰éxÿÿÿ‰é+ÿÿÿHÇÀéÿÿÿ‰éåþÿÿèé¹þÿÿÌÌÌÌÌÌÌÌÌ
ž$runtime.panicindex¬$runtime.panicindexü0runtime.morestack_noctxt "".autotmp_0517type.int"".autotmp_0516type.int"".autotmp_0513type.int"".autotmp_0512type.int"".autotmp_0511type.int"".autotmp_0510type.int"".~r0type.bool"".p type.*"".Alpha16ÐÐHŠ
-&O	



ŽBTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewAlpha16€€dH‹%HD$èH;A†OHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÑãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uOH‰(H‹l$0HÑåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëŸèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
„type.[]uint8ª"runtime.makeslice†type."".Alpha16˜"runtime.newobjectø(runtime.writeBarrier¸.runtime.writebarrierptrÐ0runtime.morestack_noctxtP°"".autotmp_0527? type.*"".Alpha16"".autotmp_0526type.int"".autotmp_0524type.int"".autotmp_0523type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@ type.*"".Alpha16"".r"type."".Rectangle °²¯°¯€®
?1P§”7%Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ*"".(*Gray).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
*image/color.GrayModel"*image/color.GrayModel0"".~r0,type.image/color.Model"".ptype.*"".Gray  Ð
 Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*Gray).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".Gray@@Ô
@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Gray).AtààdH‹%H;a†Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$?H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@ÃèéTÿÿÿÌÌÌÌ
‚""".(*Gray).GrayAt¢*type.image/color.Gray¸,type.image/color.ColorÐTgo.itab.image/color.Gray.image/color.ColorŠruntime.convT2IÆ0runtime.morestack_noctxtP€
"".autotmp_0528*type.image/color.Gray"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray€Š°Ø
#
@pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*Gray).GrayAt€€dH‹%H;a†–L‹\$L‹T$L‹L$1Û1ÛIƒùtxM‹A I‹y(I‹q0I‹Q8M9Ø_I9ó}ZL9×UI9ÒœÀ<u1ۈ\$ ÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊ1ÛI‹	I‹AI‹iH9ÂsH¶ˆ\$ Ãè1Àë­A‰ëƒèéMÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
´$runtime.panicindexÔ0runtime.morestack_noctxt@"".autotmp_0533*type.image/color.Gray"".autotmp_0531type.int"".~r20*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".GrayÀÀ à
$1%	™'Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*Gray).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ ÃÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray@@ô
;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Gray).Set  dH‹%H;a†eHƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„0M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏÷I9óîL9׏åI9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝHËH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$/H‰\$èH‹œ$€Hƒût-H‹H‹CH‹kH‹l$0H9ÅsH)¶l$/@ˆ+HƒÄxÃè‰ëÏ1ÀéÿÿÿA‰éÈþÿÿèé~þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
®*image/color.GrayModelÄ*image/color.GrayModelÔþ*type.image/color.GrayÌ"runtime.assertI2T¾$runtime.panicindexò0runtime.morestack_noctxtPð"".autotmp_0539type.int"".autotmp_0537‘*type.image/color.Gray"".autotmp_0536,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray,ð{ïðÊïðï*ü
/_'Ÿê¦Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ$"".(*Gray).SetGrayààdH‹%H;a†L‹\$L‹T$L‹L$1ÛIƒùtqM‹A I‹y(I‹q0I‹Q8M9ØXI9ó}SL9×NI9ÒœÀ<uÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹	I‹AI‹iH9Âs
H¶l$ @ˆ+Ãè1Àë´A‰ëŠèéVÿÿÿÌÌÌÌÌÌ
¢$runtime.panicindexÂ0runtime.morestack_noctxt@
"".autotmp_0543type.int"".c0*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray°°(Œ"1	 Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*Gray).SubImageààdH‹%HD$àH;A†	Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„¤H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò)H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅHÐL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÑýÿÿ‰éUýÿÿèéÕüÿÿÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".Grayþ"runtime.newobjectè2go.itab.*"".Gray."".ImageÄtype.*"".GrayÚtype."".Imageò2go.itab.*"".Gray."".Image† runtime.typ2ItabØtype."".Grayê"runtime.newobjectÐ(runtime.writeBarrier–
2go.itab.*"".Gray."".Imageò
type.*"".Grayˆtype."".Image 2go.itab.*"".Gray."".Image´ runtime.typ2Itabì.runtime.writebarrierptr$runtime.panicsliceÄ0runtime.morestack_noctxtpÀ"".autotmp_0556type.*uint8"".autotmp_0555type.*"".Gray"".autotmp_0554type.int"".autotmp_0553type.int"".autotmp_0550?type.*"".Gray"".autotmp_0548type.*"".Gray"".autotmp_0547/type.[]uint8"".autotmp_0546type.*"".Gray"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray.À¿¿ÀÖ¿Àk¿°R 1wK›?MJ -	 ‡ûrå.)Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ""".(*Gray).Opaque  ÆD$ÃÌÌÌÌÌÌÌÌÌÌ "".~r0type.bool"".ptype.*"".GrayÄTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewGrayààdH‹%HD$èH;A†IHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uLH‰(H‹l$0H‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xë¢èé•þÿÿÌÌÌÌÌ
þtype.[]uint8¤"runtime.makeslice€type."".Gray’"runtime.newobjectò(runtime.writeBarrier¬.runtime.writebarrierptrÄ0runtime.morestack_noctxtP°"".autotmp_0564?type.*"".Gray"".autotmp_0563type.int"".autotmp_0561type.int"".autotmp_0560type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".Gray"".r"type."".Rectangle °¬¯°¯ðÌ?1M¤‘7Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ."".(*Gray16).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
.image/color.Gray16Model".image/color.Gray16Model0"".~r0,type.image/color.Model"".ptype.*"".Gray16  î Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*Gray16).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".Gray16@@ò@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Gray16).AtààdH‹%H;a†‘Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$èH·\$f‰\$>HH‰$HH‰\$HH‰\$H\$>H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@ÃèéRÿÿÿÌÌ
‚*"".(*Gray16).Gray16At¦.type.image/color.Gray16¼,type.image/color.ColorÔXgo.itab.image/color.Gray16.image/color.ColorŽruntime.convT2IÊ0runtime.morestack_noctxtP€
"".autotmp_0565.type.image/color.Gray16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16€Œ
°ö#
@pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*Gray16).Gray16At  dH‹%H;a†ëL‹\$L‹T$H‹L$1Û1ÛHƒù„ÇL‹I L‹A(H‹y0H‹q8M9ُ§I9ûžM9Џ•I9òœÀ<u1Ûf‰\$ ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÑåHè1ÛH‰ÇHƒÇH‹1H‹QL‹AH9×s>H>f¶HÁãH‰ÂHÿÂH‰ÍH‹	H‹EL‹EH9ÂsH,f¶mH	ëf‰\$ Ãèè1Àéjÿÿÿ‰é2ÿÿÿèéøþÿÿÌÌÌÌÌÌÌÌ
Æ$runtime.panicindexÔ$runtime.panicindexþ0runtime.morestack_noctxt@"".autotmp_0570.type.image/color.Gray16"".autotmp_0568type.int"".~r20.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16 þ$A%^â.Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ,"".(*Gray16).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÑåHëH‰\$ ÃÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray16@@’;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*Gray16).Set€€dH‹%H;a†¢HƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„mM‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏4I9ó+L9׏"I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÑåHëH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$.H‰\$èL‹Œ$€H‹t$0H·\$.H‰ØH‰÷HƒÆIƒùtMI‹I‹II‹iH9Îs6H2H‰ÅfÁí@ˆ+H‰þHÿÆI‹I‹II‹iH9ÎsH2ˆHƒÄxÃèèA‰ë®1ÀéÝþÿÿA‰é‹þÿÿèéAþÿÿÌ
º.image/color.Gray16ModelÐ.image/color.Gray16ModelàŒ.type.image/color.Gray16Ú"runtime.assertI2T¨$runtime.panicindex¶$runtime.panicindexì0runtime.morestack_noctxtPð"".autotmp_0582type.int"".autotmp_0581type.int"".autotmp_0579type.int"".autotmp_0577“.type.image/color.Gray16"".autotmp_0576,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16,ð{ïðÿïð"ïÀ6š/_-‡+	ðÐTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ,"".(*Gray16).SetGray16€€dH‹%H;a†ÞL‹d$L‹\$L·T$ H‹L$1ÛHƒù„¶L‹I L‹A(H‹y0H‹q8M9ᏖI9üM9؏„I9óœÀ<uÃH‹Y L‰âH)ÚH‹Y(L‰ßH)ßH‹iH¯ýH‰ÕHÑåHïH‰øHƒÇH‹1H‹QH‹iH9×s6H>L‰ÕfÁí@ˆ+H‰ÂHÿÂH‰ËH‹	H‹CH‹kH9ÂsHDˆÃèè1Àé{ÿÿÿ‰éCÿÿÿèéÿÿÿÌÌÌÌÌ
¬$runtime.panicindexº$runtime.panicindexä0runtime.morestack_noctxt@"".autotmp_0589type.int"".autotmp_0588type.int"".autotmp_0586type.int"".c0.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16€€0®(A%% Õ+Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*Gray16).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„ªH^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò/H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÑåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéËýÿÿ‰éOýÿÿèéÏüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".Gray16þ"runtime.newobjectè6go.itab.*"".Gray16."".ImageÄtype.*"".Gray16Útype."".Imageò6go.itab.*"".Gray16."".Image† runtime.typ2Itabätype."".Gray16ö"runtime.newobjectÜ(runtime.writeBarrier¢
6go.itab.*"".Gray16."".Imageþ
type.*"".Gray16”type."".Image¬6go.itab.*"".Gray16."".ImageÀ runtime.typ2Itabø.runtime.writebarrierptrœ$runtime.panicsliceÐ0runtime.morestack_noctxtpÀ"".autotmp_0602type.*uint8"".autotmp_0601type.*"".Gray16"".autotmp_0600type.int"".autotmp_0599type.int"".autotmp_0596?type.*"".Gray16"".autotmp_0594type.*"".Gray16"".autotmp_0593/type.[]uint8"".autotmp_0592type.*"".Gray16"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray16.À¿¿ÀÜ¿Àk¿ÀRÄ1wK›"?MJ -	 ‡ûxå.3Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ&"".(*Gray16).Opaque  ÆD$ÃÌÌÌÌÌÌÌÌÌÌ "".~r0type.bool"".ptype.*"".Gray16èTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewGray16€€dH‹%HD$èH;A†OHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÑãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uOH‰(H‹l$0HÑåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëŸèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
„type.[]uint8ª"runtime.makeslice†type."".Gray16˜"runtime.newobjectø(runtime.writeBarrier¸.runtime.writebarrierptrÐ0runtime.morestack_noctxtP°"".autotmp_0610?type.*"".Gray16"".autotmp_0609type.int"".autotmp_0607type.int"".autotmp_0606type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".Gray16"".r"type."".Rectangle °²¯°¯€ð?1P§”7%Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ*"".(*CMYK).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
*image/color.CMYKModel"*image/color.CMYKModel0"".~r0,type.image/color.Model"".ptype.*"".CMYK  ’
 Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*CMYK).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".CMYK@@–
@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*CMYK).At  dH‹%H;a†ªHƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãèé9ÿÿÿÌÌÌÌÌÌÌÌÌ
‚""".(*CMYK).CMYKAtØ*type.image/color.CMYKî,type.image/color.Color†Tgo.itab.image/color.CMYK.image/color.ColorÀruntime.convT2Iü0runtime.morestack_noctxtP€
"".autotmp_0611*type.image/color.CMYK"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK€¥Ðš
#š@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*CMYK).CMYKAtààdH‹%H;a†RL‹\$L‹T$H‹L$1Û1ÛHƒù„.L‹I L‹A(H‹y0H‹q8M9ُI9ûM9ЏüI9òœÀ<u1҈T$ ˆT$!ˆT$"ˆT$#ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇH‹1H‹QH‹iH9׃•H>¶I‰ÚH‰ÇHÿÇH‹1H‹QH‹iH9×snH>¶I‰ÙH‰ÇHƒÇH‹1H‹QH‹iH9×sFH>¶H‰ÞH‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsH¶DˆT$ DˆL$!@ˆt$"ˆ\$#Ãèèèè1Àéÿÿÿ‰éËþÿÿèé‘þÿÿÌ
ø$runtime.panicindex†$runtime.panicindex”$runtime.panicindex¢$runtime.panicindexÌ0runtime.morestack_noctxt@"".autotmp_0616*type.image/color.CMYK"".autotmp_0614type.int"".~r20*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYKðð"¢
$A&¹»5Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ("".(*CMYK).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ ÃÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".CMYK@@¶
;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*CMYK).SetààdH‹%H;a†HƒìxL‹œ$ˆL‹”$L‹Œ$€1ÛL‰T$@Iƒù„ÝM‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏¤I9ó›L9׏’I9ÒœÀ<uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$0H‹œ$˜H‰\$H‹œ$ H‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/HH‰$H‰L$hH‰L$H‰D$pH‰D$H\$,H‰\$èH‹Œ$€H‹D$0¶\$,I‰Û¶\$-I‰Ú¶\$.I‰Ù¶\$/H‰ßI‰ÀIƒÀHƒù„”H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆH‰ÂHƒÂH‰ËH‹	H‹CH‹kH9ÂsH@ˆ;HƒÄxÃèèèè‰éeÿÿÿ1ÀémþÿÿA‰éþÿÿèéÑýÿÿÌ
¼*image/color.CMYKModelÒ*image/color.CMYKModelâ¤*type.image/color.CMYKò"runtime.assertI2Tè$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindexÌ0runtime.morestack_noctxtPð"".autotmp_0634type.int"".autotmp_0633type.int"".autotmp_0632type.int"".autotmp_0631type.int"".autotmp_0629type.int"".autotmp_0627—*type.image/color.CMYK"".autotmp_0626,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK,ð{ïðßïð2ï°F¾
/_.©(!	ñ¿Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/image.goþ$"".(*CMYK).SetCMYKÀÀdH‹%H;a†4L‹\$L‹T$H‹L$1ÛHƒù„L‹I L‹A(H‹y0H‹q8M9ُòI9ûéM9ЏàI9òœÀ<uÃH‹Y L‰ÚH)ÚH‹Y(L‰×H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇH‹1H‹QH‹iH9׃H>¶l$ @ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9×sdH>¶l$!@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s:H>¶l$"@ˆ+H‰ÂHƒÂH‰ËH‹	H‹CH‹kH9Âs
H¶l$#@ˆ+Ãèèèè1Àéÿÿÿ‰éçþÿÿèé¯þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
¼$runtime.panicindexÊ$runtime.panicindexØ$runtime.panicindexæ$runtime.panicindex0runtime.morestack_noctxt@"".autotmp_0645type.int"".autotmp_0644type.int"".autotmp_0643type.int"".autotmp_0642type.int"".autotmp_0640type.int"".c0*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYKàà@Ö
"A&'"#&CTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ&"".(*CMYK).SubImage€
€
dH‹%HD$àH;A†Hì 1ÛH‰œ$ÐH‰œ$ØH‹œ$°H‰$H‹œ$¸H‰\$H‹œ$ÀH‰\$H‹œ$ÈH‰\$H‹´$¨Hƒþ„«H^ H|$ H‰ÞèèL‹Œ$¨H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°H‰Œ$¸H‰L$hH‰´$ÀH‰„$ÈH‰D$xH‰T$`H‰t$pH9ò0H9ÁÀ<„›HH‰$èH‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡IL‹I)ÀI)ÁIƒùtML‰„$L‰Œ$˜L‰”$ˆHH‰$èH‹D$H‰„$€H‹¬$H‰hH‹¬$˜H‰hH‹¬$ˆ€=…¹H‰(Hƒø„¥L‹„$¨I‹hH‰hH‹¬$°H‰h H‹¬$¸H‰h(H‹¬$ÀH‰h0H‹¬$ÈH‰h8H‰„$€H‹1íH9èt H‹œ$€H‰œ$ØH‰„$ÐHĠÃHH‰$HH‰\$HH‰\$èH‹D$뱉éTÿÿÿH‰$H‰l$èH‹„$€é/ÿÿÿèHÇÀéÊýÿÿ‰éNýÿÿèéÎüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
†È
 runtime.duffcopy,"".Rectangle.Intersectìtype."".CMYKþ"runtime.newobjectè2go.itab.*"".CMYK."".ImageÄtype.*"".CMYKÚtype."".Imageò2go.itab.*"".CMYK."".Image† runtime.typ2Itabætype."".CMYKø"runtime.newobjectÞ(runtime.writeBarrier¤
2go.itab.*"".CMYK."".Image€type.*"".CMYK–type."".Image®2go.itab.*"".CMYK."".ImageÂ runtime.typ2Itabú.runtime.writebarrierptrž$runtime.panicsliceÒ0runtime.morestack_noctxtpÀ"".autotmp_0660type.*uint8"".autotmp_0659type.*"".CMYK"".autotmp_0658type.int"".autotmp_0657type.int"".autotmp_0654?type.*"".CMYK"".autotmp_0652type.*"".CMYK"".autotmp_0651/type.[]uint8"".autotmp_0650type.*"".CMYK"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".CMYK.À¿¿ÀÝ¿Àk¿ÀRð
1wK›#?MJ -	 ‡ûyå.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ""".(*CMYK).Opaque  ÆD$ÃÌÌÌÌÌÌÌÌÌÌ "".~r0type.bool"".ptype.*"".CMYK”Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewCMYK€€dH‹%HD$èH;A†QHì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=uPH‰(H‹l$0HÁåH‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀHĘÃH‰$H‰l$èH‹D$xëžèéþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
†type.[]uint8¬"runtime.makesliceˆtype."".CMYKš"runtime.newobjectú(runtime.writeBarrier¼.runtime.writebarrierptrÔ0runtime.morestack_noctxtP°"".autotmp_0668?type.*"".CMYK"".autotmp_0667type.int"".autotmp_0665type.int"".autotmp_0664type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wÏtype.int"".~r1@type.*"".CMYK"".r"type."".Rectangle °´¯°¯€œ?1Q¨•7‘#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ2"".(*Paletted).ColorModelÀÀdH‹%H;av{Hƒì81ÛH‰\$HH‰\$PHH‰$HH‰\$HH‰\$H‹\$@H‰\$Hƒ|$t-HƒD$@HÇD$ èH‹\$(H‰\$HH‹\$0H‰\$PHƒÄ8É%ëÊèélÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
D0type.image/color.PaletteZ,type.image/color.ModelrZgo.itab.image/color.Palette.image/color.ModelÈruntime.convT2I–0runtime.morestack_noctxt0p"".~r0,type.image/color.Model"".p"type.*"".Palettedpmop	o 
 
c=Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ*"".(*Paletted).Bounds€€1ÛH‹\$Hƒût%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".p"type.*"".Paletted@@Æ@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*Paletted).At€€dH‹%H;a†L‹\$L‹T$H‹D$1ÛH‹hHHƒýu
1ÛH‰\$ H‰\$(Ã1ÛL‹H L‹@(H‹x0H‹p8M9ُÒI9ûÉM9ЏÀI9òœ@ùu8H‰ÃHƒøt+H‹H@H‹@HH‹kPHƒøvH‹)H‰l$ H‹iH‰l$(Ãè‰ëÑH‹X L‰ÞH)ÞH‹X(L‰ÕH)ÝH‰ëH‹hH¯ÝHóH‹H‹HH‹hH9ËsDH¶+H‰éH‰ÃH‹P@H‹@HH‹kPH‰Ó¶éH9ÅsHÁåHëH‹+H‰l$ H‹kH‰l$(Ãèè1Éé?ÿÿÿèéÇþÿÿÌÌÌÌÌÌÌ

Â$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexà0runtime.morestack_noctxtP"".autotmp_0672type.int"".autotmp_0671type.int"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".PalettedÀÀ(Ê$

88"[  Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ0"".(*Paletted).PixOffset€€H‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ ÃÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".p"type.*"".Paletted@@ä;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ$"".(*Paletted).Set  dH‹%H;a†&HƒìhL‹\$xL‹”$€H‹|$p1ÛL‰T$@Hƒÿ„øL‹O L‹G(L‰D$PH‹w0H‰t$XH‹W8H‰T$`L‰L$HL‰\$8M9ُ¿I9ó¶M9Џ­I9ÒœÀ<uHƒÄhÃH‹_ L‰ÙH)ÙH‹_(L‰ÕH)ÝH‰ëH‹oH¯ÝHËH‰\$0H_@H‹H‰$H‹KH‰L$H‹KH‰L$H‹œ$ˆH‰\$H‹œ$H‰\$ èH‹T$(H‹\$pHƒût'H‹H‹CH‹kH‹l$0H9ÅsH)ˆHƒÄhÃè‰ëÕ1ÀéRÿÿÿ‰éÿÿÿèé½þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
Ø2image/color.Palette.IndexÂ$runtime.panicindexô0runtime.morestack_noctxtPÐ"".autotmp_0680type.int"".autotmp_0678type.int"".r?"type."".Rectangle"".p_type."".Point"".iotype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted,ÐuÏÐ’ÏÐÏÐ(ì)_'gëeTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ6"".(*Paletted).ColorIndexAtààdH‹%H;a†’L‹\$L‹T$L‹L$1ÛIƒùtvM‹A I‹y(I‹q0I‹Q8M9Ø]I9ó}XL9×SI9ÒœÀ<uÆD$ ÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹	I‹AI‹iH9Âs
H¶+@ˆl$ Ãè1Àë¯A‰ë…èéQÿÿÿÌ
¬$runtime.panicindexÌ0runtime.morestack_noctxt@
"".autotmp_0684type.int"".~r20type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted°° ü"1$	•Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ8"".(*Paletted).SetColorIndexààdH‹%H;a†L‹\$L‹T$L‹L$1ÛIƒùtqM‹A I‹y(I‹q0I‹Q8M9ØXI9ó}SL9×NI9ÒœÀ<uÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹	I‹AI‹iH9Âs
H¶l$ @ˆ+Ãè1Àë´A‰ëŠèéVÿÿÿÌÌÌÌÌÌ
¢$runtime.panicindexÂ0runtime.morestack_noctxt@
"".autotmp_0688type.int"".index0type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted°°(Œ"1	 Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ."".(*Paletted).SubImage€€dH‹%HD$ÀH;A†HìÀ1ÛH‰œ$ðH‰œ$øH‹œ$ÐH‰$H‹œ$ØH‰\$H‹œ$àH‰\$H‹œ$èH‰\$H‹´$ÈHƒþ„´H^ H|$ H‰ÞèèL‹œ$ÈH‹T$@H‹L$HL‹l$PL‹d$XH‰”$ÐH‰Œ$ØH‰L$hL‰¬$àL‰¤$èL‰d$xH‰T$`L‰l$pL9ê9L9áÀ<„úHH‰$èH‹|$H‰øHƒÿ„ÑWÀHƒÇÐèGøH‹œ$ÈHƒû„¨Hk@H‰„$ Hƒø„‹L@@L‰D$H‰l$H-H‰,$èH‹œ$ H‰œ$ H‹1íH9èt H‹œ$ H‰œ$øH‰„$ðHÄÀÃHH‰$HH‰\$HH‰\$èH‹D$뱉énÿÿÿ‰éQÿÿÿ‰é(ÿÿÿI‹[ H‰×H)ßI‹[(H‰ÈH)ØI‹kH¯ÅHøM‹CM‹KL9À‡úM‹I)ÀI)ÁIƒùtML‰„$°L‰Œ$¸L‰”$¨Iƒû„½I[ H‰çH‰ÞèH‰T$ H‰L$(L‰l$0L‰d$8èH‹\$@H‰œ$€H‹\$HH‰œ$ˆH‹\$PH‰œ$H‹\$XH‰œ$˜HH‰$èH‹D$H‰„$ H‹¬$°H‰hH‹¬$¸H‰hH‹¬$¨€=…üH‰(Hƒø„èL‹„$ÈI‹hH‰hH‹¬$€H‰h H‹¬$ˆH‰h(H‹¬$H‰h0H‹¬$˜H‰h8H‹œ$ÈHƒû„Hk@L@@L‰D$H‰l$H-H‰,$èH‹œ$ H‰œ$ H‹1íH9èt H‹œ$ H‰œ$øH‰„$ðHÄÀÃHH‰$HH‰\$HH‰\$èH‹D$뱉éjÿÿÿ‰éÿÿÿH‰$H‰l$èH‹„$ éìþÿÿA‰é;þÿÿèHÇÀéÁüÿÿ‰éEüÿÿèéÅûÿÿÌÌÌÌÌ8
†È
 runtime.duffcopy,"".Rectangle.Intersectì type."".Palettedþ"runtime.newobjectºª runtime.duffzero¼0type.image/color.PaletteÎ(runtime.typedmemmoveü:go.itab.*"".Paletted."".ImageØ"type.*"".Palettedîtype."".Image†:go.itab.*"".Paletted."".Imageš runtime.typ2Itabº	È
 runtime.duffcopyì	,"".Rectangle.Intersectâ
 type."".Palettedô
"runtime.newobjectÚ(runtime.writeBarrierØ
0type.image/color.Paletteê
(runtime.typedmemmove˜:go.itab.*"".Paletted."".Imageô"type.*"".PalettedŠtype."".Image¢:go.itab.*"".Paletted."".Image¶ runtime.typ2Itabü.runtime.writebarrierptr°$runtime.panicsliceä0runtime.morestack_noctxtp€"".autotmp_0702type.*uint8"".autotmp_0701"type.*"".Paletted"".autotmp_0700type.int"".autotmp_0699type.int"".autotmp_0696?"type.*"".Paletted"".autotmp_0694"type.*"".Paletted"".autotmp_0693"type."".Rectangle"".autotmp_0692/type.[]uint8"".autotmp_0691"type.*"".Paletted"".r¿"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".p"type.*"".Paletted.€‰ÿ€ÿ€zÿÀn 1wK– -<fMJR -
$‡ßÿ£)Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1e4$GOROOT/src/image/image.goþ*"".(*Paletted).Opaque€€dH‹%H„$øþÿÿH;A†ÐHìˆH‹”$H|$HWÀèHƒú„£H‹J H‹j(H‰l$0L‹Z0H‹j8H‰l$@L‰\$8H‰L$(I)ËE1äH‹z(H‹Z8H9û~tL‹JM‰ØM9ˇUM9܇LL‹M)àM)áIƒùtO"1ÉL‰ÐL9Á}¶(H\$H@¶íH+ÆHÿÀHÿÁL9Á|âH‹ZLãI‰ÜH‹ZLÛI‰ÛHÿÇH‹Z8H9ûŒH‰ÓH‹R@H‹KHH‹kPH‰¬$€1ÀH‰Œ$xH‰L$H‰”$pH‹l$H9è}XH‰”$HHƒú„ H‹:H‹rH‰D$ H‰¼$`H‰´$hH\$HH=spH¶€ûu!HƒÂHÿÀH‹l$H9è|¨Ƅ$˜HĈÃH‰´$XH‰4$H‰¼$PH‹_ ÿÓH‹”$HH‹D$ ‹\$ûÿÿt¬Ƅ$˜HĈÃè‰éYÿÿÿè‰éVþÿÿèéþÿÿÌÌÌÌÌÌÌÌÌÌÌ
fÈ runtime.duffzeroÈ $runtime.panicindex¼$runtime.panicsliceØ0runtime.morestack_noctxt """.autotmp_0720O,type.image/color.Color"".autotmp_0719.type.*image/color.Color"".autotmp_0718type.int"".autotmp_0717type.int"".autotmp_0714ßtype.int"".autotmp_0713type.int"".autotmp_0712type.int"".autotmp_0711Ïtype.int"".autotmp_0710/0type.image/color.Palette"".autotmp_0709type.int"".autotmp_0708type.int"".autotmp_0707type.int"".r¿"type."".Rectangle"".co,type.image/color.Color"".presentÿtype.[256]bool"".~r0type.bool"".p"type.*"".Paletted,"éB€\È*
4
9

	f	+	¤+1Tgclocals·32bd5c6dc84e3e86dd35593b3922d3aaTgclocals·5e29cf4e275ff1db65cfee262b3b8d1f4$GOROOT/src/image/image.goþ"".NewPaletted€€dH‹%HD$èH;A†–Hì˜L‹„$ H‹”$¨H‹¼$°H‹„$¸H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØHH‰$H‰D$H‰D$èH‹\$H‰œ$€H‹\$ H‰œ$ˆH‹\$(H‰œ$HH‰$èH‹D$H‰D$xH‹¬$ˆH‰hH‹¬$H‰hH‹¬$€€=…’H‰(H‹l$0H‰hH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‹¬$ÈH‰hHH‹¬$ÐH‰hPH‹¬$À€=uH‰h@H‰„$ØHĘÃL@@L‰$H‰l$èH‹D$xë×H‰$H‰l$èH‹D$xéYÿÿÿèéHþÿÿÌÌÌÌÌÌÌÌ
þtype.[]uint8¤"runtime.makeslice€ type."".Paletted’"runtime.newobjectò(runtime.writeBarrierÄ(runtime.writeBarrier–.runtime.writebarrierptrÀ.runtime.writebarrierptrÞ0runtime.morestack_noctxt€°"".autotmp_0726?"type.*"".Paletted"".autotmp_0725type.int"".autotmp_0723type.int"".autotmp_0722type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r2p"type.*"".Paletted"".p@0type.image/color.Palette"".r"type."".Rectangle °Ý¯°1¯Àø?1Mñ‘7Â6Tgclocals·57c83c41cc07fcd7f4b6f6e2693ed359Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f4$GOROOT/src/image/image.goþ$"".(*Uniform).RGBAààdH‹%H;avSHƒì(H‹\$0Hƒût@H‹H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋl$‹T$‹L$‹D$‰l$8‰T$<‰L$@‰D$DHƒÄ(Éë¼èë—ÌÌÌÌÌÌÌ
nÆ0runtime.morestack_noctxt0P
"".a(type.uint32"".b type.uint32"".gtype.uint32"".rtype.uint32"".c type.*"".UniformPJOPOp:O
79Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/names.goþ0"".(*Uniform).ColorModel  dH‹%H;avkHƒì(1ÛH‰\$8H‰\$@H‹\$0H‰\$ H‹1íH9ètH‹\$ H‰\$@H‰D$8HƒÄ(ÃHH‰$HH‰\$HH‰\$èH‹D$ë½èé|ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
XJgo.itab.*"".Uniform.image/color.Modelœ type.*"".Uniform²,type.image/color.ModelÊJgo.itab.*"".Uniform.image/color.ModelÞ runtime.typ2Itabö0runtime.morestack_noctxt0P"".autotmp_0732 type.*"".Uniform"".~r0,type.image/color.Model"".c type.*"".UniformP7OP/OB[
n"Tgclocals·41a13ac73c712c01973b8fe23f62d694Tgclocals·0c8aa8e80191a30eac23f1a218103f164$GOROOT/src/image/names.goþ*"".(*Uniform).Convert``1ÛH‹\$HƒûtH‹+H‰l$ H‹kH‰l$(ÉëêÌÌÌÌÌÌÌÌÌÌÌÌÌP"".~r10,type.image/color.Color"".c type.*"".Uniform00
J.Tgclocals·13bdb4aeeaf63de3cc223d640262ea59Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/names.goþ("".(*Uniform).Bounds€€1Û1ÛHÇÅ6eÄHÇÂ6eÄHÇÁʚ;HÇÀʚ;H‰l$H‰T$H‰L$ H‰D$(ÃÌÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".c type.*"".Uniform@@R@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/names.goþ "".(*Uniform).At``1ÛH‹\$HƒûtH‹+H‰l$ H‹kH‰l$(ÉëêÌÌÌÌÌÌÌÌÌÌÌÌÌP"".~r20,type.image/color.Color"".y type.int"".xtype.int"".c type.*"".Uniform00V0Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/names.goþ("".(*Uniform).OpaqueÀÀdH‹%H;avBHƒì(H‹\$0Hƒût/H‹H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋ\$ûÿÿ”D$8HƒÄ(ÉëÍèë¨ÌÌÌÌÌÌÌÌ
n¤0runtime.morestack_noctxt P"".~r0type.bool"".c type.*"".UniformP9OPO`\*
7)Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/names.goþ"".NewUniform€€dH‹%H;av[HƒìHH‰$èH‹D$H‰D$H‹l$ H‰(H‹l$(€=uH‰hH‰D$0HƒÄÃL@L‰$H‰l$èH‹D$ëÝèëÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
,type."".Uniform>"runtime.newobjectx(runtime.writeBarrier¾.runtime.writebarrierptrÖ0runtime.morestack_noctxt00"".autotmp_0737 type.*"".Uniform"".~r1  type.*"".Uniform"".c,type.image/color.Color0=/0/€fW@"Tgclocals·51af24152615272c3d9efc8538f95767Tgclocals·0c8aa8e80191a30eac23f1a218103f164$GOROOT/src/image/names.goþ:"".YCbCrSubsampleRatio.String  1ÛH‹D$HƒøjHƒøuHH‰\$HÇD$ÃHƒøuHH‰\$HÇD$ÃHƒøuHH‰\$HÇD$ÃHH‰\$HÇD$ÃHƒøuHH‰\$HÇD$ÃHƒøuHH‰\$HÇD$ÃHƒøu¬HH‰\$HÇD$ÃÌÌÌÌÌ,Dgo.string."YCbCrSubsampleRatio444"dDgo.string."YCbCrSubsampleRatio422"œDgo.string."YCbCrSubsampleRatio420"ÈLgo.string."YCbCrSubsampleRatioUnknown"€Dgo.string."YCbCrSubsampleRatio440"¸Dgo.string."YCbCrSubsampleRatio411"ðDgo.string."YCbCrSubsampleRatio410"0"".~r0type.string"".s6type."".YCbCrSubsampleRatioÐÐ>0
Tgclocals·790e5cc5051fc0affc980ade09e929ecTgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ,"".(*YCbCr).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
,image/color.YCbCrModel",image/color.YCbCrModel0"".~r0,type.image/color.Model"".ptype.*"".YCbCr  
~Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ$"".(*YCbCr).Bounds€€1ÛH‹\$Hƒût%H‹k`H‰l$H‹khH‰l$H‹kpH‰l$ H‹kxH‰l$(Éë×ÌÌÌÌÌÌÌÌÌÌP"".~r0"type."".Rectangle"".ptype.*"".YCbCr@@†>Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ"".(*YCbCr).At€€dH‹%H;a†¡Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$=H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@ÃèéBÿÿÿÌÌ
‚&"".(*YCbCr).YCbCrAtÆ,type.image/color.YCbCrÜ,type.image/color.ColorôVgo.itab.image/color.YCbCr.image/color.Color®runtime.convT2Iê0runtime.morestack_noctxtP€
"".autotmp_0739,type.image/color.YCbCr"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".YCbCr€œ
ÀŽ#‘@€Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ&"".(*YCbCr).YCbCrAt  dH‹%H;a†lHƒìXL‹L$hH‹|$pH‹t$`1ۈ\$xˆ\$yˆ\$z1ÛH‰|$0Hƒþ„3L‹^`L‹VhL‰T$@L‹FpL‰D$HH‹VxH‰T$PL‰\$8L‰L$(M9ˏúM9ÁñI9úèH9לÀ<u1ɈL$xˆL$yˆL$zHƒÄXÃH‹^hH‰ýH)ÝH‰ëH‹nHH¯ÝH‹n`M‰ÈI)èLÃH‰\$ H‰4$L‰L$H‰|$èL‹L$`H‹D$1ÛIƒùtzI‹I‹II‹iH‹l$ H9Ís^H*¶H‰ßI‹QI‹I I‹i(H9Ès<H¶H‰ÞI‹Q0I‹I8I‹i@H9ÈsH¶@ˆ|$x@ˆt$yˆ\$zHƒÄXÃèèèA‰ë1Àéÿÿÿ‰éÆþÿÿèéwþÿÿÌÌÌÌÌÌÌ
¸&"".(*YCbCr).COffset°$runtime.panicindex¾$runtime.panicindexÌ$runtime.panicindex€0runtime.morestack_noctxt@°"".autotmp_0743,type.image/color.YCbCr"".r?"type."".Rectangle"".p_type."".Point
"".yiotype.int"".~r20,type.image/color.YCbCr"".y type.int"".xtype.int"".ptype.*"".YCbCr.°Ž¯°°¯°(¯@–4_'%ÛµTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ&"".(*YCbCr).YOffset€€H‹D$H‹XhH‹l$H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$ ÃÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr@@´;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ&"".(*YCbCr).COffset  H‹T$H‹L$H‹D$H‹hXHƒýáHƒýuHL‹H`H‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$ ÃHƒýueL‹@hL‹H`H‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$ ÃH‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‹h`I‰ÈI)èLÃH‰\$ ÃHƒýuEL‹@hH‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‹h`I‰ÈI)èLÃH‰\$ ÃHƒýuIH‹p`H‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰ðIÁø?IÁè>IðIÁøL)ÅHëH‰\$ ÃHƒý…4ÿÿÿL‹@hH‹x`H‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰øIÁø?IÁè>IøIÁøL)ÅHëH‰\$ ÃÌÌÌÌÌÌÌÌ@"".autotmp_0754type.int"".autotmp_0753type.int"".autotmp_0752type.int"".autotmp_0751type.int"".autotmp_0749type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr8ÀHe(EI
nTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ("".(*YCbCr).SubImageààdH‹%HD$¨H;A†ˆHìØ1ÛH‰œ$H‰œ$H‹œ$èH‰$H‹œ$ðH‰\$H‹œ$øH‰\$H‹œ$H‰\$H‹´$àHƒþ„#H^`H|$ H‰ÞèèL‹Œ$àH‹T$@H‹L$HH‹t$PH‹D$XH‰”$èH‰Œ$ðH‰L$pH‰´$øH‰„$H‰„$€H‰T$hH‰t$xH9ò¥H9ÁÀ<„¢HH‰$èH‹D$H‰ÇHƒøt}WÀèL‹„$àI‹hXH‰hXH‰„$ˆH‹1íH9èt H‹œ$ˆH‰œ$H‰„$HÄØÃHH‰$HH‰\$HH‰\$èH‹D$뱉é|ÿÿÿI‹YhH‰ÍH)ÝH‰ëI‹iHH¯ÝI‹i`I‰ÐI)èLÃH‰\$`L‰$H‰T$H‰L$èH‹Œ$àH‹D$H‹l$`L‹AL‹IL9Ň‘L‹I)èI)éIƒùtM*L‰„$ÈL‰Œ$ÐL‰”$ÀL‹A L‹I(L9À‡NL‹QI)ÀI)ÁIƒùtML‰„$°L‰Œ$¸L‰”$¨L‹A8L‹I@L9À‡
L‹Q0I)ÀI)ÁIƒùtML‰„$˜L‰Œ$ L‰”$HH‰$èH‹D$H‰„$ˆH‹¬$ÈH‰hH‹¬$ÐH‰hH‹¬$À€=…yH‰(H‹¬$°H‰h H‹¬$¸H‰h(H‹¬$¨€=…*H‰hH‹¬$˜H‰h8H‹¬$ H‰h@H‹¬$€=…ÚH‰h0Hƒø„ÅL‹„$àI‹hXH‰hXL‹„$àI‹hHH‰hHL‹„$àI‹hPH‰hPH‹¬$èH‰h`H‹¬$ðH‰hhH‹¬$øH‰hpH‹¬$H‰hxH‰„$ˆH‹1íH9èt H‹œ$ˆH‰œ$H‰„$HÄØÃHH‰$HH‰\$HH‰\$èH‹D$뱉é4ÿÿÿL@0L‰$H‰l$èH‹„$ˆéÿÿÿL@L‰$H‰l$èH‹„$ˆé»þÿÿH‰$H‰l$èH‹„$ˆéoþÿÿèèèHÇÀéUüÿÿ‰éÖûÿÿèéVûÿÿÌÌÌÌÌÌ:
†È
 runtime.duffcopy,"".Rectangle.Intersectòtype."".YCbCr„"runtime.newobject°” runtime.duffzeroî4go.itab.*"".YCbCr."".ImageÊtype.*"".YCbCràtype."".Imageø4go.itab.*"".YCbCr."".ImageŒ runtime.typ2Itabœ&"".(*YCbCr).COffsetº
type."".YCbCrÌ
"runtime.newobject²(runtime.writeBarrier’(runtime.writeBarrierô(runtime.writeBarrierü4go.itab.*"".YCbCr."".ImageØtype.*"".YCbCrîtype."".Image†4go.itab.*"".YCbCr."".Imageš runtime.typ2ItabÚ.runtime.writebarrierptr˜.runtime.writebarrierptrÎ.runtime.writebarrierptrò$runtime.panicslice€$runtime.panicsliceŽ$runtime.panicsliceÂ0runtime.morestack_noctxtp°"".autotmp_0766type.*uint8"".autotmp_0765type.*"".YCbCr"".autotmp_0764type.int"".autotmp_0761Ÿtype.*"".YCbCr"".autotmp_0759type.*"".YCbCr"".autotmp_0758type.[]uint8"".autotmp_0757_type.[]uint8"".autotmp_0756/type.[]uint8"".autotmp_0755type.*"".YCbCr"".rß"type."".Rectangle
"".yiïtype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".YCbCr0°Â¯°†¯°·¯°	‚æ1wNL -' A==¯@ -:.‡þHØç?8Tgclocals·4a5c83272286258cf484ac950366f973Tgclocals·afc01c2a5c5199c7dd20b96c147251404$GOROOT/src/image/ycbcr.goþ$"".(*YCbCr).Opaque  ÆD$ÃÌÌÌÌÌÌÌÌÌÌ "".~r0type.bool"".ptype.*"".YCbCr–Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ"".yCbCrSizeààH‹|$H‹t$ H‹T$H‹L$H‰ÍH)ÕI‰ñI)ùH‰l$0L‰L$8H‹D$(Hƒø³Hƒøu7H‰ÍHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ÕHÁý?I‰ÐI)èL‰ÅHÑýH)ëH‰\$@L‰L$HÃHƒøudH‰ÍHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ÕHÁý?I‰ÐI)èL‰ÅHÑýH)ëH‰\$@H‰õHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ýHÁý?I‰øI)èL‰ÅHÑýH)ëH‰\$Hë•H‰l$@L‰L$Hë‰Hƒøu;H‰l$@H‰õHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ýHÁý?I‰øI)èL‰ÅHÑýH)ëH‰\$HéHÿÿÿHƒøu=H‰ÈHƒÀH‰ÃHÁû?HÁë>HÃHÁûH‰ÕHÁý?HÁí>HÕHÁýH)ëH‰\$@L‰L$HéÿÿÿHƒø…fÿÿÿH‰ÉHƒÁH‰ËHÁû?HÁë>HËHÁûH‰ÕHÁý?HÁí>HÕHÁýH)ëH‰\$@H‰õHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ýHÁý?I‰øI)èL‰ÅHÑýH)ëH‰\$Hé’þÿÿÌÌÌÌÌÌÌÌÌÌÌÌ̐,"".autotmp_0787type.int"".autotmp_0786type.int"".autotmp_0785type.int"".autotmp_0784type.int"".autotmp_0783type.int"".autotmp_0782type.int"".autotmp_0781type.int"".autotmp_0780type.int"".autotmp_0779type.int"".autotmp_0778type.int"".autotmp_0777type.int"".autotmp_0776type.int"".autotmp_0775type.int"".autotmp_0774type.int"".autotmp_0771type.int"".autotmp_0770type.int
"".ch€type.int
"".cwptype.int"".h`type.int"".wPtype.int""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangleððlœ1$!1113
31Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ"".NewYCbCrÀÀdH‹%HD$¨H;A†ùHìØH‹œ$àH‰$H‹œ$èH‰\$H‹œ$ðH‰\$H‹œ$øH‰\$H‹œ$H‰\$ èH‹T$(H‹D$0H‹t$8H‹L$@H‰ÓH¯ØHƒÃH‰\$`H‰ÓH¯ØH‰õH¯éHëH‰\$XH‰ÓH‰T$HH¯ØH‰õH‰t$hHÑåH¯éHëH‰ØHH‰$H‰D$H‰D$PH‰D$èH‹t$`H‹T$XH‹L$H‹\$ H‰œ$€H‹D$(H9ƇH‰´$ÈH‰´$ÐH‰Œ$ÀH‰ÕH9‡×H9Ö‡ÎH)õI‰ÈHƒýtM0H‰¬$°H‰¬$¸L‰„$¨H‹l$PH‰„$ˆH9҉H9ꇀH)ÕI‰ÈH‰L$xHƒýtMH‰¬$˜H‰¬$ L‰„$HH‰$èH‹D$H‰D$pH‹¬$ÈH‰hH‹¬$ÐH‰hH‹¬$À€=…ôH‰(H‹¬$°H‰h H‹¬$¸H‰h(H‹¬$¨€=…¨H‰hH‹¬$˜H‰h8H‹¬$ H‰h@H‹¬$€=ubH‰h0H‹¬$H‰hXH‹l$HH‰hHH‹l$hH‰hPH‹¬$àH‰h`H‹¬$èH‰hhH‹¬$ðH‰hpH‹¬$øH‰hxH‰„$HÄØÃL@0L‰$H‰l$èH‹D$pë‰L@L‰$H‰l$èH‹D$pé@ÿÿÿH‰$H‰l$èH‹D$pé÷þÿÿèèèèéåüÿÿÌÌÌÌÌ 
À"".yCbCrSize„type.[]uint8´"runtime.makesliceØtype."".YCbCrê"runtime.newobjectÊ(runtime.writeBarrierª(runtime.writeBarrierŒ	(runtime.writeBarrierú
.runtime.writebarrierptr¬.runtime.writebarrierptrÜ.runtime.writebarrierptrú$runtime.panicsliceˆ$runtime.panicslice–$runtime.panicslice¤0runtime.morestack_noctxt`°"".autotmp_0791Ïtype.*"".YCbCr"".autotmp_0790type.[]uint8"".autotmp_0789_type.[]uint8"".autotmp_0788/type.[]uint8"".b¿type.[]uint8
"".i2type.int
"".i1ÿtype.int
"".i0ïtype.int
"".cwßtype.int"".wŸtype.int"".~r2Ptype.*"".YCbCr""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangle °¯°b¯ FÔY!@!=LöM
"_Õˆ$Tgclocals·0ce38f56d4c8b081a7ecdd846c3439b5Tgclocals·27322ac377f4076175cee6d941c308304$GOROOT/src/image/ycbcr.goþ0"".(*NYCbCrA).ColorModel@@1ÛH‹H‰\$H‹H‰\$ÃÌÌÌÌÌ
0image/color.NYCbCrAModel"0image/color.NYCbCrAModel0"".~r0,type.image/color.Model"".p type.*"".NYCbCrA  ˆTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ "".(*NYCbCrA).At  dH‹%H;a†ªHƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãèé9ÿÿÿÌÌÌÌÌÌÌÌÌ
‚."".(*NYCbCrA).NYCbCrAAtØ0type.image/color.NYCbCrAî,type.image/color.Color†Zgo.itab.image/color.NYCbCrA.image/color.ColorÀruntime.convT2Iü0runtime.morestack_noctxtP€
"".autotmp_07920type.image/color.NYCbCrA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NYCbCrA€¥Ð#š@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ."".(*NYCbCrA).NYCbCrAAt  dH‹%H;a†íHƒìXL‹L$hH‹|$pH‹t$`1ۈ\$xˆ\$yˆ\$zˆ\${1ÛH‰|$0Hƒþ„°L‹^`L‹VhL‰T$@L‹FpL‰D$HH‹VxH‰T$PL‰\$8L‰L$(M9ˏwM9ÁnI9úeH9לÀ<u1҈T$xˆT$yˆT$zˆT${HƒÄXÃHƒþ„3H‹^hH‰ýH)ÝH‰ëH‹nHH¯ÝH‹n`M‰ÈI)èLÃH‰\$ H‰4$Hƒ<$„ñL‰L$H‰|$èH‹L$`H‹T$L‹D$hH‹|$pH‹YhH)ßH‹©˜H¯ýH‹i`I)èLÇ1ÛH‹1H‹AH‹iH‹l$ H9ѐH.¶I‰ÚH‹qH‹A H‹i(H9ÂsnH¶I‰ÙH‹q0H‹A8H‹i@H9ÂsLH¶H‰ÚH‰ËH‹‰€H‹ƒˆH‹«H9ÇsH9¶DˆT$xDˆL$yˆT$zˆ\${HƒÄXÃèèèè‰%éÿÿÿ‰éÆþÿÿ1Àéšþÿÿ‰éIþÿÿèéöýÿÿÌÌÌÌÌÌ
ò&"".(*YCbCr).COffsetˆ$runtime.panicindex–$runtime.panicindex¤$runtime.panicindex²$runtime.panicindex‚0runtime.morestack_noctxt@°"".autotmp_07970type.image/color.NYCbCrA"".autotmp_0796type.int"".r?"type."".Rectangle"".p_type."".Point
"".yiotype.int"".~r200type.image/color.NYCbCrA"".y type.int"".xtype.int"".p type.*"".NYCbCrA.°–¯°”¯°=¯T˜8_1(&#$ø˜Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ*"".(*NYCbCrA).AOffset€€H‹D$H‹XhH‹l$H)ÝH‰ëH‹¨˜H¯ÝH‹h`L‹D$I)èLÃH‰\$ ÃÌÌÌÌÌÌÌÌÌÌÌÌ@"".~r20type.int"".y type.int"".xtype.int"".p type.*"".NYCbCrA@@¾;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ,"".(*NYCbCrA).SubImageÀÀdH‹%HD$H;A†¸Hìð1ÛH‰œ$ H‰œ$(H‹œ$H‰$H‹œ$H‰\$H‹œ$H‰\$H‹œ$H‰\$H‹´$øHƒþ„SH^`H|$ H‰ÞèèL‹Œ$øH‹T$@H‹L$HH‹t$PH‹D$XH‰”$H‰Œ$H‰L$pH‰´$H‰„$H‰„$€H‰T$hH‰t$xH9òÕH9ÁÀ<„´HH‰$èH‹|$H‰øHƒÿ„‹WÀHƒÇàèHƒøtuL‹„$øI‹hXH‰hXH‰„$ˆH‹1íH9èt H‹œ$ˆH‰œ$(H‰„$ HÄðÃHH‰$HH‰\$HH‰\$èH‹D$뱉뇉énÿÿÿIƒù„I‹YhH‰ÍH)ÝH‰ëI‹iHH¯ÝI‹i`I‰ÐI)èLÃH‰\$`L‰$Hƒ<$„¿H‰T$H‰L$èH‹Œ$øH‹T$H‹„$L‹„$H‹YhH)ØH‹©˜H¯ÅH‹i`I)èLÀH‹l$`L‹AL‹IL9ŇZL‹I)èI)éIƒùtM*L‰„$àL‰Œ$èL‰”$ØL‹A L‹I(L9‡L‹QI)ÐI)ÑIƒùtML‰„$ÈL‰Œ$ÐL‰”$ÀL‹A8L‹I@L9‡ÓL‹Q0I)ÐI)ÑIƒùtML‰„$°L‰Œ$¸L‰”$¨L‹ˆL‹‰L9À‡‰L‹‘€I)ÀI)ÁIƒùtML‰„$˜L‰Œ$ L‰”$HH‰$èH‹D$H‰„$ˆH‹¬$àH‰hH‹¬$èH‰hH‹¬$؀=…õH‰(H‹¬$ÈH‰h H‹¬$ÐH‰h(H‹¬$À€=…¦H‰hH‹¬$°H‰h8H‹¬$¸H‰h@H‹¬$¨€=…VH‰h0Hƒø„AL‹„$øI‹hXH‰hXL‹„$øI‹hHH‰hHL‹„$øI‹hPH‰hPH‹¬$H‰h`H‹¬$H‰hhH‹¬$H‰hpH‹¬$H‰hxH‹¬$˜H‰¨ˆH‹¬$ H‰¨H‹¬$€=…ŒH‰¨€Hƒøt{L‹„$øI‹¨˜H‰¨˜H‰„$ˆH‹1íH9èt H‹œ$ˆH‰œ$(H‰„$ HÄðÃHH‰$HH‰\$HH‰\$èH‹D$뱉ëL€€L‰$H‰l$èH‹„$ˆéYÿÿÿ‰é¸þÿÿL@0L‰$H‰l$èH‹„$ˆéþÿÿL@L‰$H‰l$èH‹„$ˆé?þÿÿH‰$H‰l$èH‹„$ˆéóýÿÿèèèè‰%é5üÿÿA‰é÷ûÿÿHÇÀé%ûÿÿ‰é¦úÿÿèé&úÿÿÌÌÌÌÌÌ@
†È
 runtime.duffcopy,"".Rectangle.Intersectòtype."".NYCbCrA„"runtime.newobjectÀü runtime.duffzeroŠ8go.itab.*"".NYCbCrA."".Imageæ type.*"".NYCbCrAütype."".Image”8go.itab.*"".NYCbCrA."".Image¨ runtime.typ2Itabê&"".(*YCbCr).COffsetìtype."".NYCbCrAþ"runtime.newobjectä
(runtime.writeBarrierÄ(runtime.writeBarrier¦(runtime.writeBarrierè(runtime.writeBarrierÚ8go.itab.*"".NYCbCrA."".Image¶ type.*"".NYCbCrAÌtype."".Imageä8go.itab.*"".NYCbCrA."".Imageø runtime.typ2Itab¸.runtime.writebarrierptr„.runtime.writebarrierptrÂ.runtime.writebarrierptrø.runtime.writebarrierptrœ$runtime.panicsliceª$runtime.panicslice¸$runtime.panicsliceÆ$runtime.panicslice¢0runtime.morestack_noctxtpà""".autotmp_0816type.*uint8"".autotmp_0815 type.*"".NYCbCrA"".autotmp_0814type.int"".autotmp_0813type.int"".autotmp_0812type.int"".autotmp_0809Ï type.*"".NYCbCrA"".autotmp_0807 type.*"".NYCbCrA"".autotmp_0806¿type.[]uint8"".autotmp_0805type.[]uint8"".autotmp_0804_type.[]uint8"".autotmp_0803/type.[]uint8"".autotmp_0802 type.*"".NYCbCrA"".r"type."".Rectangle
"".yiŸtype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NYCbCrA0àÐßàçßàøßà®Ê1wN. -1+,A==F¯z2 -:
2‡ŒaʽFSTgclocals·430b3dad49e01f4b6141511b16c7af40Tgclocals·8661683dad21e76a2b02dc7fe66c3ad94$GOROOT/src/image/ycbcr.goþ("".(*NYCbCrA).OpaqueÀÀdH‹%H;a†H‹T$Hƒú„ëH‹z`H‹rhH‹JpH‹BxH9ύÆH9ƝÀ<tÆD$ÃHƒú„¥H‹J`H‹jhL‹ZpH‹jxI)ËE1äH‹zhH‹ZxH9û~uL‹ŠM‰ØM9ËwlM9ÜwgL‹’€M)àM)áIƒùtO"1ÉL‰ÐL9Á}¶(@€ýÿtÆD$ÃHÿÀHÿÁL9Á|æH‹š˜LãI‰ÜH‹š˜LÛI‰ÛHÿÇH‹ZxH9û‹ÆD$Ãè‰éTÿÿÿHÇÀé4ÿÿÿ‰éÿÿÿèéâþÿÿÌÌ
è$runtime.panicsliceª0runtime.morestack_noctxt "".autotmp_0827type.int"".autotmp_0826type.int"".autotmp_0823type.int"".autotmp_0822type.int"".autotmp_0821type.int"".~r0type.bool"".p type.*"".NYCbCrA  Hˆ- 
8



ó-Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ"".NewNYCbCrAÀÀdH‹%HD$H;A†¼HìðH‹œ$øH‰$H‹œ$H‰\$H‹œ$H‰\$H‹œ$H‰\$H‹œ$H‰\$ èH‹T$(H‹D$0H‹t$8H‹L$@H‰ÓH¯ØHƒÃH‰\$`H‰ÓH¯ØH‰õH¯éHëH‰\$XH‰ÓH¯ØH‰õHÑåH¯éHëH‰\$PH‰ÓH‰T$HHÑãH¯ØH‰õH‰t$hHÑåH¯éHëH‰ØHH‰$H‰D$H‰D$èL‹D$`H‹|$XH‹t$PH‹L$H‹T$ H‹D$(I9À‡±L‰„$àL‰„$èH‰Œ$ØL‰ÃH‰ýH9LJƒI9ø‡zL)ÅI‰ÈHƒýtMH‰¬$ÈH‰¬$ÐL‰„$ÀH‰õH9Ƈ?H9÷‡6H)ýI‰ÈHƒýtM8H‰¬$°H‰¬$¸L‰„$¨H‰ÕH‰”$€I‰ÀH‰„$ˆH9Ö‡èH)õI)ðI‰ÉH‰L$xIƒøtM1H‰¬$˜L‰„$ L‰Œ$HH‰$èH‹D$H‰D$pH‹¬$àH‰hH‹¬$èH‰hH‹¬$؀=…YH‰(H‹¬$ÈH‰h H‹¬$ÐH‰h(H‹¬$À€=…
H‰hH‹¬$°H‰h8H‹¬$¸H‰h@H‹¬$¨€=…ÀH‰h0H‹¬$H‰hXH‹l$HH‰hHH‹l$hH‰hPH‹¬$øH‰h`H‹¬$H‰hhH‹¬$H‰hpH‹¬$H‰hxH‹¬$˜H‰¨ˆH‹¬$ H‰¨H‹¬$€=u#H‰¨€H‹l$HH‰¨˜H‰„$ HÄðÃL€€L‰$H‰l$èH‹D$pëÈL@0L‰$H‰l$èH‹D$pé(ÿÿÿL@L‰$H‰l$èH‹D$péÛþÿÿH‰$H‰l$èH‹D$pé’þÿÿèèèèèé"üÿÿÌÌ&
À"".yCbCrSize¼type.[]uint8â"runtime.makeslice†type."".NYCbCrA˜"runtime.newobjectø(runtime.writeBarrierØ	(runtime.writeBarrierº
(runtime.writeBarrierÄ(runtime.writeBarrierº
.runtime.writebarrierptrì
.runtime.writebarrierptr¤.runtime.writebarrierptrÔ.runtime.writebarrierptrò$runtime.panicslice€$runtime.panicsliceŽ$runtime.panicsliceœ$runtime.panicsliceª0runtime.morestack_noctxt`à"".autotmp_0835ÿ type.*"".NYCbCrA"".autotmp_0834¿type.[]uint8"".autotmp_0833type.[]uint8"".autotmp_0832_type.[]uint8"".autotmp_0831/type.[]uint8"".bïtype.[]uint8
"".i2¿type.int
"".i1¯type.int
"".i0Ÿtype.int
"".cwtype.int"".wÏtype.int"".~r2P type.*"".NYCbCrA""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangle"à¬ßàˆßàR®Y$8!@=O¼l&_¬Ñ(Tgclocals·2b14576898f0a8e33bdc6b0faaf0c1ffTgclocals·2ed3f7ab3a7d314b930e4b58381a683b4$GOROOT/src/image/ycbcr.goþ"".initààdH‹%H;a†ÈHƒì8¶€ût¶€ûuHƒÄ8ÃèÆèèèèHH‰$HÇD$èH‹\$H‰H‹\$€=…4H‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$€=…ªH‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$€=… H‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$€=…–H‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$€=uH‰ÆHƒÄ8ÃH-H‰,$H‰\$èëÝH-H‰,$H‰\$èéWÿÿÿH-H‰,$H‰\$èéÍþÿÿH-H‰,$H‰\$èéCþÿÿH-H‰,$H‰\$èé¹ýÿÿèéýÿÿÌÌÌÌÌÌÌÌÌÌÌt
4"".initdone·L"".initdone·j"runtime.throwinitz"".initdone·†bufio.initio.initš image/color.init¤strconv.init²Bgo.string."image: unknown format"Öerrors.Newî"".ErrFormat„(runtime.writeBarrier "".ErrFormat®.type.image/color.Gray16Ä,type.image/color.ColorÜXgo.itab.image/color.Gray16.image/color.Colorô"image/color.Blackšruntime.convT2IÎ"".NewUniformä(runtime.writeBarrier€"".BlackŽ.type.image/color.Gray16¤,type.image/color.Color¼Xgo.itab.image/color.Gray16.image/color.ColorÔ"image/color.Whiteúruntime.convT2I®"".NewUniformÄ(runtime.writeBarrierà"".Whiteî0type.image/color.Alpha16„,type.image/color.ColorœZgo.itab.image/color.Alpha16.image/color.Color´.image/color.TransparentÚruntime.convT2IŽ"".NewUniform¤(runtime.writeBarrierÀ"".TransparentÎ0type.image/color.Alpha16ä,type.image/color.ColorüZgo.itab.image/color.Alpha16.image/color.Color”$image/color.Opaqueºruntime.convT2Iî"".NewUniform„	(runtime.writeBarrier˜	"".Opaque¤	"".initdone·¾	"".OpaqueÚ	.runtime.writebarrierptrì	"".Transparentˆ
.runtime.writebarrierptr 
"".White¼
.runtime.writebarrierptrÔ
"".Blackð
.runtime.writebarrierptrˆ"".ErrFormat¤.runtime.writebarrierptr¸0runtime.morestack_noctxtp pop§opo,V>¼NXÖV·>pppl®­®±º4¼Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.go6$GOROOT/src/image/format.go4$GOROOT/src/image/names.goþ"".Image.At€€dH‹%H;avgHƒì(H‹Y H…Ût
H|$0H9;uH‰#1ÛH‰\$PH‰\$XH‹\$@H‰\$H‹\$HH‰\$H‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$ H‰L$PH‰D$XHƒÄ(ÃèëƒÌÌÌ
¶î0runtime.morestack_noctxt`P"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".ImagePbO€€
[%Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".Image.Bounds  dH‹%H;avqHƒì(H‹Y H…Ût
H|$0H9;uH‰#1ÛH‰\$@H‰\$HH‰\$PH‰\$XH‹\$8H‰$H‹\$0H‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$@H‰T$HH‰L$PH‰D$XHƒÄ(ÃèévÿÿÿÌÌÌÌÌÌ
¢‚0runtime.morestack_noctxt`P"".~r0 "type."".Rectangle""..thistype."".ImagePlO
Q?Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".Image.ColorModelààdH‹%H;avSHƒìH‹Y H…Ût
H|$ H9;uH‰#1ÛH‰\$0H‰\$8H‹\$(H‰$H‹\$ H‹[0ÿÓH‹L$H‹D$H‰L$0H‰D$8HƒÄÃèë—ÌÌÌÌÌÌÌ
ŽÆ0runtime.morestack_noctxt@0"".~r0 ,type.image/color.Model""..thistype."".Image0N/pp
G)Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Point).String  dH‹%H;a†ªHƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹t$8H‹H‰$H‹NH‰L$èH‹L$H‹D$H‰L$@H‰D$HHƒÄ0Ãèé9ÿÿÿÌÌÌÌÌÌÌÌÌ
"go.string."image"¸"go.string."Point"â$go.string."String"ˆ"runtime.panicwrapÀ"".Point.Stringü0runtime.morestack_noctxt0`"".~r0type.string""..thistype.*"".Point`¥_Ð
ÐƒMTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).Add  dH‹%H;a†¯Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$8Hƒût3H‹3H‹SH‹L$@H‹D$H1Û1ÛH‰óHËH‰ÙH‰ÓHÃH‰L$PH‰\$XHƒÄ0ÉëÉèé4ÿÿÿÌÌÌÌ
|"go.string."image"¤"go.string."Point"Îgo.string."Add"ô"runtime.panicwrap†0runtime.morestack_noctxtP`"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point`¦_`_ÐÐ
yWTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).Sub  dH‹%H;a†¯Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$8Hƒût3H‹3H‹SH‹L$@H‹D$H1Û1ÛH‰óH)ËH‰ÙH‰ÓH)ÃH‰L$PH‰\$XHƒÄ0ÉëÉèé4ÿÿÿÌÌÌÌ
|"go.string."image"¤"go.string."Point"Îgo.string."Sub"ô"runtime.panicwrap†0runtime.morestack_noctxtP`"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point`¦_`_ÐÐ
yWTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).Mul  dH‹%H;a†¦Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$8Hƒût*H‹H‹SH‹D$@1Û1ÛH¯ÈH‰ÓH¯ØH‰L$HH‰\$PHƒÄ0ÉëÒèé=ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
|"go.string."image"¤"go.string."Point"Îgo.string."Mul"ô"runtime.panicwrapô0runtime.morestack_noctxt@`"".~r1 type."".Point"".ktype.int""..thistype.*"".Point`_`_ÐÐ
yWTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).DivààdH‹%H;a†ÍHƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$8HƒûtQH‹H‹{H‹L$@1Û1ÛHƒùÿt3H™H÷ùH‰ÃH‰ÞH‰øHƒùÿtH™H÷ùH‰ÃH‰t$HH‰\$PHƒÄ0ÃH÷ØH‰ÃëéH÷ØH‰Ãë͉ë«èéÿÿÿÌÌÌÌÌÌ
|"go.string."image"¤"go.string."Point"Îgo.string."Div"ô"runtime.panicwrapÂ0runtime.morestack_noctxt@`"".~r1 type."".Point"".ktype.int""..thistype.*"".Point`´_`_ðð
ywTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).InÀÀdH‹%H;a†·Hƒì0H‹Y H…Ût
H|$8H9;uH‰#H‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$8Hƒût=H‹H‹CH‹\$@H‹|$HH‹t$PH‹T$XH9ËH9ñ}H9ÇH9МD$`HƒÄ0Ã1Àëó‰ë¿èé,ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
x"go.string."image" "go.string."Point"Êgo.string."In"ð"runtime.panicwrap–0runtime.morestack_noctxt``"".~r1Ptype.bool"".r"type."".Rectangle""..thistype.*"".Point`ª_`_àà
wiTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).ModààdH‹%H;a†ÒHƒì@H‹Y H…Ût
H|$HH9;uH‰#1ÛH‰\$pH‰\$xH‹\$H1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹t$HH‹H‰$H‹NH‰L$H‹\$PH‰\$H‹\$XH‰\$H‹\$`H‰\$ H‹\$hH‰\$(èH‹L$0H‹D$8H‰L$pH‰D$xHƒÄ@ÃèéÿÿÿÌ
"go.string."image"¸"go.string."Point"âgo.string."Mod"ˆ"runtime.panicwrap"".Point.ModÌ0runtime.morestack_noctxtp€"".~r1Ptype."".Point"".r"type."".Rectangle""..thistype.*"".Point€ÍððƒmTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).Eq€€dH‹%H;a†ÕHƒìPH‹Y H…Ût
H|$XH9;uH‰#H‹\$X1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$XHƒût[H‹3H‹kH‹L$`H‹D$hH‰t$@H‰l$HH‰L$0H‰D$8H\$@H‰ÙH\$0H‰ØH‹H‹(H9ëuH‹YH‹hH9ë”D$pHƒÄPÃ1Àëó‰ë¡èéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
x"go.string."image" "go.string."Point"Êgo.string."Eq"ð"runtime.panicwrapÒ0runtime.morestack_noctxt@ 
"".autotmp_0851?type."".Point"".autotmp_0850type."".Point"".~r10type.bool"".qtype."".Point""..thistype.*"".Point  ÈŸ Ÿ€€w‰Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ,"".(*Rectangle).String  dH‹%H;a†¬Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹t$8Hƒþt&H‰çèèH‹L$ H‹D$(H‰L$@H‰D$HHƒÄ0ÉëÖèé7ÿÿÿÌÌÌÌÌÌÌ
"go.string."image"¸*go.string."Rectangle"â$go.string."String"ˆ"runtime.panicwrap²È
 runtime.duffcopy¼&"".Rectangle.String€0runtime.morestack_noctxt0`"".~r0type.string""..this$type.*"".Rectangle`£_`_ÐÐƒMTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).Dx€€dH‹%H;a†™Hƒì0H‹Y H…Ût
H|$8H9;uH‰#H‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8HƒûtH‹H‹kH‹CH‹kH‰ÃH)ËH‰\$@HƒÄ0ÉëÝèéJÿÿÿÌÌÌÌÌÌÌÌÌÌ
x"go.string."image" *go.string."Rectangle"Êgo.string."Dx"ð"runtime.panicwrapÚ0runtime.morestack_noctxt `"".~r0type.int""..this$type.*"".Rectangle`_`_ÀÀ
wITgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).Dy€€dH‹%H;a†–Hƒì0H‹Y H…Ût
H|$8H9;uH‰#H‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8HƒûtH‹+H‹KH‹kH‹[H)ËH‰\$@HƒÄ0ÉëàèéMÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
x"go.string."image" *go.string."Rectangle"Êgo.string."Dy"ð"runtime.panicwrapÔ0runtime.morestack_noctxt `"".~r0type.int""..this$type.*"".Rectangle`_`_ÀÀ
wITgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ("".(*Rectangle).Size  dH‹%H;a†¤Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8Hƒût(H‹3H‹SH‹KH‹C1Û1ÛH)ñH)ÐH‰L$@H‰D$HHƒÄ0ÉëÔèé?ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
|"go.string."image"¤*go.string."Rectangle"Î go.string."Size"ô"runtime.panicwrapð0runtime.morestack_noctxt0`"".~r0type."".Point""..this$type.*"".Rectangle`›_`_Ð Ð
yWTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".(*Rectangle).AddààdH‹%H;a†ÇHƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8HƒûtKH‹3H‹SL‹CH‹{H‹L$@H‹D$H1Û1ÛHÎHÂL‰ÃHËH‰ÙH‰ûHÃH‰t$PH‰T$XH‰L$`H‰\$hHƒÄ0Éë±èéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
|"go.string."image"¤*go.string."Rectangle"Îgo.string."Add"ô"runtime.panicwrap¶0runtime.morestack_noctxtp`"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle`¾_`_ð"ð
ywTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".(*Rectangle).SubààdH‹%H;a†ÇHƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8HƒûtKH‹3H‹SL‹CH‹{H‹L$@H‹D$H1Û1ÛH)ÎH)ÂL‰ÃH)ËH‰ÙH‰ûH)ÃH‰t$PH‰T$XH‰L$`H‰\$hHƒÄ0Éë±èéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
|"go.string."image"¤*go.string."Rectangle"Îgo.string."Sub"ô"runtime.panicwrap¶0runtime.morestack_noctxtp`"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle`¾_`_ð$ð
ywTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).Inset€€dH‹%H;a†ÔHƒìHH‹Y H…Ût
H|$PH9;uH‰#1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‹\$P1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹t$PHƒþtDH‰çèH‹\$XH‰\$ èH‹l$(H‹T$0H‹L$8H‹D$@H‰l$`H‰T$hH‰L$pH‰D$xHƒÄHÉë¸èéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
¤"go.string."image"Ì*go.string."Rectangle"ö"go.string."Inset"œ"runtime.panicwrapÆÈ
 runtime.duffcopyä$"".Rectangle.InsetÐ0runtime.morestack_noctxt`"".~r1 "type."".Rectangle"".ntype.int""..this$type.*"".Rectangle Ë€&€sTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ2"".(*Rectangle).IntersectààdH‹%H;a†Hƒì`H‹Y H…Ût
H|$hH9;uH‰#1ÛH‰œ$H‰œ$˜H‰œ$ H‰œ$¨H‹\$h1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(	èH‹t$hHƒþttH‰çèH‹\$pH‰\$ H‹\$xH‰\$(H‹œ$€H‰\$0H‹œ$ˆH‰\$8èH‹l$@H‹T$HH‹L$PH‹D$XH‰¬$H‰”$˜H‰Œ$ H‰„$¨HƒÄ`ÉëˆèéÓþÿÿÌÌÌ
¼"go.string."image"ä*go.string."Rectangle"Ž*go.string."Intersect"´"runtime.panicwrapÞÈ
 runtime.duffcopyÄ,"".Rectangle.IntersectÈ0runtime.morestack_noctxtÀ"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle À‡¿À¿
°(°™—Tgclocals·4d8bed7e4976e3d095a9230e496231afTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).UnionààdH‹%H;a†Hƒì`H‹Y H…Ût
H|$hH9;uH‰#1ÛH‰œ$H‰œ$˜H‰œ$ H‰œ$¨H‹\$h1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹t$hHƒþttH‰çèH‹\$pH‰\$ H‹\$xH‰\$(H‹œ$€H‰\$0H‹œ$ˆH‰\$8èH‹l$@H‹T$HH‹L$PH‹D$XH‰¬$H‰”$˜H‰Œ$ H‰„$¨HƒÄ`ÉëˆèéÓþÿÿÌÌÌ
¼"go.string."image"ä*go.string."Rectangle"Ž"go.string."Union"´"runtime.panicwrapÞÈ
 runtime.duffcopyÄ$"".Rectangle.UnionÈ0runtime.morestack_noctxtÀ"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle À‡¿À¿
°*°™—Tgclocals·4d8bed7e4976e3d095a9230e496231afTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).Empty  dH‹%H;a†¦Hƒì0H‹Y H…Ût
H|$8H9;uH‰#H‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8Hƒût,H‹3H‹SH‹KH‹CH9Î}H9D$@HƒÄ0ÃHÇÀëî‰ëÐèé=ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
x"go.string."image" *go.string."Rectangle"Ê"go.string."Empty"ð"runtime.panicwrapô0runtime.morestack_noctxt `"".~r0type.bool""..this$type.*"".Rectangle`”_`
_Ð,Ð
wYTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).Eq€€dH‹%H;a†›HƒìpH‹Y H…Ût
H|$xH9;uH‰#H‹\$x1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹t$xHƒþ„L‹>L‹vL‹nL‹fL‹œ$€L‹”$ˆL‹Œ$H‹¼$˜L‰|$PL‰t$XL‰l$`L‰d$hL‰\$0L‰T$8L‰L$@H‰|$HHt$PH\$0H‰ÚHƒþ„¥Hƒû„”H‹H‹*H9녁H‹^H‹jH9ëutH‰ðHƒÀH‰ÑHƒÁH‹H‹)H9ëuWH‹XH‹iH9ë”À<u<M9ï}.M9æÀ<t M9Ë}I9ú„$ HƒÄpÃHÇÀëë1ÀëçHÇÀëÏHÇÀëÕ1Àë³1À믉éeÿÿÿ‰éTÿÿÿ‰éßþÿÿèéHþÿÿÌÌÌÌÌÌÌÌ
x"go.string."image" *go.string."Rectangle"Êgo.string."Eq"ð"runtime.panicwrapÞ0runtime.morestack_noctxt`à"".autotmp_0875type.bool"".autotmp_0874type.bool"".autotmp_0873type.*"".Point"".autotmp_0872type.*"".Point"".autotmp_0866"type."".Rectangle"".autotmp_0865?"type."".Rectangle"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle àÚßà<ßÀ.ÀwÉTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ0"".(*Rectangle).OverlapsÀÀdH‹%H;a†½HƒìHH‹Y H…Ût
H|$PH9;uH‰#H‹\$P1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹t$PHƒþtCH‰çèH‹\$XH‰\$ H‹\$`H‰\$(H‹\$hH‰\$0H‹\$pH‰\$8è¶\$@ˆ\$xHƒÄHÉë¹èé&ÿÿÿÌÌÌÌÌÌ
x"go.string."image" *go.string."Rectangle"Ê(go.string."Overlaps"ð"runtime.panicwrapšÈ
 runtime.duffcopyô*"".Rectangle.Overlaps¢0runtime.morestack_noctxt`"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle ´à0à
wiTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).In€€dH‹%H;a†àHƒì0H‹Y H…Ût
H|$8H9;uH‰#H‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8HƒûtfH‹;H‹sH‹SH‹KL‹l$@L‹d$HL‹\$PL‹T$XH9×}5H9ΝÀ<tHÇÀˆD$`HƒÄ0ÃI9ýL9Ú
I9ôL9ÑžÀëà1ÀëÜHÇÀëȉë–èéÿÿÿÌÌÌ
x"go.string."image" *go.string."Rectangle"Êgo.string."In"ð"runtime.panicwrapè0runtime.morestack_noctxt``"".autotmp_0879type.bool"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle`³_`(_
€2€w‰Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).CanonÀÀdH‹%H;a†ÂHƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8HƒûtFH‹3H‹SH‹KH‹C1ÛH9ñ}	H‰õH‰ÎH‰éH9Ð}	H‰ÕH‰ÂH‰èH‰t$@H‰T$HH‰L$PH‰D$XHƒÄ0Éë¶èé!ÿÿÿÌ
|"go.string."image"¤*go.string."Rectangle"Î"go.string."Canon"ô"runtime.panicwrap¬0runtime.morestack_noctxtP`"".autotmp_0881type.int"".~r0"type."".Rectangle""..this$type.*"".Rectangle`¹_`_à4à
ygTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).At€€dH‹%HD$èH;A†ÛHì˜H‹Y H…ÛtH¼$ H9;uH‰#1ÛH‰œ$¸H‰œ$ÀH‹œ$ 1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$ Hƒû„<L‹H‹{H‹sH‹SH‹Œ$¨H‹„$°1ÛH‰œ$ˆH‰œ$1ÛH‰D$@L‰D$hH‰|$pH‰|$PH‰t$xH‰t$XH‰”$€H‰T$`L‰D$HH‰L$8I9ȏÄH9ñ»H9Ǐ²H9МÀ<t_HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH‹L$(H‹D$0H‰Œ$¸H‰„$ÀHĘÃHH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH‹L$(H‹D$0ëŸ1ÀéMÿÿÿ‰é½þÿÿèéþÿÿÌÌÌ 
¸"go.string."image"à*go.string."Rectangle"Šgo.string."At"°"runtime.panicwrap€0type.image/color.Alpha16–,type.image/color.Color®Zgo.itab.image/color.Alpha16.image/color.ColorÆ$image/color.Opaqueìruntime.convT2I¾0type.image/color.Alpha16Ô,type.image/color.ColorìZgo.itab.image/color.Alpha16.image/color.Color„.image/color.Transparentªruntime.convT2Iè0runtime.morestack_noctxtP°"".autotmp_0884,type.image/color.Color"".rŸ"type."".Rectangle"".p¿type."".Point"".~r2,type.image/color.Color"".r_"type."".Rectangle"".~r20,type.image/color.Color"".y type.int"".xtype.int""..this$type.*"".Rectangle °ü¯°W¯
€6€—éTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad<autogenerated>þ,"".(*Rectangle).Bounds  dH‹%H;a†¦Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$8Hƒût*H‹3H‹SH‹KH‹C1ÛH‰t$@H‰T$HH‰L$PH‰D$XHƒÄ0ÉëÒèé=ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
|"go.string."image"¤*go.string."Rectangle"Î$go.string."Bounds"ô"runtime.panicwrapô0runtime.morestack_noctxtP`"".~r0"type."".Rectangle""..this$type.*"".Rectangle`_`_Ð8Ð
yWTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ4"".(*Rectangle).ColorModel  dH‹%H;a†ªHƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(
èH‹\$8Hƒût.H‹+H‹kH‹kH‹k1ÛH‹
H‹H‰L$@H‰D$HHƒÄ0ÉëÎèé9ÿÿÿÌÌÌÌÌÌÌÌÌ
|"go.string."image"¤*go.string."Rectangle"Î,go.string."ColorModel"ô"runtime.panicwrap¾0image/color.Alpha16ModelÌ0image/color.Alpha16Modelü0runtime.morestack_noctxt0`"".~r0,type.image/color.Model""..this$type.*"".Rectangle`¡_`_Ð:Ð
yWTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ(type..hash."".Config  dH‹%H;avvHƒì H‹\$(H‰$Hƒ<$tYH‹\$0H‰\$èH‹D$H‹\$(H‰$Hƒ<$t,Hƒ$H‰D$0H‰D$HÇD$èH‹\$H‰\$8HƒÄ É%ëˉ%ëžèéqÿÿÿÌ
\"runtime.interhashÀruntime.memhashŒ0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Config@_?@?
-cTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6$GOROOT/src/image/format.goþ$type..eq."".ConfigààdH‹%H;a†ÅHƒìHH‹\$XHƒû„«H‹H‹sH‹\$PHƒû„ŽH‹H‹SH9ÈuxH‰D$(H‰$H‰T$0H‰T$H‰L$8H‰L$H‰t$@H‰t$èH‹L$XH‹D$P¶\$ €ût8H‹XH‹iH9ët
ÆD$`HƒÄHÃH‹XH‹iH9ët
ÆD$`HƒÄHÃÆD$`HƒÄHÃÆD$`HƒÄHÉékÿÿÿ‰éNÿÿÿèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
àruntime.ifaceeq²0runtime.morestack_noctxt0
"".autotmp_0886?,type.image/color.Model"".autotmp_0885,type.image/color.Model"".~r2 type.bool"".qtype.*"".Config"".ptype.*"".ConfigD‡		ððoTgclocals·3bb21ca8fe1d99a3e492463bd711418aTgclocals·a8eabfc4a4514ed6b3b0c61e9680e4406$GOROOT/src/image/format.goþ"".reader.PeekààdH‹%H;a†ŒHƒì8H‹Y H…Ût
H|$@H9;uH‰#1ÛH‰\$XH‰\$`H‰\$h1ÛH‰\$pH‰\$xH‹\$PH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$XH‰l$`H‰T$hH‰L$pH‰D$xHƒÄ8ÃèéWÿÿÿÌÌÌÌÌÌÌ
ÌÀ0runtime.morestack_noctxt€p"".~r2`type.error"".~r10type.[]uint8""..anon0 type.int""..thistype."".readerp‡o°<°
fJTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".reader.ReadÀÀdH‹%H;av}Hƒì8H‹Y H…Ût
H|$@H9;uH‰#1Û1ÛH‰\$pH‰\$xH‹\$PH‰\$H‹\$XH‰\$H‹\$`H‰\$H‹\$HH‰$H‹\$@H‹[(ÿÓH‹T$ H‹L$(H‹D$0H‰T$hH‰L$pH‰D$xHƒÄ8ÃèéjÿÿÿÌÌÌÌÌÌÌÌÌÌ
Κ0runtime.morestack_noctxt€pio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".readerpxo > 
g9Tgclocals·dacebcad73eed5073009fd67170948d0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ@"".(*YCbCrSubsampleRatio).String€€dH‹%H;a†¡Hƒì0H‹Y H…Ût
H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$8H‹+H‰,$èH‹L$H‹D$H‰L$@H‰D$HHƒÄ0ÃèéBÿÿÿÌÌ
"go.string."image"¸>go.string."YCbCrSubsampleRatio"â$go.string."String"ˆ"runtime.panicwrap®:"".YCbCrSubsampleRatio.Stringê0runtime.morestack_noctxt0`"".~r0type.string""..this8type.*"".YCbCrSubsampleRatio`œ_
À@Àƒ=Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ("".(*NYCbCrA).Bounds€€1ÛH‰\$H‰\$H‰\$ H‰\$(H‹\$H‰\$Hƒ|$té‰%ëòÌÌÌÌÌÌÌÌÌÌR$"".(*YCbCr).BoundsP"".~r0"type."".Rectangle""..this type.*"".NYCbCrA@@B@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*NYCbCrA).YCbCrAt``1ۈ\$ ˆ\$!ˆ\$"H‹\$H‰\$Hƒ|$té‰%ëòÌÌB&"".(*YCbCr).YCbCrAt@"".~r20,type.image/color.YCbCr"".y type.int"".xtype.int""..this type.*"".NYCbCrA00D0Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*NYCbCrA).YOffset``HÇD$ H‹\$H‰\$Hƒ|$té‰%ëòÌÌÌÌÌÌÌ8&"".(*YCbCr).YOffset@"".~r20type.int"".y type.int"".xtype.int""..this type.*"".NYCbCrA00F0Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*NYCbCrA).COffset``HÇD$ H‹\$H‰\$Hƒ|$té‰%ëòÌÌÌÌÌÌÌ8&"".(*YCbCr).COffset@"".~r20type.int"".y type.int"".xtype.int""..this type.*"".NYCbCrA00H0Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".PalettedImage.At€€dH‹%H;avgHƒì(H‹Y H…Ût
H|$0H9;uH‰#1ÛH‰\$PH‰\$XH‹\$@H‰\$H‹\$HH‰\$H‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$ H‰L$PH‰D$XHƒÄ(ÃèëƒÌÌÌ
¶î0runtime.morestack_noctxt`P"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..this*type."".PalettedImagePbO€J€
[%Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ."".PalettedImage.Bounds  dH‹%H;avqHƒì(H‹Y H…Ût
H|$0H9;uH‰#1ÛH‰\$@H‰\$HH‰\$PH‰\$XH‹\$8H‰$H‹\$0H‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$@H‰T$HH‰L$PH‰D$XHƒÄ(ÃèévÿÿÿÌÌÌÌÌÌ
¢‚0runtime.morestack_noctxt`P"".~r0 "type."".Rectangle""..this*type."".PalettedImagePlOL
Q?Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ:"".PalettedImage.ColorIndexAtààdH‹%H;avPHƒì H‹Y H…Ût
H|$(H9;uH‰#H‹\$8H‰\$H‹\$@H‰\$H‹\$0H‰$H‹\$(H‹[0ÿÓ¶\$ˆ\$HHƒÄ ÃèëšÌÌÌÌÌÌÌÌÌÌ
žÀ0runtime.morestack_noctxtP@"".~r2@type.uint8"".y0type.int"".x type.int""..this*type."".PalettedImage@K?pNp
O!Tgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ6"".PalettedImage.ColorModelààdH‹%H;avSHƒìH‹Y H…Ût
H|$ H9;uH‰#1ÛH‰\$0H‰\$8H‹\$(H‰$H‹\$ H‹[8ÿÓH‹L$H‹D$H‰L$0H‰D$8HƒÄÃèë—ÌÌÌÌÌÌÌ
ŽÆ0runtime.morestack_noctxt@0"".~r0 ,type.image/color.Model""..this*type."".PalettedImage0N/pPp
G)Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þTgclocals·5bcb5afcb5617f15eb2d0b279323d878((jkþTgclocals·ac96ed3958d5792ac369a1dc2bfe9382((555þ>>go.itab.*bufio.Reader."".readerþTgclocals·dd9a4d2009c4ac75e28d1a37bbe5075e@@þTgclocals·a68b09a48716afad7ca7a02fe6add474@@þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·b4c25e9b09fd0cf9bb429dcefe91c353þTgclocals·d82314ad8b4d0d463ee994662aedec13  jþTgclocals·99ef9ff0bd07d0e619cc0988c2dabb63  þTgclocals·a09af47d95804d1a0febde7c2c7293b6)€``5þTgclocals·693e8a411a45da74e76c619c62a5bb87PPþTgclocals·a09af47d95804d1a0febde7c2c7293b6)€``5þTgclocals·473289be119113ddb746c224f05da7b4PP
þ"go.string.hdr."("  go.string."("þgo.string."("(þ"go.string.hdr.","  go.string.","þgo.string.",",þ"go.string.hdr.")"  go.string.")"þgo.string.")")þTgclocals·44750c784da4dd430afdd97fea5c405a  þTgclocals·64ca935d1a2110a30e2d604686188539  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·709a14768fab2805a378215c02f0d27fþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·709a14768fab2805a378215c02f0d27fþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·12fc1489b12fcdedb8fc818b7369b5d9þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·12fc1489b12fcdedb8fc818b7369b5d9þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·627bbca91efe935c3ac76737d2026ca6þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·12fc1489b12fcdedb8fc818b7369b5d9þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440þ"go.string.hdr."-"  go.string."-"þgo.string."-"-þTgclocals·44750c784da4dd430afdd97fea5c405a  þTgclocals·ae0a20890c9ac6bfbea3383f34532bab  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·12fc1489b12fcdedb8fc818b7369b5d9þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·12fc1489b12fcdedb8fc818b7369b5d9þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·709a14768fab2805a378215c02f0d27fþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c
þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c
þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·5f32766c99d383f833fae93d4e4d71d1þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·5f32766c99d383f833fae93d4e4d71d1þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·12fc1489b12fcdedb8fc818b7369b5d9þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þ>Zgo.itab.image/color.Alpha16.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·709a14768fab2805a378215c02f0d27fþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Tgo.itab.image/color.RGBA.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>2go.itab.*"".RGBA."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Xgo.itab.image/color.RGBA64.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>6go.itab.*"".RGBA64."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Vgo.itab.image/color.NRGBA.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>4go.itab.*"".NRGBA."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Zgo.itab.image/color.NRGBA64.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>8go.itab.*"".NRGBA64."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Vgo.itab.image/color.Alpha.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>4go.itab.*"".Alpha."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>8go.itab.*"".Alpha16."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Tgo.itab.image/color.Gray.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>2go.itab.*"".Gray."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Xgo.itab.image/color.Gray16.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>6go.itab.*"".Gray16."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Tgo.itab.image/color.CMYK.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>2go.itab.*"".CMYK."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·c7e46dd432d705036367d637fd33d432((þ>Zgo.itab.image/color.Palette.image/color.ModelþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>:go.itab.*"".Paletted."".ImageþTgclocals·721dda3334c021125365f71a78d0ed1e((þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c((þTgclocals·5e29cf4e275ff1db65cfee262b3b8d1f  þTgclocals·32bd5c6dc84e3e86dd35593b3922d3aa  þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((þTgclocals·57c83c41cc07fcd7f4b6f6e2693ed359((þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þ>Jgo.itab.*"".Uniform.image/color.ModelþTgclocals·0c8aa8e80191a30eac23f1a218103f16  þTgclocals·41a13ac73c712c01973b8fe23f62d694  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·13bdb4aeeaf63de3cc223d640262ea59þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·0c8aa8e80191a30eac23f1a218103f16  þTgclocals·51af24152615272c3d9efc8538f95767  þLgo.string.hdr."YCbCrSubsampleRatio444"  Dgo.string."YCbCrSubsampleRatio444"þDgo.string."YCbCrSubsampleRatio444"0.YCbCrSubsampleRatio444þLgo.string.hdr."YCbCrSubsampleRatio422"  Dgo.string."YCbCrSubsampleRatio422"þDgo.string."YCbCrSubsampleRatio422"0.YCbCrSubsampleRatio422þLgo.string.hdr."YCbCrSubsampleRatio420"  Dgo.string."YCbCrSubsampleRatio420"þDgo.string."YCbCrSubsampleRatio420"0.YCbCrSubsampleRatio420þLgo.string.hdr."YCbCrSubsampleRatio440"  Dgo.string."YCbCrSubsampleRatio440"þDgo.string."YCbCrSubsampleRatio440"0.YCbCrSubsampleRatio440þLgo.string.hdr."YCbCrSubsampleRatio411"  Dgo.string."YCbCrSubsampleRatio411"þDgo.string."YCbCrSubsampleRatio411"0.YCbCrSubsampleRatio411þLgo.string.hdr."YCbCrSubsampleRatio410"  Dgo.string."YCbCrSubsampleRatio410"þDgo.string."YCbCrSubsampleRatio410"0.YCbCrSubsampleRatio410þTgo.string.hdr."YCbCrSubsampleRatioUnknown"  Lgo.string."YCbCrSubsampleRatioUnknown"þLgo.string."YCbCrSubsampleRatioUnknown"@6YCbCrSubsampleRatioUnknownþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Vgo.itab.image/color.YCbCr.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>4go.itab.*"".YCbCr."".ImageþTgclocals·afc01c2a5c5199c7dd20b96c1472514088
’þTgclocals·4a5c83272286258cf484ac950366f97388þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·27322ac377f4076175cee6d941c3083088
‘þTgclocals·0ce38f56d4c8b081a7ecdd846c3439b588þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þ>Zgo.itab.image/color.NYCbCrA.image/color.ColorþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>8go.itab.*"".NYCbCrA."".ImageþTgclocals·8661683dad21e76a2b02dc7fe66c3ad9@@
’“þTgclocals·430b3dad49e01f4b6141511b16c7af40@@þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·2ed3f7ab3a7d314b930e4b58381a683b@@$‘‘þTgclocals·2b14576898f0a8e33bdc6b0faaf0c1ff@@þJgo.string.hdr."image: unknown format"  Bgo.string."image: unknown format"þBgo.string."image: unknown format"0,image: unknown formatþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþ<"".ErrFormat type.errorþ<"".formats0 type.[]"".formatþ>
"".ZP type."".Pointþ>
"".ZR@"type."".Rectangleþ<"".Black type.*"".Uniformþ<"".White type.*"".Uniformþ<"".Transparent type.*"".Uniformþ<"".Opaque type.*"".Uniformþ>"".initdone·type.uint8þ("".RegisterFormat·f""".RegisterFormatþ"".asReader·f"".asReaderþ"".match·f"".matchþ"".sniff·f"".sniffþ"".Decode·f"".Decodeþ$"".DecodeConfig·f"".DecodeConfigþ$"".Point.String·f"".Point.Stringþ"".Point.Add·f"".Point.Addþ"".Point.Sub·f"".Point.Subþ"".Point.Mul·f"".Point.Mulþ"".Point.Div·f"".Point.Divþ"".Point.In·f"".Point.Inþ"".Point.Mod·f"".Point.Modþ"".Point.Eq·f"".Point.Eqþ"".Pt·f
"".Ptþ,"".Rectangle.String·f&"".Rectangle.Stringþ$"".Rectangle.Dx·f"".Rectangle.Dxþ$"".Rectangle.Dy·f"".Rectangle.Dyþ("".Rectangle.Size·f""".Rectangle.Sizeþ&"".Rectangle.Add·f "".Rectangle.Addþ&"".Rectangle.Sub·f "".Rectangle.Subþ*"".Rectangle.Inset·f$"".Rectangle.Insetþ2"".Rectangle.Intersect·f,"".Rectangle.Intersectþ*"".Rectangle.Union·f$"".Rectangle.Unionþ*"".Rectangle.Empty·f$"".Rectangle.Emptyþ$"".Rectangle.Eq·f"".Rectangle.Eqþ0"".Rectangle.Overlaps·f*"".Rectangle.Overlapsþ$"".Rectangle.In·f"".Rectangle.Inþ*"".Rectangle.Canon·f$"".Rectangle.Canonþ$"".Rectangle.At·f"".Rectangle.Atþ,"".Rectangle.Bounds·f&"".Rectangle.Boundsþ4"".Rectangle.ColorModel·f."".Rectangle.ColorModelþ"".Rect·f"".Rectþ0"".(*RGBA).ColorModel·f*"".(*RGBA).ColorModelþ("".(*RGBA).Bounds·f""".(*RGBA).Boundsþ "".(*RGBA).At·f"".(*RGBA).Atþ("".(*RGBA).RGBAAt·f""".(*RGBA).RGBAAtþ."".(*RGBA).PixOffset·f("".(*RGBA).PixOffsetþ""".(*RGBA).Set·f"".(*RGBA).Setþ*"".(*RGBA).SetRGBA·f$"".(*RGBA).SetRGBAþ,"".(*RGBA).SubImage·f&"".(*RGBA).SubImageþ("".(*RGBA).Opaque·f""".(*RGBA).Opaqueþ"".NewRGBA·f"".NewRGBAþ4"".(*RGBA64).ColorModel·f."".(*RGBA64).ColorModelþ,"".(*RGBA64).Bounds·f&"".(*RGBA64).Boundsþ$"".(*RGBA64).At·f"".(*RGBA64).Atþ0"".(*RGBA64).RGBA64At·f*"".(*RGBA64).RGBA64Atþ2"".(*RGBA64).PixOffset·f,"".(*RGBA64).PixOffsetþ&"".(*RGBA64).Set·f "".(*RGBA64).Setþ2"".(*RGBA64).SetRGBA64·f,"".(*RGBA64).SetRGBA64þ0"".(*RGBA64).SubImage·f*"".(*RGBA64).SubImageþ,"".(*RGBA64).Opaque·f&"".(*RGBA64).Opaqueþ"".NewRGBA64·f"".NewRGBA64þ2"".(*NRGBA).ColorModel·f,"".(*NRGBA).ColorModelþ*"".(*NRGBA).Bounds·f$"".(*NRGBA).Boundsþ""".(*NRGBA).At·f"".(*NRGBA).Atþ,"".(*NRGBA).NRGBAAt·f&"".(*NRGBA).NRGBAAtþ0"".(*NRGBA).PixOffset·f*"".(*NRGBA).PixOffsetþ$"".(*NRGBA).Set·f"".(*NRGBA).Setþ."".(*NRGBA).SetNRGBA·f("".(*NRGBA).SetNRGBAþ."".(*NRGBA).SubImage·f("".(*NRGBA).SubImageþ*"".(*NRGBA).Opaque·f$"".(*NRGBA).Opaqueþ"".NewNRGBA·f"".NewNRGBAþ6"".(*NRGBA64).ColorModel·f0"".(*NRGBA64).ColorModelþ."".(*NRGBA64).Bounds·f("".(*NRGBA64).Boundsþ&"".(*NRGBA64).At·f "".(*NRGBA64).Atþ4"".(*NRGBA64).NRGBA64At·f."".(*NRGBA64).NRGBA64Atþ4"".(*NRGBA64).PixOffset·f."".(*NRGBA64).PixOffsetþ("".(*NRGBA64).Set·f""".(*NRGBA64).Setþ6"".(*NRGBA64).SetNRGBA64·f0"".(*NRGBA64).SetNRGBA64þ2"".(*NRGBA64).SubImage·f,"".(*NRGBA64).SubImageþ."".(*NRGBA64).Opaque·f("".(*NRGBA64).Opaqueþ "".NewNRGBA64·f"".NewNRGBA64þ2"".(*Alpha).ColorModel·f,"".(*Alpha).ColorModelþ*"".(*Alpha).Bounds·f$"".(*Alpha).Boundsþ""".(*Alpha).At·f"".(*Alpha).Atþ,"".(*Alpha).AlphaAt·f&"".(*Alpha).AlphaAtþ0"".(*Alpha).PixOffset·f*"".(*Alpha).PixOffsetþ$"".(*Alpha).Set·f"".(*Alpha).Setþ."".(*Alpha).SetAlpha·f("".(*Alpha).SetAlphaþ."".(*Alpha).SubImage·f("".(*Alpha).SubImageþ*"".(*Alpha).Opaque·f$"".(*Alpha).Opaqueþ"".NewAlpha·f"".NewAlphaþ6"".(*Alpha16).ColorModel·f0"".(*Alpha16).ColorModelþ."".(*Alpha16).Bounds·f("".(*Alpha16).Boundsþ&"".(*Alpha16).At·f "".(*Alpha16).Atþ4"".(*Alpha16).Alpha16At·f."".(*Alpha16).Alpha16Atþ4"".(*Alpha16).PixOffset·f."".(*Alpha16).PixOffsetþ("".(*Alpha16).Set·f""".(*Alpha16).Setþ6"".(*Alpha16).SetAlpha16·f0"".(*Alpha16).SetAlpha16þ2"".(*Alpha16).SubImage·f,"".(*Alpha16).SubImageþ."".(*Alpha16).Opaque·f("".(*Alpha16).Opaqueþ "".NewAlpha16·f"".NewAlpha16þ0"".(*Gray).ColorModel·f*"".(*Gray).ColorModelþ("".(*Gray).Bounds·f""".(*Gray).Boundsþ "".(*Gray).At·f"".(*Gray).Atþ("".(*Gray).GrayAt·f""".(*Gray).GrayAtþ."".(*Gray).PixOffset·f("".(*Gray).PixOffsetþ""".(*Gray).Set·f"".(*Gray).Setþ*"".(*Gray).SetGray·f$"".(*Gray).SetGrayþ,"".(*Gray).SubImage·f&"".(*Gray).SubImageþ("".(*Gray).Opaque·f""".(*Gray).Opaqueþ"".NewGray·f"".NewGrayþ4"".(*Gray16).ColorModel·f."".(*Gray16).ColorModelþ,"".(*Gray16).Bounds·f&"".(*Gray16).Boundsþ$"".(*Gray16).At·f"".(*Gray16).Atþ0"".(*Gray16).Gray16At·f*"".(*Gray16).Gray16Atþ2"".(*Gray16).PixOffset·f,"".(*Gray16).PixOffsetþ&"".(*Gray16).Set·f "".(*Gray16).Setþ2"".(*Gray16).SetGray16·f,"".(*Gray16).SetGray16þ0"".(*Gray16).SubImage·f*"".(*Gray16).SubImageþ,"".(*Gray16).Opaque·f&"".(*Gray16).Opaqueþ"".NewGray16·f"".NewGray16þ0"".(*CMYK).ColorModel·f*"".(*CMYK).ColorModelþ("".(*CMYK).Bounds·f""".(*CMYK).Boundsþ "".(*CMYK).At·f"".(*CMYK).Atþ("".(*CMYK).CMYKAt·f""".(*CMYK).CMYKAtþ."".(*CMYK).PixOffset·f("".(*CMYK).PixOffsetþ""".(*CMYK).Set·f"".(*CMYK).Setþ*"".(*CMYK).SetCMYK·f$"".(*CMYK).SetCMYKþ,"".(*CMYK).SubImage·f&"".(*CMYK).SubImageþ("".(*CMYK).Opaque·f""".(*CMYK).Opaqueþ"".NewCMYK·f"".NewCMYKþ8"".(*Paletted).ColorModel·f2"".(*Paletted).ColorModelþ0"".(*Paletted).Bounds·f*"".(*Paletted).Boundsþ("".(*Paletted).At·f""".(*Paletted).Atþ6"".(*Paletted).PixOffset·f0"".(*Paletted).PixOffsetþ*"".(*Paletted).Set·f$"".(*Paletted).Setþ<"".(*Paletted).ColorIndexAt·f6"".(*Paletted).ColorIndexAtþ>"".(*Paletted).SetColorIndex·f8"".(*Paletted).SetColorIndexþ4"".(*Paletted).SubImage·f."".(*Paletted).SubImageþ0"".(*Paletted).Opaque·f*"".(*Paletted).Opaqueþ""".NewPaletted·f"".NewPalettedþ*"".(*Uniform).RGBA·f$"".(*Uniform).RGBAþ6"".(*Uniform).ColorModel·f0"".(*Uniform).ColorModelþ0"".(*Uniform).Convert·f*"".(*Uniform).Convertþ."".(*Uniform).Bounds·f("".(*Uniform).Boundsþ&"".(*Uniform).At·f "".(*Uniform).Atþ."".(*Uniform).Opaque·f("".(*Uniform).Opaqueþ "".NewUniform·f"".NewUniformþ@"".YCbCrSubsampleRatio.String·f:"".YCbCrSubsampleRatio.Stringþ2"".(*YCbCr).ColorModel·f,"".(*YCbCr).ColorModelþ*"".(*YCbCr).Bounds·f$"".(*YCbCr).Boundsþ""".(*YCbCr).At·f"".(*YCbCr).Atþ,"".(*YCbCr).YCbCrAt·f&"".(*YCbCr).YCbCrAtþ,"".(*YCbCr).YOffset·f&"".(*YCbCr).YOffsetþ,"".(*YCbCr).COffset·f&"".(*YCbCr).COffsetþ."".(*YCbCr).SubImage·f("".(*YCbCr).SubImageþ*"".(*YCbCr).Opaque·f$"".(*YCbCr).Opaqueþ"".yCbCrSize·f"".yCbCrSizeþ"".NewYCbCr·f"".NewYCbCrþ6"".(*NYCbCrA).ColorModel·f0"".(*NYCbCrA).ColorModelþ&"".(*NYCbCrA).At·f "".(*NYCbCrA).Atþ4"".(*NYCbCrA).NYCbCrAAt·f."".(*NYCbCrA).NYCbCrAAtþ0"".(*NYCbCrA).AOffset·f*"".(*NYCbCrA).AOffsetþ2"".(*NYCbCrA).SubImage·f,"".(*NYCbCrA).SubImageþ."".(*NYCbCrA).Opaque·f("".(*NYCbCrA).Opaqueþ "".NewNYCbCrA·f"".NewNYCbCrAþ"".init·f"".initþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·d98f60bd8519d0c68364b2a1d83af357þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·d98f60bd8519d0c68364b2a1d83af357þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578þ"runtime.gcbits.01þTgo.string.hdr."func(int, int) color.Color"  Lgo.string."func(int, int) color.Color"þLgo.string."func(int, int) color.Color"@6func(int, int) color.ColorþJtype.func(int, int) image/color.Color  ‚ÌÛT30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.Color"p\go.weak.type.*func(int, int) image/color.ColorðJtype.func(int, int) image/color.ColorÀJtype.func(int, int) image/color.Colorðtype.int€type.int,type.image/color.ColorþŽgo.typelink.func(int, int) color.Color	func(int, int) image/color.ColorJtype.func(int, int) image/color.Colorþ8go.string.hdr."*image.Point"  0go.string."*image.Point"þ0go.string."*image.Point" *image.Pointþ*go.string.hdr."image"  "go.string."image"þ"go.string."image"imageþ*go.string.hdr."Point"  "go.string."Point"þ"go.string."Point"Pointþ,go.string.hdr."String"  $go.string."String"þ$go.string."String"StringþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þ&go.string.hdr."Add"  go.string."Add"þgo.string."Add"AddþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ&go.string.hdr."Sub"  go.string."Sub"þgo.string."Sub"SubþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ&go.string.hdr."Mul"  go.string."Mul"þgo.string."Mul"MulþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ&go.string.hdr."Div"  go.string."Div"þgo.string."Div"DivþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ$go.string.hdr."In"  go.string."In"þgo.string."In"InþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aþ&go.string.hdr."Mod"  go.string."Mod"þgo.string."Mod"ModþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·a041240a37ce609efec56707c330d1a4þ$go.string.hdr."Eq"  go.string."Eq"þgo.string."Eq"EqþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þvgo.string.hdr."func(*image.Point, image.Point) image.Point"  +ngo.string."func(*image.Point, image.Point) image.Point"þngo.string."func(*image.Point, image.Point) image.Point"`Xfunc(*image.Point, image.Point) image.PointþNtype.func(*"".Point, "".Point) "".Point  Ÿ.^30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Point, image.Point) image.Point"p`go.weak.type.*func(*"".Point, "".Point) "".PointðNtype.func(*"".Point, "".Point) "".PointÀNtype.func(*"".Point, "".Point) "".Pointðtype.*"".Point€type."".Pointtype."".Pointþ´go.typelink.func(*image.Point, image.Point) image.Point	func(*"".Point, "".Point) "".PointNtype.func(*"".Point, "".Point) "".Pointþfgo.string.hdr."func(*image.Point, int) image.Point"  #^go.string."func(*image.Point, int) image.Point"þ^go.string."func(*image.Point, int) image.Point"PHfunc(*image.Point, int) image.PointþDtype.func(*"".Point, int) "".Point  3 30€ runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Point, int) image.Point"pVgo.weak.type.*func(*"".Point, int) "".PointðDtype.func(*"".Point, int) "".PointÀDtype.func(*"".Point, int) "".Pointðtype.*"".Point€type.inttype."".Pointþšgo.typelink.func(*image.Point, int) image.Point	func(*"".Point, int) "".PointDtype.func(*"".Point, int) "".Pointþhgo.string.hdr."func(*image.Point, image.Point) bool"  $`go.string."func(*image.Point, image.Point) bool"þ`go.string."func(*image.Point, image.Point) bool"PJfunc(*image.Point, image.Point) boolþFtype.func(*"".Point, "".Point) bool  ¯š¢30€ runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Point, image.Point) bool"pXgo.weak.type.*func(*"".Point, "".Point) boolðFtype.func(*"".Point, "".Point) boolÀFtype.func(*"".Point, "".Point) boolðtype.*"".Point€type."".Pointtype.boolþžgo.typelink.func(*image.Point, image.Point) bool	func(*"".Point, "".Point) boolFtype.func(*"".Point, "".Point) boolþpgo.string.hdr."func(*image.Point, image.Rectangle) bool"  (hgo.string."func(*image.Point, image.Rectangle) bool"þhgo.string."func(*image.Point, image.Rectangle) bool"`Rfunc(*image.Point, image.Rectangle) boolþNtype.func(*"".Point, "".Rectangle) bool  ­âõ30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Point, image.Rectangle) bool"p`go.weak.type.*func(*"".Point, "".Rectangle) boolðNtype.func(*"".Point, "".Rectangle) boolÀNtype.func(*"".Point, "".Rectangle) boolðtype.*"".Point€"type."".Rectangletype.boolþ®go.typelink.func(*image.Point, image.Rectangle) bool	func(*"".Point, "".Rectangle) boolNtype.func(*"".Point, "".Rectangle) boolþ~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"  /vgo.string."func(*image.Point, image.Rectangle) image.Point"þvgo.string."func(*image.Point, image.Rectangle) image.Point"``func(*image.Point, image.Rectangle) image.PointþVtype.func(*"".Point, "".Rectangle) "".Point  «øõ„30€ runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"phgo.weak.type.*func(*"".Point, "".Rectangle) "".PointðVtype.func(*"".Point, "".Rectangle) "".PointÀVtype.func(*"".Point, "".Rectangle) "".Pointðtype.*"".Point€"type."".Rectangletype."".PointþÄgo.typelink.func(*image.Point, image.Rectangle) image.Point	func(*"".Point, "".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".PointþRgo.string.hdr."func(*image.Point) string"  Jgo.string."func(*image.Point) string"þJgo.string."func(*image.Point) string"@4func(*image.Point) stringþ6type.func(*"".Point) stringÇu×á30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Point) string"pHgo.weak.type.*func(*"".Point) stringð6type.func(*"".Point) stringÀ€6type.func(*"".Point) stringðtype.*"".Point€type.stringþxgo.typelink.func(*image.Point) string	func(*"".Point) string6type.func(*"".Point) stringþZgo.string.hdr."func(image.Point) image.Point"  Rgo.string."func(image.Point) image.Point"þRgo.string."func(image.Point) image.Point"@<func(image.Point) image.Pointþ8type.func("".Point) "".Point˜<Ñ30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(image.Point) image.Point"pJgo.weak.type.*func("".Point) "".Pointð8type.func("".Point) "".PointÀ€8type.func("".Point) "".Pointðtype."".Point€type."".Pointþ‚go.typelink.func(image.Point) image.Point	func("".Point) "".Point8type.func("".Point) "".PointþJgo.string.hdr."func(int) image.Point"  Bgo.string."func(int) image.Point"þBgo.string."func(int) image.Point"0,func(int) image.Pointþ.type.func(int) "".PointR§¸30€ runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(int) image.Point"p@go.weak.type.*func(int) "".Pointð.type.func(int) "".PointÀ€.type.func(int) "".Pointðtype.int€type."".Pointþhgo.typelink.func(int) image.Point	func(int) "".Point.type.func(int) "".PointþLgo.string.hdr."func(image.Point) bool"  Dgo.string."func(image.Point) bool"þDgo.string."func(image.Point) bool"0.func(image.Point) boolþ0type.func("".Point) bool—ËÆa30€ runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(image.Point) bool"pBgo.weak.type.*func("".Point) boolð0type.func("".Point) boolÀ€0type.func("".Point) boolðtype."".Point€type.boolþlgo.typelink.func(image.Point) bool	func("".Point) bool0type.func("".Point) boolþTgo.string.hdr."func(image.Rectangle) bool"  Lgo.string."func(image.Rectangle) bool"þLgo.string."func(image.Rectangle) bool"@6func(image.Rectangle) boolþ8type.func("".Rectangle) boolÁ¬S30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(image.Rectangle) bool"pJgo.weak.type.*func("".Rectangle) boolð8type.func("".Rectangle) boolÀ€8type.func("".Rectangle) boolð"type."".Rectangle€type.boolþ|go.typelink.func(image.Rectangle) bool	func("".Rectangle) bool8type.func("".Rectangle) boolþbgo.string.hdr."func(image.Rectangle) image.Point"  !Zgo.string."func(image.Rectangle) image.Point"þZgo.string."func(image.Rectangle) image.Point"PDfunc(image.Rectangle) image.Pointþ@type.func("".Rectangle) "".Point¯]Ek30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) image.Point"pRgo.weak.type.*func("".Rectangle) "".Pointð@type.func("".Rectangle) "".PointÀ€@type.func("".Rectangle) "".Pointð"type."".Rectangle€type."".Pointþ’go.typelink.func(image.Rectangle) image.Point	func("".Rectangle) "".Point@type.func("".Rectangle) "".Pointþ:go.string.hdr."func() string"  
2go.string."func() string"þ2go.string."func() string" func() stringþ$type.func() string€€¢mË30€ runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() stringð$type.func() stringÀð$type.func() stringðtype.stringþNgo.typelink.func() string	func() string$type.func() stringþtype.*"".Pointàà=‘5Ë6^0  runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Point"p.go.weak.type.**"".Point€type."".Point`type.*"".Point°àtype.*"".Pointà&go.string.hdr."Add"€8type.func("".Point) "".PointNtype.func(*"".Point, "".Point) "".Point "".(*Point).Add°"".(*Point).AddÀ&go.string.hdr."Div"à.type.func(int) "".PointðDtype.func(*"".Point, int) "".Point€"".(*Point).Div"".(*Point).Div $go.string.hdr."Eq"À0type.func("".Point) boolÐFtype.func(*"".Point, "".Point) boolà"".(*Point).Eqð"".(*Point).Eq€$go.string.hdr."In" 8type.func("".Rectangle) bool°Ntype.func(*"".Point, "".Rectangle) boolÀ"".(*Point).InÐ"".(*Point).Inà&go.string.hdr."Mod"€@type.func("".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".Point "".(*Point).Mod°"".(*Point).ModÀ&go.string.hdr."Mul"à.type.func(int) "".PointðDtype.func(*"".Point, int) "".Point€"".(*Point).Mul"".(*Point).Mul ,go.string.hdr."String"À$type.func() stringÐ6type.func(*"".Point) stringà$"".(*Point).Stringð$"".(*Point).String€&go.string.hdr."Sub" 8type.func("".Point) "".Point°Ntype.func(*"".Point, "".Point) "".PointÀ"".(*Point).SubÐ"".(*Point).Subþruntime.gcbits.þ6go.string.hdr."image.Point"  .go.string."image.Point"þ.go.string."image.Point" image.Pointþ"go.string.hdr."X"  go.string."X"þgo.string."X"Xþ"go.string.hdr."Y"  go.string."Y"þgo.string."Y"Yþtgo.string.hdr."func(image.Point, image.Point) image.Point"  *lgo.string."func(image.Point, image.Point) image.Point"þlgo.string."func(image.Point, image.Point) image.Point"`Vfunc(image.Point, image.Point) image.PointþLtype.func("".Point, "".Point) "".Point  z„m{30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(image.Point, image.Point) image.Point"p^go.weak.type.*func("".Point, "".Point) "".PointðLtype.func("".Point, "".Point) "".PointÀLtype.func("".Point, "".Point) "".Pointðtype."".Point€type."".Pointtype."".Pointþ°go.typelink.func(image.Point, image.Point) image.Point	func("".Point, "".Point) "".PointLtype.func("".Point, "".Point) "".Pointþdgo.string.hdr."func(image.Point, int) image.Point"  "\go.string."func(image.Point, int) image.Point"þ\go.string."func(image.Point, int) image.Point"PFfunc(image.Point, int) image.PointþBtype.func("".Point, int) "".Point  Ø(de30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(image.Point, int) image.Point"pTgo.weak.type.*func("".Point, int) "".PointðBtype.func("".Point, int) "".PointÀBtype.func("".Point, int) "".Pointðtype."".Point€type.inttype."".Pointþ–go.typelink.func(image.Point, int) image.Point	func("".Point, int) "".PointBtype.func("".Point, int) "".Pointþfgo.string.hdr."func(image.Point, image.Point) bool"  #^go.string."func(image.Point, image.Point) bool"þ^go.string."func(image.Point, image.Point) bool"PHfunc(image.Point, image.Point) boolþDtype.func("".Point, "".Point) bool  ãÊÀ330€ runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(image.Point, image.Point) bool"pVgo.weak.type.*func("".Point, "".Point) boolðDtype.func("".Point, "".Point) boolÀDtype.func("".Point, "".Point) boolðtype."".Point€type."".Pointtype.boolþšgo.typelink.func(image.Point, image.Point) bool	func("".Point, "".Point) boolDtype.func("".Point, "".Point) boolþngo.string.hdr."func(image.Point, image.Rectangle) bool"  'fgo.string."func(image.Point, image.Rectangle) bool"þfgo.string."func(image.Point, image.Rectangle) bool"PPfunc(image.Point, image.Rectangle) boolþLtype.func("".Point, "".Rectangle) bool  30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(image.Point, image.Rectangle) bool"p^go.weak.type.*func("".Point, "".Rectangle) boolðLtype.func("".Point, "".Rectangle) boolÀLtype.func("".Point, "".Rectangle) boolðtype."".Point€"type."".Rectangletype.boolþªgo.typelink.func(image.Point, image.Rectangle) bool	func("".Point, "".Rectangle) boolLtype.func("".Point, "".Rectangle) boolþ|go.string.hdr."func(image.Point, image.Rectangle) image.Point"  .tgo.string."func(image.Point, image.Rectangle) image.Point"þtgo.string."func(image.Point, image.Rectangle) image.Point"`^func(image.Point, image.Rectangle) image.PointþTtype.func("".Point, "".Rectangle) "".Point  $#Íò30€ runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(image.Point, image.Rectangle) image.Point"pfgo.weak.type.*func("".Point, "".Rectangle) "".PointðTtype.func("".Point, "".Rectangle) "".PointÀTtype.func("".Point, "".Rectangle) "".Pointðtype."".Point€"type."".Rectangletype."".PointþÀgo.typelink.func(image.Point, image.Rectangle) image.Point	func("".Point, "".Rectangle) "".PointTtype.func("".Point, "".Rectangle) "".PointþPgo.string.hdr."func(image.Point) string"  Hgo.string."func(image.Point) string"þHgo.string."func(image.Point) string"@2func(image.Point) stringþ4type.func("".Point) stringÛ,|º30€ runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(image.Point) string"pFgo.weak.type.*func("".Point) stringð4type.func("".Point) stringÀ€4type.func("".Point) stringðtype."".Point€type.stringþtgo.typelink.func(image.Point) string	func("".Point) string4type.func("".Point) stringþ"go.importpath."".  "go.string."image"þtype."".Point 	 	V[¼™j0À runtime.algarray@runtime.gcbits.P6go.string.hdr."image.Point"ptype.*"".Point€°type."".Point°"go.string.hdr."X"Ðtype.int€"go.string.hdr."Y" type.int`Ðtype."".PointÐ*go.string.hdr."Point"à"go.importpath."".ð type."".Point &go.string.hdr."Add"À8type.func("".Point) "".PointÐLtype.func("".Point, "".Point) "".Pointà"".(*Point).Addð"".Point.Add€&go.string.hdr."Div" .type.func(int) "".Point°Btype.func("".Point, int) "".PointÀ"".(*Point).DivÐ"".Point.Divà$go.string.hdr."Eq"€0type.func("".Point) boolDtype.func("".Point, "".Point) bool "".(*Point).Eq°"".Point.EqÀ$go.string.hdr."In"à8type.func("".Rectangle) boolðLtype.func("".Point, "".Rectangle) bool€"".(*Point).In"".Point.In &go.string.hdr."Mod"À@type.func("".Rectangle) "".PointÐTtype.func("".Point, "".Rectangle) "".Pointà"".(*Point).Modð"".Point.Mod€&go.string.hdr."Mul" .type.func(int) "".Point°Btype.func("".Point, int) "".PointÀ"".(*Point).MulÐ"".Point.Mulà,go.string.hdr."String"€$type.func() string4type.func("".Point) string $"".(*Point).String°"".Point.StringÀ&go.string.hdr."Sub"à8type.func("".Point) "".PointðLtype.func("".Point, "".Point) "".Point€	"".(*Point).Sub	"".Point.Subþ type..hashfunc32   ,runtime.memhash_varlenþtype..eqfunc32   .runtime.memequal_varlenþtype..alg32   type..hashfunc32type..eqfunc32þ@go.string.hdr."*image.Rectangle"  8go.string."*image.Rectangle"þ8go.string."*image.Rectangle"0"*image.Rectangleþ2go.string.hdr."Rectangle"  	*go.string."Rectangle"þ*go.string."Rectangle" RectangleþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þ$go.string.hdr."Dx"  go.string."Dx"þgo.string."Dx"DxþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þ$go.string.hdr."Dy"  go.string."Dy"þgo.string."Dy"DyþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þ(go.string.hdr."Size"   go.string."Size"þ go.string."Size"
SizeþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·a041240a37ce609efec56707c330d1a4þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·a041240a37ce609efec56707c330d1a4þ*go.string.hdr."Inset"  "go.string."Inset"þ"go.string."Inset"InsetþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aþ2go.string.hdr."Intersect"  	*go.string."Intersect"þ*go.string."Intersect" IntersectþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·4d8bed7e4976e3d095a9230e496231af	þ*go.string.hdr."Union"  "go.string."Union"þ"go.string."Union"UnionþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·4d8bed7e4976e3d095a9230e496231af	þ*go.string.hdr."Empty"  "go.string."Empty"þ"go.string."Empty"EmptyþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aþ0go.string.hdr."Overlaps"  (go.string."Overlaps"þ(go.string."Overlaps" OverlapsþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aþ*go.string.hdr."Canon"  "go.string."Canon"þ"go.string."Canon"CanonþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ$go.string.hdr."At"  go.string."At"þgo.string."At"AtþTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·89fe65749ce0afc971c0982226501ff0þ,go.string.hdr."Bounds"  $go.string."Bounds"þ$go.string."Bounds"BoundsþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ4go.string.hdr."ColorModel"  
,go.string."ColorModel"þ,go.string."ColorModel" ColorModelþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þ†go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"  3~go.string."func(*image.Rectangle, image.Point) image.Rectangle"þ~go.string."func(*image.Rectangle, image.Point) image.Rectangle"phfunc(*image.Rectangle, image.Point) image.Rectangleþ^type.func(*"".Rectangle, "".Point) "".Rectangle  7Øút30€ runtime.algarray@"runtime.gcbits.01P†go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"ppgo.weak.type.*func(*"".Rectangle, "".Point) "".Rectangleð^type.func(*"".Rectangle, "".Point) "".RectangleÀ^type.func(*"".Rectangle, "".Point) "".Rectangleð$type.*"".Rectangle€type."".Point"type."".RectangleþÔgo.typelink.func(*image.Rectangle, image.Point) image.Rectangle	func(*"".Rectangle, "".Point) "".Rectangle^type.func(*"".Rectangle, "".Point) "".Rectangleþxgo.string.hdr."func(*image.Rectangle, int, int) color.Color"  ,pgo.string."func(*image.Rectangle, int, int) color.Color"þpgo.string."func(*image.Rectangle, int, int) color.Color"`Zfunc(*image.Rectangle, int, int) color.Colorþhtype.func(*"".Rectangle, int, int) image/color.Color°°K¸֜30€ runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Rectangle, int, int) color.Color"pzgo.weak.type.*func(*"".Rectangle, int, int) image/color.Colorðhtype.func(*"".Rectangle, int, int) image/color.ColorÀ htype.func(*"".Rectangle, int, int) image/color.Colorð$type.*"".Rectangle€type.inttype.int ,type.image/color.ColorþÐgo.typelink.func(*image.Rectangle, int, int) color.Color	func(*"".Rectangle, int, int) image/color.Colorhtype.func(*"".Rectangle, int, int) image/color.Colorþlgo.string.hdr."func(*image.Rectangle) image.Rectangle"  &dgo.string."func(*image.Rectangle) image.Rectangle"þdgo.string."func(*image.Rectangle) image.Rectangle"PNfunc(*image.Rectangle) image.RectangleþJtype.func(*"".Rectangle) "".RectangleŒP2]30€ runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Rectangle) image.Rectangle"p\go.weak.type.*func(*"".Rectangle) "".RectangleðJtype.func(*"".Rectangle) "".RectangleÀ€Jtype.func(*"".Rectangle) "".Rectangleð$type.*"".Rectangle€"type."".Rectangleþ¦go.typelink.func(*image.Rectangle) image.Rectangle	func(*"".Rectangle) "".RectangleJtype.func(*"".Rectangle) "".Rectangleþdgo.string.hdr."func(*image.Rectangle) color.Model"  "\go.string."func(*image.Rectangle) color.Model"þ\go.string."func(*image.Rectangle) color.Model"PFfunc(*image.Rectangle) color.ModelþTtype.func(*"".Rectangle) image/color.Model§Õ]30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Rectangle) color.Model"pfgo.weak.type.*func(*"".Rectangle) image/color.ModelðTtype.func(*"".Rectangle) image/color.ModelÀ€Ttype.func(*"".Rectangle) image/color.Modelð$type.*"".Rectangle€,type.image/color.Modelþ¨go.typelink.func(*image.Rectangle) color.Model	func(*"".Rectangle) image/color.ModelTtype.func(*"".Rectangle) image/color.ModelþTgo.string.hdr."func(*image.Rectangle) int"  Lgo.string."func(*image.Rectangle) int"þLgo.string."func(*image.Rectangle) int"@6func(*image.Rectangle) intþ8type.func(*"".Rectangle) intáç§@30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*image.Rectangle) int"pJgo.weak.type.*func(*"".Rectangle) intð8type.func(*"".Rectangle) intÀ€8type.func(*"".Rectangle) intð$type.*"".Rectangle€type.intþ|go.typelink.func(*image.Rectangle) int	func(*"".Rectangle) int8type.func(*"".Rectangle) intþVgo.string.hdr."func(*image.Rectangle) bool"  Ngo.string."func(*image.Rectangle) bool"þNgo.string."func(*image.Rectangle) bool"@8func(*image.Rectangle) boolþ:type.func(*"".Rectangle) boolro30€ runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*image.Rectangle) bool"pLgo.weak.type.*func(*"".Rectangle) boolð:type.func(*"".Rectangle) boolÀ€:type.func(*"".Rectangle) boolð$type.*"".Rectangle€type.boolþ€go.typelink.func(*image.Rectangle) bool	func(*"".Rectangle) bool:type.func(*"".Rectangle) boolþxgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool"  ,pgo.string."func(*image.Rectangle, image.Rectangle) bool"þpgo.string."func(*image.Rectangle, image.Rectangle) bool"`Zfunc(*image.Rectangle, image.Rectangle) boolþVtype.func(*"".Rectangle, "".Rectangle) bool  ‹
@¶30€ runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool"phgo.weak.type.*func(*"".Rectangle, "".Rectangle) boolðVtype.func(*"".Rectangle, "".Rectangle) boolÀVtype.func(*"".Rectangle, "".Rectangle) boolð$type.*"".Rectangle€"type."".Rectangletype.boolþ¾go.typelink.func(*image.Rectangle, image.Rectangle) bool	func(*"".Rectangle, "".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) boolþvgo.string.hdr."func(*image.Rectangle, int) image.Rectangle"  +ngo.string."func(*image.Rectangle, int) image.Rectangle"þngo.string."func(*image.Rectangle, int) image.Rectangle"`Xfunc(*image.Rectangle, int) image.RectangleþTtype.func(*"".Rectangle, int) "".Rectangle  Ògš30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Rectangle, int) image.Rectangle"pfgo.weak.type.*func(*"".Rectangle, int) "".RectangleðTtype.func(*"".Rectangle, int) "".RectangleÀTtype.func(*"".Rectangle, int) "".Rectangleð$type.*"".Rectangle€type.int"type."".Rectangleþºgo.typelink.func(*image.Rectangle, int) image.Rectangle	func(*"".Rectangle, int) "".RectangleTtype.func(*"".Rectangle, int) "".RectangleþŽgo.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle"  7†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"þ†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"ppfunc(*image.Rectangle, image.Rectangle) image.Rectangleþftype.func(*"".Rectangle, "".Rectangle) "".Rectangle  :çå30€ runtime.algarray@"runtime.gcbits.01PŽgo.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle"pxgo.weak.type.*func(*"".Rectangle, "".Rectangle) "".Rectangleðftype.func(*"".Rectangle, "".Rectangle) "".RectangleÀftype.func(*"".Rectangle, "".Rectangle) "".Rectangleð$type.*"".Rectangle€"type."".Rectangle"type."".Rectangleþägo.typelink.func(*image.Rectangle, image.Rectangle) image.Rectangle	func(*"".Rectangle, "".Rectangle) "".Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangleþdgo.string.hdr."func(*image.Rectangle) image.Point"  "\go.string."func(*image.Rectangle) image.Point"þ\go.string."func(*image.Rectangle) image.Point"PFfunc(*image.Rectangle) image.PointþBtype.func(*"".Rectangle) "".Pointv÷I30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Rectangle) image.Point"pTgo.weak.type.*func(*"".Rectangle) "".PointðBtype.func(*"".Rectangle) "".PointÀ€Btype.func(*"".Rectangle) "".Pointð$type.*"".Rectangle€type."".Pointþ–go.typelink.func(*image.Rectangle) image.Point	func(*"".Rectangle) "".PointBtype.func(*"".Rectangle) "".PointþZgo.string.hdr."func(*image.Rectangle) string"  Rgo.string."func(*image.Rectangle) string"þRgo.string."func(*image.Rectangle) string"@<func(*image.Rectangle) stringþ>type.func(*"".Rectangle) string€_530€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.Rectangle) string"pPgo.weak.type.*func(*"".Rectangle) stringð>type.func(*"".Rectangle) stringÀ€>type.func(*"".Rectangle) stringð$type.*"".Rectangle€type.stringþˆgo.typelink.func(*image.Rectangle) string	func(*"".Rectangle) string>type.func(*"".Rectangle) stringþbgo.string.hdr."func(image.Point) image.Rectangle"  !Zgo.string."func(image.Point) image.Rectangle"þZgo.string."func(image.Point) image.Rectangle"PDfunc(image.Point) image.Rectangleþ@type.func("".Point) "".RectangleÇmËQ30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Point) image.Rectangle"pRgo.weak.type.*func("".Point) "".Rectangleð@type.func("".Point) "".RectangleÀ€@type.func("".Point) "".Rectangleðtype."".Point€"type."".Rectangleþ’go.typelink.func(image.Point) image.Rectangle	func("".Point) "".Rectangle@type.func("".Point) "".RectangleþDgo.string.hdr."func() color.Model"  <go.string."func() color.Model"þ<go.string."func() color.Model"0&func() color.Modelþ:type.func() image/color.Model€€‚{#30€ runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func() color.Model"pLgo.weak.type.*func() image/color.Modelð:type.func() image/color.ModelÀð:type.func() image/color.Modelð,type.image/color.Modelþngo.typelink.func() color.Model	func() image/color.Model:type.func() image/color.Modelþ4go.string.hdr."func() int"  
,go.string."func() int"þ,go.string."func() int" func() intþtype.func() int€€å†9à30€ runtime.algarray@"runtime.gcbits.01P4go.string.hdr."func() int"p0go.weak.type.*func() intðtype.func() intÀðtype.func() intðtype.intþBgo.typelink.func() int	func() inttype.func() intþ6go.string.hdr."func() bool"  .go.string."func() bool"þ.go.string."func() bool" func() boolþ type.func() bool€€TËx30€ runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func() bool"p2go.weak.type.*func() boolð type.func() boolÀð type.func() boolðtype.boolþFgo.typelink.func() bool	func() bool type.func() boolþRgo.string.hdr."func(int) image.Rectangle"  Jgo.string."func(int) image.Rectangle"þJgo.string."func(int) image.Rectangle"@4func(int) image.Rectangleþ6type.func(int) "".Rectangle9,e30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int) image.Rectangle"pHgo.weak.type.*func(int) "".Rectangleð6type.func(int) "".RectangleÀ€6type.func(int) "".Rectangleðtype.int€"type."".Rectangleþxgo.typelink.func(int) image.Rectangle	func(int) "".Rectangle6type.func(int) "".Rectangleþjgo.string.hdr."func(image.Rectangle) image.Rectangle"  %bgo.string."func(image.Rectangle) image.Rectangle"þbgo.string."func(image.Rectangle) image.Rectangle"PLfunc(image.Rectangle) image.RectangleþHtype.func("".Rectangle) "".Rectanglea?B30€ runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(image.Rectangle) image.Rectangle"pZgo.weak.type.*func("".Rectangle) "".RectangleðHtype.func("".Rectangle) "".RectangleÀ€Htype.func("".Rectangle) "".Rectangleð"type."".Rectangle€"type."".Rectangleþ¢go.typelink.func(image.Rectangle) image.Rectangle	func("".Rectangle) "".RectangleHtype.func("".Rectangle) "".RectangleþDgo.string.hdr."func() image.Point"  <go.string."func() image.Point"þ<go.string."func() image.Point"0&func() image.Pointþ(type.func() "".Point€€$*|õ30€ runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func() image.Point"p:go.weak.type.*func() "".Pointð(type.func() "".PointÀð(type.func() "".Pointðtype."".Pointþ\go.typelink.func() image.Point	func() "".Point(type.func() "".Pointþ$type.*"".RectangleÀÀDðÊ6¸0  runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*image.Rectangle"p6go.weak.type.**"".Rectangle€"type."".Rectangle`$type.*"".Rectangle°à$type.*"".Rectangleà&go.string.hdr."Add"€@type.func("".Point) "".Rectangle^type.func(*"".Rectangle, "".Point) "".Rectangle &"".(*Rectangle).Add°&"".(*Rectangle).AddÀ$go.string.hdr."At"àJtype.func(int, int) image/color.Colorðhtype.func(*"".Rectangle, int, int) image/color.Color€$"".(*Rectangle).At$"".(*Rectangle).At ,go.string.hdr."Bounds"À0type.func() "".RectangleÐJtype.func(*"".Rectangle) "".Rectangleà,"".(*Rectangle).Boundsð,"".(*Rectangle).Bounds€*go.string.hdr."Canon" 0type.func() "".Rectangle°Jtype.func(*"".Rectangle) "".RectangleÀ*"".(*Rectangle).CanonÐ*"".(*Rectangle).Canonà4go.string.hdr."ColorModel"€:type.func() image/color.ModelTtype.func(*"".Rectangle) image/color.Model 4"".(*Rectangle).ColorModel°4"".(*Rectangle).ColorModelÀ$go.string.hdr."Dx"àtype.func() intð8type.func(*"".Rectangle) int€$"".(*Rectangle).Dx$"".(*Rectangle).Dx $go.string.hdr."Dy"Àtype.func() intÐ8type.func(*"".Rectangle) intà$"".(*Rectangle).Dyð$"".(*Rectangle).Dy€*go.string.hdr."Empty"  type.func() bool°:type.func(*"".Rectangle) boolÀ*"".(*Rectangle).EmptyÐ*"".(*Rectangle).Emptyà$go.string.hdr."Eq"€8type.func("".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool $"".(*Rectangle).Eq°$"".(*Rectangle).EqÀ$go.string.hdr."In"à8type.func("".Rectangle) boolðVtype.func(*"".Rectangle, "".Rectangle) bool€	$"".(*Rectangle).In	$"".(*Rectangle).In 	*go.string.hdr."Inset"À	6type.func(int) "".RectangleÐ	Ttype.func(*"".Rectangle, int) "".Rectangleà	*"".(*Rectangle).Insetð	*"".(*Rectangle).Inset€
2go.string.hdr."Intersect" 
Htype.func("".Rectangle) "".Rectangle°
ftype.func(*"".Rectangle, "".Rectangle) "".RectangleÀ
2"".(*Rectangle).IntersectÐ
2"".(*Rectangle).Intersectà
0go.string.hdr."Overlaps"€8type.func("".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool 0"".(*Rectangle).Overlaps°0"".(*Rectangle).OverlapsÀ(go.string.hdr."Size"à(type.func() "".PointðBtype.func(*"".Rectangle) "".Point€("".(*Rectangle).Size("".(*Rectangle).Size ,go.string.hdr."String"À$type.func() stringÐ>type.func(*"".Rectangle) stringà,"".(*Rectangle).Stringð,"".(*Rectangle).String€
&go.string.hdr."Sub" 
@type.func("".Point) "".Rectangle°
^type.func(*"".Rectangle, "".Point) "".RectangleÀ
&"".(*Rectangle).SubÐ
&"".(*Rectangle).Subà
*go.string.hdr."Union"€Htype.func("".Rectangle) "".Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangle *"".(*Rectangle).Union°*"".(*Rectangle).Unionþ>go.string.hdr."image.Rectangle"  6go.string."image.Rectangle"þ6go.string."image.Rectangle"  image.Rectangleþ&go.string.hdr."Min"  go.string."Min"þgo.string."Min"Minþ&go.string.hdr."Max"  go.string."Max"þgo.string."Max"Maxþ„go.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"  2|go.string."func(image.Rectangle, image.Point) image.Rectangle"þ|go.string."func(image.Rectangle, image.Point) image.Rectangle"pffunc(image.Rectangle, image.Point) image.Rectangleþ\type.func("".Rectangle, "".Point) "".Rectangle  ·ç30€ runtime.algarray@"runtime.gcbits.01P„go.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"pngo.weak.type.*func("".Rectangle, "".Point) "".Rectangleð\type.func("".Rectangle, "".Point) "".RectangleÀ\type.func("".Rectangle, "".Point) "".Rectangleð"type."".Rectangle€type."".Point"type."".RectangleþÐgo.typelink.func(image.Rectangle, image.Point) image.Rectangle	func("".Rectangle, "".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangleþvgo.string.hdr."func(image.Rectangle, int, int) color.Color"  +ngo.string."func(image.Rectangle, int, int) color.Color"þngo.string."func(image.Rectangle, int, int) color.Color"`Xfunc(image.Rectangle, int, int) color.Colorþftype.func("".Rectangle, int, int) image/color.Color°°ÛÑ30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(image.Rectangle, int, int) color.Color"pxgo.weak.type.*func("".Rectangle, int, int) image/color.Colorðftype.func("".Rectangle, int, int) image/color.ColorÀ ftype.func("".Rectangle, int, int) image/color.Colorð"type."".Rectangle€type.inttype.int ,type.image/color.ColorþÌgo.typelink.func(image.Rectangle, int, int) color.Color	func("".Rectangle, int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Colorþbgo.string.hdr."func(image.Rectangle) color.Model"  !Zgo.string."func(image.Rectangle) color.Model"þZgo.string."func(image.Rectangle) color.Model"PDfunc(image.Rectangle) color.ModelþRtype.func("".Rectangle) image/color.Model‰aßÕ30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) color.Model"pdgo.weak.type.*func("".Rectangle) image/color.ModelðRtype.func("".Rectangle) image/color.ModelÀ€Rtype.func("".Rectangle) image/color.Modelð"type."".Rectangle€,type.image/color.Modelþ¤go.typelink.func(image.Rectangle) color.Model	func("".Rectangle) image/color.ModelRtype.func("".Rectangle) image/color.ModelþRgo.string.hdr."func(image.Rectangle) int"  Jgo.string."func(image.Rectangle) int"þJgo.string."func(image.Rectangle) int"@4func(image.Rectangle) intþ6type.func("".Rectangle) intç9Y¼30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(image.Rectangle) int"pHgo.weak.type.*func("".Rectangle) intð6type.func("".Rectangle) intÀ€6type.func("".Rectangle) intð"type."".Rectangle€type.intþxgo.typelink.func(image.Rectangle) int	func("".Rectangle) int6type.func("".Rectangle) intþvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"  +ngo.string."func(image.Rectangle, image.Rectangle) bool"þngo.string."func(image.Rectangle, image.Rectangle) bool"`Xfunc(image.Rectangle, image.Rectangle) boolþTtype.func("".Rectangle, "".Rectangle) bool  ÿ˜8Ñ30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"pfgo.weak.type.*func("".Rectangle, "".Rectangle) boolðTtype.func("".Rectangle, "".Rectangle) boolÀTtype.func("".Rectangle, "".Rectangle) boolð"type."".Rectangle€"type."".Rectangletype.boolþºgo.typelink.func(image.Rectangle, image.Rectangle) bool	func("".Rectangle, "".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) boolþtgo.string.hdr."func(image.Rectangle, int) image.Rectangle"  *lgo.string."func(image.Rectangle, int) image.Rectangle"þlgo.string."func(image.Rectangle, int) image.Rectangle"`Vfunc(image.Rectangle, int) image.RectangleþRtype.func("".Rectangle, int) "".Rectangle  }dÎ30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(image.Rectangle, int) image.Rectangle"pdgo.weak.type.*func("".Rectangle, int) "".RectangleðRtype.func("".Rectangle, int) "".RectangleÀRtype.func("".Rectangle, int) "".Rectangleð"type."".Rectangle€type.int"type."".Rectangleþ¶go.typelink.func(image.Rectangle, int) image.Rectangle	func("".Rectangle, int) "".RectangleRtype.func("".Rectangle, int) "".RectangleþŒgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"  6„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"þ„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"pnfunc(image.Rectangle, image.Rectangle) image.Rectangleþdtype.func("".Rectangle, "".Rectangle) "".Rectangle  M_Eå30€ runtime.algarray@"runtime.gcbits.01PŒgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"pvgo.weak.type.*func("".Rectangle, "".Rectangle) "".Rectangleðdtype.func("".Rectangle, "".Rectangle) "".RectangleÀdtype.func("".Rectangle, "".Rectangle) "".Rectangleð"type."".Rectangle€"type."".Rectangle"type."".Rectangleþàgo.typelink.func(image.Rectangle, image.Rectangle) image.Rectangle	func("".Rectangle, "".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".RectangleþXgo.string.hdr."func(image.Rectangle) string"  Pgo.string."func(image.Rectangle) string"þPgo.string."func(image.Rectangle) string"@:func(image.Rectangle) stringþ<type.func("".Rectangle) string¨Ü7b30€ runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(image.Rectangle) string"pNgo.weak.type.*func("".Rectangle) stringð<type.func("".Rectangle) stringÀ€<type.func("".Rectangle) stringð"type."".Rectangle€type.stringþ„go.typelink.func(image.Rectangle) string	func("".Rectangle) string<type.func("".Rectangle) stringþ"type."".Rectangle€€ £•—É™Ä0type..alg32@runtime.gcbits.P>go.string.hdr."image.Rectangle"p$type.*"".Rectangle€°"type."".Rectangle°&go.string.hdr."Min"Ðtype."".Point€&go.string.hdr."Max" type."".Point`Ð"type."".RectangleÐ2go.string.hdr."Rectangle"à"go.importpath."".ð "type."".Rectangle &go.string.hdr."Add"À@type.func("".Point) "".RectangleÐ\type.func("".Rectangle, "".Point) "".Rectangleà&"".(*Rectangle).Addð "".Rectangle.Add€$go.string.hdr."At" Jtype.func(int, int) image/color.Color°ftype.func("".Rectangle, int, int) image/color.ColorÀ$"".(*Rectangle).AtÐ"".Rectangle.Atà,go.string.hdr."Bounds"€0type.func() "".RectangleHtype.func("".Rectangle) "".Rectangle ,"".(*Rectangle).Bounds°&"".Rectangle.BoundsÀ*go.string.hdr."Canon"à0type.func() "".RectangleðHtype.func("".Rectangle) "".Rectangle€*"".(*Rectangle).Canon$"".Rectangle.Canon 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐRtype.func("".Rectangle) image/color.Modelà4"".(*Rectangle).ColorModelð."".Rectangle.ColorModel€$go.string.hdr."Dx" type.func() int°6type.func("".Rectangle) intÀ$"".(*Rectangle).DxÐ"".Rectangle.Dxà$go.string.hdr."Dy"€type.func() int6type.func("".Rectangle) int $"".(*Rectangle).Dy°"".Rectangle.DyÀ*go.string.hdr."Empty"à type.func() boolð8type.func("".Rectangle) bool€	*"".(*Rectangle).Empty	$"".Rectangle.Empty 	$go.string.hdr."Eq"À	8type.func("".Rectangle) boolÐ	Ttype.func("".Rectangle, "".Rectangle) boolà	$"".(*Rectangle).Eqð	"".Rectangle.Eq€
$go.string.hdr."In" 
8type.func("".Rectangle) bool°
Ttype.func("".Rectangle, "".Rectangle) boolÀ
$"".(*Rectangle).InÐ
"".Rectangle.Inà
*go.string.hdr."Inset"€6type.func(int) "".RectangleRtype.func("".Rectangle, int) "".Rectangle *"".(*Rectangle).Inset°$"".Rectangle.InsetÀ2go.string.hdr."Intersect"àHtype.func("".Rectangle) "".Rectangleðdtype.func("".Rectangle, "".Rectangle) "".Rectangle€2"".(*Rectangle).Intersect,"".Rectangle.Intersect 0go.string.hdr."Overlaps"À8type.func("".Rectangle) boolÐTtype.func("".Rectangle, "".Rectangle) boolà0"".(*Rectangle).Overlapsð*"".Rectangle.Overlaps€
(go.string.hdr."Size" 
(type.func() "".Point°
@type.func("".Rectangle) "".PointÀ
("".(*Rectangle).SizeÐ
""".Rectangle.Sizeà
,go.string.hdr."String"€$type.func() string<type.func("".Rectangle) string ,"".(*Rectangle).String°&"".Rectangle.StringÀ&go.string.hdr."Sub"à@type.func("".Point) "".Rectangleð\type.func("".Rectangle, "".Point) "".Rectangle€&"".(*Rectangle).Sub "".Rectangle.Sub *go.string.hdr."Union"ÀHtype.func("".Rectangle) "".RectangleÐdtype.func("".Rectangle, "".Rectangle) "".Rectangleà*"".(*Rectangle).Unionð$"".Rectangle.UnionþLgo.string.hdr."func() image.Rectangle"  Dgo.string."func() image.Rectangle"þDgo.string."func() image.Rectangle"0.func() image.Rectangleþ0type.func() "".Rectangle€€ìʹe30€ runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func() image.Rectangle"pBgo.weak.type.*func() "".Rectangleð0type.func() "".RectangleÀð0type.func() "".Rectangleð"type."".Rectangleþlgo.typelink.func() image.Rectangle	func() "".Rectangle0type.func() "".Rectangleþ8go.string.hdr."*image.Image"  0go.string."*image.Image"þ0go.string."*image.Image" *image.Imageþtype.*"".ImageCL¨è6
0  runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Image"p.go.weak.type.**"".Image€type."".Imageþ"runtime.gcbits.03þ6go.string.hdr."image.Image"  .go.string."image.Image"þ.go.string."image.Image" image.Imageþ*go.string.hdr."Image"  "go.string."Image"þ"go.string."Image"Imageþtype."".ImageÜSͮ0à runtime.algarray@"runtime.gcbits.03P6go.string.hdr."image.Image"ptype.*"".Image€°type."".Image°$go.string.hdr."At"ÐJtype.func(int, int) image/color.Colorà,go.string.hdr."Bounds"€0type.func() "".Rectangle4go.string.hdr."ColorModel"°:type.func() image/color.Model`Àtype."".ImageÀ*go.string.hdr."Image"Ð"go.importpath."".àtype."".Imageþhgo.string.hdr."func(io.Reader) (image.Image, error)"  $`go.string."func(io.Reader) (image.Image, error)"þ`go.string."func(io.Reader) (image.Image, error)"PJfunc(io.Reader) (image.Image, error)þLtype.func(io.Reader) ("".Image, error)  ‚ïº@30€ runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(io.Reader) (image.Image, error)"p^go.weak.type.*func(io.Reader) ("".Image, error)ðLtype.func(io.Reader) ("".Image, error)À€Ltype.func(io.Reader) ("".Image, error)ðtype.io.Reader€type."".Imagetype.errorþ¤go.typelink.func(io.Reader) (image.Image, error)	func(io.Reader) ("".Image, error)Ltype.func(io.Reader) ("".Image, error)þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440þTgclocals·3bb21ca8fe1d99a3e492463bd711418aþ0type..hashfunc."".Config(type..hash."".Configþ,type..eqfunc."".Config$type..eq."".Configþ&type..alg."".Config  0type..hashfunc."".Config,type..eqfunc."".Configþ:go.string.hdr."*image.Config"  
2go.string."*image.Config"þ2go.string."*image.Config" *image.Configþtype.*"".Config³`y6
0  runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.Config"p0go.weak.type.**"".Config€type."".Configþ8go.string.hdr."image.Config"  0go.string."image.Config"þ0go.string."image.Config" image.Configþ*go.string.hdr."Width"  "go.string."Width"þ"go.string."Width"Widthþ,go.string.hdr."Height"  $go.string."Height"þ$go.string."Height"Heightþ,go.string.hdr."Config"  $go.string."Config"þ$go.string."Config"Configþtype."".Configðð Y³¯g0&type..alg."".Config@"runtime.gcbits.03P8go.string.hdr."image.Config"ptype.*"".Config€°type."".Config°4go.string.hdr."ColorModel"Ð,type.image/color.Model€*go.string.hdr."Width" type.intÐ,go.string.hdr."Height"ðtype.int` type."".Config ,go.string.hdr."Config"°"go.importpath."".Àðtype."".Configþjgo.string.hdr."func(io.Reader) (image.Config, error)"  %bgo.string."func(io.Reader) (image.Config, error)"þbgo.string."func(io.Reader) (image.Config, error)"PLfunc(io.Reader) (image.Config, error)þNtype.func(io.Reader) ("".Config, error)  ã3/ö30€ runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(io.Reader) (image.Config, error)"p`go.weak.type.*func(io.Reader) ("".Config, error)ðNtype.func(io.Reader) ("".Config, error)À€Ntype.func(io.Reader) ("".Config, error)ðtype.io.Reader€type."".Configtype.errorþ¨go.typelink.func(io.Reader) (image.Config, error)	func(io.Reader) ("".Config, error)Ntype.func(io.Reader) ("".Config, error)þ:go.string.hdr."*image.format"  
2go.string."*image.format"þ2go.string."*image.format" *image.formatþtype.*"".formatÃQ@M6
0  runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.format"p0go.weak.type.**"".format€type."".formatþ"runtime.gcbits.355þ8go.string.hdr."image.format"  0go.string."image.format"þ0go.string."image.format" image.formatþ(go.string.hdr."name"   go.string."name"þ go.string."name"
nameþ*go.string.hdr."magic"  "go.string."magic"þ"go.string."magic"magicþ,go.string.hdr."decode"  $go.string."decode"þ$go.string."decode"decodeþ8go.string.hdr."decodeConfig"  0go.string."decodeConfig"þ0go.string."decodeConfig" decodeConfigþ,go.string.hdr."format"  $go.string."format"þ$go.string."format"formatþtype."".formatÀÀ00ˆ@7¨ (*0à runtime.algarray@"runtime.gcbits.35P8go.string.hdr."image.format"ptype.*"".format€°type."".format°(go.string.hdr."name"À"go.importpath."".Ðtype.string€*go.string.hdr."magic""go.importpath."". type.stringÐ,go.string.hdr."decode"à"go.importpath."".ðLtype.func(io.Reader) ("".Image, error) 8go.string.hdr."decodeConfig"°"go.importpath."".ÀNtype.func(io.Reader) ("".Config, error)`ðtype."".formatð,go.string.hdr."format"€"go.importpath."".Àtype."".formatþ<go.string.hdr."[]image.format"  4go.string."[]image.format"þ4go.string."[]image.format" []image.formatþ type.[]"".format2{1
0  runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]image.format"p2go.weak.type.*[]"".format€type."".formatþLgo.typelink.[]image.format	[]"".format type.[]"".formatþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·dacebcad73eed5073009fd67170948d0þ.go.string.hdr."[]uint8"  &go.string."[]uint8"þ&go.string."[]uint8"[]uint8þtype.[]uint8ß~.8
0  runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8€type.uint8þ6go.typelink.[]uint8	[]uint8type.[]uint8þTgo.string.hdr."func(int) ([]uint8, error)"  Lgo.string."func(int) ([]uint8, error)"þLgo.string."func(int) ([]uint8, error)"@6func(int) ([]uint8, error)þ>type.func(int) ([]uint8, error)  <bCË30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int) ([]uint8, error)"pPgo.weak.type.*func(int) ([]uint8, error)ð>type.func(int) ([]uint8, error)À€>type.func(int) ([]uint8, error)ðtype.int€type.[]uint8type.errorþ‚go.typelink.func(int) ([]uint8, error)	func(int) ([]uint8, error)>type.func(int) ([]uint8, error)þTgo.string.hdr."func([]uint8) (int, error)"  Lgo.string."func([]uint8) (int, error)"þLgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)þ>type.func([]uint8) (int, error)  „N4P30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)ð>type.func([]uint8) (int, error)À€>type.func([]uint8) (int, error)ðtype.[]uint8€type.inttype.errorþ‚go.typelink.func([]uint8) (int, error)	func([]uint8) (int, error)>type.func([]uint8) (int, error)þ:go.string.hdr."*image.reader"  
2go.string."*image.reader"þ2go.string."*image.reader" *image.readerþtype.*"".readerŒˆ–6
0  runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.reader"p0go.weak.type.**"".reader€type."".readerþ8go.string.hdr."image.reader"  0go.string."image.reader"þ0go.string."image.reader" image.readerþ(go.string.hdr."Peek"   go.string."Peek"þ go.string."Peek"
Peekþ(go.string.hdr."Read"   go.string."Read"þ go.string."Read"
Readþ,go.string.hdr."reader"  $go.string."reader"þ$go.string."reader"readerþtype."".readeràà	²€0à runtime.algarray@"runtime.gcbits.03P8go.string.hdr."image.reader"ptype.*"".reader€°type."".reader°(go.string.hdr."Peek"Ð>type.func(int) ([]uint8, error)à(go.string.hdr."Read"€>type.func([]uint8) (int, error)`type."".reader,go.string.hdr."reader" "go.importpath."".°àtype."".readerþ4go.string.hdr."image.RGBA"  
,go.string."image.RGBA"þ,go.string."image.RGBA" image.RGBAþ&go.string.hdr."Pix"  go.string."Pix"þgo.string."Pix"Pixþ,go.string.hdr."Stride"  $go.string."Stride"þ$go.string."Stride"Strideþ(go.string.hdr."Rect"   go.string."Rect"þ go.string."Rect"
Rectþ(go.string.hdr."RGBA"   go.string."RGBA"þ go.string."RGBA"
RGBAþtype."".RGBAðð@>#VÄ 0à runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.RGBA"ptype.*"".RGBA€°type."".RGBA°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".RGBA (go.string.hdr."RGBA"°"go.importpath."".Àðtype."".RGBAþ6go.string.hdr."*image.RGBA"  .go.string."*image.RGBA"þ.go.string."*image.RGBA" *image.RGBAþngo.string.hdr."func(*image.RGBA, int, int) color.Color"  'fgo.string."func(*image.RGBA, int, int) color.Color"þfgo.string."func(*image.RGBA, int, int) color.Color"PPfunc(*image.RGBA, int, int) color.Colorþ^type.func(*"".RGBA, int, int) image/color.Color°°ì‡;ƒ30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.RGBA, int, int) color.Color"ppgo.weak.type.*func(*"".RGBA, int, int) image/color.Colorð^type.func(*"".RGBA, int, int) image/color.ColorÀ ^type.func(*"".RGBA, int, int) image/color.Colorðtype.*"".RGBA€type.inttype.int ,type.image/color.Colorþ¼go.typelink.func(*image.RGBA, int, int) color.Color	func(*"".RGBA, int, int) image/color.Color^type.func(*"".RGBA, int, int) image/color.Colorþbgo.string.hdr."func(*image.RGBA) image.Rectangle"  !Zgo.string."func(*image.RGBA) image.Rectangle"þZgo.string."func(*image.RGBA) image.Rectangle"PDfunc(*image.RGBA) image.Rectangleþ@type.func(*"".RGBA) "".RectangleVbX	30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.RGBA) image.Rectangle"pRgo.weak.type.*func(*"".RGBA) "".Rectangleð@type.func(*"".RGBA) "".RectangleÀ€@type.func(*"".RGBA) "".Rectangleðtype.*"".RGBA€"type."".Rectangleþ’go.typelink.func(*image.RGBA) image.Rectangle	func(*"".RGBA) "".Rectangle@type.func(*"".RGBA) "".RectangleþZgo.string.hdr."func(*image.RGBA) color.Model"  Rgo.string."func(*image.RGBA) color.Model"þRgo.string."func(*image.RGBA) color.Model"@<func(*image.RGBA) color.ModelþJtype.func(*"".RGBA) image/color.Model;àmì30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.RGBA) color.Model"p\go.weak.type.*func(*"".RGBA) image/color.ModelðJtype.func(*"".RGBA) image/color.ModelÀ€Jtype.func(*"".RGBA) image/color.Modelðtype.*"".RGBA€,type.image/color.Modelþ”go.typelink.func(*image.RGBA) color.Model	func(*"".RGBA) image/color.ModelJtype.func(*"".RGBA) image/color.ModelþLgo.string.hdr."func(*image.RGBA) bool"  Dgo.string."func(*image.RGBA) bool"þDgo.string."func(*image.RGBA) bool"0.func(*image.RGBA) boolþ0type.func(*"".RGBA) bool ÆÇ30€ runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*image.RGBA) bool"pBgo.weak.type.*func(*"".RGBA) boolð0type.func(*"".RGBA) boolÀ€0type.func(*"".RGBA) boolðtype.*"".RGBA€type.boolþlgo.typelink.func(*image.RGBA) bool	func(*"".RGBA) bool0type.func(*"".RGBA) boolþ^go.string.hdr."func(*image.RGBA, int, int) int"  Vgo.string."func(*image.RGBA, int, int) int"þVgo.string."func(*image.RGBA, int, int) int"@@func(*image.RGBA, int, int) intþBtype.func(*"".RGBA, int, int) int°°Óãf·30€ runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.RGBA, int, int) int"pTgo.weak.type.*func(*"".RGBA, int, int) intðBtype.func(*"".RGBA, int, int) intÀ Btype.func(*"".RGBA, int, int) intðtype.*"".RGBA€type.inttype.int type.intþgo.typelink.func(*image.RGBA, int, int) int	func(*"".RGBA, int, int) intBtype.func(*"".RGBA, int, int) intþlgo.string.hdr."func(*image.RGBA, int, int) color.RGBA"  &dgo.string."func(*image.RGBA, int, int) color.RGBA"þdgo.string."func(*image.RGBA, int, int) color.RGBA"PNfunc(*image.RGBA, int, int) color.RGBAþ\type.func(*"".RGBA, int, int) image/color.RGBA°°:-30€ runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.RGBA, int, int) color.RGBA"pngo.weak.type.*func(*"".RGBA, int, int) image/color.RGBAð\type.func(*"".RGBA, int, int) image/color.RGBAÀ \type.func(*"".RGBA, int, int) image/color.RGBAðtype.*"".RGBA€type.inttype.int *type.image/color.RGBAþ¸go.typelink.func(*image.RGBA, int, int) color.RGBA	func(*"".RGBA, int, int) image/color.RGBA\type.func(*"".RGBA, int, int) image/color.RGBAþpgo.string.hdr."func(*image.RGBA, int, int, color.Color)"  (hgo.string."func(*image.RGBA, int, int, color.Color)"þhgo.string."func(*image.RGBA, int, int, color.Color)"`Rfunc(*image.RGBA, int, int, color.Color)þ`type.func(*"".RGBA, int, int, image/color.Color)°°ÿâ¤30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.RGBA, int, int, color.Color)"prgo.weak.type.*func(*"".RGBA, int, int, image/color.Color)ð`type.func(*"".RGBA, int, int, image/color.Color)À°`type.func(*"".RGBA, int, int, image/color.Color)ðtype.*"".RGBA€type.inttype.int ,type.image/color.ColorþÀgo.typelink.func(*image.RGBA, int, int, color.Color)	func(*"".RGBA, int, int, image/color.Color)`type.func(*"".RGBA, int, int, image/color.Color)þngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)"  'fgo.string."func(*image.RGBA, int, int, color.RGBA)"þfgo.string."func(*image.RGBA, int, int, color.RGBA)"PPfunc(*image.RGBA, int, int, color.RGBA)þ^type.func(*"".RGBA, int, int, image/color.RGBA)°°çe130€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)"ppgo.weak.type.*func(*"".RGBA, int, int, image/color.RGBA)ð^type.func(*"".RGBA, int, int, image/color.RGBA)À°^type.func(*"".RGBA, int, int, image/color.RGBA)ðtype.*"".RGBA€type.inttype.int *type.image/color.RGBAþ¼go.typelink.func(*image.RGBA, int, int, color.RGBA)	func(*"".RGBA, int, int, image/color.RGBA)^type.func(*"".RGBA, int, int, image/color.RGBA)þ|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image"  .tgo.string."func(*image.RGBA, image.Rectangle) image.Image"þtgo.string."func(*image.RGBA, image.Rectangle) image.Image"`^func(*image.RGBA, image.Rectangle) image.ImageþTtype.func(*"".RGBA, "".Rectangle) "".Image  ˬ‹30€ runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image"pfgo.weak.type.*func(*"".RGBA, "".Rectangle) "".ImageðTtype.func(*"".RGBA, "".Rectangle) "".ImageÀTtype.func(*"".RGBA, "".Rectangle) "".Imageðtype.*"".RGBA€"type."".Rectangletype."".ImageþÀgo.typelink.func(*image.RGBA, image.Rectangle) image.Image	func(*"".RGBA, "".Rectangle) "".ImageTtype.func(*"".RGBA, "".Rectangle) "".Imageþ,go.string.hdr."Opaque"  $go.string."Opaque"þ$go.string."Opaque"Opaqueþ2go.string.hdr."PixOffset"  	*go.string."PixOffset"þ*go.string."PixOffset" PixOffsetþDgo.string.hdr."func(int, int) int"  <go.string."func(int, int) int"þ<go.string."func(int, int) int"0&func(int, int) intþ.type.func(int, int) int  ÌBu30€ runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(int, int) int"p@go.weak.type.*func(int, int) intð.type.func(int, int) intÀ.type.func(int, int) intðtype.int€type.inttype.intþbgo.typelink.func(int, int) int	func(int, int) int.type.func(int, int) intþ,go.string.hdr."RGBAAt"  $go.string."RGBAAt"þ$go.string."RGBAAt"RGBAAtþRgo.string.hdr."func(int, int) color.RGBA"  Jgo.string."func(int, int) color.RGBA"þJgo.string."func(int, int) color.RGBA"@4func(int, int) color.RGBAþHtype.func(int, int) image/color.RGBA  M‹g30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int, int) color.RGBA"pZgo.weak.type.*func(int, int) image/color.RGBAðHtype.func(int, int) image/color.RGBAÀHtype.func(int, int) image/color.RGBAðtype.int€type.int*type.image/color.RGBAþŠgo.typelink.func(int, int) color.RGBA	func(int, int) image/color.RGBAHtype.func(int, int) image/color.RGBAþ&go.string.hdr."Set"  go.string."Set"þgo.string."Set"SetþVgo.string.hdr."func(int, int, color.Color)"  Ngo.string."func(int, int, color.Color)"þNgo.string."func(int, int, color.Color)"@8func(int, int, color.Color)þLtype.func(int, int, image/color.Color)  md~Õ30€ runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.Color)"p^go.weak.type.*func(int, int, image/color.Color)ðLtype.func(int, int, image/color.Color)À Ltype.func(int, int, image/color.Color)ðtype.int€type.int,type.image/color.Colorþ’go.typelink.func(int, int, color.Color)	func(int, int, image/color.Color)Ltype.func(int, int, image/color.Color)þ.go.string.hdr."SetRGBA"  &go.string."SetRGBA"þ&go.string."SetRGBA"SetRGBAþTgo.string.hdr."func(int, int, color.RGBA)"  Lgo.string."func(int, int, color.RGBA)"þLgo.string."func(int, int, color.RGBA)"@6func(int, int, color.RGBA)þJtype.func(int, int, image/color.RGBA)  qÌ$30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int, color.RGBA)"p\go.weak.type.*func(int, int, image/color.RGBA)ðJtype.func(int, int, image/color.RGBA)À Jtype.func(int, int, image/color.RGBA)ðtype.int€type.int*type.image/color.RGBAþŽgo.typelink.func(int, int, color.RGBA)	func(int, int, image/color.RGBA)Jtype.func(int, int, image/color.RGBA)þ0go.string.hdr."SubImage"  (go.string."SubImage"þ(go.string."SubImage" SubImageþbgo.string.hdr."func(image.Rectangle) image.Image"  !Zgo.string."func(image.Rectangle) image.Image"þZgo.string."func(image.Rectangle) image.Image"PDfunc(image.Rectangle) image.Imageþ@type.func("".Rectangle) "".Imagewûc30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) image.Image"pRgo.weak.type.*func("".Rectangle) "".Imageð@type.func("".Rectangle) "".ImageÀ€@type.func("".Rectangle) "".Imageð"type."".Rectangle€type."".Imageþ’go.typelink.func(image.Rectangle) image.Image	func("".Rectangle) "".Image@type.func("".Rectangle) "".Imageþtype.*"".RGBAÀÀçª6		h0  runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*image.RGBA"p,go.weak.type.**"".RGBA€type."".RGBA`type.*"".RGBA°àtype.*"".RGBAà$go.string.hdr."At"€Jtype.func(int, int) image/color.Color^type.func(*"".RGBA, int, int) image/color.Color "".(*RGBA).At°"".(*RGBA).AtÀ,go.string.hdr."Bounds"à0type.func() "".Rectangleð@type.func(*"".RGBA) "".Rectangle€""".(*RGBA).Bounds""".(*RGBA).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐJtype.func(*"".RGBA) image/color.Modelà*"".(*RGBA).ColorModelð*"".(*RGBA).ColorModel€,go.string.hdr."Opaque"  type.func() bool°0type.func(*"".RGBA) boolÀ""".(*RGBA).OpaqueÐ""".(*RGBA).Opaqueà2go.string.hdr."PixOffset"€.type.func(int, int) intBtype.func(*"".RGBA, int, int) int ("".(*RGBA).PixOffset°("".(*RGBA).PixOffsetÀ,go.string.hdr."RGBAAt"àHtype.func(int, int) image/color.RGBAð\type.func(*"".RGBA, int, int) image/color.RGBA€""".(*RGBA).RGBAAt""".(*RGBA).RGBAAt &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ð`type.func(*"".RGBA, int, int, image/color.Color)à"".(*RGBA).Setð"".(*RGBA).Set€.go.string.hdr."SetRGBA" Jtype.func(int, int, image/color.RGBA)°^type.func(*"".RGBA, int, int, image/color.RGBA)À$"".(*RGBA).SetRGBAÐ$"".(*RGBA).SetRGBAà0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageTtype.func(*"".RGBA, "".Rectangle) "".Image &"".(*RGBA).SubImage°&"".(*RGBA).SubImageþ8go.string.hdr."image.RGBA64"  0go.string."image.RGBA64"þ0go.string."image.RGBA64" image.RGBA64þ,go.string.hdr."RGBA64"  $go.string."RGBA64"þ$go.string."RGBA64"RGBA64þtype."".RGBA64ðð@Z˜4… 0à runtime.algarray@"runtime.gcbits.01P8go.string.hdr."image.RGBA64"ptype.*"".RGBA64€°type."".RGBA64°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".RGBA64 ,go.string.hdr."RGBA64"°"go.importpath."".Àðtype."".RGBA64þ:go.string.hdr."*image.RGBA64"  
2go.string."*image.RGBA64"þ2go.string."*image.RGBA64" *image.RGBA64þrgo.string.hdr."func(*image.RGBA64, int, int) color.Color"  )jgo.string."func(*image.RGBA64, int, int) color.Color"þjgo.string."func(*image.RGBA64, int, int) color.Color"`Tfunc(*image.RGBA64, int, int) color.Colorþbtype.func(*"".RGBA64, int, int) image/color.Color°°¸ØIx30€ runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.RGBA64, int, int) color.Color"ptgo.weak.type.*func(*"".RGBA64, int, int) image/color.Colorðbtype.func(*"".RGBA64, int, int) image/color.ColorÀ btype.func(*"".RGBA64, int, int) image/color.Colorðtype.*"".RGBA64€type.inttype.int ,type.image/color.ColorþÄgo.typelink.func(*image.RGBA64, int, int) color.Color	func(*"".RGBA64, int, int) image/color.Colorbtype.func(*"".RGBA64, int, int) image/color.Colorþfgo.string.hdr."func(*image.RGBA64) image.Rectangle"  #^go.string."func(*image.RGBA64) image.Rectangle"þ^go.string."func(*image.RGBA64) image.Rectangle"PHfunc(*image.RGBA64) image.RectangleþDtype.func(*"".RGBA64) "".RectangleLÜç30€ runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.RGBA64) image.Rectangle"pVgo.weak.type.*func(*"".RGBA64) "".RectangleðDtype.func(*"".RGBA64) "".RectangleÀ€Dtype.func(*"".RGBA64) "".Rectangleðtype.*"".RGBA64€"type."".Rectangleþšgo.typelink.func(*image.RGBA64) image.Rectangle	func(*"".RGBA64) "".RectangleDtype.func(*"".RGBA64) "".Rectangleþ^go.string.hdr."func(*image.RGBA64) color.Model"  Vgo.string."func(*image.RGBA64) color.Model"þVgo.string."func(*image.RGBA64) color.Model"@@func(*image.RGBA64) color.ModelþNtype.func(*"".RGBA64) image/color.ModelM\a30€ runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.RGBA64) color.Model"p`go.weak.type.*func(*"".RGBA64) image/color.ModelðNtype.func(*"".RGBA64) image/color.ModelÀ€Ntype.func(*"".RGBA64) image/color.Modelðtype.*"".RGBA64€,type.image/color.Modelþœgo.typelink.func(*image.RGBA64) color.Model	func(*"".RGBA64) image/color.ModelNtype.func(*"".RGBA64) image/color.ModelþPgo.string.hdr."func(*image.RGBA64) bool"  Hgo.string."func(*image.RGBA64) bool"þHgo.string."func(*image.RGBA64) bool"@2func(*image.RGBA64) boolþ4type.func(*"".RGBA64) bool`Ù	
30€ runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*image.RGBA64) bool"pFgo.weak.type.*func(*"".RGBA64) boolð4type.func(*"".RGBA64) boolÀ€4type.func(*"".RGBA64) boolðtype.*"".RGBA64€type.boolþtgo.typelink.func(*image.RGBA64) bool	func(*"".RGBA64) bool4type.func(*"".RGBA64) boolþbgo.string.hdr."func(*image.RGBA64, int, int) int"  !Zgo.string."func(*image.RGBA64, int, int) int"þZgo.string."func(*image.RGBA64, int, int) int"PDfunc(*image.RGBA64, int, int) intþFtype.func(*"".RGBA64, int, int) int°°‡	¹ë30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.RGBA64, int, int) int"pXgo.weak.type.*func(*"".RGBA64, int, int) intðFtype.func(*"".RGBA64, int, int) intÀ Ftype.func(*"".RGBA64, int, int) intðtype.*"".RGBA64€type.inttype.int type.intþ˜go.typelink.func(*image.RGBA64, int, int) int	func(*"".RGBA64, int, int) intFtype.func(*"".RGBA64, int, int) intþtgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64"  *lgo.string."func(*image.RGBA64, int, int) color.RGBA64"þlgo.string."func(*image.RGBA64, int, int) color.RGBA64"`Vfunc(*image.RGBA64, int, int) color.RGBA64þdtype.func(*"".RGBA64, int, int) image/color.RGBA64°°ÿ·c630€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64"pvgo.weak.type.*func(*"".RGBA64, int, int) image/color.RGBA64ðdtype.func(*"".RGBA64, int, int) image/color.RGBA64À dtype.func(*"".RGBA64, int, int) image/color.RGBA64ðtype.*"".RGBA64€type.inttype.int .type.image/color.RGBA64þÈgo.typelink.func(*image.RGBA64, int, int) color.RGBA64	func(*"".RGBA64, int, int) image/color.RGBA64dtype.func(*"".RGBA64, int, int) image/color.RGBA64þtgo.string.hdr."func(*image.RGBA64, int, int, color.Color)"  *lgo.string."func(*image.RGBA64, int, int, color.Color)"þlgo.string."func(*image.RGBA64, int, int, color.Color)"`Vfunc(*image.RGBA64, int, int, color.Color)þdtype.func(*"".RGBA64, int, int, image/color.Color)°°”Ò130€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.RGBA64, int, int, color.Color)"pvgo.weak.type.*func(*"".RGBA64, int, int, image/color.Color)ðdtype.func(*"".RGBA64, int, int, image/color.Color)À°dtype.func(*"".RGBA64, int, int, image/color.Color)ðtype.*"".RGBA64€type.inttype.int ,type.image/color.ColorþÈgo.typelink.func(*image.RGBA64, int, int, color.Color)	func(*"".RGBA64, int, int, image/color.Color)dtype.func(*"".RGBA64, int, int, image/color.Color)þvgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)"  +ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"þngo.string."func(*image.RGBA64, int, int, color.RGBA64)"`Xfunc(*image.RGBA64, int, int, color.RGBA64)þftype.func(*"".RGBA64, int, int, image/color.RGBA64)°°H‹¥ÿ30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)"pxgo.weak.type.*func(*"".RGBA64, int, int, image/color.RGBA64)ðftype.func(*"".RGBA64, int, int, image/color.RGBA64)À°ftype.func(*"".RGBA64, int, int, image/color.RGBA64)ðtype.*"".RGBA64€type.inttype.int .type.image/color.RGBA64þÌgo.typelink.func(*image.RGBA64, int, int, color.RGBA64)	func(*"".RGBA64, int, int, image/color.RGBA64)ftype.func(*"".RGBA64, int, int, image/color.RGBA64)þ€go.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image"  0xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"þxgo.string."func(*image.RGBA64, image.Rectangle) image.Image"pbfunc(*image.RGBA64, image.Rectangle) image.ImageþXtype.func(*"".RGBA64, "".Rectangle) "".Image  9»z¥30€ runtime.algarray@"runtime.gcbits.01P€go.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image"pjgo.weak.type.*func(*"".RGBA64, "".Rectangle) "".ImageðXtype.func(*"".RGBA64, "".Rectangle) "".ImageÀXtype.func(*"".RGBA64, "".Rectangle) "".Imageðtype.*"".RGBA64€"type."".Rectangletype."".ImageþÈgo.typelink.func(*image.RGBA64, image.Rectangle) image.Image	func(*"".RGBA64, "".Rectangle) "".ImageXtype.func(*"".RGBA64, "".Rectangle) "".Imageþ0go.string.hdr."RGBA64At"  (go.string."RGBA64At"þ(go.string."RGBA64At" RGBA64AtþVgo.string.hdr."func(int, int) color.RGBA64"  Ngo.string."func(int, int) color.RGBA64"þNgo.string."func(int, int) color.RGBA64"@8func(int, int) color.RGBA64þLtype.func(int, int) image/color.RGBA64  Bƻ30€ runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int) color.RGBA64"p^go.weak.type.*func(int, int) image/color.RGBA64ðLtype.func(int, int) image/color.RGBA64ÀLtype.func(int, int) image/color.RGBA64ðtype.int€type.int.type.image/color.RGBA64þ’go.typelink.func(int, int) color.RGBA64	func(int, int) image/color.RGBA64Ltype.func(int, int) image/color.RGBA64þ2go.string.hdr."SetRGBA64"  	*go.string."SetRGBA64"þ*go.string."SetRGBA64" SetRGBA64þXgo.string.hdr."func(int, int, color.RGBA64)"  Pgo.string."func(int, int, color.RGBA64)"þPgo.string."func(int, int, color.RGBA64)"@:func(int, int, color.RGBA64)þNtype.func(int, int, image/color.RGBA64)  $‹àw30€ runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int, color.RGBA64)"p`go.weak.type.*func(int, int, image/color.RGBA64)ðNtype.func(int, int, image/color.RGBA64)À Ntype.func(int, int, image/color.RGBA64)ðtype.int€type.int.type.image/color.RGBA64þ–go.typelink.func(int, int, color.RGBA64)	func(int, int, image/color.RGBA64)Ntype.func(int, int, image/color.RGBA64)þtype.*"".RGBA64ÀÀ‰ҧ6		h0  runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.RGBA64"p0go.weak.type.**"".RGBA64€type."".RGBA64`type.*"".RGBA64°àtype.*"".RGBA64à$go.string.hdr."At"€Jtype.func(int, int) image/color.Colorbtype.func(*"".RGBA64, int, int) image/color.Color "".(*RGBA64).At°"".(*RGBA64).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðDtype.func(*"".RGBA64) "".Rectangle€&"".(*RGBA64).Bounds&"".(*RGBA64).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐNtype.func(*"".RGBA64) image/color.Modelà."".(*RGBA64).ColorModelð."".(*RGBA64).ColorModel€,go.string.hdr."Opaque"  type.func() bool°4type.func(*"".RGBA64) boolÀ&"".(*RGBA64).OpaqueÐ&"".(*RGBA64).Opaqueà2go.string.hdr."PixOffset"€.type.func(int, int) intFtype.func(*"".RGBA64, int, int) int ,"".(*RGBA64).PixOffset°,"".(*RGBA64).PixOffsetÀ0go.string.hdr."RGBA64At"àLtype.func(int, int) image/color.RGBA64ðdtype.func(*"".RGBA64, int, int) image/color.RGBA64€*"".(*RGBA64).RGBA64At*"".(*RGBA64).RGBA64At &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðdtype.func(*"".RGBA64, int, int, image/color.Color)à "".(*RGBA64).Setð "".(*RGBA64).Set€2go.string.hdr."SetRGBA64" Ntype.func(int, int, image/color.RGBA64)°ftype.func(*"".RGBA64, int, int, image/color.RGBA64)À,"".(*RGBA64).SetRGBA64Ð,"".(*RGBA64).SetRGBA64à0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageXtype.func(*"".RGBA64, "".Rectangle) "".Image *"".(*RGBA64).SubImage°*"".(*RGBA64).SubImageþ6go.string.hdr."image.NRGBA"  .go.string."image.NRGBA"þ.go.string."image.NRGBA" image.NRGBAþ*go.string.hdr."NRGBA"  "go.string."NRGBA"þ"go.string."NRGBA"NRGBAþtype."".NRGBAðð@‘ü 0à runtime.algarray@"runtime.gcbits.01P6go.string.hdr."image.NRGBA"ptype.*"".NRGBA€°type."".NRGBA°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".NRGBA *go.string.hdr."NRGBA"°"go.importpath."".Àðtype."".NRGBAþ8go.string.hdr."*image.NRGBA"  0go.string."*image.NRGBA"þ0go.string."*image.NRGBA" *image.NRGBAþpgo.string.hdr."func(*image.NRGBA, int, int) color.Color"  (hgo.string."func(*image.NRGBA, int, int) color.Color"þhgo.string."func(*image.NRGBA, int, int) color.Color"`Rfunc(*image.NRGBA, int, int) color.Colorþ`type.func(*"".NRGBA, int, int) image/color.Color°°Ó÷ì30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.NRGBA, int, int) color.Color"prgo.weak.type.*func(*"".NRGBA, int, int) image/color.Colorð`type.func(*"".NRGBA, int, int) image/color.ColorÀ `type.func(*"".NRGBA, int, int) image/color.Colorðtype.*"".NRGBA€type.inttype.int ,type.image/color.ColorþÀgo.typelink.func(*image.NRGBA, int, int) color.Color	func(*"".NRGBA, int, int) image/color.Color`type.func(*"".NRGBA, int, int) image/color.Colorþdgo.string.hdr."func(*image.NRGBA) image.Rectangle"  "\go.string."func(*image.NRGBA) image.Rectangle"þ\go.string."func(*image.NRGBA) image.Rectangle"PFfunc(*image.NRGBA) image.RectangleþBtype.func(*"".NRGBA) "".Rectangle>÷La30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.NRGBA) image.Rectangle"pTgo.weak.type.*func(*"".NRGBA) "".RectangleðBtype.func(*"".NRGBA) "".RectangleÀ€Btype.func(*"".NRGBA) "".Rectangleðtype.*"".NRGBA€"type."".Rectangleþ–go.typelink.func(*image.NRGBA) image.Rectangle	func(*"".NRGBA) "".RectangleBtype.func(*"".NRGBA) "".Rectangleþ\go.string.hdr."func(*image.NRGBA) color.Model"  Tgo.string."func(*image.NRGBA) color.Model"þTgo.string."func(*image.NRGBA) color.Model"@>func(*image.NRGBA) color.ModelþLtype.func(*"".NRGBA) image/color.Model˜™×@30€ runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.NRGBA) color.Model"p^go.weak.type.*func(*"".NRGBA) image/color.ModelðLtype.func(*"".NRGBA) image/color.ModelÀ€Ltype.func(*"".NRGBA) image/color.Modelðtype.*"".NRGBA€,type.image/color.Modelþ˜go.typelink.func(*image.NRGBA) color.Model	func(*"".NRGBA) image/color.ModelLtype.func(*"".NRGBA) image/color.Modelþpgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"  (hgo.string."func(*image.NRGBA, int, int) color.NRGBA"þhgo.string."func(*image.NRGBA, int, int) color.NRGBA"`Rfunc(*image.NRGBA, int, int) color.NRGBAþ`type.func(*"".NRGBA, int, int) image/color.NRGBA°°¼\ƒÈ30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"prgo.weak.type.*func(*"".NRGBA, int, int) image/color.NRGBAð`type.func(*"".NRGBA, int, int) image/color.NRGBAÀ `type.func(*"".NRGBA, int, int) image/color.NRGBAðtype.*"".NRGBA€type.inttype.int ,type.image/color.NRGBAþÀgo.typelink.func(*image.NRGBA, int, int) color.NRGBA	func(*"".NRGBA, int, int) image/color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBAþNgo.string.hdr."func(*image.NRGBA) bool"  Fgo.string."func(*image.NRGBA) bool"þFgo.string."func(*image.NRGBA) bool"00func(*image.NRGBA) boolþ2type.func(*"".NRGBA) boolÚ30€ runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.NRGBA) bool"pDgo.weak.type.*func(*"".NRGBA) boolð2type.func(*"".NRGBA) boolÀ€2type.func(*"".NRGBA) boolðtype.*"".NRGBA€type.boolþpgo.typelink.func(*image.NRGBA) bool	func(*"".NRGBA) bool2type.func(*"".NRGBA) boolþ`go.string.hdr."func(*image.NRGBA, int, int) int"   Xgo.string."func(*image.NRGBA, int, int) int"þXgo.string."func(*image.NRGBA, int, int) int"PBfunc(*image.NRGBA, int, int) intþDtype.func(*"".NRGBA, int, int) int°°¿¹30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.NRGBA, int, int) int"pVgo.weak.type.*func(*"".NRGBA, int, int) intðDtype.func(*"".NRGBA, int, int) intÀ Dtype.func(*"".NRGBA, int, int) intðtype.*"".NRGBA€type.inttype.int type.intþ”go.typelink.func(*image.NRGBA, int, int) int	func(*"".NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) intþrgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"  )jgo.string."func(*image.NRGBA, int, int, color.Color)"þjgo.string."func(*image.NRGBA, int, int, color.Color)"`Tfunc(*image.NRGBA, int, int, color.Color)þbtype.func(*"".NRGBA, int, int, image/color.Color)°°ݻìû30€ runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"ptgo.weak.type.*func(*"".NRGBA, int, int, image/color.Color)ðbtype.func(*"".NRGBA, int, int, image/color.Color)À°btype.func(*"".NRGBA, int, int, image/color.Color)ðtype.*"".NRGBA€type.inttype.int ,type.image/color.ColorþÄgo.typelink.func(*image.NRGBA, int, int, color.Color)	func(*"".NRGBA, int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)þrgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"  )jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"þjgo.string."func(*image.NRGBA, int, int, color.NRGBA)"`Tfunc(*image.NRGBA, int, int, color.NRGBA)þbtype.func(*"".NRGBA, int, int, image/color.NRGBA)°°ÏƛÈ30€ runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"ptgo.weak.type.*func(*"".NRGBA, int, int, image/color.NRGBA)ðbtype.func(*"".NRGBA, int, int, image/color.NRGBA)À°btype.func(*"".NRGBA, int, int, image/color.NRGBA)ðtype.*"".NRGBA€type.inttype.int ,type.image/color.NRGBAþÄgo.typelink.func(*image.NRGBA, int, int, color.NRGBA)	func(*"".NRGBA, int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)þ~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"  /vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"þvgo.string."func(*image.NRGBA, image.Rectangle) image.Image"``func(*image.NRGBA, image.Rectangle) image.ImageþVtype.func(*"".NRGBA, "".Rectangle) "".Image  Drӂ30€ runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"phgo.weak.type.*func(*"".NRGBA, "".Rectangle) "".ImageðVtype.func(*"".NRGBA, "".Rectangle) "".ImageÀVtype.func(*"".NRGBA, "".Rectangle) "".Imageðtype.*"".NRGBA€"type."".Rectangletype."".ImageþÄgo.typelink.func(*image.NRGBA, image.Rectangle) image.Image	func(*"".NRGBA, "".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Imageþ.go.string.hdr."NRGBAAt"  &go.string."NRGBAAt"þ&go.string."NRGBAAt"NRGBAAtþTgo.string.hdr."func(int, int) color.NRGBA"  Lgo.string."func(int, int) color.NRGBA"þLgo.string."func(int, int) color.NRGBA"@6func(int, int) color.NRGBAþJtype.func(int, int) image/color.NRGBA  Ä	30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.NRGBA"p\go.weak.type.*func(int, int) image/color.NRGBAðJtype.func(int, int) image/color.NRGBAÀJtype.func(int, int) image/color.NRGBAðtype.int€type.int,type.image/color.NRGBAþŽgo.typelink.func(int, int) color.NRGBA	func(int, int) image/color.NRGBAJtype.func(int, int) image/color.NRGBAþ0go.string.hdr."SetNRGBA"  (go.string."SetNRGBA"þ(go.string."SetNRGBA" SetNRGBAþVgo.string.hdr."func(int, int, color.NRGBA)"  Ngo.string."func(int, int, color.NRGBA)"þNgo.string."func(int, int, color.NRGBA)"@8func(int, int, color.NRGBA)þLtype.func(int, int, image/color.NRGBA)   ‚30€ runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.NRGBA)"p^go.weak.type.*func(int, int, image/color.NRGBA)ðLtype.func(int, int, image/color.NRGBA)À Ltype.func(int, int, image/color.NRGBA)ðtype.int€type.int,type.image/color.NRGBAþ’go.typelink.func(int, int, color.NRGBA)	func(int, int, image/color.NRGBA)Ltype.func(int, int, image/color.NRGBA)þtype.*"".NRGBAÀÀ ö“*6		h0  runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.NRGBA"p.go.weak.type.**"".NRGBA€type."".NRGBA`type.*"".NRGBA°àtype.*"".NRGBAà$go.string.hdr."At"€Jtype.func(int, int) image/color.Color`type.func(*"".NRGBA, int, int) image/color.Color "".(*NRGBA).At°"".(*NRGBA).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðBtype.func(*"".NRGBA) "".Rectangle€$"".(*NRGBA).Bounds$"".(*NRGBA).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐLtype.func(*"".NRGBA) image/color.Modelà,"".(*NRGBA).ColorModelð,"".(*NRGBA).ColorModel€.go.string.hdr."NRGBAAt" Jtype.func(int, int) image/color.NRGBA°`type.func(*"".NRGBA, int, int) image/color.NRGBAÀ&"".(*NRGBA).NRGBAAtÐ&"".(*NRGBA).NRGBAAtà,go.string.hdr."Opaque"€ type.func() bool2type.func(*"".NRGBA) bool $"".(*NRGBA).Opaque°$"".(*NRGBA).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðDtype.func(*"".NRGBA, int, int) int€*"".(*NRGBA).PixOffset*"".(*NRGBA).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðbtype.func(*"".NRGBA, int, int, image/color.Color)à"".(*NRGBA).Setð"".(*NRGBA).Set€0go.string.hdr."SetNRGBA" Ltype.func(int, int, image/color.NRGBA)°btype.func(*"".NRGBA, int, int, image/color.NRGBA)À("".(*NRGBA).SetNRGBAÐ("".(*NRGBA).SetNRGBAà0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Image ("".(*NRGBA).SubImage°("".(*NRGBA).SubImageþ:go.string.hdr."image.NRGBA64"  
2go.string."image.NRGBA64"þ2go.string."image.NRGBA64" image.NRGBA64þ.go.string.hdr."NRGBA64"  &go.string."NRGBA64"þ&go.string."NRGBA64"NRGBA64þtype."".NRGBA64ðð@Ûr»ò 0à runtime.algarray@"runtime.gcbits.01P:go.string.hdr."image.NRGBA64"p type.*"".NRGBA64€°type."".NRGBA64°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".NRGBA64 .go.string.hdr."NRGBA64"°"go.importpath."".Àðtype."".NRGBA64þ<go.string.hdr."*image.NRGBA64"  4go.string."*image.NRGBA64"þ4go.string."*image.NRGBA64" *image.NRGBA64þtgo.string.hdr."func(*image.NRGBA64, int, int) color.Color"  *lgo.string."func(*image.NRGBA64, int, int) color.Color"þlgo.string."func(*image.NRGBA64, int, int) color.Color"`Vfunc(*image.NRGBA64, int, int) color.Colorþdtype.func(*"".NRGBA64, int, int) image/color.Color°°;m¬&30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.NRGBA64, int, int) color.Color"pvgo.weak.type.*func(*"".NRGBA64, int, int) image/color.Colorðdtype.func(*"".NRGBA64, int, int) image/color.ColorÀ dtype.func(*"".NRGBA64, int, int) image/color.Colorð type.*"".NRGBA64€type.inttype.int ,type.image/color.ColorþÈgo.typelink.func(*image.NRGBA64, int, int) color.Color	func(*"".NRGBA64, int, int) image/color.Colordtype.func(*"".NRGBA64, int, int) image/color.Colorþhgo.string.hdr."func(*image.NRGBA64) image.Rectangle"  $`go.string."func(*image.NRGBA64) image.Rectangle"þ`go.string."func(*image.NRGBA64) image.Rectangle"PJfunc(*image.NRGBA64) image.RectangleþFtype.func(*"".NRGBA64) "".RectangleÉa30€ runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.NRGBA64) image.Rectangle"pXgo.weak.type.*func(*"".NRGBA64) "".RectangleðFtype.func(*"".NRGBA64) "".RectangleÀ€Ftype.func(*"".NRGBA64) "".Rectangleð type.*"".NRGBA64€"type."".Rectangleþžgo.typelink.func(*image.NRGBA64) image.Rectangle	func(*"".NRGBA64) "".RectangleFtype.func(*"".NRGBA64) "".Rectangleþ`go.string.hdr."func(*image.NRGBA64) color.Model"   Xgo.string."func(*image.NRGBA64) color.Model"þXgo.string."func(*image.NRGBA64) color.Model"PBfunc(*image.NRGBA64) color.ModelþPtype.func(*"".NRGBA64) image/color.ModelÃòlz30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.NRGBA64) color.Model"pbgo.weak.type.*func(*"".NRGBA64) image/color.ModelðPtype.func(*"".NRGBA64) image/color.ModelÀ€Ptype.func(*"".NRGBA64) image/color.Modelð type.*"".NRGBA64€,type.image/color.Modelþ go.typelink.func(*image.NRGBA64) color.Model	func(*"".NRGBA64) image/color.ModelPtype.func(*"".NRGBA64) image/color.Modelþxgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64"  ,pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"þpgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"`Zfunc(*image.NRGBA64, int, int) color.NRGBA64þhtype.func(*"".NRGBA64, int, int) image/color.NRGBA64°°RbK30€ runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64"pzgo.weak.type.*func(*"".NRGBA64, int, int) image/color.NRGBA64ðhtype.func(*"".NRGBA64, int, int) image/color.NRGBA64À htype.func(*"".NRGBA64, int, int) image/color.NRGBA64ð type.*"".NRGBA64€type.inttype.int 0type.image/color.NRGBA64þÐgo.typelink.func(*image.NRGBA64, int, int) color.NRGBA64	func(*"".NRGBA64, int, int) image/color.NRGBA64htype.func(*"".NRGBA64, int, int) image/color.NRGBA64þRgo.string.hdr."func(*image.NRGBA64) bool"  Jgo.string."func(*image.NRGBA64) bool"þJgo.string."func(*image.NRGBA64) bool"@4func(*image.NRGBA64) boolþ6type.func(*"".NRGBA64) bool\U¸30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.NRGBA64) bool"pHgo.weak.type.*func(*"".NRGBA64) boolð6type.func(*"".NRGBA64) boolÀ€6type.func(*"".NRGBA64) boolð type.*"".NRGBA64€type.boolþxgo.typelink.func(*image.NRGBA64) bool	func(*"".NRGBA64) bool6type.func(*"".NRGBA64) boolþdgo.string.hdr."func(*image.NRGBA64, int, int) int"  "\go.string."func(*image.NRGBA64, int, int) int"þ\go.string."func(*image.NRGBA64, int, int) int"PFfunc(*image.NRGBA64, int, int) intþHtype.func(*"".NRGBA64, int, int) int°°³rY30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.NRGBA64, int, int) int"pZgo.weak.type.*func(*"".NRGBA64, int, int) intðHtype.func(*"".NRGBA64, int, int) intÀ Htype.func(*"".NRGBA64, int, int) intð type.*"".NRGBA64€type.inttype.int type.intþœgo.typelink.func(*image.NRGBA64, int, int) int	func(*"".NRGBA64, int, int) intHtype.func(*"".NRGBA64, int, int) intþvgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)"  +ngo.string."func(*image.NRGBA64, int, int, color.Color)"þngo.string."func(*image.NRGBA64, int, int, color.Color)"`Xfunc(*image.NRGBA64, int, int, color.Color)þftype.func(*"".NRGBA64, int, int, image/color.Color)°°…Ém30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)"pxgo.weak.type.*func(*"".NRGBA64, int, int, image/color.Color)ðftype.func(*"".NRGBA64, int, int, image/color.Color)À°ftype.func(*"".NRGBA64, int, int, image/color.Color)ð type.*"".NRGBA64€type.inttype.int ,type.image/color.ColorþÌgo.typelink.func(*image.NRGBA64, int, int, color.Color)	func(*"".NRGBA64, int, int, image/color.Color)ftype.func(*"".NRGBA64, int, int, image/color.Color)þzgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)"  -rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"þrgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"`\func(*image.NRGBA64, int, int, color.NRGBA64)þjtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)°°ëFL|30€ runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)"p|go.weak.type.*func(*"".NRGBA64, int, int, image/color.NRGBA64)ðjtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)À°jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)ð type.*"".NRGBA64€type.inttype.int 0type.image/color.NRGBA64þÔgo.typelink.func(*image.NRGBA64, int, int, color.NRGBA64)	func(*"".NRGBA64, int, int, image/color.NRGBA64)jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)þ‚go.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image"  1zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"þzgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"pdfunc(*image.NRGBA64, image.Rectangle) image.ImageþZtype.func(*"".NRGBA64, "".Rectangle) "".Image  hÀî¦30€ runtime.algarray@"runtime.gcbits.01P‚go.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image"plgo.weak.type.*func(*"".NRGBA64, "".Rectangle) "".ImageðZtype.func(*"".NRGBA64, "".Rectangle) "".ImageÀZtype.func(*"".NRGBA64, "".Rectangle) "".Imageð type.*"".NRGBA64€"type."".Rectangletype."".ImageþÌgo.typelink.func(*image.NRGBA64, image.Rectangle) image.Image	func(*"".NRGBA64, "".Rectangle) "".ImageZtype.func(*"".NRGBA64, "".Rectangle) "".Imageþ2go.string.hdr."NRGBA64At"  	*go.string."NRGBA64At"þ*go.string."NRGBA64At" NRGBA64AtþXgo.string.hdr."func(int, int) color.NRGBA64"  Pgo.string."func(int, int) color.NRGBA64"þPgo.string."func(int, int) color.NRGBA64"@:func(int, int) color.NRGBA64þNtype.func(int, int) image/color.NRGBA64  |¨c030€ runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int) color.NRGBA64"p`go.weak.type.*func(int, int) image/color.NRGBA64ðNtype.func(int, int) image/color.NRGBA64ÀNtype.func(int, int) image/color.NRGBA64ðtype.int€type.int0type.image/color.NRGBA64þ–go.typelink.func(int, int) color.NRGBA64	func(int, int) image/color.NRGBA64Ntype.func(int, int) image/color.NRGBA64þ4go.string.hdr."SetNRGBA64"  
,go.string."SetNRGBA64"þ,go.string."SetNRGBA64" SetNRGBA64þZgo.string.hdr."func(int, int, color.NRGBA64)"  Rgo.string."func(int, int, color.NRGBA64)"þRgo.string."func(int, int, color.NRGBA64)"@<func(int, int, color.NRGBA64)þPtype.func(int, int, image/color.NRGBA64)  ·M;s30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(int, int, color.NRGBA64)"pbgo.weak.type.*func(int, int, image/color.NRGBA64)ðPtype.func(int, int, image/color.NRGBA64)À Ptype.func(int, int, image/color.NRGBA64)ðtype.int€type.int0type.image/color.NRGBA64þšgo.typelink.func(int, int, color.NRGBA64)	func(int, int, image/color.NRGBA64)Ptype.func(int, int, image/color.NRGBA64)þ type.*"".NRGBA64ÀÀôOR6		h0  runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.NRGBA64"p2go.weak.type.**"".NRGBA64€type."".NRGBA64` type.*"".NRGBA64°à type.*"".NRGBA64à$go.string.hdr."At"€Jtype.func(int, int) image/color.Colordtype.func(*"".NRGBA64, int, int) image/color.Color  "".(*NRGBA64).At° "".(*NRGBA64).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðFtype.func(*"".NRGBA64) "".Rectangle€("".(*NRGBA64).Bounds("".(*NRGBA64).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐPtype.func(*"".NRGBA64) image/color.Modelà0"".(*NRGBA64).ColorModelð0"".(*NRGBA64).ColorModel€2go.string.hdr."NRGBA64At" Ntype.func(int, int) image/color.NRGBA64°htype.func(*"".NRGBA64, int, int) image/color.NRGBA64À."".(*NRGBA64).NRGBA64AtÐ."".(*NRGBA64).NRGBA64Atà,go.string.hdr."Opaque"€ type.func() bool6type.func(*"".NRGBA64) bool ("".(*NRGBA64).Opaque°("".(*NRGBA64).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðHtype.func(*"".NRGBA64, int, int) int€."".(*NRGBA64).PixOffset."".(*NRGBA64).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðftype.func(*"".NRGBA64, int, int, image/color.Color)à""".(*NRGBA64).Setð""".(*NRGBA64).Set€4go.string.hdr."SetNRGBA64" Ptype.func(int, int, image/color.NRGBA64)°jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)À0"".(*NRGBA64).SetNRGBA64Ð0"".(*NRGBA64).SetNRGBA64à0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageZtype.func(*"".NRGBA64, "".Rectangle) "".Image ,"".(*NRGBA64).SubImage°,"".(*NRGBA64).SubImageþ6go.string.hdr."image.Alpha"  .go.string."image.Alpha"þ.go.string."image.Alpha" image.Alphaþ*go.string.hdr."Alpha"  "go.string."Alpha"þ"go.string."Alpha"Alphaþtype."".Alphaðð@×,=Ò 0à runtime.algarray@"runtime.gcbits.01P6go.string.hdr."image.Alpha"ptype.*"".Alpha€°type."".Alpha°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".Alpha *go.string.hdr."Alpha"°"go.importpath."".Àðtype."".Alphaþ8go.string.hdr."*image.Alpha"  0go.string."*image.Alpha"þ0go.string."*image.Alpha" *image.Alphaþpgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"  (hgo.string."func(*image.Alpha, int, int) color.Alpha"þhgo.string."func(*image.Alpha, int, int) color.Alpha"`Rfunc(*image.Alpha, int, int) color.Alphaþ`type.func(*"".Alpha, int, int) image/color.Alpha°°Š>ˆ30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"prgo.weak.type.*func(*"".Alpha, int, int) image/color.Alphað`type.func(*"".Alpha, int, int) image/color.AlphaÀ `type.func(*"".Alpha, int, int) image/color.Alphaðtype.*"".Alpha€type.inttype.int ,type.image/color.AlphaþÀgo.typelink.func(*image.Alpha, int, int) color.Alpha	func(*"".Alpha, int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alphaþpgo.string.hdr."func(*image.Alpha, int, int) color.Color"  (hgo.string."func(*image.Alpha, int, int) color.Color"þhgo.string."func(*image.Alpha, int, int) color.Color"`Rfunc(*image.Alpha, int, int) color.Colorþ`type.func(*"".Alpha, int, int) image/color.Color°°™dfú30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Alpha, int, int) color.Color"prgo.weak.type.*func(*"".Alpha, int, int) image/color.Colorð`type.func(*"".Alpha, int, int) image/color.ColorÀ `type.func(*"".Alpha, int, int) image/color.Colorðtype.*"".Alpha€type.inttype.int ,type.image/color.ColorþÀgo.typelink.func(*image.Alpha, int, int) color.Color	func(*"".Alpha, int, int) image/color.Color`type.func(*"".Alpha, int, int) image/color.Colorþdgo.string.hdr."func(*image.Alpha) image.Rectangle"  "\go.string."func(*image.Alpha) image.Rectangle"þ\go.string."func(*image.Alpha) image.Rectangle"PFfunc(*image.Alpha) image.RectangleþBtype.func(*"".Alpha) "".Rectangleӓôt30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Alpha) image.Rectangle"pTgo.weak.type.*func(*"".Alpha) "".RectangleðBtype.func(*"".Alpha) "".RectangleÀ€Btype.func(*"".Alpha) "".Rectangleðtype.*"".Alpha€"type."".Rectangleþ–go.typelink.func(*image.Alpha) image.Rectangle	func(*"".Alpha) "".RectangleBtype.func(*"".Alpha) "".Rectangleþ\go.string.hdr."func(*image.Alpha) color.Model"  Tgo.string."func(*image.Alpha) color.Model"þTgo.string."func(*image.Alpha) color.Model"@>func(*image.Alpha) color.ModelþLtype.func(*"".Alpha) image/color.Modelë‹çY30€ runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.Alpha) color.Model"p^go.weak.type.*func(*"".Alpha) image/color.ModelðLtype.func(*"".Alpha) image/color.ModelÀ€Ltype.func(*"".Alpha) image/color.Modelðtype.*"".Alpha€,type.image/color.Modelþ˜go.typelink.func(*image.Alpha) color.Model	func(*"".Alpha) image/color.ModelLtype.func(*"".Alpha) image/color.ModelþNgo.string.hdr."func(*image.Alpha) bool"  Fgo.string."func(*image.Alpha) bool"þFgo.string."func(*image.Alpha) bool"00func(*image.Alpha) boolþ2type.func(*"".Alpha) boolÂgPO30€ runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.Alpha) bool"pDgo.weak.type.*func(*"".Alpha) boolð2type.func(*"".Alpha) boolÀ€2type.func(*"".Alpha) boolðtype.*"".Alpha€type.boolþpgo.typelink.func(*image.Alpha) bool	func(*"".Alpha) bool2type.func(*"".Alpha) boolþ`go.string.hdr."func(*image.Alpha, int, int) int"   Xgo.string."func(*image.Alpha, int, int) int"þXgo.string."func(*image.Alpha, int, int) int"PBfunc(*image.Alpha, int, int) intþDtype.func(*"".Alpha, int, int) int°°—½ìw30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Alpha, int, int) int"pVgo.weak.type.*func(*"".Alpha, int, int) intðDtype.func(*"".Alpha, int, int) intÀ Dtype.func(*"".Alpha, int, int) intðtype.*"".Alpha€type.inttype.int type.intþ”go.typelink.func(*image.Alpha, int, int) int	func(*"".Alpha, int, int) intDtype.func(*"".Alpha, int, int) intþrgo.string.hdr."func(*image.Alpha, int, int, color.Color)"  )jgo.string."func(*image.Alpha, int, int, color.Color)"þjgo.string."func(*image.Alpha, int, int, color.Color)"`Tfunc(*image.Alpha, int, int, color.Color)þbtype.func(*"".Alpha, int, int, image/color.Color)°°¾ª}30€ runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Alpha, int, int, color.Color)"ptgo.weak.type.*func(*"".Alpha, int, int, image/color.Color)ðbtype.func(*"".Alpha, int, int, image/color.Color)À°btype.func(*"".Alpha, int, int, image/color.Color)ðtype.*"".Alpha€type.inttype.int ,type.image/color.ColorþÄgo.typelink.func(*image.Alpha, int, int, color.Color)	func(*"".Alpha, int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)þrgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"  )jgo.string."func(*image.Alpha, int, int, color.Alpha)"þjgo.string."func(*image.Alpha, int, int, color.Alpha)"`Tfunc(*image.Alpha, int, int, color.Alpha)þbtype.func(*"".Alpha, int, int, image/color.Alpha)°°¿L130€ runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"ptgo.weak.type.*func(*"".Alpha, int, int, image/color.Alpha)ðbtype.func(*"".Alpha, int, int, image/color.Alpha)À°btype.func(*"".Alpha, int, int, image/color.Alpha)ðtype.*"".Alpha€type.inttype.int ,type.image/color.AlphaþÄgo.typelink.func(*image.Alpha, int, int, color.Alpha)	func(*"".Alpha, int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)þ~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"  /vgo.string."func(*image.Alpha, image.Rectangle) image.Image"þvgo.string."func(*image.Alpha, image.Rectangle) image.Image"``func(*image.Alpha, image.Rectangle) image.ImageþVtype.func(*"".Alpha, "".Rectangle) "".Image  ۀŸ30€ runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"phgo.weak.type.*func(*"".Alpha, "".Rectangle) "".ImageðVtype.func(*"".Alpha, "".Rectangle) "".ImageÀVtype.func(*"".Alpha, "".Rectangle) "".Imageðtype.*"".Alpha€"type."".Rectangletype."".ImageþÄgo.typelink.func(*image.Alpha, image.Rectangle) image.Image	func(*"".Alpha, "".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Imageþ.go.string.hdr."AlphaAt"  &go.string."AlphaAt"þ&go.string."AlphaAt"AlphaAtþTgo.string.hdr."func(int, int) color.Alpha"  Lgo.string."func(int, int) color.Alpha"þLgo.string."func(int, int) color.Alpha"@6func(int, int) color.AlphaþJtype.func(int, int) image/color.Alpha  t=¼ü30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.Alpha"p\go.weak.type.*func(int, int) image/color.AlphaðJtype.func(int, int) image/color.AlphaÀJtype.func(int, int) image/color.Alphaðtype.int€type.int,type.image/color.AlphaþŽgo.typelink.func(int, int) color.Alpha	func(int, int) image/color.AlphaJtype.func(int, int) image/color.Alphaþ0go.string.hdr."SetAlpha"  (go.string."SetAlpha"þ(go.string."SetAlpha" SetAlphaþVgo.string.hdr."func(int, int, color.Alpha)"  Ngo.string."func(int, int, color.Alpha)"þNgo.string."func(int, int, color.Alpha)"@8func(int, int, color.Alpha)þLtype.func(int, int, image/color.Alpha)  5·CP30€ runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.Alpha)"p^go.weak.type.*func(int, int, image/color.Alpha)ðLtype.func(int, int, image/color.Alpha)À Ltype.func(int, int, image/color.Alpha)ðtype.int€type.int,type.image/color.Alphaþ’go.typelink.func(int, int, color.Alpha)	func(int, int, image/color.Alpha)Ltype.func(int, int, image/color.Alpha)þtype.*"".AlphaÀÀÚܸ6		h0  runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Alpha"p.go.weak.type.**"".Alpha€type."".Alpha`type.*"".Alpha°àtype.*"".Alphaà.go.string.hdr."AlphaAt"€Jtype.func(int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alpha &"".(*Alpha).AlphaAt°&"".(*Alpha).AlphaAtÀ$go.string.hdr."At"àJtype.func(int, int) image/color.Colorð`type.func(*"".Alpha, int, int) image/color.Color€"".(*Alpha).At"".(*Alpha).At ,go.string.hdr."Bounds"À0type.func() "".RectangleÐBtype.func(*"".Alpha) "".Rectangleà$"".(*Alpha).Boundsð$"".(*Alpha).Bounds€4go.string.hdr."ColorModel" :type.func() image/color.Model°Ltype.func(*"".Alpha) image/color.ModelÀ,"".(*Alpha).ColorModelÐ,"".(*Alpha).ColorModelà,go.string.hdr."Opaque"€ type.func() bool2type.func(*"".Alpha) bool $"".(*Alpha).Opaque°$"".(*Alpha).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðDtype.func(*"".Alpha, int, int) int€*"".(*Alpha).PixOffset*"".(*Alpha).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðbtype.func(*"".Alpha, int, int, image/color.Color)à"".(*Alpha).Setð"".(*Alpha).Set€0go.string.hdr."SetAlpha" Ltype.func(int, int, image/color.Alpha)°btype.func(*"".Alpha, int, int, image/color.Alpha)À("".(*Alpha).SetAlphaÐ("".(*Alpha).SetAlphaà0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Image ("".(*Alpha).SubImage°("".(*Alpha).SubImageþ:go.string.hdr."image.Alpha16"  
2go.string."image.Alpha16"þ2go.string."image.Alpha16" image.Alpha16þ.go.string.hdr."Alpha16"  &go.string."Alpha16"þ&go.string."Alpha16"Alpha16þtype."".Alpha16ðð@àD·{ 0à runtime.algarray@"runtime.gcbits.01P:go.string.hdr."image.Alpha16"p type.*"".Alpha16€°type."".Alpha16°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".Alpha16 .go.string.hdr."Alpha16"°"go.importpath."".Àðtype."".Alpha16þ<go.string.hdr."*image.Alpha16"  4go.string."*image.Alpha16"þ4go.string."*image.Alpha16" *image.Alpha16þxgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16"  ,pgo.string."func(*image.Alpha16, int, int) color.Alpha16"þpgo.string."func(*image.Alpha16, int, int) color.Alpha16"`Zfunc(*image.Alpha16, int, int) color.Alpha16þhtype.func(*"".Alpha16, int, int) image/color.Alpha16°°i¾30€ runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16"pzgo.weak.type.*func(*"".Alpha16, int, int) image/color.Alpha16ðhtype.func(*"".Alpha16, int, int) image/color.Alpha16À htype.func(*"".Alpha16, int, int) image/color.Alpha16ð type.*"".Alpha16€type.inttype.int 0type.image/color.Alpha16þÐgo.typelink.func(*image.Alpha16, int, int) color.Alpha16	func(*"".Alpha16, int, int) image/color.Alpha16htype.func(*"".Alpha16, int, int) image/color.Alpha16þtgo.string.hdr."func(*image.Alpha16, int, int) color.Color"  *lgo.string."func(*image.Alpha16, int, int) color.Color"þlgo.string."func(*image.Alpha16, int, int) color.Color"`Vfunc(*image.Alpha16, int, int) color.Colorþdtype.func(*"".Alpha16, int, int) image/color.Color°°¿[€­30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Alpha16, int, int) color.Color"pvgo.weak.type.*func(*"".Alpha16, int, int) image/color.Colorðdtype.func(*"".Alpha16, int, int) image/color.ColorÀ dtype.func(*"".Alpha16, int, int) image/color.Colorð type.*"".Alpha16€type.inttype.int ,type.image/color.ColorþÈgo.typelink.func(*image.Alpha16, int, int) color.Color	func(*"".Alpha16, int, int) image/color.Colordtype.func(*"".Alpha16, int, int) image/color.Colorþhgo.string.hdr."func(*image.Alpha16) image.Rectangle"  $`go.string."func(*image.Alpha16) image.Rectangle"þ`go.string."func(*image.Alpha16) image.Rectangle"PJfunc(*image.Alpha16) image.RectangleþFtype.func(*"".Alpha16) "".Rectangle„„^;30€ runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Alpha16) image.Rectangle"pXgo.weak.type.*func(*"".Alpha16) "".RectangleðFtype.func(*"".Alpha16) "".RectangleÀ€Ftype.func(*"".Alpha16) "".Rectangleð type.*"".Alpha16€"type."".Rectangleþžgo.typelink.func(*image.Alpha16) image.Rectangle	func(*"".Alpha16) "".RectangleFtype.func(*"".Alpha16) "".Rectangleþ`go.string.hdr."func(*image.Alpha16) color.Model"   Xgo.string."func(*image.Alpha16) color.Model"þXgo.string."func(*image.Alpha16) color.Model"PBfunc(*image.Alpha16) color.ModelþPtype.func(*"".Alpha16) image/color.Model#*ëN30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Alpha16) color.Model"pbgo.weak.type.*func(*"".Alpha16) image/color.ModelðPtype.func(*"".Alpha16) image/color.ModelÀ€Ptype.func(*"".Alpha16) image/color.Modelð type.*"".Alpha16€,type.image/color.Modelþ go.typelink.func(*image.Alpha16) color.Model	func(*"".Alpha16) image/color.ModelPtype.func(*"".Alpha16) image/color.ModelþRgo.string.hdr."func(*image.Alpha16) bool"  Jgo.string."func(*image.Alpha16) bool"þJgo.string."func(*image.Alpha16) bool"@4func(*image.Alpha16) boolþ6type.func(*"".Alpha16) bool‘bcÁ30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Alpha16) bool"pHgo.weak.type.*func(*"".Alpha16) boolð6type.func(*"".Alpha16) boolÀ€6type.func(*"".Alpha16) boolð type.*"".Alpha16€type.boolþxgo.typelink.func(*image.Alpha16) bool	func(*"".Alpha16) bool6type.func(*"".Alpha16) boolþdgo.string.hdr."func(*image.Alpha16, int, int) int"  "\go.string."func(*image.Alpha16, int, int) int"þ\go.string."func(*image.Alpha16, int, int) int"PFfunc(*image.Alpha16, int, int) intþHtype.func(*"".Alpha16, int, int) int°°¶žK30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Alpha16, int, int) int"pZgo.weak.type.*func(*"".Alpha16, int, int) intðHtype.func(*"".Alpha16, int, int) intÀ Htype.func(*"".Alpha16, int, int) intð type.*"".Alpha16€type.inttype.int type.intþœgo.typelink.func(*image.Alpha16, int, int) int	func(*"".Alpha16, int, int) intHtype.func(*"".Alpha16, int, int) intþvgo.string.hdr."func(*image.Alpha16, int, int, color.Color)"  +ngo.string."func(*image.Alpha16, int, int, color.Color)"þngo.string."func(*image.Alpha16, int, int, color.Color)"`Xfunc(*image.Alpha16, int, int, color.Color)þftype.func(*"".Alpha16, int, int, image/color.Color)°°ް¢h30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Alpha16, int, int, color.Color)"pxgo.weak.type.*func(*"".Alpha16, int, int, image/color.Color)ðftype.func(*"".Alpha16, int, int, image/color.Color)À°ftype.func(*"".Alpha16, int, int, image/color.Color)ð type.*"".Alpha16€type.inttype.int ,type.image/color.ColorþÌgo.typelink.func(*image.Alpha16, int, int, color.Color)	func(*"".Alpha16, int, int, image/color.Color)ftype.func(*"".Alpha16, int, int, image/color.Color)þzgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)"  -rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"þrgo.string."func(*image.Alpha16, int, int, color.Alpha16)"`\func(*image.Alpha16, int, int, color.Alpha16)þjtype.func(*"".Alpha16, int, int, image/color.Alpha16)°° &œõ30€ runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)"p|go.weak.type.*func(*"".Alpha16, int, int, image/color.Alpha16)ðjtype.func(*"".Alpha16, int, int, image/color.Alpha16)À°jtype.func(*"".Alpha16, int, int, image/color.Alpha16)ð type.*"".Alpha16€type.inttype.int 0type.image/color.Alpha16þÔgo.typelink.func(*image.Alpha16, int, int, color.Alpha16)	func(*"".Alpha16, int, int, image/color.Alpha16)jtype.func(*"".Alpha16, int, int, image/color.Alpha16)þ‚go.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image"  1zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"þzgo.string."func(*image.Alpha16, image.Rectangle) image.Image"pdfunc(*image.Alpha16, image.Rectangle) image.ImageþZtype.func(*"".Alpha16, "".Rectangle) "".Image  i—830€ runtime.algarray@"runtime.gcbits.01P‚go.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image"plgo.weak.type.*func(*"".Alpha16, "".Rectangle) "".ImageðZtype.func(*"".Alpha16, "".Rectangle) "".ImageÀZtype.func(*"".Alpha16, "".Rectangle) "".Imageð type.*"".Alpha16€"type."".Rectangletype."".ImageþÌgo.typelink.func(*image.Alpha16, image.Rectangle) image.Image	func(*"".Alpha16, "".Rectangle) "".ImageZtype.func(*"".Alpha16, "".Rectangle) "".Imageþ2go.string.hdr."Alpha16At"  	*go.string."Alpha16At"þ*go.string."Alpha16At" Alpha16AtþXgo.string.hdr."func(int, int) color.Alpha16"  Pgo.string."func(int, int) color.Alpha16"þPgo.string."func(int, int) color.Alpha16"@:func(int, int) color.Alpha16þNtype.func(int, int) image/color.Alpha16  AŒd!30€ runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int) color.Alpha16"p`go.weak.type.*func(int, int) image/color.Alpha16ðNtype.func(int, int) image/color.Alpha16ÀNtype.func(int, int) image/color.Alpha16ðtype.int€type.int0type.image/color.Alpha16þ–go.typelink.func(int, int) color.Alpha16	func(int, int) image/color.Alpha16Ntype.func(int, int) image/color.Alpha16þ4go.string.hdr."SetAlpha16"  
,go.string."SetAlpha16"þ,go.string."SetAlpha16" SetAlpha16þZgo.string.hdr."func(int, int, color.Alpha16)"  Rgo.string."func(int, int, color.Alpha16)"þRgo.string."func(int, int, color.Alpha16)"@<func(int, int, color.Alpha16)þPtype.func(int, int, image/color.Alpha16)  ø­Z|30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(int, int, color.Alpha16)"pbgo.weak.type.*func(int, int, image/color.Alpha16)ðPtype.func(int, int, image/color.Alpha16)À Ptype.func(int, int, image/color.Alpha16)ðtype.int€type.int0type.image/color.Alpha16þšgo.typelink.func(int, int, color.Alpha16)	func(int, int, image/color.Alpha16)Ptype.func(int, int, image/color.Alpha16)þ type.*"".Alpha16ÀÀ6L”æ6		h0  runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.Alpha16"p2go.weak.type.**"".Alpha16€type."".Alpha16` type.*"".Alpha16°à type.*"".Alpha16à2go.string.hdr."Alpha16At"€Ntype.func(int, int) image/color.Alpha16htype.func(*"".Alpha16, int, int) image/color.Alpha16 ."".(*Alpha16).Alpha16At°."".(*Alpha16).Alpha16AtÀ$go.string.hdr."At"àJtype.func(int, int) image/color.Colorðdtype.func(*"".Alpha16, int, int) image/color.Color€ "".(*Alpha16).At "".(*Alpha16).At ,go.string.hdr."Bounds"À0type.func() "".RectangleÐFtype.func(*"".Alpha16) "".Rectangleà("".(*Alpha16).Boundsð("".(*Alpha16).Bounds€4go.string.hdr."ColorModel" :type.func() image/color.Model°Ptype.func(*"".Alpha16) image/color.ModelÀ0"".(*Alpha16).ColorModelÐ0"".(*Alpha16).ColorModelà,go.string.hdr."Opaque"€ type.func() bool6type.func(*"".Alpha16) bool ("".(*Alpha16).Opaque°("".(*Alpha16).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðHtype.func(*"".Alpha16, int, int) int€."".(*Alpha16).PixOffset."".(*Alpha16).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðftype.func(*"".Alpha16, int, int, image/color.Color)à""".(*Alpha16).Setð""".(*Alpha16).Set€4go.string.hdr."SetAlpha16" Ptype.func(int, int, image/color.Alpha16)°jtype.func(*"".Alpha16, int, int, image/color.Alpha16)À0"".(*Alpha16).SetAlpha16Ð0"".(*Alpha16).SetAlpha16à0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageZtype.func(*"".Alpha16, "".Rectangle) "".Image ,"".(*Alpha16).SubImage°,"".(*Alpha16).SubImageþ4go.string.hdr."image.Gray"  
,go.string."image.Gray"þ,go.string."image.Gray" image.Grayþ(go.string.hdr."Gray"   go.string."Gray"þ go.string."Gray"
Grayþtype."".Grayðð@a>ä1 0à runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.Gray"ptype.*"".Gray€°type."".Gray°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".Gray (go.string.hdr."Gray"°"go.importpath."".Àðtype."".Grayþ6go.string.hdr."*image.Gray"  .go.string."*image.Gray"þ.go.string."*image.Gray" *image.Grayþngo.string.hdr."func(*image.Gray, int, int) color.Color"  'fgo.string."func(*image.Gray, int, int) color.Color"þfgo.string."func(*image.Gray, int, int) color.Color"PPfunc(*image.Gray, int, int) color.Colorþ^type.func(*"".Gray, int, int) image/color.Color°°9kK30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.Gray, int, int) color.Color"ppgo.weak.type.*func(*"".Gray, int, int) image/color.Colorð^type.func(*"".Gray, int, int) image/color.ColorÀ ^type.func(*"".Gray, int, int) image/color.Colorðtype.*"".Gray€type.inttype.int ,type.image/color.Colorþ¼go.typelink.func(*image.Gray, int, int) color.Color	func(*"".Gray, int, int) image/color.Color^type.func(*"".Gray, int, int) image/color.Colorþbgo.string.hdr."func(*image.Gray) image.Rectangle"  !Zgo.string."func(*image.Gray) image.Rectangle"þZgo.string."func(*image.Gray) image.Rectangle"PDfunc(*image.Gray) image.Rectangleþ@type.func(*"".Gray) "".Rectangle°¸e30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Gray) image.Rectangle"pRgo.weak.type.*func(*"".Gray) "".Rectangleð@type.func(*"".Gray) "".RectangleÀ€@type.func(*"".Gray) "".Rectangleðtype.*"".Gray€"type."".Rectangleþ’go.typelink.func(*image.Gray) image.Rectangle	func(*"".Gray) "".Rectangle@type.func(*"".Gray) "".RectangleþZgo.string.hdr."func(*image.Gray) color.Model"  Rgo.string."func(*image.Gray) color.Model"þRgo.string."func(*image.Gray) color.Model"@<func(*image.Gray) color.ModelþJtype.func(*"".Gray) image/color.Modelý·áò30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.Gray) color.Model"p\go.weak.type.*func(*"".Gray) image/color.ModelðJtype.func(*"".Gray) image/color.ModelÀ€Jtype.func(*"".Gray) image/color.Modelðtype.*"".Gray€,type.image/color.Modelþ”go.typelink.func(*image.Gray) color.Model	func(*"".Gray) image/color.ModelJtype.func(*"".Gray) image/color.Modelþlgo.string.hdr."func(*image.Gray, int, int) color.Gray"  &dgo.string."func(*image.Gray, int, int) color.Gray"þdgo.string."func(*image.Gray, int, int) color.Gray"PNfunc(*image.Gray, int, int) color.Grayþ\type.func(*"".Gray, int, int) image/color.Gray°°нžh30€ runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Gray, int, int) color.Gray"pngo.weak.type.*func(*"".Gray, int, int) image/color.Grayð\type.func(*"".Gray, int, int) image/color.GrayÀ \type.func(*"".Gray, int, int) image/color.Grayðtype.*"".Gray€type.inttype.int *type.image/color.Grayþ¸go.typelink.func(*image.Gray, int, int) color.Gray	func(*"".Gray, int, int) image/color.Gray\type.func(*"".Gray, int, int) image/color.GrayþLgo.string.hdr."func(*image.Gray) bool"  Dgo.string."func(*image.Gray) bool"þDgo.string."func(*image.Gray) bool"0.func(*image.Gray) boolþ0type.func(*"".Gray) boolPdT`30€ runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*image.Gray) bool"pBgo.weak.type.*func(*"".Gray) boolð0type.func(*"".Gray) boolÀ€0type.func(*"".Gray) boolðtype.*"".Gray€type.boolþlgo.typelink.func(*image.Gray) bool	func(*"".Gray) bool0type.func(*"".Gray) boolþ^go.string.hdr."func(*image.Gray, int, int) int"  Vgo.string."func(*image.Gray, int, int) int"þVgo.string."func(*image.Gray, int, int) int"@@func(*image.Gray, int, int) intþBtype.func(*"".Gray, int, int) int°°Cþ0ò30€ runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.Gray, int, int) int"pTgo.weak.type.*func(*"".Gray, int, int) intðBtype.func(*"".Gray, int, int) intÀ Btype.func(*"".Gray, int, int) intðtype.*"".Gray€type.inttype.int type.intþgo.typelink.func(*image.Gray, int, int) int	func(*"".Gray, int, int) intBtype.func(*"".Gray, int, int) intþpgo.string.hdr."func(*image.Gray, int, int, color.Color)"  (hgo.string."func(*image.Gray, int, int, color.Color)"þhgo.string."func(*image.Gray, int, int, color.Color)"`Rfunc(*image.Gray, int, int, color.Color)þ`type.func(*"".Gray, int, int, image/color.Color)°°¿KNo30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Gray, int, int, color.Color)"prgo.weak.type.*func(*"".Gray, int, int, image/color.Color)ð`type.func(*"".Gray, int, int, image/color.Color)À°`type.func(*"".Gray, int, int, image/color.Color)ðtype.*"".Gray€type.inttype.int ,type.image/color.ColorþÀgo.typelink.func(*image.Gray, int, int, color.Color)	func(*"".Gray, int, int, image/color.Color)`type.func(*"".Gray, int, int, image/color.Color)þngo.string.hdr."func(*image.Gray, int, int, color.Gray)"  'fgo.string."func(*image.Gray, int, int, color.Gray)"þfgo.string."func(*image.Gray, int, int, color.Gray)"PPfunc(*image.Gray, int, int, color.Gray)þ^type.func(*"".Gray, int, int, image/color.Gray)°°ƒhMæ30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.Gray, int, int, color.Gray)"ppgo.weak.type.*func(*"".Gray, int, int, image/color.Gray)ð^type.func(*"".Gray, int, int, image/color.Gray)À°^type.func(*"".Gray, int, int, image/color.Gray)ðtype.*"".Gray€type.inttype.int *type.image/color.Grayþ¼go.typelink.func(*image.Gray, int, int, color.Gray)	func(*"".Gray, int, int, image/color.Gray)^type.func(*"".Gray, int, int, image/color.Gray)þ|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image"  .tgo.string."func(*image.Gray, image.Rectangle) image.Image"þtgo.string."func(*image.Gray, image.Rectangle) image.Image"`^func(*image.Gray, image.Rectangle) image.ImageþTtype.func(*"".Gray, "".Rectangle) "".Image  7I–30€ runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image"pfgo.weak.type.*func(*"".Gray, "".Rectangle) "".ImageðTtype.func(*"".Gray, "".Rectangle) "".ImageÀTtype.func(*"".Gray, "".Rectangle) "".Imageðtype.*"".Gray€"type."".Rectangletype."".ImageþÀgo.typelink.func(*image.Gray, image.Rectangle) image.Image	func(*"".Gray, "".Rectangle) "".ImageTtype.func(*"".Gray, "".Rectangle) "".Imageþ,go.string.hdr."GrayAt"  $go.string."GrayAt"þ$go.string."GrayAt"GrayAtþRgo.string.hdr."func(int, int) color.Gray"  Jgo.string."func(int, int) color.Gray"þJgo.string."func(int, int) color.Gray"@4func(int, int) color.GrayþHtype.func(int, int) image/color.Gray  šÜ30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int, int) color.Gray"pZgo.weak.type.*func(int, int) image/color.GrayðHtype.func(int, int) image/color.GrayÀHtype.func(int, int) image/color.Grayðtype.int€type.int*type.image/color.GrayþŠgo.typelink.func(int, int) color.Gray	func(int, int) image/color.GrayHtype.func(int, int) image/color.Grayþ.go.string.hdr."SetGray"  &go.string."SetGray"þ&go.string."SetGray"SetGrayþTgo.string.hdr."func(int, int, color.Gray)"  Lgo.string."func(int, int, color.Gray)"þLgo.string."func(int, int, color.Gray)"@6func(int, int, color.Gray)þJtype.func(int, int, image/color.Gray)  ð=qŠ30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int, color.Gray)"p\go.weak.type.*func(int, int, image/color.Gray)ðJtype.func(int, int, image/color.Gray)À Jtype.func(int, int, image/color.Gray)ðtype.int€type.int*type.image/color.GrayþŽgo.typelink.func(int, int, color.Gray)	func(int, int, image/color.Gray)Jtype.func(int, int, image/color.Gray)þtype.*"".GrayÀÀ~ ßì6		h0  runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*image.Gray"p,go.weak.type.**"".Gray€type."".Gray`type.*"".Gray°àtype.*"".Grayà$go.string.hdr."At"€Jtype.func(int, int) image/color.Color^type.func(*"".Gray, int, int) image/color.Color "".(*Gray).At°"".(*Gray).AtÀ,go.string.hdr."Bounds"à0type.func() "".Rectangleð@type.func(*"".Gray) "".Rectangle€""".(*Gray).Bounds""".(*Gray).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐJtype.func(*"".Gray) image/color.Modelà*"".(*Gray).ColorModelð*"".(*Gray).ColorModel€,go.string.hdr."GrayAt" Htype.func(int, int) image/color.Gray°\type.func(*"".Gray, int, int) image/color.GrayÀ""".(*Gray).GrayAtÐ""".(*Gray).GrayAtà,go.string.hdr."Opaque"€ type.func() bool0type.func(*"".Gray) bool """.(*Gray).Opaque°""".(*Gray).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðBtype.func(*"".Gray, int, int) int€("".(*Gray).PixOffset("".(*Gray).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ð`type.func(*"".Gray, int, int, image/color.Color)à"".(*Gray).Setð"".(*Gray).Set€.go.string.hdr."SetGray" Jtype.func(int, int, image/color.Gray)°^type.func(*"".Gray, int, int, image/color.Gray)À$"".(*Gray).SetGrayÐ$"".(*Gray).SetGrayà0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageTtype.func(*"".Gray, "".Rectangle) "".Image &"".(*Gray).SubImage°&"".(*Gray).SubImageþ8go.string.hdr."image.Gray16"  0go.string."image.Gray16"þ0go.string."image.Gray16" image.Gray16þ,go.string.hdr."Gray16"  $go.string."Gray16"þ$go.string."Gray16"Gray16þtype."".Gray16ðð@jn~% 0à runtime.algarray@"runtime.gcbits.01P8go.string.hdr."image.Gray16"ptype.*"".Gray16€°type."".Gray16°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".Gray16 ,go.string.hdr."Gray16"°"go.importpath."".Àðtype."".Gray16þ:go.string.hdr."*image.Gray16"  
2go.string."*image.Gray16"þ2go.string."*image.Gray16" *image.Gray16þrgo.string.hdr."func(*image.Gray16, int, int) color.Color"  )jgo.string."func(*image.Gray16, int, int) color.Color"þjgo.string."func(*image.Gray16, int, int) color.Color"`Tfunc(*image.Gray16, int, int) color.Colorþbtype.func(*"".Gray16, int, int) image/color.Color°°I{±÷30€ runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Gray16, int, int) color.Color"ptgo.weak.type.*func(*"".Gray16, int, int) image/color.Colorðbtype.func(*"".Gray16, int, int) image/color.ColorÀ btype.func(*"".Gray16, int, int) image/color.Colorðtype.*"".Gray16€type.inttype.int ,type.image/color.ColorþÄgo.typelink.func(*image.Gray16, int, int) color.Color	func(*"".Gray16, int, int) image/color.Colorbtype.func(*"".Gray16, int, int) image/color.Colorþfgo.string.hdr."func(*image.Gray16) image.Rectangle"  #^go.string."func(*image.Gray16) image.Rectangle"þ^go.string."func(*image.Gray16) image.Rectangle"PHfunc(*image.Gray16) image.RectangleþDtype.func(*"".Gray16) "".RectangleÍ!ʋ30€ runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Gray16) image.Rectangle"pVgo.weak.type.*func(*"".Gray16) "".RectangleðDtype.func(*"".Gray16) "".RectangleÀ€Dtype.func(*"".Gray16) "".Rectangleðtype.*"".Gray16€"type."".Rectangleþšgo.typelink.func(*image.Gray16) image.Rectangle	func(*"".Gray16) "".RectangleDtype.func(*"".Gray16) "".Rectangleþ^go.string.hdr."func(*image.Gray16) color.Model"  Vgo.string."func(*image.Gray16) color.Model"þVgo.string."func(*image.Gray16) color.Model"@@func(*image.Gray16) color.ModelþNtype.func(*"".Gray16) image/color.Model<Oç30€ runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.Gray16) color.Model"p`go.weak.type.*func(*"".Gray16) image/color.ModelðNtype.func(*"".Gray16) image/color.ModelÀ€Ntype.func(*"".Gray16) image/color.Modelðtype.*"".Gray16€,type.image/color.Modelþœgo.typelink.func(*image.Gray16) color.Model	func(*"".Gray16) image/color.ModelNtype.func(*"".Gray16) image/color.Modelþtgo.string.hdr."func(*image.Gray16, int, int) color.Gray16"  *lgo.string."func(*image.Gray16, int, int) color.Gray16"þlgo.string."func(*image.Gray16, int, int) color.Gray16"`Vfunc(*image.Gray16, int, int) color.Gray16þdtype.func(*"".Gray16, int, int) image/color.Gray16°°ùKµ30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Gray16, int, int) color.Gray16"pvgo.weak.type.*func(*"".Gray16, int, int) image/color.Gray16ðdtype.func(*"".Gray16, int, int) image/color.Gray16À dtype.func(*"".Gray16, int, int) image/color.Gray16ðtype.*"".Gray16€type.inttype.int .type.image/color.Gray16þÈgo.typelink.func(*image.Gray16, int, int) color.Gray16	func(*"".Gray16, int, int) image/color.Gray16dtype.func(*"".Gray16, int, int) image/color.Gray16þPgo.string.hdr."func(*image.Gray16) bool"  Hgo.string."func(*image.Gray16) bool"þHgo.string."func(*image.Gray16) bool"@2func(*image.Gray16) boolþ4type.func(*"".Gray16) boolÒò®w30€ runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*image.Gray16) bool"pFgo.weak.type.*func(*"".Gray16) boolð4type.func(*"".Gray16) boolÀ€4type.func(*"".Gray16) boolðtype.*"".Gray16€type.boolþtgo.typelink.func(*image.Gray16) bool	func(*"".Gray16) bool4type.func(*"".Gray16) boolþbgo.string.hdr."func(*image.Gray16, int, int) int"  !Zgo.string."func(*image.Gray16, int, int) int"þZgo.string."func(*image.Gray16, int, int) int"PDfunc(*image.Gray16, int, int) intþFtype.func(*"".Gray16, int, int) int°°ìÎI½30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Gray16, int, int) int"pXgo.weak.type.*func(*"".Gray16, int, int) intðFtype.func(*"".Gray16, int, int) intÀ Ftype.func(*"".Gray16, int, int) intðtype.*"".Gray16€type.inttype.int type.intþ˜go.typelink.func(*image.Gray16, int, int) int	func(*"".Gray16, int, int) intFtype.func(*"".Gray16, int, int) intþtgo.string.hdr."func(*image.Gray16, int, int, color.Color)"  *lgo.string."func(*image.Gray16, int, int, color.Color)"þlgo.string."func(*image.Gray16, int, int, color.Color)"`Vfunc(*image.Gray16, int, int, color.Color)þdtype.func(*"".Gray16, int, int, image/color.Color)°°¾ôHª30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Gray16, int, int, color.Color)"pvgo.weak.type.*func(*"".Gray16, int, int, image/color.Color)ðdtype.func(*"".Gray16, int, int, image/color.Color)À°dtype.func(*"".Gray16, int, int, image/color.Color)ðtype.*"".Gray16€type.inttype.int ,type.image/color.ColorþÈgo.typelink.func(*image.Gray16, int, int, color.Color)	func(*"".Gray16, int, int, image/color.Color)dtype.func(*"".Gray16, int, int, image/color.Color)þvgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)"  +ngo.string."func(*image.Gray16, int, int, color.Gray16)"þngo.string."func(*image.Gray16, int, int, color.Gray16)"`Xfunc(*image.Gray16, int, int, color.Gray16)þftype.func(*"".Gray16, int, int, image/color.Gray16)°°]æ830€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)"pxgo.weak.type.*func(*"".Gray16, int, int, image/color.Gray16)ðftype.func(*"".Gray16, int, int, image/color.Gray16)À°ftype.func(*"".Gray16, int, int, image/color.Gray16)ðtype.*"".Gray16€type.inttype.int .type.image/color.Gray16þÌgo.typelink.func(*image.Gray16, int, int, color.Gray16)	func(*"".Gray16, int, int, image/color.Gray16)ftype.func(*"".Gray16, int, int, image/color.Gray16)þ€go.string.hdr."func(*image.Gray16, image.Rectangle) image.Image"  0xgo.string."func(*image.Gray16, image.Rectangle) image.Image"þxgo.string."func(*image.Gray16, image.Rectangle) image.Image"pbfunc(*image.Gray16, image.Rectangle) image.ImageþXtype.func(*"".Gray16, "".Rectangle) "".Image  <'k)30€ runtime.algarray@"runtime.gcbits.01P€go.string.hdr."func(*image.Gray16, image.Rectangle) image.Image"pjgo.weak.type.*func(*"".Gray16, "".Rectangle) "".ImageðXtype.func(*"".Gray16, "".Rectangle) "".ImageÀXtype.func(*"".Gray16, "".Rectangle) "".Imageðtype.*"".Gray16€"type."".Rectangletype."".ImageþÈgo.typelink.func(*image.Gray16, image.Rectangle) image.Image	func(*"".Gray16, "".Rectangle) "".ImageXtype.func(*"".Gray16, "".Rectangle) "".Imageþ0go.string.hdr."Gray16At"  (go.string."Gray16At"þ(go.string."Gray16At" Gray16AtþVgo.string.hdr."func(int, int) color.Gray16"  Ngo.string."func(int, int) color.Gray16"þNgo.string."func(int, int) color.Gray16"@8func(int, int) color.Gray16þLtype.func(int, int) image/color.Gray16  ÄX}830€ runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int) color.Gray16"p^go.weak.type.*func(int, int) image/color.Gray16ðLtype.func(int, int) image/color.Gray16ÀLtype.func(int, int) image/color.Gray16ðtype.int€type.int.type.image/color.Gray16þ’go.typelink.func(int, int) color.Gray16	func(int, int) image/color.Gray16Ltype.func(int, int) image/color.Gray16þ2go.string.hdr."SetGray16"  	*go.string."SetGray16"þ*go.string."SetGray16" SetGray16þXgo.string.hdr."func(int, int, color.Gray16)"  Pgo.string."func(int, int, color.Gray16)"þPgo.string."func(int, int, color.Gray16)"@:func(int, int, color.Gray16)þNtype.func(int, int, image/color.Gray16)  SL(30€ runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int, color.Gray16)"p`go.weak.type.*func(int, int, image/color.Gray16)ðNtype.func(int, int, image/color.Gray16)À Ntype.func(int, int, image/color.Gray16)ðtype.int€type.int.type.image/color.Gray16þ–go.typelink.func(int, int, color.Gray16)	func(int, int, image/color.Gray16)Ntype.func(int, int, image/color.Gray16)þtype.*"".Gray16ÀÀ–þÝ6		h0  runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.Gray16"p0go.weak.type.**"".Gray16€type."".Gray16`type.*"".Gray16°àtype.*"".Gray16à$go.string.hdr."At"€Jtype.func(int, int) image/color.Colorbtype.func(*"".Gray16, int, int) image/color.Color "".(*Gray16).At°"".(*Gray16).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðDtype.func(*"".Gray16) "".Rectangle€&"".(*Gray16).Bounds&"".(*Gray16).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐNtype.func(*"".Gray16) image/color.Modelà."".(*Gray16).ColorModelð."".(*Gray16).ColorModel€0go.string.hdr."Gray16At" Ltype.func(int, int) image/color.Gray16°dtype.func(*"".Gray16, int, int) image/color.Gray16À*"".(*Gray16).Gray16AtÐ*"".(*Gray16).Gray16Atà,go.string.hdr."Opaque"€ type.func() bool4type.func(*"".Gray16) bool &"".(*Gray16).Opaque°&"".(*Gray16).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðFtype.func(*"".Gray16, int, int) int€,"".(*Gray16).PixOffset,"".(*Gray16).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðdtype.func(*"".Gray16, int, int, image/color.Color)à "".(*Gray16).Setð "".(*Gray16).Set€2go.string.hdr."SetGray16" Ntype.func(int, int, image/color.Gray16)°ftype.func(*"".Gray16, int, int, image/color.Gray16)À,"".(*Gray16).SetGray16Ð,"".(*Gray16).SetGray16à0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageXtype.func(*"".Gray16, "".Rectangle) "".Image *"".(*Gray16).SubImage°*"".(*Gray16).SubImageþ4go.string.hdr."image.CMYK"  
,go.string."image.CMYK"þ,go.string."image.CMYK" image.CMYKþ(go.string.hdr."CMYK"   go.string."CMYK"þ go.string."CMYK"
CMYKþtype."".CMYKðð@ÖÝ3v 0à runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.CMYK"ptype.*"".CMYK€°type."".CMYK°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle` type."".CMYK (go.string.hdr."CMYK"°"go.importpath."".Àðtype."".CMYKþ6go.string.hdr."*image.CMYK"  .go.string."*image.CMYK"þ.go.string."*image.CMYK" *image.CMYKþngo.string.hdr."func(*image.CMYK, int, int) color.Color"  'fgo.string."func(*image.CMYK, int, int) color.Color"þfgo.string."func(*image.CMYK, int, int) color.Color"PPfunc(*image.CMYK, int, int) color.Colorþ^type.func(*"".CMYK, int, int) image/color.Color°°¶¬30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.CMYK, int, int) color.Color"ppgo.weak.type.*func(*"".CMYK, int, int) image/color.Colorð^type.func(*"".CMYK, int, int) image/color.ColorÀ ^type.func(*"".CMYK, int, int) image/color.Colorðtype.*"".CMYK€type.inttype.int ,type.image/color.Colorþ¼go.typelink.func(*image.CMYK, int, int) color.Color	func(*"".CMYK, int, int) image/color.Color^type.func(*"".CMYK, int, int) image/color.Colorþbgo.string.hdr."func(*image.CMYK) image.Rectangle"  !Zgo.string."func(*image.CMYK) image.Rectangle"þZgo.string."func(*image.CMYK) image.Rectangle"PDfunc(*image.CMYK) image.Rectangleþ@type.func(*"".CMYK) "".Rectangle|U@‚30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.CMYK) image.Rectangle"pRgo.weak.type.*func(*"".CMYK) "".Rectangleð@type.func(*"".CMYK) "".RectangleÀ€@type.func(*"".CMYK) "".Rectangleðtype.*"".CMYK€"type."".Rectangleþ’go.typelink.func(*image.CMYK) image.Rectangle	func(*"".CMYK) "".Rectangle@type.func(*"".CMYK) "".Rectangleþlgo.string.hdr."func(*image.CMYK, int, int) color.CMYK"  &dgo.string."func(*image.CMYK, int, int) color.CMYK"þdgo.string."func(*image.CMYK, int, int) color.CMYK"PNfunc(*image.CMYK, int, int) color.CMYKþ\type.func(*"".CMYK, int, int) image/color.CMYK°°£+30€ runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.CMYK, int, int) color.CMYK"pngo.weak.type.*func(*"".CMYK, int, int) image/color.CMYKð\type.func(*"".CMYK, int, int) image/color.CMYKÀ \type.func(*"".CMYK, int, int) image/color.CMYKðtype.*"".CMYK€type.inttype.int *type.image/color.CMYKþ¸go.typelink.func(*image.CMYK, int, int) color.CMYK	func(*"".CMYK, int, int) image/color.CMYK\type.func(*"".CMYK, int, int) image/color.CMYKþZgo.string.hdr."func(*image.CMYK) color.Model"  Rgo.string."func(*image.CMYK) color.Model"þRgo.string."func(*image.CMYK) color.Model"@<func(*image.CMYK) color.ModelþJtype.func(*"".CMYK) image/color.ModelUžÏÿ30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.CMYK) color.Model"p\go.weak.type.*func(*"".CMYK) image/color.ModelðJtype.func(*"".CMYK) image/color.ModelÀ€Jtype.func(*"".CMYK) image/color.Modelðtype.*"".CMYK€,type.image/color.Modelþ”go.typelink.func(*image.CMYK) color.Model	func(*"".CMYK) image/color.ModelJtype.func(*"".CMYK) image/color.ModelþLgo.string.hdr."func(*image.CMYK) bool"  Dgo.string."func(*image.CMYK) bool"þDgo.string."func(*image.CMYK) bool"0.func(*image.CMYK) boolþ0type.func(*"".CMYK) bool-YêE30€ runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*image.CMYK) bool"pBgo.weak.type.*func(*"".CMYK) boolð0type.func(*"".CMYK) boolÀ€0type.func(*"".CMYK) boolðtype.*"".CMYK€type.boolþlgo.typelink.func(*image.CMYK) bool	func(*"".CMYK) bool0type.func(*"".CMYK) boolþ^go.string.hdr."func(*image.CMYK, int, int) int"  Vgo.string."func(*image.CMYK, int, int) int"þVgo.string."func(*image.CMYK, int, int) int"@@func(*image.CMYK, int, int) intþBtype.func(*"".CMYK, int, int) int°°œ*éž30€ runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.CMYK, int, int) int"pTgo.weak.type.*func(*"".CMYK, int, int) intðBtype.func(*"".CMYK, int, int) intÀ Btype.func(*"".CMYK, int, int) intðtype.*"".CMYK€type.inttype.int type.intþgo.typelink.func(*image.CMYK, int, int) int	func(*"".CMYK, int, int) intBtype.func(*"".CMYK, int, int) intþpgo.string.hdr."func(*image.CMYK, int, int, color.Color)"  (hgo.string."func(*image.CMYK, int, int, color.Color)"þhgo.string."func(*image.CMYK, int, int, color.Color)"`Rfunc(*image.CMYK, int, int, color.Color)þ`type.func(*"".CMYK, int, int, image/color.Color)°°_üÆÿ30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.CMYK, int, int, color.Color)"prgo.weak.type.*func(*"".CMYK, int, int, image/color.Color)ð`type.func(*"".CMYK, int, int, image/color.Color)À°`type.func(*"".CMYK, int, int, image/color.Color)ðtype.*"".CMYK€type.inttype.int ,type.image/color.ColorþÀgo.typelink.func(*image.CMYK, int, int, color.Color)	func(*"".CMYK, int, int, image/color.Color)`type.func(*"".CMYK, int, int, image/color.Color)þngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)"  'fgo.string."func(*image.CMYK, int, int, color.CMYK)"þfgo.string."func(*image.CMYK, int, int, color.CMYK)"PPfunc(*image.CMYK, int, int, color.CMYK)þ^type.func(*"".CMYK, int, int, image/color.CMYK)°°új¯830€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)"ppgo.weak.type.*func(*"".CMYK, int, int, image/color.CMYK)ð^type.func(*"".CMYK, int, int, image/color.CMYK)À°^type.func(*"".CMYK, int, int, image/color.CMYK)ðtype.*"".CMYK€type.inttype.int *type.image/color.CMYKþ¼go.typelink.func(*image.CMYK, int, int, color.CMYK)	func(*"".CMYK, int, int, image/color.CMYK)^type.func(*"".CMYK, int, int, image/color.CMYK)þ|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image"  .tgo.string."func(*image.CMYK, image.Rectangle) image.Image"þtgo.string."func(*image.CMYK, image.Rectangle) image.Image"`^func(*image.CMYK, image.Rectangle) image.ImageþTtype.func(*"".CMYK, "".Rectangle) "".Image  } ‚i30€ runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image"pfgo.weak.type.*func(*"".CMYK, "".Rectangle) "".ImageðTtype.func(*"".CMYK, "".Rectangle) "".ImageÀTtype.func(*"".CMYK, "".Rectangle) "".Imageðtype.*"".CMYK€"type."".Rectangletype."".ImageþÀgo.typelink.func(*image.CMYK, image.Rectangle) image.Image	func(*"".CMYK, "".Rectangle) "".ImageTtype.func(*"".CMYK, "".Rectangle) "".Imageþ,go.string.hdr."CMYKAt"  $go.string."CMYKAt"þ$go.string."CMYKAt"CMYKAtþRgo.string.hdr."func(int, int) color.CMYK"  Jgo.string."func(int, int) color.CMYK"þJgo.string."func(int, int) color.CMYK"@4func(int, int) color.CMYKþHtype.func(int, int) image/color.CMYK  ûÕ30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int, int) color.CMYK"pZgo.weak.type.*func(int, int) image/color.CMYKðHtype.func(int, int) image/color.CMYKÀHtype.func(int, int) image/color.CMYKðtype.int€type.int*type.image/color.CMYKþŠgo.typelink.func(int, int) color.CMYK	func(int, int) image/color.CMYKHtype.func(int, int) image/color.CMYKþ.go.string.hdr."SetCMYK"  &go.string."SetCMYK"þ&go.string."SetCMYK"SetCMYKþTgo.string.hdr."func(int, int, color.CMYK)"  Lgo.string."func(int, int, color.CMYK)"þLgo.string."func(int, int, color.CMYK)"@6func(int, int, color.CMYK)þJtype.func(int, int, image/color.CMYK)  ÌÕ_¹30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int, color.CMYK)"p\go.weak.type.*func(int, int, image/color.CMYK)ðJtype.func(int, int, image/color.CMYK)À Jtype.func(int, int, image/color.CMYK)ðtype.int€type.int*type.image/color.CMYKþŽgo.typelink.func(int, int, color.CMYK)	func(int, int, image/color.CMYK)Jtype.func(int, int, image/color.CMYK)þtype.*"".CMYKÀÀ`nº•6		h0  runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*image.CMYK"p,go.weak.type.**"".CMYK€type."".CMYK`type.*"".CMYK°àtype.*"".CMYKà$go.string.hdr."At"€Jtype.func(int, int) image/color.Color^type.func(*"".CMYK, int, int) image/color.Color "".(*CMYK).At°"".(*CMYK).AtÀ,go.string.hdr."Bounds"à0type.func() "".Rectangleð@type.func(*"".CMYK) "".Rectangle€""".(*CMYK).Bounds""".(*CMYK).Bounds ,go.string.hdr."CMYKAt"ÀHtype.func(int, int) image/color.CMYKÐ\type.func(*"".CMYK, int, int) image/color.CMYKà""".(*CMYK).CMYKAtð""".(*CMYK).CMYKAt€4go.string.hdr."ColorModel" :type.func() image/color.Model°Jtype.func(*"".CMYK) image/color.ModelÀ*"".(*CMYK).ColorModelÐ*"".(*CMYK).ColorModelà,go.string.hdr."Opaque"€ type.func() bool0type.func(*"".CMYK) bool """.(*CMYK).Opaque°""".(*CMYK).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðBtype.func(*"".CMYK, int, int) int€("".(*CMYK).PixOffset("".(*CMYK).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ð`type.func(*"".CMYK, int, int, image/color.Color)à"".(*CMYK).Setð"".(*CMYK).Set€.go.string.hdr."SetCMYK" Jtype.func(int, int, image/color.CMYK)°^type.func(*"".CMYK, int, int, image/color.CMYK)À$"".(*CMYK).SetCMYKÐ$"".(*CMYK).SetCMYKà0go.string.hdr."SubImage"€@type.func("".Rectangle) "".ImageTtype.func(*"".CMYK, "".Rectangle) "".Image &"".(*CMYK).SubImage°&"".(*CMYK).SubImageþ&runtime.gcbits.0101þ<go.string.hdr."image.Paletted"  4go.string."image.Paletted"þ4go.string."image.Paletted" image.Palettedþ.go.string.hdr."Palette"  &go.string."Palette"þ&go.string."Palette"Paletteþ0go.string.hdr."Paletted"  (go.string."Paletted"þ(go.string."Paletted" Palettedþ type."".PalettedÀÀXHLÕ` @"0à runtime.algarray@&runtime.gcbits.0101P<go.string.hdr."image.Paletted"p"type.*"".Paletted€° type."".Paletted°&go.string.hdr."Pix"Ðtype.[]uint8€,go.string.hdr."Stride" type.intÐ(go.string.hdr."Rect"ð"type."".Rectangle .go.string.hdr."Palette"À0type.image/color.Palette`ð type."".Palettedð0go.string.hdr."Paletted"€"go.importpath."".À type."".Palettedþ>go.string.hdr."*image.Paletted"  6go.string."*image.Paletted"þ6go.string."*image.Paletted"  *image.Palettedþvgo.string.hdr."func(*image.Paletted, int, int) color.Color"  +ngo.string."func(*image.Paletted, int, int) color.Color"þngo.string."func(*image.Paletted, int, int) color.Color"`Xfunc(*image.Paletted, int, int) color.Colorþftype.func(*"".Paletted, int, int) image/color.Color°°_ú|r30€ runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Paletted, int, int) color.Color"pxgo.weak.type.*func(*"".Paletted, int, int) image/color.Colorðftype.func(*"".Paletted, int, int) image/color.ColorÀ ftype.func(*"".Paletted, int, int) image/color.Colorð"type.*"".Paletted€type.inttype.int ,type.image/color.ColorþÌgo.typelink.func(*image.Paletted, int, int) color.Color	func(*"".Paletted, int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Colorþjgo.string.hdr."func(*image.Paletted) image.Rectangle"  %bgo.string."func(*image.Paletted) image.Rectangle"þbgo.string."func(*image.Paletted) image.Rectangle"PLfunc(*image.Paletted) image.RectangleþHtype.func(*"".Paletted) "".RectanglebOæÝ30€ runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*image.Paletted) image.Rectangle"pZgo.weak.type.*func(*"".Paletted) "".RectangleðHtype.func(*"".Paletted) "".RectangleÀ€Htype.func(*"".Paletted) "".Rectangleð"type.*"".Paletted€"type."".Rectangleþ¢go.typelink.func(*image.Paletted) image.Rectangle	func(*"".Paletted) "".RectangleHtype.func(*"".Paletted) "".Rectangleþjgo.string.hdr."func(*image.Paletted, int, int) uint8"  %bgo.string."func(*image.Paletted, int, int) uint8"þbgo.string."func(*image.Paletted, int, int) uint8"PLfunc(*image.Paletted, int, int) uint8þNtype.func(*"".Paletted, int, int) uint8°°S­)Š30€ runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*image.Paletted, int, int) uint8"p`go.weak.type.*func(*"".Paletted, int, int) uint8ðNtype.func(*"".Paletted, int, int) uint8À Ntype.func(*"".Paletted, int, int) uint8ð"type.*"".Paletted€type.inttype.int type.uint8þ¨go.typelink.func(*image.Paletted, int, int) uint8	func(*"".Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8þbgo.string.hdr."func(*image.Paletted) color.Model"  !Zgo.string."func(*image.Paletted) color.Model"þZgo.string."func(*image.Paletted) color.Model"PDfunc(*image.Paletted) color.ModelþRtype.func(*"".Paletted) image/color.Modelô¯ö30€ runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Paletted) color.Model"pdgo.weak.type.*func(*"".Paletted) image/color.ModelðRtype.func(*"".Paletted) image/color.ModelÀ€Rtype.func(*"".Paletted) image/color.Modelð"type.*"".Paletted€,type.image/color.Modelþ¤go.typelink.func(*image.Paletted) color.Model	func(*"".Paletted) image/color.ModelRtype.func(*"".Paletted) image/color.ModelþTgo.string.hdr."func(*image.Paletted) bool"  Lgo.string."func(*image.Paletted) bool"þLgo.string."func(*image.Paletted) bool"@6func(*image.Paletted) boolþ8type.func(*"".Paletted) boolm•k30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*image.Paletted) bool"pJgo.weak.type.*func(*"".Paletted) boolð8type.func(*"".Paletted) boolÀ€8type.func(*"".Paletted) boolð"type.*"".Paletted€type.boolþ|go.typelink.func(*image.Paletted) bool	func(*"".Paletted) bool8type.func(*"".Paletted) boolþfgo.string.hdr."func(*image.Paletted, int, int) int"  #^go.string."func(*image.Paletted, int, int) int"þ^go.string."func(*image.Paletted, int, int) int"PHfunc(*image.Paletted, int, int) intþJtype.func(*"".Paletted, int, int) int°°†KL30€ runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Paletted, int, int) int"p\go.weak.type.*func(*"".Paletted, int, int) intðJtype.func(*"".Paletted, int, int) intÀ Jtype.func(*"".Paletted, int, int) intð"type.*"".Paletted€type.inttype.int type.intþ go.typelink.func(*image.Paletted, int, int) int	func(*"".Paletted, int, int) intJtype.func(*"".Paletted, int, int) intþxgo.string.hdr."func(*image.Paletted, int, int, color.Color)"  ,pgo.string."func(*image.Paletted, int, int, color.Color)"þpgo.string."func(*image.Paletted, int, int, color.Color)"`Zfunc(*image.Paletted, int, int, color.Color)þhtype.func(*"".Paletted, int, int, image/color.Color)°°–íqÎ30€ runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Paletted, int, int, color.Color)"pzgo.weak.type.*func(*"".Paletted, int, int, image/color.Color)ðhtype.func(*"".Paletted, int, int, image/color.Color)À°htype.func(*"".Paletted, int, int, image/color.Color)ð"type.*"".Paletted€type.inttype.int ,type.image/color.ColorþÐgo.typelink.func(*image.Paletted, int, int, color.Color)	func(*"".Paletted, int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)þlgo.string.hdr."func(*image.Paletted, int, int, uint8)"  &dgo.string."func(*image.Paletted, int, int, uint8)"þdgo.string."func(*image.Paletted, int, int, uint8)"PNfunc(*image.Paletted, int, int, uint8)þPtype.func(*"".Paletted, int, int, uint8)°°Æþn30€ runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Paletted, int, int, uint8)"pbgo.weak.type.*func(*"".Paletted, int, int, uint8)ðPtype.func(*"".Paletted, int, int, uint8)À°Ptype.func(*"".Paletted, int, int, uint8)ð"type.*"".Paletted€type.inttype.int type.uint8þ¬go.typelink.func(*image.Paletted, int, int, uint8)	func(*"".Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)þ„go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"  2|go.string."func(*image.Paletted, image.Rectangle) image.Image"þ|go.string."func(*image.Paletted, image.Rectangle) image.Image"pffunc(*image.Paletted, image.Rectangle) image.Imageþ\type.func(*"".Paletted, "".Rectangle) "".Image  ÷m•´30€ runtime.algarray@"runtime.gcbits.01P„go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"pngo.weak.type.*func(*"".Paletted, "".Rectangle) "".Imageð\type.func(*"".Paletted, "".Rectangle) "".ImageÀ\type.func(*"".Paletted, "".Rectangle) "".Imageð"type.*"".Paletted€"type."".Rectangletype."".ImageþÐgo.typelink.func(*image.Paletted, image.Rectangle) image.Image	func(*"".Paletted, "".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Imageþ8go.string.hdr."ColorIndexAt"  0go.string."ColorIndexAt"þ0go.string."ColorIndexAt" ColorIndexAtþHgo.string.hdr."func(int, int) uint8"  @go.string."func(int, int) uint8"þ@go.string."func(int, int) uint8"0*func(int, int) uint8þ2type.func(int, int) uint8  Jc_30€ runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(int, int) uint8"pDgo.weak.type.*func(int, int) uint8ð2type.func(int, int) uint8À2type.func(int, int) uint8ðtype.int€type.inttype.uint8þjgo.typelink.func(int, int) uint8	func(int, int) uint82type.func(int, int) uint8þ:go.string.hdr."SetColorIndex"  
2go.string."SetColorIndex"þ2go.string."SetColorIndex" SetColorIndexþJgo.string.hdr."func(int, int, uint8)"  Bgo.string."func(int, int, uint8)"þBgo.string."func(int, int, uint8)"0,func(int, int, uint8)þ4type.func(int, int, uint8)  ÌÌl30€ runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(int, int, uint8)"pFgo.weak.type.*func(int, int, uint8)ð4type.func(int, int, uint8)À 4type.func(int, int, uint8)ðtype.int€type.inttype.uint8þngo.typelink.func(int, int, uint8)	func(int, int, uint8)4type.func(int, int, uint8)þ"type.*"".PalettedÀÀÉNYû6		h0  runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*image.Paletted"p4go.weak.type.**"".Paletted€ type."".Paletted`"type.*"".Paletted°à"type.*"".Palettedà$go.string.hdr."At"€Jtype.func(int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Color """.(*Paletted).At°""".(*Paletted).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðHtype.func(*"".Paletted) "".Rectangle€*"".(*Paletted).Bounds*"".(*Paletted).Bounds 8go.string.hdr."ColorIndexAt"À2type.func(int, int) uint8ÐNtype.func(*"".Paletted, int, int) uint8à6"".(*Paletted).ColorIndexAtð6"".(*Paletted).ColorIndexAt€4go.string.hdr."ColorModel" :type.func() image/color.Model°Rtype.func(*"".Paletted) image/color.ModelÀ2"".(*Paletted).ColorModelÐ2"".(*Paletted).ColorModelà,go.string.hdr."Opaque"€ type.func() bool8type.func(*"".Paletted) bool *"".(*Paletted).Opaque°*"".(*Paletted).OpaqueÀ2go.string.hdr."PixOffset"à.type.func(int, int) intðJtype.func(*"".Paletted, int, int) int€0"".(*Paletted).PixOffset0"".(*Paletted).PixOffset &go.string.hdr."Set"ÀLtype.func(int, int, image/color.Color)Ðhtype.func(*"".Paletted, int, int, image/color.Color)à$"".(*Paletted).Setð$"".(*Paletted).Set€:go.string.hdr."SetColorIndex" 4type.func(int, int, uint8)°Ptype.func(*"".Paletted, int, int, uint8)À8"".(*Paletted).SetColorIndexÐ8"".(*Paletted).SetColorIndexà0go.string.hdr."SubImage"€@type.func("".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image ."".(*Paletted).SubImage°."".(*Paletted).SubImageþ,go.string.hdr."[]bool"  $go.string."[]bool"þ$go.string."[]bool"[]boolþtype.[]bool±åç
0  runtime.algarray@"runtime.gcbits.01P,go.string.hdr."[]bool"p(go.weak.type.*[]bool€type.boolþ2go.typelink.[]bool	[]booltype.[]boolþ"type..hashfunc256  ,runtime.memhash_varlenþtype..eqfunc256  .runtime.memequal_varlenþtype..alg256  "type..hashfunc256type..eqfunc256þ2go.string.hdr."[256]bool"  	*go.string."[256]bool"þ*go.string."[256]bool" [256]boolþtype.[256]bool°°°Ä'k‘0type..alg256@runtime.gcbits.P2go.string.hdr."[256]bool"p.go.weak.type.*[256]bool€type.booltype.[]boolþ>go.typelink.[256]bool	[256]booltype.[256]boolþ:go.string.hdr."image.Uniform"  
2go.string."image.Uniform"þ2go.string."image.Uniform" image.Uniformþ"go.string.hdr."C"  go.string."C"þgo.string."C"Cþ.go.string.hdr."Uniform"  &go.string."Uniform"þ&go.string."Uniform"Uniformþtype."".UniformÐÐö=á0à runtime.algarray@"runtime.gcbits.03P:go.string.hdr."image.Uniform"p type.*"".Uniform€°type."".Uniform°"go.string.hdr."C"Ð,type.image/color.Color`€type."".Uniform€.go.string.hdr."Uniform""go.importpath."". Ðtype."".Uniformþ<go.string.hdr."*image.Uniform"  4go.string."*image.Uniform"þ4go.string."*image.Uniform" *image.Uniformþtgo.string.hdr."func(*image.Uniform, int, int) color.Color"  *lgo.string."func(*image.Uniform, int, int) color.Color"þlgo.string."func(*image.Uniform, int, int) color.Color"`Vfunc(*image.Uniform, int, int) color.Colorþdtype.func(*"".Uniform, int, int) image/color.Color°°„Œp30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Uniform, int, int) color.Color"pvgo.weak.type.*func(*"".Uniform, int, int) image/color.Colorðdtype.func(*"".Uniform, int, int) image/color.ColorÀ dtype.func(*"".Uniform, int, int) image/color.Colorð type.*"".Uniform€type.inttype.int ,type.image/color.ColorþÈgo.typelink.func(*image.Uniform, int, int) color.Color	func(*"".Uniform, int, int) image/color.Colordtype.func(*"".Uniform, int, int) image/color.Colorþhgo.string.hdr."func(*image.Uniform) image.Rectangle"  $`go.string."func(*image.Uniform) image.Rectangle"þ`go.string."func(*image.Uniform) image.Rectangle"PJfunc(*image.Uniform) image.RectangleþFtype.func(*"".Uniform) "".Rectangle2[è|30€ runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Uniform) image.Rectangle"pXgo.weak.type.*func(*"".Uniform) "".RectangleðFtype.func(*"".Uniform) "".RectangleÀ€Ftype.func(*"".Uniform) "".Rectangleð type.*"".Uniform€"type."".Rectangleþžgo.typelink.func(*image.Uniform) image.Rectangle	func(*"".Uniform) "".RectangleFtype.func(*"".Uniform) "".Rectangleþ`go.string.hdr."func(*image.Uniform) color.Model"   Xgo.string."func(*image.Uniform) color.Model"þXgo.string."func(*image.Uniform) color.Model"PBfunc(*image.Uniform) color.ModelþPtype.func(*"".Uniform) image/color.Model"ÈáÐ30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Uniform) color.Model"pbgo.weak.type.*func(*"".Uniform) image/color.ModelðPtype.func(*"".Uniform) image/color.ModelÀ€Ptype.func(*"".Uniform) image/color.Modelð type.*"".Uniform€,type.image/color.Modelþ go.typelink.func(*image.Uniform) color.Model	func(*"".Uniform) image/color.ModelPtype.func(*"".Uniform) image/color.Modelþzgo.string.hdr."func(*image.Uniform, color.Color) color.Color"  -rgo.string."func(*image.Uniform, color.Color) color.Color"þrgo.string."func(*image.Uniform, color.Color) color.Color"`\func(*image.Uniform, color.Color) color.Colorþvtype.func(*"".Uniform, image/color.Color) image/color.Color  @AÂ230€ runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*image.Uniform, color.Color) color.Color"pˆgo.weak.type.*func(*"".Uniform, image/color.Color) image/color.Colorðvtype.func(*"".Uniform, image/color.Color) image/color.ColorÀvtype.func(*"".Uniform, image/color.Color) image/color.Colorð type.*"".Uniform€,type.image/color.Color,type.image/color.Colorþàgo.typelink.func(*image.Uniform, color.Color) color.Color	func(*"".Uniform, image/color.Color) image/color.Colorvtype.func(*"".Uniform, image/color.Color) image/color.ColorþRgo.string.hdr."func(*image.Uniform) bool"  Jgo.string."func(*image.Uniform) bool"þJgo.string."func(*image.Uniform) bool"@4func(*image.Uniform) boolþ6type.func(*"".Uniform) boolèñ»?30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Uniform) bool"pHgo.weak.type.*func(*"".Uniform) boolð6type.func(*"".Uniform) boolÀ€6type.func(*"".Uniform) boolð type.*"".Uniform€type.boolþxgo.typelink.func(*image.Uniform) bool	func(*"".Uniform) bool6type.func(*"".Uniform) boolþŠgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)"  5‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"þ‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"plfunc(*image.Uniform) (uint32, uint32, uint32, uint32)þntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)ÀÀN¸V30€ runtime.algarray@"runtime.gcbits.01PŠgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)"p€go.weak.type.*func(*"".Uniform) (uint32, uint32, uint32, uint32)ðntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)À€ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)ð type.*"".Uniform€type.uint32type.uint32 type.uint32°type.uint32þègo.typelink.func(*image.Uniform) (uint32, uint32, uint32, uint32)	func(*"".Uniform) (uint32, uint32, uint32, uint32)ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)þ.go.string.hdr."Convert"  &go.string."Convert"þ&go.string."Convert"ConvertþZgo.string.hdr."func(color.Color) color.Color"  Rgo.string."func(color.Color) color.Color"þRgo.string."func(color.Color) color.Color"@<func(color.Color) color.Colorþ\type.func(image/color.Color) image/color.Colorõr¹30€ runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(color.Color) color.Color"pngo.weak.type.*func(image/color.Color) image/color.Colorð\type.func(image/color.Color) image/color.ColorÀ€\type.func(image/color.Color) image/color.Colorð,type.image/color.Color€,type.image/color.Colorþ¦go.typelink.func(color.Color) color.Color	func(image/color.Color) image/color.Color\type.func(image/color.Color) image/color.Colorþngo.string.hdr."func() (uint32, uint32, uint32, uint32)"  'fgo.string."func() (uint32, uint32, uint32, uint32)"þfgo.string."func() (uint32, uint32, uint32, uint32)"PPfunc() (uint32, uint32, uint32, uint32)þXtype.func() (uint32, uint32, uint32, uint32)°°ÌǤè30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func() (uint32, uint32, uint32, uint32)"pjgo.weak.type.*func() (uint32, uint32, uint32, uint32)ðXtype.func() (uint32, uint32, uint32, uint32)ÀðXtype.func() (uint32, uint32, uint32, uint32)ðtype.uint32€type.uint32type.uint32 type.uint32þ¶go.typelink.func() (uint32, uint32, uint32, uint32)	func() (uint32, uint32, uint32, uint32)Xtype.func() (uint32, uint32, uint32, uint32)þ type.*"".Uniform  ®Q f6J0  runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.Uniform"p2go.weak.type.**"".Uniform€type."".Uniform` type.*"".Uniform°à type.*"".Uniformà$go.string.hdr."At"€Jtype.func(int, int) image/color.Colordtype.func(*"".Uniform, int, int) image/color.Color  "".(*Uniform).At° "".(*Uniform).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðFtype.func(*"".Uniform) "".Rectangle€("".(*Uniform).Bounds("".(*Uniform).Bounds 4go.string.hdr."ColorModel"À:type.func() image/color.ModelÐPtype.func(*"".Uniform) image/color.Modelà0"".(*Uniform).ColorModelð0"".(*Uniform).ColorModel€.go.string.hdr."Convert" \type.func(image/color.Color) image/color.Color°vtype.func(*"".Uniform, image/color.Color) image/color.ColorÀ*"".(*Uniform).ConvertÐ*"".(*Uniform).Convertà,go.string.hdr."Opaque"€ type.func() bool6type.func(*"".Uniform) bool ("".(*Uniform).Opaque°("".(*Uniform).OpaqueÀ(go.string.hdr."RGBA"àXtype.func() (uint32, uint32, uint32, uint32)ðntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)€$"".(*Uniform).RGBA$"".(*Uniform).RGBAþTgo.string.hdr."*image.YCbCrSubsampleRatio"  Lgo.string."*image.YCbCrSubsampleRatio"þLgo.string."*image.YCbCrSubsampleRatio"@6*image.YCbCrSubsampleRatioþFgo.string.hdr."YCbCrSubsampleRatio"  >go.string."YCbCrSubsampleRatio"þ>go.string."YCbCrSubsampleRatio"0(YCbCrSubsampleRatioþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"  'fgo.string."func(*image.YCbCrSubsampleRatio) string"þfgo.string."func(*image.YCbCrSubsampleRatio) string"PPfunc(*image.YCbCrSubsampleRatio) stringþRtype.func(*"".YCbCrSubsampleRatio) stringu!Ad30€ runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"pdgo.weak.type.*func(*"".YCbCrSubsampleRatio) stringðRtype.func(*"".YCbCrSubsampleRatio) stringÀ€Rtype.func(*"".YCbCrSubsampleRatio) stringð8type.*"".YCbCrSubsampleRatio€type.stringþ°go.typelink.func(*image.YCbCrSubsampleRatio) string	func(*"".YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) stringþ8type.*"".YCbCrSubsampleRatioÀÀ˜àË&60  runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."*image.YCbCrSubsampleRatio"pJgo.weak.type.**"".YCbCrSubsampleRatio€6type."".YCbCrSubsampleRatio`8type.*"".YCbCrSubsampleRatio°à8type.*"".YCbCrSubsampleRatioà,go.string.hdr."String"€$type.func() stringRtype.func(*"".YCbCrSubsampleRatio) string @"".(*YCbCrSubsampleRatio).String°@"".(*YCbCrSubsampleRatio).StringþRgo.string.hdr."image.YCbCrSubsampleRatio"  Jgo.string."image.YCbCrSubsampleRatio"þJgo.string."image.YCbCrSubsampleRatio"@4image.YCbCrSubsampleRatioþlgo.string.hdr."func(image.YCbCrSubsampleRatio) string"  &dgo.string."func(image.YCbCrSubsampleRatio) string"þdgo.string."func(image.YCbCrSubsampleRatio) string"PNfunc(image.YCbCrSubsampleRatio) stringþPtype.func("".YCbCrSubsampleRatio) stringËO‚Ê30€ runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(image.YCbCrSubsampleRatio) string"pbgo.weak.type.*func("".YCbCrSubsampleRatio) stringðPtype.func("".YCbCrSubsampleRatio) stringÀ€Ptype.func("".YCbCrSubsampleRatio) stringð6type."".YCbCrSubsampleRatio€type.stringþ¬go.typelink.func(image.YCbCrSubsampleRatio) string	func("".YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) stringþ6type."".YCbCrSubsampleRatio°°ªX)â‚0  runtime.algarray@runtime.gcbits.PRgo.string.hdr."image.YCbCrSubsampleRatio"p8type.*"".YCbCrSubsampleRatio`€6type."".YCbCrSubsampleRatio€Fgo.string.hdr."YCbCrSubsampleRatio""go.importpath."". Ð6type."".YCbCrSubsampleRatioÐ,go.string.hdr."String"ð$type.func() string€Ptype.func("".YCbCrSubsampleRatio) string@"".(*YCbCrSubsampleRatio).String :"".YCbCrSubsampleRatio.Stringþ"runtime.gcbits.49Iþ6go.string.hdr."image.YCbCr"  .go.string."image.YCbCr"þ.go.string."image.YCbCr" image.YCbCrþ$go.string.hdr."Cb"  go.string."Cb"þgo.string."Cb"Cbþ$go.string.hdr."Cr"  go.string."Cr"þgo.string."Cr"Crþ.go.string.hdr."YStride"  &go.string."YStride"þ&go.string."YStride"YStrideþ.go.string.hdr."CStride"  &go.string."CStride"þ&go.string."CStride"CStrideþ<go.string.hdr."SubsampleRatio"  4go.string."SubsampleRatio"þ4go.string."SubsampleRatio" SubsampleRatioþ*go.string.hdr."YCbCr"  "go.string."YCbCr"þ"go.string."YCbCr"YCbCrþtype."".YCbCr°°€8¼Ãa¯0HPX`.0à runtime.algarray@"runtime.gcbits.49P6go.string.hdr."image.YCbCr"ptype.*"".YCbCr€°type."".YCbCr°"go.string.hdr."Y"Ðtype.[]uint8€$go.string.hdr."Cb" type.[]uint8Ð$go.string.hdr."Cr"ðtype.[]uint8 .go.string.hdr."YStride"Àtype.intð.go.string.hdr."CStride"type.intÀ<go.string.hdr."SubsampleRatio"à6type."".YCbCrSubsampleRatio(go.string.hdr."Rect"°"type."".Rectangle`àtype."".YCbCrà*go.string.hdr."YCbCr"ð"go.importpath."".€°type."".YCbCrþ8go.string.hdr."*image.YCbCr"  0go.string."*image.YCbCr"þ0go.string."*image.YCbCr" *image.YCbCrþpgo.string.hdr."func(*image.YCbCr, int, int) color.Color"  (hgo.string."func(*image.YCbCr, int, int) color.Color"þhgo.string."func(*image.YCbCr, int, int) color.Color"`Rfunc(*image.YCbCr, int, int) color.Colorþ`type.func(*"".YCbCr, int, int) image/color.Color°°óGÏ30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.YCbCr, int, int) color.Color"prgo.weak.type.*func(*"".YCbCr, int, int) image/color.Colorð`type.func(*"".YCbCr, int, int) image/color.ColorÀ `type.func(*"".YCbCr, int, int) image/color.Colorðtype.*"".YCbCr€type.inttype.int ,type.image/color.ColorþÀgo.typelink.func(*image.YCbCr, int, int) color.Color	func(*"".YCbCr, int, int) image/color.Color`type.func(*"".YCbCr, int, int) image/color.Colorþdgo.string.hdr."func(*image.YCbCr) image.Rectangle"  "\go.string."func(*image.YCbCr) image.Rectangle"þ\go.string."func(*image.YCbCr) image.Rectangle"PFfunc(*image.YCbCr) image.RectangleþBtype.func(*"".YCbCr) "".Rectangle5;»30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.YCbCr) image.Rectangle"pTgo.weak.type.*func(*"".YCbCr) "".RectangleðBtype.func(*"".YCbCr) "".RectangleÀ€Btype.func(*"".YCbCr) "".Rectangleðtype.*"".YCbCr€"type."".Rectangleþ–go.typelink.func(*image.YCbCr) image.Rectangle	func(*"".YCbCr) "".RectangleBtype.func(*"".YCbCr) "".Rectangleþ`go.string.hdr."func(*image.YCbCr, int, int) int"   Xgo.string."func(*image.YCbCr, int, int) int"þXgo.string."func(*image.YCbCr, int, int) int"PBfunc(*image.YCbCr, int, int) intþDtype.func(*"".YCbCr, int, int) int°°?@ÛÒ30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.YCbCr, int, int) int"pVgo.weak.type.*func(*"".YCbCr, int, int) intðDtype.func(*"".YCbCr, int, int) intÀ Dtype.func(*"".YCbCr, int, int) intðtype.*"".YCbCr€type.inttype.int type.intþ”go.typelink.func(*image.YCbCr, int, int) int	func(*"".YCbCr, int, int) intDtype.func(*"".YCbCr, int, int) intþ\go.string.hdr."func(*image.YCbCr) color.Model"  Tgo.string."func(*image.YCbCr) color.Model"þTgo.string."func(*image.YCbCr) color.Model"@>func(*image.YCbCr) color.ModelþLtype.func(*"".YCbCr) image/color.Model Zp30€ runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.YCbCr) color.Model"p^go.weak.type.*func(*"".YCbCr) image/color.ModelðLtype.func(*"".YCbCr) image/color.ModelÀ€Ltype.func(*"".YCbCr) image/color.Modelðtype.*"".YCbCr€,type.image/color.Modelþ˜go.typelink.func(*image.YCbCr) color.Model	func(*"".YCbCr) image/color.ModelLtype.func(*"".YCbCr) image/color.ModelþNgo.string.hdr."func(*image.YCbCr) bool"  Fgo.string."func(*image.YCbCr) bool"þFgo.string."func(*image.YCbCr) bool"00func(*image.YCbCr) boolþ2type.func(*"".YCbCr) bool¬›30€ runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.YCbCr) bool"pDgo.weak.type.*func(*"".YCbCr) boolð2type.func(*"".YCbCr) boolÀ€2type.func(*"".YCbCr) boolðtype.*"".YCbCr€type.boolþpgo.typelink.func(*image.YCbCr) bool	func(*"".YCbCr) bool2type.func(*"".YCbCr) boolþ~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"  /vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"þvgo.string."func(*image.YCbCr, image.Rectangle) image.Image"``func(*image.YCbCr, image.Rectangle) image.ImageþVtype.func(*"".YCbCr, "".Rectangle) "".Image  ÷NY¡30€ runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"phgo.weak.type.*func(*"".YCbCr, "".Rectangle) "".ImageðVtype.func(*"".YCbCr, "".Rectangle) "".ImageÀVtype.func(*"".YCbCr, "".Rectangle) "".Imageðtype.*"".YCbCr€"type."".Rectangletype."".ImageþÄgo.typelink.func(*image.YCbCr, image.Rectangle) image.Image	func(*"".YCbCr, "".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Imageþpgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"  (hgo.string."func(*image.YCbCr, int, int) color.YCbCr"þhgo.string."func(*image.YCbCr, int, int) color.YCbCr"`Rfunc(*image.YCbCr, int, int) color.YCbCrþ`type.func(*"".YCbCr, int, int) image/color.YCbCr°°ߚØ30€ runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"prgo.weak.type.*func(*"".YCbCr, int, int) image/color.YCbCrð`type.func(*"".YCbCr, int, int) image/color.YCbCrÀ `type.func(*"".YCbCr, int, int) image/color.YCbCrðtype.*"".YCbCr€type.inttype.int ,type.image/color.YCbCrþÀgo.typelink.func(*image.YCbCr, int, int) color.YCbCr	func(*"".YCbCr, int, int) image/color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCrþ.go.string.hdr."COffset"  &go.string."COffset"þ&go.string."COffset"COffsetþ.go.string.hdr."YCbCrAt"  &go.string."YCbCrAt"þ&go.string."YCbCrAt"YCbCrAtþTgo.string.hdr."func(int, int) color.YCbCr"  Lgo.string."func(int, int) color.YCbCr"þLgo.string."func(int, int) color.YCbCr"@6func(int, int) color.YCbCrþJtype.func(int, int) image/color.YCbCr  ´Áþå30€ runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.YCbCr"p\go.weak.type.*func(int, int) image/color.YCbCrðJtype.func(int, int) image/color.YCbCrÀJtype.func(int, int) image/color.YCbCrðtype.int€type.int,type.image/color.YCbCrþŽgo.typelink.func(int, int) color.YCbCr	func(int, int) image/color.YCbCrJtype.func(int, int) image/color.YCbCrþ.go.string.hdr."YOffset"  &go.string."YOffset"þ&go.string."YOffset"YOffsetþtype.*"".YCbCràà2öЫ6^0  runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.YCbCr"p.go.weak.type.**"".YCbCr€type."".YCbCr`type.*"".YCbCr°àtype.*"".YCbCrà$go.string.hdr."At"€Jtype.func(int, int) image/color.Color`type.func(*"".YCbCr, int, int) image/color.Color "".(*YCbCr).At°"".(*YCbCr).AtÀ,go.string.hdr."Bounds"à0type.func() "".RectangleðBtype.func(*"".YCbCr) "".Rectangle€$"".(*YCbCr).Bounds$"".(*YCbCr).Bounds .go.string.hdr."COffset"À.type.func(int, int) intÐDtype.func(*"".YCbCr, int, int) intà&"".(*YCbCr).COffsetð&"".(*YCbCr).COffset€4go.string.hdr."ColorModel" :type.func() image/color.Model°Ltype.func(*"".YCbCr) image/color.ModelÀ,"".(*YCbCr).ColorModelÐ,"".(*YCbCr).ColorModelà,go.string.hdr."Opaque"€ type.func() bool2type.func(*"".YCbCr) bool $"".(*YCbCr).Opaque°$"".(*YCbCr).OpaqueÀ0go.string.hdr."SubImage"à@type.func("".Rectangle) "".ImageðVtype.func(*"".YCbCr, "".Rectangle) "".Image€("".(*YCbCr).SubImage("".(*YCbCr).SubImage .go.string.hdr."YCbCrAt"ÀJtype.func(int, int) image/color.YCbCrÐ`type.func(*"".YCbCr, int, int) image/color.YCbCrà&"".(*YCbCr).YCbCrAtð&"".(*YCbCr).YCbCrAt€.go.string.hdr."YOffset" .type.func(int, int) int°Dtype.func(*"".YCbCr, int, int) intÀ&"".(*YCbCr).YOffsetÐ&"".(*YCbCr).YOffsetþ*runtime.gcbits.490001Iþ:go.string.hdr."image.NYCbCrA"  
2go.string."image.NYCbCrA"þ2go.string."image.NYCbCrA" image.NYCbCrAþ"go.string.hdr."A"  go.string."A"þgo.string."A"Aþ.go.string.hdr."AStride"  &go.string."AStride"þ&go.string."AStride"AStrideþ.go.string.hdr."NYCbCrA"  &go.string."NYCbCrA"þ&go.string."NYCbCrA"NYCbCrAþtype."".NYCbCrAðð ˆR5Ä€˜0à runtime.algarray@*runtime.gcbits.490001P:go.string.hdr."image.NYCbCrA"p type.*"".NYCbCrA€°type."".NYCbCrAÐtype."".YCbCr€"go.string.hdr."A" type.[]uint8Ð.go.string.hdr."AStride"ðtype.int` type."".NYCbCrA .go.string.hdr."NYCbCrA"°"go.importpath."".Àðtype."".NYCbCrAþ<go.string.hdr."*image.NYCbCrA"  4go.string."*image.NYCbCrA"þ4go.string."*image.NYCbCrA" *image.NYCbCrAþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þdgo.string.hdr."func(*image.NYCbCrA, int, int) int"  "\go.string."func(*image.NYCbCrA, int, int) int"þ\go.string."func(*image.NYCbCrA, int, int) int"PFfunc(*image.NYCbCrA, int, int) intþHtype.func(*"".NYCbCrA, int, int) int°°D,ö§30€ runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.NYCbCrA, int, int) int"pZgo.weak.type.*func(*"".NYCbCrA, int, int) intðHtype.func(*"".NYCbCrA, int, int) intÀ Htype.func(*"".NYCbCrA, int, int) intð type.*"".NYCbCrA€type.inttype.int type.intþœgo.typelink.func(*image.NYCbCrA, int, int) int	func(*"".NYCbCrA, int, int) intHtype.func(*"".NYCbCrA, int, int) intþtgo.string.hdr."func(*image.NYCbCrA, int, int) color.Color"  *lgo.string."func(*image.NYCbCrA, int, int) color.Color"þlgo.string."func(*image.NYCbCrA, int, int) color.Color"`Vfunc(*image.NYCbCrA, int, int) color.Colorþdtype.func(*"".NYCbCrA, int, int) image/color.Color°°„³'~30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.NYCbCrA, int, int) color.Color"pvgo.weak.type.*func(*"".NYCbCrA, int, int) image/color.Colorðdtype.func(*"".NYCbCrA, int, int) image/color.ColorÀ dtype.func(*"".NYCbCrA, int, int) image/color.Colorð type.*"".NYCbCrA€type.inttype.int ,type.image/color.ColorþÈgo.typelink.func(*image.NYCbCrA, int, int) color.Color	func(*"".NYCbCrA, int, int) image/color.Colordtype.func(*"".NYCbCrA, int, int) image/color.Colorþhgo.string.hdr."func(*image.NYCbCrA) image.Rectangle"  $`go.string."func(*image.NYCbCrA) image.Rectangle"þ`go.string."func(*image.NYCbCrA) image.Rectangle"PJfunc(*image.NYCbCrA) image.RectangleþFtype.func(*"".NYCbCrA) "".RectangleêãÚO30€ runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.NYCbCrA) image.Rectangle"pXgo.weak.type.*func(*"".NYCbCrA) "".RectangleðFtype.func(*"".NYCbCrA) "".RectangleÀ€Ftype.func(*"".NYCbCrA) "".Rectangleð type.*"".NYCbCrA€"type."".Rectangleþžgo.typelink.func(*image.NYCbCrA) image.Rectangle	func(*"".NYCbCrA) "".RectangleFtype.func(*"".NYCbCrA) "".Rectangleþ`go.string.hdr."func(*image.NYCbCrA) color.Model"   Xgo.string."func(*image.NYCbCrA) color.Model"þXgo.string."func(*image.NYCbCrA) color.Model"PBfunc(*image.NYCbCrA) color.ModelþPtype.func(*"".NYCbCrA) image/color.Model%î‘\30€ runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.NYCbCrA) color.Model"pbgo.weak.type.*func(*"".NYCbCrA) image/color.ModelðPtype.func(*"".NYCbCrA) image/color.ModelÀ€Ptype.func(*"".NYCbCrA) image/color.Modelð type.*"".NYCbCrA€,type.image/color.Modelþ go.typelink.func(*image.NYCbCrA) color.Model	func(*"".NYCbCrA) image/color.ModelPtype.func(*"".NYCbCrA) image/color.Modelþxgo.string.hdr."func(*image.NYCbCrA, int, int) color.NYCbCrA"  ,pgo.string."func(*image.NYCbCrA, int, int) color.NYCbCrA"þpgo.string."func(*image.NYCbCrA, int, int) color.NYCbCrA"`Zfunc(*image.NYCbCrA, int, int) color.NYCbCrAþhtype.func(*"".NYCbCrA, int, int) image/color.NYCbCrA°°¬8Ÿë30€ runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.NYCbCrA, int, int) color.NYCbCrA"pzgo.weak.type.*func(*"".NYCbCrA, int, int) image/color.NYCbCrAðhtype.func(*"".NYCbCrA, int, int) image/color.NYCbCrAÀ htype.func(*"".NYCbCrA, int, int) image/color.NYCbCrAð type.*"".NYCbCrA€type.inttype.int 0type.image/color.NYCbCrAþÐgo.typelink.func(*image.NYCbCrA, int, int) color.NYCbCrA	func(*"".NYCbCrA, int, int) image/color.NYCbCrAhtype.func(*"".NYCbCrA, int, int) image/color.NYCbCrAþRgo.string.hdr."func(*image.NYCbCrA) bool"  Jgo.string."func(*image.NYCbCrA) bool"þJgo.string."func(*image.NYCbCrA) bool"@4func(*image.NYCbCrA) boolþ6type.func(*"".NYCbCrA) bool©ËÌí30€ runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.NYCbCrA) bool"pHgo.weak.type.*func(*"".NYCbCrA) boolð6type.func(*"".NYCbCrA) boolÀ€6type.func(*"".NYCbCrA) boolð type.*"".NYCbCrA€type.boolþxgo.typelink.func(*image.NYCbCrA) bool	func(*"".NYCbCrA) bool6type.func(*"".NYCbCrA) boolþ‚go.string.hdr."func(*image.NYCbCrA, image.Rectangle) image.Image"  1zgo.string."func(*image.NYCbCrA, image.Rectangle) image.Image"þzgo.string."func(*image.NYCbCrA, image.Rectangle) image.Image"pdfunc(*image.NYCbCrA, image.Rectangle) image.ImageþZtype.func(*"".NYCbCrA, "".Rectangle) "".Image  Hµ{¥30€ runtime.algarray@"runtime.gcbits.01P‚go.string.hdr."func(*image.NYCbCrA, image.Rectangle) image.Image"plgo.weak.type.*func(*"".NYCbCrA, "".Rectangle) "".ImageðZtype.func(*"".NYCbCrA, "".Rectangle) "".ImageÀZtype.func(*"".NYCbCrA, "".Rectangle) "".Imageð type.*"".NYCbCrA€"type."".Rectangletype."".ImageþÌgo.typelink.func(*image.NYCbCrA, image.Rectangle) image.Image	func(*"".NYCbCrA, "".Rectangle) "".ImageZtype.func(*"".NYCbCrA, "".Rectangle) "".Imageþtgo.string.hdr."func(*image.NYCbCrA, int, int) color.YCbCr"  *lgo.string."func(*image.NYCbCrA, int, int) color.YCbCr"þlgo.string."func(*image.NYCbCrA, int, int) color.YCbCr"`Vfunc(*image.NYCbCrA, int, int) color.YCbCrþdtype.func(*"".NYCbCrA, int, int) image/color.YCbCr°°T…­30€ runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.NYCbCrA, int, int) color.YCbCr"pvgo.weak.type.*func(*"".NYCbCrA, int, int) image/color.YCbCrðdtype.func(*"".NYCbCrA, int, int) image/color.YCbCrÀ dtype.func(*"".NYCbCrA, int, int) image/color.YCbCrð type.*"".NYCbCrA€type.inttype.int ,type.image/color.YCbCrþÈgo.typelink.func(*image.NYCbCrA, int, int) color.YCbCr	func(*"".NYCbCrA, int, int) image/color.YCbCrdtype.func(*"".NYCbCrA, int, int) image/color.YCbCrþ.go.string.hdr."AOffset"  &go.string."AOffset"þ&go.string."AOffset"AOffsetþ2go.string.hdr."NYCbCrAAt"  	*go.string."NYCbCrAAt"þ*go.string."NYCbCrAAt" NYCbCrAAtþXgo.string.hdr."func(int, int) color.NYCbCrA"  Pgo.string."func(int, int) color.NYCbCrA"þPgo.string."func(int, int) color.NYCbCrA"@:func(int, int) color.NYCbCrAþNtype.func(int, int) image/color.NYCbCrA  
ˆ—30€ runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int) color.NYCbCrA"p`go.weak.type.*func(int, int) image/color.NYCbCrAðNtype.func(int, int) image/color.NYCbCrAÀNtype.func(int, int) image/color.NYCbCrAðtype.int€type.int0type.image/color.NYCbCrAþ–go.typelink.func(int, int) color.NYCbCrA	func(int, int) image/color.NYCbCrANtype.func(int, int) image/color.NYCbCrAþ type.*"".NYCbCrA 	 	"öå›6

r0  runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.NYCbCrA"p2go.weak.type.**"".NYCbCrA€type."".NYCbCrA` type.*"".NYCbCrA°à type.*"".NYCbCrAà.go.string.hdr."AOffset"€.type.func(int, int) intHtype.func(*"".NYCbCrA, int, int) int *"".(*NYCbCrA).AOffset°*"".(*NYCbCrA).AOffsetÀ$go.string.hdr."At"àJtype.func(int, int) image/color.Colorðdtype.func(*"".NYCbCrA, int, int) image/color.Color€ "".(*NYCbCrA).At "".(*NYCbCrA).At ,go.string.hdr."Bounds"À0type.func() "".RectangleÐFtype.func(*"".NYCbCrA) "".Rectangleà("".(*NYCbCrA).Boundsð("".(*NYCbCrA).Bounds€.go.string.hdr."COffset" .type.func(int, int) int°Htype.func(*"".NYCbCrA, int, int) intÀ*"".(*NYCbCrA).COffsetÐ*"".(*NYCbCrA).COffsetà4go.string.hdr."ColorModel"€:type.func() image/color.ModelPtype.func(*"".NYCbCrA) image/color.Model 0"".(*NYCbCrA).ColorModel°0"".(*NYCbCrA).ColorModelÀ2go.string.hdr."NYCbCrAAt"àNtype.func(int, int) image/color.NYCbCrAðhtype.func(*"".NYCbCrA, int, int) image/color.NYCbCrA€."".(*NYCbCrA).NYCbCrAAt."".(*NYCbCrA).NYCbCrAAt ,go.string.hdr."Opaque"À type.func() boolÐ6type.func(*"".NYCbCrA) boolà("".(*NYCbCrA).Opaqueð("".(*NYCbCrA).Opaque€0go.string.hdr."SubImage" @type.func("".Rectangle) "".Image°Ztype.func(*"".NYCbCrA, "".Rectangle) "".ImageÀ,"".(*NYCbCrA).SubImageÐ,"".(*NYCbCrA).SubImageà.go.string.hdr."YCbCrAt"€Jtype.func(int, int) image/color.YCbCrdtype.func(*"".NYCbCrA, int, int) image/color.YCbCr *"".(*NYCbCrA).YCbCrAt°*"".(*NYCbCrA).YCbCrAtÀ.go.string.hdr."YOffset"à.type.func(int, int) intðHtype.func(*"".NYCbCrA, int, int) int€	*"".(*NYCbCrA).YOffset	*"".(*NYCbCrA).YOffsetþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·d98f60bd8519d0c68364b2a1d83af357þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·d98f60bd8519d0c68364b2a1d83af357þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·1347047f6245a35b91e9a4f213167d52þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578þHgo.string.hdr."*image.PalettedImage"  @go.string."*image.PalettedImage"þ@go.string."*image.PalettedImage"0**image.PalettedImageþ,type.*"".PalettedImageíº6
0  runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*image.PalettedImage"p>go.weak.type.**"".PalettedImage€*type."".PalettedImageþFgo.string.hdr."image.PalettedImage"  >go.string."image.PalettedImage"þ>go.string."image.PalettedImage"0(image.PalettedImageþ:go.string.hdr."PalettedImage"  
2go.string."PalettedImage"þ2go.string."PalettedImage" PalettedImageþ*type."".PalettedImageÀÀ¶©"0à runtime.algarray@"runtime.gcbits.03PFgo.string.hdr."image.PalettedImage"p,type.*"".PalettedImage€°*type."".PalettedImage°$go.string.hdr."At"ÐJtype.func(int, int) image/color.Colorà,go.string.hdr."Bounds"€0type.func() "".Rectangle8go.string.hdr."ColorIndexAt"°2type.func(int, int) uint8À4go.string.hdr."ColorModel"à:type.func() image/color.Model`ð*type."".PalettedImageð:go.string.hdr."PalettedImage"€"go.importpath."".À*type."".PalettedImageþ*go.string.hdr."bufio"  "go.string."bufio"þ"go.string."bufio"bufioþ(go.importpath.bufio.  "go.string."bufio"þ,go.string.hdr."errors"  $go.string."errors"þ$go.string."errors"errorsþ*go.importpath.errors.  $go.string."errors"þ$go.string.hdr."io"  go.string."io"þgo.string."io"ioþ"go.importpath.io.  go.string."io"þ6go.string.hdr."image/color"  .go.string."image/color"þ.go.string."image/color" image/colorþ4go.importpath.image/color.  .go.string."image/color"þ.go.string.hdr."strconv"  &go.string."strconv"þ&go.string."strconv"strconvþ,go.importpath.strconv.  &go.string."strconv"þ"".Image.At·f"".Image.Atþ$"".Image.Bounds·f"".Image.Boundsþ,"".Image.ColorModel·f&"".Image.ColorModelþ*"".(*Point).String·f$"".(*Point).Stringþ$"".(*Point).Add·f"".(*Point).Addþ$"".(*Point).Sub·f"".(*Point).Subþ$"".(*Point).Mul·f"".(*Point).Mulþ$"".(*Point).Div·f"".(*Point).Divþ""".(*Point).In·f"".(*Point).Inþ$"".(*Point).Mod·f"".(*Point).Modþ""".(*Point).Eq·f"".(*Point).Eqþ2"".(*Rectangle).String·f,"".(*Rectangle).Stringþ*"".(*Rectangle).Dx·f$"".(*Rectangle).Dxþ*"".(*Rectangle).Dy·f$"".(*Rectangle).Dyþ."".(*Rectangle).Size·f("".(*Rectangle).Sizeþ,"".(*Rectangle).Add·f&"".(*Rectangle).Addþ,"".(*Rectangle).Sub·f&"".(*Rectangle).Subþ0"".(*Rectangle).Inset·f*"".(*Rectangle).Insetþ8"".(*Rectangle).Intersect·f2"".(*Rectangle).Intersectþ0"".(*Rectangle).Union·f*"".(*Rectangle).Unionþ0"".(*Rectangle).Empty·f*"".(*Rectangle).Emptyþ*"".(*Rectangle).Eq·f$"".(*Rectangle).Eqþ6"".(*Rectangle).Overlaps·f0"".(*Rectangle).Overlapsþ*"".(*Rectangle).In·f$"".(*Rectangle).Inþ0"".(*Rectangle).Canon·f*"".(*Rectangle).Canonþ*"".(*Rectangle).At·f$"".(*Rectangle).Atþ2"".(*Rectangle).Bounds·f,"".(*Rectangle).Boundsþ:"".(*Rectangle).ColorModel·f4"".(*Rectangle).ColorModelþ.type..hash."".Config·f(type..hash."".Configþ*type..eq."".Config·f$type..eq."".Configþ""".reader.Peek·f"".reader.Peekþ""".reader.Read·f"".reader.ReadþF"".(*YCbCrSubsampleRatio).String·f@"".(*YCbCrSubsampleRatio).Stringþ."".(*NYCbCrA).Bounds·f("".(*NYCbCrA).Boundsþ0"".(*NYCbCrA).YCbCrAt·f*"".(*NYCbCrA).YCbCrAtþ0"".(*NYCbCrA).YOffset·f*"".(*NYCbCrA).YOffsetþ0"".(*NYCbCrA).COffset·f*"".(*NYCbCrA).COffsetþ,"".PalettedImage.At·f&"".PalettedImage.Atþ4"".PalettedImage.Bounds·f."".PalettedImage.Boundsþ@"".PalettedImage.ColorIndexAt·f:"".PalettedImage.ColorIndexAtþ<"".PalettedImage.ColorModel·f6"".PalettedImage.ColorModelÿÿgo13ld