blob: 1f128b66381556ab690894fad711d9533aead91f [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 27955 `
go object windows amd64 go1.5.1 X:none
build id "47c97a375452f0a894bb10d44c3bd97fd9691e9c"
$$
package image
import runtime "runtime"
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 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 << 0x8; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << 0x8; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << 0x8; @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 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) * 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, 0x4 * @"".w·3 * @"".h·4); return (&@"".RGBA{ Pix:@"".buf·5, Stride: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) * 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, 0x8 * @"".w·3 * @"".h·4); return (&@"".RGBA64{ Pix:@"".pix·5, Stride: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 << 0x8; @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= 0xff; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << 0x8; @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= 0xff; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << 0x8; @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= 0xff; @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 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) * 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, 0x4 * @"".w·3 * @"".h·4); return (&@"".NRGBA{ Pix:@"".pix·5, Stride: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 /= 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 /= 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 /= 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) * 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, 0x8 * @"".w·3 * @"".h·4); return (&@"".NRGBA64{ Pix:@"".pix·5, Stride: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 << 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) * 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, 0x1 * @"".w·3 * @"".h·4); return (&@"".Alpha{ Pix:@"".pix·5, Stride: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) * 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, 0x2 * @"".w·3 * @"".h·4); return (&@"".Alpha16{ Pix:@"".pix·5, Stride: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 << 0x8; return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, 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 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) * 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, 0x1 * @"".w·3 * @"".h·4); return (&@"".Gray{ Pix:@"".pix·5, Stride: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, 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 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) * 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, 0x2 * @"".w·3 * @"".h·4); return (&@"".Gray16{ Pix:@"".pix·5, Stride: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(0xffff - uint32(@"image/color".c·5.K) * 0x101); var @"image/color".r·7 uint32; ; @"image/color".r·7 = uint32(0xffff - uint32(@"image/color".c·5.C) * 0x101) * @"image/color".w·6 / 0xffff; var @"image/color".g·8 uint32; ; @"image/color".g·8 = uint32(0xffff - uint32(@"image/color".c·5.M) * 0x101) * @"image/color".w·6 / 0xffff; var @"image/color".b·9 uint32; ; @"image/color".b·9 = uint32(0xffff - uint32(@"image/color".c·5.Y) * 0x101) * @"image/color".w·6 / 0xffff; return uint32(@"image/color".r·7), uint32(@"image/color".g·8), uint32(@"image/color".b·9), 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 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) * 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, 0x4 * @"".w·3 * @"".h·4); return (&@"".CMYK{ Pix:@"".buf·5, Stride: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) * 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, 0x1 * @"".w·4 * @"".h·5); return (&@"".Paletted{ Pix:@"".pix·6, Stride: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:-0x3b9aca00, Y:-0x3b9aca00 }), Max:(@"".Point{ X:0x3b9aca00, Y: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 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)
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
$$
�_go_.o 0 0 0 644 434796 `
go object windows amd64 go1.5.1 X:none
!
��go13ldbufio.aerrors.aio.aimage/color.astrconv.a�þ""".RegisterFormat��€��üeH‹ %(���H‹‰����H;a†Z��Hì€���1ÛH‰\$PH‰\$XH‰\$`H‰\$hH‰\$pH‰\$xH‹œ$ˆ���H‰\$PH‹œ$���H‰\$XH‹œ$˜���H‰\$`H‹œ$ ���H‰\$hH‹œ$¨���H‰\$pH‹œ$°���H‰\$xH‹����H‹����H‹ ����H‰ÃHÿÃH9Ëw;H‰����H‰ÓH‰ÅHkí0HëHl$PH‰\$H‰l$H-����H‰,$è����HÄ€���ÃH-����H‰,$H‰T$H‰D$H‰L$H‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃH‰D$@HÿÃH‰����H‰ ����H‰T$H€=�����u H‰����éfÿÿÿH-����H‰,$H‰T$è����H‹T$HH‹D$@éBÿÿÿè����é‚þÿÿ ������¤��"".formats���²�"".formats���À �"".formats���ä�"".formats���ª��type."".format���¼
��(runtime.typedmemmove���Ú�� type.[]"".format���”
��"runtime.growslice���Ö�"".formats���ä �"".formats���ú�6runtime.writeBarrierEnabled���Ž��"".formats���¦��"".formats���Â
��.runtime.writebarrierptr���ê
��0runtime.morestack_noctxt���`€��
"".autotmp_0000�_type."".format�"".decodeConfig�PNtype.func(io.Reader) ("".Config, error)�"".decode�@Ltype.func(io.Reader) ("".Image, error)�"".magic� type.string�"".name��type.string�!€Èÿ€–�€�B!ÁŠ ��Ý,W �Tgclocals·ac96ed3958d5792ac369a1dc2bfe9382�Tgclocals·5bcb5afcb5617f15eb2d0b279323d878���Tprebuilts/go/linux-x86/src/image/format.goþ"".asReader��€ ��è
eH‹ %(���H‹‰����H„$pÿÿÿH;A†ˆ��Hì��1ÛH‰œ$(��H‰œ$0��1ÛH‰œ$���H‰œ$˜���H����H‰$H‹œ$��H‰\$H‹œ$ ��H‰\$Hœ$���H‰\$è����¶\$ H‹”$���H‰T$`H‹Œ$˜���H‰L$h€û�tH‰”$(��H‰Œ$0��HÄ��ÃH‹œ$��H‹„$ ��H‰\$pH‰D$xH‰„$ˆ���HÇÂ���H‰œ$€���1íH9ëtH‹[H-����H9ë…•��HÇÁ���€ù�thH‹XH9Ó|_H‰D$HH‹����1íH9ètH‹\$HH‰œ$0��H‰„$(��HÄ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë´H‰T$0Hƒú} HÇD$0���H����H‰$è����H‹L$0H‹D$H‰D$8H‰D$@H����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$€���H‹Œ$ˆ���H¼$¸���1ÀHƒÇøè����L‰„$ ���L‰„$¸���H‰´$¨���H‰´$À���H‰¬$°���H‰¬$È���H‰T$PH‰”$Ð���H‰L$XH‰Œ$Ø���HDŽ$���ÿÿÿÿHDŽ$��ÿÿÿÿH‹\$@Hƒû�t,H¬$¸���H‰\$H‰l$H-����H‰,$è����H‹D$8é„þÿÿ‰ëÐ1À1Ééiþÿÿè����éLýÿÿ"������ ��type."".reader���€
��$runtime.assertI2I2���þ��$type.*bufio.Reader���Ò��>go.itab.*bufio.Reader."".reader���¨��$type.*bufio.Reader���¾��type."".reader���Ö��>go.itab.*bufio.Reader."".reader���ê
�� runtime.typ2Itab���®��"type.bufio.Reader���À
��"runtime.newobject���ö��type.[]uint8���œ
��"runtime.makeslice���€
Ô� runtime.duffzero���Œ
��"type.bufio.Reader���ž

��(runtime.typedmemmove���Ö

��0runtime.morestack_noctxt���@ ��"".autotmp_0010��$type.*bufio.Reader�"".autotmp_0009��$type.*bufio.Reader�"".autotmp_0008�¯"type.bufio.Reader�"".autotmp_0005�$type.*bufio.Reader�"".autotmp_0004�ÿtype."".reader�bufio.r·3�ÿtype.io.Reader�bufio.buf·2�ßtype.[]uint8�bufio.b·1�Ÿ$type.*bufio.Reader�bufio.r·6�¯$type.*bufio.Reader�bufio.size·3�¿type.int�bufio.rd·2�Ÿtype.io.Reader�bufio.rd·2�¿type.io.Reader�
"".rr�ßtype."".reader� "".~r1� type."".reader�"".r��type.io.Reader�*) –Ÿ Ÿ ï�À� X;mŽ\[D��õ+.Á2�Tgclocals·a68b09a48716afad7ca7a02fe6add474�Tgclocals·dd9a4d2009c4ac75e28d1a37bbe5075e���Tprebuilts/go/linux-x86/src/image/format.goþ"".match��À��°eH‹ %(���H‹‰����H;avxH‹t$ L‹L$H‹|$H9÷tÆD$0�ÃH‹L$H‹\$(1ÀI‰òL9Ð}6¶)H9øs;I¶@8ëtH9øs#I¶€û?tÆD$0�ÃHÿÁHÿÀL9Ð|ÊÆD$0Ãè���� è���� è����éhÿÿÿ������‚
��$runtime.panicindex���
��$runtime.panicindex���ž
��0runtime.morestack_noctxt���`���
"".autotmp_0017��type.int�"".autotmp_0016��type.int� "".~r2�Ptype.bool�"".b� type.[]uint8�"".magic��type.string� � �*h%"
 � �€ �Tgclocals·b4c25e9b09fd0cf9bb429dcefe91c353�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Tprebuilts/go/linux-x86/src/image/format.goþ"".sniff�� 
�� 
eH‹ %(���H‹‰����HD$H;A†g��Hìð���1ÛH‰œ$��H‰œ$��H‰œ$��H‰œ$ ��H‰œ$(��H‰œ$0��H‹����H‹����H‹����H‰œ$ˆ���1ÉH‰„$€���H‰D$8H‰T$xH‰ÐH‹l$8H9鍫��H‰D$HHƒø�„Ö��L‹L‹@H‹xH‹pH‹P H‹h(H‰L$@L‰Œ$À���L‰Œ$���L‰„$È���L‰„$˜���H‰¼$Ð���H‰¼$ ���H‰´$Ø���H‰´$¨���H‰”$à���H‰”$°���H‰¬$è���H‰¬$¸���H‹œ$¨���H‰\$H‹œ$���H‰$H‹œ$ø���H‹[ ÿÓL‹D$L‰D$`H‹l$H‰l$hH‹T$ H‰T$pH‹D$(H‹\$0H‰\$XH‰D$PHƒø�…ž���Hœ$ ���H‹ H‰ $H‹KH‰L$L‰D$H‰l$H‰T$ è����¶\$(€û�thH‹œ$���H‰œ$��H‹œ$˜���H‰œ$��H‹œ$ ���H‰œ$��H‹œ$¨���H‰œ$ ��H‹œ$°���H‰œ$(��H‹œ$¸���H‰œ$0��HÄð���ÃH‹D$HH‹L$@HƒÀ0HÿÁH‹l$8H9éŒUþÿÿ1öH‰´$��H‰´$��H‰´$��H‰´$ ��H‰´$(��H‰´$0��HÄð���É�é#þÿÿè����épýÿÿ������¶��"".formats���Ä�"".formats���Ò �"".formats���”�������à
��"".match���Ž

��0runtime.morestack_noctxt���€à��"".autotmp_0027��type."".format�"".autotmp_0026�_type."".format�"".autotmp_0025�Ïtype.*"".format�"".autotmp_0024�ïtype.int�"".autotmp_0023�ßtype.int�"".autotmp_0020�ï type.[]"".format� "".err�¿type.error�"".b�Ÿtype.[]uint8�"".f�¿type."".format� "".~r1� type."".format�"".r��type."".reader�&&àÿßàXßà��*‚XÍTEh : 
��ÊÆ�Tgclocals·99ef9ff0bd07d0e619cc0988c2dabb63�Tgclocals·d82314ad8b4d0d463ee994662aedec13���Tprebuilts/go/linux-x86/src/image/format.goþ"".Decode��à��ÂeH‹ %(���H‹‰����H„$ðþÿÿH;A†5��Hì��1ÛH‰œ$¨��H‰œ$°��1ÛH‰œ$¸��H‰œ$À��1ÛH‰œ$È��H‰œ$Ð��H‹Œ$˜��H‹„$ ��1ÛH‰\$`H‰\$h1ÛH‰œ$à���H‰œ$è���H����H‰$H‰Œ$À���H‰L$H‰„$È���H‰D$Hœ$à���H‰\$è����¶\$ H‹Œ$à���H‰Œ$€���H‹”$è���H‰”$ˆ���€û�„r��H‰ÐH‰L$`H‰D$hH‰Œ$���H‰ $H‰„$˜���H‰D$è����H‹\$H‰œ$��H‹\$H‰œ$��H‹\$ H‰œ$��H‹\$(H‰œ$ ��H‹D$0H‹\$8H‰œ$0��H‰„$(��1íH9èuJ1ÛH‰œ$¨��H‰œ$°��1ÛH‰œ$¸��H‰œ$À��H‹����H‰œ$È��H‹����H‰œ$Ð��HÄ��ÃH����H‰$H‹œ$���H‰\$H‹œ$˜���H‰\$è����H\$H‹ H‰ $H‹KH‰L$H‹”$(��H‹ÿÓH‹l$H‹T$H‹L$ H‹D$(H‰¬$¨��H‰”$°��H‹œ$��H‰œ$¸��H‹œ$��H‰œ$À��H‰Œ$È��H‰„$Ð��HÄ��ÃH‹œ$À���H‹„$È���H‰œ$ ���H‰„$¨���H‰„$¸���HÇÂ���H‰œ$°���1íH9ëtH‹[H-����H9ë…˜��HÇÁ���€ù�tkH‹XH9Ó|bH‰D$XH‹����1íH9èt H‹T$XH‰„$Ð���H‰ÁH‰”$Ø���H‰Ðé÷ýÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±H‰T$@Hƒú} HÇD$@���H����H‰$è����H‹L$@H‹D$H‰D$HH‰D$PH����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$°���H‹Œ$¸���H¼$8��1ÀHƒÇøè����L‰„$ð���L‰„$8��H‰´$ø���H‰´$@��H‰¬$���H‰¬$H��H‰T$pH‰”$P��H‰L$xH‰Œ$X��HDŽ$€��ÿÿÿÿHDŽ$ˆ��ÿÿÿÿH‹\$PHƒû�t,H¬$8��H‰\$H‰l$H-����H‰,$è����H‹D$Héþÿÿ‰ëÐ1À1Ééfþÿÿè����éŸûÿÿ.������ ��type."".reader���€
��$runtime.assertI2I2���²
��"".sniff���²��"".ErrFormat���Ð�"".ErrFormat���þ��type.io.Reader���Ä
��runtime.convI2I���Œ�������Ò
��$type.*bufio.Reader���¦ ��>go.itab.*bufio.Reader."".reader���‚ ��$type.*bufio.Reader���˜ ��type."".reader���° ��>go.itab.*bufio.Reader."".reader���Ä 
�� runtime.typ2Itab���ˆ ��"type.bufio.Reader���š 
��"runtime.newobject���Ð ��type.[]uint8���ö 
��"runtime.makeslice���Ú
Ô� runtime.duffzero���æ��"type.bufio.Reader���ø
��(runtime.typedmemmove���°
��0runtime.morestack_noctxt���€ ��,"".autotmp_0035�ÿtype."".reader�"".autotmp_0034��$type.*bufio.Reader�"".autotmp_0033��$type.*bufio.Reader�"".autotmp_0032�¯"type.bufio.Reader�"".autotmp_0029�ï$type.*bufio.Reader�"".autotmp_0028�ßtype."".reader�bufio.r·3�¿type.io.Reader�bufio.buf·2�¿type.[]uint8�bufio.b·1�ÿ$type.*bufio.Reader�bufio.r·6�$type.*bufio.Reader�bufio.size·3�Ÿtype.int�bufio.rd·2�¿type.io.Reader�bufio.rd·2�ßtype.io.Reader� "".~r1�ßtype."".reader�
"".rr�Ÿtype."".reader�"".r�Ÿtype.io.Reader�"".f�type."".format�
"".rr�ÿtype."".reader� "".~r3�`type.error� "".~r2�@type.string� "".~r1� type."".Image�"".r��type.io.Reader�*) ’Ÿ §Ÿ Œ�ð�4ž_ dJ`H —D�*�¿Y
ÉÀ+.Á5�Tgclocals·693e8a411a45da74e76c619c62a5bb87�Tgclocals·a09af47d95804d1a0febde7c2c7293b6���Tprebuilts/go/linux-x86/src/image/format.goþ"".DecodeConfig��À��¶eH‹ %(���H‹‰����H„$ðþÿÿH;A†o��Hì��1ÛH‰œ$¨��H‰œ$°��H‰œ$¸��H‰œ$À��1ÛH‰œ$È��H‰œ$Ð��1ÛH‰œ$Ø��H‰œ$à��H‹Œ$˜��H‹„$ ��1ÛH‰\$`H‰\$h1ÛH‰œ$à���H‰œ$è���H����H‰$H‰Œ$À���H‰L$H‰„$È���H‰D$Hœ$à���H‰\$è����¶\$ H‹Œ$à���H‰Œ$€���H‹”$è���H‰”$ˆ���€û�„œ��H‰ÐH‰L$`H‰D$hH‰Œ$���H‰ $H‰„$˜���H‰D$è����H‹\$H‰œ$��H‹\$H‰œ$��H‹\$ H‰œ$��H‹\$(H‰œ$ ��H‹\$0H‰œ$(��H‹D$8H‰„$0��1íH9èuZ1ÒH‰”$¨��H‰”$°��H‰”$¸��H‰”$À��1ÛH‰œ$È��H‰œ$Ð��H‹����H‰œ$Ø��H‹����H‰œ$à��HÄ��ÃH����H‰$H‹œ$���H‰\$H‹œ$˜���H‰\$è����H\$H‹ H‰ $H‹KH‰L$H‹”$0��H‹ÿÓH‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$¨��H‰´$°��H‰¬$¸��H‰”$À��H‹œ$��H‰œ$È��H‹œ$��H‰œ$Ð��H‰Œ$Ø��H‰„$à��HÄ��ÃH‹œ$À���H‹„$È���H‰œ$ ���H‰„$¨���H‰„$¸���HÇÂ���H‰œ$°���1íH9ëtH‹[H-����H9ë…˜��HÇÁ���€ù�tkH‹XH9Ó|bH‰D$XH‹����1íH9èt H‹T$XH‰„$Ð���H‰ÁH‰”$Ø���H‰ÐéÍýÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±H‰T$@Hƒú} HÇD$@���H����H‰$è����H‹L$@H‹D$H‰D$HH‰D$PH����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$°���H‹Œ$¸���H¼$8��1ÀHƒÇøè����L‰„$ð���L‰„$8��H‰´$ø���H‰´$@��H‰¬$���H‰¬$H��H‰T$pH‰”$P��H‰L$xH‰Œ$X��HDŽ$€��ÿÿÿÿHDŽ$ˆ��ÿÿÿÿH‹\$PHƒû�t,H¬$8��H‰\$H‰l$H-����H‰,$è����H‹D$Héþÿÿ‰ëÐ1À1Ééfþÿÿè����éeûÿÿ.������À��type."".reader��� 
��$runtime.assertI2I2���Ò
��"".sniff���ò��"".ErrFormat����"".ErrFormat���¾��type.io.Reader���„
��runtime.convI2I���Ì�������Æ ��$type.*bufio.Reader���š ��>go.itab.*bufio.Reader."".reader���ö ��$type.*bufio.Reader���Œ ��type."".reader���¤ ��>go.itab.*bufio.Reader."".reader���¸ 
�� runtime.typ2Itab���ü ��"type.bufio.Reader���Ž
��"runtime.newobject���Ä��type.[]uint8���ê
��"runtime.makeslice���Î
Ô� runtime.duffzero���Ú��"type.bufio.Reader���ì
��(runtime.typedmemmove���¤
��0runtime.morestack_noctxt���  ��,"".autotmp_0045�ÿtype."".reader�"".autotmp_0044��$type.*bufio.Reader�"".autotmp_0043��$type.*bufio.Reader�"".autotmp_0042�¯"type.bufio.Reader�"".autotmp_0039�ï$type.*bufio.Reader�"".autotmp_0038�ßtype."".reader�bufio.r·3�¿type.io.Reader�bufio.buf·2�¿type.[]uint8�bufio.b·1�ÿ$type.*bufio.Reader�bufio.r·6�$type.*bufio.Reader�bufio.size·3�Ÿtype.int�bufio.rd·2�¿type.io.Reader�bufio.rd·2�ßtype.io.Reader� "".~r1�ßtype."".reader�
"".rr�Ÿtype."".reader�"".r�Ÿtype.io.Reader�"".f�type."".format�
"".rr�ÿtype."".reader� "".~r3�€type.error� "".~r2�`type.string� "".~r1� type."".Config�"".r��type.io.Reader�*) ²Ÿ ÁŸ ‚�  �,ºo dZjX ó�*�ÏY
ÙÚ+.Á+�Tgclocals·473289be119113ddb746c224f05da7b4�Tgclocals·a09af47d95804d1a0febde7c2c7293b6���Tprebuilts/go/linux-x86/src/image/format.goþ"".Point.String��À��¼eH‹ %(���H‹‰����HD$øH;A†õ���Hìˆ���1ÛH‰œ$ ���H‰œ$¨���H‹œ$���H‰$è����H‹\$H‰\$xH‹\$H‰œ$€���H‹œ$˜���H‰$è����H‹L$H‹D$HÇ$����H����H‰\$HÇD$���H‹\$xH‰\$H‹œ$€���H‰\$ H����H‰\$(HÇD$0���H‰L$hH‰L$8H‰D$pH‰D$@H����H‰\$HHÇD$P���è����H‹\$XH‰œ$ ���H‹\$`H‰œ$¨���HÄˆ���Ãè����éâþÿÿ������Š
��strconv.Itoa���Ú
��strconv.Itoa���Œ��go.string."("���ä��go.string.","���¶��go.string.")"���Ü
��*runtime.concatstring5���ª
��0runtime.morestack_noctxt���@��"".autotmp_0050�?type.string�"".autotmp_0049�type.string� "".~r0� type.string�"".p��type."".Point�&í � �&8Ü ��D(3�Tgclocals·64ca935d1a2110a30e2d604686188539�Tgclocals·44750c784da4dd430afdd97fea5c405a���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.Add��`��R1Û1ÛH‹L$H‹l$H‹D$HéH‹l$ HèH‰L$(H‰D$0Ã�`��� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�0�0�
0.��Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.Sub��`��R1Û1ÛH‹L$H‹l$H‹D$H)éH‹l$ H)èH‰L$(H‰D$0Ã�`��� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�0�0�
:.��Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.Mul��`��LH‹D$1Û1ÛH‹L$H‹\$H¯ÈH¯ØH‰L$ H‰\$(Ã�P��� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�0�0�
D)��Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.Div�� ��šH‹t$1Û1ÛH‹D$Hƒþÿt1H™H÷þH‰ÃH‹D$H‰ÙHƒþÿtH™H÷þH‰ÃH‰L$ H‰\$(ÃH÷ØH‰ÃëíH÷ØH‰ÃëÏ�P��� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�P�P�
NI��Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.In��€��zH‹L$H‹D$H‹\$H9Ë"H‹l$(H9é}H‹\$ H9ÃH‹l$0H9èœD$8ÃÆD$8�ëø�p��� "".~r1�`type.bool�"".r� "type."".Rectangle�"".p��type."".Point�@�@�
X
6��Tgclocals·627bbca91efe935c3ac76737d2026ca6�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.Mod�� ��ŽH‹|$(H‹t$0L‹L$L‹D$ 1ÛL)ÏL)ÆH‹D$H‹T$1Û1ÛL)ÈI‰ÒM)ÂHƒÿÿtJH™H÷ÿH‰ÓH‰ÙHƒû�}HùL‰ÐHƒþÿt)H™H÷þH‰ÓH‰ØHƒû�}Hð1Û1ÛLÉLÀH‰L$8H‰D$@Ã1ÛëÛ1Ûëº�€���"".autotmp_0062��type."".Point�"".autotmp_0059��type.int�"".autotmp_0058��type.int�"".autotmp_0056��type.int�"".autotmp_0055��type.int� "".~r1�`type."".Point�"".r� "type."".Rectangle�"".p��type."".Point���2f ��Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Point.Eq��À��¶Hƒì H‹\$(H‰\$H‹\$0H‰\$H‹D$8H‰$H‹L$@H‰L$HL$H$H‹H‹(H9ëuH‹YH‹hH9ë”D$HHƒÄ ÃÆD$H�ëô�P@��
"".autotmp_0064�?type."".Point�"".autotmp_0063�type."".Point� "".~r1�@type.bool�"".q� type."".Point�"".p��type."".Point�@O?@ �`� „\��Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ
"".Pt��@��21Û1ÛH‹L$H‹D$H‰L$H‰D$ Ã�@��� "".~r2� type."".Point�"".Y�type.int�"".X��type.int� � � ”��Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ&"".Rectangle.String��€��ðeH‹ %(���H‹‰����H;a†Ô���Hƒìh1ÛH‰œ$���H‰œ$˜���H\$pH‹ H‰ $H‹KH‰L$è����H‹\$H‰\$XH‹\$H‰\$`Hœ$€���H‹ H‰ $H‹KH‰L$è����H‹L$H‹D$HÇ$����H‹\$XH‰\$H‹\$`H‰\$H����H‰\$HÇD$ ���H‰L$HH‰L$(H‰D$PH‰D$0è����H‹\$8H‰œ$���H‹\$@H‰œ$˜���HƒÄhÃè����éÿÿÿ ������Œ
��"".Point.String���î
��"".Point.String���È��go.string."-"���–
��*runtime.concatstring3���Þ
��0runtime.morestack_noctxt���`Ð��"".autotmp_0069�?type.string�"".autotmp_0068�type.string� "".~r0�@type.string�"".r��"type."".Rectangle�ÐÏÏÐ�€�¶0¾��E1T6�Tgclocals·ae0a20890c9ac6bfbea3383f34532bab�Tgclocals·44750c784da4dd430afdd97fea5c405a���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Rectangle.Dx��@��&H‹\$H‹l$H)ëH‰\$(Ã�P��� "".~r0�@type.int�"".r��"type."".Rectangle� � � ��Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Rectangle.Dy��@��&H‹\$ H‹l$H)ëH‰\$(Ã�P��� "".~r0�@type.int�"".r��"type."".Rectangle� � �Ì ��Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ""".Rectangle.Size��`��R1Û1ÛH‹L$H‹l$H‹D$ H)éH‹l$H)èH‰L$(H‰D$0Ã�`��� "".~r0�@type."".Point�"".r��"type."".Rectangle�0�0� Ô
��Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ "".Rectangle.Add�� ��ŒH‹L$(H‹D$01Û1ÛH‹t$H‹T$H‹\$HÎHÂHËH‰ÙH‹\$ HÃH‰t$8H‰T$@H‰L$HH‰\$PÃ� ��� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�P�P� ä 
��Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23c�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ "".Rectangle.Sub�� ��ŒH‹L$(H‹D$01Û1ÛH‹t$H‹T$H‹\$H)ÎH)ÂH)ËH‰ÙH‹\$ H)ÃH‰t$8H‰T$@H‰L$HH‰\$PÃ� ��� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�P�P� ô 
��Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23c�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ$"".Rectangle.Inset��À��¨L‹L$H‹T$H‹t$H‹|$ H‹D$(1ÛH‰ÓL)ËH‰ÅHÑåH9ë}]L‰ËHÓH‰ÙHÁû?H)ÙHÑùH‰ÊH‰ûH)óH‰ÅHÑåH9ë}(HþH‰óHÁû?H)ÞHÑþH‰ðH‰L$0H‰t$8H‰T$@H‰D$HÃHÆH‰ûH)ÃH‰ØëÝL‰ÉHÁH)Âë®����"".autotmp_0080��type.int�"".autotmp_0079��type.int�"".autotmp_0078��type.int�"".autotmp_0076��type.int�"".autotmp_0075��type.int�"".autotmp_0074��type.int�"".autotmp_0073��type.int� "".~r1�P"type."".Rectangle�"".n�@type.int�"".r��"type."".Rectangle� � �<ˆ

 ��Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ,"".Rectangle.Intersect��À��´L‹T$(L‹L$0L‹D$8H‹|$@H‹t$H‹T$H‹L$H‹D$ 1ÛL9Ö}L‰ÖL9Ê}L‰ÊL9Á~L‰ÁH9ø~H‰øH9ÎH9ÂH‰t$HH‰T$PH‰L$XH‰D$`ÃH‹����H‰\$HH‹����H‰\$PH‹����H‰\$XH‹����H‰\$`ÃØ��
"".ZR���ð�
"".ZR���ˆ �
"".ZR��� 0�
"".ZR���À��� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle� � �4°*
7��Tgclocals·5f32766c99d383f833fae93d4e4d71d1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ$"".Rectangle.Union�� ��ŒL‹T$(L‹L$0L‹D$8H‹|$@H‹t$H‹T$H‹L$H‹D$ 1ÛH9΍‡���H9Â@Å@€ý�tL‰T$HL‰L$PL‰D$XH‰|$`ÃM9Â}WI9ù@Å@€ý�tH‰t$HH‰T$PH‰L$XH‰D$`ÃL9Ö~L‰ÖL9Ê~L‰ÊL9Á}L‰ÁH9ø}H‰øH‰t$HH‰T$PH‰L$XH‰D$`ÃHÇÅ���ë§HÇÅ���étÿÿÿ�À���"".autotmp_0082��type.bool� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�Ð�Ð�DØ* ��Tgclocals·5f32766c99d383f833fae93d4e4d71d1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ$"".Rectangle.Empty��`��RH‹\$H‹l$H9ë}H‹\$H‹l$ H9ëD$(ÃÆD$(ëø�P��� "".~r0�@type.bool�"".r��"type."".Rectangle�0�0�ˆ0��Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Rectangle.Eq��à��ÄHƒì@L‹|$HL‹t$PL‹l$XL‹d$`L‹\$hL‹T$pL‹L$xH‹¼$€���L‰|$ L‰t$(L‰l$0L‰d$8L‰$L‰T$L‰L$H‰|$H\$ H‰ÞH$H‰ÚHƒþ�„¬���Hƒû�„›���H‹H‹*H9ë…ˆ���H‹^H‹jH9ëu{H‰ðHƒÀH‰ÑHƒÁH‹H‹)H9ëu^H‹XH‹iH9ë”À<�uBM9ï}4M9æÀ<�t M9Ë}I9úÀˆ„$ˆ���HƒÄ@ÃHÇÀ���ëëƄ$ˆ����ëèHÇÀ���ëÉƄ$ˆ���ëÕ1Àë¬1À먉é^ÿÿÿ‰éMÿÿÿ�€��"".autotmp_0092��type.bool�"".autotmp_0091��type.bool�"".autotmp_0090��type.*"".Point�"".autotmp_0089��type.*"".Point�"".autotmp_0084�"type."".Rectangle�"".autotmp_0083�?"type."".Rectangle� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�€á€J�°�’/��Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ*"".Rectangle.Overlaps��€��îL‹l$L‹d$L‹\$L‹T$ L‹L$(L‹D$0H‹|$8H‹t$@M9Ý}AM9ԝÀ<�u'I9ù})I9ðÀ<�uI9ý}M9Ù}I9ô} M9ÐœD$HÃÆD$H�ëøHÇÀ���ëÔHÇÀ���ë¼����"".autotmp_0095��type.bool� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�€�€�(œ(  # ��Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Rectangle.In��à��ÊL‹L$L‹D$H‹|$H‹t$ I9ù}CI9ðÀ<�tÆD$HÃH‹\$(L9Ë"H‹l$8H9ïH‹\$0L9ÃH‹l$@H9îžD$HÃÆD$H�ëøHÇÀ���ëº���� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�p�p�ª
3 ��Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ$"".Rectangle.Canon�� ��ŽH‹t$H‹T$H‹L$ H‹D$1ÛH9Ö} H‰ÕH‰òH‰îH9Á} H‰ÅH‰ÈH‰éH‰T$(H‰D$0H‰t$8H‰L$@Ã�€���"".autotmp_0098��type.int� "".~r0�@"type."".Rectangle�"".r��"type."".Rectangle�P�P�  ��Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Rectangle.At��à��ÐeH‹ %(���H‹‰����H;a†D��Hƒìh1ÛH‰œ$ ���H‰œ$¨���1ÛH‹Œ$���H‹„$˜���H‰D$@H‹\$pH‹|$xH‰|$PH‹´$€���H‰t$XH‹”$ˆ���H‰T$`H‰\$HH‰L$8H9ˏÔ���H9ñË���H9ǏÂ���H9ÐœÀ<�t\H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹\$(H‰œ$ ���H‹\$0H‰œ$¨���HƒÄhÃH����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹\$(H‰œ$ ���H‹\$0H‰œ$¨���HƒÄhÃ1Àé=ÿÿÿè����é˜þÿÿ������Ä��0type.image/color.Alpha16���Ú��,type.image/color.Color���ò��Zgo.itab.image/color.Alpha16.image/color.Color���Š��$image/color.Opaque���°
��runtime.convT2I���ü��0type.image/color.Alpha16���’��,type.image/color.Color���ª��Zgo.itab.image/color.Alpha16.image/color.Color���Â��.image/color.Transparent���è
��runtime.convT2I���¾
��0runtime.morestack_noctxt���€Ð�� "".r�?"type."".Rectangle�"".p�_type."".Point� "".~r2�`,type.image/color.Color�"".y�Ptype.int�"".x�@type.int�"".r��"type."".Rectangle�&ÐÜÏÐ[ÏÐ�ð�Ø0o\\��×™�Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ&"".Rectangle.Bounds��`��V1ÛH‹\$H‰\$(H‹\$H‰\$0H‹\$H‰\$8H‹\$ H‰\$@Ã�€��� "".~r0�@"type."".Rectangle�"".r��"type."".Rectangle�0�0� è.��Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ."".Rectangle.ColorModel��@��61ÛH‹����H‰\$(H‹����H‰\$0Ã
��0image/color.Alpha16Model���"�0image/color.Alpha16Model���`��� "".~r0�@,type.image/color.Model�"".r��"type."".Rectangle� � � ò��Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ"".Rect�� ��’H‹t$H‹T$H‹L$H‹D$ 1ÛH9Ö~ H‰õH‰ÖH‰êH9Á~ H‰ÍH‰ÁH‰è1ÛH‰t$(H‰L$0H‰T$8H‰D$@Ã�€��� "".autotmp_0101��type.int� "".~r4�@"type."".Rectangle�
"".y1�0type.int�
"".x1� type.int�
"".y0�type.int�
"".x0��type.int�P�P�†  ��Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Pprebuilts/go/linux-x86/src/image/geom.goþ*"".(*RGBA).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��*image/color.RGBAModel���"�*image/color.RGBAModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA� � �Ž ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*RGBA).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA�@�@�’@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*RGBA).At�� ��œeH‹ %(���H‹‰����H;a†ª���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$<H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����é2ÿÿÿ������
��""".(*RGBA).RGBAAt���æ��*type.image/color.RGBA���ü��,type.image/color.Color���”��Tgo.itab.image/color.RGBA.image/color.Color���Î
��runtime.convT2I���Š
��0runtime.morestack_noctxt���P€��
"".autotmp_0103�*type.image/color.RGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�€¥€ �Ð�–*š � �G‰�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*RGBA).RGBAAt��€��ìeH‹ %(���H‹‰����H;a†R��L‹\$L‹T$H‹L$1Û1ÛHƒù�„.��L‹I L‹A(H‹y0H‹q8M9ُ��I9û��M9Џü���I9òœÀ<�u1҈T$ ˆT$!ˆT$"ˆT$#ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇ�H‹1H‹QH‹iH9׃•���H>¶I‰ÚH‰ÇHÿÇH‹1H‹QH‹iH9×snH>¶I‰ÙH‰ÇHƒÇH‹1H‹QH‹iH9×sFH>¶H‰ÞH‰ÂHƒÂH‰ËH‹ H‹CH‹kH9ÂsH¶DˆT$ DˆL$!@ˆt$"ˆ\$#Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éËþÿÿè����éŠþÿÿ ������†
��$runtime.panicindex���”
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���@��� "".autotmp_0108��*type.image/color.RGBA�"".autotmp_0106��type.int� "".~r2�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�€�€�"ž+A&¹� �Â>�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*RGBA).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�@�@� ²;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*RGBA).Set��€ ��ìeH‹ %(���H‹‰����H;a†��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„Ý��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏¤��I9ó›��L9׏’��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$,H‰\$è����H‹Œ$€���H‹D$0¶\$,I‰Û¶\$-I‰Ú¶\$.I‰Ù¶\$/H‰ßI‰ÀIƒÀ�Hƒù�„”���H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆ H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H@ˆ;HƒÄxÃè���� è���� è���� è���� ‰éeÿÿÿ1ÀémþÿÿA‰éþÿÿè����éÊýÿÿ������Ê�*image/color.RGBAModel���à��*image/color.RGBAModel���ð�������²��*type.image/color.RGBA���€
��"runtime.assertI2T���ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex��� 
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���Pð��"".autotmp_0126��type.int�"".autotmp_0125��type.int�"".autotmp_0124��type.int�"".autotmp_0123��type.int�"".autotmp_0121��type.int�"".autotmp_0119�—*type.image/color.RGBA�"".autotmp_0118�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�&ð{ïðßïðF�À�Fº6_.©(! ��øÈ�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*RGBA).SetRGBA��À��°eH‹ %(���H‹‰����H;a†4��L‹\$L‹T$H‹L$1ÛHƒù�„��L‹I L‹A(H‹y0H‹q8M9ُò���I9ûé���M9Џà���I9òœÀ<�uÃH‹Y L‰ÚH)ÚH‹Y(L‰×H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇ�H‹1H‹QH‹iH9׃���H>¶l$ @ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9×sdH>¶l$!@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s:H>¶l$"@ˆ+H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H¶l$#@ˆ+Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éçþÿÿè����é¨þÿÿ ������Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���æ
��$runtime.panicindex���ô
��$runtime.panicindex���ž
��0runtime.morestack_noctxt���@���"".autotmp_0137��type.int�"".autotmp_0136��type.int�"".autotmp_0135��type.int�"".autotmp_0134��type.int�"".autotmp_0132��type.int�"".c�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�à�à�@Ò)A&'"#&� �¤<�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*RGBA).SubImage��€ ��ò eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„«��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò0��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÊýÿÿ‰éNýÿÿè����éÇüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".RGBA���Œ
��"runtime.newobject���ö��2go.itab.*"".RGBA."".Image���Ò��type.*"".RGBA���è��type."".Image���€��2go.itab.*"".RGBA."".Image���”
�� runtime.typ2Itab���ô��type."".RGBA���†
��"runtime.newobject���ì�6runtime.writeBarrierEnabled���²
��2go.itab.*"".RGBA."".Image���Ž ��type.*"".RGBA���¤ ��type."".Image���¼ ��2go.itab.*"".RGBA."".Image���Ð 
�� runtime.typ2Itab���ˆ 
��.runtime.writebarrierptr���¬ 
��$runtime.panicslice���à 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0152��type.*uint8�"".autotmp_0151��type.*"".RGBA�"".autotmp_0150��type.int�"".autotmp_0149��type.int�"".autotmp_0146�?type.*"".RGBA�"".autotmp_0144��type.*"".RGBA�"".autotmp_0143�/type.[]uint8�"".autotmp_0142��type.*"".RGBA�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA�(&À¿¿ÀÝ¿À|�À�Rì8wK›#?MJ - � �Žûyå.+�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*RGBA).Opaque��À��°eH‹ %(���H‹‰����H;a†ô���H‹L$Hƒù�„Þ���H‹y H‹q(H‹Q0H‹A8H9׍¹���H9ƝÀ<�tÆD$ÃHƒù�„˜���H‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂ���H‰ÚL‹I(H‹Y8L9Ë~YL‰ÐH9Ð}1Hƒù�tXH‹9H‹qH‹iH9ðsAH¶€ûÿtÆD$�ÃHƒÀH9Ð|ÏH‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9˧ÆD$Ãè���� ‰뤉éaÿÿÿHÇÀ���éAÿÿÿ‰éÿÿÿè����éèþÿÿ������Ô
��$runtime.panicindex���ž
��0runtime.morestack_noctxt��� ���"".autotmp_0162��type.int�"".autotmp_0161��type.int�"".autotmp_0158��type.int�"".autotmp_0157��type.int�"".autotmp_0156��type.int�"".autotmp_0155��type.int� "".~r0�type.bool�"".p��type.*"".RGBA� � �HŽ-+ "

 � �é7�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewRGBA��€��ôeH‹ %(���H‹‰����HD$èH;A†Q��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uPH‰(H‹l$0HÁåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëžè����é†þÿÿ������”��type.[]uint8���º
��"runtime.makeslice���–��type."".RGBA���¨
��"runtime.newobject���ˆ�6runtime.writeBarrierEnabled���Ê
��.runtime.writebarrierptr���â
��0runtime.morestack_noctxt���P°��"".autotmp_0169�?type.*"".RGBA�"".autotmp_0168��type.int�"".autotmp_0166��type.int�"".autotmp_0165��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".buf�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA�"".r��"type."".Rectangle�&°´¯°%�€�²F1Q¨��œ7‘�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*RGBA64).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��.image/color.RGBA64Model���"�.image/color.RGBA64Model���0��� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA64� � �Ô ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*RGBA64).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA64�@�@�Ø@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*RGBA64).At��À��¬eH‹ %(���H‹‰����H;a†²���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$8H·\$f‰\$:H·\$f‰\$<H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$8H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����é*ÿÿÿ������
��*"".(*RGBA64).RGBA64At���ö��.type.image/color.RGBA64���Œ��,type.image/color.Color���¤��Xgo.itab.image/color.RGBA64.image/color.Color���Þ
��runtime.convT2I���š
��0runtime.morestack_noctxt���P€��
"".autotmp_0170�.type.image/color.RGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�€­€�à�Ü*¢� �G™�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*RGBA64).RGBA64At��  ��” eH‹ %(���H‹‰����H;a†&��L‹\$L‹T$H‹L$1Û1ÛHƒù�„��L‹I L‹A(H‹y0H‹q8M9ُâ��I9ûÙ��M9ЏÐ��I9òœÀ<�u1Òf‰T$ f‰T$"f‰T$$f‰T$&ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇ�H‹1H‹QL‹AH9׃e��H>f¶HÁãH‰ÇHÿÇH‹1H‹QL‹AH9׃8��H,>f¶m�H ëI‰ÜH‰ÇHƒÇH‹1H‹QL‹AH9׃��H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9׃Ù���H,>f¶m�H ëI‰ÛH‰ÇHƒÇH‹1H‹QL‹AH9׃¨���H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9×s~H,>f¶m�H ëI‰ÚH‰ÇHƒÇH‹1H‹QL‹AH9×sQH>f¶HÁãH‰ÂHƒÂH‰ÍH‹ H‹EL‹EH9Âs$H,f¶m�H ëfD‰d$ fD‰\$"fD‰T$$f‰\$&Ãè���� è���� è���� è���� è���� è���� è���� è���� 1Àé/þÿÿ‰é÷ýÿÿè����é¶ýÿÿ������ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex��� 
��$runtime.panicindex���®
��$runtime.panicindex���¼
��$runtime.panicindex���Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���‚ 
��0runtime.morestack_noctxt���@��� "".autotmp_0175��.type.image/color.RGBA64�"".autotmp_0173��type.int� "".~r2�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�Ð�Ð�Dä+A&PQMI � �úV�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*RGBA64).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�@�@� ‚;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ "".(*RGBA64).Set��  ��‚ eH‹ %(���H‹‰����H;a†Ý��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„¨��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏o��I9óf��L9׏]��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$0H‰\$è����H‹Œ$€���H‹D$(H·\$0I‰ÙH·\$2H‰ßH·\$4H‰ÞH·\$6H‰ÚI‰ÃIƒÃ�Hƒù�„W��H‹L‹QH‹iM9Óƒ<��JL‰ÍfÁí@ˆ+I‰ÃIÿÃH‹L‹QH‹iM9Óƒ ��JDˆ I‰ÂIƒÂH‹L‹IH‹iM9ʃä���JH‰ýfÁí@ˆ+I‰ÂIƒÂH‹L‹IH‹iM9ʃ´���J@ˆ;I‰ÁIƒÁH‹H‹yH‹iI9ùƒ‹���J H‰õfÁí@ˆ+I‰ÁIƒÁH‹H‹yH‹iI9ùs_J @ˆ3I‰ÀIƒÀH‹9H‹qH‹iI9ðs:JH‰ÕfÁí@ˆ+H‰ÆHƒÆH‰ËH‹ H‹CH‹kH9Æs H1ˆHƒÄxÃè���� è���� è���� è���� è���� è���� è���� è���� ‰é¢þÿÿ1Àé¢ýÿÿA‰éPýÿÿè����éÿüÿÿ������Ê�.image/color.RGBA64Model���à��.image/color.RGBA64Model���ð�������º��.type.image/color.RGBA64���ˆ
��"runtime.assertI2T���Ô

��$runtime.panicindex���â

��$runtime.panicindex���ð

��$runtime.panicindex���þ

��$runtime.panicindex���Œ 
��$runtime.panicindex���š 
��$runtime.panicindex���¨ 
��$runtime.panicindex���¶ 
��$runtime.panicindex���ð 
��0runtime.morestack_noctxt���Pð��$"".autotmp_0205��type.int�"".autotmp_0204��type.int�"".autotmp_0203��type.int�"".autotmp_0202��type.int�"".autotmp_0201��type.int�"".autotmp_0200��type.int�"".autotmp_0199��type.int�"".autotmp_0198��type.int�"".autotmp_0196��type.int�"".autotmp_0194�.type.image/color.RGBA64�"".autotmp_0193�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�Ÿtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�&ð{ïðŽïðg��fŠ6_.±3!)")%  ��ø˜�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*RGBA64).SetRGBA64��À��¸eH‹ %(���H‹‰����H;a†ø��L‹|$L‹t$L·l$ L·d$"L·\$$L·T$&H‹L$1ÛHƒù�„¾��L‹I L‹A(H‹y0H‹q8M9ùž��I9ÿ•��M9ðŒ��I9öœÀ<�uÃH‹Y L‰úH)ÚH‹Y(L‰÷H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇ�H‹1H‹QH‹iH9׃9��H>L‰ífÁí@ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9׃
��H>Dˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃á���H>L‰åfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃±���H>Dˆ#H‰ÇHƒÇH‹1H‹QH‹iH9׃ˆ���H>L‰ÝfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s\H>DˆH‰ÇHƒÇH‹1H‹QH‹iH9×s7H>L‰ÕfÁí@ˆ+H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9ÂsHDˆÃè���� è���� è���� è���� è���� è���� è���� è���� 1Àésþÿÿ‰é;þÿÿè����éäýÿÿ������š
��$runtime.panicindex���¨
��$runtime.panicindex���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���Ò
��$runtime.panicindex���à
��$runtime.panicindex���î
��$runtime.panicindex���ü
��$runtime.panicindex���¦
��0runtime.morestack_noctxt���@���"".autotmp_0224��type.int�"".autotmp_0223��type.int�"".autotmp_0222��type.int�"".autotmp_0221��type.int�"".autotmp_0220��type.int�"".autotmp_0219��type.int�"".autotmp_0218��type.int�"".autotmp_0217��type.int�"".autotmp_0215��type.int�"".c�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64� � �`ªAA&)!)")%!� �ÌT�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*RGBA64).SubImage��€ ��ò eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„«��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò0��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÊýÿÿ‰éNýÿÿè����éÇüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".RGBA64���Œ
��"runtime.newobject���ö��6go.itab.*"".RGBA64."".Image���Ò��type.*"".RGBA64���è��type."".Image���€��6go.itab.*"".RGBA64."".Image���”
�� runtime.typ2Itab���ô��type."".RGBA64���†
��"runtime.newobject���ì�6runtime.writeBarrierEnabled���²
��6go.itab.*"".RGBA64."".Image���Ž ��type.*"".RGBA64���¤ ��type."".Image���¼ ��6go.itab.*"".RGBA64."".Image���Ð 
�� runtime.typ2Itab���ˆ 
��.runtime.writebarrierptr���¬ 
��$runtime.panicslice���à 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0243��type.*uint8�"".autotmp_0242��type.*"".RGBA64�"".autotmp_0241��type.int�"".autotmp_0240��type.int�"".autotmp_0237�?type.*"".RGBA64�"".autotmp_0235��type.*"".RGBA64�"".autotmp_0234�/type.[]uint8�"".autotmp_0233��type.*"".RGBA64�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA64�(&À¿¿ÀÝ¿À|�À�RÌ8wK›#?MJ - � �Žûyå.+�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*RGBA64).Opaque��À��¦eH‹ %(���H‹‰����H;a†/��H‹L$Hƒù�„��H‹y H‹q(H‹Q0H‹A8H9׍ô���H9ƝÀ<�tÆD$ÃHƒù�„Ó���H‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂ���H‰ÚL‹I(H‹Y8L9ËŽ€���L‰ÐH9Ð}XI‰ÀIƒÀ�Hƒù�„���H‹9H‹qH‹iI9ðsjJ¶€ûÿuQI‰ÀIÿÀH‹9H‹qH‹iI9ðsAJ¶€ûÿu/HƒÀH9Ð|¨H‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9Ë€ÆD$ÃÆD$�Ãè���� è���� ‰éxÿÿÿ‰é&ÿÿÿHÇÀ���éÿÿÿ‰éàþÿÿè����é­þÿÿ������¶
��$runtime.panicindex���Ä
��$runtime.panicindex���”
��0runtime.morestack_noctxt��� ���"".autotmp_0253��type.int�"".autotmp_0252��type.int�"".autotmp_0249��type.int�"".autotmp_0248��type.int�"".autotmp_0247��type.int�"".autotmp_0246��type.int� "".~r0�type.bool�"".p��type.*"".RGBA64�à�à�Hî-+O

 � �šF�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewRGBA64��€��ôeH‹ %(���H‹‰����HD$èH;A†Q��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uPH‰(H‹l$0HÁåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëžè����é†þÿÿ������”��type.[]uint8���º
��"runtime.makeslice���–��type."".RGBA64���¨
��"runtime.newobject���ˆ�6runtime.writeBarrierEnabled���Ê
��.runtime.writebarrierptr���â
��0runtime.morestack_noctxt���P°��"".autotmp_0263�?type.*"".RGBA64�"".autotmp_0262��type.int�"".autotmp_0260��type.int�"".autotmp_0259��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA64�"".r��"type."".Rectangle�&°´¯°%�€�’F1Q¨��œ7‘�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*NRGBA).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��,image/color.NRGBAModel���"�,image/color.NRGBAModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".NRGBA� � �´ ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*NRGBA).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".NRGBA�@�@�¸@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*NRGBA).At�� ��œeH‹ %(���H‹‰����H;a†ª���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$<H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����é2ÿÿÿ������
��&"".(*NRGBA).NRGBAAt���æ��,type.image/color.NRGBA���ü��,type.image/color.Color���”��Vgo.itab.image/color.NRGBA.image/color.Color���Î
��runtime.convT2I���Š
��0runtime.morestack_noctxt���P€��
"".autotmp_0264�,type.image/color.NRGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�€¥€ �Ð�¼*š � �G‰�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*NRGBA).NRGBAAt��€��ìeH‹ %(���H‹‰����H;a†R��L‹\$L‹T$H‹L$1Û1ÛHƒù�„.��L‹I L‹A(H‹y0H‹q8M9ُ��I9û��M9Џü���I9òœÀ<�u1҈T$ ˆT$!ˆT$"ˆT$#ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇ�H‹1H‹QH‹iH9׃•���H>¶I‰ÚH‰ÇHÿÇH‹1H‹QH‹iH9×snH>¶I‰ÙH‰ÇHƒÇH‹1H‹QH‹iH9×sFH>¶H‰ÞH‰ÂHƒÂH‰ËH‹ H‹CH‹kH9ÂsH¶DˆT$ DˆL$!@ˆt$"ˆ\$#Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éËþÿÿè����éŠþÿÿ ������†
��$runtime.panicindex���”
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���@��� "".autotmp_0269��,type.image/color.NRGBA�"".autotmp_0267��type.int� "".~r2�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�€�€�"Ä+A&¹� �Â>�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*NRGBA).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�@�@� Ø;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*NRGBA).Set��€ ��ìeH‹ %(���H‹‰����H;a†��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„Ý��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏¤��I9ó›��L9׏’��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$,H‰\$è����H‹Œ$€���H‹D$0¶\$,I‰Û¶\$-I‰Ú¶\$.I‰Ù¶\$/H‰ßI‰ÀIƒÀ�Hƒù�„”���H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆ H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H@ˆ;HƒÄxÃè���� è���� è���� è���� ‰éeÿÿÿ1ÀémþÿÿA‰éþÿÿè����éÊýÿÿ������Ê�,image/color.NRGBAModel���à��,image/color.NRGBAModel���ð�������²��,type.image/color.NRGBA���€
��"runtime.assertI2T���ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex��� 
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���Pð��"".autotmp_0287��type.int�"".autotmp_0286��type.int�"".autotmp_0285��type.int�"".autotmp_0284��type.int�"".autotmp_0282��type.int�"".autotmp_0280�—,type.image/color.NRGBA�"".autotmp_0279�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�&ð{ïðßïðF�À�Fà6_.©(! ��øÈ�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*NRGBA).SetNRGBA��À��°eH‹ %(���H‹‰����H;a†4��L‹\$L‹T$H‹L$1ÛHƒù�„��L‹I L‹A(H‹y0H‹q8M9ُò���I9ûé���M9Џà���I9òœÀ<�uÃH‹Y L‰ÚH)ÚH‹Y(L‰×H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇ�H‹1H‹QH‹iH9׃���H>¶l$ @ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9×sdH>¶l$!@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s:H>¶l$"@ˆ+H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H¶l$#@ˆ+Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éçþÿÿè����é¨þÿÿ ������Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���æ
��$runtime.panicindex���ô
��$runtime.panicindex���ž
��0runtime.morestack_noctxt���@���"".autotmp_0298��type.int�"".autotmp_0297��type.int�"".autotmp_0296��type.int�"".autotmp_0295��type.int�"".autotmp_0293��type.int�"".c�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�à�à�@ø)A&'"#&� �¤<�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*NRGBA).SubImage��€ ��ò eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„«��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò0��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÊýÿÿ‰éNýÿÿè����éÇüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".NRGBA���Œ
��"runtime.newobject���ö��4go.itab.*"".NRGBA."".Image���Ò��type.*"".NRGBA���è��type."".Image���€��4go.itab.*"".NRGBA."".Image���”
�� runtime.typ2Itab���ô��type."".NRGBA���†
��"runtime.newobject���ì�6runtime.writeBarrierEnabled���²
��4go.itab.*"".NRGBA."".Image���Ž ��type.*"".NRGBA���¤ ��type."".Image���¼ ��4go.itab.*"".NRGBA."".Image���Ð 
�� runtime.typ2Itab���ˆ 
��.runtime.writebarrierptr���¬ 
��$runtime.panicslice���à 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0313��type.*uint8�"".autotmp_0312��type.*"".NRGBA�"".autotmp_0311��type.int�"".autotmp_0310��type.int�"".autotmp_0307�?type.*"".NRGBA�"".autotmp_0305��type.*"".NRGBA�"".autotmp_0304�/type.[]uint8�"".autotmp_0303��type.*"".NRGBA�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".NRGBA�(&À¿¿ÀÝ¿À|�À�R’8wK›#?MJ - � �Žûyå.+�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*NRGBA).Opaque��À��°eH‹ %(���H‹‰����H;a†ô���H‹L$Hƒù�„Þ���H‹y H‹q(H‹Q0H‹A8H9׍¹���H9ƝÀ<�tÆD$ÃHƒù�„˜���H‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂ���H‰ÚL‹I(H‹Y8L9Ë~YL‰ÐH9Ð}1Hƒù�tXH‹9H‹qH‹iH9ðsAH¶€ûÿtÆD$�ÃHƒÀH9Ð|ÏH‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9˧ÆD$Ãè���� ‰뤉éaÿÿÿHÇÀ���éAÿÿÿ‰éÿÿÿè����éèþÿÿ������Ô
��$runtime.panicindex���ž
��0runtime.morestack_noctxt��� ���"".autotmp_0323��type.int�"".autotmp_0322��type.int�"".autotmp_0319��type.int�"".autotmp_0318��type.int�"".autotmp_0317��type.int�"".autotmp_0316��type.int� "".~r0�type.bool�"".p��type.*"".NRGBA� � �H´-+ "

 � �é7�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewNRGBA��€��ôeH‹ %(���H‹‰����HD$èH;A†Q��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uPH‰(H‹l$0HÁåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëžè����é†þÿÿ������”��type.[]uint8���º
��"runtime.makeslice���–��type."".NRGBA���¨
��"runtime.newobject���ˆ�6runtime.writeBarrierEnabled���Ê
��.runtime.writebarrierptr���â
��0runtime.morestack_noctxt���P°��"".autotmp_0330�?type.*"".NRGBA�"".autotmp_0329��type.int�"".autotmp_0327��type.int�"".autotmp_0326��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".NRGBA�"".r��"type."".Rectangle�&°´¯°%�€�ØF1Q¨��œ7‘�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ0"".(*NRGBA64).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��0image/color.NRGBA64Model���"�0image/color.NRGBA64Model���0��� "".~r0�,type.image/color.Model�"".p�� type.*"".NRGBA64� � �ú ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*NRGBA64).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p�� type.*"".NRGBA64�@�@�þ@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ "".(*NRGBA64).At��À��¬eH‹ %(���H‹‰����H;a†²���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$8H·\$f‰\$:H·\$f‰\$<H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$8H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����é*ÿÿÿ������
��."".(*NRGBA64).NRGBA64At���ö��0type.image/color.NRGBA64���Œ��,type.image/color.Color���¤��Zgo.itab.image/color.NRGBA64.image/color.Color���Þ
��runtime.convT2I���š
��0runtime.morestack_noctxt���P€��
"".autotmp_0331�0type.image/color.NRGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�€­€�à�‚*¢� �G™�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*NRGBA64).NRGBA64At��  ��” eH‹ %(���H‹‰����H;a†&��L‹\$L‹T$H‹L$1Û1ÛHƒù�„��L‹I L‹A(H‹y0H‹q8M9ُâ��I9ûÙ��M9ЏÐ��I9òœÀ<�u1Òf‰T$ f‰T$"f‰T$$f‰T$&ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇ�H‹1H‹QL‹AH9׃e��H>f¶HÁãH‰ÇHÿÇH‹1H‹QL‹AH9׃8��H,>f¶m�H ëI‰ÜH‰ÇHƒÇH‹1H‹QL‹AH9׃��H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9׃Ù���H,>f¶m�H ëI‰ÛH‰ÇHƒÇH‹1H‹QL‹AH9׃¨���H>f¶HÁãH‰ÇHƒÇH‹1H‹QL‹AH9×s~H,>f¶m�H ëI‰ÚH‰ÇHƒÇH‹1H‹QL‹AH9×sQH>f¶HÁãH‰ÂHƒÂH‰ÍH‹ H‹EL‹EH9Âs$H,f¶m�H ëfD‰d$ fD‰\$"fD‰T$$f‰\$&Ãè���� è���� è���� è���� è���� è���� è���� è���� 1Àé/þÿÿ‰é÷ýÿÿè����é¶ýÿÿ������ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex��� 
��$runtime.panicindex���®
��$runtime.panicindex���¼
��$runtime.panicindex���Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���‚ 
��0runtime.morestack_noctxt���@��� "".autotmp_0336��0type.image/color.NRGBA64�"".autotmp_0334��type.int� "".~r2�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�Ð�Ð�DŠ+A&PQMI � �úV�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*NRGBA64).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�@�@� ¨;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*NRGBA64).Set��  ��‚ eH‹ %(���H‹‰����H;a†Ý��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„¨��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏o��I9óf��L9׏]��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$0H‰\$è����H‹Œ$€���H‹D$(H·\$0I‰ÙH·\$2H‰ßH·\$4H‰ÞH·\$6H‰ÚI‰ÃIƒÃ�Hƒù�„W��H‹L‹QH‹iM9Óƒ<��JL‰ÍfÁí@ˆ+I‰ÃIÿÃH‹L‹QH‹iM9Óƒ ��JDˆ I‰ÂIƒÂH‹L‹IH‹iM9ʃä���JH‰ýfÁí@ˆ+I‰ÂIƒÂH‹L‹IH‹iM9ʃ´���J@ˆ;I‰ÁIƒÁH‹H‹yH‹iI9ùƒ‹���J H‰õfÁí@ˆ+I‰ÁIƒÁH‹H‹yH‹iI9ùs_J @ˆ3I‰ÀIƒÀH‹9H‹qH‹iI9ðs:JH‰ÕfÁí@ˆ+H‰ÆHƒÆH‰ËH‹ H‹CH‹kH9Æs H1ˆHƒÄxÃè���� è���� è���� è���� è���� è���� è���� è���� ‰é¢þÿÿ1Àé¢ýÿÿA‰éPýÿÿè����éÿüÿÿ������Ê�0image/color.NRGBA64Model���à��0image/color.NRGBA64Model���ð�������º��0type.image/color.NRGBA64���ˆ
��"runtime.assertI2T���Ô

��$runtime.panicindex���â

��$runtime.panicindex���ð

��$runtime.panicindex���þ

��$runtime.panicindex���Œ 
��$runtime.panicindex���š 
��$runtime.panicindex���¨ 
��$runtime.panicindex���¶ 
��$runtime.panicindex���ð 
��0runtime.morestack_noctxt���Pð��$"".autotmp_0366��type.int�"".autotmp_0365��type.int�"".autotmp_0364��type.int�"".autotmp_0363��type.int�"".autotmp_0362��type.int�"".autotmp_0361��type.int�"".autotmp_0360��type.int�"".autotmp_0359��type.int�"".autotmp_0357��type.int�"".autotmp_0355�0type.image/color.NRGBA64�"".autotmp_0354�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�Ÿtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�&ð{ïðŽïðg��f°6_.±3!)")%  ��ø˜�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ0"".(*NRGBA64).SetNRGBA64��À��¸eH‹ %(���H‹‰����H;a†ø��L‹|$L‹t$L·l$ L·d$"L·\$$L·T$&H‹L$1ÛHƒù�„¾��L‹I L‹A(H‹y0H‹q8M9ùž��I9ÿ•��M9ðŒ��I9öœÀ<�uÃH‹Y L‰úH)ÚH‹Y(L‰÷H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇ�H‹1H‹QH‹iH9׃9��H>L‰ífÁí@ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9׃
��H>Dˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃á���H>L‰åfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9׃±���H>Dˆ#H‰ÇHƒÇH‹1H‹QH‹iH9׃ˆ���H>L‰ÝfÁí@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s\H>DˆH‰ÇHƒÇH‹1H‹QH‹iH9×s7H>L‰ÕfÁí@ˆ+H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9ÂsHDˆÃè���� è���� è���� è���� è���� è���� è���� è���� 1Àésþÿÿ‰é;þÿÿè����éäýÿÿ������š
��$runtime.panicindex���¨
��$runtime.panicindex���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���Ò
��$runtime.panicindex���à
��$runtime.panicindex���î
��$runtime.panicindex���ü
��$runtime.panicindex���¦
��0runtime.morestack_noctxt���@���"".autotmp_0385��type.int�"".autotmp_0384��type.int�"".autotmp_0383��type.int�"".autotmp_0382��type.int�"".autotmp_0381��type.int�"".autotmp_0380��type.int�"".autotmp_0379��type.int�"".autotmp_0378��type.int�"".autotmp_0376��type.int�"".c�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64� � �`ÐAA&)!)")%!� �ÌT�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*NRGBA64).SubImage��€ ��ò eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„«��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò0��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÊýÿÿ‰éNýÿÿè����éÇüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".NRGBA64���Œ
��"runtime.newobject���ö��8go.itab.*"".NRGBA64."".Image���Ò�� type.*"".NRGBA64���è��type."".Image���€��8go.itab.*"".NRGBA64."".Image���”
�� runtime.typ2Itab���ô��type."".NRGBA64���†
��"runtime.newobject���ì�6runtime.writeBarrierEnabled���²
��8go.itab.*"".NRGBA64."".Image���Ž �� type.*"".NRGBA64���¤ ��type."".Image���¼ ��8go.itab.*"".NRGBA64."".Image���Ð 
�� runtime.typ2Itab���ˆ 
��.runtime.writebarrierptr���¬ 
��$runtime.panicslice���à 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0404��type.*uint8�"".autotmp_0403�� type.*"".NRGBA64�"".autotmp_0402��type.int�"".autotmp_0401��type.int�"".autotmp_0398�? type.*"".NRGBA64�"".autotmp_0396�� type.*"".NRGBA64�"".autotmp_0395�/type.[]uint8�"".autotmp_0394�� type.*"".NRGBA64�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".NRGBA64�(&À¿¿ÀÝ¿À|�À�Rò8wK›#?MJ - � �Žûyå.+�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*NRGBA64).Opaque��À��¦eH‹ %(���H‹‰����H;a†/��H‹L$Hƒù�„��H‹y H‹q(H‹Q0H‹A8H9׍ô���H9ƝÀ<�tÆD$ÃHƒù�„Ó���H‹Q H‹i(H‹Y0H‹i8H)ÓHÁãIÇÂ���H‰ÚL‹I(H‹Y8L9ËŽ€���L‰ÐH9Ð}XI‰ÀIƒÀ�Hƒù�„���H‹9H‹qH‹iI9ðsjJ¶€ûÿuQI‰ÀIÿÀH‹9H‹qH‹iI9ðsAJ¶€ûÿu/HƒÀH9Ð|¨H‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9Ë€ÆD$ÃÆD$�Ãè���� è���� ‰éxÿÿÿ‰é&ÿÿÿHÇÀ���éÿÿÿ‰éàþÿÿè����é­þÿÿ������¶
��$runtime.panicindex���Ä
��$runtime.panicindex���”
��0runtime.morestack_noctxt��� ���"".autotmp_0414��type.int�"".autotmp_0413��type.int�"".autotmp_0410��type.int�"".autotmp_0409��type.int�"".autotmp_0408��type.int�"".autotmp_0407��type.int� "".~r0�type.bool�"".p�� type.*"".NRGBA64�à�à�H”-+O

 � �šF�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewNRGBA64��€��ôeH‹ %(���H‹‰����HD$èH;A†Q��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uPH‰(H‹l$0HÁåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëžè����é†þÿÿ������”��type.[]uint8���º
��"runtime.makeslice���–��type."".NRGBA64���¨
��"runtime.newobject���ˆ�6runtime.writeBarrierEnabled���Ê
��.runtime.writebarrierptr���â
��0runtime.morestack_noctxt���P°��"".autotmp_0424�? type.*"".NRGBA64�"".autotmp_0423��type.int�"".autotmp_0421��type.int�"".autotmp_0420��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".NRGBA64�"".r��"type."".Rectangle�&°´¯°%�€�¸F1Q¨��œ7‘�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*Alpha).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��,image/color.AlphaModel���"�,image/color.AlphaModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".Alpha� � �Ú ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*Alpha).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".Alpha�@�@�Þ@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*Alpha).At��€��æeH‹ %(���H‹‰����H;a†���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$?H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����éMÿÿÿ������
��&"".(*Alpha).AlphaAt���°��,type.image/color.Alpha���Æ��,type.image/color.Color���Þ��Vgo.itab.image/color.Alpha.image/color.Color���˜
��runtime.convT2I���Ô
��0runtime.morestack_noctxt���P€��
"".autotmp_0425�,type.image/color.Alpha� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�€Š€�À�â*�
�Gy�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*Alpha).AlphaAt��€��ôeH‹ %(���H‹‰����H;a†–���L‹\$L‹T$L‹L$1Û1ÛIƒù�txM‹A I‹y(I‹q0I‹Q8M9Ø_I9ó}ZL9×UI9ÒœÀ<�u1ۈ\$ ÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊ1ÛI‹ I‹AI‹iH9Âs H¶ˆ\$ Ãè���� 1Àë­A‰ëƒè����éFÿÿÿ������Â
��$runtime.panicindex���â
��0runtime.morestack_noctxt���@��� "".autotmp_0430��,type.image/color.Alpha�"".autotmp_0428��type.int� "".~r2�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�À�À� ê+1% � �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*Alpha).PixOffset��€��bH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�@�@� þ;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*Alpha).Set�� ��’eH‹ %(���H‹‰����H;a†e��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„0��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏÷���I9óî���L9׏å���I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝHËH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$/H‰\$è����H‹œ$€���Hƒû�t-H‹ H‹CH‹kH‹l$0H9ÅsH)¶l$/@ˆ+HƒÄxÃè���� ‰ëÏ1ÀéÿÿÿA‰éÈþÿÿè����éwþÿÿ������¼�,image/color.AlphaModel���Ò��,image/color.AlphaModel���â�������Œ��,type.image/color.Alpha���Ú
��"runtime.assertI2T���Ì
��$runtime.panicindex���€
��0runtime.morestack_noctxt���Pð��"".autotmp_0436��type.int�"".autotmp_0434�‘,type.image/color.Alpha�"".autotmp_0433�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�&ð{ïðÊïð+��*†6_'Ÿ ��ñŸ�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*Alpha).SetAlpha��€��âeH‹ %(���H‹‰����H;a†���L‹\$L‹T$L‹L$1ÛIƒù�tqM‹A I‹y(I‹q0I‹Q8M9ØXI9ó}SL9×NI9ÒœÀ<�uÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9Âs H¶l$ @ˆ+Ãè���� 1Àë´A‰ëŠè����éOÿÿÿ������°
��$runtime.panicindex���Ð
��0runtime.morestack_noctxt���@���
"".autotmp_0440��type.int�"".c�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�À�À�(–)1 � �—)�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*Alpha).SubImage��€ ��ä eH‹ %(���H‹‰����HD$àH;A† ��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„¤��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò)��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅHÐL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÑýÿÿ‰éUýÿÿè����éÎüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".Alpha���Œ
��"runtime.newobject���ö��4go.itab.*"".Alpha."".Image���Ò��type.*"".Alpha���è��type."".Image���€��4go.itab.*"".Alpha."".Image���”
�� runtime.typ2Itab���æ��type."".Alpha���ø
��"runtime.newobject���Þ�6runtime.writeBarrierEnabled���¤
��4go.itab.*"".Alpha."".Image���€ ��type.*"".Alpha���– ��type."".Image���® ��4go.itab.*"".Alpha."".Image��� 
�� runtime.typ2Itab���ú 
��.runtime.writebarrierptr���ž 
��$runtime.panicslice���Ò 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0453��type.*uint8�"".autotmp_0452��type.*"".Alpha�"".autotmp_0451��type.int�"".autotmp_0450��type.int�"".autotmp_0447�?type.*"".Alpha�"".autotmp_0445��type.*"".Alpha�"".autotmp_0444�/type.[]uint8�"".autotmp_0443��type.*"".Alpha�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Alpha�*&À¿¿ÀÖ¿Àƒ�À�Rª8wK›?MJ - � �Žûrå.2�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*Alpha).Opaque�� ��žeH‹ %(���H‹‰����H;a†ë���H‹L$Hƒù�„Õ���H‹y H‹q(H‹Q0H‹A8H9׍°���H9ƝÀ<�tÆD$ÃHƒù�„���H‹Q H‹i(H‹Y0H‹i8H)ÓE1ÒH‰ÚL‹I(H‹Y8L9Ë~XL‰ÐH9Ð}0Hƒù�tWH‹9H‹qH‹iH9ðs@H¶€ûÿtÆD$�ÃHÿÀH9Ð|ÐH‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9˨ÆD$Ãè���� ‰륉éjÿÿÿHÇÀ���éJÿÿÿ‰é$ÿÿÿè����éñþÿÿ������Â
��$runtime.panicindex���Œ
��0runtime.morestack_noctxt��� ���"".autotmp_0462��type.int�"".autotmp_0459��type.int�"".autotmp_0458��type.int�"".autotmp_0457��type.int�"".autotmp_0456��type.int� "".~r0�type.bool�"".p��type.*"".Alpha���HÌ-# "

  � �à0�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewAlpha��€��äeH‹ %(���H‹‰����HD$èH;A†I��Hì˜���L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uLH‰(H‹l$0H‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xë¢è����éŽþÿÿ������Œ��type.[]uint8���²
��"runtime.makeslice���Ž��type."".Alpha��� 
��"runtime.newobject���€�6runtime.writeBarrierEnabled���º
��.runtime.writebarrierptr���Ò
��0runtime.morestack_noctxt���P°��"".autotmp_0469�?type.*"".Alpha�"".autotmp_0468��type.int�"".autotmp_0466��type.int�"".autotmp_0465��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Alpha�"".r��"type."".Rectangle�&°¬¯°-�€�ðF1M¤��˜7$�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ0"".(*Alpha16).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��0image/color.Alpha16Model���"�0image/color.Alpha16Model���0��� "".~r0�,type.image/color.Model�"".p�� type.*"".Alpha16� � �’ ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*Alpha16).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p�� type.*"".Alpha16�@�@�– @��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ "".(*Alpha16).At��€��êeH‹ %(���H‹‰����H;a†‘���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$>H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����éKÿÿÿ������
��."".(*Alpha16).Alpha16At���´��0type.image/color.Alpha16���Ê��,type.image/color.Color���â��Zgo.itab.image/color.Alpha16.image/color.Color���œ
��runtime.convT2I���Ø
��0runtime.morestack_noctxt���P€��
"".autotmp_0470�0type.image/color.Alpha16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�€Œ€�À�š *�
�Gy�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*Alpha16).Alpha16At�� ��žeH‹ %(���H‹‰����H;a†ë���L‹\$L‹T$H‹L$1Û1ÛHƒù�„Ç���L‹I L‹A(H‹y0H‹q8M9ُ§���I9ûž���M9Џ•���I9òœÀ<�u1Ûf‰\$ ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÑåHè1ÛH‰ÇHƒÇ�H‹1H‹QL‹AH9×s>H>f¶HÁãH‰ÂHÿÂH‰ÍH‹ H‹EL‹EH9ÂsH,f¶m�H ëf‰\$ Ãè���� è���� 1Àéjÿÿÿ‰é2ÿÿÿè����éñþÿÿ������Ô
��$runtime.panicindex���â
��$runtime.panicindex���Œ
��0runtime.morestack_noctxt���@��� "".autotmp_0475��0type.image/color.Alpha16�"".autotmp_0473��type.int� "".~r2�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16��� ¢ +A%^ � �é'�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*Alpha16).PixOffset��€��nH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÑåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�@�@� ¶ ;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*Alpha16).Set�� ��ŒeH‹ %(���H‹‰����H;a†¢��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„m��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏4��I9ó+��L9׏"��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÑåHëH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$.H‰\$è����L‹Œ$€���H‹t$0H·\$.H‰ØH‰÷HƒÆ�Iƒù�tMI‹I‹II‹iH9Îs6H2H‰ÅfÁí@ˆ+H‰þHÿÆI‹I‹II‹iH9Îs H2ˆHƒÄxÃè���� è���� A‰ë®1ÀéÝþÿÿA‰é‹þÿÿè����é:þÿÿ������È�0image/color.Alpha16Model���Þ��0image/color.Alpha16Model���î�������š��0type.image/color.Alpha16���è
��"runtime.assertI2T���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���ú
��0runtime.morestack_noctxt���Pð��"".autotmp_0487��type.int�"".autotmp_0486��type.int�"".autotmp_0484��type.int�"".autotmp_0482�“0type.image/color.Alpha16�"".autotmp_0481�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�&ð{ïðÿïð6�Ð�6¾ 6_-‡+ ��÷Ù�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ0"".(*Alpha16).SetAlpha16�� ��„eH‹ %(���H‹‰����H;a†Þ���L‹d$L‹\$L·T$ H‹L$1ÛHƒù�„¶���L‹I L‹A(H‹y0H‹q8M9Ꮦ���I9ü���M9؏„���I9óœÀ<�uÃH‹Y L‰âH)ÚH‹Y(L‰ßH)ßH‹iH¯ýH‰ÕHÑåHïH‰øHƒÇ�H‹1H‹QH‹iH9×s6H>L‰ÕfÁí@ˆ+H‰ÂHÿÂH‰ËH‹ H‹CH‹kH9ÂsHDˆÃè���� è���� 1Àé{ÿÿÿ‰éCÿÿÿè����éþþÿÿ������º
��$runtime.panicindex���È
��$runtime.panicindex���ò
��0runtime.morestack_noctxt���@���"".autotmp_0494��type.int�"".autotmp_0493��type.int�"".autotmp_0491��type.int�"".c�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16���0Ò /A%% � �Ü4�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*Alpha16).SubImage��€ ��ð eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„ª��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò/��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÑåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éËýÿÿ‰éOýÿÿè����éÈüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".Alpha16���Œ
��"runtime.newobject���ö��8go.itab.*"".Alpha16."".Image���Ò�� type.*"".Alpha16���è��type."".Image���€��8go.itab.*"".Alpha16."".Image���”
�� runtime.typ2Itab���ò��type."".Alpha16���„
��"runtime.newobject���ê�6runtime.writeBarrierEnabled���°
��8go.itab.*"".Alpha16."".Image���Œ �� type.*"".Alpha16���¢ ��type."".Image���º ��8go.itab.*"".Alpha16."".Image���Î 
�� runtime.typ2Itab���† 
��.runtime.writebarrierptr���ª 
��$runtime.panicslice���Þ 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0507��type.*uint8�"".autotmp_0506�� type.*"".Alpha16�"".autotmp_0505��type.int�"".autotmp_0504��type.int�"".autotmp_0501�? type.*"".Alpha16�"".autotmp_0499�� type.*"".Alpha16�"".autotmp_0498�/type.[]uint8�"".autotmp_0497�� type.*"".Alpha16�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".Alpha16�(&À¿¿ÀÜ¿À}�À�Rè 8wK›"?MJ - � �Žûxå.,�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*Alpha16).Opaque�� ��œeH‹ %(���H‹‰����H;a†*��H‹L$Hƒù�„��H‹y H‹q(H‹Q0H‹A8H9׍ï���H9ƝÀ<�tÆD$ÃHƒù�„Î���H‹Q H‹i(H‹Y0H‹i8H)ÓHÑãE1ÒH‰ÚL‹I(H‹Y8L9ËŽ€���L‰ÐH9Ð}XI‰ÀIƒÀ�Hƒù�„���H‹9H‹qH‹iI9ðsjJ¶€ûÿuQI‰ÀIÿÀH‹9H‹qH‹iI9ðsAJ¶€ûÿu/HƒÀH9Ð|¨H‹YLÓI‰ÚH‹YHÓH‰ÚIÿÁH‹Y8L9Ë€ÆD$ÃÆD$�Ãè���� è���� ‰éxÿÿÿ‰é+ÿÿÿHÇÀ���é ÿÿÿ‰éåþÿÿè����é²þÿÿ������¬
��$runtime.panicindex���º
��$runtime.panicindex���Š
��0runtime.morestack_noctxt��� ���"".autotmp_0517��type.int�"".autotmp_0516��type.int�"".autotmp_0513��type.int�"".autotmp_0512��type.int�"".autotmp_0511��type.int�"".autotmp_0510��type.int� "".~r0�type.bool�"".p�� type.*"".Alpha16�Ð�Ð�HŠ
-&O

  � �•;�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewAlpha16��€��ðeH‹ %(���H‹‰����HD$èH;A†O��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uOH‰(H‹l$0HÑåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëŸè����éˆþÿÿ������’��type.[]uint8���¸
��"runtime.makeslice���”��type."".Alpha16���¦
��"runtime.newobject���†�6runtime.writeBarrierEnabled���Æ
��.runtime.writebarrierptr���Þ
��0runtime.morestack_noctxt���P°��"".autotmp_0527�? type.*"".Alpha16�"".autotmp_0526��type.int�"".autotmp_0524��type.int�"".autotmp_0523��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".Alpha16�"".r��"type."".Rectangle�&°²¯°'�€�®
F1P§��›7�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*Gray).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��*image/color.GrayModel���"�*image/color.GrayModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".Gray� � �Ð
��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*Gray).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".Gray�@�@�Ô
@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*Gray).At��€��æeH‹ %(���H‹‰����H;a†���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$?H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����éMÿÿÿ������
��""".(*Gray).GrayAt���°��*type.image/color.Gray���Æ��,type.image/color.Color���Þ��Tgo.itab.image/color.Gray.image/color.Color���˜
��runtime.convT2I���Ô
��0runtime.morestack_noctxt���P€��
"".autotmp_0528�*type.image/color.Gray� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�€Š€�À�Ø
*�
�Gy�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*Gray).GrayAt��€��ôeH‹ %(���H‹‰����H;a†–���L‹\$L‹T$L‹L$1Û1ÛIƒù�txM‹A I‹y(I‹q0I‹Q8M9Ø_I9ó}ZL9×UI9ÒœÀ<�u1ۈ\$ ÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊ1ÛI‹ I‹AI‹iH9Âs H¶ˆ\$ Ãè���� 1Àë­A‰ëƒè����éFÿÿÿ������Â
��$runtime.panicindex���â
��0runtime.morestack_noctxt���@��� "".autotmp_0533��*type.image/color.Gray�"".autotmp_0531��type.int� "".~r2�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�À�À� à
+1% � �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*Gray).PixOffset��€��bH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�@�@� ô
;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*Gray).Set�� ��’eH‹ %(���H‹‰����H;a†e��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„0��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏÷���I9óî���L9׏å���I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝHËH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$/H‰\$è����H‹œ$€���Hƒû�t-H‹ H‹CH‹kH‹l$0H9ÅsH)¶l$/@ˆ+HƒÄxÃè���� ‰ëÏ1ÀéÿÿÿA‰éÈþÿÿè����éwþÿÿ������¼�*image/color.GrayModel���Ò��*image/color.GrayModel���â�������Œ��*type.image/color.Gray���Ú
��"runtime.assertI2T���Ì
��$runtime.panicindex���€
��0runtime.morestack_noctxt���Pð��"".autotmp_0539��type.int�"".autotmp_0537�‘*type.image/color.Gray�"".autotmp_0536�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�&ð{ïðÊïð+��*ü
6_'Ÿ ��ñŸ�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*Gray).SetGray��€��âeH‹ %(���H‹‰����H;a†���L‹\$L‹T$L‹L$1ÛIƒù�tqM‹A I‹y(I‹q0I‹Q8M9ØXI9ó}SL9×NI9ÒœÀ<�uÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9Âs H¶l$ @ˆ+Ãè���� 1Àë´A‰ëŠè����éOÿÿÿ������°
��$runtime.panicindex���Ð
��0runtime.morestack_noctxt���@���
"".autotmp_0543��type.int�"".c�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�À�À�(Œ )1 � �—)�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*Gray).SubImage��€ ��ä eH‹ %(���H‹‰����HD$àH;A† ��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„¤��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò)��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅHÐL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÑýÿÿ‰éUýÿÿè����éÎüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".Gray���Œ
��"runtime.newobject���ö��2go.itab.*"".Gray."".Image���Ò��type.*"".Gray���è��type."".Image���€��2go.itab.*"".Gray."".Image���”
�� runtime.typ2Itab���æ��type."".Gray���ø
��"runtime.newobject���Þ�6runtime.writeBarrierEnabled���¤
��2go.itab.*"".Gray."".Image���€ ��type.*"".Gray���– ��type."".Image���® ��2go.itab.*"".Gray."".Image��� 
�� runtime.typ2Itab���ú 
��.runtime.writebarrierptr���ž 
��$runtime.panicslice���Ò 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0556��type.*uint8�"".autotmp_0555��type.*"".Gray�"".autotmp_0554��type.int�"".autotmp_0553��type.int�"".autotmp_0550�?type.*"".Gray�"".autotmp_0548��type.*"".Gray�"".autotmp_0547�/type.[]uint8�"".autotmp_0546��type.*"".Gray�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray�*&À¿¿ÀÖ¿Àƒ�À�R  8wK›?MJ - � �Žûrå.2�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*Gray).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".Gray���Ä ��Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewGray��€��äeH‹ %(���H‹‰����HD$èH;A†I��Hì˜���L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uLH‰(H‹l$0H‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xë¢è����éŽþÿÿ������Œ��type.[]uint8���²
��"runtime.makeslice���Ž��type."".Gray��� 
��"runtime.newobject���€�6runtime.writeBarrierEnabled���º
��.runtime.writebarrierptr���Ò
��0runtime.morestack_noctxt���P°��"".autotmp_0564�?type.*"".Gray�"".autotmp_0563��type.int�"".autotmp_0561��type.int�"".autotmp_0560��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray�"".r��"type."".Rectangle�&°¬¯°-�€�Ì F1M¤��˜7$�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*Gray16).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��.image/color.Gray16Model���"�.image/color.Gray16Model���0��� "".~r0�,type.image/color.Model�"".p��type.*"".Gray16� � �î ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*Gray16).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".Gray16�@�@�ò @��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*Gray16).At��€��êeH‹ %(���H‹‰����H;a†‘���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$>H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����éKÿÿÿ������
��*"".(*Gray16).Gray16At���´��.type.image/color.Gray16���Ê��,type.image/color.Color���â��Xgo.itab.image/color.Gray16.image/color.Color���œ
��runtime.convT2I���Ø
��0runtime.morestack_noctxt���P€��
"".autotmp_0565�.type.image/color.Gray16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�€Œ€�À�ö *�
�Gy�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*Gray16).Gray16At�� ��žeH‹ %(���H‹‰����H;a†ë���L‹\$L‹T$H‹L$1Û1ÛHƒù�„Ç���L‹I L‹A(H‹y0H‹q8M9ُ§���I9ûž���M9Џ•���I9òœÀ<�u1Ûf‰\$ ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÑåHè1ÛH‰ÇHƒÇ�H‹1H‹QL‹AH9×s>H>f¶HÁãH‰ÂHÿÂH‰ÍH‹ H‹EL‹EH9ÂsH,f¶m�H ëf‰\$ Ãè���� è���� 1Àéjÿÿÿ‰é2ÿÿÿè����éñþÿÿ������Ô
��$runtime.panicindex���â
��$runtime.panicindex���Œ
��0runtime.morestack_noctxt���@��� "".autotmp_0570��.type.image/color.Gray16�"".autotmp_0568��type.int� "".~r2�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16��� þ +A%^ � �é'�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*Gray16).PixOffset��€��nH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÑåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�@�@� ’ ;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ "".(*Gray16).Set�� ��ŒeH‹ %(���H‹‰����H;a†¢��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„m��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏4��I9ó+��L9׏"��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÑåHëH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$.H‰\$è����L‹Œ$€���H‹t$0H·\$.H‰ØH‰÷HƒÆ�Iƒù�tMI‹I‹II‹iH9Îs6H2H‰ÅfÁí@ˆ+H‰þHÿÆI‹I‹II‹iH9Îs H2ˆHƒÄxÃè���� è���� A‰ë®1ÀéÝþÿÿA‰é‹þÿÿè����é:þÿÿ������È�.image/color.Gray16Model���Þ��.image/color.Gray16Model���î�������š��.type.image/color.Gray16���è
��"runtime.assertI2T���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���ú
��0runtime.morestack_noctxt���Pð��"".autotmp_0582��type.int�"".autotmp_0581��type.int�"".autotmp_0579��type.int�"".autotmp_0577�“.type.image/color.Gray16�"".autotmp_0576�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�&ð{ïðÿïð6�Ð�6š 6_-‡+ ��÷Ù�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ,"".(*Gray16).SetGray16�� ��„eH‹ %(���H‹‰����H;a†Þ���L‹d$L‹\$L·T$ H‹L$1ÛHƒù�„¶���L‹I L‹A(H‹y0H‹q8M9Ꮦ���I9ü���M9؏„���I9óœÀ<�uÃH‹Y L‰âH)ÚH‹Y(L‰ßH)ßH‹iH¯ýH‰ÕHÑåHïH‰øHƒÇ�H‹1H‹QH‹iH9×s6H>L‰ÕfÁí@ˆ+H‰ÂHÿÂH‰ËH‹ H‹CH‹kH9ÂsHDˆÃè���� è���� 1Àé{ÿÿÿ‰éCÿÿÿè����éþþÿÿ������º
��$runtime.panicindex���È
��$runtime.panicindex���ò
��0runtime.morestack_noctxt���@���"".autotmp_0589��type.int�"".autotmp_0588��type.int�"".autotmp_0586��type.int�"".c�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16���0® /A%% � �Ü4�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*Gray16).SubImage��€ ��ð eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„ª��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò/��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÑåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éËýÿÿ‰éOýÿÿè����éÈüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".Gray16���Œ
��"runtime.newobject���ö��6go.itab.*"".Gray16."".Image���Ò��type.*"".Gray16���è��type."".Image���€��6go.itab.*"".Gray16."".Image���”
�� runtime.typ2Itab���ò��type."".Gray16���„
��"runtime.newobject���ê�6runtime.writeBarrierEnabled���°
��6go.itab.*"".Gray16."".Image���Œ ��type.*"".Gray16���¢ ��type."".Image���º ��6go.itab.*"".Gray16."".Image���Î 
�� runtime.typ2Itab���† 
��.runtime.writebarrierptr���ª 
��$runtime.panicslice���Þ 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0602��type.*uint8�"".autotmp_0601��type.*"".Gray16�"".autotmp_0600��type.int�"".autotmp_0599��type.int�"".autotmp_0596�?type.*"".Gray16�"".autotmp_0594��type.*"".Gray16�"".autotmp_0593�/type.[]uint8�"".autotmp_0592��type.*"".Gray16�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray16�(&À¿¿ÀÜ¿À}�À�RÄ 8wK›"?MJ - � �Žûxå.,�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*Gray16).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".Gray16���è ��Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewGray16��€��ðeH‹ %(���H‹‰����HD$èH;A†O��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uOH‰(H‹l$0HÑåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëŸè����éˆþÿÿ������’��type.[]uint8���¸
��"runtime.makeslice���”��type."".Gray16���¦
��"runtime.newobject���†�6runtime.writeBarrierEnabled���Æ
��.runtime.writebarrierptr���Þ
��0runtime.morestack_noctxt���P°��"".autotmp_0610�?type.*"".Gray16�"".autotmp_0609��type.int�"".autotmp_0607��type.int�"".autotmp_0606��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray16�"".r��"type."".Rectangle�&°²¯°'�€�ð F1P§��›7�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*CMYK).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��*image/color.CMYKModel���"�*image/color.CMYKModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".CMYK� � �’ ��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*CMYK).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".CMYK�@�@�– @��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*CMYK).At�� ��œeH‹ %(���H‹‰����H;a†ª���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$<H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����é2ÿÿÿ������
��""".(*CMYK).CMYKAt���æ��*type.image/color.CMYK���ü��,type.image/color.Color���”��Tgo.itab.image/color.CMYK.image/color.Color���Î
��runtime.convT2I���Š
��0runtime.morestack_noctxt���P€��
"".autotmp_0611�*type.image/color.CMYK� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�€¥€ �Ð�š *š � �G‰�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*CMYK).CMYKAt��€��ìeH‹ %(���H‹‰����H;a†R��L‹\$L‹T$H‹L$1Û1ÛHƒù�„.��L‹I L‹A(H‹y0H‹q8M9ُ��I9û��M9Џü���I9òœÀ<�u1҈T$ ˆT$!ˆT$"ˆT$#ÃH‹Y L‰ÚH)ÚH‹Y(L‰ÐH)ØH‹iH¯ÅH‰ÕHÁåHè1ÛH‰ÇHƒÇ�H‹1H‹QH‹iH9׃•���H>¶I‰ÚH‰ÇHÿÇH‹1H‹QH‹iH9×snH>¶I‰ÙH‰ÇHƒÇH‹1H‹QH‹iH9×sFH>¶H‰ÞH‰ÂHƒÂH‰ËH‹ H‹CH‹kH9ÂsH¶DˆT$ DˆL$!@ˆt$"ˆ\$#Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éËþÿÿè����éŠþÿÿ ������†
��$runtime.panicindex���”
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���@��� "".autotmp_0616��*type.image/color.CMYK�"".autotmp_0614��type.int� "".~r2�0*type.image/color.CMYK�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�€�€�"¢ +A&¹� �Â>�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ("".(*CMYK).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�@�@� ¶ ;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".(*CMYK).Set��€ ��ìeH‹ %(���H‹‰����H;a†��HƒìxL‹œ$ˆ���L‹”$���L‹Œ$€���1ÛL‰T$@Iƒù�„Ý��M‹A I‹y(H‰|$PI‹q0H‰t$XI‹Q8H‰T$`L‰D$HL‰\$8M9؏¤��I9ó›��L9׏’��I9ÒœÀ<�uHƒÄxÃI‹Y L‰ÙH)ÙI‹Y(L‰ÕH)ÝH‰ëI‹iH¯ÝH‰ÍHÁåHëH‰\$0H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/H����H‰$H‰L$hH‰L$H‰D$pH‰D$H\$,H‰\$è����H‹Œ$€���H‹D$0¶\$,I‰Û¶\$-I‰Ú¶\$.I‰Ù¶\$/H‰ßI‰ÀIƒÀ�Hƒù�„”���H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆ H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H@ˆ;HƒÄxÃè���� è���� è���� è���� ‰éeÿÿÿ1ÀémþÿÿA‰éþÿÿè����éÊýÿÿ������Ê�*image/color.CMYKModel���à��*image/color.CMYKModel���ð�������²��*type.image/color.CMYK���€
��"runtime.assertI2T���ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex��� 
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���Pð��"".autotmp_0634��type.int�"".autotmp_0633��type.int�"".autotmp_0632��type.int�"".autotmp_0631��type.int�"".autotmp_0629��type.int�"".autotmp_0627�—*type.image/color.CMYK�"".autotmp_0626�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�&ð{ïðßïðF�À�F¾ 6_.©(! ��øÈ�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*CMYK).SetCMYK��À��°eH‹ %(���H‹‰����H;a†4��L‹\$L‹T$H‹L$1ÛHƒù�„��L‹I L‹A(H‹y0H‹q8M9ُò���I9ûé���M9Џà���I9òœÀ<�uÃH‹Y L‰ÚH)ÚH‹Y(L‰×H)ßH‹iH¯ýH‰ÕHÁåHïH‰øHƒÇ�H‹1H‹QH‹iH9׃���H>¶l$ @ˆ+H‰ÇHÿÇH‹1H‹QH‹iH9×sdH>¶l$!@ˆ+H‰ÇHƒÇH‹1H‹QH‹iH9×s:H>¶l$"@ˆ+H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H¶l$#@ˆ+Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éçþÿÿè����é¨þÿÿ ������Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���æ
��$runtime.panicindex���ô
��$runtime.panicindex���ž
��0runtime.morestack_noctxt���@���"".autotmp_0645��type.int�"".autotmp_0644��type.int�"".autotmp_0643��type.int�"".autotmp_0642��type.int�"".autotmp_0640��type.int�"".c�0*type.image/color.CMYK�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�à�à�@Ö )A&'"#&� �¤<�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ&"".(*CMYK).SubImage��€ ��ò eH‹ %(���H‹‰����HD$àH;A†��Hì ���1ÛH‰œ$Ð���H‰œ$Ø���H‹œ$°���H‰$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$H‹´$¨���Hƒþ�„«��H^ H|$ H‰Þè����è����L‹Œ$¨���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$°���H‰Œ$¸���H‰L$hH‰´$À���H‰„$È���H‰D$xH‰T$`H‰t$pH9ò0��H9ÁÀ<�„›���H����H‰$è����H‹D$1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±I‹Y H)ÚI‹Y(H‰ÈH)ØI‹iH¯ÅH‰ÕHÁåHèL‰ËM‹AM‹IL9À‡I��L‹I)ÀI)ÁIƒù�tML‰„$���L‰Œ$˜���L‰”$ˆ���H����H‰$è����H‹D$H‰„$€���H‹¬$���H‰hH‹¬$˜���H‰hH‹¬$ˆ���€=�����…¹���H‰(Hƒø�„¥���L‹„$¨���I‹hH‰hH‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$À���H‰h0H‹¬$È���H‰h8H‰„$€���H‹����1íH9èt H‹œ$€���H‰œ$Ø���H‰„$Ð���HÄ ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éTÿÿÿH‰$H‰l$è����H‹„$€���é/ÿÿÿè���� HÇÀ���éÊýÿÿ‰éNýÿÿè����éÇüÿÿ*������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú��type."".CMYK���Œ
��"runtime.newobject���ö��2go.itab.*"".CMYK."".Image���Ò��type.*"".CMYK���è��type."".Image���€��2go.itab.*"".CMYK."".Image���”
�� runtime.typ2Itab���ô��type."".CMYK���†
��"runtime.newobject���ì�6runtime.writeBarrierEnabled���²
��2go.itab.*"".CMYK."".Image���Ž ��type.*"".CMYK���¤ ��type."".Image���¼ ��2go.itab.*"".CMYK."".Image���Ð 
�� runtime.typ2Itab���ˆ 
��.runtime.writebarrierptr���¬ 
��$runtime.panicslice���à 
��0runtime.morestack_noctxt���pÀ��"".autotmp_0660��type.*uint8�"".autotmp_0659��type.*"".CMYK�"".autotmp_0658��type.int�"".autotmp_0657��type.int�"".autotmp_0654�?type.*"".CMYK�"".autotmp_0652��type.*"".CMYK�"".autotmp_0651�/type.[]uint8�"".autotmp_0650��type.*"".CMYK�"".r�"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".CMYK�(&À¿¿ÀÝ¿À|�À�Rð 8wK›#?MJ - � �Žûyå.+�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*CMYK).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".CMYK���”��Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewCMYK��€��ôeH‹ %(���H‹‰����HD$èH;A†Q��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‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����uPH‰(H‹l$0HÁåH‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���HÄ˜���ÃH‰$H‰l$è����H‹D$xëžè����é†þÿÿ������”��type.[]uint8���º
��"runtime.makeslice���–��type."".CMYK���¨
��"runtime.newobject���ˆ�6runtime.writeBarrierEnabled���Ê
��.runtime.writebarrierptr���â
��0runtime.morestack_noctxt���P°��"".autotmp_0668�?type.*"".CMYK�"".autotmp_0667��type.int�"".autotmp_0665��type.int�"".autotmp_0664��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".buf�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".CMYK�"".r��"type."".Rectangle�&°´¯°%�€�œF1Q¨��œ7‘�Tgclocals·c7e46dd432d705036367d637fd33d432�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ2"".(*Paletted).ColorModel��À��¶eH‹ %(���H‹‰����H;av{Hƒì81ÛH‰\$HH‰\$PH����H‰$H����H‰\$H����H‰\$H‹\$@H‰\$Hƒ|$�t-HƒD$@HÇD$ ����è����H‹\$(H‰\$HH‹\$0H‰\$PHƒÄ8É%����ëÊè����éeÿÿÿ ������R��0type.image/color.Palette���h��,type.image/color.Model���€��Zgo.itab.image/color.Palette.image/color.Model���Ö
��runtime.convT2I���¤
��0runtime.morestack_noctxt���0p�� "".~r0�,type.image/color.Model�"".p��"type.*"".Paletted�pmop� �
 �
�j6�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*Paletted).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k H‰l$H‹k(H‰l$H‹k0H‰l$ H‹k8H‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��"type.*"".Paletted�@�@�Æ@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ""".(*Paletted).At��€��€eH‹ %(���H‹‰����H;a†��L‹\$L‹T$H‹D$1ÛH‹hHHƒý�u 1ÛH‰\$ H‰\$(Ã1ÛL‹H L‹@(H‹x0H‹p8M9ُÒ���I9ûÉ���M9ЏÀ���I9òœÁ€ù�u8H‰ÃHƒø�t+H‹H@H‹@HH‹kPHƒø�vH‹)H‰l$ H‹iH‰l$(Ãè���� ‰�ëÑH‹X L‰ÞH)ÞH‹X(L‰ÕH)ÝH‰ëH‹hH¯ÝHóH‹H‹HH‹hH9ËsDH¶+H‰éH‰ÃH‹P@H‹@HH‹kPH‰Ó¶éH9ÅsHÁåHëH‹+H‰l$ H‹kH‰l$(Ãè���� è���� 1Éé?ÿÿÿè����éÀþÿÿ
������Ð
��$runtime.panicindex���Ä
��$runtime.panicindex���Ò
��$runtime.panicindex���î
��0runtime.morestack_noctxt���P��� "".autotmp_0672��type.int�"".autotmp_0671��type.int� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�À�À�(Ê+
 88"[
��§™�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ0"".(*Paletted).PixOffset��€��bH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�@�@� ä;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*Paletted).Set�� ��”eH‹ %(���H‹‰����H;a†&��HƒìhL‹\$xL‹”$€���H‹|$p1ÛL‰T$@Hƒÿ�„ø���L‹O L‹G(L‰D$PH‹w0H‰t$XH‹W8H‰T$`L‰L$HL‰\$8M9ُ¿���I9ó¶���M9Џ­���I9ÒœÀ<�uHƒÄhÃH‹_ L‰ÙH)ÙH‹_(L‰ÕH)ÝH‰ëH‹oH¯ÝHËH‰\$0H_@H‹ H‰ $H‹KH‰L$H‹KH‰L$H‹œ$ˆ���H‰\$H‹œ$���H‰\$ è����H‹T$(H‹\$pHƒû�t'H‹ H‹CH‹kH‹l$0H9Ås H)ˆHƒÄhÃè���� ‰ëÕ1ÀéRÿÿÿ‰éÿÿÿè����é¶þÿÿ������æ
��2image/color.Palette.Index���Ð
��$runtime.panicindex���‚
��0runtime.morestack_noctxt���PÐ��"".autotmp_0680��type.int�"".autotmp_0678��type.int�"".r�?"type."".Rectangle�"".p�_type."".Point�"".i�otype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�&ÐuÏÐ’ÏÐ)�Ð�(ì0_'g � �ò^�Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ6"".(*Paletted).ColorIndexAt��€��ìeH‹ %(���H‹‰����H;a†’���L‹\$L‹T$L‹L$1ÛIƒù�tvM‹A I‹y(I‹q0I‹Q8M9Ø]I9ó}XL9×SI9ÒœÀ<�uÆD$ �ÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9Âs H¶+@ˆl$ Ãè���� 1Àë¯A‰ë…è����éJÿÿÿ������º
��$runtime.panicindex���Ú
��0runtime.morestack_noctxt���@���
"".autotmp_0684��type.int� "".~r2�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�À�À� ü)1$ � �œ$�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ8"".(*Paletted).SetColorIndex��€��âeH‹ %(���H‹‰����H;a†���L‹\$L‹T$L‹L$1ÛIƒù�tqM‹A I‹y(I‹q0I‹Q8M9ØXI9ó}SL9×NI9ÒœÀ<�uÃI‹Y L‰ÙH)ÙI‹Y(L‰ÒH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9Âs H¶l$ @ˆ+Ãè���� 1Àë´A‰ëŠè����éOÿÿÿ������°
��$runtime.panicindex���Ð
��0runtime.morestack_noctxt���@���
"".autotmp_0688��type.int�"".index�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�À�À�(Œ)1 � �—)�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/image.goþ."".(*Paletted).SubImage��€��þeH‹ %(���H‹‰����HD$ÀH;A†��HìÀ���1ÛH‰œ$ð���H‰œ$ø���H‹œ$Ð���H‰$H‹œ$Ø���H‰\$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹´$È���Hƒþ�„±��H^ H|$ H‰Þè����è����H‹¼$È���L‹\$@H‹T$HL‹l$PL‹d$XL‰œ$Ð���H‰”$Ø���H‰T$hL‰¬$à���L‰¤$è���L‰d$xL‰\$`L‰l$pM9ë6��L9âÀ<�„õ���H����H‰$è����H‹|$H‰ùHƒÿ�„Ì���1ÀHƒÇøè����H‹œ$È���Hƒû�„¨���Hk@H‰Œ$ ���Hƒù�„‹���LA@L‰D$H‰l$H-����H‰,$è����H‹œ$ ���H‰œ$ ���H‹����1íH9èt H‹œ$ ���H‰œ$ø���H‰„$ð���HÄÀ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉énÿÿÿ‰éQÿÿÿ‰é-ÿÿÿH‰ÑH‹_ L‰ÞH)ÞH‹_(H‰ÐH)ØH‹oH¯ÅHðL‹GL‹OL9À‡ù��L‹I)ÀI)ÁIƒù�tML‰„$°���L‰Œ$¸���L‰”$¨���Hƒÿ�„½��H_ H‰çH‰Þè����L‰\$ H‰T$(L‰l$0L‰d$8è����H‹\$@H‰œ$€���H‹\$HH‰œ$ˆ���H‹\$PH‰œ$���H‹\$XH‰œ$˜���H����H‰$è����H‹D$H‰„$ ���H‹¬$°���H‰hH‹¬$¸���H‰hH‹¬$¨���€=�����…ü���H‰(Hƒø�„è���L‹„$È���I‹hH‰hH‹¬$€���H‰h H‹¬$ˆ���H‰h(H‹¬$���H‰h0H‹¬$˜���H‰h8H‹œ$È���Hƒû�„���Hk@L@@L‰D$H‰l$H-����H‰,$è����H‹œ$ ���H‰œ$ ���H‹����1íH9èt H‹œ$ ���H‰œ$ø���H‰„$ð���HÄÀ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉éjÿÿÿ‰�éÿÿÿH‰$H‰l$è����H‹„$ ���éìþÿÿ‰é<þÿÿè���� HÇÀ���éÄüÿÿ‰éHüÿÿè����éÁûÿÿ8������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���ú�� type."".Paletted���Œ
��"runtime.newobject���Æ
Ô� runtime.duffzero���À��0type.image/color.Palette���Ò
��(runtime.typedmemmove���€��:go.itab.*"".Paletted."".Image���Ü��"type.*"".Paletted���ò��type."".Image���Š��:go.itab.*"".Paletted."".Image���ž
�� runtime.typ2Itab���Ä 
� runtime.duffcopy���ö 
��,"".Rectangle.Intersect���ì
�� type."".Paletted���þ

��"runtime.newobject���ä �6runtime.writeBarrierEnabled���â ��0type.image/color.Palette���ô 
��(runtime.typedmemmove���¢��:go.itab.*"".Paletted."".Image���þ��"type.*"".Paletted���”��type."".Image���¬��:go.itab.*"".Paletted."".Image���À
�� runtime.typ2Itab���†
��.runtime.writebarrierptr���¸
��$runtime.panicslice���ì
��0runtime.morestack_noctxt���p€��"".autotmp_0702��type.*uint8�"".autotmp_0701��"type.*"".Paletted�"".autotmp_0700��type.int�"".autotmp_0699��type.int�"".autotmp_0696�?"type.*"".Paletted�"".autotmp_0694��"type.*"".Paletted�"".autotmp_0693�"type."".Rectangle�"".autotmp_0692�/type.[]uint8�"".autotmp_0691��"type.*"".Paletted�"".r�¿"type."".Rectangle� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��"type.*"".Paletted�*&€„ÿ€ÿ€„�À�n 8wK‘ -"<fMJR -  �$�ŽÚ’ÿ¢%�Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c�Tgclocals·721dda3334c021125365f71a78d0ed1e���Rprebuilts/go/linux-x86/src/image/image.goþ*"".(*Paletted).Opaque��€��öeH‹ %(���H‹‰����H„$øþÿÿH;A†Ï��Hìˆ��H‹”$��H|$H1Àè����Hƒú�„£��H‹J H‹j(H‰l$0L‹Z0H‹j8H‰l$@L‰\$8H‰L$(I)ËE1äH‹z(H‹Z8H9û~tL‹JM‰ØM9ˇU��M9܇L��L‹M)àM)áIƒù�tO"1ÉL‰ÐL9Á}¶(H\$H@¶íH+ÆHÿÀHÿÁL9Á|âH‹ZLãI‰ÜH‹ZLÛI‰ÛHÿÇH‹Z8H9ûŒH‰ÓH‹R@H‹KHH‹kPH‰¬$€��1ÀH‰Œ$x��H‰L$H‰”$p��H‹l$H9è}XH‰”$H��Hƒú�„ ���H‹:H‹rH‰D$ H‰¼$`��H‰´$h��H\$HH=���spH¶€û�u!HƒÂHÿÀH‹l$H9è|¨Æ„$˜��HÄˆ��ÃH‰´$X��H‰4$H‰¼$P��H‹_ ÿÓH‹”$H��H‹D$ ‹\$ûÿÿ��t¬Æ„$˜���HÄˆ��Ãè���� ‰éYÿÿÿè���� ‰éVþÿÿè����éþÿÿ ������r
� runtime.duffzero���Ô�������¬
��$runtime.panicindex���È
��$runtime.panicslice���ä
��0runtime.morestack_noctxt��� ��""".autotmp_0720�O,type.image/color.Color�"".autotmp_0719�.type.*image/color.Color�"".autotmp_0718��type.int�"".autotmp_0717��type.int�"".autotmp_0714�ßtype.int�"".autotmp_0713��type.int�"".autotmp_0712��type.int�"".autotmp_0711�Ïtype.int�"".autotmp_0710�/0type.image/color.Palette�"".autotmp_0709��type.int�"".autotmp_0708��type.int�"".autotmp_0707��type.int�"".r�¿"type."".Rectangle�"".c�o,type.image/color.Color�"".present�ÿtype.[256]bool� "".~r0�type.bool�"".p��"type.*"".Paletted�&)èB+�€�\È1 4 9 

f +  ��ª++�Tgclocals·32bd5c6dc84e3e86dd35593b3922d3aa�Tgclocals·5e29cf4e275ff1db65cfee262b3b8d1f���Rprebuilts/go/linux-x86/src/image/image.goþ"".NewPaletted��€��þeH‹ %(���H‹‰����HD$èH;A†–��Hì˜���L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹\$(H‰œ$���H����H‰$è����H‹D$H‰D$xH‹¬$ˆ���H‰hH‹¬$���H‰hH‹¬$€���€=�����…’���H‰(H‹l$0H‰hH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‹¬$È���H‰hHH‹¬$Ð���H‰hPH‹¬$À���€=�����uH‰h@H‰„$Ø���HÄ˜���ÃL@@L‰$H‰l$è����H‹D$xë×H‰$H‰l$è����H‹D$xéYÿÿÿè����éAþÿÿ������Œ��type.[]uint8���²
��"runtime.makeslice���Ž�� type."".Paletted��� 
��"runtime.newobject���€�6runtime.writeBarrierEnabled���Ò�6runtime.writeBarrierEnabled���¤
��.runtime.writebarrierptr���Î
��.runtime.writebarrierptr���ì
��0runtime.morestack_noctxt���€°��"".autotmp_0726�?"type.*"".Paletted�"".autotmp_0725��type.int�"".autotmp_0723��type.int�"".autotmp_0722��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r2�p"type.*"".Paletted�"".p�@0type.image/color.Palette�"".r��"type."".Rectangle�&°Ý¯°<�À�öF1Mñ ��˜7Â/�Tgclocals·57c83c41cc07fcd7f4b6f6e2693ed359�Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f���Rprebuilts/go/linux-x86/src/image/image.goþ$"".(*Uniform).RGBA��à��àeH‹ %(���H‹‰����H;avSHƒì(H‹\$0Hƒû�t@H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋl$‹T$ ‹L$‹D$‰l$8‰T$<‰L$@‰D$DHƒÄ(Éë¼è����ë������|�������Ô
��0runtime.morestack_noctxt���0P��
"".a�(type.uint32�"".b� type.uint32�"".g�type.uint32�"".r�type.uint32�"".c�� type.*"".Uniform�PJOP �p�:O�
�>2�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/names.goþ0"".(*Uniform).ColorModel�� ��–eH‹ %(���H‹‰����H;avkHƒì(1ÛH‰\$8H‰\$@H‹\$0H‰\$ H‹����1íH9ètH‹\$ H‰\$@H‰D$8HƒÄ(ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë½è����éuÿÿÿ������f��Jgo.itab.*"".Uniform.image/color.Model���ª�� type.*"".Uniform���À��,type.image/color.Model���Ø��Jgo.itab.*"".Uniform.image/color.Model���ì
�� runtime.typ2Itab���„
��0runtime.morestack_noctxt���0P��"".autotmp_0732� type.*"".Uniform� "".~r0�,type.image/color.Model�"".c�� type.*"".Uniform�P7OP>��B&[�
�u�Tgclocals·41a13ac73c712c01973b8fe23f62d694�Tgclocals·0c8aa8e80191a30eac23f1a218103f16���Rprebuilts/go/linux-x86/src/image/names.goþ*"".(*Uniform).Convert��`��F1ÛH‹\$Hƒû�tH‹+H‰l$ H‹kH‰l$(Éëê�P��� "".~r1�0,type.image/color.Color�"".c�� type.*"".Uniform�0�0�
J.��Tgclocals·13bdb4aeeaf63de3cc223d640262ea59�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/names.goþ("".(*Uniform).Bounds��€��j1Û1ÛHÇÅ�6eÄHÇÂ�6eÄHÇÁ�ʚ;HÇÀ�ʚ;H‰l$H‰T$H‰L$ H‰D$(Ã�P��� "".~r0�"type."".Rectangle�"".c�� type.*"".Uniform�@�@�R@��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/names.goþ "".(*Uniform).At��`��F1ÛH‹\$Hƒû�tH‹+H‰l$ H‹kH‰l$(Éëê�P��� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".c�� type.*"".Uniform�0�0�V0��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/names.goþ("".(*Uniform).Opaque��À��¾eH‹ %(���H‹‰����H;avBHƒì(H‹\$0Hƒû�t/H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋ\$ûÿÿ��”D$8HƒÄ(ÉëÍè����ë¡������|�������²
��0runtime.morestack_noctxt��� P�� "".~r0�type.bool�"".c�� type.*"".Uniform�P9OP �`�\*�
�>"�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���Rprebuilts/go/linux-x86/src/image/names.goþ"".NewUniform��€��ðeH‹ %(���H‹‰����H;av[HƒìH����H‰$è����H‹D$H‰D$H‹l$ H‰(H‹l$(€=�����uH‰hH‰D$0HƒÄÃL@L‰$H‰l$è����H‹D$ëÝè����ëˆ ������:��type."".Uniform���L
��"runtime.newobject���†�6runtime.writeBarrierEnabled���Ì
��.runtime.writebarrierptr���ä
��0runtime.morestack_noctxt���00��"".autotmp_0737� type.*"".Uniform� "".~r1�  type.*"".Uniform�"".c��,type.image/color.Color�0=/0(�€�fW��%@�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·0c8aa8e80191a30eac23f1a218103f16���Rprebuilts/go/linux-x86/src/image/names.goþ:"".YCbCrSubsampleRatio.String�� ��–1ÛH‹D$HƒøjHƒø�uH����H‰\$HÇD$���ÃHƒøuH����H‰\$HÇD$���ÃHƒøuH����H‰\$HÇD$���ÃH����H‰\$HÇD$���ÃHƒøuH����H‰\$HÇD$���ÃHƒøuH����H‰\$HÇD$���ÃHƒøu¬H����H‰\$HÇD$���Ã,��Dgo.string."YCbCrSubsampleRatio444"���d��Dgo.string."YCbCrSubsampleRatio422"���œ��Dgo.string."YCbCrSubsampleRatio420"���È��Lgo.string."YCbCrSubsampleRatioUnknown"���€��Dgo.string."YCbCrSubsampleRatio440"���¸��Dgo.string."YCbCrSubsampleRatio411"���ð��Dgo.string."YCbCrSubsampleRatio410"���0��� "".~r0�type.string�"".s��6type."".YCbCrSubsampleRatio�Ð�Ð�>0  ��Tgclocals·790e5cc5051fc0affc980ade09e929ec�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ,"".(*YCbCr).ColorModel��@��61ÛH‹����H‰\$H‹����H‰\$Ã
��,image/color.YCbCrModel���"�,image/color.YCbCrModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".YCbCr� � �
~��Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ$"".(*YCbCr).Bounds��€��l1ÛH‹\$Hƒû�t%H‹k`H‰l$H‹khH‰l$H‹kpH‰l$ H‹kxH‰l$(Éë×�P��� "".~r0�"type."".Rectangle�"".p��type.*"".YCbCr�@�@� †>��Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ"".(*YCbCr).At�� ��ŠeH‹ %(���H‹‰����H;a†¡���Hƒì@1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$=H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hHƒÄ@Ãè����é;ÿÿÿ������
��&"".(*YCbCr).YCbCrAt���Ô��,type.image/color.YCbCr���ê��,type.image/color.Color���‚��Vgo.itab.image/color.YCbCr.image/color.Color���¼
��runtime.convT2I���ø
��0runtime.morestack_noctxt���P€��
"".autotmp_0739�,type.image/color.YCbCr� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�€œ€�Ð�Ž*‘� �G‰�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ&"".(*YCbCr).YCbCrAt�� �� eH‹ %(���H‹‰����H;a†l��HƒìXL‹L$hH‹|$pH‹t$`1ۈ\$xˆ\$yˆ\$z1ÛH‰|$0Hƒþ�„3��L‹^`L‹VhL‰T$@L‹FpL‰D$HH‹VxH‰T$PL‰\$8L‰L$(M9ˏú���M9Áñ���I9úè���H9לÀ<�u1ɈL$xˆL$yˆL$zHƒÄXÃH‹^hH‰ýH)ÝH‰ëH‹nHH¯ÝH‹n`M‰ÈI)èLÃH‰\$ H‰4$L‰L$H‰|$è����L‹L$`H‹D$1ÛIƒù�tzI‹I‹II‹iH‹l$ H9Ís^H*¶H‰ßI‹QI‹I I‹i(H9Ès<H¶H‰ÞI‹Q0I‹I8I‹i@H9ÈsH¶@ˆ|$x@ˆt$yˆ\$zHƒÄXÃè���� è���� è���� A‰ë1Àéÿÿÿ‰éÆþÿÿè����épþÿÿ ������Æ
��&"".(*YCbCr).COffset���¾
��$runtime.panicindex���Ì
��$runtime.panicindex���Ú
��$runtime.panicindex���Ž
��0runtime.morestack_noctxt���@°��"".autotmp_0743��,type.image/color.YCbCr�"".r�?"type."".Rectangle�"".p�_type."".Point�
"".yi�otype.int� "".~r2�0,type.image/color.YCbCr�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�(°Ž¯°°¯°2��@–;_'% 
��â®�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ&"".(*YCbCr).YOffset��€��bH‹D$H‹XhH‹l$H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�@�@� ´;��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ&"".(*YCbCr).COffset�� ��H‹T$H‹L$H‹D$H‹hXHƒýá���HƒýuHL‹H`H‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$ ÃHƒýueL‹@hL‹H`H‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$ ÃH‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‹h`I‰ÈI)èLÃH‰\$ ÃHƒýuEL‹@hH‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‹h`I‰ÈI)èLÃH‰\$ ÃHƒýuIH‹p`H‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰ðIÁø?IÁè>IðIÁøL)ÅHëH‰\$ ÃHƒý…4ÿÿÿL‹@hH‹x`H‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰øIÁø?IÁè>IøIÁøL)ÅHëH‰\$ Ã�@���"".autotmp_0754��type.int�"".autotmp_0753��type.int�"".autotmp_0752��type.int�"".autotmp_0751��type.int�"".autotmp_0749��type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr���8ÀHe(EI
n��Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ("".(*YCbCr).SubImage��à��ÚeH‹ %(���H‹‰����HD$¨H;A†„��HìØ���1ÛH‰œ$��H‰œ$��H‹œ$è���H‰$H‹œ$ð���H‰\$H‹œ$ø���H‰\$H‹œ$���H‰\$H‹´$à���Hƒþ�„��H^`H|$ H‰Þè����è����L‹Œ$à���H‹T$@H‹L$HH‹t$PH‹D$XH‰”$è���H‰Œ$ð���H‰L$pH‰´$ø���H‰„$���H‰„$€���H‰T$hH‰t$xH9ò¡��H9ÁÀ<�„ž���H����H‰$è����H‹L$H‰ÏHƒù�t|1Àè����L‹„$à���I‹hXH‰iXH‰Œ$ˆ���H‹����1íH9èt H‹œ$ˆ���H‰œ$��H‰„$��HÄØ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ë€I‹YhH‰ÍH)ÝH‰ëI‹iHH¯ÝI‹i`I‰ÐI)èLÃH‰\$`L‰ $H‰T$H‰L$è����H‹Œ$à���H‹D$H‹l$`L‹AL‹IL9Ň‘��L‹I)èI)éIƒù�tM*L‰„$È���L‰Œ$Ð���L‰”$À���L‹A L‹I(L9À‡N��L‹QI)ÀI)ÁIƒù�tML‰„$°���L‰Œ$¸���L‰”$¨���L‹A8L‹I@L9À‡
��L‹Q0I)ÀI)ÁIƒù�tML‰„$˜���L‰Œ$ ���L‰”$���H����H‰$è����H‹D$H‰„$ˆ���H‹¬$È���H‰hH‹¬$Ð���H‰hH‹¬$À���€=�����…y��H‰(H‹¬$°���H‰h H‹¬$¸���H‰h(H‹¬$¨���€=�����…*��H‰hH‹¬$˜���H‰h8H‹¬$ ���H‰h@H‹¬$���€=�����…Ú���H‰h0Hƒø�„Å���L‹„$à���I‹hXH‰hXL‹„$à���I‹hHH‰hHL‹„$à���I‹hPH‰hPH‹¬$è���H‰h`H‹¬$ð���H‰hhH‹¬$ø���H‰hpH‹¬$���H‰hxH‰„$ˆ���H‹����1íH9èt H‹œ$ˆ���H‰œ$��H‰„$��HÄØ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�é4ÿÿÿL@0L‰$H‰l$è����H‹„$ˆ���é ÿÿÿL@L‰$H‰l$è����H‹„$ˆ���é»þÿÿH‰$H‰l$è����H‹„$ˆ���éoþÿÿè���� è���� è���� HÇÀ���éYüÿÿ‰éÚûÿÿè����éSûÿÿ:������”
� runtime.duffcopy���ž
��,"".Rectangle.Intersect���€��type."".YCbCr���’
��"runtime.newobject���¼
¨� runtime.duffzero���ú��4go.itab.*"".YCbCr."".Image���Ö��type.*"".YCbCr���ì��type."".Image���„��4go.itab.*"".YCbCr."".Image���˜
�� runtime.typ2Itab���¢
��&"".(*YCbCr).COffset�����type."".YCbCr���Ò

��"runtime.newobject���¸ �6runtime.writeBarrierEnabled���˜ �6runtime.writeBarrierEnabled���ú �6runtime.writeBarrierEnabled���‚��4go.itab.*"".YCbCr."".Image���Þ��type.*"".YCbCr���ô��type."".Image���Œ��4go.itab.*"".YCbCr."".Image��� 
�� runtime.typ2Itab���à
��.runtime.writebarrierptr���ž
��.runtime.writebarrierptr���Ô
��.runtime.writebarrierptr���ø
��$runtime.panicslice���†
��$runtime.panicslice���”
��$runtime.panicslice���È
��0runtime.morestack_noctxt���p°��"".autotmp_0766��type.*uint8�"".autotmp_0765��type.*"".YCbCr�"".autotmp_0764��type.int�"".autotmp_0761�Ÿtype.*"".YCbCr�"".autotmp_0759��type.*"".YCbCr�"".autotmp_0758�type.[]uint8�"".autotmp_0757�_type.[]uint8�"".autotmp_0756�/type.[]uint8�"".autotmp_0755��type.*"".YCbCr�"".r�ß"type."".Rectangle�
"".yi�ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".YCbCr�*&°Á¯°ƒ¯°Ä�° �‚æ8wNK -' A==¯@ -:  �.�ŽýEØç?5�Tgclocals·4a5c83272286258cf484ac950366f973�Tgclocals·afc01c2a5c5199c7dd20b96c14725140���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ$"".(*YCbCr).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".YCbCr���–��Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ"".NewYCbCr��€��êeH‹ %(���H‹‰����HD$€H;A†Œ��Hì���L‹”$��L‹Œ$ ��H‹¼$��H‹Œ$��L‰T$`L‰L$pH‰ÎH‰L$hH‰|$XH)þH‰|$xH‰Œ$ˆ���L‰ÊL‰Œ$���L‰”$€���H‹„$(��L)ÒHƒø@��Hƒø…Ñ��HÿÁH‰ËHÁû?H)ÙHÑùH‰ýHÁý?I‰øI)èL‰ÅHÑýH)éH‰ÐH‰óH¯ÚHƒÃ�H‰\$HH‰óH¯ÚH‰ÍH¯èHëH‰\$@H‰óH‰t$0H¯ÚH‰ÍH‰L$PHÑåH¯èHëH‰ØH����H‰$H‰D$H‰D$8H‰D$è����H‹t$HH‹T$@H‹L$H‹\$ H‰œ$¨���H‹D$(H9Ƈ��H‰´$ð���H‰´$ø���H‰Œ$è���H‰ÕH9‡æ��H9Ö‡Ý��H)õI‰ÈHƒý�tM0H‰¬$Ø���H‰¬$à���L‰„$Ð���H‹l$8H‰„$°���H9Ň˜��H9ꇏ��H)ÕI‰ÈH‰Œ$ ���Hƒý�tMH‰¬$À���H‰¬$È���L‰„$¸���H����H‰$è����H‹D$H‰„$˜���H‹¬$ð���H‰hH‹¬$ø���H‰hH‹¬$è���€=�����…ú���H‰(H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$Ð���€=�����…«���H‰hH‹¬$À���H‰h8H‹¬$È���H‰h@H‹¬$¸���€=�����ubH‰h0H‹¬$(��H‰hXH‹l$0H‰hHH‹l$PH‰hPH‹¬$��H‰h`H‹¬$��H‰hhH‹¬$��H‰hpH‹¬$ ��H‰hxH‰„$0��HÄ���ÃL@0L‰$H‰l$è����H‹„$˜���ë†L@L‰$H‰l$è����H‹„$˜���é:ÿÿÿH‰$H‰l$è����H‹„$˜���éîþÿÿè���� è���� è���� HƒøuTHÿÁH‰ËHÁû?H)ÙHÑùH‰ýHÁý?I‰øI)èL‰ÅHÑýH)éL‰ÈHÿÀH‰ÃHÁû?H)ØHÑøL‰ÕHÁý?M‰ÐI)èL‰ÅHÑýH)èéþüÿÿH‰ñH‰ÐéóüÿÿHƒøu1H‰ñL‰ÈHÿÀH‰ÃHÁû?H)ØHÑøL‰ÕHÁý?M‰ÐI)èL‰ÅHÑýH)èé¼üÿÿHƒøu3HƒÁH‰ÈHÁù?HÁé>HÁHÁùH‰ýHÁý?HÁí>HýHÁýH)éH‰ÐéƒüÿÿHƒø…{ÿÿÿHƒÁH‰ËHÁû?HÁë>HËHÁûH‰ýHÁý?HÁí>HýHÁýH)ëH‰ÙL‰ÈHÿÀH‰ÃHÁû?H)ØHÑøL‰ÕHÁý?M‰ÐI)èL‰ÅHÑýH)èéüÿÿè����éKûÿÿ������¤��type.[]uint8���Ô
��"runtime.makeslice���þ��type."".YCbCr���
��"runtime.newobject���ö�6runtime.writeBarrierEnabled���Ö �6runtime.writeBarrierEnabled���¸
�6runtime.writeBarrierEnabled���¦ 
��.runtime.writebarrierptr���Þ 
��.runtime.writebarrierptr���” 
��.runtime.writebarrierptr���¸ 
��$runtime.panicslice���Æ 
��$runtime.panicslice���Ô 
��$runtime.panicslice���Ø
��0runtime.morestack_noctxt���`€��>"".autotmp_0791�Ïtype.*"".YCbCr�"".autotmp_0790��type.int�"".autotmp_0789��type.int�"".autotmp_0788��type.int�"".autotmp_0787��type.int�"".autotmp_0786��type.int�"".autotmp_0785��type.int�"".autotmp_0784��type.int�"".autotmp_0783��type.int�"".autotmp_0782��type.int�"".autotmp_0781��type.int�"".autotmp_0780��type.int�"".autotmp_0779��type.int�"".autotmp_0778��type.int�"".autotmp_0777��type.int�"".autotmp_0774��type.int�"".autotmp_0773��type.int�"".autotmp_0771�type.[]uint8�"".autotmp_0770�_type.[]uint8�"".autotmp_0769�/type.[]uint8�"".r�"type."".Rectangle�"".r�Ï"type."".Rectangle�"".b�¿type.[]uint8�
"".i2�type.int�
"".i1�ÿtype.int�
"".i0�ïtype.int�
"".cw�ßtype.int�"".w�Ÿtype.int� "".~r2�Ptype.*"".YCbCr�""".subsampleRatio�@6type."".YCbCrSubsampleRatio�"".r��"type."".Rectangle�&€Þÿ€»�À �ªžF:

&$!@!=OùV+&))+
.) -�&�©Þ‹å�Tgclocals·0ce38f56d4c8b081a7ecdd846c3439b5�Tgclocals·27322ac377f4076175cee6d941c30830���Rprebuilts/go/linux-x86/src/image/ycbcr.goþ"".init��à ��Ø eH‹ %(���H‹‰����H;a†È��Hƒì8¶����€û�t¶����€ûuHƒÄ8Ãè���� Æ����è����è����è����è����H����H‰$HÇD$���è����H‹\$H‰����H‹\$€=�����…4��H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$€=�����…ª��H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$€=�����… ��H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$€=�����…–���H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$€=�����uH‰����Æ����HƒÄ8ÃH-����H‰,$H‰\$è����ëÝH-����H‰,$H‰\$è����éWÿÿÿH-����H‰,$H‰\$è����éÍþÿÿH-����H‰,$H‰\$è����éCþÿÿH-����H‰,$H‰\$è����é¹ýÿÿè����éýÿÿt������B��"".initdone·���Z��"".initdone·���x
��"runtime.throwinit���ˆ�"".initdone·���”
��bufio.init���ž
��io.init���¨
�� image/color.init���²
��strconv.init���À��Bgo.string."image: unknown format"���ä
��errors.New���ü��"".ErrFormat���’�6runtime.writeBarrierEnabled���®�"".ErrFormat���¼��.type.image/color.Gray16���Ò��,type.image/color.Color���ê��Xgo.itab.image/color.Gray16.image/color.Color���‚��"image/color.Black���¨
��runtime.convT2I���Ü
��"".NewUniform���ò�6runtime.writeBarrierEnabled���Ž��"".Black���œ��.type.image/color.Gray16���²��,type.image/color.Color���Ê��Xgo.itab.image/color.Gray16.image/color.Color���â��"image/color.White���ˆ
��runtime.convT2I���¼
��"".NewUniform���Ò�6runtime.writeBarrierEnabled���î��"".White���ü��0type.image/color.Alpha16���’��,type.image/color.Color���ª��Zgo.itab.image/color.Alpha16.image/color.Color���Â��.image/color.Transparent���è
��runtime.convT2I���œ
��"".NewUniform���²�6runtime.writeBarrierEnabled���Î��"".Transparent���Ü��0type.image/color.Alpha16���ò��,type.image/color.Color���Š��Zgo.itab.image/color.Alpha16.image/color.Color���¢��$image/color.Opaque���È
��runtime.convT2I���ü
��"".NewUniform���’ �6runtime.writeBarrierEnabled���¦ ��"".Opaque���² �"".initdone·���Ì ��"".Opaque���è 
��.runtime.writebarrierptr���ú ��"".Transparent���–

��.runtime.writebarrierptr���®
��"".White���Ê

��.runtime.writebarrierptr���â
��"".Black���þ

��.runtime.writebarrierptr���– �"".ErrFormat���² 
��.runtime.writebarrierptr���Æ 
��0runtime.morestack_noctxt����p���pop§op�,]>¼ N�Xæ]Ç>pppl¾ ½¾ÁÊ� �;µ�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Rprebuilts/go/linux-x86/src/image/ycbcr.goTprebuilts/go/linux-x86/src/image/format.goRprebuilts/go/linux-x86/src/image/names.goþ"".Image.At� ��ŽeH‹ %(���H‹‰����H;avgHƒì(H‹Y H…Ût H|$0H9;uH‰#1ÛH‰\$PH‰\$XH‹\$@H‰\$H‹\$HH‰\$H‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$ H‰L$PH‰D$XHƒÄ(Ãè����éyÿÿÿ������Ä�������ü
��0runtime.morestack_noctxt���`P�� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��type."".Image�PbOP���
�b.�Tgclocals·d98f60bd8519d0c68364b2a1d83af357�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".Image.Bounds�À��¢eH‹ %(���H‹‰����H;avqHƒì(H‹Y H…Ût H|$0H9;uH‰#1ÛH‰\$@H‰\$HH‰\$PH‰\$XH‹\$8H‰$H‹\$0H‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$@H‰T$HH‰L$PH‰D$XHƒÄ(Ãè����éoÿÿÿ������°�������
��0runtime.morestack_noctxt���`P�� "".~r0� "type."".Rectangle�""..this��type."".Image�PlOP� � �
�XH�Tgclocals·d98f60bd8519d0c68364b2a1d83af357�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".Image.ColorModel�à��àeH‹ %(���H‹‰����H;avSHƒìH‹Y H…Ût H|$ H9;uH‰#1ÛH‰\$0H‰\$8H‹\$(H‰$H‹\$ H‹[0ÿÓH‹L$H‹D$H‰L$0H‰D$8HƒÄÃè����ë������œ�������Ô
��0runtime.morestack_noctxt���@0�� "".~r0� ,type.image/color.Model�""..this��type."".Image�0N/0�p�p�
�N"�Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Point).String� ��œeH‹ %(���H‹‰����H;a†ª���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹t$8H‹H‰ $H‹NH‰L$è����H‹L$H‹D$H‰L$@H‰D$HHƒÄ0Ãè����é2ÿÿÿ������ž��"go.string."image"���Æ��"go.string."Point"���ð��$go.string."String"���–
��"runtime.panicwrap���Î
��"".Point.String���Š
��0runtime.morestack_noctxt���0`�� "".~r0�type.string�""..this��type.*"".Point�`¥_` �Ð�
Ð� �ŠF�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Add�À��¦eH‹ %(���H‹‰����H;a†¯���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t3H‹3H‹SH‹L$@H‹D$H1Û1ÛH‰óHËH‰ÙH‰ÓHÃH‰L$PH‰\$XHƒÄ0ÉëÉè����é-ÿÿÿ ������Š��"go.string."image"���²��"go.string."Point"���Ü��go.string."Add"���‚
��"runtime.panicwrap���”
��0runtime.morestack_noctxt���P`�� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�`¦_`�à� à� �€`�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Sub�À��¦eH‹ %(���H‹‰����H;a†¯���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t3H‹3H‹SH‹L$@H‹D$H1Û1ÛH‰óH)ËH‰ÙH‰ÓH)ÃH‰L$PH‰\$XHƒÄ0ÉëÉè����é-ÿÿÿ ������Š��"go.string."image"���²��"go.string."Point"���Ü��go.string."Sub"���‚
��"runtime.panicwrap���”
��0runtime.morestack_noctxt���P`�� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�`¦_`�à�à� �€`�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Mul� ��”eH‹ %(���H‹‰����H;a†¦���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t*H‹ H‹SH‹D$@1Û1ÛH¯ÈH‰ÓH¯ØH‰L$HH‰\$PHƒÄ0ÉëÒè����é6ÿÿÿ ������Š��"go.string."image"���²��"go.string."Point"���Ü��go.string."Mul"���‚
��"runtime.panicwrap���‚
��0runtime.morestack_noctxt���@`�� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�`_`�Ð�Ð� �€P�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Div�€��âeH‹ %(���H‹‰����H;a†Í���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tQH‹H‹{H‹L$@1Û1ÛHƒùÿt3H™H÷ùH‰ÃH‰ÞH‰øHƒùÿtH™H÷ùH‰ÃH‰t$HH‰\$PHƒÄ0ÃH÷ØH‰ÃëéH÷ØH‰Ãë͉ë«è����éÿÿÿ ������Š��"go.string."image"���²��"go.string."Point"���Ü��go.string."Div"���‚
��"runtime.panicwrap���Ð
��0runtime.morestack_noctxt���@`�� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�`´_`-�€�€��€€�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).In�À��¶eH‹ %(���H‹‰����H;a†·���Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t=H‹ H‹CH‹\$@H‹|$HH‹t$PH‹T$XH9ËH9ñ}H9ÇH9ÐœÀˆD$`HƒÄ0Ã1Àëó‰ë¿è����é%ÿÿÿ ������†��"go.string."image"���®��"go.string."Point"���Ø��go.string."In"���þ
��"runtime.panicwrap���¤
��0runtime.morestack_noctxt���``�� "".~r1�Ptype.bool�"".r�"type."".Rectangle�""..this��type.*"".Point�`ª_`�à�à�
�~b�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Mod�€��ìeH‹ %(���H‹‰����H;a†Ò���Hƒì@H‹Y H…Ût H|$HH9;uH‰#1ÛH‰\$pH‰\$xH‹\$H1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹t$HH‹H‰ $H‹NH‰L$H‹\$PH‰\$H‹\$XH‰\$H‹\$`H‰\$ H‹\$hH‰\$(è����H‹L$0H‹D$8H‰L$pH‰D$xHƒÄ@Ãè����é
ÿÿÿ������ž��"go.string."image"���Æ��"go.string."Point"���ð��go.string."Mod"���–
��"runtime.panicwrap���ž
��"".Point.Mod���Ú
��0runtime.morestack_noctxt���p€�� "".~r1�Ptype."".Point�"".r�"type."".Rectangle�""..this��type.*"".Point�€Í€�€�€� �Šv�Tgclocals·a041240a37ce609efec56707c330d1a4�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Eq�€��òeH‹ %(���H‹‰����H;a†Õ���HƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$X1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$XHƒû�t[H‹3H‹kH‹L$`H‹D$hH‰t$@H‰l$HH‰L$0H‰D$8H\$@H‰ÙH\$0H‰ØH‹H‹(H9ëuH‹YH‹hH9ë”ÀˆD$pHƒÄPÃ1Àëó‰ë¡è����éÿÿÿ ������†��"go.string."image"���®��"go.string."Point"���Ø��go.string."Eq"���þ
��"runtime.panicwrap���à
��0runtime.morestack_noctxt���@ ��
"".autotmp_0807�?type."".Point�"".autotmp_0806�type."".Point� "".~r1�0type.bool�"".q�type."".Point�""..this��type.*"".Point� ÈŸ �€�€� �~‚�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ,"".(*Rectangle).String� �� eH‹ %(���H‹‰����H;a†¬���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹t$8Hƒþ�t&H‰çè����è����H‹L$ H‹D$(H‰L$@H‰D$HHƒÄ0ÉëÖè����é0ÿÿÿ������ž��"go.string."image"���Æ��*go.string."Rectangle"���ð��$go.string."String"���–
��"runtime.panicwrap���� runtime.duffcopy���Ê
��&"".Rectangle.String���Ž
��0runtime.morestack_noctxt���0`�� "".~r0�type.string�""..this��$type.*"".Rectangle�`£_`�Ð�Ð� �ŠF�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).Dx�€��úeH‹ %(���H‹‰����H;a†™���Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tH‹ H‹kH‹CH‹kH‰ÃH)ËH‰\$@HƒÄ0ÉëÝè����éCÿÿÿ ������†��"go.string."image"���®��*go.string."Rectangle"���Ø��go.string."Dx"���þ
��"runtime.panicwrap���è
��0runtime.morestack_noctxt��� `�� "".~r0�type.int�""..this��$type.*"".Rectangle�`_`�À�À�
�~B�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).Dy�€��ôeH‹ %(���H‹‰����H;a†–���Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tH‹+H‹KH‹kH‹[H)ËH‰\$@HƒÄ0Éëàè����éFÿÿÿ ������†��"go.string."image"���®��*go.string."Rectangle"���Ø��go.string."Dy"���þ
��"runtime.panicwrap���â
��0runtime.morestack_noctxt��� `�� "".~r0�type.int�""..this��$type.*"".Rectangle�`_`�À�À�
�~B�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ("".(*Rectangle).Size� ��eH‹ %(���H‹‰����H;a†¤���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t(H‹3H‹SH‹KH‹C1Û1ÛH)ñH)ÐH‰L$@H‰D$HHƒÄ0ÉëÔè����é8ÿÿÿ ������Š��"go.string."image"���²��*go.string."Rectangle"���Ü�� go.string."Size"���‚
��"runtime.panicwrap���þ
��0runtime.morestack_noctxt���0`�� "".~r0�type."".Point�""..this��$type.*"".Rectangle�`›_`�Ð� Ð� �€P�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".(*Rectangle).Add�à��ÖeH‹ %(���H‹‰����H;a†Ç���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tKH‹3H‹SL‹CH‹{H‹L$@H‹D$H1Û1ÛHÎHÂL‰ÃHËH‰ÙH‰ûHÃH‰t$PH‰T$XH‰L$`H‰\$hHƒÄ0Éë±è����éÿÿÿ ������Š��"go.string."image"���²��*go.string."Rectangle"���Ü��go.string."Add"���‚
��"runtime.panicwrap���Ä
��0runtime.morestack_noctxt���p`�� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�`¾_`�ð�"ð� �€p�Tgclocals·a041240a37ce609efec56707c330d1a4�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".(*Rectangle).Sub�à��ÖeH‹ %(���H‹‰����H;a†Ç���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tKH‹3H‹SL‹CH‹{H‹L$@H‹D$H1Û1ÛH)ÎH)ÂL‰ÃH)ËH‰ÙH‰ûH)ÃH‰t$PH‰T$XH‰L$`H‰\$hHƒÄ0Éë±è����éÿÿÿ ������Š��"go.string."image"���²��*go.string."Rectangle"���Ü��go.string."Sub"���‚
��"runtime.panicwrap���Ä
��0runtime.morestack_noctxt���p`�� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�`¾_`�ð�$ð� �€p�Tgclocals·a041240a37ce609efec56707c330d1a4�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Inset�€��ðeH‹ %(���H‹‰����H;a†Ô���HƒìHH‹Y H…Ût H|$PH9;uH‰#1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‹\$P1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹t$PHƒþ�tDH‰çè����H‹\$XH‰\$ è����H‹l$(H‹T$0H‹L$8H‹D$@H‰l$`H‰T$hH‰L$pH‰D$xHƒÄHÉë¸è����éÿÿÿ������²��"go.string."image"���Ú��*go.string."Rectangle"���„��"go.string."Inset"���ª
��"runtime.panicwrap���Ô
� runtime.duffcopy���ò
��$"".Rectangle.Inset���Þ
��0runtime.morestack_noctxt���`�� "".~r1� "type."".Rectangle�"".n�type.int�""..this��$type.*"".Rectangle�Ë�€�&€� �”l�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ2"".(*Rectangle).Intersect�€��èeH‹ %(���H‹‰����H;a†��Hƒì`H‹Y H…Ût H|$hH9;uH‰#1ÛH‰œ$���H‰œ$˜���H‰œ$ ���H‰œ$¨���H‹\$h1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$( ���è���� H‹t$hHƒþ�ttH‰çè����H‹\$pH‰\$ H‹\$xH‰\$(H‹œ$€���H‰\$0H‹œ$ˆ���H‰\$8è����H‹l$@H‹T$HH‹L$PH‹D$XH‰¬$���H‰”$˜���H‰Œ$ ���H‰„$¨���HƒÄ`Éëˆè����éÌþÿÿ������Ê��"go.string."image"���ò��*go.string."Rectangle"���œ��*go.string."Intersect"���Â
��"runtime.panicwrap���ì
� runtime.duffcopy���Ò
��,"".Rectangle.Intersect���Ö
��0runtime.morestack_noctxt���À�� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�À‡¿À�À�(À��  �Tgclocals·4d8bed7e4976e3d095a9230e496231af�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Union�€��èeH‹ %(���H‹‰����H;a†��Hƒì`H‹Y H…Ût H|$hH9;uH‰#1ÛH‰œ$���H‰œ$˜���H‰œ$ ���H‰œ$¨���H‹\$h1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹t$hHƒþ�ttH‰çè����H‹\$pH‰\$ H‹\$xH‰\$(H‹œ$€���H‰\$0H‹œ$ˆ���H‰\$8è����H‹l$@H‹T$HH‹L$PH‹D$XH‰¬$���H‰”$˜���H‰Œ$ ���H‰„$¨���HƒÄ`Éëˆè����éÌþÿÿ������Ê��"go.string."image"���ò��*go.string."Rectangle"���œ��"go.string."Union"���Â
��"runtime.panicwrap���ì
� runtime.duffcopy���Ò
��$"".Rectangle.Union���Ö
��0runtime.morestack_noctxt���À�� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�À‡¿À�À�*À��  �Tgclocals·4d8bed7e4976e3d095a9230e496231af�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Empty� ��”eH‹ %(���H‹‰����H;a†¦���Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t,H‹3H‹SH‹KH‹CH9Î}H9ÀˆD$@HƒÄ0ÃHÇÀ���ëî‰ëÐè����é6ÿÿÿ ������†��"go.string."image"���®��*go.string."Rectangle"���Ø��"go.string."Empty"���þ
��"runtime.panicwrap���‚
��0runtime.morestack_noctxt��� `�� "".~r0�type.bool�""..this��$type.*"".Rectangle�`”_`�Ð�,Ð�
�~R�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).Eq�€��þeH‹ %(���H‹‰����H;a†›��HƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$x1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹t$xHƒþ�„��L‹>L‹vL‹nL‹fL‹œ$€���L‹”$ˆ���L‹Œ$���H‹¼$˜���L‰|$PL‰t$XL‰l$`L‰d$hL‰\$0L‰T$8L‰L$@H‰|$HHt$PH\$0H‰ÚHƒþ�„¥���Hƒû�„”���H‹H‹*H9녁���H‹^H‹jH9ëutH‰ðHƒÀH‰ÑHƒÁH‹H‹)H9ëuWH‹XH‹iH9ë”À<�u<M9ï}.M9æÀ<�t M9Ë}I9úÀˆ„$ ���HƒÄpÃHÇÀ���ëë1ÀëçHÇÀ���ëÏHÇÀ���ëÕ1Àë³1À믉éeÿÿÿ‰éTÿÿÿ‰éßþÿÿè����éAþÿÿ ������†��"go.string."image"���®��*go.string."Rectangle"���Ø��go.string."Eq"���þ
��"runtime.panicwrap���ì
��0runtime.morestack_noctxt���`à��"".autotmp_0831��type.bool�"".autotmp_0830��type.bool�"".autotmp_0829��type.*"".Point�"".autotmp_0828��type.*"".Point�"".autotmp_0822�"type."".Rectangle�"".autotmp_0821�?"type."".Rectangle� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�àÚßàG�À�.À� �~Â�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ0"".(*Rectangle).Overlaps�à��ÂeH‹ %(���H‹‰����H;a†½���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$P1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹t$PHƒþ�tCH‰çè����H‹\$XH‰\$ H‹\$`H‰\$(H‹\$hH‰\$0H‹\$pH‰\$8è����¶\$@ˆ\$xHƒÄHÉë¹è����éÿÿÿ������†��"go.string."image"���®��*go.string."Rectangle"���Ø��(go.string."Overlaps"���þ
��"runtime.panicwrap���¨
� runtime.duffcopy���‚
��*"".Rectangle.Overlaps���°
��0runtime.morestack_noctxt���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�´�ð�0ð�
�~r�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).In� ��ˆeH‹ %(���H‹‰����H;a†à���Hƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tfH‹;H‹sH‹SH‹KL‹l$@L‹d$HL‹\$PL‹T$XH9×}5H9ΝÀ<�tHÇÀ���ˆD$`HƒÄ0ÃI9ýL9Ú I9ôL9ÑžÀëà1ÀëÜHÇÀ���ëȉë–è����éüþÿÿ ������†��"go.string."image"���®��*go.string."Rectangle"���Ø��go.string."In"���þ
��"runtime.panicwrap���ö
��0runtime.morestack_noctxt���``��"".autotmp_0835��type.bool� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�`³_`>��2� �~’�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Canon�à��ÌeH‹ %(���H‹‰����H;a†Â���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�tFH‹3H‹SH‹KH‹C1ÛH9ñ} H‰õH‰ÎH‰éH9Ð} H‰ÕH‰ÂH‰èH‰t$@H‰T$HH‰L$PH‰D$XHƒÄ0Éë¶è����éÿÿÿ ������Š��"go.string."image"���²��*go.string."Rectangle"���Ü��"go.string."Canon"���‚
��"runtime.panicwrap���º
��0runtime.morestack_noctxt���P`��"".autotmp_0837��type.int� "".~r0�"type."".Rectangle�""..this��$type.*"".Rectangle�`¹_`�ð�4ð� �€p�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).At� ��ˆeH‹ %(���H‹‰����HD$èH;A†Û��Hì˜���H‹Y H…ÛtH¼$ ���H9;uH‰#1ÛH‰œ$¸���H‰œ$À���H‹œ$ ���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$ ���Hƒû�„<��L‹H‹{H‹sH‹SH‹Œ$¨���H‹„$°���1ÛH‰œ$ˆ���H‰œ$���1ÛH‰D$@L‰D$hH‰|$pH‰|$PH‰t$xH‰t$XH‰”$€���H‰T$`L‰D$HH‰L$8I9ȏÄ���H9ñ»���H9Ǐ²���H9ÐœÀ<�t_H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹L$(H‹D$0H‰Œ$¸���H‰„$À���HÄ˜���ÃH����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹L$(H‹D$0ëŸ1ÀéMÿÿÿ‰é½þÿÿè����éüýÿÿ ������Æ��"go.string."image"���î��*go.string."Rectangle"���˜��go.string."At"���¾
��"runtime.panicwrap���Ž��0type.image/color.Alpha16���¤��,type.image/color.Color���¼��Zgo.itab.image/color.Alpha16.image/color.Color���Ô��$image/color.Opaque���ú
��runtime.convT2I���Ì��0type.image/color.Alpha16���â��,type.image/color.Color���ú��Zgo.itab.image/color.Alpha16.image/color.Color���’��.image/color.Transparent���¸
��runtime.convT2I���ö
��0runtime.morestack_noctxt���P°��"".autotmp_0840��,type.image/color.Color�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point� "".~r2�,type.image/color.Color�"".r�_"type."".Rectangle� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�""..this��$type.*"".Rectangle�&°ü¯°m��6��žò�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���<autogenerated>þ,"".(*Rectangle).Bounds� ��”eH‹ %(���H‹‰����H;a†¦���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$8Hƒû�t*H‹3H‹SH‹KH‹C1ÛH‰t$@H‰T$HH‰L$PH‰D$XHƒÄ0ÉëÒè����é6ÿÿÿ ������Š��"go.string."image"���²��*go.string."Rectangle"���Ü��$go.string."Bounds"���‚
��"runtime.panicwrap���‚
��0runtime.morestack_noctxt���P`�� "".~r0�"type."".Rectangle�""..this��$type.*"".Rectangle�`_`�Ð�8Ð� �€P�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ4"".(*Rectangle).ColorModel� ��œeH‹ %(���H‹‰����H;a†ª���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(
���è���� H‹\$8Hƒû�t.H‹+H‹kH‹kH‹k1ÛH‹ ����H‹����H‰L$@H‰D$HHƒÄ0ÉëÎè����é2ÿÿÿ������Š��"go.string."image"���²��*go.string."Rectangle"���Ü��,go.string."ColorModel"���‚
��"runtime.panicwrap���Ì��0image/color.Alpha16Model���Ú�0image/color.Alpha16Model���Š
��0runtime.morestack_noctxt���0`�� "".~r0�,type.image/color.Model�""..this��$type.*"".Rectangle�`¡_`�Ð�:Ð� �€P�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ(type..hash."".Config�À��¬eH‹ %(���H‹‰����H;avvHƒì H‹\$(H‰$Hƒ<$�tYH‹\$0H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$H‰D$0H‰D$HÇD$���è����H‹\$H‰\$8HƒÄ É%����ëˉ%����ëžè����éjÿÿÿ������j
��"runtime.interhash���Î
��runtime.memhash���š
��0runtime.morestack_noctxt���0@�� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*"".Config�@_?@&� � �
�4l�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���Tprebuilts/go/linux-x86/src/image/format.goþ$type..eq."".Config�à��ÒeH‹ %(���H‹‰����H;a†Å���HƒìHH‹\$XHƒû�„«���H‹ H‹sH‹\$PHƒû�„Ž���H‹H‹SH9ÈuxH‰D$(H‰$H‰T$0H‰T$H‰L$8H‰L$H‰t$@H‰t$è����H‹L$XH‹D$P¶\$ €û�t8H‹XH‹iH9ët
ÆD$`�HƒÄHÃH‹XH‹iH9ët
ÆD$`�HƒÄHÃÆD$`HƒÄHÃÆD$`�HƒÄHÉékÿÿÿ‰éNÿÿÿè����éÿÿÿ������î
��runtime.ifaceeq�����0runtime.morestack_noctxt���0��
"".autotmp_0842�?,type.image/color.Model�"".autotmp_0841�,type.image/color.Model� "".~r2� type.bool�"".q�type.*"".Config�"".p��type.*"".Config�>‡  �ð�ð�
�vz�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440���Tprebuilts/go/linux-x86/src/image/format.goþ"".reader.Peek�à��àeH‹ %(���H‹‰����H;a†Œ���Hƒì8H‹Y H…Ût H|$@H9;uH‰#1ÛH‰\$XH‰\$`H‰\$h1ÛH‰\$pH‰\$xH‹\$PH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$XH‰l$`H‰T$hH‰L$pH‰D$xHƒÄ8Ãè����éPÿÿÿ������Ú�������Î
��0runtime.morestack_noctxt���€p�� "".~r2�`type.error� "".~r1�0type.[]uint8�""..anon0� type.int�""..this��type."".reader�p‡op
�°�<°�
�mC�Tgclocals·6d46c0650eba7dbebc0db316e0e0cf3b�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".reader.Read�À��ºeH‹ %(���H‹‰����H;av}Hƒì8H‹Y H…Ût H|$@H9;uH‰#1Û1ÛH‰\$pH‰\$xH‹\$PH‰\$H‹\$XH‰\$H‹\$`H‰\$H‹\$HH‰$H‹\$@H‹[(ÿÓH‹T$ H‹L$(H‹D$0H‰T$hH‰L$pH‰D$xHƒÄ8Ãè����écÿÿÿ������Ü�������¨
��0runtime.morestack_noctxt���€p�� io.err�`type.error�io.n�Ptype.int�io.p� type.[]uint8�""..this��type."".reader�pxop � �> �
�n2�Tgclocals·dacebcad73eed5073009fd67170948d0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ@"".(*YCbCrSubsampleRatio).String�� ��ŠeH‹ %(���H‹‰����H;a†¡���Hƒì0H‹Y H…Ût H|$8H9;uH‰#1ÛH‰\$@H‰\$HH‹\$81íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$8H‹+H‰,$è����H‹L$H‹D$H‰L$@H‰D$HHƒÄ0Ãè����é;ÿÿÿ������ž��"go.string."image"���Æ��>go.string."YCbCrSubsampleRatio"���ð��$go.string."String"���–
��"runtime.panicwrap���¼
��:"".YCbCrSubsampleRatio.String���ø
��0runtime.morestack_noctxt���0`�� "".~r0�type.string�""..this��8type.*"".YCbCrSubsampleRatio�`œ_`�Ð�@Ð� �ŠF�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".PalettedImage.At� ��ŽeH‹ %(���H‹‰����H;avgHƒì(H‹Y H…Ût H|$0H9;uH‰#1ÛH‰\$PH‰\$XH‹\$@H‰\$H‹\$HH‰\$H‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$ H‰L$PH‰D$XHƒÄ(Ãè����éyÿÿÿ������Ä�������ü
��0runtime.morestack_noctxt���`P�� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�PbOP��B�
�b.�Tgclocals·d98f60bd8519d0c68364b2a1d83af357�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ."".PalettedImage.Bounds�À��¢eH‹ %(���H‹‰����H;avqHƒì(H‹Y H…Ût H|$0H9;uH‰#1ÛH‰\$@H‰\$HH‰\$PH‰\$XH‹\$8H‰$H‹\$0H‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$@H‰T$HH‰L$PH‰D$XHƒÄ(Ãè����éoÿÿÿ������°�������
��0runtime.morestack_noctxt���`P�� "".~r0� "type."".Rectangle�""..this��*type."".PalettedImage�PlOP� �D �
�XH�Tgclocals·d98f60bd8519d0c68364b2a1d83af357�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ:"".PalettedImage.ColorIndexAt�à��ÚeH‹ %(���H‹‰����H;avPHƒì H‹Y H…Ût H|$(H9;uH‰#H‹\$8H‰\$H‹\$@H‰\$H‹\$0H‰$H‹\$(H‹[0ÿÓ¶\$ˆ\$HHƒÄ Ãè����ë“������¬�������Î
��0runtime.morestack_noctxt���P@�� "".~r2�@type.uint8�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�@K?@
�p�Fp�
�V�Tgclocals·1347047f6245a35b91e9a4f213167d52�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ6"".PalettedImage.ColorModel�à��àeH‹ %(���H‹‰����H;avSHƒìH‹Y H…Ût H|$ H9;uH‰#1ÛH‰\$0H‰\$8H‹\$(H‰$H‹\$ H‹[8ÿÓH‹L$H‹D$H‰L$0H‰D$8HƒÄÃè����ë������œ�������Ô
��0runtime.morestack_noctxt���@0�� "".~r0� ,type.image/color.Model�""..this��*type."".PalettedImage�0N/0�p�Hp�
�N"�Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þTgclocals·5bcb5afcb5617f15eb2d0b279323d878�(��(����������j���k����þTgclocals·ac96ed3958d5792ac369a1dc2bfe9382�(��(������5���5���5����þ0>go.itab.*bufio.Reader."".reader�����þTgclocals·dd9a4d2009c4ac75e28d1a37bbe5075e�@��@�������������������������þTgclocals·a68b09a48716afad7ca7a02fe6add474�@��@�������������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·b4c25e9b09fd0cf9bb429dcefe91c353�������������þTgclocals·d82314ad8b4d0d463ee994662aedec13� �� ����������j���þTgclocals·99ef9ff0bd07d0e619cc0988c2dabb63� �� �������������þTgclocals·a09af47d95804d1a0febde7c2c7293b6������)������������€������`������`������������������������������5�����þTgclocals·693e8a411a45da74e76c619c62a5bb87�P��P�������������������������������þTgclocals·a09af47d95804d1a0febde7c2c7293b6������)������������€������`������`������������������������������5�����þTgclocals·473289be119113ddb746c224f05da7b4�P��P���
����������������������������þ"go.string.hdr."("� �� ������������������go.string."("���þgo.string."("���(��þ"go.string.hdr.","� �� ������������������go.string.","���þgo.string.","���,��þ"go.string.hdr.")"� �� ������������������go.string.")"���þgo.string.")"���)��þTgclocals·44750c784da4dd430afdd97fea5c405a� �� ��������������þTgclocals·64ca935d1a2110a30e2d604686188539� �� ���������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·627bbca91efe935c3ac76737d2026ca6��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þ"go.string.hdr."-"� �� ������������������go.string."-"���þgo.string."-"���-��þTgclocals·44750c784da4dd430afdd97fea5c405a� �� ��������������þTgclocals·ae0a20890c9ac6bfbea3383f34532bab� �� ���������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c������
��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c������
��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·5f32766c99d383f833fae93d4e4d71d1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·5f32766c99d383f833fae93d4e4d71d1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þ0Zgo.itab.image/color.Alpha16.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Tgo.itab.image/color.RGBA.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ02go.itab.*"".RGBA."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Xgo.itab.image/color.RGBA64.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ06go.itab.*"".RGBA64."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Vgo.itab.image/color.NRGBA.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ04go.itab.*"".NRGBA."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Zgo.itab.image/color.NRGBA64.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ08go.itab.*"".NRGBA64."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Vgo.itab.image/color.Alpha.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ04go.itab.*"".Alpha."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ08go.itab.*"".Alpha16."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Tgo.itab.image/color.Gray.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ02go.itab.*"".Gray."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Xgo.itab.image/color.Gray16.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ06go.itab.*"".Gray16."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Tgo.itab.image/color.CMYK.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ02go.itab.*"".CMYK."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·c7e46dd432d705036367d637fd33d432�(��(�������������������þ0Zgo.itab.image/color.Palette.image/color.Model�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·f1597d34acce1d76d65bc9b6f5da0f2d�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ0:go.itab.*"".Paletted."".Image�����þTgclocals·721dda3334c021125365f71a78d0ed1e�(��(�����������������þTgclocals·0c0c2c2ec738a77c7171e28b67bc998c�(��(����������������þTgclocals·5e29cf4e275ff1db65cfee262b3b8d1f� �� ��������������þTgclocals·32bd5c6dc84e3e86dd35593b3922d3aa� �� �������������þTgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f�(��(�����������������þTgclocals·57c83c41cc07fcd7f4b6f6e2693ed359�(��(����������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ0Jgo.itab.*"".Uniform.image/color.Model�����þTgclocals·0c8aa8e80191a30eac23f1a218103f16� �� ��������������þTgclocals·41a13ac73c712c01973b8fe23f62d694� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·13bdb4aeeaf63de3cc223d640262ea59�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·0c8aa8e80191a30eac23f1a218103f16� �� ��������������þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þLgo.string.hdr."YCbCrSubsampleRatio444"� �� ������������������Dgo.string."YCbCrSubsampleRatio444"���þDgo.string."YCbCrSubsampleRatio444"�0��.YCbCrSubsampleRatio444��þLgo.string.hdr."YCbCrSubsampleRatio422"� �� ������������������Dgo.string."YCbCrSubsampleRatio422"���þDgo.string."YCbCrSubsampleRatio422"�0��.YCbCrSubsampleRatio422��þLgo.string.hdr."YCbCrSubsampleRatio420"� �� ������������������Dgo.string."YCbCrSubsampleRatio420"���þDgo.string."YCbCrSubsampleRatio420"�0��.YCbCrSubsampleRatio420��þLgo.string.hdr."YCbCrSubsampleRatio440"� �� ������������������Dgo.string."YCbCrSubsampleRatio440"���þDgo.string."YCbCrSubsampleRatio440"�0��.YCbCrSubsampleRatio440��þLgo.string.hdr."YCbCrSubsampleRatio411"� �� ������������������Dgo.string."YCbCrSubsampleRatio411"���þDgo.string."YCbCrSubsampleRatio411"�0��.YCbCrSubsampleRatio411��þLgo.string.hdr."YCbCrSubsampleRatio410"� �� ������������������Dgo.string."YCbCrSubsampleRatio410"���þDgo.string."YCbCrSubsampleRatio410"�0��.YCbCrSubsampleRatio410��þTgo.string.hdr."YCbCrSubsampleRatioUnknown"� �� ������������������Lgo.string."YCbCrSubsampleRatioUnknown"���þLgo.string."YCbCrSubsampleRatioUnknown"�@��6YCbCrSubsampleRatioUnknown��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Vgo.itab.image/color.YCbCr.image/color.Color�����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ04go.itab.*"".YCbCr."".Image�����þTgclocals·afc01c2a5c5199c7dd20b96c14725140�8��8���
����������’����������þTgclocals·4a5c83272286258cf484ac950366f973�8��8����������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·27322ac377f4076175cee6d941c30830�8��8��� ���������‘����������þTgclocals·0ce38f56d4c8b081a7ecdd846c3439b5�8��8���������������������������þJgo.string.hdr."image: unknown format"� �� ������������������Bgo.string."image: unknown format"���þBgo.string."image: unknown format"�0��,image: unknown format��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þ."".ErrFormat�� type.error���þ."".formats��0 type.[]"".format���þ0
"".ZP�� type."".Point���þ0
"".ZR��@"type."".Rectangle���þ."".Black�� type.*"".Uniform���þ."".White�� type.*"".Uniform���þ."".Transparent�� type.*"".Uniform���þ."".Opaque�� type.*"".Uniform���þ0"".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·f��������������0"".(*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·f��������������0"".(*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·f��������������0"".(*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·f��������������0"".(*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·f��������������2"".(*Paletted).ColorModel���þ0"".(*Paletted).Bounds·f��������������*"".(*Paletted).Bounds���þ("".(*Paletted).At·f��������������""".(*Paletted).At���þ6"".(*Paletted).PixOffset·f��������������0"".(*Paletted).PixOffset���þ*"".(*Paletted).Set·f��������������$"".(*Paletted).Set���þ<"".(*Paletted).ColorIndexAt·f��������������6"".(*Paletted).ColorIndexAt���þ>"".(*Paletted).SetColorIndex·f��������������8"".(*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·f��������������0"".(*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���þ"".NewYCbCr·f��������������"".NewYCbCr���þ"".init·f��������������"".init���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·d98f60bd8519d0c68364b2a1d83af357�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·d98f60bd8519d0c68364b2a1d83af357�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578�������������þ"runtime.gcbits.01����þTgo.string.hdr."func(int, int) color.Color"� �� ������������������Lgo.string."func(int, int) color.Color"���þLgo.string."func(int, int) color.Color"�@��6func(int, int) color.Color��þJtype.func(int, int) image/color.Color�°��°��������������‚ÌÛT�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.Color"���p��\go.weak.type.*func(int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������Jtype.func(int, int) image/color.Color���þ8go.string.hdr."*image.Point"� �� �������� ����������0go.string."*image.Point"���þ0go.string."*image.Point"� ��*image.Point��þ*go.string.hdr."image"� �� ������������������"go.string."image"���þ"go.string."image"��� image��þ*go.string.hdr."Point"� �� ������������������"go.string."Point"���þ"go.string."Point"��� Point��þ,go.string.hdr."String"� �� ������������������$go.string."String"���þ$go.string."String"���String��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ&go.string.hdr."Add"� �� ������������������go.string."Add"���þgo.string."Add"���Add��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ&go.string.hdr."Sub"� �� ������������������go.string."Sub"���þgo.string."Sub"���Sub��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ&go.string.hdr."Mul"� �� ������������������go.string."Mul"���þgo.string."Mul"���Mul��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ&go.string.hdr."Div"� �� ������������������go.string."Div"���þgo.string."Div"���Div��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ$go.string.hdr."In"� �� ������������������go.string."In"���þgo.string."In"���In��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ&go.string.hdr."Mod"� �� ������������������go.string."Mod"���þgo.string."Mod"���Mod��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a041240a37ce609efec56707c330d1a4�������������þ$go.string.hdr."Eq"� �� ������������������go.string."Eq"���þgo.string."Eq"���Eq��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þvgo.string.hdr."func(*image.Point, image.Point) image.Point"� �� ��������+����������ngo.string."func(*image.Point, image.Point) image.Point"���þngo.string."func(*image.Point, image.Point) image.Point"�`��Xfunc(*image.Point, image.Point) image.Point��þNtype.func(*"".Point, "".Point) "".Point�°��°��������������Ÿ.^�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Point, image.Point) image.Point"���p��`go.weak.type.*func(*"".Point, "".Point) "".Point���€��"runtime.zerovalue��� €�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) "".Point��������������Ntype.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"�P��Hfunc(*image.Point, int) image.Point��þDtype.func(*"".Point, int) "".Point�°��°��������������3 �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.Point, int) image.Point"���p��Vgo.weak.type.*func(*"".Point, int) "".Point���€��"runtime.zerovalue��� €�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) "".Point��������������Dtype.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"�P��Jfunc(*image.Point, image.Point) bool��þFtype.func(*"".Point, "".Point) bool�°��°��������������¯š¢�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.Point, image.Point) bool"���p��Xgo.weak.type.*func(*"".Point, "".Point) bool���€��"runtime.zerovalue��� €�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) bool��������������Ftype.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�°��°��������������­âõ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Point, image.Rectangle) bool"���p��`go.weak.type.*func(*"".Point, "".Rectangle) bool���€��"runtime.zerovalue��� €�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) bool��������������Ntype.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�°��°��������������«øõ„�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"���p��hgo.weak.type.*func(*"".Point, "".Rectangle) "".Point���€��"runtime.zerovalue��� €�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) "".Point��������������Vtype.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×á�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.Point) string"���p��Hgo.weak.type.*func(*"".Point) string���€��"runtime.zerovalue��� €�6type.func(*"".Point) string���А�6type.func(*"".Point) string���€��type.*"".Point�����type.string���þxgo.typelink.func(*image.Point) string func(*"".Point) string��������������6type.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� �� ��������������˜<Ñ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(image.Point) image.Point"���p��Jgo.weak.type.*func("".Point) "".Point���€��"runtime.zerovalue��� €�8type.func("".Point) "".Point���А�8type.func("".Point) "".Point���€��type."".Point�����type."".Point���þ‚go.typelink.func(image.Point) image.Point func("".Point) "".Point��������������8type.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§¸�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Jgo.string.hdr."func(int) image.Point"���p��@go.weak.type.*func(int) "".Point���€��"runtime.zerovalue��� €�.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� �� ��������������—ËÆa�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(image.Point) bool"���p��Bgo.weak.type.*func("".Point) bool���€��"runtime.zerovalue��� €�0type.func("".Point) bool���А�0type.func("".Point) bool���€��type."".Point�����type.bool���þlgo.typelink.func(image.Point) bool func("".Point) bool��������������0type.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� �� ��������������Á¬S�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(image.Rectangle) bool"���p��Jgo.weak.type.*func("".Rectangle) bool���€��"runtime.zerovalue��� €�8type.func("".Rectangle) bool���А�8type.func("".Rectangle) bool���€��"type."".Rectangle�����type.bool���þ|go.typelink.func(image.Rectangle) bool func("".Rectangle) bool��������������8type.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"�P��Dfunc(image.Rectangle) image.Point��þ@type.func("".Rectangle) "".Point� �� ��������������¯]Ek�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Rectangle) image.Point"���p��Rgo.weak.type.*func("".Rectangle) "".Point���€��"runtime.zerovalue��� €�@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Ë�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$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.01���P��8go.string.hdr."*image.Point"���p��.go.weak.type.**"".Point���€��"runtime.zerovalue�����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{�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(image.Point, image.Point) image.Point"���p��^go.weak.type.*func("".Point, "".Point) "".Point���€��"runtime.zerovalue��� €�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) "".Point��������������Ltype.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"�P��Ffunc(image.Point, int) image.Point��þBtype.func("".Point, int) "".Point�°��°��������������Ø(de�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(image.Point, int) image.Point"���p��Tgo.weak.type.*func("".Point, int) "".Point���€��"runtime.zerovalue��� €�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) "".Point��������������Btype.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"�P��Hfunc(image.Point, image.Point) bool��þDtype.func("".Point, "".Point) bool�°��°��������������ãÊÀ3�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(image.Point, image.Point) bool"���p��Vgo.weak.type.*func("".Point, "".Point) bool���€��"runtime.zerovalue��� €�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) bool��������������Dtype.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"�P��Pfunc(image.Point, image.Rectangle) bool��þLtype.func("".Point, "".Rectangle) bool�°��°�������������� �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(image.Point, image.Rectangle) bool"���p��^go.weak.type.*func("".Point, "".Rectangle) bool���€��"runtime.zerovalue��� €�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) bool��������������Ltype.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�°��°��������������$#Íò�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(image.Point, image.Rectangle) image.Point"���p��fgo.weak.type.*func("".Point, "".Rectangle) "".Point���€��"runtime.zerovalue��� €�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) "".Point��������������Ttype.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� �� ��������������Û,|º�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(image.Point) string"���p��Fgo.weak.type.*func("".Point) string���€��"runtime.zerovalue��� €�4type.func("".Point) string���А�4type.func("".Point) string���€��type."".Point�����type.string���þtgo.typelink.func(image.Point) string func("".Point) string��������������4type.func("".Point) string���þ"go.importpath."".� �� ������������������"go.string."image"���þtype."".Point��° ��° ���������������V[¼�™�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������l0À� runtime.algarray���@��runtime.gcbits.���P��6go.string.hdr."image.Point"���p��type.*"".Point���€��"runtime.zerovalue���À�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..hashfunc32�����type..eqfunc32���þ@go.string.hdr."*image.Rectangle"� �� ������������������8go.string."*image.Rectangle"���þ8go.string."*image.Rectangle"�0��"*image.Rectangle��þ2go.string.hdr."Rectangle"� �� �������� ����������*go.string."Rectangle"���þ*go.string."Rectangle"� ��Rectangle��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ$go.string.hdr."Dx"� �� ������������������go.string."Dx"���þgo.string."Dx"���Dx��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þ$go.string.hdr."Dy"� �� ������������������go.string."Dy"���þgo.string."Dy"���Dy��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þ(go.string.hdr."Size"� �� ������������������ go.string."Size"���þ go.string."Size"���
Size��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a041240a37ce609efec56707c330d1a4�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a041240a37ce609efec56707c330d1a4�������������þ*go.string.hdr."Inset"� �� ������������������"go.string."Inset"���þ"go.string."Inset"��� Inset��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ2go.string.hdr."Intersect"� �� �������� ����������*go.string."Intersect"���þ*go.string."Intersect"� ��Intersect��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·4d8bed7e4976e3d095a9230e496231af������ �������þ*go.string.hdr."Union"� �� ������������������"go.string."Union"���þ"go.string."Union"��� Union��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·4d8bed7e4976e3d095a9230e496231af������ �������þ*go.string.hdr."Empty"� �� ������������������"go.string."Empty"���þ"go.string."Empty"��� Empty��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ0go.string.hdr."Overlaps"� �� ������������������(go.string."Overlaps"���þ(go.string."Overlaps"� ��Overlaps��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ*go.string.hdr."Canon"� �� ������������������"go.string."Canon"���þ"go.string."Canon"��� Canon��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ$go.string.hdr."At"� �� ������������������go.string."At"���þgo.string."At"���At��þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ,go.string.hdr."Bounds"� �� ������������������$go.string."Bounds"���þ$go.string."Bounds"���Bounds��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ4go.string.hdr."ColorModel"� �� ��������
����������,go.string."ColorModel"���þ,go.string."ColorModel"� ��ColorModel��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ†go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"� �� ��������3����������~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���þ~go.string."func(*image.Rectangle, image.Point) image.Rectangle"�p��hfunc(*image.Rectangle, image.Point) image.Rectangle��þ^type.func(*"".Rectangle, "".Point) "".Rectangle�°��°��������������7Øút�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��†go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"���p��pgo.weak.type.*func(*"".Rectangle, "".Point) "".Rectangle���€��"runtime.zerovalue��� €�^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¸Öœ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Rectangle, int, int) color.Color"���p��zgo.weak.type.*func(*"".Rectangle, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������htype.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"�P��Nfunc(*image.Rectangle) image.Rectangle��þJtype.func(*"".Rectangle) "".Rectangle� �� ��������������ŒP2]�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.Rectangle) image.Rectangle"���p��\go.weak.type.*func(*"".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�Jtype.func(*"".Rectangle) "".Rectangle���А�Jtype.func(*"".Rectangle) "".Rectangle���€��$type.*"".Rectangle�����"type."".Rectangle���þ¦go.typelink.func(*image.Rectangle) image.Rectangle func(*"".Rectangle) "".Rectangle��������������Jtype.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"�P��Ffunc(*image.Rectangle) color.Model��þTtype.func(*"".Rectangle) image/color.Model� �� ��������������§Õ]�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Rectangle) color.Model"���p��fgo.weak.type.*func(*"".Rectangle) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ttype.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� �� ��������������áç§@�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(*image.Rectangle) int"���p��Jgo.weak.type.*func(*"".Rectangle) int���€��"runtime.zerovalue��� €�8type.func(*"".Rectangle) int���А�8type.func(*"".Rectangle) int���€��$type.*"".Rectangle�����type.int���þ|go.typelink.func(*image.Rectangle) int func(*"".Rectangle) int��������������8type.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� �� ��������������ro��3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(*image.Rectangle) bool"���p��Lgo.weak.type.*func(*"".Rectangle) bool���€��"runtime.zerovalue��� €�: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�°��°��������������‹ @¶�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool"���p��hgo.weak.type.*func(*"".Rectangle, "".Rectangle) bool���€��"runtime.zerovalue��� €�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) bool��������������Vtype.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š�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Rectangle, int) image.Rectangle"���p��fgo.weak.type.*func(*"".Rectangle, int) "".Rectangle���€��"runtime.zerovalue��� €�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) "".Rectangle��������������Ttype.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"�p��pfunc(*image.Rectangle, image.Rectangle) image.Rectangle��þftype.func(*"".Rectangle, "".Rectangle) "".Rectangle�°��°��������������:çÃ¥�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Žgo.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle"���p��xgo.weak.type.*func(*"".Rectangle, "".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�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) "".Rectangle��������������ftype.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"�P��Ffunc(*image.Rectangle) image.Point��þBtype.func(*"".Rectangle) "".Point� �� ��������������v÷I�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Rectangle) image.Point"���p��Tgo.weak.type.*func(*"".Rectangle) "".Point���€��"runtime.zerovalue��� €�Btype.func(*"".Rectangle) "".Point���А�Btype.func(*"".Rectangle) "".Point���€��$type.*"".Rectangle�����type."".Point���þ–go.typelink.func(*image.Rectangle) image.Point func(*"".Rectangle) "".Point��������������Btype.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� �� ��������������€_5�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.Rectangle) string"���p��Pgo.weak.type.*func(*"".Rectangle) string���€��"runtime.zerovalue��� €�>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"�P��Dfunc(image.Point) image.Rectangle��þ@type.func("".Point) "".Rectangle� �� ��������������ÇmËQ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Point) image.Rectangle"���p��Rgo.weak.type.*func("".Point) "".Rectangle���€��"runtime.zerovalue��� €�@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�����������������‚{#�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."func() color.Model"���p��Lgo.weak.type.*func() image/color.Model���€��"runtime.zerovalue��� €�: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à�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."func() int"���p��0go.weak.type.*func() int���€��"runtime.zerovalue��� €�type.func() int���Ѐ�type.func() int���€��type.int���þBgo.typelink.func() int func() int��������������type.func() int���þ6go.string.hdr."func() bool"� �� �������� ����������.go.string."func() bool"���þ.go.string."func() bool"� ��func() bool��þ type.func() bool�����������������TËx�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."func() bool"���p��2go.weak.type.*func() bool���€��"runtime.zerovalue��� €� 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� �� ��������������À¹,e�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int) image.Rectangle"���p��Hgo.weak.type.*func(int) "".Rectangle���€��"runtime.zerovalue��� €�6type.func(int) "".Rectangle���А�6type.func(int) "".Rectangle���€��type.int�����"type."".Rectangle���þxgo.typelink.func(int) image.Rectangle func(int) "".Rectangle��������������6type.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"�P��Lfunc(image.Rectangle) image.Rectangle��þHtype.func("".Rectangle) "".Rectangle� �� ��������������a? B�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(image.Rectangle) image.Rectangle"���p��Zgo.weak.type.*func("".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�Htype.func("".Rectangle) "".Rectangle���А�Htype.func("".Rectangle) "".Rectangle���€��"type."".Rectangle�����"type."".Rectangle���þ¢go.typelink.func(image.Rectangle) image.Rectangle func("".Rectangle) "".Rectangle��������������Htype.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�����������������$*|õ�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."func() image.Point"���p��:go.weak.type.*func() "".Point���€��"runtime.zerovalue��� €�(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.01���P��@go.string.hdr."*image.Rectangle"���p��6go.weak.type.**"".Rectangle���€��"runtime.zerovalue�����"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"�p��ffunc(image.Rectangle, image.Point) image.Rectangle��þ\type.func("".Rectangle, "".Point) "".Rectangle�°��°��������������·ç�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��„go.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"���p��ngo.weak.type.*func("".Rectangle, "".Point) "".Rectangle���€��"runtime.zerovalue��� €�\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�À��À���������������ÛÑ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(image.Rectangle, int, int) color.Color"���p��xgo.weak.type.*func("".Rectangle, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������ftype.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"�P��Dfunc(image.Rectangle) color.Model��þRtype.func("".Rectangle) image/color.Model� �� ��������������‰aßÕ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Rectangle) color.Model"���p��dgo.weak.type.*func("".Rectangle) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Rtype.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¼�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(image.Rectangle) int"���p��Hgo.weak.type.*func("".Rectangle) int���€��"runtime.zerovalue��� €�6type.func("".Rectangle) int���А�6type.func("".Rectangle) int���€��"type."".Rectangle�����type.int���þxgo.typelink.func(image.Rectangle) int func("".Rectangle) int��������������6type.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Ñ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"���p��fgo.weak.type.*func("".Rectangle, "".Rectangle) bool���€��"runtime.zerovalue��� €�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) bool��������������Ttype.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Î�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(image.Rectangle, int) image.Rectangle"���p��dgo.weak.type.*func("".Rectangle, int) "".Rectangle���€��"runtime.zerovalue��� €�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) "".Rectangle��������������Rtype.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"�p��nfunc(image.Rectangle, image.Rectangle) image.Rectangle��þdtype.func("".Rectangle, "".Rectangle) "".Rectangle�°��°��������������M_Eå�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Œgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"���p��vgo.weak.type.*func("".Rectangle, "".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�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) "".Rectangle��������������dtype.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� �� ��������������¨Ü7b�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(image.Rectangle) string"���p��Ngo.weak.type.*func("".Rectangle) string���€��"runtime.zerovalue��� €�<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���� ���������������£•—É�™�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Æ0��type..alg32���@��runtime.gcbits.���P��>go.string.hdr."image.Rectangle"���p��$type.*"".Rectangle���€��"runtime.zerovalue���À�"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�����������������ìÍ´e�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func() image.Rectangle"���p��Bgo.weak.type.*func() "".Rectangle���€��"runtime.zerovalue��� €�0type.func() "".Rectangle���Ѐ�0type.func() "".Rectangle���€��"type."".Rectangle���þlgo.typelink.func() image.Rectangle func() "".Rectangle��������������0type.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.01���P��8go.string.hdr."*image.Image"���p��.go.weak.type.**"".Image���€��"runtime.zerovalue�����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.03���P��6go.string.hdr."image.Image"���p��type.*"".Image���€��"runtime.zerovalue���À�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)"�P��Jfunc(io.Reader) (image.Image, error)��þLtype.func(io.Reader) ("".Image, error)�°��°��������������‚ïº@�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(io.Reader) (image.Image, error)"���p��^go.weak.type.*func(io.Reader) ("".Image, error)���€��"runtime.zerovalue��� €�Ltype.func(io.Reader) ("".Image, error)���А�Ltype.func(io.Reader) ("".Image, error)���€��type.io.Reader�����type."".Image��� ��type.error���þ¤go.typelink.func(io.Reader) (image.Image, error) func(io.Reader) ("".Image, error)��������������Ltype.func(io.Reader) ("".Image, error)���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ0type..hashfunc."".Config��������������(type..hash."".Config���þ,type..eqfunc."".Config��������������$type..eq."".Config���þ&type..alg."".Config� �� �������������������0type..hashfunc."".Config�����,type..eqfunc."".Config���þ:go.string.hdr."*image.Config"� �� �������� ����������2go.string."*image.Config"���þ2go.string."*image.Config"� ��*image.Config��þtype.*"".Config�� �� ��������������³`y�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.Config"���p��0go.weak.type.**"".Config���€��"runtime.zerovalue�����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³¯g������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0��&type..alg."".Config���@��"runtime.gcbits.03���P��8go.string.hdr."image.Config"���p��type.*"".Config���€��"runtime.zerovalue���À�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)"�P��Lfunc(io.Reader) (image.Config, error)��þNtype.func(io.Reader) ("".Config, error)�°��°��������������ã3/ö�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(io.Reader) (image.Config, error)"���p��`go.weak.type.*func(io.Reader) ("".Config, error)���€��"runtime.zerovalue��� €�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@M�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.format"���p��0go.weak.type.**"".format���€��"runtime.zerovalue�����type."".format���þ"runtime.gcbits.35���5�þ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��Ð��Ð0�������0�������ˆ@7¨�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������(�����������������������������������������������,0à� runtime.algarray���@��"runtime.gcbits.35���P��8go.string.hdr."image.format"���p��type.*"".format���€��"runtime.zerovalue���À�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.01���P��<go.string.hdr."[]image.format"���p��2go.weak.type.*[]"".format���€��"runtime.zerovalue�����type."".format���þLgo.typelink.[]image.format []"".format�������������� type.[]"".format���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d46c0650eba7dbebc0db316e0e0cf3b�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·dacebcad73eed5073009fd67170948d0�������������þ.go.string.hdr."[]uint8"� �� ������������������&go.string."[]uint8"���þ&go.string."[]uint8"���[]uint8��þtype.[]uint8� �� ��������������ß~.8��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��.go.string.hdr."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8 []uint8��������������type.[]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Ë�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int) ([]uint8, error)"���p��Pgo.weak.type.*func(int) ([]uint8, error)���€��"runtime.zerovalue��� €�>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)�°��°��������������„N4P�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func([]uint8) (int, error)"���p��Pgo.weak.type.*func([]uint8) (int, error)���€��"runtime.zerovalue��� €�>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.01���P��:go.string.hdr."*image.reader"���p��0go.weak.type.**"".reader���€��"runtime.zerovalue�����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.03���P��8go.string.hdr."image.reader"���p��type.*"".reader���€��"runtime.zerovalue���À�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.01���P��4go.string.hdr."image.RGBA"���p��type.*"".RGBA���€��"runtime.zerovalue���À�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"�P��Pfunc(*image.RGBA, int, int) color.Color��þ^type.func(*"".RGBA, int, int) image/color.Color�À��À��������������ì‡;ƒ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.RGBA, int, int) color.Color"���p��pgo.weak.type.*func(*"".RGBA, int, int) image/color.Color���€��"runtime.zerovalue��� €�^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"�P��Dfunc(*image.RGBA) image.Rectangle��þ@type.func(*"".RGBA) "".Rectangle� �� ��������������VbX �3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.RGBA) image.Rectangle"���p��Rgo.weak.type.*func(*"".RGBA) "".Rectangle���€��"runtime.zerovalue��� €�@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ì�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.RGBA) color.Model"���p��\go.weak.type.*func(*"".RGBA) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Jtype.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� �� �������������� ÆÇ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*image.RGBA) bool"���p��Bgo.weak.type.*func(*"".RGBA) bool���€��"runtime.zerovalue��� €�0type.func(*"".RGBA) bool���А�0type.func(*"".RGBA) bool���€��type.*"".RGBA�����type.bool���þlgo.typelink.func(*image.RGBA) bool func(*"".RGBA) bool��������������0type.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·�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.RGBA, int, int) int"���p��Tgo.weak.type.*func(*"".RGBA, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Btype.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"�P��Nfunc(*image.RGBA, int, int) color.RGBA��þ\type.func(*"".RGBA, int, int) image/color.RGBA�À��À��������������:-�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.RGBA, int, int) color.RGBA"���p��ngo.weak.type.*func(*"".RGBA, int, int) image/color.RGBA���€��"runtime.zerovalue��� €�\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)�À��À��������������ÿâ¤�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.RGBA, int, int, color.Color)"���p��rgo.weak.type.*func(*"".RGBA, int, int, image/color.Color)���€��"runtime.zerovalue��� €�`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)"�P��Pfunc(*image.RGBA, int, int, color.RGBA)��þ^type.func(*"".RGBA, int, int, image/color.RGBA)�À��À��������������çe1�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)"���p��pgo.weak.type.*func(*"".RGBA, int, int, image/color.RGBA)���€��"runtime.zerovalue��� €�^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�°��°�������������� ˬ‹�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".RGBA, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Ttype.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�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."func(int, int) int"���p��@go.weak.type.*func(int, int) int���€��"runtime.zerovalue��� €�.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‹g�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int, int) color.RGBA"���p��Zgo.weak.type.*func(int, int) image/color.RGBA���€��"runtime.zerovalue��� €�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.RGBA��������������Htype.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~Õ�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int, color.Color)"���p��^go.weak.type.*func(int, int, image/color.Color)���€��"runtime.zerovalue��� €�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Ì$�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int, color.RGBA)"���p��\go.weak.type.*func(int, int, image/color.RGBA)���€��"runtime.zerovalue��� €�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"�P��Dfunc(image.Rectangle) image.Image��þ@type.func("".Rectangle) "".Image� �� ��������������wûÁ£�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Rectangle) image.Image"���p��Rgo.weak.type.*func("".Rectangle) "".Image���€��"runtime.zerovalue��� €�@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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*image.RGBA"���p��,go.weak.type.**"".RGBA���€��"runtime.zerovalue�����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.01���P��8go.string.hdr."image.RGBA64"���p��type.*"".RGBA64���€��"runtime.zerovalue���À�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�À��À��������������¸ØIx�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.RGBA64, int, int) color.Color"���p��tgo.weak.type.*func(*"".RGBA64, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������btype.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"�P��Hfunc(*image.RGBA64) image.Rectangle��þDtype.func(*"".RGBA64) "".Rectangle� �� ��������������LÜç�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.RGBA64) image.Rectangle"���p��Vgo.weak.type.*func(*"".RGBA64) "".Rectangle���€��"runtime.zerovalue��� €�Dtype.func(*"".RGBA64) "".Rectangle���А�Dtype.func(*"".RGBA64) "".Rectangle���€��type.*"".RGBA64�����"type."".Rectangle���þšgo.typelink.func(*image.RGBA64) image.Rectangle func(*"".RGBA64) "".Rectangle��������������Dtype.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\a�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.RGBA64) color.Model"���p��`go.weak.type.*func(*"".RGBA64) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ntype.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� �� ��������������`Ù �3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(*image.RGBA64) bool"���p��Fgo.weak.type.*func(*"".RGBA64) bool���€��"runtime.zerovalue��� €�4type.func(*"".RGBA64) bool���А�4type.func(*"".RGBA64) bool���€��type.*"".RGBA64�����type.bool���þtgo.typelink.func(*image.RGBA64) bool func(*"".RGBA64) bool��������������4type.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"�P��Dfunc(*image.RGBA64, int, int) int��þFtype.func(*"".RGBA64, int, int) int�À��À��������������‡ ¹ë�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.RGBA64, int, int) int"���p��Xgo.weak.type.*func(*"".RGBA64, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Ftype.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�À��À��������������ÿ·c6�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64"���p��vgo.weak.type.*func(*"".RGBA64, int, int) image/color.RGBA64���€��"runtime.zerovalue��� €�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.RGBA64��������������dtype.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)�À��À��������������”Ò1�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.RGBA64, int, int, color.Color)"���p��vgo.weak.type.*func(*"".RGBA64, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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‹¥ÿ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)"���p��xgo.weak.type.*func(*"".RGBA64, int, int, image/color.RGBA64)���€��"runtime.zerovalue��� €�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"� �� ��������0����������xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���þxgo.string."func(*image.RGBA64, image.Rectangle) image.Image"�p��bfunc(*image.RGBA64, image.Rectangle) image.Image��þXtype.func(*"".RGBA64, "".Rectangle) "".Image�°��°��������������9»z¥�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��€go.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image"���p��jgo.weak.type.*func(*"".RGBA64, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Xtype.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Æ»�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int) color.RGBA64"���p��^go.weak.type.*func(int, int) image/color.RGBA64���€��"runtime.zerovalue��� €�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.RGBA64��������������Ltype.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)�°��°��������������$‹àw�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int, color.RGBA64)"���p��`go.weak.type.*func(int, int, image/color.RGBA64)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.RGBA64"���p��0go.weak.type.**"".RGBA64���€��"runtime.zerovalue�����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.01���P��6go.string.hdr."image.NRGBA"���p��type.*"".NRGBA���€��"runtime.zerovalue���À�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�À��À�������������� Ó÷ì�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.NRGBA, int, int) color.Color"���p��rgo.weak.type.*func(*"".NRGBA, int, int) image/color.Color���€��"runtime.zerovalue��� €�`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"�P��Ffunc(*image.NRGBA) image.Rectangle��þBtype.func(*"".NRGBA) "".Rectangle� �� ��������������>÷La�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.NRGBA) image.Rectangle"���p��Tgo.weak.type.*func(*"".NRGBA) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".NRGBA) "".Rectangle���А�Btype.func(*"".NRGBA) "".Rectangle���€��type.*"".NRGBA�����"type."".Rectangle���þ–go.typelink.func(*image.NRGBA) image.Rectangle func(*"".NRGBA) "".Rectangle��������������Btype.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� �� ��������������˜™×@�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(*image.NRGBA) color.Model"���p��^go.weak.type.*func(*"".NRGBA) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ltype.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�À��À��������������¼\ƒÈ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"���p��rgo.weak.type.*func(*"".NRGBA, int, int) image/color.NRGBA���€��"runtime.zerovalue��� €�`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"�0��0func(*image.NRGBA) bool��þ2type.func(*"".NRGBA) bool� �� ��������������ڏ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func(*image.NRGBA) bool"���p��Dgo.weak.type.*func(*"".NRGBA) bool���€��"runtime.zerovalue��� €�2type.func(*"".NRGBA) bool���А�2type.func(*"".NRGBA) bool���€��type.*"".NRGBA�����type.bool���þpgo.typelink.func(*image.NRGBA) bool func(*"".NRGBA) bool��������������2type.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"�P��Bfunc(*image.NRGBA, int, int) int��þDtype.func(*"".NRGBA, int, int) int�À��À��������������¿¹�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.NRGBA, int, int) int"���p��Vgo.weak.type.*func(*"".NRGBA, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Dtype.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)�À��À��������������Ý»ìû�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"���p��tgo.weak.type.*func(*"".NRGBA, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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)�À��À��������������ÏƛÈ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"���p��tgo.weak.type.*func(*"".NRGBA, int, int, image/color.NRGBA)���€��"runtime.zerovalue��� €�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ӂ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".NRGBA, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Vtype.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�°��°��������������Ä �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.NRGBA"���p��\go.weak.type.*func(int, int) image/color.NRGBA���€��"runtime.zerovalue��� €�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.NRGBA��������������Jtype.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)�°��°�������������� ‚�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int, color.NRGBA)"���p��^go.weak.type.*func(int, int, image/color.NRGBA)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.NRGBA"���p��.go.weak.type.**"".NRGBA���€��"runtime.zerovalue�����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.01���P��:go.string.hdr."image.NRGBA64"���p�� type.*"".NRGBA64���€��"runtime.zerovalue���À�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¬&�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.NRGBA64, int, int) color.Color"���p��vgo.weak.type.*func(*"".NRGBA64, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������dtype.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"�P��Jfunc(*image.NRGBA64) image.Rectangle��þFtype.func(*"".NRGBA64) "".Rectangle� �� ��������������Éa�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.NRGBA64) image.Rectangle"���p��Xgo.weak.type.*func(*"".NRGBA64) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".NRGBA64) "".Rectangle���А�Ftype.func(*"".NRGBA64) "".Rectangle���€�� type.*"".NRGBA64�����"type."".Rectangle���þžgo.typelink.func(*image.NRGBA64) image.Rectangle func(*"".NRGBA64) "".Rectangle��������������Ftype.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"�P��Bfunc(*image.NRGBA64) color.Model��þPtype.func(*"".NRGBA64) image/color.Model� �� ��������������Ãòlz�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.NRGBA64) color.Model"���p��bgo.weak.type.*func(*"".NRGBA64) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ptype.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�À��À��������������RbK�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64"���p��zgo.weak.type.*func(*"".NRGBA64, int, int) image/color.NRGBA64���€��"runtime.zerovalue��� €�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.NRGBA64��������������htype.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¸�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.NRGBA64) bool"���p��Hgo.weak.type.*func(*"".NRGBA64) bool���€��"runtime.zerovalue��� €�6type.func(*"".NRGBA64) bool���А�6type.func(*"".NRGBA64) bool���€�� type.*"".NRGBA64�����type.bool���þxgo.typelink.func(*image.NRGBA64) bool func(*"".NRGBA64) bool��������������6type.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"�P��Ffunc(*image.NRGBA64, int, int) int��þHtype.func(*"".NRGBA64, int, int) int�À��À��������������³rY�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.NRGBA64, int, int) int"���p��Zgo.weak.type.*func(*"".NRGBA64, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Htype.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)�À��À��������������…Ém�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)"���p��xgo.weak.type.*func(*"".NRGBA64, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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|�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)"���p��|go.weak.type.*func(*"".NRGBA64, int, int, image/color.NRGBA64)���€��"runtime.zerovalue��� €�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"� �� ��������1����������zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���þzgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"�p��dfunc(*image.NRGBA64, image.Rectangle) image.Image��þZtype.func(*"".NRGBA64, "".Rectangle) "".Image�°��°��������������hÀî¦�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��‚go.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image"���p��lgo.weak.type.*func(*"".NRGBA64, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Ztype.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�°��°��������������|¨c0�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int) color.NRGBA64"���p��`go.weak.type.*func(int, int) image/color.NRGBA64���€��"runtime.zerovalue��� €�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.NRGBA64��������������Ntype.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;s�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(int, int, color.NRGBA64)"���p��bgo.weak.type.*func(int, int, image/color.NRGBA64)���€��"runtime.zerovalue��� €�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��Ð��Ð��������������ôOR�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*image.NRGBA64"���p��2go.weak.type.**"".NRGBA64���€��"runtime.zerovalue�����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.01���P��6go.string.hdr."image.Alpha"���p��type.*"".Alpha���€��"runtime.zerovalue���À�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�À��À��������������Š>ˆ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"���p��rgo.weak.type.*func(*"".Alpha, int, int) image/color.Alpha���€��"runtime.zerovalue��� €�`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ú�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Alpha, int, int) color.Color"���p��rgo.weak.type.*func(*"".Alpha, int, int) image/color.Color���€��"runtime.zerovalue��� €�`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"�P��Ffunc(*image.Alpha) image.Rectangle��þBtype.func(*"".Alpha) "".Rectangle� �� ��������������ӓôt�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Alpha) image.Rectangle"���p��Tgo.weak.type.*func(*"".Alpha) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".Alpha) "".Rectangle���А�Btype.func(*"".Alpha) "".Rectangle���€��type.*"".Alpha�����"type."".Rectangle���þ–go.typelink.func(*image.Alpha) image.Rectangle func(*"".Alpha) "".Rectangle��������������Btype.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� �� ��������������ë‹çY�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(*image.Alpha) color.Model"���p��^go.weak.type.*func(*"".Alpha) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ltype.func(*"".Alpha) image/color.Model���þNgo.string.hdr."func(*image.Alpha) bool"� �� ������������������Fgo.string."func(*image.Alpha) bool"���þFgo.string."func(*image.Alpha) bool"�0��0func(*image.Alpha) bool��þ2type.func(*"".Alpha) bool� �� ��������������ÂgPO�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func(*image.Alpha) bool"���p��Dgo.weak.type.*func(*"".Alpha) bool���€��"runtime.zerovalue��� €�2type.func(*"".Alpha) bool���А�2type.func(*"".Alpha) bool���€��type.*"".Alpha�����type.bool���þpgo.typelink.func(*image.Alpha) bool func(*"".Alpha) bool��������������2type.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"�P��Bfunc(*image.Alpha, int, int) int��þDtype.func(*"".Alpha, int, int) int�À��À��������������—½ìw�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.Alpha, int, int) int"���p��Vgo.weak.type.*func(*"".Alpha, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Dtype.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)�À��À��������������¾ª}�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.Alpha, int, int, color.Color)"���p��tgo.weak.type.*func(*"".Alpha, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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)�À��À��������������¿L1�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"���p��tgo.weak.type.*func(*"".Alpha, int, int, image/color.Alpha)���€��"runtime.zerovalue��� €�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�°��°��������������ۀŸ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".Alpha, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Vtype.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=¼ü�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.Alpha"���p��\go.weak.type.*func(int, int) image/color.Alpha���€��"runtime.zerovalue��� €�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.Alpha��������������Jtype.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·CP�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int, color.Alpha)"���p��^go.weak.type.*func(int, int, image/color.Alpha)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.Alpha"���p��.go.weak.type.**"".Alpha���€��"runtime.zerovalue�����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.01���P��:go.string.hdr."image.Alpha16"���p�� type.*"".Alpha16���€��"runtime.zerovalue���À�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À•¾�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16"���p��zgo.weak.type.*func(*"".Alpha16, int, int) image/color.Alpha16���€��"runtime.zerovalue��� €�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.Alpha16��������������htype.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�À��À��������������¿[€­�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Alpha16, int, int) color.Color"���p��vgo.weak.type.*func(*"".Alpha16, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������dtype.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"�P��Jfunc(*image.Alpha16) image.Rectangle��þFtype.func(*"".Alpha16) "".Rectangle� �� ��������������„„^;�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.Alpha16) image.Rectangle"���p��Xgo.weak.type.*func(*"".Alpha16) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".Alpha16) "".Rectangle���А�Ftype.func(*"".Alpha16) "".Rectangle���€�� type.*"".Alpha16�����"type."".Rectangle���þžgo.typelink.func(*image.Alpha16) image.Rectangle func(*"".Alpha16) "".Rectangle��������������Ftype.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"�P��Bfunc(*image.Alpha16) color.Model��þPtype.func(*"".Alpha16) image/color.Model� �� ��������������#*ëN�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.Alpha16) color.Model"���p��bgo.weak.type.*func(*"".Alpha16) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ptype.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Á�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.Alpha16) bool"���p��Hgo.weak.type.*func(*"".Alpha16) bool���€��"runtime.zerovalue��� €�6type.func(*"".Alpha16) bool���А�6type.func(*"".Alpha16) bool���€�� type.*"".Alpha16�����type.bool���þxgo.typelink.func(*image.Alpha16) bool func(*"".Alpha16) bool��������������6type.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"�P��Ffunc(*image.Alpha16, int, int) int��þHtype.func(*"".Alpha16, int, int) int�À��À��������������¶ žK�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Alpha16, int, int) int"���p��Zgo.weak.type.*func(*"".Alpha16, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Htype.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)�À��À��������������Ž°¢h�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Alpha16, int, int, color.Color)"���p��xgo.weak.type.*func(*"".Alpha16, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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)�À��À�������������� &œõ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)"���p��|go.weak.type.*func(*"".Alpha16, int, int, image/color.Alpha16)���€��"runtime.zerovalue��� €�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"� �� ��������1����������zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���þzgo.string."func(*image.Alpha16, image.Rectangle) image.Image"�p��dfunc(*image.Alpha16, image.Rectangle) image.Image��þZtype.func(*"".Alpha16, "".Rectangle) "".Image�°��°��������������i—8 �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��‚go.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image"���p��lgo.weak.type.*func(*"".Alpha16, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Ztype.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!�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int) color.Alpha16"���p��`go.weak.type.*func(int, int) image/color.Alpha16���€��"runtime.zerovalue��� €�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.Alpha16��������������Ntype.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|�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(int, int, color.Alpha16)"���p��bgo.weak.type.*func(int, int, image/color.Alpha16)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*image.Alpha16"���p��2go.weak.type.**"".Alpha16���€��"runtime.zerovalue�����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.01���P��4go.string.hdr."image.Gray"���p��type.*"".Gray���€��"runtime.zerovalue���À�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"�P��Pfunc(*image.Gray, int, int) color.Color��þ^type.func(*"".Gray, int, int) image/color.Color�À��À��������������9kK�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.Gray, int, int) color.Color"���p��pgo.weak.type.*func(*"".Gray, int, int) image/color.Color���€��"runtime.zerovalue��� €�^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"�P��Dfunc(*image.Gray) image.Rectangle��þ@type.func(*"".Gray) "".Rectangle� �� ��������������°¸e�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Gray) image.Rectangle"���p��Rgo.weak.type.*func(*"".Gray) "".Rectangle���€��"runtime.zerovalue��� €�@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� �� ��������������ý·áò�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.Gray) color.Model"���p��\go.weak.type.*func(*"".Gray) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Jtype.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"�P��Nfunc(*image.Gray, int, int) color.Gray��þ\type.func(*"".Gray, int, int) image/color.Gray�À��À��������������Š½žh�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.Gray, int, int) color.Gray"���p��ngo.weak.type.*func(*"".Gray, int, int) image/color.Gray���€��"runtime.zerovalue��� €�\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`�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*image.Gray) bool"���p��Bgo.weak.type.*func(*"".Gray) bool���€��"runtime.zerovalue��� €�0type.func(*"".Gray) bool���А�0type.func(*"".Gray) bool���€��type.*"".Gray�����type.bool���þlgo.typelink.func(*image.Gray) bool func(*"".Gray) bool��������������0type.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ò�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.Gray, int, int) int"���p��Tgo.weak.type.*func(*"".Gray, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Btype.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)�À��À��������������¿KNo�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Gray, int, int, color.Color)"���p��rgo.weak.type.*func(*"".Gray, int, int, image/color.Color)���€��"runtime.zerovalue��� €�`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)"�P��Pfunc(*image.Gray, int, int, color.Gray)��þ^type.func(*"".Gray, int, int, image/color.Gray)�À��À��������������ƒhMæ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.Gray, int, int, color.Gray)"���p��pgo.weak.type.*func(*"".Gray, int, int, image/color.Gray)���€��"runtime.zerovalue��� €�^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–�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".Gray, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Ttype.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�°��°��������������šÜ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int, int) color.Gray"���p��Zgo.weak.type.*func(int, int) image/color.Gray���€��"runtime.zerovalue��� €�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.Gray��������������Htype.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Š�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int, color.Gray)"���p��\go.weak.type.*func(int, int, image/color.Gray)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*image.Gray"���p��,go.weak.type.**"".Gray���€��"runtime.zerovalue�����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.01���P��8go.string.hdr."image.Gray16"���p��type.*"".Gray16���€��"runtime.zerovalue���À�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{±÷�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.Gray16, int, int) color.Color"���p��tgo.weak.type.*func(*"".Gray16, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������btype.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"�P��Hfunc(*image.Gray16) image.Rectangle��þDtype.func(*"".Gray16) "".Rectangle� �� ��������������Í!ʋ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.Gray16) image.Rectangle"���p��Vgo.weak.type.*func(*"".Gray16) "".Rectangle���€��"runtime.zerovalue��� €�Dtype.func(*"".Gray16) "".Rectangle���А�Dtype.func(*"".Gray16) "".Rectangle���€��type.*"".Gray16�����"type."".Rectangle���þšgo.typelink.func(*image.Gray16) image.Rectangle func(*"".Gray16) "".Rectangle��������������Dtype.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ç�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.Gray16) color.Model"���p��`go.weak.type.*func(*"".Gray16) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ntype.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µ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Gray16, int, int) color.Gray16"���p��vgo.weak.type.*func(*"".Gray16, int, int) image/color.Gray16���€��"runtime.zerovalue��� €�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.Gray16��������������dtype.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� �� ��������������Òò®w�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(*image.Gray16) bool"���p��Fgo.weak.type.*func(*"".Gray16) bool���€��"runtime.zerovalue��� €�4type.func(*"".Gray16) bool���А�4type.func(*"".Gray16) bool���€��type.*"".Gray16�����type.bool���þtgo.typelink.func(*image.Gray16) bool func(*"".Gray16) bool��������������4type.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"�P��Dfunc(*image.Gray16, int, int) int��þFtype.func(*"".Gray16, int, int) int�À��À��������������ìÎI½�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Gray16, int, int) int"���p��Xgo.weak.type.*func(*"".Gray16, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Ftype.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ª�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Gray16, int, int, color.Color)"���p��vgo.weak.type.*func(*"".Gray16, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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)�À��À��������������]æ8�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)"���p��xgo.weak.type.*func(*"".Gray16, int, int, image/color.Gray16)���€��"runtime.zerovalue��� €�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"� �� ��������0����������xgo.string."func(*image.Gray16, image.Rectangle) image.Image"���þxgo.string."func(*image.Gray16, image.Rectangle) image.Image"�p��bfunc(*image.Gray16, image.Rectangle) image.Image��þXtype.func(*"".Gray16, "".Rectangle) "".Image�°��°��������������<'k)�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��€go.string.hdr."func(*image.Gray16, image.Rectangle) image.Image"���p��jgo.weak.type.*func(*"".Gray16, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Xtype.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}8�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int) color.Gray16"���p��^go.weak.type.*func(int, int) image/color.Gray16���€��"runtime.zerovalue��� €�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.Gray16��������������Ltype.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(�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int, color.Gray16)"���p��`go.weak.type.*func(int, int, image/color.Gray16)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.Gray16"���p��0go.weak.type.**"".Gray16���€��"runtime.zerovalue�����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.01���P��4go.string.hdr."image.CMYK"���p��type.*"".CMYK���€��"runtime.zerovalue���À�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"�P��Pfunc(*image.CMYK, int, int) color.Color��þ^type.func(*"".CMYK, int, int) image/color.Color�À��À��������������¶¬�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.CMYK, int, int) color.Color"���p��pgo.weak.type.*func(*"".CMYK, int, int) image/color.Color���€��"runtime.zerovalue��� €�^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"�P��Dfunc(*image.CMYK) image.Rectangle��þ@type.func(*"".CMYK) "".Rectangle� �� ��������������|U@‚�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.CMYK) image.Rectangle"���p��Rgo.weak.type.*func(*"".CMYK) "".Rectangle���€��"runtime.zerovalue��� €�@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"�P��Nfunc(*image.CMYK, int, int) color.CMYK��þ\type.func(*"".CMYK, int, int) image/color.CMYK�À��À��������������£+�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.CMYK, int, int) color.CMYK"���p��ngo.weak.type.*func(*"".CMYK, int, int) image/color.CMYK���€��"runtime.zerovalue��� €�\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žÏÿ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.CMYK) color.Model"���p��\go.weak.type.*func(*"".CMYK) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Jtype.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êE�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*image.CMYK) bool"���p��Bgo.weak.type.*func(*"".CMYK) bool���€��"runtime.zerovalue��� €�0type.func(*"".CMYK) bool���А�0type.func(*"".CMYK) bool���€��type.*"".CMYK�����type.bool���þlgo.typelink.func(*image.CMYK) bool func(*"".CMYK) bool��������������0type.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�À��À��������������œ*éž�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.CMYK, int, int) int"���p��Tgo.weak.type.*func(*"".CMYK, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Btype.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)�À��À��������������_üÆÿ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.CMYK, int, int, color.Color)"���p��rgo.weak.type.*func(*"".CMYK, int, int, image/color.Color)���€��"runtime.zerovalue��� €�`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)"�P��Pfunc(*image.CMYK, int, int, color.CMYK)��þ^type.func(*"".CMYK, int, int, image/color.CMYK)�À��À��������������új¯8�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)"���p��pgo.weak.type.*func(*"".CMYK, int, int, image/color.CMYK)���€��"runtime.zerovalue��� €�^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�°��°��������������} ‚i�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".CMYK, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Ttype.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�°��°��������������ûÕ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int, int) color.CMYK"���p��Zgo.weak.type.*func(int, int) image/color.CMYK���€��"runtime.zerovalue��� €�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.CMYK��������������Htype.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)�°��°��������������ÌÕ_¹�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int, color.CMYK)"���p��\go.weak.type.*func(int, int, image/color.CMYK)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*image.CMYK"���p��,go.weak.type.**"".CMYK���€��"runtime.zerovalue�����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��Ð��ÐX�������H�������LÕ`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������@�����������������������������������������������$0à� runtime.algarray���@��&runtime.gcbits.0101���P��<go.string.hdr."image.Paletted"���p��"type.*"".Paletted���€��"runtime.zerovalue���À� 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�À��À��������������_ú|r�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Paletted, int, int) color.Color"���p��xgo.weak.type.*func(*"".Paletted, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������ftype.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"�P��Lfunc(*image.Paletted) image.Rectangle��þHtype.func(*"".Paletted) "".Rectangle� �� ��������������bOæÝ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(*image.Paletted) image.Rectangle"���p��Zgo.weak.type.*func(*"".Paletted) "".Rectangle���€��"runtime.zerovalue��� €�Htype.func(*"".Paletted) "".Rectangle���А�Htype.func(*"".Paletted) "".Rectangle���€��"type.*"".Paletted�����"type."".Rectangle���þ¢go.typelink.func(*image.Paletted) image.Rectangle func(*"".Paletted) "".Rectangle��������������Htype.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"�P��Lfunc(*image.Paletted, int, int) uint8��þNtype.func(*"".Paletted, int, int) uint8�À��À��������������S­)Š�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(*image.Paletted, int, int) uint8"���p��`go.weak.type.*func(*"".Paletted, int, int) uint8���€��"runtime.zerovalue��� €�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) uint8��������������Ntype.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"�P��Dfunc(*image.Paletted) color.Model��þRtype.func(*"".Paletted) image/color.Model� �� ��������������ô¯ö�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Paletted) color.Model"���p��dgo.weak.type.*func(*"".Paletted) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Rtype.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•k�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(*image.Paletted) bool"���p��Jgo.weak.type.*func(*"".Paletted) bool���€��"runtime.zerovalue��� €�8type.func(*"".Paletted) bool���А�8type.func(*"".Paletted) bool���€��"type.*"".Paletted�����type.bool���þ|go.typelink.func(*image.Paletted) bool func(*"".Paletted) bool��������������8type.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"�P��Hfunc(*image.Paletted, int, int) int��þJtype.func(*"".Paletted, int, int) int�À��À��������������† KL�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.Paletted, int, int) int"���p��\go.weak.type.*func(*"".Paletted, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Jtype.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Î�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Paletted, int, int, color.Color)"���p��zgo.weak.type.*func(*"".Paletted, int, int, image/color.Color)���€��"runtime.zerovalue��� €�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)"�P��Nfunc(*image.Paletted, int, int, uint8)��þPtype.func(*"".Paletted, int, int, uint8)�À��À��������������ÆþÁ®�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.Paletted, int, int, uint8)"���p��bgo.weak.type.*func(*"".Paletted, int, int, uint8)���€��"runtime.zerovalue��� €�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"�p��ffunc(*image.Paletted, image.Rectangle) image.Image��þ\type.func(*"".Paletted, "".Rectangle) "".Image�°��°��������������÷m•´�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��„go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"���p��ngo.weak.type.*func(*"".Paletted, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�\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_�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."func(int, int) uint8"���p��Dgo.weak.type.*func(int, int) uint8���€��"runtime.zerovalue��� €�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) uint8��������������2type.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)�°��°��������������ÌÌl�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Jgo.string.hdr."func(int, int, uint8)"���p��Fgo.weak.type.*func(int, int, uint8)���€��"runtime.zerovalue��� €�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�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��>go.string.hdr."*image.Paletted"���p��4go.weak.type.**"".Paletted���€��"runtime.zerovalue����� 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.01���P��,go.string.hdr."[]bool"���p��(go.weak.type.*[]bool���€��"runtime.zerovalue�����type.bool���þ2go.typelink.[]bool []bool��������������type.[]bool���þ"type..hashfunc256� �� ������������������,runtime.memhash_varlen���þtype..eqfunc256� �� ������������������.runtime.memequal_varlen���þtype..alg256� �� �������������������"type..hashfunc256�����type..eqfunc256���þ2go.string.hdr."[256]bool"� �� �������� ����������*go.string."[256]bool"���þ*go.string."[256]bool"� ��[256]bool��þtype.[256]bool�À��À���������������°Ä'k�‘�����������������������������������������������������������������������0��type..alg256���@��runtime.gcbits.���P��2go.string.hdr."[256]bool"���p��.go.weak.type.*[256]bool���€��"runtime.zerovalue�����type.bool��� ��type.[]bool���þ>go.typelink.[256]bool [256]bool��������������type.[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.03���P��:go.string.hdr."image.Uniform"���p�� type.*"".Uniform���€��"runtime.zerovalue���À�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�À��À��������������„Œp�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Uniform, int, int) color.Color"���p��vgo.weak.type.*func(*"".Uniform, int, int) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������dtype.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"�P��Jfunc(*image.Uniform) image.Rectangle��þFtype.func(*"".Uniform) "".Rectangle� �� ��������������2[è|�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.Uniform) image.Rectangle"���p��Xgo.weak.type.*func(*"".Uniform) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".Uniform) "".Rectangle���А�Ftype.func(*"".Uniform) "".Rectangle���€�� type.*"".Uniform�����"type."".Rectangle���þžgo.typelink.func(*image.Uniform) image.Rectangle func(*"".Uniform) "".Rectangle��������������Ftype.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"�P��Bfunc(*image.Uniform) color.Model��þPtype.func(*"".Uniform) image/color.Model� �� ��������������"ÈáÐ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.Uniform) color.Model"���p��bgo.weak.type.*func(*"".Uniform) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ptype.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Â2�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*image.Uniform, color.Color) color.Color"���p��ˆgo.weak.type.*func(*"".Uniform, image/color.Color) image/color.Color���€��"runtime.zerovalue��� €�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.Color��������������vtype.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� �� ��������������èñ»?�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.Uniform) bool"���p��Hgo.weak.type.*func(*"".Uniform) bool���€��"runtime.zerovalue��� €�6type.func(*"".Uniform) bool���А�6type.func(*"".Uniform) bool���€�� type.*"".Uniform�����type.bool���þxgo.typelink.func(*image.Uniform) bool func(*"".Uniform) bool��������������6type.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)"�p��lfunc(*image.Uniform) (uint32, uint32, uint32, uint32)��þntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�Ð��Ð��������������N¸V�3��������������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Šgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���p��€go.weak.type.*func(*"".Uniform) (uint32, uint32, uint32, uint32)���€��"runtime.zerovalue��� €�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¹�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(color.Color) color.Color"���p��ngo.weak.type.*func(image/color.Color) image/color.Color���€��"runtime.zerovalue��� €�\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)"�P��Pfunc() (uint32, uint32, uint32, uint32)��þXtype.func() (uint32, uint32, uint32, uint32)�À��À��������������ÌǤè�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func() (uint32, uint32, uint32, uint32)"���p��jgo.weak.type.*func() (uint32, uint32, uint32, uint32)���€��"runtime.zerovalue��� €�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 f�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������L0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*image.Uniform"���p��2go.weak.type.**"".Uniform���€��"runtime.zerovalue�����type."".Uniform���` � type.*"".Uniform���Àð� type.*"".Uniform���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".Uniform, int, int) image/color.Color���°�� "".(*Uniform).At���À�� "".(*Uniform).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".Uniform) "".Rectangle�����("".(*Uniform).Bounds��� ��("".(*Uniform).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".Uniform) image/color.Model���ð��0"".(*Uniform).ColorModel���€��0"".(*Uniform).ColorModel�����.go.string.hdr."Convert"���°��\type.func(image/color.Color) image/color.Color���À��vtype.func(*"".Uniform, image/color.Color) image/color.Color���Ð��*"".(*Uniform).Convert���à��*"".(*Uniform).Convert���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��6type.func(*"".Uniform) bool���°��("".(*Uniform).Opaque���À��("".(*Uniform).Opaque���Ð��(go.string.hdr."RGBA"���ð��Xtype.func() (uint32, uint32, uint32, uint32)���€��ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�����$"".(*Uniform).RGBA��� ��$"".(*Uniform).RGBA���þTgo.string.hdr."*image.YCbCrSubsampleRatio"� �� ������������������Lgo.string."*image.YCbCrSubsampleRatio"���þLgo.string."*image.YCbCrSubsampleRatio"�@��6*image.YCbCrSubsampleRatio��þFgo.string.hdr."YCbCrSubsampleRatio"� �� ������������������>go.string."YCbCrSubsampleRatio"���þ>go.string."YCbCrSubsampleRatio"�0��(YCbCrSubsampleRatio��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"� �� ��������'����������fgo.string."func(*image.YCbCrSubsampleRatio) string"���þfgo.string."func(*image.YCbCrSubsampleRatio) string"�P��Pfunc(*image.YCbCrSubsampleRatio) string��þRtype.func(*"".YCbCrSubsampleRatio) string� �� ��������������u!Ad�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"���p��dgo.weak.type.*func(*"".YCbCrSubsampleRatio) string���€��"runtime.zerovalue��� €�Rtype.func(*"".YCbCrSubsampleRatio) string���А�Rtype.func(*"".YCbCrSubsampleRatio) string���€��8type.*"".YCbCrSubsampleRatio�����type.string���þ°go.typelink.func(*image.YCbCrSubsampleRatio) string func(*"".YCbCrSubsampleRatio) string��������������Rtype.func(*"".YCbCrSubsampleRatio) string���þ8type.*"".YCbCrSubsampleRatio��Ð��Ð��������������˜àË&�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."*image.YCbCrSubsampleRatio"���p��Jgo.weak.type.**"".YCbCrSubsampleRatio���€��"runtime.zerovalue�����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"�P��Nfunc(image.YCbCrSubsampleRatio) string��þPtype.func("".YCbCrSubsampleRatio) string� �� ��������������ËO‚Ê�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(image.YCbCrSubsampleRatio) string"���p��bgo.weak.type.*func("".YCbCrSubsampleRatio) string���€��"runtime.zerovalue��� €�Ptype.func("".YCbCrSubsampleRatio) string���А�Ptype.func("".YCbCrSubsampleRatio) string���€��6type."".YCbCrSubsampleRatio�����type.string���þ¬go.typelink.func(image.YCbCrSubsampleRatio) string func("".YCbCrSubsampleRatio) string��������������Ptype.func("".YCbCrSubsampleRatio) string���þ6type."".YCbCrSubsampleRatio��À��À���������������ªX)â�‚��������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��runtime.gcbits.���P��Rgo.string.hdr."image.YCbCrSubsampleRatio"���p��8type.*"".YCbCrSubsampleRatio���€��"runtime.zerovalue���`�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.49���I�þ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¯��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`�����������������������������������������������00à� runtime.algarray���@��"runtime.gcbits.49���P��6go.string.hdr."image.YCbCr"���p��type.*"".YCbCr���€��"runtime.zerovalue���À�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Ï�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.YCbCr, int, int) color.Color"���p��rgo.weak.type.*func(*"".YCbCr, int, int) image/color.Color���€��"runtime.zerovalue��� €�`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"�P��Ffunc(*image.YCbCr) image.Rectangle��þBtype.func(*"".YCbCr) "".Rectangle� �� ��������������5;»�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.YCbCr) image.Rectangle"���p��Tgo.weak.type.*func(*"".YCbCr) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".YCbCr) "".Rectangle���А�Btype.func(*"".YCbCr) "".Rectangle���€��type.*"".YCbCr�����"type."".Rectangle���þ–go.typelink.func(*image.YCbCr) image.Rectangle func(*"".YCbCr) "".Rectangle��������������Btype.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"�P��Bfunc(*image.YCbCr, int, int) int��þDtype.func(*"".YCbCr, int, int) int�À��À��������������?@ÛÒ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.YCbCr, int, int) int"���p��Vgo.weak.type.*func(*"".YCbCr, int, int) int���€��"runtime.zerovalue��� €�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) int��������������Dtype.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� �� �������������� Zp�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(*image.YCbCr) color.Model"���p��^go.weak.type.*func(*"".YCbCr) image/color.Model���€��"runtime.zerovalue��� €�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.Model��������������Ltype.func(*"".YCbCr) image/color.Model���þNgo.string.hdr."func(*image.YCbCr) bool"� �� ������������������Fgo.string."func(*image.YCbCr) bool"���þFgo.string."func(*image.YCbCr) bool"�0��0func(*image.YCbCr) bool��þ2type.func(*"".YCbCr) bool� �� ��������������¬›�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func(*image.YCbCr) bool"���p��Dgo.weak.type.*func(*"".YCbCr) bool���€��"runtime.zerovalue��� €�2type.func(*"".YCbCr) bool���А�2type.func(*"".YCbCr) bool���€��type.*"".YCbCr�����type.bool���þpgo.typelink.func(*image.YCbCr) bool func(*"".YCbCr) bool��������������2type.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¡�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".YCbCr, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�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) "".Image��������������Vtype.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�À��À��������������ߚØ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"���p��rgo.weak.type.*func(*"".YCbCr, int, int) image/color.YCbCr���€��"runtime.zerovalue��� €�`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�°��°��������������´Áþå�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.YCbCr"���p��\go.weak.type.*func(int, int) image/color.YCbCr���€��"runtime.zerovalue��� €�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.YCbCr��������������Jtype.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.01���P��8go.string.hdr."*image.YCbCr"���p��.go.weak.type.**"".YCbCr���€��"runtime.zerovalue�����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���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·d98f60bd8519d0c68364b2a1d83af357�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·d98f60bd8519d0c68364b2a1d83af357�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·1347047f6245a35b91e9a4f213167d52�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578�������������þHgo.string.hdr."*image.PalettedImage"� �� ������������������@go.string."*image.PalettedImage"���þ@go.string."*image.PalettedImage"�0��**image.PalettedImage��þ,type.*"".PalettedImage�� �� ��������������íº�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."*image.PalettedImage"���p��>go.weak.type.**"".PalettedImage���€��"runtime.zerovalue�����*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.03���P��Fgo.string.hdr."image.PalettedImage"���p��,type.*"".PalettedImage���€��"runtime.zerovalue���À�*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."runtime"� �� ������������������&go.string."runtime"���þ&go.string."runtime"���runtime��þ,go.importpath.runtime.� �� ������������������&go.string."runtime"���þ*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·f��������������2"".(*Rectangle).Intersect���þ0"".(*Rectangle).Union·f��������������*"".(*Rectangle).Union���þ0"".(*Rectangle).Empty·f��������������*"".(*Rectangle).Empty���þ*"".(*Rectangle).Eq·f��������������$"".(*Rectangle).Eq���þ6"".(*Rectangle).Overlaps·f��������������0"".(*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·f��������������4"".(*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���þ,"".PalettedImage.At·f��������������&"".PalettedImage.At���þ4"".PalettedImage.Bounds·f��������������."".PalettedImage.Bounds���þ@"".PalettedImage.ColorIndexAt·f��������������:"".PalettedImage.ColorIndexAt���þ<"".PalettedImage.ColorModel·f��������������6"".PalettedImage.ColorModel���þ"runtime.zerovalue������ÿÿgo13ld