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_race / image.a
Size: Mime:
!<arch>
__.PKGDEF       0           0     0     644     29409     `
go object linux amd64 go1.6 X:none
build id "fb3902578b2d834195c501555afda3f17e0a838a"

$$
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     560648    `
go object linux amd64 go1.6 X:none

!
go13ldbufio.aerrors.aio.aimage/color.astrconv.aþ""".RegisterFormat  dH‹%HD$ðH;A†åHìH‹œ$H‰$è1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‰œ$€H‰œ$ˆH‹œ$˜H‰\$`H‹œ$ H‰\$hH‹œ$¨H‰\$pH‹œ$°H‰\$xH‹œ$¸H‰œ$€H‹œ$ÀH‰œ$ˆHH‰$èH‹H‹H‹
H‰ËH)ÃHƒû}HHH‰$H‰T$HH‰T$H‰D$H‰L$XH‰L$H‰ÃH‰D$PHÿÃH‰\$ èH‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰L$XH9ˇ¿H‰\$PH‰ÓH‰T$HH‰ÅH‰D$@Hkí0HëH‰$HÇD$0èH‹\$HH‹l$@Hkí0HëHl$`H‰\$H‰l$H-H‰,$èHH‰$èH‹\$PH‰H‹\$XH‰H‹\$H€=uH‰èHĐÃH-H‰,$H‰\$èëÜèèéùýÿÿÌÌÌÌÌÌÌÌÌ.
X*runtime.racefuncenterÚ"".formatsì runtime.racereadú"".formatsˆ"".formats– "".formats¼ type.[]"".format "runtime.growsliceÂ,runtime.racewriterangetype."".format¢(runtime.typedmemmove°"".formatsÂ"runtime.racewriteÚ"".formatsò "".formatsˆ(runtime.writeBarrierœ"".formats¦(runtime.racefuncexitÄ"".formatsà.runtime.writebarrierptrî$runtime.panicsliceü0runtime.morestack_noctxt` "".autotmp_0002Ÿtype.int"".autotmp_0001 type.[]"".format"".autotmp_0000_type."".format"".decodeConfigPNtype.func(io.Reader) ("".Config, error)"".decode@Ltype.func(io.Reader) ("".Image, error)"".magic type.string"".nametype.string  ¿Ÿ ŸB¸+Š«0B>Tgclocals·61b167ad47cde17c5a09bf89f76e51adTgclocals·219d8d154da9b833882f5372d7b1af996$GOROOT/src/image/format.goþ"".asReaderÀÀdH‹%H„$`ÿÿÿH;A†òHì H‹œ$ H‰$è1ÛH‰œ$8H‰œ$@1ÛH‰œ$ H‰œ$¨HH‰$H‹œ$(H‰\$H‹œ$0H‰\$Hœ$ H‰\$è¶\$ H‹”$ H‰T$pH‹Œ$¨H‰L$x€ûtH‰”$8H‰Œ$@èHÄ ÃH‹Œ$(H‹„$0H‰Œ$€H‰„$ˆHÇD$0HÇD$XHH‰$H‰Œ$H‰L$H‰„$˜H‰D$H\$XH‰\$è¶\$ H‹L$X€û„ˆH‰L$@H‰$èH‹L$@H‹YH‹l$0H9ë|gH‰ÈH‰D$PH‹1íH9èt"H‹\$PH‰œ$@H‰„$8èHÄ ÃHH‰$HH‰\$HH‰\$èH‹D$ë¯H‹\$0Hƒû}	HÇD$0HH‰$èH‹L$0H‹D$H‰D$8H‰D$HH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$`H‰Œ$àH‰D$hH‰„$èHDŽ$ÿÿÿÿHDŽ$ÿÿÿÿH‹\$HH‰$HÇD$XèH‹\$HHƒût,H¬$ÈH‰\$H‰l$H-H‰,$èH‹D$8écþÿÿ‰ëÐèééüÿÿÌÌÌÌÌÌÌÌÌ.
^*runtime.racefuncenter´type."".reader”$runtime.assertI2I2†(runtime.racefuncexitˆ$type.*bufio.Readerâ$runtime.assertI2T2¤ runtime.racereadè>go.itab.*bufio.Reader."".readerª(runtime.racefuncexitÈ$type.*bufio.ReaderÞtype."".readerö>go.itab.*bufio.Reader."".readerŠ runtime.typ2ItabÎ"type.bufio.Readerà"runtime.newobject–type.[]uint8¼"runtime.makeslice¢	ª runtime.duffzeroœ,runtime.racewriterangeä"type.bufio.Readerö(runtime.typedmemmoveœ0runtime.morestack_noctxt@À""".autotmp_0010$type.*bufio.Reader"".autotmp_0009$type.*bufio.Reader"".autotmp_0008¯"type.bufio.Reader"".autotmp_0006Ÿ$type.*bufio.Reader"".autotmp_0004$type.*bufio.Reader"".autotmp_0003ÿtype."".readerbufio.r·3ÿtype.io.Readerbufio.buf·2ßtype.[]uint8bufio.b·1¯$type.*bufio.Readerbufio.r·6Ï$type.*bufio.Readerbufio.b·4¿$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"À¬¿ÀÑ¿Àì¿ 2XEmÅŠ\[R4.[9n!C0+.°-&Tgclocals·68c9fa00f2dd3a035f977db2d5190cf0Tgclocals·0318f4fe3c9ebb20c9b242b602ec92a76$GOROOT/src/image/format.goþ"".match  dH‹%H;a†íHƒì8H‹\$8H‰$èH‹t$XH‹L$HH9ñtÆD$hèHƒÄ8ÃH‹D$PH‹\$`H‰\$01ÉH‰t$(H‰t$H‰D$ H‰L$H‹l$H9é}qH‰D$H‰$èL‹L$HH‹|$H‹t$H‹T$@¶.L9Ïs]H:¶@8ët L9ÏsEH:¶€û?tÆD$hèHƒÄ8ÃH‰ðHÿÀH‰ùHÿÁH‰L$H‹l$H9é|ÆD$hèHƒÄ8ÃèèèéöþÿÿÌÌÌÌÌÌ
B*runtime.racefuncentert(runtime.racefuncexitø runtime.racereadþ(runtime.racefuncexitÒ(runtime.racefuncexitæ$runtime.panicindexô$runtime.panicindex‚0runtime.morestack_noctxt`p"".autotmp_0018?type.*uint8"".autotmp_0017type.int"".autotmp_0016type.int"".autotmp_0015/type.[]uint8"".autotmp_0014_type.int"".autotmp_0013Otype.int"".~r2Ptype.bool"".b type.[]uint8"".magictype.string(p+op„op)opo>h

T"
	 [CRTgclocals·9ba22629e9611c66625b3db4800944b7Tgclocals·83ead081cd909acab0dcd88a450c18786$GOROOT/src/image/format.goþ"".sniff€€dH‹%HD$H;A†ÞHìðH‹œ$ðH‰$è1ÛH‰œ$H‰œ$H‰œ$H‰œ$ H‰œ$(H‰œ$0HH‰$èH‹H‹H‹H‰œ$ˆ1ÉH‰„$€H‰D$8H‰T$xH‰ÐH‰L$@H‹l$8H9éÇH‰D$HH‰$HÇD$0èH‹\$HHƒû„L‹H‹{H‹sH‹SH‹K H‹k(L‰„$ÀL‰„$H‰¼$ÈH‰¼$˜H‰´$ÐH‰´$ H‰”$ØH‰”$¨H‰Œ$àH‰Œ$°H‰¬$èH‰¬$¸H‹œ$¨H‰\$H‹œ$H‰$H‹œ$øH‹[ ÿÓL‹D$H‹l$H‹T$ H‹L$(H‹D$0L‰D$`H‰l$hH‰T$pH‰D$XH‰L$PHƒù…£Hœ$ H‹H‰$H‹KH‰L$L‰D$H‰l$H‰T$ è¶\$(€ûtmH‹œ$H‰œ$H‹œ$˜H‰œ$H‹œ$ H‰œ$H‹œ$¨H‰œ$ H‹œ$°H‰œ$(H‹œ$¸H‰œ$0èHÄðÃH‹D$HH‹L$@HƒÀ0HÿÁH‰L$@H‹l$8H9éŒ9þÿÿ1ÿH‰¼$ÀH‰¼$H‰¼$ÈH‰¼$H‰¼$ÐH‰¼$H‰¼$ØH‰¼$ H‰¼$àH‰¼$(H‰¼$èH‰¼$0èHÄðÉééýÿÿèéýÿÿ
X*runtime.racefuncenterÊ"".formatsÜ runtime.racereadê"".formatsø"".formats† "".formats˜*runtime.racereadrangeöÂ"".match 	(runtime.racefuncexitÆ(runtime.racefuncexitî0runtime.morestack_noctxt€à"".autotmp_0029type."".format"".autotmp_0028_type."".format"".autotmp_0027Ïtype.*"".format"".autotmp_0026ïtype.int"".autotmp_0025ßtype.int"".autotmp_0020ï type.[]"".format"".err¿type.error"".bŸtype.[]uint8"".f¿type."".format"".~r1 type."".format"".rtype."".reader.à¼ßà’ßàß
€:‚
2ôTE`$o
+ °Ô±Tgclocals·f62a41cb78c03c15bed464e78226a130Tgclocals·c29a587d9b6ca82553d1d08ff007a7786$GOROOT/src/image/format.goþ"".Decode€€dH‹%H„$ÀþÿÿH;A†ÏHìÀH‹œ$ÀH‰$è1ÛH‰œ$ØH‰œ$à1ÛH‰œ$èH‰œ$ð1ÛH‰œ$øH‰œ$H‹Œ$ÈH‹„$Ð1ÛH‰\$pH‰\$x1ÛH‰œ$H‰œ$HH‰$H‰Œ$ÐH‰L$H‰„$ØH‰D$Hœ$H‰\$è¶\$ H‹Œ$H‰Œ$H‹”$H‰”$˜€û„¬H‰ÐH‰L$pH‰D$xH‰Œ$ H‰$H‰„$¨H‰D$èH‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$8H‰´$@H‰¬$HH‰”$PH‰„$`H‰Œ$X1íH9éu_HH‰$è1ÛH‰œ$ØH‰œ$à1ÛH‰œ$èH‰œ$ðH‹H‰œ$øH‹H‰œ$èHÄÀÃHH‰$H‹œ$ H‰\$H‹œ$¨H‰\$èH\$H‹H‰$H‹KH‰L$H‹”$XH‹ÿÓH‹l$H‹T$H‹L$ H‹D$(H‰¬$àH‰¬$ØH‰”$èH‰”$àH‹œ$8H‰œ$èH‹œ$@H‰œ$ðH‰Œ$ðH‰Œ$øH‰„$øH‰„$èHÄÀÃH‹Œ$ÐH‹„$ØH‰Œ$°H‰„$¸HÇD$@HÇD$hHH‰$H‰Œ$ÀH‰L$H‰„$ÈH‰D$H\$hH‰\$è¶\$ H‹L$h€û„†H‰L$PH‰$èH‹L$PH‹YH‹l$@H9ë|eH‰ÈH‰D$`H‹1íH9èt H‹T$`H‰„$H‰ÁH‰”$H‰Ðé‡ýÿÿHH‰$HH‰\$HH‰\$èH‹D$ë±H‹\$@Hƒû}	HÇD$@HH‰$èH‹L$@H‹D$H‰D$HH‰D$XHH‰$H‰L$H‰L$èH‹t$H‹l$ H‹T$(H‹Œ$ÀH‹„$ÈH¼$hWÀHƒÇÐèGøH‰´$ H‰´$hH‰¬$(H‰¬$pH‰”$0H‰”$xH‰Œ$€H‰Œ$€H‰„$ˆH‰„$ˆHDŽ$°ÿÿÿÿHDŽ$¸ÿÿÿÿH‹\$XH‰$HÇD$XèH‹\$XHƒût,H¬$hH‰\$H‰l$H-H‰,$èH‹D$Hé_þÿÿ‰ëÐèéûÿÿÌÌÌÌÌÌÌÌÌÌÌÌ>
^*runtime.racefuncenter´type."".reader”$runtime.assertI2I2Æ"".sniffþ"".ErrFormat runtime.racereadæ"".ErrFormat„"".ErrFormatž(runtime.racefuncexit¼type.io.Reader‚runtime.convI2Iʸ
(runtime.racefuncexitº$type.*bufio.Reader”$runtime.assertI2T2Ö runtime.racereadš
>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Ö,runtime.racewriterangež"type.bufio.Reader°(runtime.typedmemmoveÖ0runtime.morestack_noctxt€€4"".autotmp_0041ÿtype."".reader"".autotmp_0040$type.*bufio.Reader"".autotmp_0036$type.*bufio.Reader"".autotmp_0035¯"type.bufio.Reader"".autotmp_0033¿$type.*bufio.Reader"".autotmp_0031¯$type.*bufio.Reader"".autotmp_0030ßtype."".readerbufio.r·3ÿtype.io.Readerbufio.buf·2¿type.[]uint8bufio.b·1Ï$type.*bufio.Readerbufio.r·6ï$type.*bufio.Readerbufio.b·4ß$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"".errŸtype.error"".m¿type."".Image"".ftype."".format
"".rr¿type."".reader"".~r3`type.error"".~r2@type.string"".~r1 type."".Image"".rtype.io.Reader0"€¸ÿ€Ìÿ€Âÿ€
Dž"
6 dR`mØRD.›YeG2›n!q
+.¶-)Tgclocals·01125e2a5c0350eb923f65fb084fb0beTgclocals·89dd7cd510c646dd78bd230190fb8a366$GOROOT/src/image/format.goþ"".DecodeConfig  dH‹%H„$þÿÿH;A†]HìðH‹œ$ðH‰$è1ÛH‰œ$H‰œ$H‰œ$H‰œ$ 1ÛH‰œ$(H‰œ$01ÛH‰œ$8H‰œ$@H‹Œ$øH‹„$1ÛH‰\$pH‰\$x1ÛH‰œ$H‰œ$HH‰$H‰Œ$ÐH‰L$H‰„$ØH‰D$Hœ$H‰\$è¶\$ H‹Œ$H‰Œ$H‹”$H‰”$˜€û„*H‰ÐH‰L$pH‰D$xH‰Œ$ H‰$H‰„$¨H‰D$èH‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$hH‰´$pH‰¬$xH‰”$€H‰Œ$ˆH‰„$1íH9è…¯1ÛH‰œ$HH‰œ$PH‰œ$XH‰œ$`HH‰$èH‹œ$HH‰œ$H‹œ$PH‰œ$H‹œ$XH‰œ$H‹œ$`H‰œ$ 1ÛH‰œ$(H‰œ$0H‹H‰œ$8H‹H‰œ$@èHÄðÃHH‰$H‹œ$ H‰\$H‹œ$¨H‰\$èH\$H‹H‰$H‹KH‰L$H‹”$H‹ÿÓH‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$(H‰¼$H‰´$0H‰´$H‰¬$8H‰¬$H‰”$@H‰”$ H‹œ$hH‰œ$(H‹œ$pH‰œ$0H‰Œ$àH‰Œ$8H‰„$èH‰„$@èHÄðÃH‹Œ$ÐH‹„$ØH‰Œ$°H‰„$¸HÇD$@HÇD$hHH‰$H‰Œ$ÀH‰L$H‰„$ÈH‰D$H\$hH‰\$è¶\$ H‹L$h€û„†H‰L$PH‰$èH‹L$PH‹YH‹l$@H9ë|eH‰ÈH‰D$`H‹1íH9èt H‹T$`H‰„$ðH‰ÁH‰”$øH‰Ðé	ýÿÿHH‰$HH‰\$HH‰\$èH‹D$ë±H‹\$@Hƒû}	HÇD$@HH‰$èH‹L$@H‹D$H‰D$HH‰D$XHH‰$H‰L$H‰L$èH‹t$H‹l$ H‹T$(H‹Œ$ÀH‹„$ÈH¼$˜WÀHƒÇÐèGøH‰´$H‰´$˜H‰¬$H‰¬$ H‰”$ H‰”$¨H‰Œ$€H‰Œ$°H‰„$ˆH‰„$¸HDŽ$àÿÿÿÿHDŽ$èÿÿÿÿH‹\$XH‰$HÇD$XèH‹\$XHƒût,H¬$˜H‰\$H‰l$H-H‰,$èH‹D$Hé_þÿÿ‰ëÐèé~úÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ>
^*runtime.racefuncenterÔtype."".reader´$runtime.assertI2I2æ"".sniffê"".ErrFormatü runtime.raceread®"".ErrFormatÌ"".ErrFormatæ(runtime.racefuncexit„	type.io.ReaderÊ	runtime.convI2I’
Ô(runtime.racefuncexitÖ
$type.*bufio.Reader°$runtime.assertI2T2ò runtime.raceread¶>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ò,runtime.racewriterangeº"type.bufio.ReaderÌ(runtime.typedmemmoveò0runtime.morestack_noctxt à8"".autotmp_0057Ïtype."".Config"".autotmp_0055ÿtype."".reader"".autotmp_0054$type.*bufio.Reader"".autotmp_0052type."".Config"".autotmp_0050$type.*bufio.Reader"".autotmp_0049¯"type.bufio.Reader"".autotmp_0047Ÿ$type.*bufio.Reader"".autotmp_0045$type.*bufio.Reader"".autotmp_0044ßtype."".readerbufio.r·3ßtype.io.Readerbufio.buf·2¿type.[]uint8bufio.b·1¯$type.*bufio.Readerbufio.r·6Ï$type.*bufio.Readerbufio.b·4¿$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"".errŸtype.error"".ctype."".Config"".ftype."".format
"".rrŸtype."".reader"".~r3€type.error"".~r2`type.string"".~r1 type."".Config"".rtype.io.Reader0"àœßàößàÂߐ@º"
F d¢jÂF.«Y‹u2Ån!q
+.¶-+Tgclocals·404bd706b395d652fac0e702c80086b6Tgclocals·3f96fc659bf6a949de7b329a275098906$GOROOT/src/image/format.goþ"".Point.StringààdH‹%HD$øH;A†HìˆH‹œ$ˆ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ĈÃèéÓþÿÿÌÌÌ
X*runtime.racefuncenteržstrconv.Itoaîstrconv.Itoa go.string."("øgo.string.","Êgo.string.")"ð*runtime.concatstring5®(runtime.racefuncexitÈ0runtime.morestack_noctxt@"".autotmp_0060?type.string"".autotmp_0059type.string"".~r0 type.string"".ptype."".Pointƒ°&BÔ
+KTgclocals·124a21249e8861ddbb76c8b0b45d3971Tgclocals·4839c181b903023c3ae99be60aaf42712$GOROOT/src/image/geom.goþ"".Point.AddààdH‹%H;avNHƒìH‹\$H‰$è1Û1ÛH‹L$ H‹l$0H‹D$(HéH‹l$8HèH‰L$H‰L$@H‰D$H‰D$HèHƒÄÃèëœÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter¨(runtime.racefuncexit¼0runtime.morestack_noctxt`0"".autotmp_0061type."".Point"".~r1@type."".Point"".q type."".Point"".ptype."".Point0I/p0:
TTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.SubààdH‹%H;avNHƒìH‹\$H‰$è1Û1ÛH‹L$ H‹l$0H‹D$(H)éH‹l$8H)èH‰L$H‰L$@H‰D$H‰D$HèHƒÄÃèëœÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter¨(runtime.racefuncexit¼0runtime.morestack_noctxt`0"".autotmp_0062type."".Point"".~r1@type."".Point"".q type."".Point"".ptype."".Point0I/p::
TTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.MulààdH‹%H;avKHƒìH‹\$H‰$èH‹D$01Û1ÛH‹L$ H‹\$(H¯ÈH¯ØH‰L$H‰L$8H‰\$H‰\$@èHƒÄÃèëŸÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter¢(runtime.racefuncexit¶0runtime.morestack_noctxtP0"".autotmp_0063type."".Point"".~r10type."".Point"".k type.int"".ptype."".Point0F/pD2
TTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.Div  dH‹%H;avrHƒìH‹\$H‰$èH‹L$01Û1ÛH‹D$ HƒùÿtDH™H÷ùH‰ÃH‹D$(H‰ÞHƒùÿt&H™H÷ùH‰ÃH‰t$H‰t$8H‰\$H‰\$@èHƒÄÃH÷ØH‰ÃëÚH÷ØH‰Ãë¼èéuÿÿÿÌÌÌÌÌ
:*runtime.racefuncenterÐ(runtime.racefuncexit„0runtime.morestack_noctxtP0"".autotmp_0064type."".Point"".~r10type."".Point"".k type.int"".ptype."".Point0]/0/NY
tTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.InààdH‹%H;avXHƒìH‹\$H‰$èH‹L$H‹D$H‹\$ H9Ë+H‹l$0H9é}!H‹\$(H9ÃH‹l$8H9èœD$@èHƒÄÃÆD$@ëïèë’ÌÌ
:*runtime.racefuncenter®(runtime.racefuncexitÐ0runtime.morestack_noctxtp"".~r1`type.bool"".r "type."".Rectangle"".ptype."".PointL	pXT	
TTgclocals·627bbca91efe935c3ac76737d2026ca6Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.Mod  dH‹%HD$ÈH;A†cHì¸H‹œ$¸H‰$èH‹Œ$àH‹´$èL‹Œ$ÐL‹„$Ø1ÛL‰„$€H‰´$H‰ÏH‰Œ$ˆL‰L$xL)ÉL‰Œ$˜H‰¼$¨H‰´$°L‰„$ L)ÆH‰ÏH‹„$ÀL‹”$È1Û1ÛH‰D$HL‰L$(L)ÈL‰T$PL‰D$0M)ÂH‰D$L‰T$H‰ÂHƒùÿ„”H™H÷ùH‰ÓH‰ÙHƒû}HùL‰ÐHƒþÿtsH™H÷þH‰ÓH‰ØHƒû}HðH‰Œ$ÀH‰„$È1Û1ÛH‰L$XL‰L$8LÉH‰D$`L‰D$@LÀH‰L$hH‰D$pH‰L$H‰Œ$ðH‰D$ H‰„$øèHĸÃ1Ûë‘1Ûémÿÿÿèé{þÿÿÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenterÈ(runtime.racefuncexitø0runtime.morestack_noctxt€ð""".autotmp_0072type."".Point"".autotmp_0071Ÿtype."".Point"".autotmp_0069type.int"".autotmp_0068type.int"".autotmp_0066type.int"".autotmp_0065type.int"".~r1¿type."".Point"".qÿtype."".Point"".p¿type."".Point"".~r1ßtype."".Point"".qŸtype."".Point"".pßtype."".Point"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1`type."".Point"".r "type."".Rectangle"".ptype."".Point ðÐïðï>f1I8_+åTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Point.EqààdH‹%H;a†ÆHƒì8H‹\$8H‰$èH‹\$@H‰\$H‹\$HH‰\$ H‹\$PH‰\$H‹D$XH‰D$HD$H\$H‰\$(H‰D$0H‰$èH‹\$(H‰$èH‹D$0H‹L‹D$(I‹(H9ëuEH‰$Hƒ$èH‹\$(H‰$Hƒ$èH‹l$0H‹]L‹D$(I‹hH9ë”D$`èHƒÄ8ÃÆD$`ëïèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterÌ runtime.racereadè runtime.raceread® runtime.racereadÔ runtime.raceread’(runtime.racefuncexit´0runtime.morestack_noctxtPp"".autotmp_0076type.*"".Point"".autotmp_0075type.*"".Point"".autotmp_0074_type."".Point"".autotmp_0073?type."".Point"".~r1@type.bool"".q type."".Point"".ptype."".Pointpºopoð„%£
 Ec(Tgclocals·98a935522f11e180b06d5a082b7d09c1Tgclocals·21a8f585a14d020f181242c5256583dc2$GOROOT/src/image/geom.goþ
"".PtÀÀdH‹%H;av>HƒìH‹\$H‰$è1Û1ÛH‹L$ H‹D$(H‰L$H‰L$0H‰D$H‰D$8èHƒÄÃèë¬ÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterˆ(runtime.racefuncexitœ0runtime.morestack_noctxt@0"".autotmp_0077type."".Point"".~r2 type."".Point"".Ytype.int"".Xtype.int09/`”*
DTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ&"".Rectangle.String  dH‹%H;a†çHƒìhH‹\$hH‰$è1Û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ÃèéüþÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterš"".Point.Stringü"".Point.StringÖgo.string."-"¤*runtime.concatstring3â(runtime.racefuncexitö0runtime.morestack_noctxt`Ð"".autotmp_0079?type.string"".autotmp_0078type.string"".~r0@type.string"".r"type."".RectangleÐâϐ¶7¹ ]T Tgclocals·b2f74c392de0ed28f7e906de7ba4bab4Tgclocals·4839c181b903023c3ae99be60aaf42712$GOROOT/src/image/geom.goþ"".Rectangle.Dx  dH‹%H;av.HƒìH‹\$H‰$èH‹\$ H‹l$H)ëH‰\$0èHƒÄÃèë¼ÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterh(runtime.racefuncexit|0runtime.morestack_noctxtP"".~r0@type.int"".r"type."".Rectangle)PÀ*
4Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.Dy  dH‹%H;av.HƒìH‹\$H‰$èH‹\$(H‹l$H)ëH‰\$0èHƒÄÃèë¼ÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterh(runtime.racefuncexit|0runtime.morestack_noctxtP"".~r0@type.int"".r"type."".Rectangle)PÊ*
4Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ""".Rectangle.SizeààdH‹%H;avNHƒìH‹\$H‰$è1Û1ÛH‹L$0H‹l$ H‹D$8H)éH‹l$(H)èH‰L$H‰L$@H‰D$H‰D$HèHƒÄÃèëœÌÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter¨(runtime.racefuncexit¼0runtime.morestack_noctxt`0"".autotmp_0080type."".Point"".~r0@type."".Point"".r"type."".Rectangle0I/p,Ô

TTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ "".Rectangle.Add  dH‹%H;avuHƒì(H‹\$(H‰$èH‹L$PH‹D$X1Û1ÛH‹t$0H‹T$8H‹\$@HÎHÂHËH‰ÙH‹\$HHÃH‰t$H‰t$`H‰T$H‰T$hH‰L$H‰L$pH‰\$ H‰\$xèHƒÄ(ÃèérÿÿÿÌÌ
:*runtime.racefuncenterö(runtime.racefuncexitŠ0runtime.morestack_noctxt P"".autotmp_0081?"type."".Rectangle"".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePpO
,ä
2
tTgclocals·63ba92e6c81d2d7bf2207e4076c8b23cTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ "".Rectangle.Sub  dH‹%H;avuHƒì(H‹\$(H‰$èH‹L$PH‹D$X1Û1ÛH‹t$0H‹T$8H‹\$@H)ÎH)ÂH)ËH‰ÙH‹\$HH)ÃH‰t$H‰t$`H‰T$H‰T$hH‰L$H‰L$pH‰\$ H‰\$xèHƒÄ(ÃèérÿÿÿÌÌ
:*runtime.racefuncenterö(runtime.racefuncexitŠ0runtime.morestack_noctxt P"".autotmp_0082?"type."".Rectangle"".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePpO
,ô
2
tTgclocals·63ba92e6c81d2d7bf2207e4076c8b23cTgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.InsetÀÀdH‹%H;a†ûHƒìHH‹\$HH‰$èL‹D$PH‹t$`H‹|$XH‹T$hH‹D$p1ÛH‰|$H‰T$ H‰óH‰t$L‰D$L)ÃH‰ÅHÑåH9덗L‰ÃHóH‰ÙHÁû?H)ÙHÑùH‰ÎH‰L$(H‰t$8H‰ÓH‰T$@H‰|$0H)ûH‰ÅHÑåH9ë}NH×H‰ûHÁû?H)ßHÑÿH‰øH‰L$PH‰L$xH‰|$XH‰¼$€H‰t$`H‰´$ˆH‰D$hH‰„$èHƒÄHÃHÇH‰ÓH)ÃH‰Øë·L‰ÁHÁH)ÆéqÿÿÿèéèþÿÿÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterÒ(runtime.racefuncexitž0runtime.morestack_noctxt"".autotmp_0090type.int"".autotmp_0089type.int"".autotmp_0088type.int"".autotmp_0086type.int"".autotmp_0085type.int"".autotmp_0084type.int"".autotmp_0083type.int"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1P"type."".Rectangle"".n@type.int"".r"type."".Rectangle Ú Hˆ')
%
;	 €Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ,"".Rectangle.IntersectÀÀdH‹%H;a†ÿHƒìH‹\$H‰$èL‹T$8L‹L$@L‹D$HH‹|$PH‹t$H‹T$ H‹L$(H‹D$01ÛH‰\$XH‰\$`H‰\$hH‰\$pL9Ö}L‰ÖL9Ê}L‰ÊL‰L$ L9Á~L‰ÁH9ø~H‰øH‰|$0H‰t$H‰L$(H9Î#H9ÂH‰t$XH‰T$`H‰L$hH‰D$pèHƒÄÃHH‰$HÇD$ èH‹H‰\$XH‹H‰\$`H‹H‰\$hH‹H‰\$pèHƒÄÃèéäþÿÿÌÌÌÌ
B*runtime.racefuncenterì(runtime.racefuncexit„
"".ZR¨*runtime.racereadrange¶
"".ZRÎ
"".ZRæ 
"".ZRþ0
"".ZR’(runtime.racefuncexit¦0runtime.morestack_noctxtÀ "".~r1€"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle § R H° 6I €Tgclocals·5f32766c99d383f833fae93d4e4d71d1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.Union€€dH‹%H;a†`HƒìHH‹\$HH‰$èL‹T$PL‹L$XL‹D$`H‹|$hH‹t$pH‹T$xH‹Œ$€H‹„$ˆ1ÛL‰L$H‰|$ L‰T$L‰D$M9õI9ù@Å@€ýt*H‰´$H‰”$˜H‰Œ$ H‰„$¨èHƒÄHÃH‰T$0H‰D$@H‰t$(H‰L$8H9΍•H9Â@Å@€ýt*L‰”$L‰Œ$˜L‰„$ H‰¼$¨èHƒÄHÃI9ò~I‰òI9Ñ~I‰ÑI9È}I‰ÈH9Ç}H‰ÇL‰T$PL‰”$L‰L$XL‰Œ$˜L‰D$`L‰„$ H‰|$hH‰¼$¨èHƒÄHÃHÇÅéfÿÿÿHÇÅéÿÿÿèéƒþÿÿÌÌÌ
B*runtime.racefuncenterÀ(runtime.racefuncexitè(runtime.racefuncexit¤(runtime.racefuncexitè0runtime.morestack_noctxtÀ"".autotmp_0092type.bool"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1€"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle8‘S]
€`Ø&<%* "!* >
 àTgclocals·5f32766c99d383f833fae93d4e4d71d1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.EmptyÀÀdH‹%H;avDHƒìH‹\$H‰$èH‹\$H‹l$ H9ë}H‹\$H‹l$(H9ëD$0èHƒÄÃÆD$0ëïèë¦ÌÌÌÌÌÌ
:*runtime.racefuncenter†(runtime.racefuncexit¨0runtime.morestack_noctxtP"".~r0@type.bool"".r"type."".Rectangle8
`†@

DTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.EqÀÀdH‹%HD$ØH;A†ðHì¨H‹œ$¨H‰$èH‹œ$°H‰\$hH‹œ$¸H‰\$pH‹œ$ÀH‰\$xH‹œ$ÈH‰œ$€H‹œ$ÐH‰\$HH‹œ$ØH‰\$PH‹Œ$àH‰L$XH‹„$èH‰D$`HD$hHL$HH‰„$ Hƒø„JH‰Œ$˜Hƒù„1H‰Œ$ˆH‰„$H‰$èH‹œ$ˆH‰$èH‹„$H‹L‹„$ˆI‹(H9ë…áH‰$Hƒ$èH‹œ$ˆH‰$Hƒ$èH‹¬$H‹]L‹„$ˆI‹hH9ë”À<„H‹„$ Hƒø„wH‹Œ$˜HƒÀHƒù„ZHƒÁH‰Œ$H‰„$ˆH‰$èH‹œ$H‰$èH‹„$ˆH‹L‹„$I‹(H9ë…H‰$Hƒ$èH‹œ$H‰$Hƒ$èH‹¬$ˆH‹]L‹„$I‹hH9ë”À<…²H‹œ$°H‹”$¸H‰T$0H‹Œ$ÀH‹„$ÈH‰D$@H‰\$(H‰L$8H9Ë}pH9À<t\H‹œ$ÐH‹”$ØH‰T$H‹Œ$àH‹„$èH‰D$ H‰\$H‰L$H9Ë}H9„$ðèHĨÃHÇÀëãƄ$ðëàHÇÀëƄ$ðëÍ1Àé5ÿÿÿ‰éŸþÿÿ‰é‚þÿÿ1Àé ÿÿÿ1ÀéZþÿÿ‰éÈýÿÿ‰é¯ýÿÿèéîüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenter¼ runtime.racereadÞ runtime.raceread¸ runtime.racereadä runtime.racereadº runtime.racereadÜ runtime.raceread¶ runtime.racereadâ runtime.racereadÊ
(runtime.racefuncexit’0runtime.morestack_noctxtÐ"".autotmp_0102type.bool"".autotmp_0101type.bool"".autotmp_0100type.*"".Point"".autotmp_0099type.*"".Point"".autotmp_0098?type.*"".Point"".autotmp_0097/type.*"".Point"".autotmp_0096$type.*"".Rectangle"".autotmp_0095$type.*"".Rectangle"".autotmp_0094¿"type."".Rectangle"".autotmp_0093"type."".Rectangle"".r¿"type."".Rectangle"".rÿ"type."".Rectangle"".~r1€type.bool"".s@"type."".Rectangle"".r"type."".Rectangle БÏÐWÏ *’0ô1+²¿ˆ|Tgclocals·bb62ddeba3b841c3b8407d8da49fbc51Tgclocals·406991e81a5d6b9f25174854f4bda0b52$GOROOT/src/image/geom.goþ*"".Rectangle.OverlapsààdH‹%H;a†ÆHƒìHH‹\$HH‰$èL‹l$PL‹d$XL‹\$`L‹T$hL‹L$pL‹D$xH‹´$€H‹Œ$ˆL‰d$L‰T$ L‰l$L‰\$M9Ý}dM9ԝÀ<uGL‰D$0H‰L$@L‰L$(H‰t$8I9ñ}8I9ȝÀ<u$I9õ}M9Ù}I9Ì}M9М„$èHƒÄHÃƄ$ëìHÇÀëÅHÇÀë™èéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterè(runtime.racefuncexit´0runtime.morestack_noctxt"".autotmp_0106type.bool"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1€type.bool"".s@"type."".Rectangle"".r"type."".Rectangle ¥ð0œ<2 ÐTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.In€€dH‹%H;a†Hƒì(H‹\$(H‰$èL‹L$0L‹D$8H‹t$@H‹L$HL‰D$H‰L$ L‰L$H‰t$I9ñ}UI9ȝÀ<tÆD$pèHƒÄ(ÃH‹\$PL9Ë+H‹l$`H9î!H‹\$XL9ÃH‹l$hH9éžD$pèHƒÄ(ÃÆD$pëïHÇÀë¨èéFÿÿÿÌÌÌÌÌÌ

B*runtime.racefuncenterÄ(runtime.racefuncexit®(runtime.racefuncexitâ0runtime.morestack_noctxtP"".r?"type."".Rectangle"".~r1€type.bool"".s@"type."".Rectangle"".r"type."".RectanglePSOP4OPOÀ(ª"#
	
<	  Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ$"".Rectangle.Canon  dH‹%H;avvHƒìH‹\$H‰$èH‹|$ H‹t$H‹L$(H‹D$1ÛH9÷}	H‰òH‰þH‰×H9Á}	H‰ÂH‰ÈH‰ÑH‰t$H‰t$0H‰D$H‰D$8H‰|$ H‰|$@H‰L$(H‰L$HèHƒÄÃèéqÿÿÿÌ
:*runtime.racefuncenterø(runtime.racefuncexitŒ0runtime.morestack_noctxt€"".autotmp_0109type.int"".~r0@"type."".Rectangle"".r"type."".Rectangleq(Â"
		2

tTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ"".Rectangle.At€€dH‹%H;a†\HƒìhH‹\$hH‰$è1ÛH‰œ$ H‰œ$¨1ÛH‹Œ$H‹„$˜H‰D$@H‹\$pH‹|$xH‰|$PH‹´$€H‰t$XH‹”$ˆH‰T$`H‰\$HH‰L$8H9ˏÞH9ñÕH9ǏÌH9МÀ<taH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Àé3ÿÿÿèé‡þÿÿÌÌÌÌÌÌÌ
B*runtime.racefuncenterÒ0type.image/color.Alpha16è,type.image/color.Color€Zgo.itab.image/color.Alpha16.image/color.Color˜$image/color.Opaque¾runtime.convT2Iü(runtime.racefuncexit”0type.image/color.Alpha16ª,type.image/color.ColorÂZgo.itab.image/color.Alpha16.image/color.ColorÚ.image/color.Transparent€runtime.convT2I¾(runtime.racefuncexità0runtime.morestack_noctxt€Ð"".r?"type."".Rectangle"".p_type."".Point"".~r2`,type.image/color.Color"".yPtype.int"".x@type.int"".r"type."".Rectangle,ÐïÏÐ`ÏÐÏ€,ØoWa ÝB"Tgclocals·aa63f3db2ec75827f6605d10a5453148Tgclocals·69c1753bd5f81501d95132d08af044642$GOROOT/src/image/geom.goþ&"".Rectangle.BoundsÀÀdH‹%H;avFHƒìH‹\$H‰$è1ÛH‹\$H‰\$0H‹\$H‰\$8H‹\$ H‰\$@H‹\$(H‰\$HèHƒÄÃèë¤ÌÌÌÌ
:*runtime.racefuncenter˜(runtime.racefuncexit¬0runtime.morestack_noctxt€"".~r0@"type."".Rectangle"".r"type."".RectangleA`è2
DTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ."".Rectangle.ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$0H‰\$8HH‰$èH‹H‰\$0H‹H‰\$8èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`0image/color.Alpha16Modelr runtime.raceread€0image/color.Alpha16Model˜0image/color.Alpha16Model¬(runtime.racefuncexitÀ0runtime.morestack_noctxt`"".~r0@,type.image/color.Model"".r"type."".RectangleKpò29Tgclocals·8c067d5052c60a71dd2787c367bb278bTgclocals·69c1753bd5f81501d95132d08af044642$GOROOT/src/image/geom.goþ"".RectààdH‹%H;a†ŒHƒì(H‹\$(H‰$èH‹|$0H‹t$@H‹L$8H‹D$H1ÛH9÷~	H‰úH‰÷H‰ÖH9Á~	H‰ÊH‰ÁH‰Ð1ÛH‰|$0H‰L$8H‰t$@H‰D$HH‰|$H‰|$PH‰L$H‰L$XH‰t$H‰t$`H‰D$ H‰D$hèHƒÄ(ÃèéWÿÿÿÌÌÌÌÌÌÌ
B*runtime.racefuncenter¬(runtime.racefuncexitÀ0runtime.morestack_noctxt€P"".autotmp_0113?"type."".Rectangle"".autotmp_0112type.int"".~r4@"type."".Rectangle
"".y10type.int
"".x1 type.int
"".y0type.int
"".x0type.intP‡O°(†"
		H
 Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cb2$GOROOT/src/image/geom.goþ*"".(*RGBA).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`*image/color.RGBAModelr runtime.raceread€*image/color.RGBAModel˜*image/color.RGBAModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".RGBAKpŽp9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ""".(*RGBA).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".RGBA x  
’  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*RGBA).AtÀÀdH‹%H;a†½Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@Ãèé&ÿÿÿÌÌÌÌÌÌ
B*runtime.racefuncenterž""".(*RGBA).RGBAAtô*type.image/color.RGBAŠ,type.image/color.Color¢Tgo.itab.image/color.RGBA.image/color.ColorÜruntime.convT2IŽ(runtime.racefuncexit¢0runtime.morestack_noctxtP€
"".autotmp_0114*type.image/color.RGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA€¸à–1• ¦Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ""".(*RGBA).RGBAAtÀÀdH‹%HD$øH;A†¹HìˆH‹œ$ˆH‰$è1ۈœ$¨ˆœ$©ˆœ$ªˆœ$«1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„%H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏñI9ɍèL9ßI9ÀœÀ<uC1í@ˆl$@ˆ¬$¨@ˆl$@ˆ¬$©@ˆl$@ˆ¬$ª@ˆl$@ˆ¬$«èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(1ۈ\$ˆ\$ˆ\$ˆ\$H‹œ$H‰$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ›HH‰$èH‹´$H‹D$(HƒÀHƒþ„lH‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃ?H¶ˆ\$H‰4$èH‹D$(HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃîHH‰$èH‹´$H‹D$(HÿÀHƒþ„ÀH‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃ“H¶ˆ\$H‰4$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃAHH‰$èH‹´$H‹D$(HƒÀHƒþ„H‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃåH¶ˆ\$H‰4$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ“HH‰$èH‹D$(H‹œ$HƒÀHƒûtkH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨¶\$ˆœ$©¶\$ˆœ$ªˆ„$«èHĈÃè‰ë‘èè‰éçþÿÿèè‰é9þÿÿèè‰éýÿÿè1Àé üÿÿ‰éÔûÿÿèé%ûÿÿÌÌÌÌÌ2
X*runtime.racefuncenterŠ*runtime.racereadrangeÊ(runtime.racefuncexit´ runtime.raceread† runtime.raceread¬ runtime.racereadÌ runtime.racereadÔ runtime.racereadþ	 runtime.raceread„ runtime.raceread¬ runtime.raceread´
 runtime.racereadÞ runtime.racereadæ runtime.racereadÌ(runtime.racefuncexitæ$runtime.panicindexü$runtime.panicindexŠ$runtime.panicindex¦$runtime.panicindex´$runtime.panicindexÐ$runtime.panicindexÞ$runtime.panicindexú$runtime.panicindex¤0runtime.morestack_noctxt@"".autotmp_0119*type.image/color.RGBA"".autotmp_0118¯type.int"".autotmp_0117type.int"".autotmp_0116ç*type.image/color.RGBA"".yßtype.int"".xÏtype.int"".p?type.*"".RGBA"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA.‘À_à	6ž
	 6–ü+®ŒûTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ("".(*RGBA).PixOffset€€dH‹%H;a†˜HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0èHƒÄÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÄ(runtime.racefuncexitØ0runtime.morestack_noctxt@ 
"".autotmp_0136type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA “À²”  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*RGBA).SetÀÀdH‹%HD$ÐH;A†4Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„¾H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏŠI9ɍL9xI9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$,H‰\$è¶\$,ˆ\$(¶\$-ˆ\$)¶\$.ˆ\$*¶\$/ˆ\$+H‹\$@HƒÃH‰\$HH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃªH)H‰$èH‹”$¸Hƒú„„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃLH)¶l$(@ˆ+H‹\$@HÿÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃêH)H‰$èH‹”$¸Hƒú„ÄH‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃŒH)¶l$)@ˆ+H‹\$@HƒÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9Ń)H)H‰$èH‹”$¸Hƒú„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃËH)¶l$*@ˆ+H‹\$@HƒÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅslH)H‰$èH‹œ$¸HƒûtMH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsH)¶l$+@ˆ+èHİÃè‰ë¯èè‰éöþÿÿèè‰é5þÿÿèè‰éuýÿÿè1Àé‡ûÿÿ‰é;ûÿÿèéªúÿÿÌÌÌÌÌÌÌÌÌÌ@
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.raceread„*image/color.RGBAModel– runtime.racereadØ*image/color.RGBAModelî*image/color.RGBAModelþÀ*type.image/color.RGBAš"runtime.assertI2T 	 runtime.raceread¬
"runtime.racewriteö runtime.raceread‚
"runtime.racewriteÎ runtime.racereadÚ"runtime.racewrite¦ runtime.racereadª"runtime.racewriteÂ(runtime.racefuncexitÜ$runtime.panicindexò$runtime.panicindex€$runtime.panicindexœ$runtime.panicindexª$runtime.panicindexÆ$runtime.panicindexÔ$runtime.panicindexð$runtime.panicindexš0runtime.morestack_noctxtPà&"".autotmp_0145type.int"".autotmp_0144type.int"".autotmp_0143type.int"".autotmp_0142type.int"".autotmp_0141Ïtype.int"".autotmp_0140type.int"".autotmp_0138‡*type.image/color.RGBA"".autotmp_0137O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_type.*"".RGBA"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1*type.image/color.RGBA"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA.à½ßàßà_ßà
Zº 
¢¶´«¬¥	+Ý‚ÖTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ$"".(*RGBA).SetRGBA  dH‹%H;a†1Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„»H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ‡I9ɍ~L9uI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃwH)H‰$èH‹”$ˆHƒú„QH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"H)¶¬$ @ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆH)H‰$èH‹”$ˆHƒú„ H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃqH)¶¬$¡@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„îH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿H)¶¬$¢@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£@ˆ+èHĀÃè‰ëµèè‰éÿÿÿèè‰éYþÿÿèè‰é¨ýÿÿè1ÀéŠüÿÿ‰é>üÿÿèé²ûÿÿÌÌ2
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadˆ runtime.raceread‚"runtime.racewriteÀ runtime.racereadº	"runtime.racewriteú
 runtime.racereadô"runtime.racewrite´
 runtime.raceread¦"runtime.racewrite²(runtime.racefuncexitÌ$runtime.panicindexâ$runtime.panicindexð$runtime.panicindexŒ$runtime.panicindexš$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexà$runtime.panicindexŠ0runtime.morestack_noctxt@€ "".autotmp_0160type.int"".autotmp_0159type.int"".autotmp_0158type.int"".autotmp_0157type.int"".autotmp_0156¯type.int"".autotmp_0155type.int"".yßtype.int"".xÏtype.int"".p?type.*"".RGBA"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA.€½ÿ€Œÿ€_ÿÐTÒ
 ‘¥œ–&ÚƒÍTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ&"".(*RGBA).SubImage€€dH‹%HD$¸H;A†^HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÉH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍JH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé°üÿÿ‰é0üÿÿèé€ûÿÿD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".RGBAæ"runtime.newobject¤,runtime.racewriterange”2go.itab.*"".RGBA."".ImageÜ(runtime.racefuncexitútype.*"".RGBAtype."".Image¨2go.itab.*"".RGBA."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread 
 runtime.racereadÀtype."".RGBAÒ"runtime.newobjectþ"runtime.racewriteÚ(runtime.writeBarrierš
"runtime.racewriteÆ
 runtime.raceread¸,runtime.racewriterangeÆ2go.itab.*"".RGBA."".ImageŽ(runtime.racefuncexit¬type.*"".RGBAÂtype."".ImageÚ2go.itab.*"".RGBA."".Imageî runtime.typ2Itab¦.runtime.writebarrierptrº$runtime.panicsliceî0runtime.morestack_noctxtp""".autotmp_0180type.*uint8"".autotmp_0179type.*"".RGBA"".autotmp_0178type.int"".autotmp_0177type.int"".autotmp_0176Ÿtype.int"".autotmp_0174?type.*"".RGBA"".autotmp_0172type.*"".RGBA"".autotmp_0171/type.[]uint8"".autotmp_0170type.*"".RGBA"".yÏtype.int"".x¿type.int"".pOtype.*"".RGBA"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA.šØc
€	jìBŽW†7šZt80-	
<+¦\0/ƒYNº0&$Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ""".(*RGBA).Opaque  dH‹%HD$ðH;A†äHìH‹œ$H‰$èH‹œ$˜H‰$Hƒ$ HÇD$ èH‹¼$˜Hƒÿ„”H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍[H9À<tƄ$ èHĐÃH‰<$Hƒ$ HÇD$ èH‹”$˜Hƒú„H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ H‰\$H‰$Hƒ$ Hƒ$èH‹Œ$˜H‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹Œ$˜H‹Y8H‹l$H9ëŽhH‹D$ H‰D$(H‹l$H9èÇH‰$èH‹œ$˜H‹H‹CH‹kH‰¬$ˆH‰L$xH‹l$(H‰„$€H9Ń
H)H‰$èH‹t$(H‹Œ$˜Hƒù„ßH‹H‹AH‹iH‰¬$ˆH‰T$xH‰„$€H9ƃ¯H2¶€ûÿtƄ$ èHĐÃH‰ðHƒÀH‰D$(H‹l$H9èŒ9ÿÿÿH‹\$ H‰\$0H‰$Hƒ$èH‹„$˜H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$èH‹Œ$˜H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é{þÿÿè‰éÿÿÿèƄ$ èHĐÉéíýÿÿHÇÀéŸýÿÿ‰éeýÿÿèéúüÿÿÌÌÌÌÌÌÌÌÌÌ 
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrange¼ runtime.racereadŽ runtime.raceread„ runtime.racereadŠ runtime.raceread¼(runtime.racefuncexit°	 runtime.raceread’
 runtime.racereadò
$runtime.panicindexŽ$runtime.panicindex¬(runtime.racefuncexitú0runtime.morestack_noctxt  "".autotmp_0190type.int"".autotmp_0189type.int"".autotmp_0188¿type.int"".autotmp_0186type.int"".autotmp_0185type.int"".autotmp_0184type.int"".autotmp_0183type.int"".r¯"type."".Rectangle"".ro"type."".Rectangle"".iÏtype.int"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".~r0type.bool"".ptype.*"".RGBA< Ÿ üŸ ·Ÿ Ÿ^ŽhbV˜
11
+åTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·790e5cc5051fc0affc980ade09e929ec4$GOROOT/src/image/image.goþ"".NewRGBA  dH‹%HD$èH;A†«Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…‰H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èégÿÿÿèé3þÿÿÌÌÌ
X*runtime.racefuncenter¨type.[]uint8Î"runtime.makesliceªtype."".RGBA¼"runtime.newobjectâ"runtime.racewrite¸(runtime.writeBarrierò"runtime.racewriteÄ,runtime.racewriterangeÈ(runtime.racefuncexitô.runtime.writebarrierptrˆ0runtime.morestack_noctxtP°"".autotmp_0199?type.*"".RGBA"".autotmp_0198type.int"".autotmp_0196type.int"".autotmp_0195type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wÏtype.int"".~r1@type.*"".RGBA"".r"type."".Rectangle °¯°¯
в11Qñ
 +²HkTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ."".(*RGBA64).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`.image/color.RGBA64Modelr runtime.raceread€.image/color.RGBA64Model˜.image/color.RGBA64Model¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".RGBA64KpÔp9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ&"".(*RGBA64).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".RGBA64 x  
Ø  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*RGBA64).AtààdH‹%H;a†ÅHƒì@H‹\$@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‰\$hèHƒÄ@ÃèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterž*"".(*RGBA64).RGBA64At„.type.image/color.RGBA64š,type.image/color.Color²Xgo.itab.image/color.RGBA64.image/color.Colorìruntime.convT2Iž(runtime.racefuncexit²0runtime.morestack_noctxtP€
"".autotmp_0200.type.image/color.RGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64€ÀðÜ1 ®"Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ*"".(*RGBA64).RGBA64At€€dH‹%HD$øH;A†HìˆH‹œ$ˆH‰$è1Ûf‰œ$¨f‰œ$ªf‰œ$¬f‰œ$®1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„‚H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏNI9ɍEL9<I9ÀœÀ<uC1íf‰l$0f‰¬$¨f‰l$2f‰¬$ªf‰l$4f‰¬$¬f‰l$6f‰¬$®èHĈÃH‹œ$˜H‰\$H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6H‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃôHH‰$èH‹œ$H‰$èH‹D$ HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ™HH‰$èH‹|$ H‹´$H‰úHƒÂHƒþ„gH‹H‹FL‹FH9ƒLHf¶HÁãH‰øHÿÀH‹H‹NL‹FL‰„$€H‰T$pH‰L$xH9ȃ
H,f¶mH	ëf‰\$0H‰4$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃµHH‰$èH‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃYHH‰$èH‹|$ H‹´$H‰úHƒÂHƒþ„'H‹H‹FL‹FH9ƒHf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€H‰T$pH‰L$xH9ȃÌH,f¶mH	ëf‰\$2H‰4$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃtHH‰$èH‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃHH‰$èH‹|$ H‹´$H‰úHƒÂHƒþ„æH‹H‹FL‹FH9ƒËHf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€H‰T$pH‰L$xH9ȃ‹H,f¶mH	ëf‰\$4H‰4$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ3HH‰$èH‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ×HH‰$èH‹¼$H‹t$ H‰òHƒÂHƒÿ„¥H‹H‹GL‹GH9ƒŠHf¶HÁãH‰ðHƒÀH‹H‹OL‹GL‰„$€H‰T$pH‰L$xH9ÈsNH,f¶mH	ëH‰ØH·\$0f‰œ$¨H·\$2f‰œ$ªH·\$4f‰œ$¬f‰„$®èHĈÃèè‰éTÿÿÿèèèè‰éþÿÿèèèè‰éÒüÿÿèèèè‰é’ûÿÿèè1ÀéÃùÿÿ‰éwùÿÿèéÄøÿÿÌÌÌÌR
X*runtime.racefuncenter’*runtime.racereadrangeÒ(runtime.racefuncexit¼ runtime.racereadŽ runtime.raceread´ runtime.racereadÜ runtime.racereadä runtime.raceread†	 runtime.racereadŒ
 runtime.raceread” runtime.racereadœ
 runtime.raceread¾
 runtime.racereadÆ runtime.racereadÐ runtime.racereadØ runtime.racereadú runtime.raceread‚ runtime.racereadŒ runtime.raceread” runtime.raceread¶ runtime.raceread¾ runtime.raceread˜(runtime.racefuncexit²$runtime.panicindexÀ$runtime.panicindexÜ$runtime.panicindexê$runtime.panicindexø$runtime.panicindex†$runtime.panicindex¢$runtime.panicindex°$runtime.panicindex¾$runtime.panicindexÌ$runtime.panicindexè$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindex®$runtime.panicindex¼$runtime.panicindexæ0runtime.morestack_noctxt@"".autotmp_0205.type.image/color.RGBA64"".autotmp_0204¿type.int"".autotmp_0203type.int"".autotmp_0202¯.type.image/color.RGBA64"".yïtype.int"".xßtype.int"".p?type.*"".RGBA64"".r"type."".Rectangle"".pŸtype."".Point"".iÏtype.int"".~r20.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA640•â
šÀ`ä" 6–¤žž˜?####	+²Ó
Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ,"".(*RGBA64).PixOffset€€dH‹%H;a†˜HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0èHƒÄÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÄ(runtime.racefuncexitØ0runtime.morestack_noctxt@ 
"".autotmp_0238type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA64 “À‚”  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*RGBA64).Set " "dH‹%HD$ÈH;A†_Hì¸H‹œ$¸H‰$è1ÛH‹œ$ÈH‰\$XH‹œ$ÐH‰\$`H‹œ$ÀH‰$Hƒ$ HÇD$ èL‹L$XL‹D$`H‹¼$ÀHƒÿ„éH‹w H‹W(H‰T$pH‹O0H‰L$xH‹G8H‰„$€H‰t$hL9Ώ²I9ɍ©L9 I9ÀœÀ<u
èHĸÃH‹œ$ÈH‰\$0H‹œ$ÐH‰\$(H‰¼$ˆH‰<$Hƒ$ èH‹„$ˆH‹X H‹l$0H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$ˆH‰$Hƒ$èH‹„$ˆH‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$8HH‰$èH‹œ$ØH‰\$H‹œ$àH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$Pf‰\$Rf‰\$Tf‰\$VHH‰$H‰Œ$H‰L$H‰„$˜H‰D$H\$PH‰\$èH·\$Pf‰\$@H·\$Rf‰\$BH·\$Tf‰\$DH·\$Vf‰\$FH‹\$8HƒÃH‰\$HH‹œ$ÀH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃÆH)H‰$èH‹”$ÀHƒú„ H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃhH)H·l$@fÁí@ˆ+H‹\$8HÿÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃH)H‰$èH‹”$ÀHƒú„ÛH‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń£H)H·l$@@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń?H)H‰$èH‹”$ÀHƒú„H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃáH)H·l$BfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃyH)H‰$èH‹”$ÀHƒú„SH‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃH)H·l$B@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń·H)H‰$èH‹”$ÀHƒú„‘H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃYH)H·l$DfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃñH)H‰$èH‹”$ÀHƒú„ËH‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń“H)H·l$D@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń/H)H‰$èH‹”$ÀHƒú„	H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃÑH)H·l$FfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ÅsmH)H‰$èH‹œ$ÀHƒûtNH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ÅsH)H·l$F@ˆ+èHĸÃè‰ë®èè‰éðþÿÿèè‰é.þÿÿèè‰éhýÿÿèè‰é¦üÿÿèè‰éàûÿÿèè‰éûÿÿèè‰éYúÿÿè1Àé_øÿÿ‰éøÿÿèé÷ÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ`
X*runtime.racefuncenterÎ*runtime.racereadrange¨(runtime.racefuncexit˜ runtime.racereadð runtime.racereadœ runtime.racereadŠ.image/color.RGBA64Modelœ runtime.racereadÞ.image/color.RGBA64Modelô.image/color.RGBA64Model„Î.type.image/color.RGBA64¨"runtime.assertI2T¾	 runtime.racereadÊ
"runtime.racewritež runtime.racereadª
"runtime.racewriteø runtime.raceread„"runtime.racewriteÚ runtime.racereadæ"runtime.racewrite´ runtime.racereadÀ"runtime.racewrite– runtime.raceread¢"runtime.racewriteð runtime.racereadü"runtime.racewriteÒ runtime.racereadÖ"runtime.racewriteð(runtime.racefuncexitŠ$runtime.panicindex $runtime.panicindex®$runtime.panicindexÊ$runtime.panicindexØ$runtime.panicindexô$runtime.panicindex‚ $runtime.panicindexž $runtime.panicindex¬ $runtime.panicindexÈ $runtime.panicindexÖ $runtime.panicindexò $runtime.panicindex€!$runtime.panicindexœ!$runtime.panicindexª!$runtime.panicindexÆ!$runtime.panicindexð!0runtime.morestack_noctxtPð."".autotmp_0251type.int"".autotmp_0250type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int"".autotmp_0245type.int"".autotmp_0244type.int"".autotmp_0243ßtype.int"".autotmp_0242type.int"".autotmp_0240Ï.type.image/color.RGBA64"".autotmp_0239O,type.image/color.Color"".yŸtype.int"".xtype.int"".p_type.*"".RGBA64"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1ï.type.image/color.RGBA64"".iÿtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA640ðÀïðã
ïð³ï‚Š£¢Â¹¬±­±­±¦	+à‚ƒTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ,"".(*RGBA64).SetRGBA64ààdH‹%H;a†Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„›H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9ΏgI9ɍ^L9UI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃWH)H‰$èH‹”$ˆHƒú„1H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H·¬$ fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¡H)H‰$èH‹”$ˆHƒú„{H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃLH)H·¬$ @ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃîH)H‰$èH‹”$ˆHƒú„ÈH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń™H)H·¬$¢fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń7H)H‰$èH‹”$ˆHƒú„H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃâH)H·¬$¢@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń„H)H‰$èH‹”$ˆHƒú„^H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń/H)H·¬$¤fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÍH)H‰$èH‹”$ˆHƒú„§H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃxH)H·¬$¤@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„ôH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÅH)H·¬$¦fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$èH‹œ$ˆHƒûtHH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$¦@ˆ+èHĀÃè‰ë´èè‰éÿÿÿèè‰éRþÿÿèè‰é›ýÿÿèè‰éèüÿÿèè‰é1üÿÿèè‰é~ûÿÿèè‰éÈúÿÿè1Àéªùÿÿ‰é^ùÿÿèéÒøÿÿÌÌR
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadˆ runtime.raceread‚"runtime.racewriteÊ runtime.racereadÄ	"runtime.racewrite† runtime.raceread€"runtime.racewriteÊ
 runtime.racereadÄ"runtime.racewrite† runtime.raceread€"runtime.racewriteÊ runtime.racereadÄ"runtime.racewrite† runtime.raceread€"runtime.racewriteÊ runtime.raceread¼"runtime.racewriteÊ(runtime.racefuncexitä$runtime.panicindexú$runtime.panicindexˆ$runtime.panicindex¤$runtime.panicindex²$runtime.panicindexÎ$runtime.panicindexÜ$runtime.panicindexø$runtime.panicindex†$runtime.panicindex¢$runtime.panicindex°$runtime.panicindexÌ$runtime.panicindexÚ$runtime.panicindexö$runtime.panicindex„$runtime.panicindex $runtime.panicindexÊ0runtime.morestack_noctxt@€("".autotmp_0278type.int"".autotmp_0277type.int"".autotmp_0276type.int"".autotmp_0275type.int"".autotmp_0274type.int"".autotmp_0273type.int"".autotmp_0272type.int"".autotmp_0271type.int"".autotmp_0270¯type.int"".autotmp_0269type.int"".yßtype.int"".xÏtype.int"".p?type.*"".RGBA64"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA640€½ÿ€˜ÿ€³ÿ°|ª ‘ª¢ž¢ž¢—&Úƒ­Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ*"".(*RGBA64).SubImage€€dH‹%HD$¸H;A†^HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÉH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍JH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé°üÿÿ‰é0üÿÿèé€ûÿÿD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".RGBA64æ"runtime.newobject¤,runtime.racewriterange”6go.itab.*"".RGBA64."".ImageÜ(runtime.racefuncexitútype.*"".RGBA64type."".Image¨6go.itab.*"".RGBA64."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread 
 runtime.racereadÀtype."".RGBA64Ò"runtime.newobjectþ"runtime.racewriteÚ(runtime.writeBarrierš
"runtime.racewriteÆ
 runtime.raceread¸,runtime.racewriterangeÆ6go.itab.*"".RGBA64."".ImageŽ(runtime.racefuncexit¬type.*"".RGBA64Âtype."".ImageÚ6go.itab.*"".RGBA64."".Imageî runtime.typ2Itab¦.runtime.writebarrierptrº$runtime.panicsliceî0runtime.morestack_noctxtp""".autotmp_0306type.*uint8"".autotmp_0305type.*"".RGBA64"".autotmp_0304type.int"".autotmp_0303type.int"".autotmp_0302Ÿtype.int"".autotmp_0300?type.*"".RGBA64"".autotmp_0298type.*"".RGBA64"".autotmp_0297/type.[]uint8"".autotmp_0296type.*"".RGBA64"".yÏtype.int"".x¿type.int"".pOtype.*"".RGBA64"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA64.šØc
€	jÌBŽW†7šZt80-	
<+¦\0/ƒYNº0&$Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ&"".(*RGBA64).Opaque  dH‹%HD$ðH;A†ªHìH‹œ$H‰$èH‹œ$˜H‰$Hƒ$ HÇD$ èH‹¼$˜Hƒÿ„ZH‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍!H9À<tƄ$ èHĐÃH‰<$Hƒ$ HÇD$ èH‹”$˜Hƒú„ÒH‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ H‰\$H‰$Hƒ$ Hƒ$èH‹Œ$˜H‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹Œ$˜H‹Y8H‹l$H9ëŽ.H‹D$ H‰D$(H‹l$H9ècH‰$èH‹D$(H‹œ$˜HƒÀH‹H‹KH‹kH‰¬$ˆH‰T$xH‰Œ$€H9ȃÌHH‰$èH‹´$˜H‹D$(HƒÀHƒþ„H‹H‹NH‹nH‰¬$ˆH‰T$xH‰Œ$€H9ȃmH¶€ûÿ…3H‰4$èH‹D$(HÿÀH‹œ$˜H‹H‹KH‹kH‰¬$ˆH‰T$xH‰Œ$€H9ȃHH‰$èH‹|$(H‹Œ$˜H‰øHÿÀHƒù„ãH‹1H‹QH‹iH‰¬$ˆH‰t$xH‰”$€H9Ѓ³H¶€ûÿ…ŽH‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰$Hƒ$èH‹„$˜H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$èH‹Œ$˜H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ èHĐÃè‰éÿÿÿèè‰é\þÿÿèƄ$ èHĐÉé'ýÿÿHÇÀéÙüÿÿ‰éŸüÿÿèé4üÿÿÌÌÌÌ(
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrange¼ runtime.racereadŽ runtime.raceread„ runtime.raceread’ runtime.racereadÌ runtime.racereadØ	 runtime.racereadè runtime.racereadÊ runtime.racereadº
(runtime.racefuncexitÔ
$runtime.panicindexð
$runtime.panicindexþ
$runtime.panicindexš$runtime.panicindex¸(runtime.racefuncexit†0runtime.morestack_noctxt  "".autotmp_0316type.int"".autotmp_0315type.int"".autotmp_0314¿type.int"".autotmp_0312type.int"".autotmp_0311type.int"".autotmp_0310type.int"".autotmp_0309type.int"".r¯"type."".Rectangle"".ro"type."".Rectangle"".iÏtype.int"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".~r0type.bool"".ptype.*"".RGBA64: Ÿ »Ÿ >Ÿ ŸÐ^îhbVÉ
11
*+¥Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·790e5cc5051fc0affc980ade09e929ec4$GOROOT/src/image/image.goþ"".NewRGBA64  dH‹%HD$èH;A†«Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…‰H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èégÿÿÿèé3þÿÿÌÌÌ
X*runtime.racefuncenter¨type.[]uint8Î"runtime.makesliceªtype."".RGBA64¼"runtime.newobjectâ"runtime.racewrite¸(runtime.writeBarrierò"runtime.racewriteÄ,runtime.racewriterangeÈ(runtime.racefuncexitô.runtime.writebarrierptrˆ0runtime.morestack_noctxtP°"".autotmp_0331?type.*"".RGBA64"".autotmp_0330type.int"".autotmp_0328type.int"".autotmp_0327type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".RGBA64"".r"type."".Rectangle °¯°¯
Ð’11Qñ
 +²HkTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ,"".(*NRGBA).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`,image/color.NRGBAModelr runtime.raceread€,image/color.NRGBAModel˜,image/color.NRGBAModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".NRGBAKp´p9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ$"".(*NRGBA).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".NRGBA x  
¸  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*NRGBA).AtÀÀdH‹%H;a†½Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@Ãèé&ÿÿÿÌÌÌÌÌÌ
B*runtime.racefuncenterž&"".(*NRGBA).NRGBAAtô,type.image/color.NRGBAŠ,type.image/color.Color¢Vgo.itab.image/color.NRGBA.image/color.ColorÜruntime.convT2IŽ(runtime.racefuncexit¢0runtime.morestack_noctxtP€
"".autotmp_0332,type.image/color.NRGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA€¸à¼1• ¦Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ&"".(*NRGBA).NRGBAAtÀÀdH‹%HD$øH;A†¹HìˆH‹œ$ˆH‰$è1ۈœ$¨ˆœ$©ˆœ$ªˆœ$«1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„%H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏñI9ɍèL9ßI9ÀœÀ<uC1í@ˆl$@ˆ¬$¨@ˆl$@ˆ¬$©@ˆl$@ˆ¬$ª@ˆl$@ˆ¬$«èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(1ۈ\$ˆ\$ˆ\$ˆ\$H‹œ$H‰$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ›HH‰$èH‹´$H‹D$(HƒÀHƒþ„lH‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃ?H¶ˆ\$H‰4$èH‹D$(HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃîHH‰$èH‹´$H‹D$(HÿÀHƒþ„ÀH‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃ“H¶ˆ\$H‰4$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃAHH‰$èH‹´$H‹D$(HƒÀHƒþ„H‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃåH¶ˆ\$H‰4$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ“HH‰$èH‹D$(H‹œ$HƒÀHƒûtkH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨¶\$ˆœ$©¶\$ˆœ$ªˆ„$«èHĈÃè‰ë‘èè‰éçþÿÿèè‰é9þÿÿèè‰éýÿÿè1Àé üÿÿ‰éÔûÿÿèé%ûÿÿÌÌÌÌÌ2
X*runtime.racefuncenterŠ*runtime.racereadrangeÊ(runtime.racefuncexit´ runtime.raceread† runtime.raceread¬ runtime.racereadÌ runtime.racereadÔ runtime.racereadþ	 runtime.raceread„ runtime.raceread¬ runtime.raceread´
 runtime.racereadÞ runtime.racereadæ runtime.racereadÌ(runtime.racefuncexitæ$runtime.panicindexü$runtime.panicindexŠ$runtime.panicindex¦$runtime.panicindex´$runtime.panicindexÐ$runtime.panicindexÞ$runtime.panicindexú$runtime.panicindex¤0runtime.morestack_noctxt@"".autotmp_0337,type.image/color.NRGBA"".autotmp_0336¯type.int"".autotmp_0335type.int"".autotmp_0334ç,type.image/color.NRGBA"".yßtype.int"".xÏtype.int"".p?type.*"".NRGBA"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA.‘À_à	6Ä
	 6–ü+®ŒûTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ*"".(*NRGBA).PixOffset€€dH‹%H;a†˜HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0èHƒÄÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÄ(runtime.racefuncexitØ0runtime.morestack_noctxt@ 
"".autotmp_0354type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".NRGBA “ÀØ”  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*NRGBA).SetÀÀdH‹%HD$ÐH;A†4Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„¾H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏŠI9ɍL9xI9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$,H‰\$è¶\$,ˆ\$(¶\$-ˆ\$)¶\$.ˆ\$*¶\$/ˆ\$+H‹\$@HƒÃH‰\$HH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃªH)H‰$èH‹”$¸Hƒú„„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃLH)¶l$(@ˆ+H‹\$@HÿÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃêH)H‰$èH‹”$¸Hƒú„ÄH‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃŒH)¶l$)@ˆ+H‹\$@HƒÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9Ń)H)H‰$èH‹”$¸Hƒú„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃËH)¶l$*@ˆ+H‹\$@HƒÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅslH)H‰$èH‹œ$¸HƒûtMH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsH)¶l$+@ˆ+èHİÃè‰ë¯èè‰éöþÿÿèè‰é5þÿÿèè‰éuýÿÿè1Àé‡ûÿÿ‰é;ûÿÿèéªúÿÿÌÌÌÌÌÌÌÌÌÌ@
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.raceread„,image/color.NRGBAModel– runtime.racereadØ,image/color.NRGBAModelî,image/color.NRGBAModelþÀ,type.image/color.NRGBAš"runtime.assertI2T 	 runtime.raceread¬
"runtime.racewriteö runtime.raceread‚
"runtime.racewriteÎ runtime.racereadÚ"runtime.racewrite¦ runtime.racereadª"runtime.racewriteÂ(runtime.racefuncexitÜ$runtime.panicindexò$runtime.panicindex€$runtime.panicindexœ$runtime.panicindexª$runtime.panicindexÆ$runtime.panicindexÔ$runtime.panicindexð$runtime.panicindexš0runtime.morestack_noctxtPà&"".autotmp_0363type.int"".autotmp_0362type.int"".autotmp_0361type.int"".autotmp_0360type.int"".autotmp_0359Ïtype.int"".autotmp_0358type.int"".autotmp_0356‡,type.image/color.NRGBA"".autotmp_0355O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_type.*"".NRGBA"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1,type.image/color.NRGBA"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA.à½ßàßà_ßà
Zà 
¢¶´«¬¥	+Ý‚ÖTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ("".(*NRGBA).SetNRGBA  dH‹%H;a†1Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„»H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ‡I9ɍ~L9uI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃwH)H‰$èH‹”$ˆHƒú„QH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"H)¶¬$ @ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆH)H‰$èH‹”$ˆHƒú„ H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃqH)¶¬$¡@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„îH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿H)¶¬$¢@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£@ˆ+èHĀÃè‰ëµèè‰éÿÿÿèè‰éYþÿÿèè‰é¨ýÿÿè1ÀéŠüÿÿ‰é>üÿÿèé²ûÿÿÌÌ2
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadˆ runtime.raceread‚"runtime.racewriteÀ runtime.racereadº	"runtime.racewriteú
 runtime.racereadô"runtime.racewrite´
 runtime.raceread¦"runtime.racewrite²(runtime.racefuncexitÌ$runtime.panicindexâ$runtime.panicindexð$runtime.panicindexŒ$runtime.panicindexš$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexà$runtime.panicindexŠ0runtime.morestack_noctxt@€ "".autotmp_0378type.int"".autotmp_0377type.int"".autotmp_0376type.int"".autotmp_0375type.int"".autotmp_0374¯type.int"".autotmp_0373type.int"".yßtype.int"".xÏtype.int"".p?type.*"".NRGBA"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA.€½ÿ€Œÿ€_ÿÐTø
 ‘¥œ–&ÚƒÍTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ("".(*NRGBA).SubImage€€dH‹%HD$¸H;A†^HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÉH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍JH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé°üÿÿ‰é0üÿÿèé€ûÿÿD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".NRGBAæ"runtime.newobject¤,runtime.racewriterange”4go.itab.*"".NRGBA."".ImageÜ(runtime.racefuncexitútype.*"".NRGBAtype."".Image¨4go.itab.*"".NRGBA."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread 
 runtime.racereadÀtype."".NRGBAÒ"runtime.newobjectþ"runtime.racewriteÚ(runtime.writeBarrierš
"runtime.racewriteÆ
 runtime.raceread¸,runtime.racewriterangeÆ4go.itab.*"".NRGBA."".ImageŽ(runtime.racefuncexit¬type.*"".NRGBAÂtype."".ImageÚ4go.itab.*"".NRGBA."".Imageî runtime.typ2Itab¦.runtime.writebarrierptrº$runtime.panicsliceî0runtime.morestack_noctxtp""".autotmp_0398type.*uint8"".autotmp_0397type.*"".NRGBA"".autotmp_0396type.int"".autotmp_0395type.int"".autotmp_0394Ÿtype.int"".autotmp_0392?type.*"".NRGBA"".autotmp_0390type.*"".NRGBA"".autotmp_0389/type.[]uint8"".autotmp_0388type.*"".NRGBA"".yÏtype.int"".x¿type.int"".pOtype.*"".NRGBA"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".NRGBA.šØc
€	j’BŽW†7šZt80-	
<+¦\0/ƒYNº0&$Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ$"".(*NRGBA).Opaque  dH‹%HD$ðH;A†äHìH‹œ$H‰$èH‹œ$˜H‰$Hƒ$ HÇD$ èH‹¼$˜Hƒÿ„”H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍[H9À<tƄ$ èHĐÃH‰<$Hƒ$ HÇD$ èH‹”$˜Hƒú„H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ H‰\$H‰$Hƒ$ Hƒ$èH‹Œ$˜H‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹Œ$˜H‹Y8H‹l$H9ëŽhH‹D$ H‰D$(H‹l$H9èÇH‰$èH‹œ$˜H‹H‹CH‹kH‰¬$ˆH‰L$xH‹l$(H‰„$€H9Ń
H)H‰$èH‹t$(H‹Œ$˜Hƒù„ßH‹H‹AH‹iH‰¬$ˆH‰T$xH‰„$€H9ƃ¯H2¶€ûÿtƄ$ èHĐÃH‰ðHƒÀH‰D$(H‹l$H9èŒ9ÿÿÿH‹\$ H‰\$0H‰$Hƒ$èH‹„$˜H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$èH‹Œ$˜H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é{þÿÿè‰éÿÿÿèƄ$ èHĐÉéíýÿÿHÇÀéŸýÿÿ‰éeýÿÿèéúüÿÿÌÌÌÌÌÌÌÌÌÌ 
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrange¼ runtime.racereadŽ runtime.raceread„ runtime.racereadŠ runtime.raceread¼(runtime.racefuncexit°	 runtime.raceread’
 runtime.racereadò
$runtime.panicindexŽ$runtime.panicindex¬(runtime.racefuncexitú0runtime.morestack_noctxt  "".autotmp_0408type.int"".autotmp_0407type.int"".autotmp_0406¿type.int"".autotmp_0404type.int"".autotmp_0403type.int"".autotmp_0402type.int"".autotmp_0401type.int"".r¯"type."".Rectangle"".ro"type."".Rectangle"".iÏtype.int"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".~r0type.bool"".ptype.*"".NRGBA< Ÿ üŸ ·Ÿ Ÿ^´hbV˜
11
+åTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·790e5cc5051fc0affc980ade09e929ec4$GOROOT/src/image/image.goþ"".NewNRGBA  dH‹%HD$èH;A†«Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…‰H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èégÿÿÿèé3þÿÿÌÌÌ
X*runtime.racefuncenter¨type.[]uint8Î"runtime.makesliceªtype."".NRGBA¼"runtime.newobjectâ"runtime.racewrite¸(runtime.writeBarrierò"runtime.racewriteÄ,runtime.racewriterangeÈ(runtime.racefuncexitô.runtime.writebarrierptrˆ0runtime.morestack_noctxtP°"".autotmp_0417?type.*"".NRGBA"".autotmp_0416type.int"".autotmp_0414type.int"".autotmp_0413type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".NRGBA"".r"type."".Rectangle °¯°¯
ÐØ11Qñ
 +²HkTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ0"".(*NRGBA64).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`0image/color.NRGBA64Modelr runtime.raceread€0image/color.NRGBA64Model˜0image/color.NRGBA64Model¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".p type.*"".NRGBA64Kpúp9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ("".(*NRGBA64).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".p type.*"".NRGBA64 x  
þ  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*NRGBA64).AtààdH‹%H;a†ÅHƒì@H‹\$@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‰\$hèHƒÄ@ÃèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterž."".(*NRGBA64).NRGBA64At„0type.image/color.NRGBA64š,type.image/color.Color²Zgo.itab.image/color.NRGBA64.image/color.Colorìruntime.convT2Iž(runtime.racefuncexit²0runtime.morestack_noctxtP€
"".autotmp_04180type.image/color.NRGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64€Àð‚1 ®"Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ."".(*NRGBA64).NRGBA64At€€dH‹%HD$øH;A†HìˆH‹œ$ˆH‰$è1Ûf‰œ$¨f‰œ$ªf‰œ$¬f‰œ$®1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„‚H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏNI9ɍEL9<I9ÀœÀ<uC1íf‰l$0f‰¬$¨f‰l$2f‰¬$ªf‰l$4f‰¬$¬f‰l$6f‰¬$®èHĈÃH‹œ$˜H‰\$H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6H‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃôHH‰$èH‹œ$H‰$èH‹D$ HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ™HH‰$èH‹|$ H‹´$H‰úHƒÂHƒþ„gH‹H‹FL‹FH9ƒLHf¶HÁãH‰øHÿÀH‹H‹NL‹FL‰„$€H‰T$pH‰L$xH9ȃ
H,f¶mH	ëf‰\$0H‰4$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃµHH‰$èH‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃYHH‰$èH‹|$ H‹´$H‰úHƒÂHƒþ„'H‹H‹FL‹FH9ƒHf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€H‰T$pH‰L$xH9ȃÌH,f¶mH	ëf‰\$2H‰4$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃtHH‰$èH‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃHH‰$èH‹|$ H‹´$H‰úHƒÂHƒþ„æH‹H‹FL‹FH9ƒËHf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€H‰T$pH‰L$xH9ȃ‹H,f¶mH	ëf‰\$4H‰4$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ3HH‰$èH‹œ$H‰$èH‹D$ H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ×HH‰$èH‹¼$H‹t$ H‰òHƒÂHƒÿ„¥H‹H‹GL‹GH9ƒŠHf¶HÁãH‰ðHƒÀH‹H‹OL‹GL‰„$€H‰T$pH‰L$xH9ÈsNH,f¶mH	ëH‰ØH·\$0f‰œ$¨H·\$2f‰œ$ªH·\$4f‰œ$¬f‰„$®èHĈÃèè‰éTÿÿÿèèèè‰éþÿÿèèèè‰éÒüÿÿèèèè‰é’ûÿÿèè1ÀéÃùÿÿ‰éwùÿÿèéÄøÿÿÌÌÌÌR
X*runtime.racefuncenter’*runtime.racereadrangeÒ(runtime.racefuncexit¼ runtime.racereadŽ runtime.raceread´ runtime.racereadÜ runtime.racereadä runtime.raceread†	 runtime.racereadŒ
 runtime.raceread” runtime.racereadœ
 runtime.raceread¾
 runtime.racereadÆ runtime.racereadÐ runtime.racereadØ runtime.racereadú runtime.raceread‚ runtime.racereadŒ runtime.raceread” runtime.raceread¶ runtime.raceread¾ runtime.raceread˜(runtime.racefuncexit²$runtime.panicindexÀ$runtime.panicindexÜ$runtime.panicindexê$runtime.panicindexø$runtime.panicindex†$runtime.panicindex¢$runtime.panicindex°$runtime.panicindex¾$runtime.panicindexÌ$runtime.panicindexè$runtime.panicindexö$runtime.panicindex„$runtime.panicindex’$runtime.panicindex®$runtime.panicindex¼$runtime.panicindexæ0runtime.morestack_noctxt@"".autotmp_04230type.image/color.NRGBA64"".autotmp_0422¿type.int"".autotmp_0421type.int"".autotmp_0420¯0type.image/color.NRGBA64"".yïtype.int"".xßtype.int"".p? type.*"".NRGBA64"".r"type."".Rectangle"".pŸtype."".Point"".iÏtype.int"".~r200type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA640•â
šÀ`Š" 6–¤žž˜?####	+²Ó
Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ."".(*NRGBA64).PixOffset€€dH‹%H;a†˜HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0èHƒÄÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÄ(runtime.racefuncexitØ0runtime.morestack_noctxt@ 
"".autotmp_0456type.int"".~r20type.int"".y type.int"".xtype.int"".p type.*"".NRGBA64 “À¨”  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*NRGBA64).Set " "dH‹%HD$ÈH;A†_Hì¸H‹œ$¸H‰$è1ÛH‹œ$ÈH‰\$XH‹œ$ÐH‰\$`H‹œ$ÀH‰$Hƒ$ HÇD$ èL‹L$XL‹D$`H‹¼$ÀHƒÿ„éH‹w H‹W(H‰T$pH‹O0H‰L$xH‹G8H‰„$€H‰t$hL9Ώ²I9ɍ©L9 I9ÀœÀ<u
èHĸÃH‹œ$ÈH‰\$0H‹œ$ÐH‰\$(H‰¼$ˆH‰<$Hƒ$ èH‹„$ˆH‹X H‹l$0H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$ˆH‰$Hƒ$èH‹„$ˆH‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$8HH‰$èH‹œ$ØH‰\$H‹œ$àH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$Pf‰\$Rf‰\$Tf‰\$VHH‰$H‰Œ$H‰L$H‰„$˜H‰D$H\$PH‰\$èH·\$Pf‰\$@H·\$Rf‰\$BH·\$Tf‰\$DH·\$Vf‰\$FH‹\$8HƒÃH‰\$HH‹œ$ÀH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃÆH)H‰$èH‹”$ÀHƒú„ H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃhH)H·l$@fÁí@ˆ+H‹\$8HÿÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃH)H‰$èH‹”$ÀHƒú„ÛH‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń£H)H·l$@@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń?H)H‰$èH‹”$ÀHƒú„H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃáH)H·l$BfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃyH)H‰$èH‹”$ÀHƒú„SH‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃH)H·l$B@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń·H)H‰$èH‹”$ÀHƒú„‘H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃYH)H·l$DfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃñH)H‰$èH‹”$ÀHƒú„ËH‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń“H)H·l$D@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9Ń/H)H‰$èH‹”$ÀHƒú„	H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ŃÑH)H·l$FfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ÅsmH)H‰$èH‹œ$ÀHƒûtNH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$HH‰„$¨H9ÅsH)H·l$F@ˆ+èHĸÃè‰ë®èè‰éðþÿÿèè‰é.þÿÿèè‰éhýÿÿèè‰é¦üÿÿèè‰éàûÿÿèè‰éûÿÿèè‰éYúÿÿè1Àé_øÿÿ‰éøÿÿèé÷ÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ`
X*runtime.racefuncenterÎ*runtime.racereadrange¨(runtime.racefuncexit˜ runtime.racereadð runtime.racereadœ runtime.racereadŠ0image/color.NRGBA64Modelœ runtime.racereadÞ0image/color.NRGBA64Modelô0image/color.NRGBA64Model„Î0type.image/color.NRGBA64¨"runtime.assertI2T¾	 runtime.racereadÊ
"runtime.racewritež runtime.racereadª
"runtime.racewriteø runtime.raceread„"runtime.racewriteÚ runtime.racereadæ"runtime.racewrite´ runtime.racereadÀ"runtime.racewrite– runtime.raceread¢"runtime.racewriteð runtime.racereadü"runtime.racewriteÒ runtime.racereadÖ"runtime.racewriteð(runtime.racefuncexitŠ$runtime.panicindex $runtime.panicindex®$runtime.panicindexÊ$runtime.panicindexØ$runtime.panicindexô$runtime.panicindex‚ $runtime.panicindexž $runtime.panicindex¬ $runtime.panicindexÈ $runtime.panicindexÖ $runtime.panicindexò $runtime.panicindex€!$runtime.panicindexœ!$runtime.panicindexª!$runtime.panicindexÆ!$runtime.panicindexð!0runtime.morestack_noctxtPð."".autotmp_0469type.int"".autotmp_0468type.int"".autotmp_0467type.int"".autotmp_0466type.int"".autotmp_0465type.int"".autotmp_0464type.int"".autotmp_0463type.int"".autotmp_0462type.int"".autotmp_0461ßtype.int"".autotmp_0460type.int"".autotmp_0458Ï0type.image/color.NRGBA64"".autotmp_0457O,type.image/color.Color"".yŸtype.int"".xtype.int"".p_ type.*"".NRGBA64"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1ï0type.image/color.NRGBA64"".iÿtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA640ðÀïðã
ïð³ï‚°£¢Â¹¬±­±­±¦	+à‚ƒTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ0"".(*NRGBA64).SetNRGBA64ààdH‹%H;a†Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„›H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9ΏgI9ɍ^L9UI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃWH)H‰$èH‹”$ˆHƒú„1H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H·¬$ fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¡H)H‰$èH‹”$ˆHƒú„{H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃLH)H·¬$ @ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃîH)H‰$èH‹”$ˆHƒú„ÈH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń™H)H·¬$¢fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń7H)H‰$èH‹”$ˆHƒú„H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃâH)H·¬$¢@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń„H)H‰$èH‹”$ˆHƒú„^H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń/H)H·¬$¤fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÍH)H‰$èH‹”$ˆHƒú„§H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃxH)H·¬$¤@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„ôH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÅH)H·¬$¦fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$èH‹œ$ˆHƒûtHH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$¦@ˆ+èHĀÃè‰ë´èè‰éÿÿÿèè‰éRþÿÿèè‰é›ýÿÿèè‰éèüÿÿèè‰é1üÿÿèè‰é~ûÿÿèè‰éÈúÿÿè1Àéªùÿÿ‰é^ùÿÿèéÒøÿÿÌÌR
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadˆ runtime.raceread‚"runtime.racewriteÊ runtime.racereadÄ	"runtime.racewrite† runtime.raceread€"runtime.racewriteÊ
 runtime.racereadÄ"runtime.racewrite† runtime.raceread€"runtime.racewriteÊ runtime.racereadÄ"runtime.racewrite† runtime.raceread€"runtime.racewriteÊ runtime.raceread¼"runtime.racewriteÊ(runtime.racefuncexitä$runtime.panicindexú$runtime.panicindexˆ$runtime.panicindex¤$runtime.panicindex²$runtime.panicindexÎ$runtime.panicindexÜ$runtime.panicindexø$runtime.panicindex†$runtime.panicindex¢$runtime.panicindex°$runtime.panicindexÌ$runtime.panicindexÚ$runtime.panicindexö$runtime.panicindex„$runtime.panicindex $runtime.panicindexÊ0runtime.morestack_noctxt@€("".autotmp_0496type.int"".autotmp_0495type.int"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0492type.int"".autotmp_0491type.int"".autotmp_0490type.int"".autotmp_0489type.int"".autotmp_0488¯type.int"".autotmp_0487type.int"".yßtype.int"".xÏtype.int"".p? type.*"".NRGBA64"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c00type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA640€½ÿ€˜ÿ€³ÿ°|Р‘ª¢ž¢ž¢—&Úƒ­Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ,"".(*NRGBA64).SubImage€€dH‹%HD$¸H;A†^HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÉH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍JH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé°üÿÿ‰é0üÿÿèé€ûÿÿD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".NRGBA64æ"runtime.newobject¤,runtime.racewriterange”8go.itab.*"".NRGBA64."".ImageÜ(runtime.racefuncexitú type.*"".NRGBA64type."".Image¨8go.itab.*"".NRGBA64."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread 
 runtime.racereadÀtype."".NRGBA64Ò"runtime.newobjectþ"runtime.racewriteÚ(runtime.writeBarrierš
"runtime.racewriteÆ
 runtime.raceread¸,runtime.racewriterangeÆ8go.itab.*"".NRGBA64."".ImageŽ(runtime.racefuncexit¬ type.*"".NRGBA64Âtype."".ImageÚ8go.itab.*"".NRGBA64."".Imageî runtime.typ2Itab¦.runtime.writebarrierptrº$runtime.panicsliceî0runtime.morestack_noctxtp""".autotmp_0524type.*uint8"".autotmp_0523 type.*"".NRGBA64"".autotmp_0522type.int"".autotmp_0521type.int"".autotmp_0520Ÿtype.int"".autotmp_0518? type.*"".NRGBA64"".autotmp_0516 type.*"".NRGBA64"".autotmp_0515/type.[]uint8"".autotmp_0514 type.*"".NRGBA64"".yÏtype.int"".x¿type.int"".pO type.*"".NRGBA64"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NRGBA64.šØc
€	jòBŽW†7šZt80-	
<+¦\0/ƒYNº0&$Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ("".(*NRGBA64).Opaque  dH‹%HD$ðH;A†ªHìH‹œ$H‰$èH‹œ$˜H‰$Hƒ$ HÇD$ èH‹¼$˜Hƒÿ„ZH‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍!H9À<tƄ$ èHĐÃH‰<$Hƒ$ HÇD$ èH‹”$˜Hƒú„ÒH‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ H‰\$H‰$Hƒ$ Hƒ$èH‹Œ$˜H‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹Œ$˜H‹Y8H‹l$H9ëŽ.H‹D$ H‰D$(H‹l$H9ècH‰$èH‹D$(H‹œ$˜HƒÀH‹H‹KH‹kH‰¬$ˆH‰T$xH‰Œ$€H9ȃÌHH‰$èH‹´$˜H‹D$(HƒÀHƒþ„H‹H‹NH‹nH‰¬$ˆH‰T$xH‰Œ$€H9ȃmH¶€ûÿ…3H‰4$èH‹D$(HÿÀH‹œ$˜H‹H‹KH‹kH‰¬$ˆH‰T$xH‰Œ$€H9ȃHH‰$èH‹|$(H‹Œ$˜H‰øHÿÀHƒù„ãH‹1H‹QH‹iH‰¬$ˆH‰t$xH‰”$€H9Ѓ³H¶€ûÿ…ŽH‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰$Hƒ$èH‹„$˜H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$èH‹Œ$˜H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ èHĐÃè‰éÿÿÿèè‰é\þÿÿèƄ$ èHĐÉé'ýÿÿHÇÀéÙüÿÿ‰éŸüÿÿèé4üÿÿÌÌÌÌ(
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrange¼ runtime.racereadŽ runtime.raceread„ runtime.raceread’ runtime.racereadÌ runtime.racereadØ	 runtime.racereadè runtime.racereadÊ runtime.racereadº
(runtime.racefuncexitÔ
$runtime.panicindexð
$runtime.panicindexþ
$runtime.panicindexš$runtime.panicindex¸(runtime.racefuncexit†0runtime.morestack_noctxt  "".autotmp_0534type.int"".autotmp_0533type.int"".autotmp_0532¿type.int"".autotmp_0530type.int"".autotmp_0529type.int"".autotmp_0528type.int"".autotmp_0527type.int"".r¯"type."".Rectangle"".ro"type."".Rectangle"".iÏtype.int"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".~r0type.bool"".p type.*"".NRGBA64: Ÿ »Ÿ >Ÿ ŸÐ^”hbVÉ
11
*+¥Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·790e5cc5051fc0affc980ade09e929ec4$GOROOT/src/image/image.goþ"".NewNRGBA64  dH‹%HD$èH;A†«Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…‰H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èégÿÿÿèé3þÿÿÌÌÌ
X*runtime.racefuncenter¨type.[]uint8Î"runtime.makesliceªtype."".NRGBA64¼"runtime.newobjectâ"runtime.racewrite¸(runtime.writeBarrierò"runtime.racewriteÄ,runtime.racewriterangeÈ(runtime.racefuncexitô.runtime.writebarrierptrˆ0runtime.morestack_noctxtP°"".autotmp_0549? type.*"".NRGBA64"".autotmp_0548type.int"".autotmp_0546type.int"".autotmp_0545type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@ type.*"".NRGBA64"".r"type."".Rectangle °¯°¯
и11Qñ
 +²HkTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ,"".(*Alpha).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`,image/color.AlphaModelr runtime.raceread€,image/color.AlphaModel˜,image/color.AlphaModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".AlphaKpÚp9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ$"".(*Alpha).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".Alpha x  
Þ  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Alpha).At€€dH‹%H;a†¢Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$?H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@ÃèéAÿÿÿÌ
B*runtime.racefuncenterž&"".(*Alpha).AlphaAt¾,type.image/color.AlphaÔ,type.image/color.ColorìVgo.itab.image/color.Alpha.image/color.Color¦runtime.convT2IØ(runtime.racefuncexitì0runtime.morestack_noctxtP€
"".autotmp_0550,type.image/color.Alpha"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha€Àâ1z ‹Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ&"".(*Alpha).AlphaAtÀ	À	dH‹%HD$øH;A†0HìˆH‹œ$ˆH‰$è1ۈœ$¨1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„±H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώ}I9ɍtL9kI9ÀœÀ<u1D$ˆ„$¨èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HëH‰\$(1ۈ\$H‹œ$H‰$èH‹œ$H‹H‹CH‹kH‰¬$€H‰L$pH‹l$(H‰D$xH9ÅshH)H‰$èH‹œ$HƒûtIH‹H‹CH‹kH‰¬$€H‰L$pH‹l$(H‰D$xH9ÅsH)¶ˆœ$¨èHĈÃè‰ë³è1Àé”þÿÿ‰éHþÿÿèé®ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenterà*runtime.racereadrangeÎ(runtime.racefuncexit¸ runtime.racereadŠ runtime.raceread° runtime.raceread° runtime.raceread¨ runtime.raceread¸(runtime.racefuncexitÒ$runtime.panicindexè$runtime.panicindex’	0runtime.morestack_noctxt@"".autotmp_0555,type.image/color.Alpha"".autotmp_0554¯type.int"".autotmp_0553type.int"".autotmp_0552á,type.image/color.Alpha"".yßtype.int"".xÏtype.int"".p?type.*"".Alpha"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha.Ó´ à6ê
		 
’µ+ð|ÉTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ*"".(*Alpha).PixOffset€€dH‹%H;a†”HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0èHƒÄÃèéOÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.raceread¼(runtime.racefuncexitÐ0runtime.morestack_noctxt@ 
"".autotmp_0558type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Alpha Àþ  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Alpha).SetÀÀdH‹%HD$ÐH;A†°Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„:H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏI9ɍýL9ôI9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$/H‰\$èH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$@H‰„$ H9ÅslH)H‰$èH‹œ$¸HƒûtMH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$@H‰„$ H9ÅsH)¶l$/@ˆ+èHİÃè‰ë¯è1Àéþÿÿ‰é¿ýÿÿèé.ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ(
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.racereadü,image/color.AlphaModelŽ runtime.racereadÐ,image/color.AlphaModelæ,image/color.AlphaModelö ,type.image/color.Alphaú"runtime.assertI2Tœ runtime.raceread 	"runtime.racewrite¸
(runtime.racefuncexitÒ
$runtime.panicindexè
$runtime.panicindex’0runtime.morestack_noctxtPà"".autotmp_0563Ïtype.int"".autotmp_0562type.int"".autotmp_0560,type.image/color.Alpha"".autotmp_0559O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_type.*"".Alpha"".rŸ"type."".Rectangle"".p¿type."".Point"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha.à½ßàÊßà ßà6†
 ž¥+Ý~ÚTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ("".(*Alpha).SetAlphaààdH‹%H;a†Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„™H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9ΏeI9ɍ\L9SI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ @ˆ+èHĀÃè‰ëµè1Àé¬þÿÿ‰é`þÿÿèéÔýÿÿÌÌÌÌ
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadî runtime.racereadà"runtime.racewriteì(runtime.racefuncexit†$runtime.panicindexœ$runtime.panicindexÆ0runtime.morestack_noctxt@€"".autotmp_0568¯type.int"".autotmp_0567type.int"".yßtype.int"".xÏtype.int"".p?type.*"".Alpha"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha.€½ÿ€©ÿ€ ÿ°6–
 ’&ÚvºTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ("".(*Alpha).SubImage€€dH‹%HD$¸H;A†ZHìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÅH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍FH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé´üÿÿ‰é4üÿÿèé„ûÿÿÌÌÌÌD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".Alphaæ"runtime.newobject¤,runtime.racewriterange”4go.itab.*"".Alpha."".ImageÜ(runtime.racefuncexitútype.*"".Alphatype."".Image¨4go.itab.*"".Alpha."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread˜
 runtime.raceread¸type."".AlphaÊ"runtime.newobjectö"runtime.racewriteÒ(runtime.writeBarrier’
"runtime.racewrite¾
 runtime.raceread°,runtime.racewriterange¾4go.itab.*"".Alpha."".Image†(runtime.racefuncexit¤type.*"".Alphaºtype."".ImageÒ4go.itab.*"".Alpha."".Imageæ runtime.typ2Itabž.runtime.writebarrierptr²$runtime.panicsliceæ0runtime.morestack_noctxtp""".autotmp_0582type.*uint8"".autotmp_0581type.*"".Alpha"".autotmp_0580type.int"".autotmp_0579type.int"".autotmp_0578Ÿtype.int"".autotmp_0576?type.*"".Alpha"".autotmp_0574type.*"".Alpha"".autotmp_0573/type.[]uint8"".autotmp_0572type.*"".Alpha"".yÏtype.int"".x¿type.int"".pOtype.*"".Alpha"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Alpha.šÔc€	jªBŽW†7–Zt80-	:+¦\0/YNº0&(Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ$"".(*Alpha).Opaque  dH‹%HD$ðH;A†ßHìH‹œ$H‰$èH‹œ$˜H‰$Hƒ$ HÇD$ èH‹¼$˜Hƒÿ„H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍VH9À<tƄ$ èHĐÃH‰<$Hƒ$ HÇD$ èH‹”$˜Hƒú„H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÇD$ H‰\$H‰$Hƒ$ Hƒ$èH‹Œ$˜H‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹Œ$˜H‹Y8H‹l$H9ëŽgH‹D$ H‰D$(H‹l$H9èÆH‰$èH‹œ$˜H‹H‹CH‹kH‰¬$ˆH‰L$xH‹l$(H‰„$€H9Ń	H)H‰$èH‹t$(H‹Œ$˜Hƒù„ÞH‹H‹AH‹iH‰¬$ˆH‰T$xH‰„$€H9ƃ®H2¶€ûÿtƄ$ èHĐÃH‰ðHÿÀH‰D$(H‹l$H9èŒ:ÿÿÿH‹\$ H‰\$0H‰$Hƒ$èH‹„$˜H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$èH‹Œ$˜H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é|þÿÿè‰éÿÿÿèƄ$ èHĐÉéòýÿÿHÇÀé¤ýÿÿ‰éjýÿÿèéÿüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ 
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrange´ runtime.raceread† runtime.racereadü runtime.raceread‚ runtime.raceread´(runtime.racefuncexit¦	 runtime.racereadˆ
 runtime.racereadè
$runtime.panicindex„$runtime.panicindex¢(runtime.racefuncexitð0runtime.morestack_noctxt  "".autotmp_0591type.int"".autotmp_0590¿type.int"".autotmp_0588type.int"".autotmp_0587type.int"".autotmp_0586type.int"".autotmp_0585type.int"".r¯"type."".Rectangle"".ro"type."".Rectangle"".iÏtype.int"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".~r0type.bool"".ptype.*"".Alpha< Ÿ øŸ ¶Ÿ Ÿ^Ìh^V˜
11
+åTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·790e5cc5051fc0affc980ade09e929ec4$GOROOT/src/image/image.goþ"".NewAlpha  dH‹%HD$èH;A†£Hì˜H‹œ$˜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‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=……H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èékÿÿÿèé;þÿÿÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenter type.[]uint8Æ"runtime.makeslice¢type."".Alpha´"runtime.newobjectÚ"runtime.racewrite°(runtime.writeBarrierê"runtime.racewrite´,runtime.racewriterange¸(runtime.racefuncexitä.runtime.writebarrierptrø0runtime.morestack_noctxtP°"".autotmp_0600?type.*"".Alpha"".autotmp_0599type.int"".autotmp_0597type.int"".autotmp_0596type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".Alpha"".r"type."".Rectangle °ˆ¯°¯Ðð11Mí +®HgTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ0"".(*Alpha16).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`0image/color.Alpha16Modelr runtime.raceread€0image/color.Alpha16Model˜0image/color.Alpha16Model¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".p type.*"".Alpha16Kp’	p9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ("".(*Alpha16).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".p type.*"".Alpha16 x  
–	  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*Alpha16).At  dH‹%H;a†¤Hƒì@H‹\$@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‰\$hèHƒÄ@Ãèé?ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterž."".(*Alpha16).Alpha16AtÂ0type.image/color.Alpha16Ø,type.image/color.ColorðZgo.itab.image/color.Alpha16.image/color.Colorªruntime.convT2IÜ(runtime.racefuncexitð0runtime.morestack_noctxtP€
"".autotmp_06010type.image/color.Alpha16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16€ŸÐš	1| #Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ."".(*Alpha16).Alpha16At€€dH‹%HD$øH;A†ÐHìˆH‹œ$ˆH‰$è1Ûf‰œ$¨1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„PH‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏI9ɍL9
I9ÀœÀ<u1Àf‰D$f‰„$¨èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÑåHëH‰\$(1Ûf‰\$H‹œ$H‰$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃùHH‰$èH‹œ$H‰$èH‹D$(HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃžHH‰$èH‹¼$H‹t$(H‰òHƒÂHƒÿtsH‹H‹GL‹GH9Âs\Hf¶HÁãH‰ðHÿÀH‹H‹OL‹GL‰„$€H‰T$pH‰L$xH9Ès!H,f¶mH	ëf‰œ$¨èHĈÃèè‰ë‰èè1Àéõýÿÿ‰é©ýÿÿèéýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ"
X*runtime.racefuncenterâ*runtime.racereadrangeÔ(runtime.racefuncexit¾ runtime.raceread runtime.raceread¶ runtime.raceread¾ runtime.racereadÆ runtime.racereadè runtime.racereadî runtime.racereadÜ
(runtime.racefuncexitö
$runtime.panicindex„$runtime.panicindexš$runtime.panicindex¨$runtime.panicindexÒ0runtime.morestack_noctxt@"".autotmp_06060type.image/color.Alpha16"".autotmp_0605¯type.int"".autotmp_0604type.int"".autotmp_0603ã0type.image/color.Alpha16"".yßtype.int"".xÏtype.int"".p? type.*"".Alpha16"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r200type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16.ÖÃ.€6¢	
	
 •Ï+ó€âTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ."".(*Alpha16).PixOffset€€dH‹%H;a†—HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÑåHëH‰\$0èHƒÄÃèéLÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÂ(runtime.racefuncexitÖ0runtime.morestack_noctxt@ 
"".autotmp_0615type.int"".~r20type.int"".y type.int"".xtype.int"".p type.*"".Alpha16 ’À¶	“  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*Alpha16).Set€€dH‹%HD$ÐH;A†“Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏéI9ɍàL9×I9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÑåHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$.H‰\$èH·\$.f‰\$,H‹\$@HƒÃH‰\$HH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9Ń.H)H‰$èH‹”$¸Hƒú„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃÐH)H·l$,fÁí@ˆ+H‹\$@HÿÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsmH)H‰$èH‹œ$¸HƒûtNH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsH)H·l$,@ˆ+èHİÃè‰ë®èè‰éñþÿÿè1Àé(ýÿÿ‰éÜüÿÿèéKüÿÿÌÌÌÌÌÌÌÌÌÌÌ0
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.raceread‚0image/color.Alpha16Model” runtime.racereadÖ0image/color.Alpha16Modelì0image/color.Alpha16Modelü¨0type.image/color.Alpha16‚"runtime.assertI2TÖ runtime.racereadâ	"runtime.racewrite¶ runtime.racereadº"runtime.racewriteÔ
(runtime.racefuncexitî
$runtime.panicindex„$runtime.panicindex’$runtime.panicindex®$runtime.panicindexØ0runtime.morestack_noctxtPà""".autotmp_0622type.int"".autotmp_0621type.int"".autotmp_0620Ïtype.int"".autotmp_0619type.int"".autotmp_0617ƒ0type.image/color.Alpha16"".autotmp_0616O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_ type.*"".Alpha16"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1‡0type.image/color.Alpha16"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16.à½ßà˜ßà5ßÀF¾	 	¡’¹¥	+݁·Tgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ0"".(*Alpha16).SetAlpha16ààdH‹%H;a†ÒHì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„\H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ(I9ɍL9I9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÑåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„óH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÄH)H·¬$ fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$èH‹œ$ˆHƒûtHH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$ @ˆ+èHĀÃè‰ë´èè‰éÿÿÿè1Àééýÿÿ‰éýÿÿèéýÿÿÌ"
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.raceread† runtime.raceread€"runtime.racewriteÈ runtime.racereadº	"runtime.racewriteÈ
(runtime.racefuncexitâ
$runtime.panicindexø
$runtime.panicindex†$runtime.panicindex¢$runtime.panicindexÌ0runtime.morestack_noctxt@€"".autotmp_0631type.int"".autotmp_0630type.int"".autotmp_0629¯type.int"".autotmp_0628type.int"".yßtype.int"".xÏtype.int"".p? type.*"".Alpha16"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c00type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16.€½ÿ€×ÿ€5ÿð@Ò		 
ª–&Ú‚îTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ,"".(*Alpha16).SubImage€€dH‹%HD$¸H;A†]HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÈH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍IH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÑåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé±üÿÿ‰é1üÿÿèéûÿÿÌD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".Alpha16æ"runtime.newobject¤,runtime.racewriterange”8go.itab.*"".Alpha16."".ImageÜ(runtime.racefuncexitú type.*"".Alpha16type."".Image¨8go.itab.*"".Alpha16."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.racereadž
 runtime.raceread¾type."".Alpha16Ð"runtime.newobjectü"runtime.racewriteØ(runtime.writeBarrier˜
"runtime.racewriteÄ
 runtime.raceread¶,runtime.racewriterangeÄ8go.itab.*"".Alpha16."".ImageŒ(runtime.racefuncexitª type.*"".Alpha16Àtype."".ImageØ8go.itab.*"".Alpha16."".Imageì runtime.typ2Itab¤.runtime.writebarrierptr¸$runtime.panicsliceì0runtime.morestack_noctxtp""".autotmp_0647type.*uint8"".autotmp_0646 type.*"".Alpha16"".autotmp_0645type.int"".autotmp_0644type.int"".autotmp_0643Ÿtype.int"".autotmp_0641? type.*"".Alpha16"".autotmp_0639 type.*"".Alpha16"".autotmp_0638/type.[]uint8"".autotmp_0637 type.*"".Alpha16"".yÏtype.int"".x¿type.int"".pO type.*"".Alpha16"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".Alpha16.š×c€	jè	BŽW†7™Zt80-	<+¦\0/‚YNº0&%Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ("".(*Alpha16).Opaque  dH‹%HD$ðH;A†©HìH‹œ$H‰$èH‹œ$˜H‰$Hƒ$ HÇD$ èH‹¼$˜Hƒÿ„YH‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍ H9À<tƄ$ èHĐÃH‰<$Hƒ$ HÇD$ èH‹”$˜Hƒú„ÑH‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÑãHÇD$ H‰\$H‰$Hƒ$ Hƒ$èH‹Œ$˜H‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹Œ$˜H‹Y8H‹l$H9ëŽ.H‹D$ H‰D$(H‹l$H9ècH‰$èH‹D$(H‹œ$˜HƒÀH‹H‹KH‹kH‰¬$ˆH‰T$xH‰Œ$€H9ȃÌHH‰$èH‹´$˜H‹D$(HƒÀHƒþ„H‹H‹NH‹nH‰¬$ˆH‰T$xH‰Œ$€H9ȃmH¶€ûÿ…3H‰4$èH‹D$(HÿÀH‹œ$˜H‹H‹KH‹kH‰¬$ˆH‰T$xH‰Œ$€H9ȃHH‰$èH‹|$(H‹Œ$˜H‰øHÿÀHƒù„ãH‹1H‹QH‹iH‰¬$ˆH‰t$xH‰”$€H9Ѓ³H¶€ûÿ…ŽH‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰$Hƒ$èH‹„$˜H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$èH‹Œ$˜H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ èHĐÃè‰éÿÿÿèè‰é\þÿÿèƄ$ èHĐÉé(ýÿÿHÇÀéÚüÿÿ‰é üÿÿèé5üÿÿÌÌÌÌÌ(
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrangeº runtime.racereadŒ runtime.raceread‚ runtime.raceread runtime.racereadÊ runtime.racereadÖ	 runtime.racereadæ runtime.racereadÈ runtime.raceread¸
(runtime.racefuncexitÒ
$runtime.panicindexî
$runtime.panicindexü
$runtime.panicindex˜$runtime.panicindex¶(runtime.racefuncexit„0runtime.morestack_noctxt  "".autotmp_0657type.int"".autotmp_0656type.int"".autotmp_0655¿type.int"".autotmp_0653type.int"".autotmp_0652type.int"".autotmp_0651type.int"".autotmp_0650type.int"".r¯"type."".Rectangle"".ro"type."".Rectangle"".iÏtype.int"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".~r0type.bool"".p type.*"".Alpha16: Ÿ ºŸ >Ÿ ŸÐ^Š
haVÉ
11
*+¥Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·790e5cc5051fc0affc980ade09e929ec4$GOROOT/src/image/image.goþ"".NewAlpha16  dH‹%HD$èH;A†©Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…ˆH‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÑåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èéhÿÿÿèé5þÿÿÌÌÌÌÌ
X*runtime.racefuncenter¦type.[]uint8Ì"runtime.makeslice¨type."".Alpha16º"runtime.newobjectà"runtime.racewrite¶(runtime.writeBarrierð"runtime.racewriteÀ,runtime.racewriterangeÄ(runtime.racefuncexitð.runtime.writebarrierptr„0runtime.morestack_noctxtP°"".autotmp_0672? type.*"".Alpha16"".autotmp_0671type.int"".autotmp_0669type.int"".autotmp_0668type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@ type.*"".Alpha16"".r"type."".Rectangle °Ž¯°¯Ð®
11Pð +±HjTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ*"".(*Gray).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`*image/color.GrayModelr runtime.raceread€*image/color.GrayModel˜*image/color.GrayModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".GrayKpÐ
p9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ""".(*Gray).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".Gray x  
Ô
  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Gray).At€€dH‹%H;a†¢Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$?H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@ÃèéAÿÿÿÌ
B*runtime.racefuncenterž""".(*Gray).GrayAt¾*type.image/color.GrayÔ,type.image/color.ColorìTgo.itab.image/color.Gray.image/color.Color¦runtime.convT2IØ(runtime.racefuncexitì0runtime.morestack_noctxtP€
"".autotmp_0673*type.image/color.Gray"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray€ÀØ
1z ‹Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ""".(*Gray).GrayAtÀ	À	dH‹%HD$øH;A†0HìˆH‹œ$ˆH‰$è1ۈœ$¨1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„±H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώ}I9ɍtL9kI9ÀœÀ<u1D$ˆ„$¨èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HëH‰\$(1ۈ\$H‹œ$H‰$èH‹œ$H‹H‹CH‹kH‰¬$€H‰L$pH‹l$(H‰D$xH9ÅshH)H‰$èH‹œ$HƒûtIH‹H‹CH‹kH‰¬$€H‰L$pH‹l$(H‰D$xH9ÅsH)¶ˆœ$¨èHĈÃè‰ë³è1Àé”þÿÿ‰éHþÿÿèé®ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenterà*runtime.racereadrangeÎ(runtime.racefuncexit¸ runtime.racereadŠ runtime.raceread° runtime.raceread° runtime.raceread¨ runtime.raceread¸(runtime.racefuncexitÒ$runtime.panicindexè$runtime.panicindex’	0runtime.morestack_noctxt@"".autotmp_0678*type.image/color.Gray"".autotmp_0677¯type.int"".autotmp_0676type.int"".autotmp_0675á*type.image/color.Gray"".yßtype.int"".xÏtype.int"".p?type.*"".Gray"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray.Ó´ à6à

		 
’µ+ð|ÉTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ("".(*Gray).PixOffset€€dH‹%H;a†”HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0èHƒÄÃèéOÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.raceread¼(runtime.racefuncexitÐ0runtime.morestack_noctxt@ 
"".autotmp_0681type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray Àô
  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Gray).SetÀÀdH‹%HD$ÐH;A†°Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„:H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏI9ɍýL9ôI9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$/H‰\$èH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$@H‰„$ H9ÅslH)H‰$èH‹œ$¸HƒûtMH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$@H‰„$ H9ÅsH)¶l$/@ˆ+èHİÃè‰ë¯è1Àéþÿÿ‰é¿ýÿÿèé.ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ(
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.racereadü*image/color.GrayModelŽ runtime.racereadÐ*image/color.GrayModelæ*image/color.GrayModelö *type.image/color.Grayú"runtime.assertI2Tœ runtime.raceread 	"runtime.racewrite¸
(runtime.racefuncexitÒ
$runtime.panicindexè
$runtime.panicindex’0runtime.morestack_noctxtPà"".autotmp_0686Ïtype.int"".autotmp_0685type.int"".autotmp_0683*type.image/color.Gray"".autotmp_0682O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_type.*"".Gray"".rŸ"type."".Rectangle"".p¿type."".Point"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray.à½ßàÊßà ßà6ü

 ž¥+Ý~ÚTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ$"".(*Gray).SetGrayààdH‹%H;a†Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„™H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9ΏeI9ɍ\L9SI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ @ˆ+èHĀÃè‰ëµè1Àé¬þÿÿ‰é`þÿÿèéÔýÿÿÌÌÌÌ
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadî runtime.racereadà"runtime.racewriteì(runtime.racefuncexit†$runtime.panicindexœ$runtime.panicindexÆ0runtime.morestack_noctxt@€"".autotmp_0691¯type.int"".autotmp_0690type.int"".yßtype.int"".xÏtype.int"".p?type.*"".Gray"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray.€½ÿ€©ÿ€ ÿ°6Œ
 ’&ÚvºTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ&"".(*Gray).SubImage€€dH‹%HD$¸H;A†ZHìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÅH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍FH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé´üÿÿ‰é4üÿÿèé„ûÿÿÌÌÌÌD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".Grayæ"runtime.newobject¤,runtime.racewriterange”2go.itab.*"".Gray."".ImageÜ(runtime.racefuncexitútype.*"".Graytype."".Image¨2go.itab.*"".Gray."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread˜
 runtime.raceread¸type."".GrayÊ"runtime.newobjectö"runtime.racewriteÒ(runtime.writeBarrier’
"runtime.racewrite¾
 runtime.raceread°,runtime.racewriterange¾2go.itab.*"".Gray."".Image†(runtime.racefuncexit¤type.*"".Grayºtype."".ImageÒ2go.itab.*"".Gray."".Imageæ runtime.typ2Itabž.runtime.writebarrierptr²$runtime.panicsliceæ0runtime.morestack_noctxtp""".autotmp_0705type.*uint8"".autotmp_0704type.*"".Gray"".autotmp_0703type.int"".autotmp_0702type.int"".autotmp_0701Ÿtype.int"".autotmp_0699?type.*"".Gray"".autotmp_0697type.*"".Gray"".autotmp_0696/type.[]uint8"".autotmp_0695type.*"".Gray"".yÏtype.int"".x¿type.int"".pOtype.*"".Gray"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray.šÔc€	j BŽW†7–Zt80-	:+¦\0/YNº0&(Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ""".(*Gray).Opaque€€dH‹%H;av!HƒìH‹\$H‰$èÆD$èHƒÄÃèëÉÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterN(runtime.racefuncexitb0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".Gray@Â
$Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewGray  dH‹%HD$èH;A†£Hì˜H‹œ$˜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‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=……H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èékÿÿÿèé;þÿÿÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenter type.[]uint8Æ"runtime.makeslice¢type."".Gray´"runtime.newobjectÚ"runtime.racewrite°(runtime.writeBarrierê"runtime.racewrite´,runtime.racewriterange¸(runtime.racefuncexitä.runtime.writebarrierptrø0runtime.morestack_noctxtP°"".autotmp_0714?type.*"".Gray"".autotmp_0713type.int"".autotmp_0711type.int"".autotmp_0710type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".Gray"".r"type."".Rectangle °ˆ¯°¯ÐÌ11Mí +®HgTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ."".(*Gray16).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`.image/color.Gray16Modelr runtime.raceread€.image/color.Gray16Model˜.image/color.Gray16Model¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".Gray16Kpîp9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ&"".(*Gray16).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".Gray16 x  
ò  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*Gray16).At  dH‹%H;a†¤Hƒì@H‹\$@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‰\$hèHƒÄ@Ãèé?ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterž*"".(*Gray16).Gray16AtÂ.type.image/color.Gray16Ø,type.image/color.ColorðXgo.itab.image/color.Gray16.image/color.Colorªruntime.convT2IÜ(runtime.racefuncexitð0runtime.morestack_noctxtP€
"".autotmp_0715.type.image/color.Gray16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16€ŸÐö1| #Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ*"".(*Gray16).Gray16At€€dH‹%HD$øH;A†ÐHìˆH‹œ$ˆH‰$è1Ûf‰œ$¨1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„PH‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏI9ɍL9
I9ÀœÀ<u1Àf‰D$f‰„$¨èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÑåHëH‰\$(1Ûf‰\$H‹œ$H‰$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃùHH‰$èH‹œ$H‰$èH‹D$(HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃžHH‰$èH‹¼$H‹t$(H‰òHƒÂHƒÿtsH‹H‹GL‹GH9Âs\Hf¶HÁãH‰ðHÿÀH‹H‹OL‹GL‰„$€H‰T$pH‰L$xH9Ès!H,f¶mH	ëf‰œ$¨èHĈÃèè‰ë‰èè1Àéõýÿÿ‰é©ýÿÿèéýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ"
X*runtime.racefuncenterâ*runtime.racereadrangeÔ(runtime.racefuncexit¾ runtime.raceread runtime.raceread¶ runtime.raceread¾ runtime.racereadÆ runtime.racereadè runtime.racereadî runtime.racereadÜ
(runtime.racefuncexitö
$runtime.panicindex„$runtime.panicindexš$runtime.panicindex¨$runtime.panicindexÒ0runtime.morestack_noctxt@"".autotmp_0720.type.image/color.Gray16"".autotmp_0719¯type.int"".autotmp_0718type.int"".autotmp_0717ã.type.image/color.Gray16"".yßtype.int"".xÏtype.int"".p?type.*"".Gray16"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16.ÖÃ.€6þ
	
 •Ï+ó€âTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ,"".(*Gray16).PixOffset€€dH‹%H;a†—HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÑåHëH‰\$0èHƒÄÃèéLÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÂ(runtime.racefuncexitÖ0runtime.morestack_noctxt@ 
"".autotmp_0729type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray16 ’À’“  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ "".(*Gray16).Set€€dH‹%HD$ÐH;A†“Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏéI9ɍàL9×I9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÑåHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$.H‰\$èH·\$.f‰\$,H‹\$@HƒÃH‰\$HH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9Ń.H)H‰$èH‹”$¸Hƒú„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃÐH)H·l$,fÁí@ˆ+H‹\$@HÿÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsmH)H‰$èH‹œ$¸HƒûtNH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsH)H·l$,@ˆ+èHİÃè‰ë®èè‰éñþÿÿè1Àé(ýÿÿ‰éÜüÿÿèéKüÿÿÌÌÌÌÌÌÌÌÌÌÌ0
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.raceread‚.image/color.Gray16Model” runtime.racereadÖ.image/color.Gray16Modelì.image/color.Gray16Modelü¨.type.image/color.Gray16‚"runtime.assertI2TÖ runtime.racereadâ	"runtime.racewrite¶ runtime.racereadº"runtime.racewriteÔ
(runtime.racefuncexitî
$runtime.panicindex„$runtime.panicindex’$runtime.panicindex®$runtime.panicindexØ0runtime.morestack_noctxtPà""".autotmp_0736type.int"".autotmp_0735type.int"".autotmp_0734Ïtype.int"".autotmp_0733type.int"".autotmp_0731ƒ.type.image/color.Gray16"".autotmp_0730O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_type.*"".Gray16"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1‡.type.image/color.Gray16"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16.à½ßà˜ßà5ßÀFš 	¡’¹¥	+݁·Tgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ,"".(*Gray16).SetGray16ààdH‹%H;a†ÒHì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„\H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ(I9ɍL9I9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÑåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„óH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÄH)H·¬$ fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$èH‹œ$ˆHƒûtHH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$ @ˆ+èHĀÃè‰ë´èè‰éÿÿÿè1Àééýÿÿ‰éýÿÿèéýÿÿÌ"
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.raceread† runtime.raceread€"runtime.racewriteÈ runtime.racereadº	"runtime.racewriteÈ
(runtime.racefuncexitâ
$runtime.panicindexø
$runtime.panicindex†$runtime.panicindex¢$runtime.panicindexÌ0runtime.morestack_noctxt@€"".autotmp_0745type.int"".autotmp_0744type.int"".autotmp_0743¯type.int"".autotmp_0742type.int"".yßtype.int"".xÏtype.int"".p?type.*"".Gray16"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16.€½ÿ€×ÿ€5ÿð@®	 
ª–&Ú‚îTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ*"".(*Gray16).SubImage€€dH‹%HD$¸H;A†]HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÈH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍IH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÑåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé±üÿÿ‰é1üÿÿèéûÿÿÌD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".Gray16æ"runtime.newobject¤,runtime.racewriterange”6go.itab.*"".Gray16."".ImageÜ(runtime.racefuncexitútype.*"".Gray16type."".Image¨6go.itab.*"".Gray16."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.racereadž
 runtime.raceread¾type."".Gray16Ð"runtime.newobjectü"runtime.racewriteØ(runtime.writeBarrier˜
"runtime.racewriteÄ
 runtime.raceread¶,runtime.racewriterangeÄ6go.itab.*"".Gray16."".ImageŒ(runtime.racefuncexitªtype.*"".Gray16Àtype."".ImageØ6go.itab.*"".Gray16."".Imageì runtime.typ2Itab¤.runtime.writebarrierptr¸$runtime.panicsliceì0runtime.morestack_noctxtp""".autotmp_0761type.*uint8"".autotmp_0760type.*"".Gray16"".autotmp_0759type.int"".autotmp_0758type.int"".autotmp_0757Ÿtype.int"".autotmp_0755?type.*"".Gray16"".autotmp_0753type.*"".Gray16"".autotmp_0752/type.[]uint8"".autotmp_0751type.*"".Gray16"".yÏtype.int"".x¿type.int"".pOtype.*"".Gray16"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray16.š×c€	jÄBŽW†7™Zt80-	<+¦\0/‚YNº0&%Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ&"".(*Gray16).Opaque€€dH‹%H;av!HƒìH‹\$H‰$èÆD$èHƒÄÃèëÉÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterN(runtime.racefuncexitb0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".Gray16@æ
$Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewGray16  dH‹%HD$èH;A†©Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…ˆH‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÑåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èéhÿÿÿèé5þÿÿÌÌÌÌÌ
X*runtime.racefuncenter¦type.[]uint8Ì"runtime.makeslice¨type."".Gray16º"runtime.newobjectà"runtime.racewrite¶(runtime.writeBarrierð"runtime.racewriteÀ,runtime.racewriterangeÄ(runtime.racefuncexitð.runtime.writebarrierptr„0runtime.morestack_noctxtP°"".autotmp_0770?type.*"".Gray16"".autotmp_0769type.int"".autotmp_0767type.int"".autotmp_0766type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r1@type.*"".Gray16"".r"type."".Rectangle °Ž¯°¯Ðð11Pð +±HjTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ*"".(*CMYK).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`*image/color.CMYKModelr runtime.raceread€*image/color.CMYKModel˜*image/color.CMYKModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".CMYKKp’
p9Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ""".(*CMYK).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".CMYK x  
–
  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*CMYK).AtÀÀdH‹%H;a†½Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@Ãèé&ÿÿÿÌÌÌÌÌÌ
B*runtime.racefuncenterž""".(*CMYK).CMYKAtô*type.image/color.CMYKŠ,type.image/color.Color¢Tgo.itab.image/color.CMYK.image/color.ColorÜruntime.convT2IŽ(runtime.racefuncexit¢0runtime.morestack_noctxtP€
"".autotmp_0771*type.image/color.CMYK"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK€¸àš
1• ¦Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ""".(*CMYK).CMYKAtÀÀdH‹%HD$øH;A†¹HìˆH‹œ$ˆH‰$è1ۈœ$¨ˆœ$©ˆœ$ªˆœ$«1ÛH‹œ$˜H‰\$8H‹œ$ H‰\$@H‹œ$H‰$Hƒ$ HÇD$ èL‹L$8L‹D$@H‹¼$Hƒÿ„%H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏñI9ɍèL9ßI9ÀœÀ<uC1í@ˆl$@ˆ¬$¨@ˆl$@ˆ¬$©@ˆl$@ˆ¬$ª@ˆl$@ˆ¬$«èHĈÃH‹œ$˜H‰\$ H‹œ$ H‰\$H‰|$hH‰<$Hƒ$ èH‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$èH‹\$hH‰$Hƒ$èH‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(1ۈ\$ˆ\$ˆ\$ˆ\$H‹œ$H‰$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ›HH‰$èH‹´$H‹D$(HƒÀHƒþ„lH‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃ?H¶ˆ\$H‰4$èH‹D$(HÿÀH‹œ$H‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃîHH‰$èH‹´$H‹D$(HÿÀHƒþ„ÀH‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃ“H¶ˆ\$H‰4$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃAHH‰$èH‹´$H‹D$(HƒÀHƒþ„H‹H‹NH‹nH‰¬$€H‰T$pH‰L$xH9ȃåH¶ˆ\$H‰4$èH‹D$(H‹œ$HƒÀH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ȃ“HH‰$èH‹D$(H‹œ$HƒÀHƒûtkH‹H‹KH‹kH‰¬$€H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨¶\$ˆœ$©¶\$ˆœ$ªˆ„$«èHĈÃè‰ë‘èè‰éçþÿÿèè‰é9þÿÿèè‰éýÿÿè1Àé üÿÿ‰éÔûÿÿèé%ûÿÿÌÌÌÌÌ2
X*runtime.racefuncenterŠ*runtime.racereadrangeÊ(runtime.racefuncexit´ runtime.raceread† runtime.raceread¬ runtime.racereadÌ runtime.racereadÔ runtime.racereadþ	 runtime.raceread„ runtime.raceread¬ runtime.raceread´
 runtime.racereadÞ runtime.racereadæ runtime.racereadÌ(runtime.racefuncexitæ$runtime.panicindexü$runtime.panicindexŠ$runtime.panicindex¦$runtime.panicindex´$runtime.panicindexÐ$runtime.panicindexÞ$runtime.panicindexú$runtime.panicindex¤0runtime.morestack_noctxt@"".autotmp_0776*type.image/color.CMYK"".autotmp_0775¯type.int"".autotmp_0774type.int"".autotmp_0773ç*type.image/color.CMYK"".yßtype.int"".xÏtype.int"".p?type.*"".CMYK"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK.‘À_à	6¢

	 6–ü+®ŒûTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ("".(*CMYK).PixOffset€€dH‹%H;a†˜HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0èHƒÄÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.racereadÄ(runtime.racefuncexitØ0runtime.morestack_noctxt@ 
"".autotmp_0793type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".CMYK “À¶
”  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".(*CMYK).SetÀÀdH‹%HD$ÐH;A†4Hì°H‹œ$°H‰$è1ÛH‹œ$ÀH‰\$PH‹œ$ÈH‰\$XH‹œ$¸H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¸Hƒÿ„¾H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏŠI9ɍL9xI9ÀœÀ<u
èHİÃH‹œ$ÀH‰\$8H‹œ$ÈH‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@HH‰$èH‹œ$ÐH‰\$H‹œ$ØH‰\$H‹H‰$H‹H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/HH‰$H‰Œ$ˆH‰L$H‰„$H‰D$H\$,H‰\$è¶\$,ˆ\$(¶\$-ˆ\$)¶\$.ˆ\$*¶\$/ˆ\$+H‹\$@HƒÃH‰\$HH‹œ$¸H‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃªH)H‰$èH‹”$¸Hƒú„„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃLH)¶l$(@ˆ+H‹\$@HÿÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃêH)H‰$èH‹”$¸Hƒú„ÄH‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃŒH)¶l$)@ˆ+H‹\$@HƒÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9Ń)H)H‰$èH‹”$¸Hƒú„H‹
H‹BH‹jH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ŃËH)¶l$*@ˆ+H‹\$@HƒÃH‰\$HH‰$èH‹œ$¸H‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅslH)H‰$èH‹œ$¸HƒûtMH‹H‹CH‹kH‰¬$¨H‰Œ$˜H‹l$HH‰„$ H9ÅsH)¶l$+@ˆ+èHİÃè‰ë¯èè‰éöþÿÿèè‰é5þÿÿèè‰éuýÿÿè1Àé‡ûÿÿ‰é;ûÿÿèéªúÿÿÌÌÌÌÌÌÌÌÌÌ@
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.raceread„*image/color.CMYKModel– runtime.racereadØ*image/color.CMYKModelî*image/color.CMYKModelþÀ*type.image/color.CMYKš"runtime.assertI2T 	 runtime.raceread¬
"runtime.racewriteö runtime.raceread‚
"runtime.racewriteÎ runtime.racereadÚ"runtime.racewrite¦ runtime.racereadª"runtime.racewriteÂ(runtime.racefuncexitÜ$runtime.panicindexò$runtime.panicindex€$runtime.panicindexœ$runtime.panicindexª$runtime.panicindexÆ$runtime.panicindexÔ$runtime.panicindexð$runtime.panicindexš0runtime.morestack_noctxtPà&"".autotmp_0802type.int"".autotmp_0801type.int"".autotmp_0800type.int"".autotmp_0799type.int"".autotmp_0798Ïtype.int"".autotmp_0797type.int"".autotmp_0795‡*type.image/color.CMYK"".autotmp_0794O,type.image/color.Color"".yÿtype.int"".xïtype.int"".p_type.*"".CMYK"".rŸ"type."".Rectangle"".p¿type."".Point
"".c1*type.image/color.CMYK"".ißtype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK.à½ßàßà_ßà
Z¾
 
¢¶´«¬¥	+Ý‚ÖTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·524aafe7d1228e5424d64f5d94771fbf4$GOROOT/src/image/image.goþ$"".(*CMYK).SetCMYK  dH‹%H;a†1Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„»H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ‡I9ɍ~L9uI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃH‰\$(H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃwH)H‰$èH‹”$ˆHƒú„QH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"H)¶¬$ @ˆ+H‹\$ HÿÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆH)H‰$èH‹”$ˆHƒú„ H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃqH)¶¬$¡@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃH)H‰$èH‹”$ˆHƒú„îH‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿H)¶¬$¢@ˆ+H‹\$ HƒÃH‰\$(H‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£@ˆ+èHĀÃè‰ëµèè‰éÿÿÿèè‰éYþÿÿèè‰é¨ýÿÿè1ÀéŠüÿÿ‰é>üÿÿèé²ûÿÿÌÌ2
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadˆ runtime.raceread‚"runtime.racewriteÀ runtime.racereadº	"runtime.racewriteú
 runtime.racereadô"runtime.racewrite´
 runtime.raceread¦"runtime.racewrite²(runtime.racefuncexitÌ$runtime.panicindexâ$runtime.panicindexð$runtime.panicindexŒ$runtime.panicindexš$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexà$runtime.panicindexŠ0runtime.morestack_noctxt@€ "".autotmp_0817type.int"".autotmp_0816type.int"".autotmp_0815type.int"".autotmp_0814type.int"".autotmp_0813¯type.int"".autotmp_0812type.int"".yßtype.int"".xÏtype.int"".p?type.*"".CMYK"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK.€½ÿ€Œÿ€_ÿÐTÖ

 ‘¥œ–&ÚƒÍTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ&"".(*CMYK).SubImage€€dH‹%HD$¸H;A†^HìÈH‹œ$ÈH‰$è1ÛH‰œ$øH‰œ$H‹œ$ÐH‰$Hƒ$ HÇD$ èH‹œ$ØH‰$H‹œ$àH‰\$H‹œ$èH‰\$H‹œ$ðH‰\$H‹´$ÐHƒþ„ÉH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$ØH‰”$àH‰”$ˆH‰Œ$èH‰„$ðH‰„$˜H‰´$€H‰Œ$H9΍JH9À<„ÂHH‰$èH‹D$H‰„$¨H‰$HÇD$@èH‹„$¨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$ë¬H‹Œ$ÐH‰t$hH‰T$`H‰Œ$ H‰$Hƒ$ èH‹„$ H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ H‰$Hƒ$èH‹„$ H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$ÐH‰$èH‹œ$ÐH‹l$pL‹CL‹KL9ŇªL‹I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$¸H‰kH‹¬$ÀH‰kH‹¬$°€=…H‰+H‹œ$¨H‰$Hƒ$èH‹œ$ÐH‰$Hƒ$èH‹„$¨Hƒø„ÉL‹„$ÐI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$¨H‹¬$Ø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$묉é0ÿÿÿH‰$H‰l$èéßþÿÿèHÇÀé°üÿÿ‰é0üÿÿèé€ûÿÿD
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".CMYKæ"runtime.newobject¤,runtime.racewriterange”2go.itab.*"".CMYK."".ImageÜ(runtime.racefuncexitútype.*"".CMYKtype."".Image¨2go.itab.*"".CMYK."".Image¼ runtime.typ2Itabš runtime.racereadò runtime.racereadž	 runtime.raceread 
 runtime.racereadÀtype."".CMYKÒ"runtime.newobjectþ"runtime.racewriteÚ(runtime.writeBarrierš
"runtime.racewriteÆ
 runtime.raceread¸,runtime.racewriterangeÆ2go.itab.*"".CMYK."".ImageŽ(runtime.racefuncexit¬type.*"".CMYKÂtype."".ImageÚ2go.itab.*"".CMYK."".Imageî runtime.typ2Itab¦.runtime.writebarrierptrº$runtime.panicsliceî0runtime.morestack_noctxtp""".autotmp_0837type.*uint8"".autotmp_0836type.*"".CMYK"".autotmp_0835type.int"".autotmp_0834type.int"".autotmp_0833Ÿtype.int"".autotmp_0831?type.*"".CMYK"".autotmp_0829type.*"".CMYK"".autotmp_0828/type.[]uint8"".autotmp_0827type.*"".CMYK"".yÏtype.int"".x¿type.int"".pOtype.*"".CMYK"".r"type."".Rectangle"".i¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".CMYK.šØc
€	jð
BŽW†7šZt80-	
<+¦\0/ƒYNº0&$Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ""".(*CMYK).Opaque€€dH‹%H;av!HƒìH‹\$H‰$èÆD$èHƒÄÃèëÉÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterN(runtime.racefuncexitb0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".CMYK@’
$Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ"".NewCMYK  dH‹%HD$èH;A†«Hì˜H‹œ$˜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‰$H‰D$H‰D$èH‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…‰H‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰„$ÀèHĘÃH‰$H‰l$èégÿÿÿèé3þÿÿÌÌÌ
X*runtime.racefuncenter¨type.[]uint8Î"runtime.makesliceªtype."".CMYK¼"runtime.newobjectâ"runtime.racewrite¸(runtime.writeBarrierò"runtime.racewriteÄ,runtime.racewriterangeÈ(runtime.racefuncexitô.runtime.writebarrierptrˆ0runtime.morestack_noctxtP°"".autotmp_0846?type.*"".CMYK"".autotmp_0845type.int"".autotmp_0843type.int"".autotmp_0842type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wÏtype.int"".~r1@type.*"".CMYK"".r"type."".Rectangle °¯°¯
М11Qñ
 +²HkTgclocals·8c4115247b3638c79e08e0e295c9b378Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ2"".(*Paletted).ColorModelààdH‹%H;a†ŽHƒì8H‹\$8H‰$è1ÛH‰\$HH‰\$PHH‰$HH‰\$HH‰\$H‹\$@H‰\$Hƒ|$t2HƒD$@HÇD$ èH‹\$(H‰\$HH‹\$0H‰\$PèHƒÄ8É%ëÅèéUÿÿÿÌÌÌÌÌ
B*runtime.racefuncenterh0type.image/color.Palette~,type.image/color.Model–Zgo.itab.image/color.Palette.image/color.Modelìruntime.convT2Iž(runtime.racefuncexitÄ0runtime.morestack_noctxt0p"".~r0,type.image/color.Model"".p"type.*"".Palettedp€op	o°
° n"Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/image.goþ*"".(*Paletted).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ èH‹\$Hƒût.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".p"type.*"".Paletted x  
Æ  €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ""".(*Paletted).At€€dH‹%HD$èH;A†Hì˜H‹œ$˜H‰$è1ÛH‰œ$¸H‰œ$ÀH‹œ$ H‰$Hƒ$@èH‹Œ$ H‹iHHƒýu1ÛH‰œ$¸H‰œ$ÀèHĘÃ1ÛH‹œ$¨H‰\$0H‹œ$°H‰\$8H‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹Œ$ Hƒù„HH‹y H‹q(H‰t$HH‹Q0H‰T$PH‹A8H‰D$XH‰|$@L9ϏI9эL9ƏI9ÀœÀ<…·H‰$Hƒ$@èH‹œ$ H‹K@H‹CHH‹kPH‰¬$H‰Œ$€HƒøH‰„$ˆvpH‰$èH‹œ$ HƒûtUH‹K@H‹CHH‹kPH‰¬$H‰Œ$€HƒøH‰„$ˆv$H‹)H‰¬$¸H‹iH‰¬$ÀèHĘÃè‰ë§èH‹œ$¨H‰\$H‹œ$°H‰\$H‰L$`H‰$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ H‰$Hƒ$@èH‹œ$ H‰$èH‹œ$ H‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ŃMH)H‰$èH‹”$ H‹
H‹BH‹jH‰l$xH‰L$hH‹l$ H‰D$pH9Ń	H)¶+H‰èH‰ÓH‹R@H‹KHH‹kPH‰¬$H‰ÓH‰”$€¶èH‰Œ$ˆH9̓ÂHÁåHëH‰$èH‹”$ Hƒú„™H‹
H‹BH‹jH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsnH)¶+H‰èH‰ÓH‹R@H‹KHH‹kPH‰¬$H‰ÓH‰”$€¶èH‰Œ$ˆH9Ís+HÁåHëH‹+H‰¬$¸H‹kH‰¬$ÀèHĘÃèè‰é`ÿÿÿèèè1Àéýüÿÿ‰é±üÿÿèéÏûÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ0
X*runtime.racefuncenter¨ runtime.racereadú(runtime.racefuncexitð*runtime.racereadrangeÞ runtime.racereadÔ runtime.racereadü(runtime.racefuncexit–$runtime.panicindex¬$runtime.panicindexŠ runtime.racereadÜ runtime.raceread‚	 runtime.raceread€
 runtime.raceread¢
 runtime.racereadœ runtime.racereadœ
 runtime.racereadÆ(runtime.racefuncexità$runtime.panicindexî$runtime.panicindexŠ$runtime.panicindex˜$runtime.panicindex¦$runtime.panicindexÐ0runtime.morestack_noctxtP°"".autotmp_0850type.int"".autotmp_0849type.int"".autotmp_0847ßtype.int"".ytype.int"".xÿtype.int"".po"type.*"".Paletted"".r¯"type."".Rectangle"".pÏtype."".Point"".iïtype.int"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted:°i¯°À¯°¤¯°8¯ÀHÊ(œ˜’«.+Q;†
:{ã
QTgclocals·9bafea7b2a19e2cc3d593c51cce7c661Tgclocals·f7103403aec01e4990bdf6681d1baac84$GOROOT/src/image/image.goþ0"".(*Paletted).PixOffset€€dH‹%H;a†”HƒìH‹\$H‰$èH‹\$H‰$Hƒ$ èH‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$èH‹\$H‰$Hƒ$èH‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0èHƒÄÃèéOÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterh runtime.racereadº runtime.racereadà runtime.raceread¼(runtime.racefuncexitÐ0runtime.morestack_noctxt@ 
"".autotmp_0860type.int"".~r20type.int"".y type.int"".xtype.int"".p"type.*"".Paletted Àä  Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/image.goþ$"".(*Paletted).Set  dH‹%HD$àH;A†ŸHì H‹œ$ H‰$è1ÛH‹œ$°H‰\$PH‹œ$¸H‰\$XH‹œ$¨H‰$Hƒ$ HÇD$ èL‹L$PL‹D$XH‹¼$¨Hƒÿ„)H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏõI9ɍìL9ãI9ÀœÀ<u
èHĠÃH‹œ$°H‰\$8H‹œ$¸H‰\$0H‰¼$€H‰<$Hƒ$ èH‹„$€H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$èH‹œ$€H‰$Hƒ$èH‹„$€H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@H‹œ$¨H‰$Hƒ$@èH‹´$¨Hƒþ„ÿH^@H‹H‰$H‹KH‰L$H‹KH‰L$H‹œ$ÀH‰\$H‹œ$ÈH‰\$ èH‹\$(H‰\$HH‹œ$¨H‰$èH‹œ$¨H‹H‹CH‹kH‰¬$˜H‰Œ$ˆH‹l$@H‰„$H9ÅslH)H‰$èH‹œ$¨HƒûtMH‹H‹CH‹kH‰¬$˜H‰Œ$ˆH‹l$@H‰„$H9ÅsH)H‹l$H@ˆ+èHĠÃè‰ë¯è‰éúþÿÿ1Àéþÿÿ‰éÐýÿÿèé?ýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenterÎ*runtime.racereadrange¢(runtime.racefuncexit’ runtime.racereadê runtime.raceread– runtime.racereadš runtime.raceread¶2image/color.Palette.Indexì runtime.racereadð"runtime.racewriteˆ
(runtime.racefuncexit¢
$runtime.panicindex¸
$runtime.panicindexð
0runtime.morestack_noctxtPÀ"".autotmp_0864¯type.int"".autotmp_0863type.int"".autotmp_0861type.int"".yßtype.int"".xÏtype.int"".p?"type.*"".Paletted"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted.À½¿À²¿À'¿Ð6ì
 ž+Ý„ÄTgclocals·1b19623ccfd3351b9464338f230e8b94Tgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ6"".(*Paletted).ColorIndexAt€	€	dH‹%H;a†Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„¡H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9ΏmI9ɍdL9[I9ÀœÀ<uƄ$ èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶+@ˆ¬$ èHĀÃè‰ëµè1Àé¤þÿÿ‰éXþÿÿèéÌýÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
N*runtime.racefuncenterÄ*runtime.racereadrange¨(runtime.racefuncexit’ runtime.racereadä runtime.racereadŠ runtime.racereadþ runtime.racereadð runtime.racereadü(runtime.racefuncexit–$runtime.panicindex¬$runtime.panicindexÖ0runtime.morestack_noctxt@€"".autotmp_0869¯type.int"".autotmp_0868type.int"".yßtype.int"".xÏtype.int"".p?"type.*"".Paletted"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".~r20type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted.€Åÿ€©ÿ€ ÿÀ2ü
 ’ª&âvÂTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ8"".(*Paletted).SetColorIndexààdH‹%H;a†Hì€H‹œ$€H‰$è1ÛH‹œ$H‰\$0H‹œ$˜H‰\$8H‹œ$ˆH‰$Hƒ$ HÇD$ èL‹L$0L‹D$8H‹¼$ˆHƒÿ„™H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9ΏeI9ɍ\L9SI9ÀœÀ<u
èHĀÃH‹œ$H‰\$H‹œ$˜H‰\$H‰|$`H‰<$Hƒ$ èH‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$èH‹\$`H‰$Hƒ$èH‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆH‰$èH‹œ$ˆH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$èH‹œ$ˆHƒûtGH‹H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ @ˆ+èHĀÃè‰ëµè1Àé¬þÿÿ‰é`þÿÿèéÔýÿÿÌÌÌÌ
N*runtime.racefuncenterÄ*runtime.racereadrange˜(runtime.racefuncexit‚ runtime.racereadÔ runtime.racereadú runtime.racereadî runtime.racereadà"runtime.racewriteì(runtime.racefuncexit†$runtime.panicindexœ$runtime.panicindexÆ0runtime.morestack_noctxt@€"".autotmp_0874¯type.int"".autotmp_0873type.int"".yßtype.int"".xÏtype.int"".p?"type.*"".Paletted"".r"type."".Rectangle"".pŸtype."".Point"".i¿type.int"".index0type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted.€½ÿ€©ÿ€ ÿ°6Œ
 ’&ÚvºTgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/image.goþ."".(*Paletted).SubImageààdH‹%HD$˜H;A†	HìèH‹œ$èH‰$è1ÛH‰œ$H‰œ$ H‹œ$ðH‰$Hƒ$ HÇD$ èH‹œ$øH‰$H‹œ$H‰\$H‹œ$H‰\$H‹œ$H‰\$H‹´$ðHƒþ„tH^ H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$øH‰”$H‰”$ˆH‰Œ$H‰„$H‰„$˜H‰´$€H‰Œ$H9΍õH9À<„EHH‰$èH‹D$H‰„$ÈH‰$HÇD$XèH‹„$ÈH‰ÇHƒø„úWÀHƒÇÐèGøH‰$Hƒ$@èH‹œ$ðH‰$Hƒ$@èH‹œ$ðHƒû„­Hk@H‹œ$ÈHƒû„LC@L‰D$H‰l$H-H‰,$èH‹œ$ÈH‰œ$ÈH‹1íH9èt%H‹œ$ÈH‰œ$ H‰„$èHÄèÃHH‰$HH‰\$HH‰\$èH‹D$묉éiÿÿÿ‰éLÿÿÿ‰éÿþÿÿH‹Œ$ðH‰t$hH‰T$`H‰Œ$ÀH‰$Hƒ$ èH‹„$ÀH‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$èH‹œ$ÀH‰$Hƒ$èH‹„$ÀH‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHëH‰\$pH‹œ$ðH‰$èH‹„$ðH‹l$pL‹@L‹HL9ŇÖL‹I)èI)éIƒùtM*L‰„$ØL‰Œ$àL‰”$ÐH‰$Hƒ$ HÇD$ èH‹´$ðHƒþ„{H^ H‰çH‰ÞèH‹œ$øH‰\$ H‹œ$H‰\$(H‹œ$H‰\$0H‹œ$H‰\$8èH‹\$@H‰œ$ H‹\$HH‰œ$¨H‹\$PH‰œ$°H‹\$XH‰œ$¸HH‰$èH‹D$H‰„$ÈH‰$èH‹œ$ÈH‹¬$ØH‰kH‹¬$àH‰kH‹¬$Ѐ=…‘H‰+H‹œ$ÈH‰$Hƒ$èH‹œ$ðH‰$Hƒ$èH‹„$ÈHƒø„IL‹„$ðI‹hH‰hH‰$Hƒ$ HÇD$ èH‹„$ÈH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰$Hƒ$@èH‹œ$ðH‰$Hƒ$@èH‹œ$ðHƒû„­Hk@H‹œ$ÈHƒû„LC@L‰D$H‰l$H-H‰,$èH‹œ$ÈH‰œ$ÈH‹1íH9èt%H‹œ$ÈH‰œ$ H‰„$èHÄèÃHH‰$HH‰\$HH‰\$èH‹D$묉éiÿÿÿ‰éLÿÿÿ‰é°þÿÿH‰$H‰l$èé_þÿÿ‰é~ýÿÿèHÇÀéûÿÿ‰é…úÿÿèéÕùÿÿÌÌÌÌÌ\
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔ type."".Palettedæ"runtime.newobject¤,runtime.racewriterangeæª runtime.duffzeroŠ"runtime.racewrite¶ runtime.raceread°0type.image/color.PaletteÂ(runtime.typedmemmoveð:go.itab.*"".Paletted."".Image¸(runtime.racefuncexitÖ"type.*"".Palettedìtype."".Image„	:go.itab.*"".Paletted."".Image˜	 runtime.typ2Itab 
 runtime.racereadø
 runtime.raceread¤ runtime.racereadž runtime.racereadÞ
*runtime.racereadrange È
 runtime.duffcopy’,"".Rectangle.Intersectˆ type."".Palettedš"runtime.newobjectÆ"runtime.racewrite¢(runtime.writeBarrierâ"runtime.racewriteŽ runtime.raceread€,runtime.racewriterangeŒ"runtime.racewrite¸ runtime.raceread²0type.image/color.PaletteÄ(runtime.typedmemmoveò:go.itab.*"".Paletted."".Imageº(runtime.racefuncexitØ"type.*"".Palettedîtype."".Image†:go.itab.*"".Paletted."".Imageš runtime.typ2Itabî.runtime.writebarrierptr$runtime.panicsliceÄ0runtime.morestack_noctxtpÐ&"".autotmp_0889type.*uint8"".autotmp_0888"type.*"".Paletted"".autotmp_0887type.int"".autotmp_0886type.int"".autotmp_0885ßtype.int"".autotmp_0883?"type.*"".Paletted"".autotmp_0881"type.*"".Paletted"".autotmp_0880"type."".Rectangle"".autotmp_0879/type.[]uint8"".autotmp_0878"type.*"".Paletted"".autotmp_0877"type."".Rectangle"".ytype.int"".xÿtype.int"".pO"type.*"".Paletted"".rÏ"type."".Rectangle"".iïtype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p"type.*"".Paletted.ЈÏЀÏÐxϰŠ BŽWÜ-–Z¥t80ˆ -
>+¦Ê0D`´N¬0;)Tgclocals·beaeb9c48e230c42df709f19dd51c03bTgclocals·6303a5fef1b34377e043c222d45020fc4$GOROOT/src/image/image.goþ*"".(*Paletted).OpaqueààdH‹%H„$¨þÿÿH;A†ƒHìØH‹œ$ØH‰$èH|$`WÀèH‹œ$àH‰$Hƒ$ HÇD$ èH‹”$àHƒú„&H‹J H‹j(H‰l$HH‹Z0H‹j8H‰l$XH‰\$PH‰L$@H)ËHÇD$(H‰\$ H‰$Hƒ$ Hƒ$èH‹Œ$àH‹i(H‰l$H‰$Hƒ$ Hƒ$Hƒ$èH‹„$àH‹X8H‹l$H9ëŽVH‰$èH‹œ$àH‹l$(L‹D$ L‹KM9ȇ'L9ŇL‹I)èI)éIƒùtM*L‰”$ÀL‰„$ÈL‰Œ$ÐL‰Œ$¸1ÉL‰„$°L‰D$0L‰”$¨L‰ÐH‰L$8H‹l$0H9é}FH‰„$hH‰$èH‹„$h¶(H\$`@¶íH+ÆHÿÀH‹L$8HÿÁH‰L$8H‹l$0H9é|ºH‹\$(H‰\$8H‹œ$àH‰$Hƒ$èH‹„$àH‹XH‹l$8HëH‰\$(H‹\$ H‰\$8H‰$Hƒ$èH‹Œ$àH‹YH‹l$8HëH‰\$ H‹\$HÿÃH‰\$éþÿÿèH‰$Hƒ$@èH‹œ$àHƒû„H‹S@H‹CHH‹kPH‰¬$ 1ÉH‰„$˜H‰D$0H‰”$H‰ÐH‰L$8H‹l$0H9鍏H‰„$`H‰$èH‹œ$`Hƒû„³H‹H‹KH‹D$8H‰”$€H‰”$pH‰Œ$ˆH‰Œ$xH\$`H=ssH¶€ûu<H‹„$`H‹L$8HƒÀHÿÁH‰L$8H‹l$0H9éŒqÿÿÿƄ$èèHÄØÃH‰$H‹Z ÿӋ\$ûÿÿt®Ƅ$èèHÄØÃè‰éFÿÿÿ‰éÛþÿÿ‰éÓüÿÿèéXüÿÿÌÌÌÌÌÌÌÌ$
^*runtime.racefuncenterxÈ runtime.duffzero¶*runtime.racereadrangeê runtime.raceread¼ runtime.raceread‚ runtime.raceread¬ runtime.racereadÖ runtime.raceread¸ runtime.raceread˜	$runtime.panicslice¸	 runtime.raceread€ runtime.raceread–
(runtime.racefuncexit¾
ì
(runtime.racefuncexit†$runtime.panicindex¾0runtime.morestack_noctxt °."".autotmp_0908¯,type.image/color.Color"".autotmp_0907ï.type.*image/color.Color"".autotmp_0906type.int"".autotmp_0905type.int"".autotmp_0903ßtype.*uint8"".autotmp_0902Ïtype.int"".autotmp_0901type.int"".autotmp_0900type.int"".autotmp_0899¿type.int"".autotmp_08970type.image/color.Palette"".autotmp_0896type.int"".autotmp_0895type.int"".autotmp_0894type.int"".autotmp_0893_type.[]uint8"".autotmp_0892/type.[]uint8"".r¯"type."".Rectangle"".cÏ,type.image/color.Color"".yÿtype.int
"".i1ïtype.int
"".i0ßtype.int"".presentïtype.[256]bool"".~r0type.bool"".p"type.*"".Paletted,"°´¯°*¯°¯°lÈ"&#
fV©91	°'		(.çUÕ‹;Tgclocals·f7309186bf9eeb0f8ece2eb16f2dc110Tgclocals·12b8aeecac339c1231ec601931927feb4$GOROOT/src/image/image.goþ"".NewPalettedÀÀdH‹%HD$èH;A†üHì˜H‹œ$˜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‹T$H‹L$ H‹D$(H‰”$€H‰Œ$ˆH‰„$HH‰$èH‹D$H‰D$xH‰$èH‹\$xH‹¬$ˆH‰kH‹¬$H‰kH‹¬$€€=…ÞH‰+H‹\$xH‰$Hƒ$èH‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ èH‹D$xH‹¬$ H‰h H‹¬$¨H‰h(H‹¬$°H‰h0H‹¬$¸H‰h8H‰$Hƒ$@èH‹\$xH‹¬$ÈH‰kHH‹¬$ÐH‰kPH‹¬$À€=uH‰k@H‹\$xH‰œ$ØèHĘÃLC@L‰$H‰l$èëÒH‰$H‰l$èéÿÿÿèéâýÿÿÌÌ 
X*runtime.racefuncenter type.[]uint8Æ"runtime.makeslice¢ type."".Paletted´"runtime.newobjectÚ"runtime.racewrite°(runtime.writeBarrierê"runtime.racewrite´,runtime.racewriterangeº"runtime.racewrite(runtime.writeBarrierÂ(runtime.racefuncexitö.runtime.writebarrierptr–.runtime.writebarrierptrª0runtime.morestack_noctxt€°"".autotmp_0915?"type.*"".Paletted"".autotmp_0914type.int"".autotmp_0912type.int"".autotmp_0911type.int"".r¿"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wÏtype.int"".~r2p"type.*"".Paletted"".p@0type.image/color.Palette"".r"type."".Rectangle °Í¯°'¯ ø11MÆ"+®H¬&Tgclocals·258ffe3b59f2d561d15d8bf865a43785Tgclocals·85b708e0eb749713cb73a30a27c2999c4$GOROOT/src/image/image.goþ$"".(*Uniform).RGBA  dH‹%H;avtHƒì(H‹\$(H‰$èH‹\$0H‰$èH‹\$0HƒûtEH‹H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋl$‹T$‹L$‹D$‰l$8‰T$<‰L$@‰D$DèHƒÄ(Éë·èésÿÿÿÌÌÌ
:*runtime.racefuncenterV runtime.raceread¦ì(runtime.racefuncexitˆ0runtime.morestack_noctxt0P
"".a(type.uint32"".b type.uint32"".gtype.uint32"".rtype.uint32"".c type.*"".UniformPkOPO
:p

tTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/names.goþ0"".(*Uniform).ColorModelÀÀdH‹%H;av~Hƒì(H‹\$(H‰$è1ÛH‰\$8H‰\$@H‹\$0H‰\$ H‹1íH9ètH‹\$ H‰\$@H‰D$8èHƒÄ(ÃHH‰$HH‰\$HH‰\$èH‹D$ë¸èéiÿÿÿÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncentertJgo.itab.*"".Uniform.image/color.Modelª(runtime.racefuncexit type.*"".UniformØ,type.image/color.ModelðJgo.itab.*"".Uniform.image/color.Model„ runtime.typ2Itabœ0runtime.morestack_noctxt0P"".autotmp_0925 type.*"".Uniform"".~r0,type.image/color.Model"".c type.*"".UniformPJOP/O B-'48-Tgclocals·27f94a2fe0ff5b305b2385471201b6d7Tgclocals·f891aedf0f80c97cb1c7cc75a7fd63494$GOROOT/src/image/names.goþ*"".(*Uniform).ConvertààdH‹%H;avVHƒìH‹\$H‰$è1ÛH‰\$(H‰\$0H‹\$H‰$èH‹\$HƒûtH‹+H‰l$(H‹kH‰l$0èHƒÄÉëáèë”ÌÌÌÌ

:*runtime.racefuncentern runtime.raceread°(runtime.racefuncexitÌ0runtime.morestack_noctxtP"".~r10,type.image/color.Color"".c type.*"".UniformMpJ8;Tgclocals·b9e2f210c3a206b5352d33144c6a1618Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/names.goþ("".(*Uniform).Bounds€€dH‹%H;avdHƒì(H‹\$(H‰$è1Û1ÛHÇÅ6eÄHÇÂ6eÄHÇÁʚ;HÇÀʚ;H‰l$H‰l$8H‰T$H‰T$@H‰L$H‰L$HH‰D$ H‰D$PèHƒÄ(Ãèë†ÌÌÌÌÌÌ
:*runtime.racefuncenterÔ(runtime.racefuncexitè0runtime.morestack_noctxtPP"".autotmp_0928?"type."".Rectangle"".~r0"type."".Rectangle"".c type.*"".UniformP_O€R€
dTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/names.goþ "".(*Uniform).AtààdH‹%H;avVHƒìH‹\$H‰$è1ÛH‰\$(H‰\$0H‹\$H‰$èH‹\$HƒûtH‹+H‰l$(H‹kH‰l$0èHƒÄÉëáèë”ÌÌÌÌ

:*runtime.racefuncentern runtime.raceread°(runtime.racefuncexitÌ0runtime.morestack_noctxtP"".~r20,type.image/color.Color"".y type.int"".xtype.int"".c type.*"".UniformMpVp;Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/names.goþ("".(*Uniform).Opaque€€dH‹%H;avcHƒì(H‹\$(H‰$èH‹\$0H‰$èH‹\$0Hƒût4H‹H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋ\$ûÿÿ”D$8èHƒÄ(ÉëÈèë‡ÌÌÌÌÌÌÌ
:*runtime.racefuncenterV runtime.raceread¦Ê(runtime.racefuncexitæ0runtime.morestack_noctxt P"".~r0type.bool"".c type.*"".UniformPZOPO€\8
dTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad4$GOROOT/src/image/names.goþ"".NewUniformÀÀdH‹%H;av|HƒìH‹\$H‰$èHH‰$èH‹D$H‰D$H‰$èH‹\$H‹l$ H‰+H‹l$(€=uH‰kH‹\$H‰\$0èHƒÄÃLCL‰$H‰l$èëØèékÿÿÿÌÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterHtype."".UniformZ"runtime.newobject€"runtime.racewrite°(runtime.writeBarrierÜ(runtime.racefuncexitŠ.runtime.writebarrierptr˜0runtime.morestack_noctxt00"".autotmp_0931 type.*"".Uniform"".~r1  type.*"".Uniform"".c,type.image/color.Color0c/0/ fx#.Tgclocals·fb59fd9ce9376dfcd2105aa0993acf24Tgclocals·f891aedf0f80c97cb1c7cc75a7fd63494$GOROOT/src/image/names.goþ:"".YCbCrSubsampleRatio.String€€dH‹%H;a† HƒìH‹\$H‰$è1ÛH‹D$HƒøŽHƒøuHH‰\$HÇD$ èHƒÄÃHƒøuHH‰\$HÇD$ èHƒÄÃHƒøuHH‰\$HÇD$ èHƒÄÃHH‰\$HÇD$ èHƒÄÃHƒøuHH‰\$HÇD$ èHƒÄÃHƒøuHH‰\$HÇD$ èHƒÄÃHƒøu‘HH‰\$HÇD$ èHƒÄÃèéÃþÿÿÌÌÌ"
B*runtime.racefuncenter~Dgo.string."YCbCrSubsampleRatio444"¤(runtime.racefuncexitÈDgo.string."YCbCrSubsampleRatio422"î(runtime.racefuncexit’Dgo.string."YCbCrSubsampleRatio420"¸(runtime.racefuncexitÐLgo.string."YCbCrSubsampleRatioUnknown"ö(runtime.racefuncexitšDgo.string."YCbCrSubsampleRatio440"À(runtime.racefuncexitäDgo.string."YCbCrSubsampleRatio411"Š(runtime.racefuncexit®Dgo.string."YCbCrSubsampleRatio410"Ô(runtime.racefuncexitè0runtime.morestack_noctxt0"".~r0type.string"".s6type."".YCbCrSubsampleRatio>C$$$$$Àz0

 1ïTgclocals·bcdfbcd04eb70526d9504e97d9ef703dTgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/ycbcr.goþ,"".(*YCbCr).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`,image/color.YCbCrModelr runtime.raceread€,image/color.YCbCrModel˜,image/color.YCbCrModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".YCbCrKp~29Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/ycbcr.goþ$"".(*YCbCr).BoundsÀÀdH‹%H;a†HƒìH‹\$H‰$è1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$`HÇD$ èH‹\$Hƒût.H‹k`H‰l$ H‹khH‰l$(H‹kpH‰l$0H‹kxH‰l$8èHƒÄÉëÎèébÿÿÿÌÌ

B*runtime.racefuncenter¦*runtime.racereadrangeŽ(runtime.racefuncexitª0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".YCbCr x  †Y €Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ"".(*YCbCr).AtÀÀdH‹%H;a†´Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$=H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@Ãèé/ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterž&"".(*YCbCr).YCbCrAtâ,type.image/color.YCbCrø,type.image/color.ColorVgo.itab.image/color.YCbCr.image/color.ColorÊruntime.convT2Iü(runtime.racefuncexit0runtime.morestack_noctxtP€
"".autotmp_0933,type.image/color.YCbCr"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".YCbCr€¯àŽ1Œ #Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/ycbcr.goþ&"".(*YCbCr).YCbCrAt  dH‹%HD$èH;A†$Hì˜H‹œ$˜H‰$è1ۈœ$¸ˆœ$¹ˆœ$º1ÛH‹œ$¨H‰\$HH‹œ$°H‰\$PH‹œ$ H‰$Hƒ$`HÇD$ èL‹L$HL‹D$PH‹¼$ Hƒÿ„—H‹w`H‹WhH‰T$`H‹OpH‰L$hH‹GxH‰D$pH‰t$XL9ΏcI9ɍZL9QI9ÀœÀ<u01҈T$%ˆ”$¸ˆT$&ˆ”$¹ˆT$'ˆ”$ºèHĘÃH‹œ$¨H‰\$8H‹œ$°H‰\$0H‰|$xH‰<$Hƒ$`Hƒ$èH‹\$xH‰$Hƒ$HèH‹\$xH‰$Hƒ$`èH‹D$xH‹XhH‹l$0H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$8I)èLÃH‰\$(H‹œ$ H‰$H‹œ$¨H‰\$H‹œ$°H‰\$èH‹\$H‰\$@1ۈ\$%ˆ\$&ˆ\$'H‹œ$ H‰$èH‹œ$ H‹H‹CH‹kH‰¬$H‰Œ$€H‹l$(H‰„$ˆH9ŃûH)H‰$èH‹”$ Hƒú„ÕH‹
H‹BH‹jH‰¬$H‰Œ$€H‹l$(H‰„$ˆH9ѝH)¶ˆ\$%H‰$Hƒ$èH‹œ$ H‹KH‹C H‹k(H‰¬$H‰Œ$€H‹l$@H‰„$ˆH9ŃCH)H‰$èH‹”$ Hƒú„H‹JH‹B H‹j(H‰¬$H‰Œ$€H‹l$@H‰„$ˆH9ŃäH)¶ˆ\$&H‰$Hƒ$0èH‹œ$ H‹K0H‹C8H‹k@H‰¬$H‰Œ$€H‹l$@H‰„$ˆH9ŃŠH)H‰$èH‹œ$ HƒûtkH‹K0H‹C8H‹k@H‰¬$H‰Œ$€H‹l$@H‰„$ˆH9Ås6H)¶H‰Ø¶\$%ˆœ$¸¶\$&ˆœ$¹ˆ„$ºèHĘÃè‰ë‘èè‰éÜþÿÿèè‰é$þÿÿè1Àé®üÿÿ‰ébüÿÿèéºûÿÿÌÌÌÌÌÌÌÌÌÌ,
X*runtime.racefuncenterü*runtime.racereadrange–(runtime.racefuncexitŠ runtime.raceread° runtime.racereadÖ runtime.racereadŒ&"".(*YCbCr).COffsetÞ runtime.racereadê runtime.raceread¢
 runtime.raceread° runtime.racereadê runtime.racereadø
 runtime.racereadÌ(runtime.racefuncexitæ$runtime.panicindexü$runtime.panicindexŠ$runtime.panicindex¦$runtime.panicindex´$runtime.panicindexÐ$runtime.panicindexú0runtime.morestack_noctxt@°"".autotmp_0938,type.image/color.YCbCr"".autotmp_0936å,type.image/color.YCbCr"".autotmp_0934type.int"".yÏtype.int"".x¿type.int"".p?type.*"".YCbCr"".r"type."".Rectangle"".pŸtype."".Point
"".ci¯type.int
"".yißtype.int"".~r20,type.image/color.YCbCr"".y type.int"".xtype.int"".ptype.*"".YCbCr.°÷¯°Ú¯°J¯ÐZ– #ˆ5¥¤›,+™‹Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·83ead081cd909acab0dcd88a450c18784$GOROOT/src/image/ycbcr.goþ&"".(*YCbCr).YOffsetààdH‹%H;a†ŠHƒìH‹\$H‰$èH‹\$H‰$Hƒ$`Hƒ$èH‹\$H‰$Hƒ$HèH‹\$H‰$Hƒ$`èH‹D$H‹XhH‹l$ H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$(èHƒÄÃèéYÿÿÿÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenterr runtime.raceread˜ runtime.raceread¾ runtime.raceread¨(runtime.racefuncexit¼0runtime.morestack_noctxt@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr…°´† Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ&"".(*YCbCr).COffsetààdH‹%H;a†DHƒìH‹\$H‰$èH‹\$ H‰$Hƒ$XèH‹L$ H‹iXHƒýëHƒý…H‰$Hƒ$`èH‹D$ H‹h`H‰l$H‰$Hƒ$`Hƒ$èH‹\$ H‰$Hƒ$PèH‹T$ L‹L$L‹D$(H‹ZhH‹l$0H)ÝH‰ëH‹jPH¯ÝL‰ÅHÁý?I)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$8èHƒÄÃHƒý…ÇH‰$Hƒ$`Hƒ$èH‹D$ H‹hhH‰l$H‰$Hƒ$`èH‹D$ H‹h`H‰l$H‰$Hƒ$PèL‹D$H‹l$0H‹L$(L‹L$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅL‹D$ HÑýH)ëI‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$8èHƒÄÃH‰$Hƒ$`Hƒ$èH‹\$ H‰$Hƒ$PèH‹\$ H‰$Hƒ$`èH‹D$ H‹XhH‹l$0H)ÝH‰ëH‹hPH¯ÝH‹h`L‹D$(I)èLÃH‰\$8èHƒÄÃHƒý…šH‰$Hƒ$`Hƒ$èH‹D$ H‹hhH‰l$H‰$Hƒ$PèH‹\$ H‰$Hƒ$`èH‹T$ H‹l$0L‹D$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹jPH¯ÝH‹j`L‹D$(I)èLÃH‰\$8èHƒÄÃHƒý…¡H‰$Hƒ$`èH‹D$ H‹h`H‰l$H‰$Hƒ$`Hƒ$èH‹\$ H‰$Hƒ$PèH‹T$ H‹L$(H‹D$H‹ZhH‹l$0H)ÝH‰ëH‹jPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰ÀIÁø?IÁè>IÀIÁøL)ÅHëH‰\$8èHƒÄÃHƒý…4þÿÿH‰$Hƒ$`Hƒ$èH‹D$ H‹hhH‰l$H‰$Hƒ$`èH‹D$ H‹h`H‰l$H‰$Hƒ$PèH‹t$H‹l$0H‹L$(L‹D$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅL‹D$ HÑýH)ëI‹hPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰ðIÁø?IÁè>IðIÁøL)ÅHëH‰\$8èHƒÄÃèéŸûÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ8
B*runtime.racefuncenterh runtime.raceread¾ runtime.raceread€ runtime.raceread¦ runtime.racereadÒ(runtime.racefuncexit– runtime.racereadÎ runtime.raceread† runtime.racereadô(runtime.racefuncexit¤ runtime.racereadÊ runtime.racereadð runtime.racereadÚ(runtime.racefuncexitž	 runtime.racereadÖ	 runtime.racereadü	 runtime.raceread¢(runtime.racefuncexitÜ runtime.racereadž runtime.racereadÄ runtime.racereadø
(runtime.racefuncexit¼ runtime.racereadô runtime.raceread¬ runtime.racereadœ(runtime.racefuncexit°0runtime.morestack_noctxt@0"".autotmp_0952type.int"".autotmp_0951type.int"".autotmp_0950type.int"".autotmp_0949type.int"".autotmp_0948type.int"".autotmp_0947type.int"".autotmp_0946type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr@0Ú/0Ð/0r/0£/0ª/0Ñ/ðrÀ&
“
½s


—
	
¾ ÐTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ("".(*YCbCr).SubImage  dH‹%HD$ˆH;A†êHìøH‹œ$øH‰$è1ÛH‰œ$(H‰œ$0H‹œ$H‰$Hƒ$`HÇD$ èH‹œ$H‰$H‹œ$H‰\$H‹œ$H‰\$H‹œ$ H‰\$H‹´$Hƒþ„UH^`H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$H‰”$H‰”$ˆH‰Œ$H‰„$ H‰„$˜H‰´$€H‰Œ$H9΍ÖH9À<„HH‰$èH‹D$H‰„$¨H‰$HÇD$€èH‹„$¨H‰ÇHƒø„¸WÀèH‰$Hƒ$XèH‹œ$H‰$Hƒ$XèH‹„$¨HƒøtzL‹„$I‹hXH‰hXH‰„$¨H‹1íH9èt%H‹œ$¨H‰œ$0H‰„$(èHÄøÃHH‰$HH‰\$HH‰\$èH‹D$묉낉éAÿÿÿH‹Œ$H‰t$pH‰T$hH‰Œ$ H‰$Hƒ$`Hƒ$èH‹œ$ H‰$Hƒ$HèH‹œ$ H‰$Hƒ$`èH‹„$ H‹XhH‹l$hH)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$pI)èLÃH‰\$`H‹œ$H‰$H‹œ$H‰\$H‹œ$H‰\$èH‹\$H‰\$xH‹œ$H‰$èH‹„$H‹l$`L‹@L‹HL9ŇÎL‹I)èI)éIƒùtM*L‰„$èL‰Œ$ðL‰”$àH‰$Hƒ$èH‹„$H‹l$xL‹@ L‹H(L9ŇpL‹PI)èI)éIƒùtM*L‰„$ÐL‰Œ$ØL‰”$ÈH‰$Hƒ$0èH‹œ$H‹l$xL‹C8L‹K@L9ŇL‹S0I)èI)éIƒùtM*L‰„$¸L‰Œ$ÀL‰”$°HH‰$èH‹D$H‰„$¨H‰$èH‹œ$¨H‹¬$èH‰kH‹¬$ðH‰kH‹¬$à€=…wH‰+H‹œ$¨H‰$Hƒ$èH‹œ$¨H‹¬$ÐH‰k H‹¬$ØH‰k(H‹¬$Ȁ=…H‰kH‹œ$¨H‰$Hƒ$0èH‹œ$¨H‹¬$¸H‰k8H‹¬$ÀH‰k@H‹¬$°€=…¬H‰k0H‹œ$¨H‰$Hƒ$XèH‹œ$H‰$Hƒ$XèH‹„$¨Hƒø„cL‹„$I‹hXH‰hXH‰$Hƒ$HèH‹œ$H‰$Hƒ$HèH‹„$¨Hƒø„L‹„$I‹hHH‰hHH‰$Hƒ$PèH‹œ$H‰$Hƒ$PèH‹„$¨Hƒø„ÉL‹„$I‹hPH‰hPH‰$Hƒ$`HÇD$ èH‹„$¨H‹¬$H‰h`H‹¬$H‰hhH‹¬$H‰hpH‹¬$ H‰hxH‰„$¨H‹1íH9èt%H‹œ$¨H‰œ$0H‰„$(èHÄøÃHH‰$HH‰\$HH‰\$èH‹D$묉é0ÿÿÿ‰éãþÿÿ‰é–þÿÿLC0L‰$H‰l$èéAþÿÿLCL‰$H‰l$èéÛýÿÿH‰$H‰l$èéyýÿÿèèèHÇÀé$úÿÿ‰é¤ùÿÿèéôøÿÿÌÌÌÌh
X*runtime.racefuncenterº*runtime.racereadrangeæÈ
 runtime.duffcopyð,"".Rectangle.IntersectÔtype."".YCbCræ"runtime.newobject¤,runtime.racewriterangeÞ” runtime.duffzeroú"runtime.racewrite¦ runtime.raceread€4go.itab.*"".YCbCr."".ImageÈ(runtime.racefuncexitætype.*"".YCbCrütype."".Image”4go.itab.*"".YCbCr."".Image¨ runtime.typ2Itab¦	 runtime.racereadÒ	 runtime.racereadþ	 runtime.racereadº&"".(*YCbCr).COffsetð runtime.racereadž
 runtime.racereadÎ runtime.racereadðtype."".YCbCr‚"runtime.newobject®"runtime.racewriteŠ(runtime.writeBarrierÊ"runtime.racewrite¦(runtime.writeBarrierè"runtime.racewriteÄ(runtime.writeBarrier†"runtime.racewrite² runtime.raceread’"runtime.racewrite¾ runtime.racereadž"runtime.racewriteÊ runtime.raceread¼,runtime.racewriterangeÊ4go.itab.*"".YCbCr."".Image’(runtime.racefuncexit°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_0966type.*uint8"".autotmp_0965type.*"".YCbCr"".autotmp_0964type.int"".autotmp_0961Ÿtype.*"".YCbCr"".autotmp_0959type.*"".YCbCr"".autotmp_0958type.[]uint8"".autotmp_0957_type.[]uint8"".autotmp_0956/type.[]uint8"".autotmp_0955type.int"".autotmp_0954type.*"".YCbCr"".yŸtype.int"".xtype.int"".p¯type.*"".YCbCr"".rï"type."".Rectangle
"".ciÿtype.int
"".yi¯type.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".YCbCr0ðÐïðäïð­ï¨æBŽW¤-Œ5ZXX’8880'(-AV+¦’0?ŠrXZNOOÆ0E
6Tgclocals·7c5c95b88edaaa4fc9b93df09fd4a209Tgclocals·c18700852ad91ab4d108572c607cfe304$GOROOT/src/image/ycbcr.goþ$"".(*YCbCr).Opaque€€dH‹%H;av!HƒìH‹\$H‰$èÆD$èHƒÄÃèëÉÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenterN(runtime.racefuncexitb0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".YCbCr@”
$Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ"".yCbCrSizeà	à	dH‹%H;a†PHƒìHH‹\$HH‰$èH‹|$XH‹t$hH‹T$PH‹L$`H‰|$H‰t$ H‰ÍH‰L$H‰T$H)ÕH‰T$(H‰L$8I‰ñH‰t$@H‰|$0I)ùH‰l$xL‰Œ$€H‹D$pHƒøÑHƒøuFH‰ÍHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ÕHÁý?I‰ÐI)èL‰ÅHÑýH)ëH‰œ$ˆL‰Œ$èHƒÄHÃHƒøujH‰Í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‰¬$ˆL‰Œ$éqÿÿÿHƒøuAH‰¬$ˆH‰õHÿÅH‰ëHÁû?H)ÝH‰ëHÑûH‰ýHÁý?I‰øI)èL‰ÅHÑýH)ëH‰œ$é*ÿÿÿHƒøuCH‰ÈHƒÀH‰ÃHÁû?HÁë>HÃHÁûH‰ÕHÁý?HÁí>HÕHÁýH)ëH‰œ$ˆL‰Œ$éáþÿÿHƒø…Qÿÿÿ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þÿÿèé“ýÿÿÌÌÌ
B*runtime.racefuncenter˜(runtime.racefuncexitÈ	0runtime.morestack_noctxt0"".autotmp_0987type.int"".autotmp_0986type.int"".autotmp_0985type.int"".autotmp_0984type.int"".autotmp_0983type.int"".autotmp_0982type.int"".autotmp_0981type.int"".autotmp_0980type.int"".autotmp_0979type.int"".autotmp_0978type.int"".autotmp_0977type.int"".autotmp_0976type.int"".autotmp_0975type.int"".autotmp_0974type.int"".autotmp_0971type.int"".autotmp_0970type.int"".r?"type."".Rectangle"".r"type."".Rectangle
"".ch€type.int
"".cwptype.int"".h`type.int"".wPtype.int""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangle"½Ž
ðtœ."+A4$
!4446
64-
 Ð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‹œ$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‹|$`H‹t$XH‹L$H‹T$ H‹D$(H‰”$€H9LJ—H‰¼$ÈH‰¼$ÐH‰Œ$ÀH‰õH9ƇlH9÷‡cH)ýI‰ÈHƒýtM8H‰¬$°H‰¬$¸L‰„$¨H‹l$PH‰„$ˆH9ŇH9î‡H)õI‰ÈH‰L$xHƒýtM0H‰¬$˜H‰¬$ L‰„$HH‰$èH‹D$H‰D$pH‰$èH‹\$pH‹¬$ÈH‰kH‹¬$ÐH‰kH‹¬$À€=…€H‰+H‹\$pH‰$Hƒ$èH‹\$pH‹¬$°H‰k H‹¬$¸H‰k(H‹¬$¨€=…!H‰kH‹\$pH‰$Hƒ$0èH‹\$pH‹¬$˜H‰k8H‹¬$ H‰k@H‹¬$€=…ÁH‰k0H‹\$pH‰$Hƒ$XèH‹D$pH‹¬$H‰hXH‰$Hƒ$HèH‹D$pH‹l$HH‰hHH‰$Hƒ$PèH‹D$pH‹l$hH‰hPH‰$Hƒ$`HÇD$ èH‹D$pH‹¬$àH‰h`H‹¬$èH‰hhH‹¬$ðH‰hpH‹¬$øH‰hxH‰„$èHÄØÃLC0L‰$H‰l$èé,ÿÿÿLCL‰$H‰l$èéÌþÿÿH‰$H‰l$èépþÿÿèèèèé?üÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ2
X*runtime.racefuncenterâ"".yCbCrSize¦type.[]uint8Ö"runtime.makesliceútype."".YCbCrŒ"runtime.newobject²"runtime.racewriteˆ(runtime.writeBarrierÂ"runtime.racewrite˜	(runtime.writeBarrierÔ	"runtime.racewriteª
(runtime.writeBarrieræ
"runtime.racewrite¤"runtime.racewriteÜ"runtime.racewrite¦,runtime.racewriterangeª
(runtime.racefuncexitÞ
.runtime.writebarrierptrŒ.runtime.writebarrierptr².runtime.writebarrierptrÆ$runtime.panicsliceÔ$runtime.panicsliceâ$runtime.panicsliceð0runtime.morestack_noctxt`°"".autotmp_0996Ïtype.*"".YCbCr"".autotmp_0995type.[]uint8"".autotmp_0994_type.[]uint8"".autotmp_0993type.[]uint8"".autotmp_0992/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 °Á¯°V¯ÐNÔ0Y!@!=L’A
6+šHII¢
.Tgclocals·9bee0e0ddef505094e228c547e28a753Tgclocals·1aecd0363e705c5bd33e230135d399c24$GOROOT/src/image/ycbcr.goþ0"".(*NYCbCrA).ColorModelààdH‹%H;avPHƒìH‹\$H‰$è1ÛH‰\$H‰\$ HH‰$èH‹H‰\$H‹H‰\$ èHƒÄÃèëšÌÌÌÌÌÌÌÌÌÌ
:*runtime.racefuncenter`0image/color.NYCbCrAModelr runtime.raceread€0image/color.NYCbCrAModel˜0image/color.NYCbCrAModel¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".p type.*"".NYCbCrAKpˆ29Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/ycbcr.goþ "".(*NYCbCrA).AtÀÀdH‹%H;a†½Hƒì@H‹\$@H‰$è1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?HH‰$HH‰\$HH‰\$H\$<H‰\$HÇD$ èH‹\$(H‰\$`H‹\$0H‰\$hèHƒÄ@Ãèé&ÿÿÿÌÌÌÌÌÌ
B*runtime.racefuncenterž."".(*NYCbCrA).NYCbCrAAtô0type.image/color.NYCbCrAŠ,type.image/color.Color¢Zgo.itab.image/color.NYCbCrA.image/color.ColorÜruntime.convT2IŽ(runtime.racefuncexit¢0runtime.morestack_noctxtP€
"".autotmp_09970type.image/color.NYCbCrA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NYCbCrA€¸à1• ¦Tgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·69c1753bd5f81501d95132d08af044644$GOROOT/src/image/ycbcr.goþ."".(*NYCbCrA).NYCbCrAAtààdH‹%HD$ÈH;A†ÿHì¸H‹œ$¸H‰$è1ۈœ$؈œ$وœ$ڈœ$Û1ÛH‹œ$ÈH‰\$`H‹œ$ÐH‰\$hH‹œ$ÀH‰$Hƒ$`HÇD$ èL‹L$`L‹D$hH‹¼$ÀHƒÿ„kH‹w`H‹WhH‰T$xH‹OpH‰Œ$€H‹GxH‰„$ˆH‰t$pL9Ώ1I9ɍ(L9I9ÀœÀ<uC1í@ˆl$$@ˆ¬$Ø@ˆl$%@ˆ¬$Ù@ˆl$&@ˆ¬$Ú@ˆl$'@ˆ¬$ÛèHĸÃHƒÿ„ÁH‹œ$ÈH‰\$HH‹œ$ÐH‰\$8H‰¼$˜H‰<$Hƒ$`Hƒ$èH‹œ$˜H‰$Hƒ$HèH‹œ$˜H‰$Hƒ$`èH‹„$˜H‹XhH‹l$8H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$HI)èLÃH‰\$(H‹œ$ÀH‰$Hƒ<$„
H‹œ$ÈH‰\$H‹œ$ÐH‰\$èH‹\$H‰\$PH‹„$ÀH‹œ$ÈH‰\$@H‹œ$ÐH‰\$0H‰„$H‰$Hƒ$`Hƒ$èH‹œ$H‰$H$˜èH‹œ$H‰$Hƒ$`èH‹„$H‹XhH‹l$0H)ÝH‰ëH‹¨˜H¯ÝH‹h`L‹D$@I)èLÃH‰\$X1ۈ\$$ˆ\$%ˆ\$&ˆ\$'H‹œ$ÀH‰$èH‹œ$ÀH‹H‹CH‹kH‰¬$°H‰Œ$ H‹l$(H‰„$¨H9ŃÜH)H‰$èH‹”$ÀHƒú„¶H‹
H‹BH‹jH‰¬$°H‰Œ$ H‹l$(H‰„$¨H9Ń~H)¶ˆ\$$H‰$Hƒ$èH‹œ$ÀH‹KH‹C H‹k(H‰¬$°H‰Œ$ H‹l$PH‰„$¨H9Ń$H)H‰$èH‹”$ÀHƒú„þH‹JH‹B H‹j(H‰¬$°H‰Œ$ H‹l$PH‰„$¨H9ŃÅH)¶ˆ\$%H‰$Hƒ$0èH‹œ$ÀH‹K0H‹C8H‹k@H‰¬$°H‰Œ$ H‹l$PH‰„$¨H9ŃkH)H‰$èH‹”$ÀHƒú„EH‹J0H‹B8H‹j@H‰¬$°H‰Œ$ H‹l$PH‰„$¨H9ŃH)¶ˆ\$&H‰$H$€èH‹œ$ÀH‹‹€H‹ƒˆH‹«H‰¬$°H‰Œ$ H‹l$XH‰„$¨H9ѦH)H‰$èH‹œ$ÀHƒû„€H‹‹€H‹ƒˆH‹«H‰¬$°H‰Œ$ H‹l$XH‰„$¨H9ÅsBH)¶H‰Ø¶\$$ˆœ$ض\$%ˆœ$Ù¶\$&ˆœ$ڈ„$ÛèHĸÃè‰éyÿÿÿèè‰é´þÿÿèè‰éûýÿÿèè‰éCýÿÿè‰%éêûÿÿ‰é8ûÿÿ1Àéàúÿÿ‰éŽúÿÿèéßùÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ:
X*runtime.racefuncenterŠ*runtime.racereadrangeÖ(runtime.racefuncexitä runtime.raceread runtime.raceread¼ runtime.racereadŽ&"".(*YCbCr).COffsetœ	 runtime.racereadÎ	 runtime.racereadú	 runtime.raceread¬ runtime.raceread¸ runtime.racereadð
 runtime.racereadþ runtime.raceread¸ runtime.racereadÆ runtime.raceread† runtime.raceread¦ runtime.raceread¬(runtime.racefuncexitÆ$runtime.panicindexâ$runtime.panicindexð$runtime.panicindexŒ$runtime.panicindexš$runtime.panicindex¶$runtime.panicindexÄ$runtime.panicindexà$runtime.panicindex°0runtime.morestack_noctxt@ð&"".autotmp_10030type.image/color.NYCbCrA"".autotmp_1002type.int"".autotmp_1000§0type.image/color.NYCbCrA"".autotmp_0998type.int"".ytype.int"".xïtype.int"".pO type.*"".NYCbCrA"".yÿtype.int"".xßtype.int"".p?type.*"".YCbCr"".r"type."".Rectangle"".p¯type."".Point
"".ai¿type.int
"".ciÏtype.int
"".yiŸtype.int"".~r200type.image/color.NYCbCrA"".y type.int"".xtype.int"".p type.*"".NYCbCrA.ð—ïðêïðuï°r˜¦6ž@¢¥¤¤´8"+Æ•GˆÛTgclocals·55cc6ee7528f0b48e5a6d9bfba36524aTgclocals·6013db99caf2bb60e55bc0c016a4e7e94$GOROOT/src/image/ycbcr.goþ*"".(*NYCbCrA).AOffsetààdH‹%H;a†HƒìH‹\$H‰$èH‹\$H‰$Hƒ$`Hƒ$èH‹\$H‰$H$˜èH‹\$H‰$Hƒ$`èH‹D$H‹XhH‹l$ H)ÝH‰ëH‹¨˜H¯ÝH‹h`L‹D$I)èLÃH‰\$(èHƒÄÃèéSÿÿÿÌÌÌ
B*runtime.racefuncenterr runtime.racereadž runtime.racereadÄ runtime.raceread´(runtime.racefuncexitÈ0runtime.morestack_noctxt@"".~r20type.int"".y type.int"".xtype.int"".p type.*"".NYCbCrA‹°¾Œ
 Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4$GOROOT/src/image/ycbcr.goþ,"".(*NYCbCrA).SubImageà$à$dH‹%H„$PÿÿÿH;A†	Hì0H‹œ$0H‰$è1ÛH‰œ$`H‰œ$hH‹œ$8H‰$Hƒ$`HÇD$ èH‹œ$@H‰$H‹œ$HH‰\$H‹œ$PH‰\$H‹œ$XH‰\$H‹´$8Hƒþ„qH^`H|$ H‰ÞèèH‹t$@H‹T$HH‹L$PH‹D$XH‰´$@H‰”$HH‰”$ H‰Œ$PH‰„$XH‰„$°H‰´$˜H‰Œ$¨H9΍òH9À<„HH‰$èH‹D$H‰„$ÈH‰$HÇD$ èH‹„$ÈH‰ÇHƒø„¼WÀHƒÇàèH‰$Hƒ$XèH‹œ$8H‰$Hƒ$XèH‹„$ÈHƒøtzL‹„$8I‹hXH‰hXH‰„$ÈH‹1íH9èt%H‹œ$ÈH‰œ$hH‰„$`èHÄ0ÃHH‰$HH‰\$HH‰\$èH‹D$묉낉é=ÿÿÿH‹Œ$8Hƒù„ÄH‰t$xH‰T$hH‰Œ$¸H‰$Hƒ$`Hƒ$èH‹œ$¸H‰$Hƒ$HèH‹œ$¸H‰$Hƒ$`èH‹„$¸H‹XhH‹l$hH)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$xI)èLÃH‰\$`H‹œ$8H‰$Hƒ<$„H‹œ$@H‰\$H‹œ$HH‰\$èH‹\$H‰œ$ˆH‹Œ$8H‹„$HH‹œ$@H‰œ$€H‰D$pH‰Œ$ÀH‰$Hƒ$`Hƒ$èH‹œ$ÀH‰$H$˜èH‹œ$ÀH‰$Hƒ$`èH‹„$ÀH‹XhH‹l$pH)ÝH‰ëH‹¨˜H¯ÝH‹h`L‹„$€I)èLÃH‰œ$H‹œ$8H‰$èH‹„$8H‹l$`L‹@L‹HL9ŇL‹I)èI)éIƒùtM*L‰„$ L‰Œ$(L‰”$H‰$Hƒ$èH‹„$8H‹¬$ˆL‹@ L‹H(L9Ň¯L‹PI)èI)éIƒùtM*L‰„$L‰Œ$L‰”$H‰$Hƒ$0èH‹„$8H‹¬$ˆL‹@8L‹H@L9ŇML‹P0I)èI)éIƒùtM*L‰„$ðL‰Œ$øL‰”$èH‰$H$€èH‹œ$8H‹¬$L‹ƒˆL‹‹L9ŇâL‹“€I)èI)éIƒùtM*L‰„$ØL‰Œ$àL‰”$ÐHH‰$èH‹D$H‰„$ÈH‰$èH‹œ$ÈH‹¬$ H‰kH‹¬$(H‰kH‹¬$€=…EH‰+H‹œ$ÈH‰$Hƒ$èH‹œ$ÈH‹¬$H‰k H‹¬$H‰k(H‹¬$€=…àH‰kH‹œ$ÈH‰$Hƒ$0èH‹œ$ÈH‹¬$ðH‰k8H‹¬$øH‰k@H‹¬$è€=…zH‰k0H‹œ$ÈH‰$Hƒ$XèH‹œ$8H‰$Hƒ$XèH‹„$ÈHƒø„1L‹„$8I‹hXH‰hXH‰$Hƒ$HèH‹œ$8H‰$Hƒ$HèH‹„$ÈHƒø„äL‹„$8I‹hHH‰hHH‰$Hƒ$PèH‹œ$8H‰$Hƒ$PèH‹„$ÈHƒø„—L‹„$8I‹hPH‰hPH‰$Hƒ$`HÇD$ èH‹„$ÈH‹¬$@H‰h`H‹¬$HH‰hhH‹¬$PH‰hpH‹¬$XH‰hxH‰$H$€èH‹œ$ÈH‹¬$ØH‰«ˆH‹¬$àH‰«H‹¬$Ѐ=…ÒH‰«€H‹œ$ÈH‰$H$˜èH‹œ$8H‰$H$˜èH‹„$ÈHƒø„€L‹„$8I‹¨˜H‰¨˜H‰„$ÈH‹1íH9èt%H‹œ$ÈH‰œ$hH‰„$`èHÄ0ÃHH‰$HH‰\$HH‰\$èH‹D$묉éyÿÿÿLƒ€L‰$H‰l$èéÿÿÿ‰ébþÿÿ‰éþÿÿ‰éÈýÿÿLC0L‰$H‰l$èésýÿÿLCL‰$H‰l$èé
ýÿÿH‰$H‰l$èé«üÿÿèèèè‰%é×ùÿÿ‰é5ùÿÿHÇÀéøÿÿ‰éˆ÷ÿÿèéÕöÿÿÌÌÌÌÌ|
^*runtime.racefuncenterÀ*runtime.racereadrangeìÈ
 runtime.duffcopyö,"".Rectangle.IntersectÚtype."".NYCbCrAì"runtime.newobjectª,runtime.racewriterangeìü runtime.duffzeroˆ"runtime.racewrite´ runtime.racereadŽ8go.itab.*"".NYCbCrA."".ImageÖ(runtime.racefuncexitô type.*"".NYCbCrAŠtype."".Image¢8go.itab.*"".NYCbCrA."".Image¶ runtime.typ2ItabÈ	 runtime.racereadô	 runtime.raceread 
 runtime.racereadò&"".(*YCbCr).COffsetŒ
 runtime.raceread¾
 runtime.racereadê
 runtime.raceread„ runtime.raceread² runtime.racereadè runtime.raceread¤ runtime.racereadÞtype."".NYCbCrAð"runtime.newobjectœ"runtime.racewriteø(runtime.writeBarrier¸"runtime.racewrite”(runtime.writeBarrierÖ"runtime.racewrite²(runtime.writeBarrierô"runtime.racewrite  runtime.raceread€"runtime.racewrite¬ runtime.racereadŒ"runtime.racewrite¸ runtime.racereadª,runtime.racewriterange¼"runtime.racewrite¤(runtime.writeBarrierò"runtime.racewrite¤ runtime.raceread’ 8go.itab.*"".NYCbCrA."".ImageÚ (runtime.racefuncexitø  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à4"".autotmp_1028type.*uint8"".autotmp_1027 type.*"".NYCbCrA"".autotmp_1026type.int"".autotmp_1025type.int"".autotmp_1024type.int"".autotmp_1021Ï type.*"".NYCbCrA"".autotmp_1019 type.*"".NYCbCrA"".autotmp_1018¿type.[]uint8"".autotmp_1017type.[]uint8"".autotmp_1016_type.[]uint8"".autotmp_1015/type.[]uint8"".autotmp_1014type.int"".autotmp_1013 type.*"".NYCbCrA"".yÿtype.int"".xßtype.int"".pß type.*"".NYCbCrA"".ytype.int"".xïtype.int"".pïtype.*"".YCbCr"".r¯"type."".Rectangle
"".ai¿type.int
"".ciÏtype.int
"".yiŸtype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NYCbCrA0"àÔßàÁßàèß°ÜÊEŽW^4-–C«Z[[g’8	8
80Bp56-A
j.¦–0I•M|W
[^fNOOÿt0O
QTgclocals·bebb5bbe51c03abf31041684303d3f40Tgclocals·0df432756ef1f86b7d3ebc02e5f9447f4$GOROOT/src/image/ycbcr.goþ("".(*NYCbCrA).OpaqueÀÀdH‹%HD$ÐH;A†ñHì°H‹œ$°H‰$èH‹œ$¸H‰$Hƒ$`HÇD$ èH‹¼$¸Hƒÿ„¡H‹w`H‹WhH‰T$@H‹OpH‹GxH‰D$PH‰t$8H‰L$HH9΍hH9À<tƄ$ÀèHİÃH‰<$Hƒ$`HÇD$ èH‹”$¸Hƒú„H‹J`H‹jhH‰l$`H‹ZpH‹jxH‰l$pH‰\$hH‰L$XH)ËHÇD$ H‰\$H‰$Hƒ$`Hƒ$èH‹Œ$¸H‹ihH‰l$H‰$Hƒ$`Hƒ$Hƒ$èH‹„$¸H‹XxH‹l$H9ëŽyH‰$H$€èH‹œ$¸H‹l$ L‹D$L‹‹M9ȇ?L9Ň6L‹“€I)èI)éIƒùtM*L‰”$˜L‰„$ L‰Œ$¨L‰Œ$1ÉL‰„$ˆL‰D$(L‰”$€L‰ÐH‰L$0H‹l$(H9é}NH‰D$xH‰$èH‹L$x¶)@€ýÿtƄ$ÀèHİÃH‰ÈHÿÀH‹L$0HÿÁH‰L$0H‹l$(H9é|²H‹\$ H‰\$0H‹œ$¸H‰$H$˜èH‹„$¸H‹˜˜H‹l$0HëH‰\$ H‹\$H‰\$0H‰$H$˜èH‹Œ$¸H‹™˜H‹l$0HëH‰\$H‹\$HÿÃH‰\$é\þÿÿèƄ$ÀèHİÉéàýÿÿHÇÀé’ýÿÿ‰éXýÿÿèéíüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
X*runtime.racefuncenter–*runtime.racereadrangeÂ(runtime.racefuncexit€*runtime.racereadrange´ runtime.raceread† runtime.racereadÜ runtime.racereadŽ runtime.racereadÄ(runtime.racefuncexitÔ	 runtime.racereadÂ
 runtime.raceread¨$runtime.panicsliceÆ(runtime.racefuncexit”0runtime.morestack_noctxt à""".autotmp_1041otype.*uint8"".autotmp_1040type.int"".autotmp_1039type.int"".autotmp_1038type.int"".autotmp_1037ÿtype.int"".autotmp_1035type.int"".autotmp_1034type.int"".autotmp_1033type.int"".autotmp_1032_type.[]uint8"".autotmp_1031/type.[]uint8"".r¯"type."".Rectangle"".rï"type."".Rectangle"".y¿type.int
"".i1¯type.int
"".i0Ÿtype.int"".~r0type.bool"".p type.*"".NYCbCrA<àßà€ßàÀßàß ^ˆh^V²
?7
+ÛÿTgclocals·32bd5c6dc84e3e86dd35593b3922d3aaTgclocals·1e95b73271997518524fc42f69ee4ca24$GOROOT/src/image/ycbcr.goþ"".NewNYCbCrAààdH‹%HD$H;A†‡HìðH‹œ$ð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À‡kL‰„$àL‰„$èH‰Œ$ØL‰ÃH‰ýH9LJ=I9ø‡4L)ÅI‰ÈHƒýtMH‰¬$ÈH‰¬$ÐL‰„$ÀH‰õH9ƇùH9÷‡ðH)ý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‹\$pH‹¬$àH‰kH‹¬$èH‰kH‹¬$؀=…
H‰+H‹\$pH‰$Hƒ$èH‹\$pH‹¬$ÈH‰k H‹¬$ÐH‰k(H‹¬$À€=…«H‰kH‹\$pH‰$Hƒ$0èH‹\$pH‹¬$°H‰k8H‹¬$¸H‰k@H‹¬$¨€=…KH‰k0H‹\$pH‰$Hƒ$XèH‹D$pH‹¬$H‰hXH‰$Hƒ$HèH‹D$pH‹l$HH‰hHH‰$Hƒ$PèH‹D$pH‹l$hH‰hPH‰$Hƒ$`HÇD$ èH‹D$pH‹¬$øH‰h`H‹¬$H‰hhH‹¬$H‰hpH‹¬$H‰hxH‰$H$€èH‹\$pH‹¬$˜H‰«ˆH‹¬$ H‰«H‹¬$€=uCH‰«€H‹\$pH‰$H$˜èH‹D$pH‹l$HH‰¨˜H‰„$ èHÄðÃLƒ€L‰$H‰l$èë­LC0L‰$H‰l$èé¢þÿÿLCL‰$H‰l$èéBþÿÿH‰$H‰l$èéæýÿÿèèèèèéWûÿÿÌÌÌÌÌÌÌ<
X*runtime.racefuncenterâ"".yCbCrSizeÞtype.[]uint8„"runtime.makeslice¨type."".NYCbCrAº"runtime.newobjectà"runtime.racewrite¶	(runtime.writeBarrierð	"runtime.racewriteÆ
(runtime.writeBarrier‚"runtime.racewriteØ(runtime.writeBarrier”"runtime.racewriteÒ"runtime.racewriteŠ
"runtime.racewriteÔ
,runtime.racewriterangeà"runtime.racewriteÂ(runtime.writeBarrier‚"runtime.racewrite¾(runtime.racefuncexitø.runtime.writebarrierptr .runtime.writebarrierptrÎ.runtime.writebarrierptrô.runtime.writebarrierptrˆ$runtime.panicslice–$runtime.panicslice¤$runtime.panicslice²$runtime.panicsliceÀ0runtime.morestack_noctxt`à"".autotmp_1052ÿ type.*"".NYCbCrA"".autotmp_1051¿type.[]uint8"".autotmp_1050type.[]uint8"".autotmp_1049_type.[]uint8"".autotmp_1048type.[]uint8"".autotmp_1047/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 à‹ßàtß°	Z®0Y$8!@=O…%&X>+ñHII÷
-Tgclocals·ce3a77be2dd12da6449e296501a83f8fTgclocals·4b2a4b9f6c2e9059084168826854d6614$GOROOT/src/image/ycbcr.goþ"".init  dH‹%H;a†¬HƒìPH‹\$PH‰$èHH‰$è¶€ût-HH‰$è¶€ûu
èHƒÄPÃèHH‰$èÆèèèèHH‰$HÇD$èH‹\$H‰\$@H‹\$H‰\$HHH‰$èH‹\$@H‰H‹\$H€=…±H‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$H‰\$8HH‰$èH‹\$8€=…
H‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$H‰\$8HH‰$èH‹\$8€=…iH‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$H‰\$8HH‰$èH‹\$8€=…ÅH‰HH‰$HH‰\$HH‰\$HH‰\$HÇD$ èH\$(H‹H‰$H‹KH‰L$èH‹\$H‰\$8HH‰$èH‹\$8€=u(H‰HH‰$èÆèHƒÄPÃH-H‰,$H‰\$èëÈH-H‰,$H‰\$èé(ÿÿÿH-H‰,$H‰\$èé„þÿÿH-H‰,$H‰\$èéàýÿÿH-H‰,$H‰\$èé<ýÿÿèé7üÿÿÌÌÌÌÌÌ̞
B*runtime.racefuncenterP"".initdone·b runtime.racereadp"".initdone·ˆ"".initdone·š runtime.raceread¨"".initdone·¼(runtime.racefuncexitÐ"runtime.throwinitâ"".initdone·ô"runtime.racewrite€"".initdone·Œbufio.init–io.init  image/color.initªstrconv.init¸Bgo.string."image: unknown format"Üerrors.New’"".ErrFormat¤"runtime.racewrite¼"".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¾"".BlackÐ"runtime.racewriteæ(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Ò"".Whiteä"runtime.racewriteú(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æ	"".Transparentø	"runtime.racewriteŽ
(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ú"".OpaqueŒ"runtime.racewrite¢(runtime.writeBarrier¶"".OpaqueÄ"".initdone·Ö"runtime.racewriteâ"".initdone·î(runtime.racefuncexit†
"".Opaque¢
.runtime.writebarrierptr´
"".TransparentÐ
.runtime.writebarrierptrè
"".White„.runtime.writebarrierptrœ"".Black¸.runtime.writebarrierptrÐ"".ErrFormatì.runtime.writebarrierptr€0runtime.morestack_noctxt 
"".autotmp_1057 type.*"".Uniform"".autotmp_1056 type.*"".Uniform"".autotmp_1055 type.*"".Uniform"".autotmp_1054/ type.*"".Uniform"".autotmp_1053type.error, OŸ ØŸ Ÿ.™b¤!NbÖ™·bŠŠŠ†®!­®±º6 ±b4V4V4V4%¦Tgclocals·7d2d5fca80364273fb07d5820a76fef4Tgclocals·6910e19bd0d31b4222b21d8d53042f424$GOROOT/src/image/ycbcr.go6$GOROOT/src/image/format.go4$GOROOT/src/image/names.goþ"".Image.AtààdH‹%H;a†„Hƒì8H‹Y H…Ût
H|$@H9;uH‰#H‹\$8H‰$è1ÛH‰\$`H‰\$hH‹\$PH‰\$H‹\$XH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹L$H‹D$ H‰L$(H‰L$`H‰D$0H‰D$hèHƒÄ8Ãèé_ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenterÚœ(runtime.racefuncexit°0runtime.morestack_noctxt`p
"".autotmp_1058,type.image/color.Color"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".Imagepo°°6W#Tgclocals·b6338434a483b71ecf7a1963213f75e2Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ"".Image.Bounds€€dH‹%H;a†˜HƒìHH‹Y H…Ût
H|$PH9;uH‰#H‹\$HH‰$è1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‹\$XH‰$H‹\$PH‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$(H‰l$`H‰T$0H‰T$hH‰L$8H‰L$pH‰D$@H‰D$xèHƒÄHÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenterÆÄ(runtime.racefuncexitØ0runtime.morestack_noctxt`"".autotmp_1059?"type."".Rectangle"".~r0 "type."".Rectangle""..thistype."".Image“ÀÀ6ŠTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".Image.ColorModel  dH‹%H;avpHƒì(H‹Y H…Ût
H|$0H9;uH‰#H‹\$(H‰$è1ÛH‰\$@H‰\$HH‹\$8H‰$H‹\$0H‹[0ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$HèHƒÄ(ÃèéwÿÿÿÌÌÌÌÌÌÌ

f*runtime.racefuncenterªì(runtime.racefuncexit€0runtime.morestack_noctxt@P"".autotmp_1060,type.image/color.Model"".~r0 ,type.image/color.Model""..thistype."".ImagePkO2CTgclocals·19b49d53e9c11805652fa4c0885cbb29Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ$"".(*Point).String€€dH‹%H;a†ÞHƒì@H‹Y H…Ût
H|$HH9;uH‰#H‹\$@H‰$è1ÛH‰\$PH‰\$XH‹\$H1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$HH‰$HÇD$èH‹t$HH‹H‰$H‹NH‰L$èH‹L$H‹D$H‰L$0H‰L$PH‰D$8H‰D$XèHƒÄ@ÃèéÿÿÿÌÌÌÌÌ
n*runtime.racefuncenter¬"go.string."image"Ô"go.string."Point"þ$go.string."String"¤"runtime.panicwrapÖ*runtime.racereadrangeŠ"".Point.StringÐ(runtime.racefuncexitä0runtime.morestack_noctxt0€"".autotmp_1061type.string"".~r0type.string""..thistype.*"".Point€Ù€
€6±Tgclocals·69076ee43f1cead0792b9f36906b1b56Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ"".(*Point).Add€€dH‹%H;a†HƒìpH‹Y H…Ût
H|$xH9;uH‰#H‹\$pH‰$è1ÛH‰œ$H‰œ$˜H‹\$x1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$xH‰$HÇD$èH‹\$xHƒûtlH‹3H‹SH‹Œ$€H‹„$ˆ1Û1ÛH‰óH‰t$PH‰L$@HËH‰ÙH‰ÓH‰T$XH‰D$HHÃH‰L$`H‰\$hH‰L$0H‰Œ$H‰\$8H‰œ$˜èHƒÄpÉëèéÆþÿÿÌÌÌÌÌÌ
n*runtime.racefuncenter¸"go.string."image"à"go.string."Point"Šgo.string."Add"°"runtime.panicwrapâ*runtime.racereadrangeÆ(runtime.racefuncexitâ0runtime.morestack_noctxtPà"".autotmp_1062type."".Point"".~r1type."".Point"".q_type."".Point"".p?type."".Point"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point à”ßàßÀÀ6ŠTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).Sub€€dH‹%H;a†HƒìpH‹Y H…Ût
H|$xH9;uH‰#H‹\$pH‰$è1ÛH‰œ$H‰œ$˜H‹\$x1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$xH‰$HÇD$èH‹\$xHƒûtlH‹3H‹SH‹Œ$€H‹„$ˆ1Û1ÛH‰óH‰t$PH‰L$@H)ËH‰ÙH‰ÓH‰T$XH‰D$HH)ÃH‰L$`H‰\$hH‰L$0H‰Œ$H‰\$8H‰œ$˜èHƒÄpÉëèéÆþÿÿÌÌÌÌÌÌ
n*runtime.racefuncenter¸"go.string."image"à"go.string."Point"Šgo.string."Sub"°"runtime.panicwrapâ*runtime.racereadrangeÆ(runtime.racefuncexitâ0runtime.morestack_noctxtPà"".autotmp_1063type."".Point"".~r1type."".Point"".q_type."".Point"".p?type."".Point"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point à”ßàßÀÀ6ŠTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).MulààdH‹%H;a†Hƒì`H‹Y H…Ût
H|$hH9;uH‰#H‹\$`H‰$è1ÛH‰\$xH‰œ$€H‹\$h1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$hH‰$HÇD$èH‹\$hHƒûtVH‹H‹SH‹D$p1Û1ÛH‰ËH‰L$@H¯ØH‰ÙH‰ÓH‰T$HH¯ØH‰L$PH‰\$XH‰L$0H‰L$xH‰\$8H‰œ$€èHƒÄ`Éë¦èéßþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter²"go.string."image"Ú"go.string."Point"„go.string."Mul"ª"runtime.panicwrapÜ*runtime.racereadrange”(runtime.racefuncexit°0runtime.morestack_noctxt@À"".autotmp_1064type."".Point"".~r1_type."".Point"".p?type."".Point"".~r1 type."".Point"".ktype.int""..thistype.*"".Point Àû¿À¿°°6úTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).Div  dH‹%H;a†%Hƒì`H‹Y H…Ût
H|$hH9;uH‰#H‹\$`H‰$è1ÛH‰\$xH‰œ$€H‹\$h1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$hH‰$HÇD$èH‹\$hHƒûtwH‹H‹{H‹L$p1Û1ÛH‰D$@HƒùÿtTH™H÷ùH‰ÃH‰ÞH‰|$HH‰øHƒùÿt3H™H÷ùH‰ÃH‰t$PH‰\$XH‰t$0H‰t$xH‰\$8H‰œ$€èHƒÄ`ÃH÷ØH‰ÃëÍH÷ØH‰Ã묉ë…èé¾þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter²"go.string."image"Ú"go.string."Point"„go.string."Div"ª"runtime.panicwrapÜ*runtime.racereadrange¶(runtime.racefuncexitò0runtime.morestack_noctxt@À"".autotmp_1065type."".Point"".~r1_type."".Point"".p?type."".Point"".~r1 type."".Point"".ktype.int""..thistype.*"".Point ÀŒ¿À¿ÐÐ6šTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).InààdH‹%H;a†Hƒì`H‹Y H…Ût
H|$hH9;uH‰#H‹\$`H‰$èH‹\$h1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$hH‰$HÇD$èH‹\$hHƒûtiH‹H‹CH‰D$8H‹\$pH‹|$xH‰|$HH‹´$€H‰t$PH‹”$ˆH‰T$XH‰\$@H‰L$0H9Ë!H9ñ}H9ÇH9М„$èHƒÄ`Ã1Àëë‰ë“èéÛþÿÿÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter”"go.string."image"¼"go.string."Point"ægo.string."In"Œ"runtime.panicwrap¾*runtime.racereadrange”(runtime.racefuncexit¸0runtime.morestack_noctxt`À
"".r?"type."".Rectangle"".p_type."".Point"".~r1Ptype.bool"".r"type."".Rectangle""..thistype.*"".Point Àû¿À¿°°6úTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).ModààdH‹%H;a†HƒìPH‹Y H…Ût
H|$XH9;uH‰#H‹\$PH‰$è1ÛH‰œ$€H‰œ$ˆH‹\$X1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$XH‰$HÇD$èH‹t$XH‹H‰$H‹NH‰L$H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$ H‹\$xH‰\$(èH‹L$0H‹D$8H‰L$@H‰Œ$€H‰D$HH‰„$ˆèHƒÄPÃèéÑþÿÿÌ
n*runtime.racefuncenter¸"go.string."image"à"go.string."Point"Šgo.string."Mod"°"runtime.panicwrapâ*runtime.racereadrangeæ"".Point.Mod¸(runtime.racefuncexitÌ0runtime.morestack_noctxtp "".autotmp_1067type."".Point"".~r1Ptype."".Point"".r"type."".Rectangle""..thistype.*"".Point Ÿ°°6úTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ"".(*Point).EqààdH‹%H;a†‹Hì€H‹Y H…ÛtH¼$ˆH9;uH‰#H‹œ$€H‰$èH‹œ$ˆ1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹œ$ˆH‰$HÇD$èH‹œ$ˆHƒû„ÓH‹3H‹kH‹Œ$H‹„$˜H‰t$@H‰t$`H‰l$HH‰l$hH‰L$0H‰L$PH‰D$8H‰D$XH\$`H‰ØH\$PH‰\$pH‰D$xH‰$èH‹\$pH‰$èH‹D$xH‹L‹D$pI‹(H9ëuMH‰$Hƒ$èH‹\$pH‰$Hƒ$èH‹l$xH‹]L‹D$pI‹hH9딄$ èHĀÃ1Àëè‰é&ÿÿÿèéXþÿÿÌÌÌÌÌÌÌÌ
€*runtime.racefuncenter¬"go.string."image"Ô"go.string."Point"þgo.string."Eq"¤"runtime.panicwrapÜ*runtime.racereadrange¾ runtime.racereadÚ runtime.raceread  runtime.racereadÆ runtime.racereadŽ(runtime.racefuncexit¾0runtime.morestack_noctxt@€"".autotmp_1072type.*"".Point"".autotmp_1071type.*"".Point"".autotmp_1069_type."".Point"".autotmp_1068?type."".Point"".qŸtype."".Point"".ptype."".Point"".~r10type.bool"".qtype."".Point""..thistype.*"".Point €øÿ€ÿ°°?ßh*Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·21a8f585a14d020f181242c5256583dc<autogenerated>þ,"".(*Rectangle).String€€dH‹%H;a†àHƒì@H‹Y H…Ût
H|$HH9;uH‰#H‹\$@H‰$è1ÛH‰\$PH‰\$XH‹\$H1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$HH‰$HÇD$ èH‹t$HHƒþt5H‰çèèH‹L$ H‹D$(H‰L$0H‰L$PH‰D$8H‰D$XèHƒÄ@ÉëÇèéÿÿÿÌÌÌ
n*runtime.racefuncenter¬"go.string."image"Ô*go.string."Rectangle"þ$go.string."String"¤"runtime.panicwrapÖ*runtime.racereadrangeüÈ
 runtime.duffcopy†&"".Rectangle.StringÌ(runtime.racefuncexitè0runtime.morestack_noctxt0€"".autotmp_1073type.string"".~r0type.string""..this$type.*"".Rectangle€×€
€€6¯Tgclocals·69076ee43f1cead0792b9f36906b1b56Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ$"".(*Rectangle).Dx€€dH‹%H;a†×HƒìPH‹Y H…Ût
H|$XH9;uH‰#H‹\$PH‰$èH‹\$X1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$XH‰$HÇD$ èH‹\$XHƒût8H‹H‹kH‰l$8H‹CH‹kH‰l$HH‰ÃH‰D$@H‰L$0H)ËH‰\$`èHƒÄPÉëÄèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter”"go.string."image"¼*go.string."Rectangle"ægo.string."Dx"Œ"runtime.panicwrap¾*runtime.racereadrangeº(runtime.racefuncexitÖ0runtime.morestack_noctxt  "".r?"type."".Rectangle"".~r0type.int""..this$type.*"".Rectangle  ÎŸ Ÿ€€6ÊTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).Dy€€dH‹%H;a†ÔHƒìPH‹Y H…Ût
H|$XH9;uH‰#H‹\$PH‰$èH‹\$X1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$XH‰$HÇD$ èH‹\$XHƒût5H‹+H‰l$0H‹KH‹kH‰l$@H‹[H‰\$HH‰L$8H)ËH‰\$`èHƒÄPÉëÇèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter”"go.string."image"¼*go.string."Rectangle"ægo.string."Dy"Œ"runtime.panicwrap¾*runtime.racereadrange´(runtime.racefuncexitÐ0runtime.morestack_noctxt  "".r?"type."".Rectangle"".~r0type.int""..this$type.*"".Rectangle  ËŸ Ÿ€€6ÊTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ("".(*Rectangle).Size€€dH‹%H;a†HƒìpH‹Y H…Ût
H|$xH9;uH‰#H‹\$pH‰$è1ÛH‰œ$€H‰œ$ˆH‹\$x1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$xH‰$HÇD$ èH‹\$xHƒûtdH‹3H‹SH‹KH‹C1Û1ÛH‰ËH‰L$`H‰t$PH)óH‰ÙH‰ÃH‰D$hH‰T$XH)ÓH‰L$@H‰\$HH‰L$0H‰Œ$€H‰\$8H‰œ$ˆèHƒÄpÉë˜èéÎþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter¸"go.string."image"à*go.string."Rectangle"Š go.string."Size"°"runtime.panicwrapâ*runtime.racereadrange¶(runtime.racefuncexitÒ0runtime.morestack_noctxt0à
"".autotmp_1076_type."".Point"".~r0type."".Point"".r?"type."".Rectangle"".~r0type."".Point""..this$type.*"".Rectangle àŒßàßÀ À6ŠTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".(*Rectangle).Add€€dH‹%HD$àH;A†Hì H‹Y H…ÛtH¼$¨H9;uH‰#H‹œ$ H‰$è1ÛH‰œ$ÀH‰œ$ÈH‰œ$ÐH‰œ$ØH‹œ$¨1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$¨H‰$HÇD$ èH‹œ$¨Hƒû„ÃH‹3H‹SL‹CH‹{H‹Œ$°H‹„$¸1Û1ÛH‰óH‰t$`HËH‰ÞH‰ÓH‰T$hHÃH‰ÚL‰ÃL‰D$pH‰L$0HËH‰ÙH‰ûH‰|$xH‰D$8HÃH‰´$€H‰”$ˆH‰Œ$H‰œ$˜H‰t$@H‰´$ÀH‰T$HH‰”$ÈH‰L$PH‰Œ$ÐH‰\$XH‰œ$ØèHĠÉé6ÿÿÿèéAþÿÿÌ
Š*runtime.racefuncenterú"go.string."image"¢*go.string."Rectangle"Ìgo.string."Add"ò"runtime.panicwrapª*runtime.racereadrangeÄ(runtime.racefuncexitì0runtime.morestack_noctxtpÀ"".autotmp_1077?"type."".Rectangle"".~r1¿"type."".Rectangle"".pßtype."".Point"".r"type."".Rectangle"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle ÀŽ¿À¿À"ÀDüTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".(*Rectangle).Sub€€dH‹%HD$àH;A†Hì H‹Y H…ÛtH¼$¨H9;uH‰#H‹œ$ H‰$è1ÛH‰œ$ÀH‰œ$ÈH‰œ$ÐH‰œ$ØH‹œ$¨1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$¨H‰$HÇD$ èH‹œ$¨Hƒû„ÃH‹3H‹SL‹CH‹{H‹Œ$°H‹„$¸1Û1ÛH‰óH‰t$`H)ËH‰ÞH‰ÓH‰T$hH)ÃH‰ÚL‰ÃL‰D$pH‰L$0H)ËH‰ÙH‰ûH‰|$xH‰D$8H)ÃH‰´$€H‰”$ˆH‰Œ$H‰œ$˜H‰t$@H‰´$ÀH‰T$HH‰”$ÈH‰L$PH‰Œ$ÐH‰\$XH‰œ$ØèHĠÉé6ÿÿÿèéAþÿÿÌ
Š*runtime.racefuncenterú"go.string."image"¢*go.string."Rectangle"Ìgo.string."Sub"ò"runtime.panicwrapª*runtime.racereadrangeÄ(runtime.racefuncexitì0runtime.morestack_noctxtpÀ"".autotmp_1078?"type."".Rectangle"".~r1¿"type."".Rectangle"".pßtype."".Point"".r"type."".Rectangle"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle ÀŽ¿À¿À$ÀDüTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).Inset  dH‹%H;a†*HƒìhH‹Y H…Ût
H|$pH9;uH‰#H‹\$hH‰$è1ÛH‰œ$€H‰œ$ˆH‰œ$H‰œ$˜H‹\$p1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$pH‰$HÇD$ èH‹t$pHƒþtiH‰çèH‹\$xH‰\$ èH‹l$(H‹T$0H‹L$8H‹D$@H‰l$HH‰¬$€H‰T$PH‰”$ˆH‰L$XH‰Œ$H‰D$`H‰„$˜èHƒÄhÉë“èé¹þÿÿÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenterØ"go.string."image"€*go.string."Rectangle"ª"go.string."Inset"Ð"runtime.panicwrap‚*runtime.racereadrange¨È
 runtime.duffcopyÆ$"".Rectangle.Insetà(runtime.racefuncexitü0runtime.morestack_noctxt`Ð"".autotmp_1079?"type."".Rectangle"".~r1 "type."".Rectangle"".ntype.int""..this$type.*"".Rectangle СÏÐÏÐ&Ð6šTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ2"".(*Rectangle).Intersect  dH‹%H;a†pHì€H‹Y H…ÛtH¼$ˆH9;uH‰#H‹œ$€H‰$è1ÛH‰œ$°H‰œ$¸H‰œ$ÀH‰œ$ÈH‹œ$ˆ1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(	èH‹œ$ˆH‰$HÇD$ èH‹´$ˆHƒþ„–H‰çèH‹œ$H‰\$ H‹œ$˜H‰\$(H‹œ$ H‰\$0H‹œ$¨H‰\$8èH‹l$@H‹T$HH‹L$PH‹D$XH‰l$`H‰¬$°H‰T$hH‰”$¸H‰L$pH‰Œ$ÀH‰D$xH‰„$ÈèHĀÉécÿÿÿèésþÿÿÌÌÌ
€*runtime.racefuncenterð"go.string."image"˜*go.string."Rectangle"Â*go.string."Intersect"è"runtime.panicwrap *runtime.racereadrangeÔÈ
 runtime.duffcopyÆ,"".Rectangle.Intersectà(runtime.racefuncexitˆ0runtime.morestack_noctxt€"".autotmp_1080?"type."".Rectangle"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle €áÿ€ÿ
(?ÑTgclocals·4d8bed7e4976e3d095a9230e496231afTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).Union  dH‹%H;a†pHì€H‹Y H…ÛtH¼$ˆH9;uH‰#H‹œ$€H‰$è1ÛH‰œ$°H‰œ$¸H‰œ$ÀH‰œ$ÈH‹œ$ˆ1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$ˆH‰$HÇD$ èH‹´$ˆHƒþ„–H‰çèH‹œ$H‰\$ H‹œ$˜H‰\$(H‹œ$ H‰\$0H‹œ$¨H‰\$8èH‹l$@H‹T$HH‹L$PH‹D$XH‰l$`H‰¬$°H‰T$hH‰”$¸H‰L$pH‰Œ$ÀH‰D$xH‰„$ÈèHĀÉécÿÿÿèésþÿÿÌÌÌ
€*runtime.racefuncenterð"go.string."image"˜*go.string."Rectangle"Â"go.string."Union"è"runtime.panicwrap *runtime.racereadrangeÔÈ
 runtime.duffcopyÆ$"".Rectangle.Unionà(runtime.racefuncexitˆ0runtime.morestack_noctxt€"".autotmp_1081?"type."".Rectangle"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle €áÿ€ÿ
*?ÑTgclocals·4d8bed7e4976e3d095a9230e496231afTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).Empty  dH‹%H;a†äHƒìPH‹Y H…Ût
H|$XH9;uH‰#H‹\$PH‰$èH‹\$X1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$XH‰$HÇD$ èH‹\$XHƒûtEH‹3H‹SH‰T$8H‹KH‹CH‰D$HH‰t$0H‰L$@H9Î}H9D$`èHƒÄPÃHÇÀëé‰ë·èéÿþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter”"go.string."image"¼*go.string."Rectangle"æ"go.string."Empty"Œ"runtime.panicwrap¾*runtime.racereadrangeÂ(runtime.racefuncexitð0runtime.morestack_noctxt  "".r?"type."".Rectangle"".~r0type.bool""..this$type.*"".Rectangle  ÒŸ 
Ÿ,6ÚTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).EqààdH‹%H„$pÿÿÿH;A†¾HìH‹Y H…ÛtH¼$H9;uH‰#H‹œ$H‰$èH‹œ$1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$H‰$HÇD$ èH‹œ$Hƒû„L‹L‹CH‹{H‹sH‹¬$ H‹”$(H‹Œ$0H‹„$8L‰L$pL‰Œ$ÐL‰D$xL‰„$ØH‰¼$€H‰¼$àH‰´$ˆH‰´$èH‰l$0H‰¬$°H‰T$8H‰”$¸H‰L$@H‰Œ$ÀH‰D$HH‰„$ÈHœ$ÐH‰ØHœ$°H‰„$Hƒø„=H‰œ$Hƒû„$H‰œ$ðH‰„$øH‰$èH‹œ$ðH‰$èH‹„$øH‹L‹„$ðI‹(H9ë…ÔH‰$Hƒ$èH‹œ$ðH‰$Hƒ$èH‹¬$øH‹]L‹„$ðI‹hH9ë”À<„ƒH‹„$Hƒø„jH‹Œ$HƒÀHƒù„MHƒÁH‰Œ$øH‰„$ðH‰$èH‹œ$øH‰$èH‹„$ðH‹L‹„$øI‹(H9ë…ùH‰$Hƒ$èH‹œ$øH‰$Hƒ$èH‹¬$ðH‹]L‹„$øI‹hH9ë”À<…¦H‹\$pH‹T$xH‰T$XH‹Œ$€H‹„$ˆH‰D$hH‰\$PH‰L$`H9Ë}jH9À<t\H‹\$0H‹T$8H‰”$˜H‹L$@H‹D$HH‰„$¨H‰œ$H‰Œ$ H9Ë}H9„$@èHÄÃHÇÀëã1ÀëßHÇÀë“HÇÀëÍ1ÀéBÿÿÿ‰é¬þÿÿ‰éþÿÿ1Àé-ÿÿÿ1Àégþÿÿ‰éÕýÿÿ‰é¼ýÿÿ‰éóüÿÿèéüÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ"
*runtime.racefuncenter¼"go.string."image"ä*go.string."Rectangle"Žgo.string."Eq"´"runtime.panicwrapì*runtime.racereadrangeê runtime.racereadŒ runtime.racereadæ runtime.raceread’ runtime.racereadè	 runtime.racereadŠ
 runtime.racereadä
 runtime.raceread runtime.racereadì
(runtime.racefuncexit´0runtime.morestack_noctxt` """.autotmp_1093type.bool"".autotmp_1092type.bool"".autotmp_1091type.*"".Point"".autotmp_1090type.*"".Point"".autotmp_1089?type.*"".Point"".autotmp_1088/type.*"".Point"".autotmp_1087$type.*"".Rectangle"".autotmp_1086$type.*"".Rectangle"".autotmp_1084¿"type."".Rectangle"".autotmp_1083"type."".Rectangle"".rÿ"type."".Rectangle"".rÿ"type."".Rectangle"".s¿"type."".Rectangle"".r¿"type."".Rectangle"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle " ßŸ WŸð.ðGí¿‚{Tgclocals·adb3347b296419e60da36d67f8b7ce43Tgclocals·406991e81a5d6b9f25174854f4bda0b5<autogenerated>þ0"".(*Rectangle).Overlaps  dH‹%H;a†çHƒìHH‹Y H…Ût
H|$PH9;uH‰#H‹\$HH‰$èH‹\$P1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$PH‰$HÇD$ èH‹t$PHƒþtHH‰çèH‹\$XH‰\$ H‹\$`H‰\$(H‹\$hH‰\$0H‹\$pH‰\$8è¶\$@ˆ\$xèHƒÄHÉë´èéüþÿÿÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter”"go.string."image"¼*go.string."Rectangle"æ(go.string."Overlaps"Œ"runtime.panicwrap¾*runtime.racereadrangeäÈ
 runtime.duffcopy¾*"".Rectangle.OverlapsÚ(runtime.racefuncexitö0runtime.morestack_noctxt`"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle Þ06ÚTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).InÀÀdH‹%HD$ðH;A†wHìH‹Y H…ÛtH¼$˜H9;uH‰#H‹œ$H‰$èH‹œ$˜1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$˜H‰$HÇD$ èH‹œ$˜Hƒû„¿H‹;H‹sH‹SH‹KL‹¬$ L‰l$0L‹¤$¨L‰d$8L‹œ$°L‰\$@L‹”$¸L‰T$HH‰|$PH‰t$XH‰t$xH‰T$`H‰L$hH‰Œ$ˆH‰|$pH‰”$€H9×}@H9ΝÀ<tHÇÀˆ„$ÀèHĐÃI9ýL9Ú
I9ôL9ÑžÀëÕ1ÀëÑHÇÀ뽉é:ÿÿÿèégþÿÿÌÌÌÌÌÌÌ
Š*runtime.racefuncenter¶"go.string."image"Þ*go.string."Rectangle"ˆgo.string."In"®"runtime.panicwrapæ*runtime.racereadrange°(runtime.racefuncexit 0runtime.morestack_noctxt` "".autotmp_1098type.bool"".r?"type."".Rectangle"".s¿"type."".Rectangle"".r"type."".Rectangle"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle  ÄŸ +Ÿ 2 DÜTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*Rectangle).CanonÀÀdH‹%H;a†CHƒìpH‹Y H…Ût
H|$xH9;uH‰#H‹\$pH‰$è1ÛH‰œ$€H‰œ$ˆH‰œ$H‰œ$˜H‹\$x1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$xH‰$HÇD$ èH‹\$xHƒûtH‹3H‹SH‹KH‹C1ÛH9ñ}	H‰õH‰ÎH‰éH9Ð}	H‰ÕH‰ÂH‰èH‰t$PH‰T$XH‰L$`H‰D$hH‰t$0H‰´$€H‰T$8H‰”$ˆH‰L$@H‰Œ$H‰D$HH‰„$˜èHƒÄpÉézÿÿÿèé þÿÿ
n*runtime.racefuncenterØ"go.string."image"€*go.string."Rectangle"ª"go.string."Canon"Ð"runtime.panicwrap‚*runtime.racereadrangeŒ(runtime.racefuncexit®0runtime.morestack_noctxtPà
"".autotmp_1100type.int"".~r0"type."".Rectangle"".r?"type."".Rectangle"".~r0"type."".Rectangle""..this$type.*"".Rectangle à·ßàß
à4à6ªTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ$"".(*Rectangle).Atà	à	dH‹%HD$ØH;A†BHì¨H‹Y H…ÛtH¼$°H9;uH‰#H‹œ$¨H‰$è1ÛH‰œ$ÈH‰œ$ÐH‹œ$°1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹œ$°H‰$HÇD$ èH‹œ$°Hƒû„xL‹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МÀ<„„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H‰\$HH‰\$HÇD$ èH‹L$(H‹D$0H‰Œ$˜H‰„$ éwÿÿÿ1Àéÿÿÿ‰éþÿÿèéœýÿÿÌÌÌÌÌÌÌÌÌÌÌÌ&
Š*runtime.racefuncenterÚ"go.string."image"‚*go.string."Rectangle"¬go.string."At"Ò"runtime.panicwrapŠ*runtime.racereadrangeÞ0type.image/color.Alpha16ô,type.image/color.ColorŒZgo.itab.image/color.Alpha16.image/color.Color¤$image/color.OpaqueÊruntime.convT2IÈ(runtime.racefuncexitæ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_1103,type.image/color.Color"".autotmp_1102,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 ÐÐÏÐjÏð6ðDŸEHTgclocals·762ef64d066b6f51173413f25bf7cca5Tgclocals·64ca935d1a2110a30e2d604686188539<autogenerated>þ,"".(*Rectangle).Bounds  dH‹%H;a†$HƒìpH‹Y H…Ût
H|$xH9;uH‰#H‹\$pH‰$è1ÛH‰œ$€H‰œ$ˆH‰œ$H‰œ$˜H‹\$x1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(èH‹\$xH‰$HÇD$ èH‹\$xHƒûtcH‹3H‹SH‹KH‹C1ÛH‰t$PH‰T$XH‰L$`H‰D$hH‰t$0H‰´$€H‰T$8H‰”$ˆH‰L$@H‰Œ$H‰D$HH‰„$˜èHƒÄpÉë™èé¿þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenterØ"go.string."image"€*go.string."Rectangle"ª$go.string."Bounds"Ð"runtime.panicwrap‚*runtime.racereadrangeÔ(runtime.racefuncexitð0runtime.morestack_noctxtPà"".~r0"type."".Rectangle"".r?"type."".Rectangle"".~r0"type."".Rectangle""..this$type.*"".Rectangle à›ßàßÐ8Ð6šTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ4"".(*Rectangle).ColorModel€€dH‹%H;a†Hƒì`H‹Y H…Ût
H|$hH9;uH‰#H‹\$`H‰$è1ÛH‰\$pH‰\$xH‹\$h1íH9ëuEHH‰$HÇD$HH‰\$HÇD$	HH‰\$ HÇD$(
èH‹\$hH‰$HÇD$ èH‹\$hHƒûtkH‹+H‰l$0H‹kH‰l$8H‹kH‰l$@H‹kH‰l$H1ÛH‰\$PH‰\$XHH‰$èH‹
H‹H‰L$PH‰L$pH‰D$XH‰D$xèHƒÄ`Éë‘èéÍþÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenter¬"go.string."image"Ô*go.string."Rectangle"þ,go.string."ColorModel"¤"runtime.panicwrapÖ*runtime.racereadrangeØ0image/color.Alpha16Modelê runtime.racereadø0image/color.Alpha16Model†0image/color.Alpha16Model¸(runtime.racefuncexitÔ0runtime.morestack_noctxt0À"".~r0,type.image/color.Model"".r_"type."".Rectangle"".~r0,type.image/color.Model""..this$type.*"".Rectangle À¿À¿À:À6å%Tgclocals·cad14e25fd48dddd762418d02c031d67Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ(type..hash."".ConfigààdH‹%H;a†ŽHƒì H‹\$ H‰$èH‹\$(H‰$Hƒ<$tcH‹\$0H‰\$èH‹D$H‹\$(H‰$Hƒ<$t6Hƒ$H‰D$0H‰D$HÇD$èH‹D$H‰D$0H‰D$8èHƒÄ É%ëI%ë”èéUÿÿÿÌÌÌÌÌ
B*runtime.racefuncenter€"runtime.interhashäruntime.memhashŒ(runtime.racefuncexitÄ0runtime.morestack_noctxt0@"".autotmp_1105type.uintptr"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Config@w?@?°° Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6$GOROOT/src/image/format.goþ$type..eq."".Config  dH‹%H;a†fHƒìHH‹\$HH‰$èH‹\$XH‰$èH‹\$XHƒû„0H‹+H‰l$8H‹kH‰l$@H‹\$PH‰$èH‹T$8H‹\$PHƒû„öH‹H‹KH‰L$0H‰D$(H9Ð…ÍH‰$H‰L$H‰T$H‹l$@H‰l$è¶\$ €û„¢H‹\$PH‰$Hƒ$èH‹\$XH‰$Hƒ$èH‹D$PH‹XL‹D$XI‹hH9ëtÆD$`èHƒÄHÃH‰$Hƒ$èH‹\$XH‰$Hƒ$èH‹l$PH‹]L‹D$XI‹hH9ëtÆD$`èHƒÄHÃÆD$`èHƒÄHÃÆD$`èHƒÄHÉéÿÿÿ‰éÉþÿÿèé}þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
B*runtime.racefuncenter^ runtime.racereadº runtime.racereadÐruntime.ifaceeq’ runtime.raceread¸ runtime.racereadú(runtime.racefuncexit  runtime.racereadÆ runtime.racereadˆ(runtime.racefuncexit¦(runtime.racefuncexitÄ(runtime.racefuncexitô0runtime.morestack_noctxt0
"".autotmp_1107?,type.image/color.Model"".autotmp_1106,type.image/color.Model"".~r2 type.bool"".qtype.*"".Config"".ptype.*"".ConfigDîF <KéTgclocals·51af24152615272c3d9efc8538f95767Tgclocals·2c78d3ad9d760b5f66e2e47be684c7876$GOROOT/src/image/format.goþ"".reader.Peek€€dH‹%H;a†ÖHƒì`H‹Y H…Ût
H|$hH9;uH‰#H‹\$`H‰$è1ÛH‰œ$€H‰œ$ˆH‰œ$1ÛH‰œ$˜H‰œ$ H‹\$xH‰\$H‹\$pH‰$H‹\$hH‹[ ÿÓH‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$HH‰´$€H‰l$PH‰¬$ˆH‰T$XH‰”$H‰L$8H‰Œ$˜H‰D$@H‰„$ èHƒÄ`Ãèé
ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenter†À(runtime.racefuncexitÔ0runtime.morestack_noctxt€À"".autotmp_1109Otype.error"".autotmp_1108/type.[]uint8"".~r2`type.error"".~r10type.[]uint8""..anon0 type.int""..thistype."".readerÀÑ¿€<€6©!Tgclocals·dbd89ae4a4266b5bfeafd78285762b2aTgclocals·98a935522f11e180b06d5a082b7d09c1<autogenerated>þ"".reader.Read  dH‹%H;a†¦HƒìHH‹Y H…Ût
H|$PH9;uH‰#H‹\$HH‰$è1Û1ÛH‰œ$€H‰œ$ˆH‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$H‹\$XH‰$H‹\$PH‹[(ÿÓH‹D$ H‹T$(H‹L$0H‰D$xH‰T$8H‰”$€H‰L$@H‰Œ$ˆèHƒÄHÃèé=ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenterþà(runtime.racefuncexitô0runtime.morestack_noctxt€
"".autotmp_1113type.errorio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".reader¡Ð>Ð6y!Tgclocals·d2fd9951e910becfd07ba7f8ff7b525aTgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ@"".(*YCbCrSubsampleRatio).StringààdH‹%H;a†ÌHƒì@H‹Y H…Ût
H|$HH9;uH‰#H‹\$@H‰$è1ÛH‰\$PH‰\$XH‹\$H1íH9ëuEHH‰$HÇD$HH‰\$HÇD$HH‰\$ HÇD$(èH‹\$HH‰$èH‹\$HH‹+H‰,$èH‹L$H‹D$H‰L$0H‰L$PH‰D$8H‰D$XèHƒÄ@ÃèéÿÿÿÌÌÌÌÌÌÌ
n*runtime.racefuncenter¬"go.string."image"Ô>go.string."YCbCrSubsampleRatio"þ$go.string."String"¤"runtime.panicwrapÄ runtime.racereadæ:"".YCbCrSubsampleRatio.String¬(runtime.racefuncexitÀ0runtime.morestack_noctxt0€"".autotmp_1116type.string"".~r0type.string""..this8type.*"".YCbCrSubsampleRatio€Çð@ð6ŸTgclocals·69076ee43f1cead0792b9f36906b1b56Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ("".(*NYCbCrA).Bounds€€dH‹%H;a†×Hƒì8H‹Y H…Ût
H|$@H9;uH‰#H‹\$8H‰$è1ÛH‰\$HH‰\$PH‰\$XH‰\$`H‹D$@Hƒø„ƒ1ÛH‰\$H‰\$H‰\$ H‰\$(H‰D$0H‰$Hƒ$`HÇD$ èH‹\$0HƒûtBH‹s`H‹ShH‹KpH‹kxH‰t$H‰t$HH‰T$H‰T$PH‰L$ H‰L$XH‰l$(H‰l$`èHƒÄ8É뺉évÿÿÿèéÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenterœ*runtime.racereadrange¬(runtime.racefuncexitÖ0runtime.morestack_noctxtPp"".~r0O"type."".Rectangle"".ptype.*"".YCbCr"".~r0"type."".Rectangle""..this type.*"".NYCbCrApÇopo€B€6WH+Tgclocals·3260b5c802f633fd6252c227878dd72aTgclocals·0c8aa8e80191a30eac23f1a218103f16<autogenerated>þ*"".(*NYCbCrA).YCbCrAt€€dH‹%H;a†ŸHƒì(H‹Y H…Ût
H|$0H9;uH‰#H‹\$(H‰$è1ۈ\$Hˆ\$Iˆ\$JH‹\$0H‰$Hƒ<$tPH‹\$8H‰\$H‹\$@H‰\$è¶\$H‰Ú¶\$H‰Ù¶\$ˆT$%ˆT$HˆL$&ˆL$Iˆ\$'ˆ\$JèHƒÄ(É%ë§èéDÿÿÿÌÌÌÌ

n*runtime.racefuncenterÜ&"".(*YCbCr).YCbCrAtÀ(runtime.racefuncexitæ0runtime.morestack_noctxt@P
"".autotmp_1117,type.image/color.YCbCr"".~r20,type.image/color.YCbCr"".y type.int"".xtype.int""..this type.*"".NYCbCrAP‘OP	OÀDÀ6ŠTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ*"".(*NYCbCrA).YOffsetààdH‹%H;a†ÊHƒì H‹Y H…Ût
H|$(H9;uH‰#H‹\$ H‰$èH‹D$(Hƒø„ŒH‹\$0H‰\$H‹\$8H‰\$H‰D$H‰$Hƒ$`Hƒ$èH‹\$H‰$Hƒ$HèH‹\$H‰$Hƒ$`èH‹D$H‹XhH‹l$H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$@èHƒÄ ÉémÿÿÿèéÿÿÿÌÌÌÌÌÌÌÌÌ
n*runtime.racefuncenterä runtime.racereadŠ runtime.raceread° runtime.racereadš(runtime.racefuncexit¼0runtime.morestack_noctxt@@"".y/type.int"".xtype.int"".ptype.*"".YCbCr"".~r20type.int"".y type.int"".xtype.int""..this type.*"".NYCbCrA@¾?@?ðFð6;[$Tgclocals·f47057354ec566066f8688a4970cff5aTgclocals·0c8aa8e80191a30eac23f1a218103f16<autogenerated>þ*"".(*NYCbCrA).COffset  dH‹%H;avnHƒì H‹Y H…Ût
H|$(H9;uH‰#H‹\$ H‰$èH‹\$(H‰$Hƒ<$t-H‹\$0H‰\$H‹\$8H‰\$èH‹\$H‰\$@èHƒÄ É%ëÊèéyÿÿÿÌÌÌÌÌÌÌÌÌ

f*runtime.racefuncenter¸&"".(*YCbCr).COffsetÖ(runtime.racefuncexitü0runtime.morestack_noctxt@@"".~r20type.int"".y type.int"".xtype.int""..this type.*"".NYCbCrA@`?@	?H
2^Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ&"".PalettedImage.AtààdH‹%H;a†„Hƒì8H‹Y H…Ût
H|$@H9;uH‰#H‹\$8H‰$è1ÛH‰\$`H‰\$hH‹\$PH‰\$H‹\$XH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹L$H‹D$ H‰L$(H‰L$`H‰D$0H‰D$hèHƒÄ8Ãèé_ÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenterÚœ(runtime.racefuncexit°0runtime.morestack_noctxt`p
"".autotmp_1120,type.image/color.Color"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..this*type."".PalettedImagepo°J°6W#Tgclocals·b6338434a483b71ecf7a1963213f75e2Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þ."".PalettedImage.Bounds€€dH‹%H;a†˜HƒìHH‹Y H…Ût
H|$PH9;uH‰#H‹\$HH‰$è1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‹\$XH‰$H‹\$PH‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$(H‰l$`H‰T$0H‰T$hH‰L$8H‰L$pH‰D$@H‰D$xèHƒÄHÃèéKÿÿÿÌÌÌÌÌÌÌÌÌÌÌ

n*runtime.racefuncenterÆÄ(runtime.racefuncexitØ0runtime.morestack_noctxt`"".autotmp_1121?"type."".Rectangle"".~r0 "type."".Rectangle""..this*type."".PalettedImage“ÀLÀ6ŠTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ:"".PalettedImage.ColorIndexAt€€dH‹%H;avcHƒì H‹Y H…Ût
H|$(H9;uH‰#H‹\$ H‰$èH‹\$8H‰\$H‹\$@H‰\$H‹\$0H‰$H‹\$(H‹[0ÿÓ¶\$ˆ\$HèHƒÄ Ãèë‡ÌÌÌÌÌÌÌ

f*runtime.racefuncenterºÒ(runtime.racefuncexitæ0runtime.morestack_noctxtP@"".~r2@type.uint8"".y0type.int"".x type.int""..this*type."".PalettedImage@^?€N€
2NTgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cb<autogenerated>þ6"".PalettedImage.ColorModel  dH‹%H;avpHƒì(H‹Y H…Ût
H|$0H9;uH‰#H‹\$(H‰$è1ÛH‰\$@H‰\$HH‹\$8H‰$H‹\$0H‹[8ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$HèHƒÄ(ÃèéwÿÿÿÌÌÌÌÌÌÌ

f*runtime.racefuncenterªì(runtime.racefuncexit€0runtime.morestack_noctxt@P"".autotmp_1123,type.image/color.Model"".~r0 ,type.image/color.Model""..this*type."".PalettedImagePkOP2CTgclocals·19b49d53e9c11805652fa4c0885cbb29Tgclocals·c55cf99de9cdd8c8202a466952fa1a45<autogenerated>þTgclocals·219d8d154da9b833882f5372d7b1af9900	¨©þTgclocals·61b167ad47cde17c5a09bf89f76e51ad005555þ>>go.itab.*bufio.Reader."".readerþTgclocals·0318f4fe3c9ebb20c9b242b602ec92a7``
`dþTgclocals·68c9fa00f2dd3a035f977db2d5190cf0``
þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·9ba22629e9611c66625b3db4800944b7  þTgclocals·c29a587d9b6ca82553d1d08ff007a77800jþTgclocals·f62a41cb78c03c15bed464e78226a13000×þTgclocals·89dd7cd510c646dd78bd230190fb8a36ÐÐ/€€€€@
þTgclocals·01125e2a5c0350eb923f65fb084fb0beppßþTgclocals·3f96fc659bf6a949de7b329a27509890àà
5†€€€€dPþTgclocals·404bd706b395d652fac0e702c80086b6xx

Oþ"go.string.hdr."("  go.string."("þgo.string."("(þ"go.string.hdr.","  go.string.","þgo.string.",",þ"go.string.hdr.")"  go.string.")"þgo.string.")")þTgclocals·4839c181b903023c3ae99be60aaf4271((þTgclocals·124a21249e8861ddbb76c8b0b45d3971((þ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·21a8f585a14d020f181242c5256583dc  þTgclocals·98a935522f11e180b06d5a082b7d09c1  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440þ"go.string.hdr."-"  go.string."-"þgo.string."-"-þTgclocals·4839c181b903023c3ae99be60aaf4271((þTgclocals·b2f74c392de0ed28f7e906de7ba4bab4((þ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·406991e81a5d6b9f25174854f4bda0b5((þTgclocals·bb62ddeba3b841c3b8407d8da49fbc51((	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þ>Zgo.itab.image/color.Alpha16.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·aa63f3db2ec75827f6605d10a5453148  ÀþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·8c067d5052c60a71dd2787c367bb278b  0þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·895d0569a38a56443b84805daa09d838þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Tgo.itab.image/color.RGBA.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>2go.itab.*"".RGBA."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Xgo.itab.image/color.RGBA64.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>6go.itab.*"".RGBA64."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Vgo.itab.image/color.NRGBA.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>4go.itab.*"".NRGBA."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Zgo.itab.image/color.NRGBA64.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>8go.itab.*"".NRGBA64."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Vgo.itab.image/color.Alpha.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>4go.itab.*"".Alpha."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>8go.itab.*"".Alpha16."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·790e5cc5051fc0affc980ade09e929ecþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Tgo.itab.image/color.Gray.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>2go.itab.*"".Gray."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Xgo.itab.image/color.Gray16.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>6go.itab.*"".Gray16."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Tgo.itab.image/color.CMYK.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·524aafe7d1228e5424d64f5d94771fbf  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>2go.itab.*"".CMYK."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·8c4115247b3638c79e08e0e295c9b37888þ>Zgo.itab.image/color.Palette.image/color.ModelþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·f7103403aec01e4990bdf6681d1baac8((þTgclocals·9bafea7b2a19e2cc3d593c51cce7c661((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·1b19623ccfd3351b9464338f230e8b94  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þ>:go.itab.*"".Paletted."".ImageþTgclocals·6303a5fef1b34377e043c222d45020fc@@þTgclocals·beaeb9c48e230c42df709f19dd51c03b@@aþTgclocals·12b8aeecac339c1231ec601931927feb((þTgclocals·f7309186bf9eeb0f8ece2eb16f2dc110((þTgclocals·85b708e0eb749713cb73a30a27c2999c88þTgclocals·258ffe3b59f2d561d15d8bf865a4378588þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2þ>Jgo.itab.*"".Uniform.image/color.ModelþTgclocals·f891aedf0f80c97cb1c7cc75a7fd6349((þTgclocals·27f94a2fe0ff5b305b2385471201b6d7((þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·b9e2f210c3a206b5352d33144c6a1618  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·23e8278e2b69a3a75fa59b23c49ed6adþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·f891aedf0f80c97cb1c7cc75a7fd6349((þTgclocals·fb59fd9ce9376dfcd2105aa0993acf24((þ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·69c1753bd5f81501d95132d08af04464þTgclocals·bcdfbcd04eb70526d9504e97d9ef703d  þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·89fe65749ce0afc971c0982226501ff0þ>Vgo.itab.image/color.YCbCr.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·83ead081cd909acab0dcd88a450c1878  þTgclocals·f47057354ec566066f8688a4970cff5a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>4go.itab.*"".YCbCr."".ImageþTgclocals·c18700852ad91ab4d108572c607cfe30``
 $&&þTgclocals·7c5c95b88edaaa4fc9b93df09fd4a209``
aþTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·3f5c1f818fa7055d0400cecd34057162þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1	þTgclocals·1aecd0363e705c5bd33e230135d399c2HH
‘‘þTgclocals·9bee0e0ddef505094e228c547e28a753HH þTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·cad14e25fd48dddd762418d02c031d67  þ>Zgo.itab.image/color.NYCbCrA.image/color.ColorþTgclocals·69c1753bd5f81501d95132d08af04464þTgclocals·762ef64d066b6f51173413f25bf7cca5  þTgclocals·6013db99caf2bb60e55bc0c016a4e7e9((þTgclocals·55cc6ee7528f0b48e5a6d9bfba36524a((þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þ>8go.itab.*"".NYCbCrA."".ImageþTgclocals·0df432756ef1f86b7d3ebc02e5f9447fxx
@HLLLþTgclocals·bebb5bbe51c03abf31041684303d3f40xx
aþTgclocals·1e95b73271997518524fc42f69ee4ca2  þTgclocals·32bd5c6dc84e3e86dd35593b3922d3aa  þTgclocals·4b2a4b9f6c2e9059084168826854d661PP$‘$‘‘þTgclocals·ce3a77be2dd12da6449e296501a83f8fPP þJgo.string.hdr."image: unknown format"  Bgo.string."image: unknown format"þBgo.string."image: unknown format"0,image: unknown formatþTgclocals·6910e19bd0d31b4222b21d8d53042f42((þTgclocals·7d2d5fca80364273fb07d5820a76fef4þ<"".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·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·b6338434a483b71ecf7a1963213f75e2  3þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·d98f60bd8519d0c68364b2a1d83af357þTgclocals·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·19b49d53e9c11805652fa4c0885cbb29  þ"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·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·69076ee43f1cead0792b9f36906b1b56  þ&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·21a8f585a14d020f181242c5256583dc  þTgclocals·f47057354ec566066f8688a4970cff5a  þ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·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·69076ee43f1cead0792b9f36906b1b56  þ$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·406991e81a5d6b9f25174854f4bda0b5((þTgclocals·adb3347b296419e60da36d67f8b7ce43((þ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·64ca935d1a2110a30e2d604686188539  þTgclocals·762ef64d066b6f51173413f25bf7cca5  þ,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·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·cad14e25fd48dddd762418d02c031d67  þ†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·2c78d3ad9d760b5f66e2e47be684c787  þTgclocals·51af24152615272c3d9efc8538f95767  þ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·98a935522f11e180b06d5a082b7d09c1  þTgclocals·dbd89ae4a4266b5bfeafd78285762b2a  ËþTgclocals·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·d2fd9951e910becfd07ba7f8ff7b525a  Çþ.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·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·69076ee43f1cead0792b9f36906b1b56  þ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·0c8aa8e80191a30eac23f1a218103f16  þTgclocals·3260b5c802f633fd6252c227878dd72a  þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·2fccd208efe70893f9ac8d682812ae72þTgclocals·0c8aa8e80191a30eac23f1a218103f16  þTgclocals·f47057354ec566066f8688a4970cff5a  þ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·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·b6338434a483b71ecf7a1963213f75e2  3þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·d98f60bd8519d0c68364b2a1d83af357þTgclocals·33cdeccccebe80329f1fdbee7f5874cbþTgclocals·1347047f6245a35b91e9a4f213167d52þTgclocals·c55cf99de9cdd8c8202a466952fa1a45  þTgclocals·19b49d53e9c11805652fa4c0885cbb29  þ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