Home | History | Annotate | Download | only in image
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     6745      `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "da468663b992c519b23d568b03cd214282875653"
      5 
      6 $$
      7 package jpeg
      8 	import runtime "runtime"
      9 	import io "io"
     10 	import errors "errors"
     11 	import image "image"
     12 	import bufio "bufio"
     13 	import color "image/color"
     14 	import imageutil "image/internal/imageutil"
     15 	type @"".FormatError string
     16 	func (@"".e2 @"".FormatError "esc:0x1") Error () (? string) { return "invalid JPEG format: " + string(@"".e2) }
     17 	type @"".UnsupportedError string
     18 	func (@"".e2 @"".UnsupportedError "esc:0x1") Error () (? string) { return "unsupported JPEG feature: " + string(@"".e2) }
     19 	type @"".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error); ReadByte() (@"io".c byte, @"io".err error) }
     20 	type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
     21 	type @"image".Point struct { X int; Y int }
     22 	func (@"image".p2 @"image".Point) Add (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X + @"image".q3.X, Y:@"image".p2.Y + @"image".q3.Y }) }
     23 	func (@"image".p2 @"image".Point) Div (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X / @"image".k3, Y:@"image".p2.Y / @"image".k3 }) }
     24 	func (@"image".p2 @"image".Point) Eq (@"image".q3 @"image".Point) (? bool) { return @"image".p2 == @"image".q3 }
     25 	func (@"image".p2 @"image".Point) In (@"image".r3 @"image".Rectangle) (? bool) { return @"image".r3.Min.X <= @"image".p2.X && @"image".p2.X < @"image".r3.Max.X && @"image".r3.Min.Y <= @"image".p2.Y && @"image".p2.Y < @"image".r3.Max.Y }
     26 	func (@"image".p2 @"image".Point) Mod (@"image".r3 @"image".Rectangle) (? @"image".Point)
     27 	func (@"image".p2 @"image".Point) Mul (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X * @"image".k3, Y:@"image".p2.Y * @"image".k3 }) }
     28 	func (@"image".p2 @"image".Point) String () (? string)
     29 	func (@"image".p2 @"image".Point) Sub (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X - @"image".q3.X, Y:@"image".p2.Y - @"image".q3.Y }) }
     30 	type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
     31 	type @"image".Rectangle struct { Min @"image".Point; Max @"image".Point }
     32 	func (@"image".r2 @"image".Rectangle) Add (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X + @"image".p3.X, Y:@"image".r2.Min.Y + @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X + @"image".p3.X, Y:@"image".r2.Max.Y + @"image".p3.Y }) }) }
     33 	func (@"image".r2 @"image".Rectangle) At (@"image".x3 int, @"image".y4 int) (? @"image/color".Color) { if (@"image".Point{ X:@"image".x3, Y:@"image".y4 }).In(@"image".r2) { return @"image/color".Opaque }; return @"image/color".Transparent }
     34 	func (@"image".r2 @"image".Rectangle) Bounds () (? @"image".Rectangle) { return @"image".r2 }
     35 	func (@"image".r2 @"image".Rectangle) Canon () (? @"image".Rectangle) { if @"image".r2.Max.X < @"image".r2.Min.X { @"image".r2.Min.X, @"image".r2.Max.X = @"image".r2.Max.X, @"image".r2.Min.X }; if @"image".r2.Max.Y < @"image".r2.Min.Y { @"image".r2.Min.Y, @"image".r2.Max.Y = @"image".r2.Max.Y, @"image".r2.Min.Y }; return @"image".r2 }
     36 	func (@"image".r2 @"image".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
     37 	func (@"image".r2 @"image".Rectangle) Dx () (? int) { return @"image".r2.Max.X - @"image".r2.Min.X }
     38 	func (@"image".r2 @"image".Rectangle) Dy () (? int) { return @"image".r2.Max.Y - @"image".r2.Min.Y }
     39 	func (@"image".r2 @"image".Rectangle) Empty () (? bool) { return @"image".r2.Min.X >= @"image".r2.Max.X || @"image".r2.Min.Y >= @"image".r2.Max.Y }
     40 	func (@"image".r2 @"image".Rectangle) Eq (@"image".s3 @"image".Rectangle) (? bool) { return @"image".r2 == @"image".s3 || @"image".r2.Empty() && @"image".s3.Empty() }
     41 	func (@"image".r2 @"image".Rectangle) In (@"image".s3 @"image".Rectangle) (? bool) { if @"image".r2.Empty() { return true }; return @"image".s3.Min.X <= @"image".r2.Min.X && @"image".r2.Max.X <= @"image".s3.Max.X && @"image".s3.Min.Y <= @"image".r2.Min.Y && @"image".r2.Max.Y <= @"image".s3.Max.Y }
     42 	func (@"image".r2 @"image".Rectangle) Inset (@"image".n3 int) (? @"image".Rectangle)
     43 	func (@"image".r2 @"image".Rectangle) Intersect (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     44 	func (@"image".r2 @"image".Rectangle) Overlaps (@"image".s3 @"image".Rectangle) (? bool)
     45 	func (@"image".r2 @"image".Rectangle) Size () (? @"image".Point) { return (@"image".Point{ X:@"image".r2.Max.X - @"image".r2.Min.X, Y:@"image".r2.Max.Y - @"image".r2.Min.Y }) }
     46 	func (@"image".r2 @"image".Rectangle) String () (? string)
     47 	func (@"image".r2 @"image".Rectangle) Sub (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X - @"image".p3.X, Y:@"image".r2.Min.Y - @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X - @"image".p3.X, Y:@"image".r2.Max.Y - @"image".p3.Y }) }) }
     48 	func (@"image".r2 @"image".Rectangle) Union (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     49 	type @"image".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model) }
     50 	type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
     51 	func @"".Decode (@"".r3 @"io".Reader) (? @"image".Image, ? error)
     52 	type @"image".Config struct { ColorModel @"image/color".Model; Width int; Height int }
     53 	func @"".DecodeConfig (@"".r3 @"io".Reader) (? @"image".Config, ? error)
     54 	const @"".DefaultQuality = 0x4b
     55 	type @"".Options struct { Quality int }
     56 	type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
     57 	func @"".Encode (@"".w2 @"io".Writer, @"".m3 @"image".Image, @"".o4 *@"".Options "esc:0x1") (? error)
     58 	func @"".init ()
     59 	type @"image/color".Alpha16 struct { A uint16 }
     60 	func (@"image/color".c5 @"image/color".Alpha16) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".a4 = uint32(@"image/color".c5.A); return @"image/color".a4, @"image/color".a4, @"image/color".a4, @"image/color".a4 }
     61 	var @"image/color".Opaque @"image/color".Alpha16
     62 	var @"image/color".Transparent @"image/color".Alpha16
     63 	var @"image/color".Alpha16Model @"image/color".Model
     64 
     65 $$
     66 _go_.o          0           0     0     644     361719    `
     67 go object darwin amd64 go1.5.1 X:none
     68 
     69 !
     70 go13ldio.aimage.aimage/color.a4image/internal/imageutil.abufio.aerrors.a"".fdctNNeH%HD$H;AqHH$H$H$1HpHHD$pHHH@$HH$HD$pH$HHHHH@H+l$,HHHH@HH$HD$pH$HHHHH@rH+l$(HHHH@LHH$HD$pH$HHHHH@H+l$$HHHH@HH$HD$pH$HHHHH@H+l$ HHHH@rHH$HD$pH$HHHH<H@+H+l$HHHH@HH$HD$pH$HHHHH@H+l$HHHH@HH$HD$pH$HHHHbH@QH+l$HHHH@+HH$L$Dt$,Dl$(Dd$$D\$ DT$DL$DD$HD$pHHIH@I;DDDDDDD\$X)\$L\$T)\$DD)\$hDD)\$`DD)\$<DD)\$4HD$pHHH$H@9IH$H$HH$H@Hl$XDD$TD+HL$pHHH$H@HH$H$HH$H@zHl$XDD$TD)+\$Ll$DiQ\$HD$pHHH$H@%HH$H$H
H$H@
Hl$LDD$i~D+HL$pHHH$H@
HH$H$Dd$hD\$`DT$<DL$4IHh
H$H@O
Hl$DDD$i!;A)D+DDDDDDDDi%Di0\$hDiTb\$`DiA\$<Di	\$4i3\$Xi\$Tii;\$L\$DHD$pHHLH$H@xHH$H$HRH$H@9Hl$hDD$XDDD$LD+HL$pHHH$H@HH$H$HH$H@Hl$`DD$TDDD$DD+HL$pHHH$H@tHH$H$HNH$H@5Hl$<DD$TDDD$LD+HL$pHHH$H@
     95 HH$H$H
     96 H$H@
     97 Hl$4DD$XDDD$DD+HD$pHH1HHHD$xHH@[
     99 HH$HD$xH$H8H@,
    100 HH$H$Hl$xHHH	H@	HII8I@	J,m\$lHH@	HH$HD$xH$H0H@z	HH$H$Hl$xHHHH	H@7	HII0I@	J,m\$dHH@HH$HD$xH$H(H@HH$H$Hl$xHHHH@HII(I@gJ,m\$8HH@EHH$HD$xH$H H@HH$DL$l|$dt$8H$Hl$xHHHH@HII I@J,mD\$\D)\$H\$P)\$@HHH@`HH$HD$xH$H8H@1HH$H$Hl$xHHHH@HII8I@J,m)\$lHH@HH$HD$xH$H0H@HH$H$Hl$xHHHMH@<HII0I@J,m)\$dHH@HH$HD$xH$H(H@HH$H$Hl$xHHHH@HII(I@lJ,m)\$8HH@JHH$HD$xH$H H@HH$H$Hl$xHHHH@HII I@J,m)\$0HH$H@HH$H$HjH$H@QHl$\DD$PD+HL$xH H$H@HH$H$HH$H@Hl$\DD$PD)+\$Hl$@iQ@\$HD$xHH$H@HH$H$HdH$H@KHl$HDD$i~D+HL$xH0H$H@HH$H$Dd$lD\$dDT$8DL$0IHH$H@Hl$@DD$i!;A)D+DDDDDDDDi%@Di0\$lDiTb\$dDiA\$8Di	\$0i3\$\i\$Pii;\$H\$@HD$xHLH$H@HH$H$HH$H@Hl$lDD$\DDD$HD+HL$xHH$H@hHH$H$HBH$H@)Hl$dDD$PDDD$@D+HL$xH(H$H@HH$H$HH$H@Hl$8DD$PDDD$HD+HL$xH8H$H@spHH$H$HtQH$H@s<Hl$0DD$\DDD$@D+HD$xHHRH59(^"c-)fA$*Pvm
    183 X
    184 *runtime.racefuncenter
    185  runtime.raceread
    186  runtime.raceread
    187  runtime.raceread
    188  runtime.raceread
    189  runtime.raceread
    190  runtime.raceread	
    191  runtime.raceread
    193  runtime.raceread
    194 "runtime.racewrite
    195 "runtime.racewrite
    196 "runtime.racewrite
    197 "runtime.racewrite
    198 "runtime.racewrite
    199 "runtime.racewrite
    200 "runtime.racewrite
    201 "runtime.racewrite
    202  runtime.raceread 
    203  runtime.raceread!
    204  runtime.raceread"
    205  runtime.raceread#
    206  runtime.raceread$
    207  runtime.raceread&
    208  runtime.raceread&
    209  runtime.raceread)
    210  runtime.raceread)
    211  runtime.raceread+
    212  runtime.raceread,
    213  runtime.raceread-
    214  runtime.raceread.
    215  runtime.raceread/
    216  runtime.raceread0
    217  runtime.raceread2
    218 "runtime.racewrite3
    219 "runtime.racewrite5
    220 "runtime.racewrite7
    221 "runtime.racewrite;
    222 "runtime.racewrite=
    223 "runtime.racewrite>
    224 "runtime.racewrite@
    225 "runtime.racewriteA
    226 (runtime.racefuncexitA
    227 $runtime.panicindexB
    228 $runtime.panicindexB
    229 $runtime.panicindexB
    230 $runtime.panicindexB
    231 $runtime.panicindexB
    232 $runtime.panicindexB
    233 $runtime.panicindexC
    234 $runtime.panicindexC
    235 $runtime.panicindexC
    236 $runtime.panicindexC
    237 $runtime.panicindexC
    238 $runtime.panicindexC
    239 $runtime.panicindexD
    240 $runtime.panicindexD
    241 $runtime.panicindexD
    242 $runtime.panicindexD
    243 $runtime.panicindexD
    244 $runtime.panicindexD
    245 $runtime.panicindexD
    246 $runtime.panicindexE
    247 $runtime.panicindexE
    248 $runtime.panicindexE
    249 $runtime.panicindexE
    250 $runtime.panicindexE
    251 $runtime.panicindexE
    252 $runtime.panicindexE
    253 $runtime.panicindexF
    254 $runtime.panicindexF
    255 $runtime.panicindexF
    256 $runtime.panicindexF
    257 $runtime.panicindexF
    258 $runtime.panicindexF
    259 $runtime.panicindexF
    260 $runtime.panicindexG
    261 $runtime.panicindexG
    262 $runtime.panicindexG
    263 $runtime.panicindexG
    264 $runtime.panicindexG
    265 $runtime.panicindexG
    266 $runtime.panicindexG
    267 $runtime.panicindexG
    268 $runtime.panicindexH
    269 $runtime.panicindexH
    270 $runtime.panicindexH
    271 $runtime.panicindexH
    272 $runtime.panicindexH
    273 $runtime.panicindexH
    274 $runtime.panicindexH
    275 $runtime.panicindexI
    276 $runtime.panicindexI
    277 $runtime.panicindexI
    278 $runtime.panicindexI
    279 $runtime.panicindexI
    280 $runtime.panicindexI
    281 $runtime.panicindexJ
    282 $runtime.panicindexJ
    283 $runtime.panicindexJ
    284 $runtime.panicindexJ
    285 $runtime.panicindexJ
    286 $runtime.panicindexJ
    287 $runtime.panicindexK
    288 $runtime.panicindexK
    289 $runtime.panicindexK
    290 $runtime.panicindexK
    291 $runtime.panicindexK
    292 $runtime.panicindexK
    293 $runtime.panicindexL
    294 $runtime.panicindexL
    295 $runtime.panicindexL
    296 $runtime.panicindexL
    297 $runtime.panicindexL
    298 $runtime.panicindexL
    299 $runtime.panicindexM
    300 $runtime.panicindexM
    301 $runtime.panicindexM
    302 $runtime.panicindexM
    303 $runtime.panicindexM
    304 $runtime.panicindexM
    305 $runtime.panicindexN
    306 $runtime.panicindexN
    307 0runtime.morestack_noctxtj"".autotmp_0029type.int"".autotmp_0028type.int"".autotmp_0027type.int"".autotmp_0026type.int"".autotmp_0025type.int"".autotmp_0024type.int"".autotmp_0023type.int"".autotmp_0022type.int"".autotmp_0021type.int"".autotmp_0020type.int"".autotmp_0019type.int"".autotmp_0018type.int"".autotmp_0017type.int"".autotmp_0016type.int"".autotmp_0015type.int"".autotmp_0014type.int"".autotmp_0013type.int"".autotmp_0012type.int32"".autotmp_0011type.int32"".autotmp_0010type.int32"".autotmp_0009type.int32"".autotmp_0008type.int"".autotmp_0007type.int32"".autotmp_0006type.int32"".autotmp_0005type.int32
    308 "".z1type.int32"".tmp13type.int32"".tmp11otype.int32"".tmp12type.int32"".tmp10Wtype.int32"".tmp3type.int32"".tmp2type.int32"".tmp1Gtype.int32"".tmp07type.int32"".xtype.int
    309 "".z1type.int32"".tmp13type.int32"".tmp11gtype.int32"".tmp12wtype.int32"".tmp10_type.int32"".tmp3type.int32"".tmp2type.int32"".tmp1Otype.int32"".tmp0?type.int32
    310 "".x6type.int32
    311 "".x5type.int32
    312 "".x4type.int32
    313 "".x3type.int32
    314 "".x2type.int32
    315 "".x1type.int32
    316 "".x0type.int32"".y/type.int"".btype.*"".block ']VXXXXXt	
    318 
    319 
    320 ke
    321 k
    322 



ommmgp	\a
    331 g
    332 



lii]WX%####
####	%!+&Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go2"".(*decoder).ensureNBits
    341 
    342 eH%H;avHXH\$XH$HD$`1H\$pH\$xH$\$HL$HD$\$?HD$PHL$HHHH$H\$HH-H9HH$Hl$HH,$Hl$PHl$H-Hl$H-Hl$\$ t[HH$HH\$HH\$HH\$HD$ H\$(H\$pH\$0H\$xHXH\$HH\$pH\$PH\$xHXH\$`H$H$H\$`H$H$HD$`Xl$?	XH$H$H$HD$`hl$DH$H$H$HD$`l$DhH$H$H$HD$`Xu\H$H$H$HD$`@H$H$H$HD$`Xl$h91H\$pH\$xHXH$H$H$HD$`hl$@H$H$H$HD$`l$@hm:
    344 B
    345 *runtime.racefuncenterv
    346 B"".(*decoder).readByteStuffedByteio.EOF
    348  runtime.racereadio.EOFio.EOF
    351  runtime.racereadio.EOFio.EOF
    354 runtime.ifaceeq&type."".FormatErrortype.error8go.itab."".FormatError.error,"".errShortHuffmanData
    355 runtime.convT2I
    356 (runtime.racefuncexit
    357 (runtime.racefuncexit
    358 "runtime.racewrite
    359  runtime.raceread
    360  runtime.raceread
    361 "runtime.racewrite
    362  runtime.raceread
    363 "runtime.racewrite
    364  runtime.raceread
    365 (runtime.racefuncexit	
    366  runtime.raceread	
    367 "runtime.racewrite
    368 
    369 0runtime.morestack_noctxt@"".autotmp_0081/type.uint32"".autotmp_0080'type.int32"".errtype.error"".c1type.uint8"".~r1 type.error"".ntype.int32"".d type.*"".decoder4ZVb('!oQ;A 'A& Q6LTgclocals06be4abc148cc801a93c492b76c8e5c8Tgclocalsc2934d28c868ce52e67cf0667b9c3035bprebuilts/go/darwin-x86/src/image/jpeg/huffman.go6"".(*decoder).receiveExtendeH%H;aH@H\$@H$1H\$`H\$hH\$HH$H$H$HT$HD$PZ9}KH$\$HT$HHD$HL$HL$8HD$0HtD$XHD$`HL$hH@H$H$H$HD$Hhl$,H$H$H$HD$Hl$PDD$,A)D@H$H$H$HD$Hhl$(H$H$H$H\$HD$PHHl$( k l$$H$H$H\$HH$H$H$HD$HT$$XH sJ!9~L$P s"D$X1H\$`H\$hH@111h1K4
    375 B
    376 *runtime.racefuncenter
    377  runtime.raceread
    378 2"".(*decoder).ensureNBits
    379 (runtime.racefuncexit
    380  runtime.raceread
    381 "runtime.racewrite
    382  runtime.raceread
    383 "runtime.racewrite
    384  runtime.raceread
    385  runtime.raceread
    386 (runtime.racefuncexit
    387 0runtime.morestack_noctxtP"".autotmp_0085type.int32"".autotmp_0084/type.uint32"".autotmp_0083'type.int32"".s7type.int32"".errtype.error"".~r20type.error"".~r1 type.int32"".ttype.uint8"".d type.*"".decoder$(T,/H^G
 ~2Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocalsc55cf99de9cdd8c8202a466952fa1a45bprebuilts/go/darwin-x86/src/image/jpeg/huffman.go0"".(*decoder).processDHT76eH%H$H;A
HhH$hH$1H$H$H$xH5
H$xHHH$@H$HHH$HH\$HH\$H$@H\$HD$ H\$(H$H\$0H$HhH$pHHp3HsH$pHHH$H$PHD$H$XHT$H$`HL$HL$ HD$(H$(H$ HtH$H$HhH$pHp3H,$H$pHp3\$:HH$@H$HHH$HH\$HH\$H$@H\$HD$ H\$(H$H\$0H$HhHp3H,$H$pH
    401 p3H\$9w@H$H$H$pD$9H
    403 <HH$@H$HHH$HH\$HH\$H$@H\$HD$ H\$(H$H\$0H$HhH
    405 HP\$:H	HiHH	HiHH$H,$H$H$11H$H$H9H$HHD$`HHH$pHp3H=I	HlH,$HD$`HHH$pH	Hp3H=Hl]H$HHl]H$H$H$(l$\H$H$HH$LD$`ItJlmDD$\D)H$HH$H9H$H$HH$@H$HHH$HH\$HH\$H$@H\$HD$ H\$(H$H\$0H$HhH$H$HH$@H$H"HH$HH\$HH\$H$@H\$HD$ H\$(H$H\$0H$HhH$xH$H$H$HcH$HH)H$xHHH$@H$HHH$HH\$HH\$H$@H\$HD$ H\$(H$H\$0H$HhH$H$)HcHHHHHH$pHH$H$PHl$H$XHT$H$`HL$H$HT$ HD$(H$8H$0HtH$H$Hh1H$H$H9}pHD$xHnHD$pH==HlEH,$H$HHnH\$pHHl]fEHD$xHH$H9|E1111H$HQH|$H9iT$P)D$T H\$<HDL$@AHHlH,$H$T$PHHDD$@IJlf]HH	f\$>1H)HHH8v]\$<D$;H	Hn\$=Hl]H,$H$T$PHt"HnD$=HlEHD$>fED$;HD$TDL$@A|$HH$H1c1bD$XD$LH$H$1H$H$HHL$xH$H9H$H$H$H$+HL$xl$DSHHL$hH6HlH,$H$HD$hH
    410 HHHlEHDHHlH,$H$HD$hHHDHHlEHHsjHlH,$t$XH$HtFHH\$hHs-HlE\$XH$HL$xHHWHHL$hH2HlH,$H$HD$hHHHHl\$X]HDHHlH,$H$HD$hHHDHHl\$XDD$DD]HHs\HlH,$T$LL$DH$Ht4HH\$hHsHlUt$X\$L[Eg=:o1H$H$HhK
    432 ^
    433 *runtime.racefuncenter@go.string."DHT has wrong length"&type."".FormatErrortype.error8go.itab."".FormatError.error
    434 runtime.convT2I
    435 (runtime.racefuncexit
    436 ,"".(*decoder).readFull
    437 (runtime.racefuncexit
    438  runtime.raceread0go.string."bad Tc value"&type."".FormatErrortype.error8go.itab."".FormatError.error
    439 runtime.convT2I	
    440 (runtime.racefuncexit	
    441  runtime.raceread
    442 
    443  runtime.raceread0go.string."bad Th value"&type."".FormatErrortype.error8go.itab."".FormatError.error
    449 runtime.convT2I
    451 (runtime.racefuncexit
    452 "runtime.racewrite
    453  runtime.duffzero
    454  runtime.raceread
    455  runtime.raceread
    456 "runtime.racewrite
    457  runtime.racereadRgo.string."Huffman table has zero length"&type."".FormatErrortype.error8go.itab."".FormatError.error
    458 runtime.convT2I
    459 (runtime.racefuncexit
    460  runtime.raceread\go.string."Huffman table has excessive length"&type."".FormatErrortype.error8go.itab."".FormatError.error
    461 runtime.convT2I
    462 (runtime.racefuncexit
    463  runtime.raceread@go.string."DHT has wrong length"&type."".FormatErrortype.error8go.itab."".FormatError.error
    464 runtime.convT2I
    465 (runtime.racefuncexit
    466  runtime.raceread
    467 ,"".(*decoder).readFull
    468 (runtime.racefuncexit
    469 "runtime.racewrite"
    470  runtime.raceread%
    471 "runtime.racewrite&
    472 $runtime.panicindex&
    473 $runtime.panicindex'
    474 $runtime.panicindex'
    475  runtime.duffcopy(
    476  runtime.raceread*
    477 "runtime.racewrite+
    478 "runtime.racewrite,
    479 "runtime.racewrite-
    480 $runtime.panicindex.
    481 $runtime.panicindex.
    482 $runtime.panicindex.
    483 $runtime.panicindex.
    484 $runtime.panicindex.
    485 $runtime.panicindex/
    486 "runtime.racewrite0
    487 "runtime.racewrite2
    488 "runtime.racewrite3
    489 $runtime.panicindex3
    490 $runtime.panicindex3
    491 $runtime.panicindex3
    492 $runtime.panicindex3
    493 $runtime.panicindex4
    494 $runtime.panicindex4
    495 $runtime.panicindex4
    496 $runtime.panicindex4
    497 $runtime.panicslice4
    498 $runtime.panicindex4
    499 $runtime.panicindex5
    500 $runtime.panicindex5
    501 $runtime.panicindex5
    502 $runtime.panicindex5
    503 $runtime.panicindex6
    504 (runtime.racefuncexit6
    505 0runtime.morestack_noctxt@h"".autotmp_0117type.int32"".autotmp_0116type.*int32"".autotmp_0115type.int"".autotmp_0114type.int"".autotmp_0113type.uint8"".autotmp_0112type.int"".autotmp_0111type.int"".autotmp_0110type.int"".autotmp_0109type.int"".autotmp_0108type.int32"".autotmp_0107type.int32"".autotmp_0106type.int32"".autotmp_0105type.[16]int32"".autotmp_0103type.int32"".autotmp_0102type.uint32"".autotmp_0101type.uint32"".autotmp_0100type.uint8"".autotmp_0099type.uint32"".autotmp_0098type.error"".autotmp_0097type.[]uint8"".autotmp_0096type.int32"".autotmp_0095&type."".FormatError"".autotmp_0094type.int"".autotmp_0093&type."".FormatError"".autotmp_0092&type."".FormatError"".autotmp_0091type.int32"".autotmp_0090&type."".FormatError"".autotmp_0089&type."".FormatError"".autotmp_0087/type.[]uint8"".autotmp_0086O&type."".FormatError"".ntype.int32"".itype.int"".indextype.int32"".ctype.int32"".ktype.uint8"".lutValuetype.uint16"".basetype.uint8"".jtype.int32"".itype.uint32"".codetype.uint32"".xtype.uint32"".itype.int"".errotype.error"".itype.int"".nCodestype.[16]int32"".h type.*"".huffman
    507 "".thtype.uint8
    508 "".tctype.uint8"".errtype.error"".~r1 type.error"".ntype.int"".d type.*"".decoder""s4
s-IsA
    513 'csjisdc3s\[VU V( t&O
    516 !&l
XSKX]K9.p5 Zo!K
    520 	[
    521 	"Tgclocals8dfb2267462a62b8e7420e37bb0f17e4Tgclocals176f5cd2c5a4f401e6842d3a644f12e1bprebuilts/go/darwin-x86/src/image/jpeg/huffman.go6"".(*decoder).decodeHuffman,+eH%HD$H;A
    523 H1H|$pH$H$1H$H$H$H$H$]HH$H$$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HH$H$H$H$H$ZH$D$H$HD$HL$HL$hHD$`H1H$H$HH$HD$HL$H$H\$\$ HH$H$H-H9lHH$H$H,$H$Hl$H-Hl$H-Hl$\$ H$H$H$ H$H$HH0HHT$XH$H$ H$HD$XHH Hl$PH$H$ H$H\$XH$H$ H$HD$XHLH0LD$PI)L H$H$ H$HD$XH
    524 H0H$H$H$H$HD$XXH$H$HD$Xhl$DH$H$HD$Xl$DhH$H$H$HD$Xhl$@H$H$H$HD$Xl$@hH$H$H$HD$Xhl$DH$H$H$H$H\$Xl$Dk1D$<HD$HH\H$H$H$H$ZuXH$D$H$HL$HD$HD$xHL$pHt%$H$H$HH$H$H$H$H$H$H$Yi!t\$<\$<H$H$H$H$hl$@H$H$H$H$l$@hH$H$H$H$hl$DH$H$H$H$l$DkH$HDH\$HHHlH,$H$H$D$<HL$HHLHDH4Hl]9HHgHlH,$H$HH\$HH4HlH,$HD$HH$HHHl]l$<LHMA()HHcHHlH,$HD$HH$HHHstHl]l$<LHsRMA()HHcHs/Hl]$1H$H$Hq\$<HHHD$HHHH$H$$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HZ1H$H$HH$H\$`H\$H\$hH\$H$H\$\$ txHH$H$H-H9uTHH$H$H,$H$Hl$H-Hl$H-Hl$\$ #$H\$`H$H\$hH$HH$H$H$H$H$H$H$XH xH$HkHl]H,$H$ZJ 1H$HHkHl]H]f%f\$8HHf\$:H$H$H$H$hl$@H$H$H$H$l$:DD$@A)D@H$H$H$H$hl$DH$H$H$H$HtKl$DHL$: s5kH\$8f$1H$H$H111
    537 N
    538 	 runtime.duffzerop
    539 *runtime.racefuncenter
    540  runtime.racereadNgo.string."uninitialized Huffman table"&type."".FormatErrortype.error8go.itab."".FormatError.error
    541 runtime.convT2I
    542 (runtime.racefuncexit
    543  runtime.raceread
    544 2"".(*decoder).ensureNBits&type."".FormatError
    545 $runtime.assertI2T2""".errMissingFF00
    546  runtime.raceread""".errMissingFF00""".errMissingFF00
    547  runtime.raceread""".errMissingFF00""".errMissingFF00
    548  runtime.eqstring
    549  runtime.raceread	
    550  runtime.raceread
    551 
    552 "runtime.racewrite
    554  runtime.raceread
    556 "runtime.racewrite
    558  runtime.raceread
    560  runtime.raceread
    562 "runtime.racewrite
    563  runtime.raceread
    564 "runtime.racewrite
    565  runtime.raceread
    566 "runtime.racewrite
    567  runtime.raceread
    568 2"".(*decoder).ensureNBits
    569 (runtime.racefuncexit
    570  runtime.raceread
    571  runtime.raceread
    572  runtime.raceread
    573 "runtime.racewrite
    574  runtime.raceread
    575 "runtime.racewrite
    576  runtime.raceread
    577  runtime.raceread
    578  runtime.raceread
    579  runtime.raceread
    580 (runtime.racefuncexit
    581 $runtime.panicindex
    582 $runtime.panicindex
    583 $runtime.panicindex
    584 $runtime.panicindex
    585 $runtime.panicindex
    586 $runtime.panicindex
    587 $runtime.panicindex
    588 $runtime.panicindex8go.string."bad Huffman code"&type."".FormatErrortype.error8go.itab."".FormatError.error
    589 runtime.convT2I
    590 (runtime.racefuncexit 
    591 $runtime.panicindex 
    592 $runtime.panicindex!&type."".FormatError!
    593 $runtime.assertI2T2","".errShortHuffmanData"
    594  runtime.raceread","".errShortHuffmanData","".errShortHuffmanData"
    595  runtime.raceread#,"".errShortHuffmanData#,"".errShortHuffmanData#
    596  runtime.eqstring$
    597 (runtime.racefuncexit$
    598  runtime.raceread%
    599  runtime.raceread&
    600  runtime.raceread(
    601  runtime.raceread(
    602 "runtime.racewrite)
    603  runtime.raceread)
    604 "runtime.racewrite+
    605 (runtime.racefuncexit+
    606 0runtime.morestack_noctxtP8"".autotmp_0138type.bool"".autotmp_0137_&type."".FormatError"".autotmp_0135&type."".FormatError"".autotmp_0134?&type."".FormatError"".autotmp_0133type.int"".autotmp_0132type.int32"".autotmp_0131type.uint32"".autotmp_0130type.int32"".autotmp_0129type.int32"".autotmp_0128type.error"".autotmp_0127type.uint32"".autotmp_0126type.int32"".autotmp_0125type.uint32"".autotmp_0124type.int32"".autotmp_0123type.uint32"".autotmp_0122type.int"".autotmp_0120&type."".FormatError"".d type.*"".decoder"".errtype.error"".codetype.int32"".itype.int"".ntype.uint16"".vtype.uint16"".errtype.error"".~r20type.error"".~r1 type.uint8"".h type.*"".huffman"".d type.*"".decoder`+N%{/7A#3;<>FFpMNG {UV	/"NZ#-.%^7#>`

	o8Tgclocalsc74d5f7f55ad85a22e7ced8e90fa0691Tgclocals721978b6eca21c225e2ab29bfd224bf6bprebuilts/go/darwin-x86/src/image/jpeg/huffman.go."".(*decoder).decodeBiteH%H;afH@H\$@H$1H\$XH\$`H\$HH$H$H$HT$HZuIH$D$HT$HHD$HL$HL$8HD$0HtD$PHD$XHL$`H@H$H$H\$HH$H$H$HD$HXh!D$'H$H$H$HD$Hhl$,H$H$H$HD$Hl$,hH$H$H$HD$Hhl$(H$H$H$H\$Hl$(k\$'\$P1H\$XH\$`H@}
    617 B
    618 *runtime.racefuncenter
    619  runtime.raceread
    620 2"".(*decoder).ensureNBits
    621 (runtime.racefuncexit
    622  runtime.raceread
    623  runtime.raceread
    624  runtime.raceread
    625 "runtime.racewrite
    626  runtime.raceread
    627 "runtime.racewrite
    628 (runtime.racefuncexit
    629 0runtime.morestack_noctxt@"".autotmp_0145/type.uint32"".autotmp_0144'type.int32"".ret1type.bool"".errtype.error"".~r1 type.error"".~r0type.bool"".d type.*"".decoder$8%0;@@ u!Tgclocals170309d2da858695ebefc5e7e0d9c320Tgclocalsc55cf99de9cdd8c8202a466952fa1a45bprebuilts/go/darwin-x86/src/image/jpeg/huffman.go0"".(*decoder).decodeBitseH%H;aH@H\$@H$1H\$`H\$hH\$HH$H$H$HT$HD$PZ9}HH$D$HT$HHD$HL$HL$8HD$0HtD$XHD$`HL$hH@H$H$H\$HH$H$H$t$PHT$HjJ)  !\$$H$H$H$HD$Hhl$(H$H$H$HD$Hl$(DD$PD)hH$H$H$HD$Hhl$,H$H$H$H\$HHt4L$Pl$, s#k\$$\$X1H\$`H\$hH@1141.
    638 B
    639 *runtime.racefuncenter
    640  runtime.raceread
    641 2"".(*decoder).ensureNBits
    642 (runtime.racefuncexit
    643  runtime.raceread
    644  runtime.raceread
    645  runtime.raceread
    646 "runtime.racewrite
    647  runtime.raceread
    648 "runtime.racewrite
    649 (runtime.racefuncexit
    650 0runtime.morestack_noctxtP"".autotmp_0149type.uint32"".autotmp_0148/type.int32"".autotmp_0147'type.uint32"".ret7type.uint32"".errtype.error"".~r20type.error"".~r1 type.uint32"".ntype.int32"".d type.*"".decoder$.H(,
BFO w8Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocalsc55cf99de9cdd8c8202a466952fa1a45bprebuilts/go/darwin-x86/src/image/jpeg/huffman.go"".idctYYeH%H;a1HxH\$xH$H$1H,HHD$`HH\$XHH@HH$Hl$XH$HHHH@H{
HH@HH$Hl$XH$HHHNH@=H)
HH@HH$Hl$XH$HHHH@HHH@HH$Hl$XH$HHHH@oHHH@KHH$Hl$XH$HHHH@H3HH@HH$Hl$XH$HHHH@HHH@}HH$Hl$XH$HHHKH@:HHH@zHH$Hl$XH$HHHHH@7H\$THHHD$pH@
HH$H$H
    671 Hl$pH@
    672 Hl$T+HL$XHHL$pH@
    673 HH$H$H
    674 Hl$pH@m
    675 Hl$T+HL$XHHL$pH@D
    676 HH$H$H
    677 Hl$pH@
    678 Hl$T+HL$XHHL$pH@	HH$H$H	Hl$pH@	Hl$T+HL$XHHL$pH@z	HH$H$HT	Hl$pH@>	Hl$T+HL$XHHL$pH@	HH$H$HHl$pH@Hl$T+HL$XHHL$pH@HH$H$HHl$pH@tHl$T+HL$XHHL$pH@KHH$H$H%Hl$pH@Hl$T+HD$`HH1HHHD$hHH@HH$H$Hl$hHHHH@H \$,HH H@\HH$H$Hl$hHH H*H@H\$(HH0H@HH$H$HD$hHH0HH@H+l$$HHH@HH$H$HD$hHHH]H@LH+l$ HHH@*HH$H$HD$hHHHH@H+l$HH8H@HH$H$HD$hHH8HH@H+l$HH(H@`HH$H$HD$hHH(H.H@H+l$HHH@HH$H$HD$hDT$,DD$(DL$$D\$ |$t$T$IHIHH@Hi5iiN
)ih	i)i)DDE)EEEiTADiEA)ADi DA\$()\$)D\$D)\$DD\$ DD)\$,i\$$)i\$LHLHD$pH@nHH$H$HHHl$pH@2Hl$DD$(D+HL$hHHL$pH@HH$H$HHl$pH@Hl$ DD$$D+HL$hHHL$pH@HH$H$HhHl$pH@RHl$,DD$D+HL$hHHL$pH@HH$H$HHl$pH@Hl$DD$D+HL$hH HL$pH@HH$H$HHl$pH@rHl$DD$D)+HL$hH(HL$pH@>HH$H$HHl$pH@Hl$,DD$D)+HL$hH0HL$pH@HH$H$HHl$pH@Hl$ DD$$D)+HL$hH8HL$pH@sbHH$H$HtCHl$pH@s1Hl$DD$(D)+HD$hHHpHxQq!Sf7ao
    721 @vHH@HH$Hl$XH$HHHUH@DH\$PHHH@HH$Hl$XH$HHHH@H\$LHHH@HH$HD$XH$HHHH@nH+l$HHHH@LHH$HD$XH$HHHH@	H+l$DHHH@HH$HD$XH$HHHH@H+l$@HHH@HH$HD$XH$HHHRH@AH+l$<HHH@HH$HD$XH$HHHH@H+l$8HHH@HH$HD$XL$DT$PDD$LDL$HD\$D|$@t$<T$8IHIfH@UIi5iiN
)ih	i)i)DDE)DDiTDiA)Di DA\$L)\$8)D\$4D)\$0D\$DD)\$Pi\$H)i\$@LHHD$pH@RIH$H$H,Hl$pH@Hl$4DD$LD+HL$XHHL$pH@HH$H$HHl$pH@Hl$DDD$HD+HL$XHHL$pH@sHH$H$HMHl$pH@7Hl$PDD$@D+HL$XHHL$pH@HH$H$HHl$pH@Hl$0DD$8D+HL$XHHL$pH@HH$H$HmHl$pH@WHl$0DD$8D)+HL$XHHL$pH@#HH$H$HHl$pH@Hl$PDD$@D)+HL$XHHL$pH@HH$H$HHl$pH@s{Hl$DDD$HD)+HL$XHHL$pH@sKHH$H$Ht,Hl$pH@sHl$4DD$LD)+l<A$BzGyD
    786 B
    787 *runtime.racefuncenter
    788  runtime.raceread
    789  runtime.raceread
    790  runtime.raceread
    791  runtime.raceread
    792  runtime.raceread
    793  runtime.raceread	
    794  runtime.raceread
    795 
    796  runtime.raceread
    798 "runtime.racewrite
    800 "runtime.racewrite
    801 "runtime.racewrite
    802 "runtime.racewrite
    803 "runtime.racewrite
    804 "runtime.racewrite
    805 "runtime.racewrite
    806 "runtime.racewrite
    807  runtime.raceread
    808  runtime.raceread
    809  runtime.raceread
    810  runtime.raceread
    811  runtime.raceread
    812  runtime.raceread
    813  runtime.raceread
    814  runtime.raceread%
    815 "runtime.racewrite&
    816 "runtime.racewrite'
    817 "runtime.racewrite)
    818 "runtime.racewrite*
    819 "runtime.racewrite,
    820 "runtime.racewrite-
    821 "runtime.racewrite.
    822 "runtime.racewrite0
    823 (runtime.racefuncexit0
    824 $runtime.panicindex0
    825 $runtime.panicindex0
    826 $runtime.panicindex0
    827 $runtime.panicindex0
    828 $runtime.panicindex1
    829 $runtime.panicindex1
    830 $runtime.panicindex1
    831 $runtime.panicindex1
    832 $runtime.panicindex1
    833 $runtime.panicindex1
    834 $runtime.panicindex2
    835 $runtime.panicindex2
    836 $runtime.panicindex2
    837 $runtime.panicindex2
    838 $runtime.panicindex2
    839 $runtime.panicindex2
    840 $runtime.panicindex2
    841 $runtime.panicindex3
    842 $runtime.panicindex3
    843 $runtime.panicindex3
    844 $runtime.panicindex3
    845 $runtime.panicindex3
    846 $runtime.panicindex3
    847 $runtime.panicindex4
    848 $runtime.panicindex4
    849 $runtime.panicindex4
    850 $runtime.panicindex4
    851 $runtime.panicindex4
    852 $runtime.panicindex4
    853 $runtime.panicindex5
    854 $runtime.panicindex5
    855 $runtime.panicindex5
    856 $runtime.panicindex5
    857 $runtime.panicindex5
    858 $runtime.panicindex5
    859 $runtime.panicindex6
    860 $runtime.panicindex6
    861 $runtime.panicindex6
    862 $runtime.panicindex6
    863 $runtime.panicindex6
    864 $runtime.panicindex6
    865 $runtime.panicindex7
    866 $runtime.panicindex7
    867 $runtime.panicindex7
    868 $runtime.panicindex7
    869 $runtime.panicindex7
    870 $runtime.panicindex7
    871 $runtime.panicindex8
    872 $runtime.panicindex8
    873 $runtime.panicindex8
    874  runtime.raceread:
    875  runtime.raceread;
    876  runtime.raceread<
    877  runtime.raceread=
    878  runtime.raceread?
    879  runtime.raceread@
    880  runtime.racereadA
    881  runtime.racereadF
    882 "runtime.racewriteH
    883 "runtime.racewriteI
    884 "runtime.racewriteK
    885 "runtime.racewriteL
    886 "runtime.racewriteM
    887 "runtime.racewriteO
    888 "runtime.racewriteP
    889 "runtime.racewriteQ
    890 $runtime.panicindexQ
    891 $runtime.panicindexQ
    892 $runtime.panicindexR
    893 $runtime.panicindexR
    894 $runtime.panicindexR
    895 $runtime.panicindexR
    896 $runtime.panicindexR
    897 $runtime.panicindexR
    898 $runtime.panicindexS
    899 $runtime.panicindexS
    900 $runtime.panicindexS
    901 $runtime.panicindexS
    902 $runtime.panicindexS
    903 $runtime.panicindexS
    904 $runtime.panicindexT
    905 $runtime.panicindexT
    906 $runtime.panicindexT
    907 $runtime.panicindexT
    908 $runtime.panicindexT
    909 $runtime.panicindexT
    910 $runtime.panicindexU
    911 $runtime.panicindexU
    912 $runtime.panicindexU
    913 $runtime.panicindexU
    914 $runtime.panicindexU
    915 $runtime.panicindexU
    916 $runtime.panicindexV
    917 $runtime.panicindexV
    918 $runtime.panicindexV
    919 $runtime.panicindexV
    920 $runtime.panicindexV
    921 $runtime.panicindexV
    922 $runtime.panicindexW
    923 $runtime.panicindexW
    924 $runtime.panicindexW
    925 $runtime.panicindexW
    926 $runtime.panicindexW
    927 $runtime.panicindexW
    928 $runtime.panicindexW
    929 $runtime.panicindexX
    930 $runtime.panicindexX
    931 $runtime.panicindexX
    932 $runtime.panicindexX
    933 $runtime.panicindexX
    934 $runtime.panicindexX
    935 $runtime.panicindexY
    936 0runtime.morestack_noctxtt"".autotmp_0185type.int"".autotmp_0184type.int"".autotmp_0183type.int"".autotmp_0182type.int"".autotmp_0181type.int"".autotmp_0180type.int"".autotmp_0179type.int"".autotmp_0178type.int"".autotmp_0177type.int"".autotmp_0176type.int"".autotmp_0175type.int"".autotmp_0174type.int"".autotmp_0173type.int"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.int"".autotmp_0168type.int"".autotmp_0167type.int"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0164type.int"".autotmp_0163type.int"".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0160type.int32"".autotmp_0159type.int32"".autotmp_0158type.int32"".autotmp_0157type.int32"".autotmp_0156type.int32"".autotmp_0155type.int"".autotmp_0154type.int32"".autotmp_0153type.int32"".autotmp_0152type.int32"".autotmp_0151type.int32
    937 "".y8type.int32
    938 "".y7type.int32
    939 "".y6type.int32
    940 "".y5type.int32
    941 "".y4type.int32
    942 "".y3type.int32
    943 "".y2type.int32
    944 "".y1type.int32
    945 "".y0type.int32"".xtype.int
    946 "".x8type.int32
    947 "".x7type.int32
    948 "".x6type.int32
    949 "".x5wtype.int32
    950 "".x4otype.int32
    951 "".x3gtype.int32
    952 "".x2_type.int32
    953 "".x1Wtype.int32
    954 "".x0Otype.int32
    955 "".dcGtype.int32
    956 "".y8?type.int"".y/type.int"".srctype.*"".block,,)(*(PNOPPPPPP^SPPPPPo

		
    965 
    966 \[[[[[[Ocd;uVSPPNPPl
    967 
    969 				YZ[[[[WO{|;b	 ,Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/jpeg/idct.go("".FormatError.ErroreH%H;avrH8H\$8H$1H\$PH\$XH$HH\$HD$H\$@H\$H\$HH\$ H\$(H\$PH\$0H\$XH8u
    977 :
    978 *runtime.racefuncenterpBgo.string."invalid JPEG format: "
    979 *runtime.concatstring2
    980 (runtime.racefuncexit
    981 0runtime.morestack_noctxt@p"".~r0 type.string"".e&type."".FormatErrorpmop0[Tgclocals342b6176fad1bf8fb686f6c9600f7161Tgclocals69c1753bd5f81501d95132d08af04464`prebuilts/go/darwin-x86/src/image/jpeg/reader.go2"".UnsupportedError.ErroreH%H;avrH8H\$8H$1H\$PH\$XH$HH\$HD$H\$@H\$H\$HH\$ H\$(H\$PH\$0H\$XH8u
    985 :
    986 *runtime.racefuncenterpLgo.string."unsupported JPEG feature: "
    987 *runtime.concatstring2
    988 (runtime.racefuncexit
    989 0runtime.morestack_noctxt@p"".~r0 type.string"".e0type."".UnsupportedErrorpmop:[Tgclocals342b6176fad1bf8fb686f6c9600f7161Tgclocals69c1753bd5f81501d95132d08af04464`prebuilts/go/darwin-x86/src/image/jpeg/reader.go$"".(*decoder).filleH%HD$H;AHH$H$1H$H$H$H$H$ H$H$H$H$ H$H$H5H H(H9tTHH\$hHD$p)HH$H\$hH\$HD$H\$HH$HKHL$H$H$ H$H$HH(HHh H,$H$H$H$ H$H$H(HHi H=9HlH,$H$HH(HHh HHl
]X Hh HH,$H$H$H$ H$H$H(HHi H=HlH,$H$HeH(HHh HCHl
]X!H$H$ H$H$HH H$H$ H$H$HH(H$H$ H$H$HH(HyHH)II IVHtMH$H$LD$xH$H$HHHkH\$xH\$H$H\$H$H\$Hl$`H,$HL$XHY HT$ HL$(HD$0HT$8HL$HHD$PH$H$H$ H$H$HH(Hl$@H$H$ H$HD$8H$HtHHl$@HH(H~1H\$HH\$PH\$HH$H\$PH$HxAe+Z*:
   1005 X
   1006 *runtime.racefuncenter
   1007  runtime.raceread
   1008  runtime.racereadjgo.string."jpeg: fill called when unread bytes exist"type.string
   1009 runtime.convT2E
   1010 runtime.gopanic
   1011  runtime.raceread
   1012 "runtime.racewrite
   1013  runtime.raceread
   1014  runtime.raceread
   1015 "runtime.racewrite
   1016  runtime.raceread
   1017  runtime.raceread	
   1018 "runtime.racewrite
   1019 
   1020 "runtime.racewrite
   1022  runtime.raceread
   1024  runtime.raceread
   1025  runtime.raceread
   1026 "runtime.racewrite
   1027 (runtime.racefuncexit
   1028 $runtime.panicslice
   1029 $runtime.panicindex
   1030 $runtime.panicindex
   1031 $runtime.panicindex
   1032 $runtime.panicindex
   1033 0runtime.morestack_noctxt0"".autotmp_0239type.int"".autotmp_0236/type.[]uint8"".autotmp_0235type.int"".autotmp_0234Otype.string"".errtype.error"".ntype.int"".~r0type.error"".d type.*"".decoder	b"!aT9ft'	,+2T9'hTgclocals22d483162ff03d8ae3f68d96ba585844Tgclocalscf27bd8426953c775c3bc54d29d51faa`prebuilts/go/darwin-x86/src/image/jpeg/reader.goF"".(*decoder).unreadByteStuffedByteeH%H;aHH\$H$H\$ H$H$ H$HD$ HH Hl$H$H$ H$H\$ H$H$ H$HD$ H4H0LD$I)L H$H$ H$HD$ HH0H$H$H$HD$ XH$H$HD$ hl$H$H$HD$ l$hH$H$H$HD$ hl$H$H$H$HD$ l$hH$H$H$HD$ hl$H$H$H$H\$ l$kHr
   1043 B
   1044 *runtime.racefuncenterx
   1045  runtime.raceread
   1046 "runtime.racewrite
   1047  runtime.raceread
   1048 "runtime.racewrite
   1049  runtime.raceread
   1050  runtime.raceread
   1051 "runtime.racewrite
   1052  runtime.raceread
   1053 "runtime.racewrite
   1054  runtime.raceread
   1055 "runtime.racewrite
   1056 (runtime.racefuncexit
   1057 0runtime.morestack_noctxt0
   1058 "".autotmp_0248type.uint32"".autotmp_0247type.int32"".autotmp_0246type.uint32"".autotmp_0245type.int"".d type.*"".decoder0/0(6	0$7AF Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/reader.go,"".(*decoder).readByteeH%H;aH H\$ H$11H\$8H\$@H\$(H$H$ H$H\$(H$H$ H$HD$(HH H(H9u2H$HL$HD$HD$@HL$8HtD$0H H$H$ H$HL$(H Hi H=HlH,$HL$(HH Hi H=Hl]\$0H$H$ H$HD$(HH Hl$H$H$ H$HD$(HtUHl$HH H$H$ H$H\$(Ht!H01H\$8H\$@H sz
   1066 B
   1067 *runtime.racefuncenter
   1068  runtime.raceread
   1069  runtime.raceread
   1070 $"".(*decoder).fill
   1071 (runtime.racefuncexit
   1072  runtime.raceread
   1073  runtime.raceread
   1074  runtime.raceread
   1075 "runtime.racewrite
   1076 "runtime.racewrite
   1077 (runtime.racefuncexit
   1078 $runtime.panicindex
   1079 $runtime.panicindex
   1080 0runtime.morestack_noctxt@@"".autotmp_0250type.int"".err type.error"".xtype.uint8"".d type.*"".decoder@?@?@=HX#sa,	 .Tgclocals170309d2da858695ebefc5e7e0d9c320Tgclocals69c1753bd5f81501d95132d08af04464`prebuilts/go/darwin-x86/src/image/jpeg/reader.goB"".(*decoder).readByteStuffedByteeH%H;aLHPH\$PH$11H\$hH\$pH\$XH$H$ H$H\$XH$H$ H$HD$XHH HH(H9H$H$ H$HL$XH Hi H=HlH,$HL$XHH Hi H=vHl]\$`H$H$ H$HD$XH=H Hl$8H$H$ H$HD$XHHl$8HH H$H$ H$HD$XHH0\$`t
   1087 HPH$H$ H$HL$XH Hi H=rHlH,$HL$XHNL Hi I/Jl]tjHH$HH\$HH\$HH\$HD$ HL$(HD$0D$`HL$@HL$hHD$HHD$pHPH$H$ H$HD$XHH Hl$8H$H$ H$HD$XHtZHl$8HH H$H$ H$H\$XHt&H0D$`1H\$hH\$pHPn/eH$H$ H$HD$XHH0H$\$HT$HL$\$`HL$pHT$hHtD$`HPH\$XH$H$ H$HD$XH1H0\$`t1H\$hH\$pHPH$\$HT$HL$\$`HL$pHT$hHtD$`HPH\$XH$H$ H$H\$XHH0\$`tjHH$HH\$HH\$HH\$HD$ HL$(HD$0D$`HL$@HL$hHD$HHD$pHPD$`1H\$hH\$pHP_QT
   1093 B
   1094 *runtime.racefuncenter
   1095  runtime.raceread
   1096  runtime.raceread
   1097  runtime.raceread
   1098  runtime.raceread
   1099  runtime.raceread
   1100 "runtime.racewrite
   1101 "runtime.racewrite
   1102 (runtime.racefuncexit
   1103  runtime.raceread
   1104  runtime.raceread&type."".FormatErrortype.error8go.itab."".FormatError.error	""".errMissingFF00	
   1105 runtime.convT2I
   1106 
   1107 (runtime.racefuncexit
   1108 
   1109  runtime.raceread
   1111 "runtime.racewrite
   1113 "runtime.racewrite
   1115 (runtime.racefuncexit
   1117 $runtime.panicindex
   1119 $runtime.panicindex
   1121 $runtime.panicindex
   1123 $runtime.panicindex
   1124 "runtime.racewrite
   1125 ,"".(*decoder).readByte
   1126 (runtime.racefuncexit
   1127 "runtime.racewrite
   1128 (runtime.racefuncexit
   1129 ,"".(*decoder).readByte
   1130 (runtime.racefuncexit
   1131 "runtime.racewrite&type."".FormatErrortype.error8go.itab."".FormatError.error""".errMissingFF00
   1132 runtime.convT2I
   1133 (runtime.racefuncexit
   1134 (runtime.racefuncexit
   1135 0runtime.morestack_noctxt@"".autotmp_0260type.error"".autotmp_0259type.error"".autotmp_0258type.error"".autotmp_0257type.uint8"".autotmp_0256type.error"".autotmp_0254type.int"".autotmp_0253type.int"".err type.error"".xtype.uint8"".d type.*"".decodervT:-
   1137 HG`se0
   1138 <9u`43a,,+0!5
   1141 !5
   1146 `H ) 5- RTgclocals170309d2da858695ebefc5e7e0d9c320Tgclocalsc55cf99de9cdd8c8202a466952fa1a45`prebuilts/go/darwin-x86/src/image/jpeg/reader.go,"".(*decoder).readFulleH%HD$H;AHH$H$1H$H$H$H$H$ H$H$H>H0HH$H$H$H$]H$HD$XH$H$ H$HD$XHH Hl$PH$H$ H$H\$XH$H$ H$HD$XHzH0LD$PI)L H$H$ H$HD$XH8H0H$H$H$HD$XXH$H$HD$Xhl$DH$H$HD$Xl$DhH$H$H$HD$Xhl$@H$H$H$HD$Xl$@hH$H$H$HD$Xhl$DH$H$H$H\$Xl$DkH$H$H$ H$H$HH0H$H$ H$H$HH Hl$PH$H$ H$H$HH(H\$PHH9{H)II)II IUItMH$H$H$H\$H$H\$LL$pLL$Hl$xHl$ L$LD$(HD$0HD$8HD$HH$L$H9L$H)I)ItMH$L$L$H$H$H$ H$H$HeH Hl$PH$H$ H$H$H*Hl$PLD$HLH H$Hu1H$H$HH$H$HL$HD$HD$hHL$`HHH$H\$`H-H9urHH$Hl$`H,$Hl$hHl$H-Hl$H-Hl$\$ t(HH$HH\$`HH\$hH\$`H$H\$hH$HAU,?N
   1154 X
   1155 *runtime.racefuncenter
   1156  runtime.raceread
   1157  runtime.raceread
   1158  runtime.raceread
   1159 "runtime.racewrite
   1160  runtime.raceread
   1161 "runtime.racewrite
   1162  runtime.raceread
   1163  runtime.raceread
   1164 "runtime.racewrite
   1165  runtime.raceread
   1166 "runtime.racewrite
   1167  runtime.raceread
   1168 "runtime.racewrite	
   1169 "runtime.racewrite
   1170 
   1171  runtime.raceread
   1173  runtime.raceread
   1175 "runtime.slicecopy
   1176  runtime.raceread
   1177 "runtime.racewrite
   1178 (runtime.racefuncexit
   1179 $"".(*decoder).fillio.EOF
   1181  runtime.racereadio.EOFio.EOF
   1184  runtime.racereadio.EOFio.EOF
   1187 runtime.ifaceeq&io.ErrUnexpectedEOF
   1188  runtime.raceread&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF
   1189 (runtime.racefuncexit
   1190 $runtime.panicslice
   1191 $runtime.panicslice
   1192 0runtime.morestack_noctxt`"".autotmp_0274type.int"".autotmp_0273type.int"".autotmp_0271/type.[]uint8"".autotmp_0269type.int"".autotmp_0268type.uint32"".autotmp_0267type.int32"".autotmp_0266type.uint32"".autotmp_0265otype.int"".d_ type.*"".decoder"".errOtype.error"".ntype.int"".~r1@type.error"".ptype.[]uint8"".d type.*"".decoder(nl.-A';Nx
/k(0+6k7`Tgclocals8889fc92438f7659f0925dca838c4962Tgclocals6124d79b7ef47c9c407e697f0880a22d`prebuilts/go/darwin-x86/src/image/jpeg/reader.go("".(*decoder).ignoreeH%H;a]HXH\$XH$1H\$pH\$xH\$`H$H$ H$HT$`HH0HH$H$H$Hl$`]HD$`HD$@H$H$ H$HD$@HH Hl$8H$H$ H$H\$@H$H$ H$HD$@HPH0LD$8I)L H$H$ H$HD$@HH0H$H$H$HD$@XH$H$HD$@hl$,H$H$HD$@l$,hH$H$H$HD$@hl$(H$H$H$HD$@l$(hH$H$H$HD$@hl$,H$H$H$H\$@l$,kH\$`H$H$ H$HT$`HH0H$H$ H$H\$`H$H$ H$HL$hHD$`HH(H H)HT$0H9~HL$0H$H$ H$HD$`HRH Hl$8H$H$ H$HT$`HL$0HHl$8HH HD$hH)HD$hHu1H\$pH\$xHXH$HT$`HL$HD$HD$PHL$HHHH$H\$HH-H9urHH$Hl$HH,$Hl$PHl$H-Hl$H-Hl$\$ t(HH$HH\$HHH\$PH\$HH\$pH\$PH\$xHX[VH
   1198 B
   1199 *runtime.racefuncenter
   1200  runtime.raceread
   1201  runtime.raceread
   1202  runtime.raceread
   1203 "runtime.racewrite
   1204  runtime.raceread
   1205 "runtime.racewrite
   1206  runtime.raceread
   1207  runtime.raceread
   1208 "runtime.racewrite
   1209  runtime.raceread
   1210 "runtime.racewrite
   1211  runtime.raceread
   1212 "runtime.racewrite	
   1213 "runtime.racewrite	
   1214  runtime.raceread
   1215 
   1216  runtime.raceread
   1218  runtime.raceread
   1220 "runtime.racewrite
   1222 (runtime.racefuncexit
   1224 $"".(*decoder).fillio.EOF
   1226  runtime.racereadio.EOFio.EOF
   1229  runtime.racereadio.EOFio.EOF
   1232 runtime.ifaceeq&io.ErrUnexpectedEOF
   1233  runtime.raceread&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF
   1234 (runtime.racefuncexit
   1235 0runtime.morestack_noctxt@"".autotmp_0281type.int"".autotmp_0280type.int"".autotmp_0279type.uint32"".autotmp_0278_type.int32"".autotmp_0277Wtype.uint32"".autotmp_0276?type.int"".d/ type.*"".decoder"".errtype.error"".mOtype.int"".~r1 type.error"".ntype.int"".d type.*"".decoder(H	n43;$5V
   1239 j
,k(, 3k1RTgclocalseb76ecd36c7b038de24a170fc7fbec58Tgclocals146719d1bf48f9d1c4c0f00caaf1a24f`prebuilts/go/darwin-x86/src/image/jpeg/reader.go0"".(*decoder).processSOFGGeH%HD$H;AHH$H$1H$H$H$H$H$H$H[HHHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HH$H	H$H$H$HHH$H~HHjHp3HQHH$H$Hl$H$H\$H$HT$HD$ HL$(HL$hHD$`HtH$H$HH$Hp3H,$H$Hp3twHH\$pHD$x	HH$HH\$HH\$H\$pH\$HD$ H\$(H$H\$0H$HH$H$@H$Hp3HH,$H$Hp3HH,$H$H
q3Hr3HH@H$H$8H$Hp3HH,$H$Hp3HH,$H$HP
s3Ht3HH8Hp3HH,$H$H$H$H$Hu3HH9HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHD$PH$H$H$HD$PHHH9HHHHkHH,$H$HD$PH$HkHHp3H=HlH,$H$HT$PHHkHHZHp3H?Hl]LIHMkMAX1HT$HH9RHHH
   1255 HkHH,$H$H$HH\$HH
   1256 HkHH,$H$HT$HH$LL$PHs
   1257 LLIX
   1258 MkMAXLIH1
   1259 MkMAi@8HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHHT$HH9HHHp	HkHH,$H$HD$PH$HkHHp3H=,	HlH,$H$HL$PHHkHHHp3HHl
]LIHMkMAXHHHHkHH,$H$H$LL$PH]LLIBMkMAXHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHkHHp3H=HlH,$H$HD$PHkHHWHp3H==Hl]HHHD$?HHHH|HrHL$XHH\$@HH$H$T$?H$HHHHD$XHD$@HH\$PHHkHH,$H$LD$PHHLIMkLHHl$XH+HHHsfHkHH,$H$LD$PH$Ht:HLIs#MkLHHl$@HkHHH\$P&OHHD$PHusH\$@HHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HHHH,$H$HLIHl$XHHHHHuOHH,$H$H$HLI@Hl$@HtvHHHHHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$H1i15
HZHHH,$H$HLIIHl$XH9uHHHH,$H$H$HLIIXHl$@H9HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$Hx.HXHD$PHHuv:"1HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HHHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HHtHFHH,$H$HLIHl$XH9u<HH,$H$H$Ht}LIXHl$@H9HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$H|>8HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$H1H$H$H+GETHu3H$H$H$HtH*Hu3H$H$H$HtHHH\$pHD$xHH$HH\$HH\$H\$pH\$HD$ H\$(H$H\$0H$H'
   1287 X
   1288 *runtime.racefuncenter
   1289  runtime.raceread@go.string."multiple SOF markers"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1290 runtime.convT2I
   1291 (runtime.racefuncexit
   1292 "runtime.racewrite
   1293 ,"".(*decoder).readFull
   1294 (runtime.racefuncexit
   1295  runtime.raceread*go.string."precision"0type."".UnsupportedErrortype.error	Bgo.itab."".UnsupportedError.error	
   1296 runtime.convT2I
   1297 
   1298 (runtime.racefuncexit
   1299 
   1300 "runtime.racewrite
   1301 
   1302  runtime.raceread
   1304  runtime.raceread
   1306 "runtime.racewrite
   1308  runtime.raceread
   1310  runtime.raceread
   1311  runtime.raceread
   1312  runtime.raceread@go.string."SOF has wrong length"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1313 runtime.convT2I
   1314 (runtime.racefuncexit
   1315  runtime.raceread
   1316 "runtime.racewrite
   1317  runtime.raceread
   1318  runtime.raceread
   1319  runtime.racereadRgo.string."repeated component identifier"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1320 runtime.convT2I
   1321 (runtime.racefuncexit
   1322 "runtime.racewrite
   1323  runtime.raceread
   1324  runtime.raceread0go.string."bad Tq value"&type."".FormatErrortype.error 8go.itab."".FormatError.error 
   1325 runtime.convT2I!
   1326 (runtime.racefuncexit!
   1327  runtime.raceread$
   1328  runtime.raceread&
   1329 "runtime.racewrite'
   1330 "runtime.racewrite(
   1331 $runtime.panicindex(
   1332 $runtime.panicindex)
   1333 $runtime.panicindex)
   1334 $runtime.panicindex*0type."".UnsupportedError*type.error*Bgo.itab."".UnsupportedError.error*B"".errUnsupportedSubsamplingRatio*
   1335 runtime.convT2I+
   1336 (runtime.racefuncexit+
   1337  runtime.raceread-
   1338  runtime.raceread.0type."".UnsupportedError.type.error.Bgo.itab."".UnsupportedError.error.B"".errUnsupportedSubsamplingRatio.
   1339 runtime.convT2I/
   1340 (runtime.racefuncexit0
   1341  runtime.raceread1
   1342  runtime.raceread20type."".UnsupportedError2type.error2Bgo.itab."".UnsupportedError.error2B"".errUnsupportedSubsamplingRatio3
   1343 runtime.convT2I3
   1344 (runtime.racefuncexit40type."".UnsupportedError5type.error5Bgo.itab."".UnsupportedError.error5B"".errUnsupportedSubsamplingRatio5
   1345 runtime.convT2I6
   1346 (runtime.racefuncexit60type."".UnsupportedError6type.error7Bgo.itab."".UnsupportedError.error7B"".errUnsupportedSubsamplingRatio7
   1347 runtime.convT2I8
   1348 (runtime.racefuncexit8
   1349  runtime.raceread9
   1350  runtime.raceread:0type."".UnsupportedError:type.error:Bgo.itab."".UnsupportedError.error:B"".errUnsupportedSubsamplingRatio;
   1351 runtime.convT2I;
   1352 (runtime.racefuncexit<0type."".UnsupportedError<type.error<Bgo.itab."".UnsupportedError.error<B"".errUnsupportedSubsamplingRatio=
   1353 runtime.convT2I=
   1354 (runtime.racefuncexit=Rgo.string."luma/chroma subsampling ratio">&type."".FormatError>type.error>8go.itab."".FormatError.error?
   1355 runtime.convT2I?
   1356 (runtime.racefuncexit?
   1357 $runtime.panicindex?
   1358 $runtime.panicindex@
   1359 $runtime.panicindex@
   1360 $runtime.panicindex@
   1361 $runtime.panicindex@
   1362 $runtime.panicindex@
   1363 $runtime.panicindex@
   1364 $runtime.panicindex@
   1365 $runtime.panicindexA
   1366 $runtime.panicindexA
   1367 $runtime.panicindexA
   1368 $runtime.panicindexA
   1369 $runtime.panicindexA
   1370 $runtime.panicindexA
   1371 $runtime.panicindexA
   1372 $runtime.panicindexB
   1373 (runtime.racefuncexitC
   1374 $runtime.panicsliceC
   1375 "runtime.racewriteD
   1376 "runtime.racewriteE@go.string."number of components"E0type."".UnsupportedErrorEtype.errorFBgo.itab."".UnsupportedError.errorF
   1377 runtime.convT2IF
   1378 (runtime.racefuncexitG
   1379 0runtime.morestack_noctxt@."".autotmp_0299type.int"".autotmp_0298type.int"".autotmp_0297type.int"".autotmp_0295type.int"".autotmp_0293type.int"".autotmp_0292&type."".FormatError"".autotmp_0291&type."".FormatError"".autotmp_0290type.int"".autotmp_0289&type."".FormatError"".autotmp_0288&type."".FormatError"".autotmp_02870type."".UnsupportedError"".autotmp_0285/type.[]uint8"".autotmp_0284o0type."".UnsupportedError"".autotmp_0283O&type."".FormatError"".vtype.int"".htype.int
   1380 "".hvtype.uint8"".jtype.int"".itype.int"".errtype.error"".~r1 type.error"".ntype.int"".d type.*"".decodervx#<s
   1383 .6jvwVsAsisg(/
   1385 lc[g
   1386 WRQ
   1387 WJI
   1388 WBA
   1389 
   1390 W 
   1391 	W
   1392 rWyWs#	##**j++ n	"B1"?X(Za
?%Tgclocals571b7338b8395ce87dcbaec142ca56b2Tgclocalsd28eee54173373653090049ae602695c`prebuilts/go/darwin-x86/src/image/jpeg/reader.go0"".(*decoder).processDQTeH%HD$H;AHH$H$H$1H$H$H$HH$HH$H$H$\$HHl$HT$HT$xHl$pHtH$H$HH\$?HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHH$H@H$HHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$H1H$H$HH$H@H$HHHp3HH@HH$H$HD$H$Hl$H$HT$t$?H$HT$ HL$(HL$hHT$`HtH$H$H1HD$P@Hl$PH9\HL$XHp/@HHHHL$HH@HlH,$H$Hp3H\$HHHlH,$t$?HL$HH$Ht`Hp/@HsHHHH@s4HlLp3HsMA]HL$XH"`ImH$HYH$HH$HH-Hp3HHHH$H$HD$H$Hl$H$HT$t$?H$HT$ HL$(H$H$HtH$H$H1HD$X@Hl$XH9]HL$PHp/@HTHHHL$@H@7HlH,$HD$@H$HHp3H=HlH,$HD$@HHH$Hp3H=HlH,$t$?HL$@H$HHHHp3HsvHl
]HHHLp3HsJMA(	Lp/@Hs(HIH@sMAHL$PHlHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$H^
   1416 X
   1417 *runtime.racefuncenter
   1418 ,"".(*decoder).readByte
   1419 (runtime.racefuncexit0go.string."bad Tq value"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1420 runtime.convT2I
   1421 (runtime.racefuncexit@go.string."DQT has wrong length"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1422 runtime.convT2I
   1423 (runtime.racefuncexit
   1424 (runtime.racefuncexit
   1425 
   1426 ,"".(*decoder).readFull
   1428 (runtime.racefuncexit
   1430 "runtime.racewrite
   1432  runtime.raceread
   1433 $runtime.panicindex
   1434 $runtime.panicindex
   1435 $runtime.panicindex
   1436 $runtime.panicindex
   1437 $runtime.panicindex
   1438 $runtime.panicindex
   1439 ,"".(*decoder).readFull
   1440 (runtime.racefuncexit
   1441 "runtime.racewrite
   1442  runtime.raceread
   1443  runtime.raceread
   1444 $runtime.panicindex
   1445 $runtime.panicindex
   1446 $runtime.panicindex
   1447 $runtime.panicindex
   1448 $runtime.panicindex
   1449 $runtime.panicindex
   1450 $runtime.panicindex
   1451 $runtime.panicindex0go.string."bad Pq value"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1452 runtime.convT2I
   1453 (runtime.racefuncexit
   1454 0runtime.morestack_noctxt@0"".autotmp_0322type.int"".autotmp_0321type.int"".autotmp_0320type.int"".autotmp_0319type.int"".autotmp_0318type.uint8"".autotmp_0317&type."".FormatError"".autotmp_0316type.error"".autotmp_0315type.[]uint8"".autotmp_0314type.int"".autotmp_0313type.error"".autotmp_0312/type.[]uint8"".autotmp_0311type.int"".autotmp_0310&type."".FormatError"".autotmp_0309O&type."".FormatError"".autotmp_0306type.int"".itype.int"".errotype.error"".itype.int"".errtype.error
   1457 "".tqtype.uint8"".errtype.error"".~r1 type.error"".ntype.int"".d type.*"".decoderlTS(HG
s@?	.s-*)
.	
?!s87F+rw<__Tgclocalse14558fb58ab04949d9e3b1894ce3d18Tgclocals06d9af95671ea7b6729978b7a9eabf4c`prebuilts/go/darwin-x86/src/image/jpeg/reader.go0"".(*decoder).processDRIeH%H;aHpH\$pH$Hl$x1H$H$H$HttHH\$HHD$PHH$HH\$HH\$H\$HH\$HD$ H\$(H$H\$0H$HpHH
   1466 Hp3HHHH,$HD$XHD$HT$`HT$HL$hHL$HD$ HL$(HL$@HD$8HtH$H$HpH\$xH$H$xH\$xHp3H,$H\$xHp3HH,$HD$xHt8p3Hq3HHx1H$H$HpE
   1467 B
   1468 *runtime.racefuncenter@go.string."DRI has wrong length"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1469 runtime.convT2I
   1470 (runtime.racefuncexit
   1471 ,"".(*decoder).readFull
   1472 (runtime.racefuncexit
   1473 "runtime.racewrite
   1474  runtime.raceread
   1475  runtime.raceread
   1476 (runtime.racefuncexit
   1477 0runtime.morestack_noctxt@"".autotmp_0328/type.[]uint8"".autotmp_0327O&type."".FormatError"".errotype.error"".~r1 type.error"".ntype.int"".d type.*"".decoder6&Djlj" uW/k0Tgclocalsa98a1bcb6ff825b1487e8f04a1353cd0Tgclocals43055132c19e49592b80287ab20cd019`prebuilts/go/darwin-x86/src/image/jpeg/reader.go>"".(*decoder).processApp0MarkereH%H;aHhH\$hH$HL$xHD$p1H$H$H}<H$HL$HL$HD$HL$@H$HD$HH$HhHHoHp3HWHHH$HL$PHL$Hl$XHl$HT$`HT$HD$ HL$(HL$8HD$0HtH$H$HhH\$xHH\$xH\$pH$H$H\$pHp3H,$HD$pHp3@JLp3IL$HD$pH^q3@F@Lp3IL$HD$pHr3@ILp3IL$HD$pHs3@FLp3IL$HD$pHt3@HtnH\$xH~AH$H\$xH\$HL$HD$HL$@H$HD$HH$Hh1H$H$Hhs1z+1211Z 
   1486 B
   1487 *runtime.racefuncenter
   1488 ("".(*decoder).ignore
   1489 (runtime.racefuncexit
   1490 ,"".(*decoder).readFull
   1491 (runtime.racefuncexit
   1492 "runtime.racewrite
   1493  runtime.raceread
   1494  runtime.raceread
   1495  runtime.raceread
   1496  runtime.raceread
   1497  runtime.raceread	
   1498 ("".(*decoder).ignore
   1499 
   1500 (runtime.racefuncexit
   1501 
   1502 (runtime.racefuncexit
   1504 0runtime.morestack_noctxt@"".autotmp_0334type.error"".autotmp_0332type.error"".autotmp_0331/type.[]uint8"".autotmp_0330Otype.error"".errotype.error"".~r1 type.error"".ntype.int"".d type.*"".decoder@k[Z2m7	C	
   1508 " YX/)Tgclocals170309d2da858695ebefc5e7e0d9c320Tgclocals2c837ca001512a37037efd3161e20199`prebuilts/go/darwin-x86/src/image/jpeg/reader.go@"".(*decoder).processApp14Marker
eH%H;aHhH\$hH$HL$xHD$p1H$H$H}<H$HL$HL$HD$HL$@H$HD$HH$HhHHHp3HyHHH$HL$PHL$Hl$XHl$HT$`HT$HD$ HL$(HL$8HD$0HtH$H$HhH\$xHH\$xH\$pHp3H,$HD$pHp3A8Hp3HH,$HD$pHq3dHp3HH,$HD$pHdr3oHp3HH,$HD$pH*s3bHp3HH,$HD$pHt3euqH$H$HD$pHH@H$H$H\$pHp3HH,$HD$pHtv{3@H\$xH~AH$H\$xH\$HL$HD$HL$@H$HD$HH$Hh1H$H$Hh<	["h$
   1516 B
   1517 *runtime.racefuncenter
   1518 ("".(*decoder).ignore
   1519 (runtime.racefuncexit
   1520 ,"".(*decoder).readFull
   1521 (runtime.racefuncexit
   1522  runtime.raceread
   1523  runtime.raceread
   1524  runtime.raceread
   1525  runtime.raceread
   1526  runtime.raceread
   1527 "runtime.racewrite	
   1528 "runtime.racewrite	
   1529  runtime.raceread
   1530 
   1531 ("".(*decoder).ignore
   1533 (runtime.racefuncexit
   1535 (runtime.racefuncexit
   1537 0runtime.morestack_noctxt@"".autotmp_0342type.error"".autotmp_0340type.error"".autotmp_0339/type.[]uint8"".autotmp_0338Otype.error"".errotype.error"".~r1 type.error"".ntype.int"".d type.*"".decoder@kTj"!2m.C7#	  YX/(zTgclocals170309d2da858695ebefc5e7e0d9c320Tgclocals2c837ca001512a37037efd3161e20199`prebuilts/go/darwin-x86/src/image/jpeg/reader.go("".(*decoder).decodeAAeH%HD$H;A$HH$H$1H$H$ 1H$(H$0H$H$H$H$H.H$=HnHHxHp3HaHHH4$H$HD$H$HT$H$HL$HD$ HL$(HL$pHD$hHt/1H$H$ H$(H$0HH$Hp3H,$H$Hp3Hp3HH,$H$Hmq3
H$H
Hp3H
H$HHH$H$HD$H$HT$H$HL$H$HL$ HD$(HD$`HL$XHt/1H$H$ H$(H$0HHp3H,$H$Hp3Hp3H,$H$Hp3HH,$H$HDq3Dp3H$\$\$?H\$H$H\$H$H$Hp3HH,$H$Ht_l$?@q3H$H$HL$`HD$XH1H$H$ H$(H$0H2Hp3HH,$H$Hq3H@<ubH$H$\$HHT$HL$HL$`HT$XHt1H$H$ H$(H$0H<H$H$H$HH$HHH1H9HHD$P1H9t^H$H$HH$Ht;HHH$ H\$PH$1H$(H$0HHH$HH\$HH\$H$H\$H\$PcH$H$PH$HHP1H9EH$H$XH$HHXHtjH$H|$Ht$Hl$HT$ H$H$H$H$ H$H$(H$H$0HHD$HH$H$HD$HHx%1<toH$H$Hl$HT$HL$HD$ Hl$xH$H$H$ H$H$(H$H$0HHHD$P1H9tfH$H$H$PH$Ht;HPH$ H\$PH$1H$(H$0HHH$HH\$HH\$H\$H\$PcH$H$HD$HHt8H$H$HD$HHuHyHH,$H$HL$HHLAXRHHH,$H$HL$HHteLIAXG<tDHH0H,$H$Hl$HHtLI0AXBE11SHH$H$1H$H$ HH$HH\$HH\$H$H\$HD$ H\$(H$(H\$0H$0H$D$><r<LH$HHp3HH$HHH$H$HD$H$HT$H$HL$HL$ HD$(HD$`HL$XHt/1H$H$ H$(H$0HH$Hp3H,$H$Hp3HH,$$t$>H$Hp3Hq3HHHH\$@HHH$H$1H$H$ HH$HH\$HH\$H$H\$HD$ H\$(H$(H\$0H$0H@@S@+H$H$H$HDD$>A@@H$H\$@H\$HD$HL$HD$XHL$`$tpH$H$H$HD$XH$Ht41H$H$ H$(H\$`H$0HHD$XH1H$H$ H$(H\$`H$0HEu@@r(@w"H$HT$HD$HL$HL$`v@t@smHH$H$HH$HH\$HH\$H$H\$HD$ HD$(H\$0H\$`HH$H$HH$HH\$HH\$H$H\$HD$ HD$(H\$0H\$`@@@t"H$HT$HD$HL$HL$`TH$HT$HD$HL$HL$`2@@uY@t11H$H$ 1H$(H$0HH$HT$HD$HL$HL$`@@t"H$HT$HD$HL$HL$`H$HT$HD$HL$HL$`u@uJ@t"H$HT$HD$HL$HL$`GH$HT$HD$HL$HL$`%@u"H$HT$HD$HL$HL$`@OH$HT$HD$HL$HL$`.e^GHH$H$1H$H$ HH$HH\$HH\$H$H\$HD$ H\$(H$(H\$0H$0HPLFL$Hl$H$U
   1563 X
   1564 *runtime.racefuncenter
   1565 "runtime.racewrite6runtime.writeBarrierEnabled
   1566 ,"".(*decoder).readFull
   1567 (runtime.racefuncexit
   1568  runtime.raceread
   1569  runtime.raceread
   1570 ,"".(*decoder).readFull	
   1571 (runtime.racefuncexit	
   1572  runtime.raceread
   1573 
   1574 "runtime.racewrite
   1575 
   1576  runtime.raceread
   1578 ,"".(*decoder).readByte
   1580 "runtime.racewrite
   1581 (runtime.racefuncexit
   1582  runtime.raceread
   1583 ,"".(*decoder).readByte
   1584 (runtime.racefuncexit
   1585  runtime.raceread>go.itab.*image.Gray.image.Image
   1586  runtime.raceread
   1587 (runtime.racefuncexit type.*image.Gray type.image.Image>go.itab.*image.Gray.image.Image
   1588  runtime.typ2Itab
   1589  runtime.raceread
   1590  runtime.raceread
   1591 0"".(*decoder).applyBlack
   1592 (runtime.racefuncexit
   1593  runtime.raceread
   1594 4"".(*decoder).convertToRGB
   1595 (runtime.racefuncexit@go.itab.*image.YCbCr.image.Image
   1596  runtime.raceread
   1597 (runtime.racefuncexit"type.*image.YCbCr type.image.Image@go.itab.*image.YCbCr.image.Image
   1598  runtime.typ2Itab
   1599  runtime.raceread
   1600  runtime.raceread
   1601  runtime.raceread 
   1602  runtime.raceread!
   1603  runtime.raceread"<go.string."missing SOS marker"#&type."".FormatError#type.error#8go.itab."".FormatError.error$
   1604 runtime.convT2I$
   1605 (runtime.racefuncexit&
   1606 ,"".(*decoder).readFull'
   1607 (runtime.racefuncexit(
   1608  runtime.raceread(
   1609  runtime.raceread*@go.string."short segment length"*&type."".FormatError+type.error+8go.itab."".FormatError.error+
   1610 runtime.convT2I,
   1611 (runtime.racefuncexit-
   1612 "runtime.racewrite-
   1613 0"".(*decoder).processSOF.
   1614  runtime.raceread0
   1615 (runtime.racefuncexit1
   1616 (runtime.racefuncexit2
   1617 ("".(*decoder).ignore24go.string."unknown marker"3&type."".FormatError3type.error38go.itab."".FormatError.error3
   1618 runtime.convT2I44go.string."unknown marker"40type."".UnsupportedError4type.error5Bgo.itab."".UnsupportedError.error5
   1619 runtime.convT2I6
   1620 ("".(*decoder).ignore7
   1621 0"".(*decoder).processDHT8
   1622 (runtime.racefuncexit8
   1623 0"".(*decoder).processSOS9
   1624 ("".(*decoder).ignore:
   1625 0"".(*decoder).processDQT:
   1626 ("".(*decoder).ignore;
   1627 0"".(*decoder).processDRI;
   1628 >"".(*decoder).processApp0Marker<
   1629 @"".(*decoder).processApp14Marker=<go.string."missing SOI marker">&type."".FormatError>type.error>8go.itab."".FormatError.error?
   1630 runtime.convT2I?
   1631 (runtime.racefuncexit@
   1632 .runtime.writebarrierptr@
   1633 0runtime.morestack_noctxt^"".autotmp_0380type.*uint8"".autotmp_0378type.*uint8"".autotmp_0377type.uint8"".autotmp_0376&type."".FormatError"".autotmp_0375type.error"".autotmp_0374 type.image.Image"".autotmp_0373type.error"".autotmp_0372 type.image.Image"".autotmp_0371type.error"".autotmp_0370 type.image.Image"".autotmp_0369type.error"".autotmp_0368 type.image.Image"".autotmp_03670type."".UnsupportedError"".autotmp_0366&type."".FormatError"".autotmp_0365type.error"".autotmp_0364type.error"".autotmp_0363type.error"".autotmp_0362type.error"".autotmp_0361type.error"".autotmp_0360type.error"".autotmp_0359type.error"".autotmp_0358type.error"".autotmp_0357type.error"".autotmp_0356type.error"".autotmp_0355type.error"".autotmp_0354&type."".FormatError"".autotmp_0353type.error"".autotmp_0352type.[]uint8"".autotmp_0351type.error"".autotmp_0350type.uint8"".autotmp_0349type.error"".autotmp_0348type.uint8"".autotmp_0347type.error"".autotmp_0346type.[]uint8"".autotmp_0345o&type."".FormatError"".autotmp_0344Otype.error"".autotmp_0343/type.[]uint8"".d type.*"".decoder"".ntype.int"".markertype.uint8"".errtype.error"".errtype.error"".~r3`type.error"".~r2@ type.image.Image"".configOnly0type.bool"".rtype.io.Reader"".d type.*"".decodertBO T=u"	
   1638 o"2*Lv"QR/
   1642 ("kl=`K50];bhCd V"n
   1644 8'F'L'O
   1645 Dh
   1647 hS
   1648 
   1650 D?@U
   1651 &$(;
   1652 834%"
   1653 _75	+ e&)HA46V4A4 A 
   1655 7qO~ym<u
   1658 6&Tgclocalsc1e726dcfdf71b0451dc4f89c8fb06b4Tgclocals7b4346e7aa633ba59d4752ab7ef8969c`prebuilts/go/darwin-x86/src/image/jpeg/reader.go0"".(*decoder).applyBlackTTeH%H$hH;AHH$H$1H$(H$01H$8H$@H$ H$H$H$ HHH$@H$HG1H$(H$0HH$HH\$HH\$H$@H\$HD$ H\$(H$8H\$0H$@HH$H$H$ HH$H$PH$ HHP1H$H$H$H$H$H,$H$`HD$ H$HHs`HShHKpHkxH$H$H$H$H$H$H$H$L$H$H$H$H$PH$`HH$XL$HL)L$L$H$H$H$H$H$ H$H)1H$hH$pH$xHHL$pHHHHH$HD$HD$HT$HL$ HD$(H$H$hH$H$pH$H$x1H$H$H$H$H$H$H$H$H$H$8H$H$8H$hH(H$pHhH$xHhH$H$H$8Hl$pHHhH$H$ HD$ H$8H$Hh H$Hh(H$Hh0H$Hh8H$ H$ H$H$PH$ H$H$H\$H$H\$H$H\$H$H\$ H$ HHPHl$(H$H|$0HHHKHOH$ H$1H$HD$XH9kHH$H$HH$H$HD$hH9H4$H$ HHCHkH$H$H$H$H9H)H$H$ H$H$XH$ H$H$pH$ H$HD$XHpH)HH$LD$hI)LHHXH`HhH$H$H$H9/HH$H$ L$LL$hH$ H$HT$XH)HLpIL$LM)LHHXH`LhH9HHH)HH{HHFLFL$H$H$I9HJ,]LHHHH$HH$HD$hH9
H4$H$H$ HVH$HD$XHHH$HD$XH9HH$HD$H$0H$H$ H$H$ HH$0HfH\$Hl$H-H,$H$0H$H$H$ H$H$H$0HL$ IhHhH$H$ HD$ H$ H$H$ HD$ H$0H$ HH^ HHh HHH$0H1H9t7H$0H$0H$(1H$8H$@HHH$HH\$HH\$HD$nYEy~@oH$H$PH$ HuHP1H$H$H$H$H$H,$H$`HD$ H$HH{`HshHSpHCxH$H$H$H$H$H$H$H$H$0H$@HH$8H$(H)H$hH$H$pH$xH$H$H$H$H)1H$PH$XH$`HHL$xHHHHH$HD$HD$HT$HL$ HD$(H$H$PH$H$XH$H$`HH$HD$H$0H$H$0H$XHkH$`HkH$P=g	H+H$0H$H$H$0Hl$xHHhH$H$ HD$ H$0H$hHh H$pHh(H$xHh0H$Hh8H$H$1H$ H$H$PH$ HPH,$H$ HHPH$HMHHMHKHMHKH$H$PH$ HPH,$H$HH$ H$HLPIhHHkH$H$PH$ HPH,$H$H$ HHPHHkH$8HMHHMHKHMHKH$H$PH$ HPH,$H$PH$ H$H H0LPIhPHkH$H$PH$ HPH,$H$0H$ HHPHHk0H$XHMHHMHKHMHKH$H$PH$ HPH,$H$PH$ H$H@HLLPIhPHkH$H$XH$ HHXH$xHHMHKHMHKHMH$H$pL$H$L$ H`IIpHkH$H$1H$H$HH$H$H9H$(H$HD$ H$(H)H;HsHSHkH$H$H$H$H$H$H$H$H$H$ HHH$HHkHH,$H$ HH,$L$H$ L$HVLLI;MkMILI)H9HHHHkHH,$H$H$ HH,$H$H$ L$L$HLLIMkMIXLIiH9@H$1H$H9yH$HHD$PH)H$@@|$OtHH?H)HHH$HH$H$HH$HH$H9H$HHD$`H)H$@tHH?H)HHH$L$H$HHCHkH$H$H$H$H9TH)H$H$H$HH$HH$H$H$H$H$H$H9HH$|$OL$H$H$L$IL$LH$H$H$H9HHH)HIYI
   1675 IBMBL$H$H$H9&H,1]HD$`HHHH$H$H9BL$H$|$OH$L$IJH$HD$PHHH$H9H$(H$H HH$H$H9L$0H1H9t7H$0H$0H$(1H$8H$@HHH$HH\$HH\$HD$A]H{AJ7S;pH$Hl$5i
   1684 ^
   1685 *runtime.racefuncenter
   1686  runtime.racereadgo.string."unknown color model: 4-component JPEG doesn't have Adobe APP14 metadata"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
   1687 runtime.convT2I
   1688 (runtime.racefuncexit
   1689  runtime.raceread
   1690  runtime.raceread
   1691 *runtime.racereadrangetype.[]uint8
   1694 "runtime.makeslice
   1695 "runtime.racewrite
   1696 "runtime.racewrite
   1697 ,runtime.racewriterange
   1698  runtime.raceread
   1699 Dimage/internal/imageutil.DrawYCbCr
   1700  runtime.raceread
   1701 "runtime.racewrite
   1702  runtime.raceread
   1703  runtime.raceread
   1704  runtime.raceread
   1705  runtime.racereadtype.image.CMYK
   1706 "runtime.newobject
   1707 "runtime.racewrite
   1708  runtime.racereadtype.[]uint8
   1709 (runtime.typedmemmove
   1710 "runtime.racewrite
   1711  runtime.raceread 
   1712 ,runtime.racewriterange!
   1713 *runtime.racereadrange"
   1714  runtime.duffcopy">go.itab.*image.CMYK.image.Image#
   1715 (runtime.racefuncexit# type.*image.CMYK# type.image.Image#>go.itab.*image.CMYK.image.Image#
   1716  runtime.typ2Itab$
   1717 $runtime.panicindex$
   1718 $runtime.panicindex%
   1719 $runtime.panicindex%
   1720 $runtime.panicindex%
   1721  runtime.raceread'
   1722 *runtime.racereadrange+type.[]uint8+
   1723 "runtime.makeslice,type.image.CMYK,
   1724 "runtime.newobject-
   1725 "runtime.racewrite-6runtime.writeBarrierEnabled.
   1726 "runtime.racewrite/
   1727 ,runtime.racewriterange0
   1728  runtime.duffzero0
   1729  runtime.raceread1
   1730  runtime.raceread2
   1731  runtime.raceread2
   1732  runtime.raceread3
   1733  runtime.raceread4
   1734  runtime.raceread5
   1735  runtime.raceread5
   1736  runtime.raceread6
   1737  runtime.raceread7
   1738  runtime.raceread8
   1739  runtime.raceread9
   1740  runtime.raceread:
   1741  runtime.raceread;
   1742  runtime.raceread<
   1743  runtime.duffcopy=
   1744 *runtime.racereadrange?
   1745  runtime.raceread@
   1746  runtime.racereadB
   1747  runtime.racereadB
   1748  runtime.racereadG
   1749  runtime.racereadH
   1750 "runtime.racewriteI
   1751  runtime.racereadM
   1752  runtime.racereadO>go.itab.*image.CMYK.image.ImageP
   1753 (runtime.racefuncexitP type.*image.CMYKP type.image.ImageP>go.itab.*image.CMYK.image.ImageP
   1754  runtime.typ2ItabQ
   1755 $runtime.panicindexQ
   1756 $runtime.panicindexQ
   1757 $runtime.panicindexQ
   1758 $runtime.panicindexQ
   1759 $runtime.panicindexQ
   1760 $runtime.panicindexR
   1761 $runtime.panicindexR
   1762 $runtime.panicindexS
   1763 .runtime.writebarrierptrT
   1764 0runtime.morestack_noctxtP"".autotmp_0427type.*uint8"".autotmp_0426type.int"".autotmp_0425type.int"".autotmp_0424type.int"".autotmp_0423type.int"".autotmp_0421type.int"".autotmp_0419Ntype.struct { src []uint8; stride int }"".autotmp_0418Ptype.*struct { src []uint8; stride int }"".autotmp_0417type.int"".autotmp_0416type.int"".autotmp_0415 type.*image.CMYK"".autotmp_0414 type.*image.CMYK"".autotmp_0413type.int"".autotmp_0412type.int"".autotmp_0411type.int"".autotmp_0410type.int"".autotmp_0409type.int"".autotmp_0407 type.*image.CMYK"".autotmp_0406type.int"".autotmp_0405type.int"".autotmp_0404type.int"".autotmp_0403type.int"".autotmp_0402type.int"".autotmp_0401type.int"".autotmp_0400type.int"".autotmp_0399type.image.RGBA"".autotmp_0398 type.*image.RGBA"".autotmp_0397 type.*image.RGBA"".autotmp_0396type.int"".autotmp_0395
type.int"".autotmp_0394type.int"".autotmp_0393type.int"".autotmp_0392
type.int"".autotmp_0391 type.*image.CMYK"".autotmp_0390type.int"".autotmp_0389type.int"".autotmp_0388Ttype.[4]struct { src []uint8; stride int }"".autotmp_0387type.[]uint8"".autotmp_0386 type.*image.CMYK"".autotmp_0385type.[]uint8"".autotmp_03840type."".UnsupportedErrorimage.r2	(type.image.Rectangleimage.r2(type.image.Rectangleimage.buf5type.[]uint8image.w3type.intimage.r2
   1768 (type.image.Rectangle"".~r0
(type.image.Rectangleimage.p2"type.*image.YCbCrimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.buf5type.[]uint8image.w3type.intimage.r2
   1773 (type.image.Rectangle"".~r0(type.image.Rectangleimage.p2"type.*image.YCbCr
   1776 "".sxtype.int"".xtype.int"".i
type.int
   1778 "".sytype.int"".ytype.int"".iBase
type.int"".subsampletype.bool"".translationNtype.struct { src []uint8; stride int }"".ttype.int"".translationsTtype.[4]struct { src []uint8; stride int }"".img type.*image.CMYK"".bounds	(type.image.Rectangle"".xtype.int"".i
type.int"".ytype.int"".iBase
type.int"".img type.*image.RGBA"".bounds(type.image.Rectangle"".~r10type.error"".~r0 type.image.Image"".d type.*"".decoder8"*
   1786 W;3
   1787  5.C&O8*34-*(2	(	K0 @{|7$1.900K
ZON0	=Tgclocals0fee961e2498a558a6df11b4650b5c09Tgclocals3637fd6ae715497a830f842b1624ae1b`prebuilts/go/darwin-x86/src/image/jpeg/reader.go&"".(*decoder).isRGBeH%H;aHH\$H$H\$H$H$HD$HhtD$HH$H$HD$H&t;H$H$HD$HuD$HHH,$H$HL$HLAXRHHH,$H$HL$HtlLIAXG<tKHH0H,$H$Hl$Ht"LI0AXBD$HED$1L=
   1793 B
   1794 *runtime.racefuncentern
   1795  runtime.raceread
   1796 (runtime.racefuncexit
   1797  runtime.raceread
   1798  runtime.raceread
   1799 (runtime.racefuncexit
   1800  runtime.raceread
   1801  runtime.raceread
   1802  runtime.raceread
   1803 (runtime.racefuncexit
   1804 0runtime.morestack_noctxt "".~r0type.bool"".d type.*"".decoder$MfG`he1dcXZYZUVU VU#VUVU	 Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/reader.go4"".(*decoder).convertToRGB54eH%H$H;A
HH$H$1H$H$1H$H$H$HH,$H$HHH,$H$HLILII)H_HHH$H$H$PH$H(HP1H$H$H$H$H$@H,$H$`HD$ H$@HLC`H{hHKpHCxL$H$H$H$L$H$ H$(H$0H$H$HH$L$L)L$L$H$H$H$H$H$H$H)1H$`H$hH$pHHL$`HHHHH$HD$HD$HT$HL$ HD$(H$xH$`H$H$hH$H$pHH$HD$H$XH$H$XH$hHkH$pHkH$`=
   1815 H+H$XH$H$H$XHl$`HHhH$H$ HD$ H$XH$Hj H$Hj(H$Hj0H$Hj8H$ H$0H9#H$PH$H\$XHD$HHD$8H$8H$H$ H$8HX Hl$XH)H$H$H$ H$H$8H$H$H$8HX(Hl$8H)HHhHH$HHH\$hH$H$H$PH$HHPH$H\$PH\$HH\$0H$HH,$H$`H$H$HH$H$HH$HH$H$`H$HHXhHl$0H)HHhHHHh`LD$PI)LH\$@H$H$H$PH$HHPH,$H$H\$H\$HH\$H$PH\$H$H$(H$H)1H\$pHl$pH9HHD$xHl$hHHHH$H$H$PHHCHkH$H$xH$H$H9H)H$H$H$H$PH$HPH,$HD$@Hl$xH$HHPHUHMH]H$H$xH$H9}HH$H$PHt$xHT$@H$HHBHPH)HMHEH]H9
HHHHGLGL$H$xL$H$I9J,]Hl$hHHHHH$H<$H$PHHCHkH$H$xH$H$H9MH)H$H$H$H$PH$HPH,$H$HD$xH$HHHHH$HHH$HPHUHM H](H$H$xH$H9HH$H$PHt$xL$HIUHIHL$H$LHH&HPH
HMHE H](H9HHHHGLGL$H$xL$H$I9J,]Hl$hHHHHH$H<$H$PHHCHkH$H$xH$H$H90H)H$H$H$H$PH$HPH,$H$0HD$xH$HHHHH$HHH$HPHU0HM8H]@H$H$xH$H9rHH$H$PHt$xL$HI8HIHL$H$LHH	HPHHM0HE8H]@H9HHHHGLGL$H$xL$H$I9J,]Hl$hHHHHH$H<$H$PHHCHkH$H$xH$H$H9H)H$H$PHH
   1824 HBHjH$H$xH$H$H9H)HD$xHHl$pH9HD$HHH$0H9H$XH1H9t7H$XH$H$1H$H$HHH$HH\$HH\$HD$=EHHHH2 EHHHHETH$Hl$2HH$h|
   1840 ^
   1841 *runtime.racefuncenter
   1842  runtime.raceread
   1843  runtime.raceread
   1844  runtime.raceread
   1845 *runtime.racereadrangetype.[]uint8	
   1846 "runtime.makeslice
   1847 type.image.RGBA
   1848 
   1849 "runtime.newobject
   1850 
   1851 "runtime.racewrite6runtime.writeBarrierEnabled
   1854 "runtime.racewrite
   1856 ,runtime.racewriterange
   1857  runtime.raceread
   1858  runtime.raceread
   1859  runtime.raceread
   1860  runtime.raceread
   1861  runtime.raceread
   1862  runtime.raceread
   1863  runtime.raceread
   1864  runtime.raceread
   1865 ,image.(*YCbCr).COffset
   1866  runtime.raceread
   1867 "runtime.racewrite
   1868  runtime.raceread
   1869  runtime.raceread
   1870  runtime.raceread
   1871  runtime.raceread
   1872 "runtime.racewrite
   1873  runtime.raceread
   1874  runtime.raceread 
   1875  runtime.raceread#
   1876  runtime.raceread%
   1877 "runtime.racewrite%
   1878  runtime.raceread%
   1879  runtime.raceread'
   1880  runtime.raceread+
   1881  runtime.raceread,
   1882 "runtime.racewrite.>go.itab.*image.RGBA.image.Image/
   1883 (runtime.racefuncexit/ type.*image.RGBA/ type.image.Image0>go.itab.*image.RGBA.image.Image0
   1884  runtime.typ2Itab0
   1885 $runtime.panicindex0
   1886 $runtime.panicindex0
   1887 $runtime.panicindex0
   1888 $runtime.panicindex1
   1889 $runtime.panicindex1
   1890 $runtime.panicindex1
   1891 $runtime.panicindex2
   1892 $runtime.panicindex2
   1893 $runtime.panicindex2
   1894 $runtime.panicindex2
   1895 $runtime.panicindex3
   1896 $runtime.panicindex3
   1897 $runtime.panicindex3
   1898 $runtime.panicindex4
   1899 .runtime.writebarrierptr4
   1900 0runtime.morestack_noctxtPX"".autotmp_0462type.int"".autotmp_0461type.int"".autotmp_0460type.int"".autotmp_0459type.int"".autotmp_0458type.int"".autotmp_0457type.int"".autotmp_0456type.int"".autotmp_0455type.int"".autotmp_0454o type.*image.RGBA"".autotmp_0453 type.*image.RGBA"".autotmp_0452type.int"".autotmp_0451type.int"".autotmp_0450type.int"".autotmp_0449type.int"".autotmp_0447 type.*image.RGBA"".autotmp_0446type.int"".autotmp_0445type.int"".autotmp_0444type.int"".autotmp_0443/type.[]uint8image.y4type.intimage.x3type.intimage.p2"type.*image.YCbCrimage.y4type.intimage.x3type.intimage.p2 type.*image.RGBAimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.buf5_type.[]uint8image.w3type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.p2"type.*image.YCbCr"".iMaxtype.int"".itype.int
   1902 "".cotype.int
   1903 "".yotype.int
   1904 "".potype.int"".ytype.int"".img type.*image.RGBA"".bounds(type.image.Rectangle"".cScaletype.int"".~r10type.error"".~r0 type.image.Image"".d type.*"".decoder"Wug(@7HH2J.ONKx
0:Tgclocals38bc8d8dd5342ead4ac28dea2eabd4d9Tgclocals8058790f0c749ea9dfcd7ea00bfde43f`prebuilts/go/darwin-x86/src/image/jpeg/reader.go"".DecodeeH%H;aHhH\$hH$1H$H$1H$H$HH$HD$HD$@H$HD$3H\$@H$H\$pH\$H\$xH\$D$Hl$ HT$(HL$0HD$8Hl$XH$HT$`H$HL$HH$HD$PH$Hh
   1914 B
   1915 *runtime.racefuncentertype."".decoder
   1916 "runtime.newobject
   1917 ,runtime.racewriterange
   1918 ("".(*decoder).decode
   1919 (runtime.racefuncexit
   1920 0runtime.morestack_noctxt`"".autotmp_0486?type.error"".autotmp_0485 type.image.Image
   1922 "".&dO type.*"".decoder"".~r2@type.error"".~r1  type.image.Image"".rtype.io.Reader$,y P'MTgclocals1e95b17d442eccd2f5e7013de836a738Tgclocals8976d98ccb4fa7cb58d19cb1e865dee3`prebuilts/go/darwin-x86/src/image/jpeg/reader.go"".DecodeConfigeH%HD$H;AHH$H$1H$H$H$H$1H$H$HH$HD$HD$HH$HD$3H\$HH$H$H\$H$H\$D$HD$0H|$8H|$XHD$PHt_1H$H$H$H$H$H$H$H$H$H$HH\$HH$H$H\$HHH1H$H$H$H$HH$HH$HH$H\$HH$H$8HD$HH8H$H$H$@Hl$HH@H$H$H$H$H$H$H$1H$H$HHHH$HH\$`HH\$hHD$HHD$@H$H$HD$@HK1<t(HH$HH\$`HH\$h1H$H$H\$`H$H\$hH$H\$HH$H$8HD$HH8H$H$H$@Hl$HH@H$H$H$H$H$H$H$1H$H$HH$H$HD$@Ht8H$H$HD$@HuHHH,$H$HL$@HLAXRHHH,$H$HL$@HteLIAXG<tDHH0H,$H$Hl$@HtLI0AXBE11SH1H$H$H$H$HH$HH$HH$H\$HH$H$8HD$HH8H$H$H$@Hl$HH@H$H$H$H$H$H$H$1H$H$HHH\$pHD$x1H$H$H$H$H$H$H$H$HH$HH\$HH\$H\$pH\$HD$ H\$(H$H\$0H$HG\
   1928 X
   1929 *runtime.racefuncentertype."".decoder
   1930 "runtime.newobject
   1931 ,runtime.racewriterange
   1932 ("".(*decoder).decode
   1933 (runtime.racefuncexit
   1934  runtime.raceread*image/color.GrayModel
   1935  runtime.raceread*image/color.GrayModel*image/color.GrayModel
   1936  runtime.raceread
   1937  runtime.raceread	
   1938 (runtime.racefuncexit	,image/color.YCbCrModel	
   1939  runtime.raceread	,image/color.YCbCrModel	,image/color.YCbCrModel
   1940 
   1941  runtime.raceread*image/color.RGBAModel
   1944  runtime.raceread*image/color.RGBAModel*image/color.RGBAModel
   1948  runtime.raceread
   1950  runtime.raceread
   1951 (runtime.racefuncexit
   1952  runtime.raceread
   1953  runtime.raceread
   1954  runtime.raceread
   1955  runtime.raceread
   1956  runtime.raceread*image/color.CMYKModel
   1957  runtime.raceread*image/color.CMYKModel*image/color.CMYKModel
   1958  runtime.raceread
   1959  runtime.raceread
   1960 (runtime.racefuncexit<go.string."missing SOF marker"&type."".FormatErrortype.error8go.itab."".FormatError.error
   1961 runtime.convT2I
   1962 (runtime.racefuncexit
   1963 0runtime.morestack_noctxt"".autotmp_0497"type.image.Config"".autotmp_0496"type.image.Config"".autotmp_0495"type.image.Config"".autotmp_0493"type.image.Config"".autotmp_0491?"type.image.Config"".autotmp_0490_&type."".FormatError
   1964 "".&d type.*"".decoder"".d type.*"".decoder
   1965 "".cm,type.image/color.Model"".errtype.error"".~r2`type.error"".~r1 "type.image.Config"".rtype.io.ReaderR
d,GR"
   1971 P*J
   1972 (@(,*J)*
   1974 P*J569:9R+`H"35ZTgclocals2e0eae5f62b611a330b92994e59d0dd0Tgclocals4297f093afcd66d0ca33049a6b775aad`prebuilts/go/darwin-x86/src/image/jpeg/reader.go"".init.1eH%HD$H;AHH$H$H
HH=HH-H1H$H$H$H$H$H$H|$HH$Ht$PH$Hl$XH$HT$`H$H$H$HH$HHH
HH)H}HHH$HT$hHT$HD$HL$xHL$HHD$pHH\$ HT$(HD$0HL$8HHHL$xH9H\$pHHT$hHHD$@Hk0HH$HD$0H\$hHl$@Hk0HH$H\$Hl$H-H,$HH$H\$pHH\$xHH\$h=uHHH-H,$H\$6
   1979 X
   1980 *runtime.racefuncenterf"".Decodeft$"".DecodeConfigf go.string."jpeg"(go.string."\xff\xd8"image.formats
   1981  runtime.racereadimage.formatsimage.formats image.formats&type.[]image.format
   1982 "runtime.growslice
   1983 ,runtime.racewriterange"type.image.format
   1984 (runtime.typedmemmoveimage.formats
   1985 "runtime.racewriteimage.formats image.formats6runtime.writeBarrierEnabledimage.formats
   1986 (runtime.racefuncexitimage.formats
   1987 .runtime.writebarrierptr
   1988 $runtime.panicslice
   1989 0runtime.morestack_noctxt
   1990 "".autotmp_0503type.int"".autotmp_0502&type.[]image.format"".autotmp_0501_"type.image.formatimage.magic2type.stringimage.name1type.string(
   1992 +3B5Tgclocalsf6bd6b3389b872033d462029172c8612Tgclocalsd288a648545c6dd73287fed249acfcae`prebuilts/go/darwin-x86/src/image/jpeg/reader.go*"".(*decoder).makeImg,,eH%H$`H;A
   1994 H H$ H$H$(H$H$H$(H
   1995 HHH$0H$8HH111H9~	HHHH9~	HHH1H$H$H$H$H$HHH$PHH$XHH$`H$H$HH$H$H)HH$(H$H$0H$8H$H$@HH$ H$H)H1H$H$H$HHL$8HHHH$HD$HD$HT$HL$ HD$(H$H$H$1H$H$H$H$H$H$H$H$H$H$xH$H$xH$H(H$HhH$HhH$H$H$xHl$8HhH$H$ HD$ H$xH$(Hh H$0Hh(H$8Hh0H$@Hh8H$hH$(H$H$8H$(HvH8Hl$`H$H$@H$(H@H@HL$`111H9~	HHHH9~	HHH1H$HH$PH$XH$`H$hH$Ht$hHt$HT$pHT$HL$xHL$H$HD$ HL$(HD$0H$HH$H$HL$H$HD$H$H\$H$(H$H$HH$(Ht<H$=uHHH LHL$Hl$HH,$H$(HeHHmHl$XHH,$H$H$(H'HHmHl$@HHH,$H$(HLIIHD$XHHHHD$HHHH,$H$HD$@H$(H~LIIXHHWHHHHD$HHH	H!Ht1HT$XH$0HHH$8HHH111H9~	HHHH9~	HHH1H$HH$PH$XH$`H$H<$H$Ht$H$HT$H$HL$HD$ H\$(H$pH$(H$H$8H$(HH8Hl$`H$H$@H$(HTH@HL$`111H9~	HHHH9~	HHH1H$HH$PH$XH$`H$pH$H$Ht$H$HT$H$HL$H$HD$ HL$(HD$0H$HH$H$HL$H$HD$H$H\$H$(H$H$PH$(H@H$=HPH$(H$H$H$(HHHHHHH,$H$H$(HHHHHmHl$`HHHH,$H$(HTHHHH]HD$`H\$PH$0HHH$8HHHHHH$HD$HD$H\$H$H\$ H$H\$(H$H$(H$H$XH$(HH$H`H$HhH$=u[HXH$(H$H$pH$(Ht)Hl$PL$0HIHpH LXL$Hl$Xd!LPL$Hl$oHuH|H!uHjHH$H$HH$H$H\$HD$H\$HH$HKHL$H"uHHAuHHBuHHHEzHHD$H=UZ
   2004 ^
   2005 *runtime.racefuncenter
   2006  runtime.racereadtype.[]uint8
   2007 "runtime.makeslice
   2008 "runtime.racewrite	
   2009 "runtime.racewrite
   2010 
   2011 ,runtime.racewriterange
   2013  runtime.raceread
   2015  runtime.raceread
   2016 ,image.(*Gray).SubImage type.*image.Gray
   2017 "runtime.assertI2T
   2018 "runtime.racewrite6runtime.writeBarrierEnabled
   2019 (runtime.racefuncexit
   2020 .runtime.writebarrierptr
   2021  runtime.raceread
   2022  runtime.raceread
   2023  runtime.raceread
   2024  runtime.raceread
   2025 image.NewYCbCr
   2026  runtime.raceread
   2027  runtime.raceread
   2028 .image.(*YCbCr).SubImage"type.*image.YCbCr
   2029 "runtime.assertI2T
   2030 "runtime.racewrite6runtime.writeBarrierEnabled
   2031  runtime.raceread 
   2032  runtime.raceread!
   2033  runtime.raceread"type.[]uint8#
   2034 "runtime.makeslice$
   2035 "runtime.racewrite%6runtime.writeBarrierEnabled%
   2036 "runtime.racewrite&
   2037 (runtime.racefuncexit'
   2038 .runtime.writebarrierptr'
   2039 .runtime.writebarrierptr(.go.string."unreachable")type.string)
   2040 runtime.convT2E*
   2041 runtime.gopanic,
   2042 0runtime.morestack_noctxt0r"".autotmp_0544type.int"".autotmp_0543type.int"".autotmp_0542type.int"".autotmp_0541(type.image.Rectangle"".autotmp_0540type.int"".autotmp_0539type.int"".autotmp_0538type.int"".autotmp_0537type.int"".autotmp_0536(type.image.Rectangle"".autotmp_0535type.int"".autotmp_0534type.int"".autotmp_0533type.int"".autotmp_0532type.int"".autotmp_0531type.int"".autotmp_0530(type.image.Rectangle"".autotmp_0529type.int"".autotmp_0528type.int"".autotmp_0527type.int"".autotmp_0526type.int"".autotmp_0525type.image.Gray"".autotmp_0524 type.*image.Gray"".autotmp_0523 type.*image.Gray"".autotmp_0522type.int"".autotmp_0521type.int"".autotmp_0520type.int"".autotmp_0519type.int"".autotmp_0518type.int"".autotmp_0517(type.image.Rectangle"".autotmp_0516(type.image.Rectangle"".autotmp_0515type.int"".autotmp_0514type.int"".autotmp_0512type.int"".autotmp_0511type.[]uint8"".autotmp_0510"type.*image.YCbCr"".autotmp_0509 type.image.Image"".autotmp_0507type.string"".autotmp_0506 type.*image.Gray"".autotmp_0505 type.image.Image"".autotmp_0504type.[]uint8"".~r0(type.image.Rectangle"".~r0(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix5type.[]uint8image.w3type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangle
   2047 "".h3type.int"".m"type.*image.YCbCr"".hRatiotype.int
   2048 "".v0type.int
   2049 "".h0type.int"".m type.*image.Gray"".myy type.int"".mxxtype.int"".d type.*"".decoder*"
   2052 "DA<>;>=27MT
   2053 <yH]

	
   2057 #Z.9MD$	M`
aTgclocals55efd81f5270628e013a8450ae15bc0aTgclocalsa6eedba5de0cd30378db327c43b9e7c5\prebuilts/go/darwin-x86/src/image/jpeg/scan.go0"".(*decoder).processSOSeH%H$H;A3HH$H$1H$H$H$H$H$H$H3HHHH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HH$Hl2H$H$H$H$H2HHHH9*2HH?HH)HHH2H1HHp3H1HHH$H$Hl$H$Ht$H$HL$HD$ HL$(H$H$HtH$H$HH$Hp3H,$H$H41p3H$H$H$HHH9HH$0H$81HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HH$@HCH$1H$H9HH$HHHp3H$0HlH,$H$H$HHH/Hp3H=/Hl]\$?H$H$H$L$L$L$I/I$Hg/LHHM/HH$H$H$H$1H$xH$0H$pH$8H$0H9H$H$HD$L$L$L$L$8L$I.I8IpAhHAhH$H$hH$H$p$@$@$y$xl$?@8uML$LHLHH$8H$0H9'IHH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HH$@LIl-HkHD1L9H$@MI;-MkL]L$@IH-MkMA(@8HH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HHL9+H$H$8I$LIH,HkHH,$H$HH$H,HkHH,$H$L$H$H+LLI+MkMILIH+MkMIiHH$8HH$H$HHHp3H=O+HlH,$H$H$HHHH+Hp3H*Hl
]H$@IH*MkL]H$@IH*MkL]HH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HHHHp3H=)HlH,$H$H$HHHH)Hp3H)Hl
]HH$@IH{)MkL]H$@IHU)MkL]HH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HHH$H9H$H$H$H(HHH$H
   2070 HH$0H$8 HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HD$DD$H?D$`D$\H$H$H$H'H$HHHp3H=^'HlH,$H$H$HHHH&'Hp3H='Hl]\$DHHHHp3H=&HlH,$H$H$HHHH&Hp3H=&Hl]\$HHHHHp3H=W&HlH,$H$H$HHHH&Hp3H=&Hl]\$`HHHHp3H=%HlH,$H$|$`H$L$DD$HIHHH%Hp3Hm%Hl]H\$\HH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$H9x@oIHH$0H$87HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$H9HH$0H$8#HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HHH,$H$H$H^#HHmH$8HH,$H$H"#HHmH$H$8H$H$H$8H$H$H"H8HHHHHHHH"HHH$H$H$@H$H$HV"H@HHHHHHHH"HHH$H$H$HH$H!HH1H9u\H$H$PH$H!HP1H9u+H$H$H\$H$H\$H$H$H$H$HL!\1H$H9IH$@HH$H!HkH+HHD$AH HkHH,$D$AH$H HH HkHH]HHH` HkHH,$H$H\$AH+ HkHH,$H$H$D$AH$H$HHLDIMkMI)HLDIMkMIiHHHH$HD$HD$H\$H$XH\$ H$`H\$(H$hH$H\$AH&HkHH,$H$HH\$AHHkHH$`H]H$hH]H$X=H]H$HH$H91$L$P$TH$H$HD$L$$LAi$PAi$TAiH$D$>H$11$X$\$`$dH$(H$H$H$H91H$H$H9>1H$H9H$@HH$HYHkH+HID$@H-HkHH,$H$D$@HHDIMkLHmH$HHHkHH,$H$H$D$@HHDIfMkLHmH$HH8HkHH,$H$L$I	IDD$@IMkLmHIp/HHHH$1H$H$HH$H9H$HH$H$L$HHIHIHHH$ H$H$L$HHI@HIHHH$L$H$H$HH\$@HHkHH,$H$H$HH$HH$ H$HH\$@HbHkHHUHMH]H$hHH$XHH$`H9!HHH$HD$H$H$H$HH$HH$ HHH\$@HHkHHuHMH]H$hH$XHH$`H9iHHH$\$`
H$H$H\$H$@H$Hz
HkHkHH[
HPHH9
HiHHl$\$D\$\$H\$L$\ 
l$ H$HL$(HD$0H$H$HtH$H$HH$H$H$Ht\$H?\$\
   2084 1H@HHD$hH@
   2085 HH$HD$hHH@
   2086 HHH$H$8H@{
   2088 H+l$XH$H@X
   2089 HH$HD$hH$H$8H@%
   2090 HH$H
   2091 H@	HlmDD$XA+HH@H$H$1H$@H$HH$PH$H$H$H$Hy	HHH$H$HH$HHH,$H$H$HHHH]H$HH$ HHH$8H$H$HH$HHH,$H$H!HHH$8LELML9LUI)I)ItML$L$L$H$H$HH$HHH,$H$L$IIHHSH$H$@H$H$HH$H$P1HHHH\$xHH$H$HH\$p1HH\$xHH$H@HlED$PHD$pH$HH$0H9HH$H$@H$HH$H$L$H$0H9s=H/l$P@+H$HHJHH	H$H~
D$P@\$P/Arh\$@H$H$PH$HPH,$H$HH$HDHPH]HH$HH$ HHH$0H$H$PH$HPH,$H$HHPH$0LELML9LUI)I)ItML$L$L$H$H$PH$HPH,$H$HL$It@IPHSHH$H$@H$H$HH$H$PA%H$H$PH$HPH,$H$PH$HIHPH]PH$HH$ HHH$0H$H$PH$HPH,$H$H$HHPH$0LE LM(L9LUI)I)ItML$L$L$H$H$PH$HPH,$H$PL$It@IPHSPH$H$@H$H$HH$H$PwA%HH$ H$(HH$HH\$HH\$H$ H\$HD$ H\$(H$H\$0H$HH$H$PH$HPH,$H$PH$HIHPH]PH$HH$ HHH$0H$H$PH$HPH,$H$0H$HHPH$0LE8LM@L9LU0I)I)ItML$L$L$H$H$PH$HPH,$H$PL$It@IPHSPH$H$@H$H$HH$H$P^A%H$H$pH$H	HpH$HH$ HHH$0H$H$XH$HH$0L`LhL9LXI)I)ItM*L$L$L$H$H$pL$It<IpH$H$@H$H$HH$H$P"ADEH$H$HH$HH$ HH$8H\$@HHkHH,$H$H\$@HHkHHMHEH]H$hHH$XH$8H$`H9HHH$HD$L$IttI\$@Hs[HkHH}HEH]H$hHH$XH$8H$`H9sHHH$Ar1D$D\$LH$H$@H$HbHkHkHHCHPH(HiHHl$\$HHT$HL$ H$H$HtH$H$HHH$ H$(HH$HH\$HH\$H$ H\$HD$ H\$(H$H\$0H$HH$H$D$DL$@D$LH$t$LD$H|$ H$L$ItL$H$HH$XAHH;H$XAHH+H$XEIwJlmL$\ [$D$Ll$H9H$H$D$LH$HHfvhH$H$H$HtEHfl$BH$H$H$HtHl$BHfuH$@H$H}HkHkHH^HPHH<HiHH$D$Ll$H9H$H$H\$t$LH$\$HHl$HL$ H$H$HtH$H$HHHHH\$Ll$H9iH$D$D$HT$HL$ D$dH$H$HtH$H$HHl$LHcH@spHH$D$LH$HHcH@s@HH+H$H@s$HDD$dL$\ s
ADE1L$=H$H$H$D$=HH_HEHf<H$\$D$HT$HL$ D$TH$H$HtH$H$HH$H$H$H$HHfl$BH$H$H$Ht|l$TLD$BL	fH$H$H$HtEHfl$BH$H$H$HtHl$BHfM1715H$1mHH1zH$H$H$(HHHHH$ H$(HHHH$H$(HH$(L$H$8L$H$ HItUI8H9L$H$@L$H$HItI@H9qAAHH$XH$ (H$HH$H9mH$HH$L$H$xL$I^IxH-L$H$xL$I"IxH$HHHHHH$H$HH$H9LIHp3HHHL$H$HD$H$HT$H$HL$HL$ HD$(H$H$HtH$H$HH$Hp3H,$H$Hp3\Hp3HH,$H$D$>Hq38#HH\$>uD$>1$L$P$TH$H$HD$H$$Lh$Ph$Th1$X$\$`$dH$H$L$ItyfAH$HH$H$H9H$HH$H$H$H9{1H$H$HAHH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$HGZAB1AAAwH,$H\$H$XNJHH$HH$h,qWcv:AYA$w
   2190 EHH$0H$8HH$HH\$HH\$H$0H\$HD$ H\$(H$H\$0H$H8c
   2193 ^
   2194 *runtime.racefuncenter
   2195  runtime.raceread<go.string."missing SOF marker"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2196 runtime.convT2I
   2197 (runtime.racefuncexit
   2198  runtime.raceread
   2199 ,"".(*decoder).readFull
   2200 (runtime.racefuncexit
   2201  runtime.raceread	zgo.string."SOS length inconsistent with number of components"
   2202 &type."".FormatError
   2203 type.error
   2204 8go.itab."".FormatError.error
   2205 
   2206 runtime.convT2I
   2208 (runtime.racefuncexit
   2210  runtime.raceread
   2211  runtime.raceread
   2212 *runtime.racereadrangeLgo.string."unknown component selector"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2213 runtime.convT2I
   2214 (runtime.racefuncexitNgo.string."repeated component selector"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2215 runtime.convT2I
   2216 (runtime.racefuncexit
   2217  runtime.raceread
   2218  runtime.raceread
   2219  runtime.raceread!0go.string."bad Td value"!&type."".FormatError!type.error!8go.itab."".FormatError.error"
   2220 runtime.convT2I"
   2221 (runtime.racefuncexit#
   2222  runtime.raceread%0go.string."bad Ta value"&&type."".FormatError&type.error&8go.itab."".FormatError.error'
   2223 runtime.convT2I'
   2224 (runtime.racefuncexit(
   2225  runtime.raceread)Xgo.string."total sampling factors too large")&type."".FormatError)type.error*8go.itab."".FormatError.error*
   2226 runtime.convT2I+
   2227 (runtime.racefuncexit+
   2228  runtime.raceread-
   2229  runtime.raceread.
   2230  runtime.raceread0
   2231  runtime.raceread2
   2232  runtime.raceread4Rgo.string."bad spectral selection bounds"4&type."".FormatError4type.error58go.itab."".FormatError.error5
   2233 runtime.convT2I6
   2234 (runtime.racefuncexit6go.string."progressive AC coefficients for more than one component"7&type."".FormatError7type.error78go.itab."".FormatError.error8
   2235 runtime.convT2I8
   2236 (runtime.racefuncexit9^go.string."bad successive approximation values"9&type."".FormatError9type.error98go.itab."".FormatError.error:
   2237 runtime.convT2I:
   2238 (runtime.racefuncexit;
   2239  runtime.raceread<
   2240  runtime.raceread=
   2241  runtime.raceread>
   2242  runtime.raceread@
   2243  runtime.racereadA
   2244  runtime.racereadB
   2245 *"".(*decoder).makeImgB
   2246  runtime.racereadD
   2247  runtime.racereadF
   2248  runtime.racereadG
   2249  runtime.racereadHtype.[]"".blockI
   2250 "runtime.makesliceJ
   2251 "runtime.racewriteK6runtime.writeBarrierEnabledM
   2252 ,runtime.racewriterangeN
   2253  runtime.duffzeroQ
   2254  runtime.racereadS
   2255  runtime.racereadT
   2256  runtime.racereadY
   2257  runtime.racereadZ
   2258  runtime.raceread\
   2259 *runtime.racereadrange_
   2260  runtime.duffcopya
   2261 ("".(*decoder).refineb
   2262 (runtime.racefuncexitc
   2263  runtime.racereadd"".unzigd
   2264  runtime.racereade"".unzigf
   2265  runtime.racereadh
   2266 "".idcth
   2267  runtime.racereadi
   2268  runtime.racereadj
   2269  runtime.racereadk
   2270  runtime.racereadk
   2271  runtime.racereadm
   2272  runtime.racereadn
   2273  runtime.racereadq
   2274 "runtime.racewrites
   2275 $runtime.panicindexs
   2276 $runtime.panicindext
   2277 $runtime.panicindext
   2278 $runtime.panicsliceu
   2279  runtime.racereadu
   2280  runtime.racereadw
   2281  runtime.racereadw
   2282  runtime.raceready
   2283  runtime.raceready
   2284  runtime.raceread{
   2285 $runtime.panicslice{
   2286  runtime.raceread|
   2287  runtime.raceread}
   2288  runtime.raceread}
   2289  runtime.raceread
   2290  runtime.raceread
   2291  runtime.raceread
   2292 $runtime.panicslice>go.string."too many components"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
   2293 runtime.convT2I
   2294 (runtime.racefuncexit
   2295  runtime.raceread
   2296  runtime.raceread
   2297  runtime.raceread
   2298  runtime.raceread
   2299  runtime.raceread
   2300  runtime.raceread
   2301 $runtime.panicslice
   2302  runtime.raceread
   2303  runtime.raceread
   2304  runtime.raceread
   2305 $runtime.panicslice
   2306 $runtime.panicindex
   2307 $runtime.panicindex
   2308 $runtime.panicindex
   2309 $runtime.panicindex
   2310 $runtime.panicindex
   2311 $runtime.panicindex
   2312  runtime.raceread
   2313 ,runtime.racewriterange
   2314  runtime.duffcopy
   2315 $runtime.panicindex
   2316 $runtime.panicindex
   2317 $runtime.panicindex
   2318 $runtime.panicindex
   2319 $runtime.panicindex
   2320 $runtime.panicindex
   2321 $runtime.panicindex
   2322 6"".(*decoder).decodeHuffman
   2323 (runtime.racefuncexitDgo.string."excessive DC component"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error
   2324 runtime.convT2I
   2325 (runtime.racefuncexit
   2326 6"".(*decoder).receiveExtend
   2327 (runtime.racefuncexit
   2328  runtime.raceread
   2329  runtime.raceread
   2330 "runtime.racewrite
   2331 6"".(*decoder).decodeHuffman
   2332 (runtime.racefuncexit
   2333 6"".(*decoder).receiveExtend
   2334 (runtime.racefuncexit"".unzig
   2335  runtime.raceread"".unzig
   2336 $runtime.panicindex
   2337 $runtime.panicindex
   2338 $runtime.panicindex
   2339 "runtime.racewrite
   2340 0"".(*decoder).decodeBits
   2341 (runtime.racefuncexit
   2342  runtime.raceread
   2343 "runtime.racewrite
   2344  runtime.raceread
   2345 "runtime.racewrite
   2346 $runtime.panicindex
   2347 $runtime.panicindex
   2348 $runtime.panicindex
   2349 $runtime.panicindex
   2350 $runtime.panicindex
   2351 $runtime.panicindex
   2352 $runtime.panicindex
   2353 $runtime.panicindex
   2354 $runtime.panicindex
   2355 $runtime.panicindex
   2356 $runtime.panicindex
   2357 $runtime.panicindex
   2358  runtime.duffzero
   2359  runtime.raceread
   2360  runtime.raceread
   2361  runtime.raceread
   2362  runtime.raceread
   2363 ,"".(*decoder).readFull
   2364 (runtime.racefuncexit
   2365  runtime.raceread
   2366  runtime.raceread
   2367 ,runtime.racewriterange
   2368 "runtime.racewrite
   2369 (runtime.racefuncexit4go.string."bad RST marker"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2370 runtime.convT2I
   2371 (runtime.racefuncexit
   2372 $runtime.panicindex
   2373 $runtime.panicindex
   2374 $runtime.panicindex
   2375 $runtime.panicindex
   2376 $runtime.panicindex
   2377 $runtime.panicindex
   2378 $runtime.panicindex
   2379 $runtime.panicindex
   2380 .runtime.writebarrierptr
   2381 $runtime.panicindex
   2382 $runtime.panicindex
   2383 $runtime.panicindex
   2384 $runtime.panicindex
   2385 $runtime.panicindex
   2386 $runtime.panicindex
   2387 $runtime.panicindex
   2388 $runtime.panicindex
   2389 $runtime.panicindex
   2390 $runtime.panicindex
   2391 $runtime.panicindex
   2392 $runtime.panicindex
   2393 $runtime.panicindex
   2394 $runtime.panicindex
   2395 $runtime.panicindex
   2396 $runtime.panicindex
   2397 $runtime.panicindex
   2398 $runtime.panicindex
   2399 $runtime.panicindex
   2400 $runtime.panicindex
   2401 $runtime.panicindex
   2402 $runtime.panicindex
   2403 $runtime.panicindex
   2404 $runtime.panicindex
   2405 $runtime.panicindex
   2406 $runtime.panicindex
   2407 $runtime.panicindex
   2408 $runtime.panicindex
   2409 $runtime.panicindex
   2410 $runtime.panicindex
   2411 $runtime.panicindex
   2412 $runtime.panicindex
   2413 $runtime.panicslice
   2414 $runtime.panicindex
   2415 $runtime.panicindex
   2416 $runtime.panicslice@go.string."SOS has wrong length"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2417 runtime.convT2I
   2418 (runtime.racefuncexit
   2419 0runtime.morestack_noctxt@"".autotmp_0635type."".bits"".autotmp_0634type.int"".autotmp_0633type.int"".autotmp_0632type.int"".autotmp_0631type.int"".autotmp_0630type.int"".autotmp_0629type.int"".autotmp_0628type.int"".autotmp_0627type.int"".autotmp_0626type.int"".autotmp_0625type.uint8"".autotmp_0624type.int"".autotmp_0623type.int"".autotmp_0622type.int"".autotmp_0621	type."".bits"".autotmp_0620type.int"".autotmp_0619type.int"".autotmp_0618"type."".component"".autotmp_0617$type.*"".component"".autotmp_0616
   2420 type.int"".autotmp_0615	type.int"".autotmp_0614type.int"".autotmp_0612type.int"".autotmp_0611type.int"".autotmp_0610type.uint8"".autotmp_0609&type."".FormatError"".autotmp_0608type.error"".autotmp_0607type.[]uint8"".autotmp_0606type.int"".autotmp_0605type.int"".autotmp_0604type.int"".autotmp_0603type.int"".autotmp_0602type.int"".autotmp_0601type.int32"".autotmp_06000type."".UnsupportedError"".autotmp_0599type.[]uint8"".autotmp_0598type.int"".autotmp_0597type.[]uint8"".autotmp_0596type.int"".autotmp_0595type.[]uint8"".autotmp_0594type.int"".autotmp_0593type.[]uint8"".autotmp_0592type.int"".autotmp_0591type.[]uint8"".autotmp_0590type.int"".autotmp_0589type.int"".autotmp_0588type.int32"".autotmp_0587type.int"".autotmp_0586type.int32"".autotmp_0585type.int32"".autotmp_0584type.uint16"".autotmp_0583type.uint16"".autotmp_0582type.error"".autotmp_0580type.error"".autotmp_0579type.int32"".autotmp_0578type.int32"".autotmp_0577type.error"".autotmp_0576type.uint8"".autotmp_0575
type.uint16"".autotmp_0574type.int32"".autotmp_0573type.error"".autotmp_0572type.int32"".autotmp_05710type."".UnsupportedError"".autotmp_0570type.error"".autotmp_0569type.uint8"".autotmp_0568
type.int32"".autotmp_0567type.error"".autotmp_0566type.int"".autotmp_0565type.int"".autotmp_0564type.[]"".block"".autotmp_0563&type."".FormatError"".autotmp_0562&type."".FormatError"".autotmp_0561&type."".FormatError"".autotmp_0560&type."".FormatError"".autotmp_0559type.int"".autotmp_0558&type."".FormatError"".autotmp_0557&type."".FormatError"".autotmp_0556type.int"".autotmp_0555type.int"".autotmp_0554&type."".FormatError"".autotmp_0553&type."".FormatError"".autotmp_0552&type.[]"".component"".autotmp_0551_&type.[]"".component"".autotmp_0550type.int"".autotmp_0549&type."".FormatError"".autotmp_0547/type.[]uint8"".autotmp_0546&type."".FormatError"".autotmp_0545&type."".FormatError"".errtype.error"".c
type.int32"".xtype.int"".yStride
type.int
   2427 "".y8type.int"".ytype.int"".stridetype.int"".dsttype.[]uint8"".zig
type.int"".errtype.error"".bits
type.uint32"".errtype.error
   2437 "".ac
type.int32"".val0
type.uint8"".errtype.error"".huff type.*"".huffman"".errtype.error"".zig
type.int32"".errtype.error"".jtype.int
   2446 "".qttype.*"".block
   2447 "".vitype.int
   2449 "".hi
   2450 type.int"".compIndex
type.uint8"".itype.int
   2453 "".mxtype.int
   2455 "".mytype.int"".blockCount
   2457 type.int
   2458 "".by
   2459 type.int
   2460 "".bx
   2461 type.int
   2462 "".dc	type.[4]int32"".btype."".block"".expectedRST
type.uint8"".mcutype.int"".compIndex
type.uint8"".itype.int"".myytype.int"".mxxtype.int
   2472 "".v0type.int
   2474 "".h0
   2475 type.int
   2476 "".al
type.uint32
   2478 "".ah
type.uint32"".zigEnd
type.int32"".zigStart
type.int32"".comp	"type."".component"".compIndex
   2482 type.int
   2483 "".cs
type.uint8"".i
   2485 type.int"".totalHVtype.int"".scan	ltype.[4]struct { compIndex uint8; td uint8; ta uint8 }"".nComptype.int"".errtype.error"".~r1 type.error"".ntype.int"".d type.*"".decoder"
   2490 g!h
   2491 h"<sr{9 ss&
   2496 
   2497 sIs
   2501 )s)s;FFs& 3rousss
   2502 ``b+3*hW%*gh'4<<3
   2504 
~/
< "	n
	'		sZY			2(	x	s=<4E[PO_<
   2517 	'j 
H*k[;*vCD
   2523 I{&%s	T)$,	s %8)#
s.+ pI0-9v
   2530 	wxu*ui"u*T=jKIC=)Z.! fA.Tgclocalsa5a31874a11f4f0fd8123509002399bdTgclocals7ab8208fb34ecdcf71b0f783afc99fc8\prebuilts/go/darwin-x86/src/image/jpeg/scan.go("".(*decoder).refineeH%HD$H;AHH$H$$H$1H$H$$t]HH$H$HH$H$H\$HD$H\$HH$HKHL$H$\$HD$HT$HT$xHD$pHtH$H$HtAH$H$H$(l$LH$H$l$LD$D	+1H$H$HL$@H$H$D$@H$H
HfD$@$9D$DH$H$H$H\$H$\$HHT$HL$ H$H$HtH$H$HH\$=HH[@vH4$H$D$=H$HGH-Hf<H$H$\$D$HT$HL$ D$HHL$XHT$PHtH$H$HH$H$H$H$HHfl$>H$H$H$H[l$HLD$>L	fH$H$H$H$HHfH$H$H$HHfl$>H$H$H$HHl$>HfH$H$H\$\$@\$$\$D$$\$HD$(HL$0HL$hHD$`HtH$H$H1H$H$HW g1H4$H$H\$\$@\$$\$@\$$\$D$ HT$(HL$0H$H$HtH$H$H$9HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$H\$DHD$@HcH@HH$Hl$@HcH@s{HH+H$H@s_HH$D$@HHcH@s7HH+H$HtH@sHl$D+,u{$\$DH4$H$l$=\$HT$HL$H$H$HtH$H$H\$D\$DHH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HEIh
   2557 X
   2558 *runtime.racefuncenter.go.string."unreachable"type.string
   2559 runtime.convT2E
   2560 runtime.gopanic
   2561 ."".(*decoder).decodeBit
   2562 (runtime.racefuncexit
   2563  runtime.raceread
   2564 "runtime.racewrite
   2565 (runtime.racefuncexit
   2566  runtime.raceread
   2567 6"".(*decoder).decodeHuffman
   2568 (runtime.racefuncexit	
   2569 "runtime.racewrite
   2570 
   2571 0"".(*decoder).decodeBits
   2573 (runtime.racefuncexit
   2575  runtime.raceread
   2577 "runtime.racewrite
   2579  runtime.raceread
   2580  runtime.raceread
   2581 "runtime.racewrite
   2582 :"".(*decoder).refineNonZeroes
   2583 (runtime.racefuncexit
   2584 (runtime.racefuncexit
   2585 :"".(*decoder).refineNonZeroes
   2586 (runtime.racefuncexitBgo.string."too many coefficients"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2587 runtime.convT2I
   2588 (runtime.racefuncexit"".unzig
   2589  runtime.raceread"".unzig
   2590 "runtime.racewrite"".unzig
   2591 $runtime.panicindex
   2592 $runtime.panicindex
   2593 $runtime.panicindex
   2594 $runtime.panicindex
   2595 $runtime.panicindex
   2596 ."".(*decoder).decodeBit
   2597 (runtime.racefuncexitFgo.string."unexpected Huffman code"&type."".FormatErrortype.error8go.itab."".FormatError.error
   2598 runtime.convT2I
   2599 (runtime.racefuncexit
   2600 0runtime.morestack_noctxtp>"".autotmp_0678type.uint8"".autotmp_0677type.error"".autotmp_0676type.uint16"".autotmp_0675type.int32"".autotmp_0674&type."".FormatError"".autotmp_0673type.error"".autotmp_0672type.int32"".autotmp_0671?&type."".FormatError"".autotmp_0670type.error"".autotmp_0669type.bool"".autotmp_0668type.uint16"".autotmp_0667type.error"".autotmp_0665type.error"".autotmp_0663type.int32"".autotmp_0660type.string"".errtype.error"".errtype.error"".errtype.error"".bitstype.uint32"".val0type.uint8"".err_type.error"".ztype.int32"".zigtype.int32"".errtype.error"".~r5Ptype.error"".delta@type.int32"".zigEnd8type.int32"".zigStart0type.int32"".h  type.*"".huffman"".btype.*"".block"".d type.*"".decoderd 	]Axw9@ba
   2610 	
   2611 E/JIo:=cV	9.R s
UV')-65	
   2616 s*)C#`+w%4G=!9p:y(Tgclocalsb0c99e12f6ab47270635b29fe3f297fcTgclocals75294e921b0a789ab72263c0f3f0ab54\prebuilts/go/darwin-x86/src/image/jpeg/scan.go:"".(*decoder).refineNonZeroeseH%H;aH@H\$@H$1H\$pH\$x\$Xl$\9Hl$XHcH@HH$Hl$XHcH@HHH\$PHD$(H@iHH$D$`H\$PHBHl$(H@,Hu:u\$X\$h1H\$pH\$xH@\$`\$X\$X$H\$HH$\$HT$HL$HL$8HT$0HtD$hHT$pHL$xH@tH\$PHl$(H@~HH$HL$(HD$PHVH@EHH@HH$HL$(HD$PHtiH@s\H+l$$H@sEHH$H\$PHt)Hl$(H@sHl$$DD$dD+H@HH$HL$(HD$PHtiH@s\H+l$$H@sEHH$H\$PHt)Hl$(H@sHl$$DD$dD)+C:
   2635 B
   2636 *runtime.racefuncenter"".unzig
   2637  runtime.raceread"".unzig
   2638  runtime.raceread
   2639 (runtime.racefuncexit
   2640 ."".(*decoder).decodeBit
   2641 (runtime.racefuncexit
   2642  runtime.raceread
   2643  runtime.raceread
   2644 "runtime.racewrite
   2645 $runtime.panicindex
   2646 $runtime.panicindex
   2647 $runtime.panicindex
   2648 $runtime.panicindex	
   2649  runtime.raceread
   2650 
   2651 "runtime.racewrite
   2652 
   2653 $runtime.panicindex
   2655 $runtime.panicindex
   2657 $runtime.panicindex
   2659 $runtime.panicindex
   2661 $runtime.panicindex
   2663 $runtime.panicindex
   2665 $runtime.panicindex
   2667 $runtime.panicindex
   2669 $runtime.panicindex
   2671 $runtime.panicindex
   2673 0runtime.morestack_noctxtp"".autotmp_06867type.int32"".autotmp_0685type.int32"".autotmp_0684type.int32"".autotmp_0681type.int32"".errtype.error"".u/type.int"".~r6Ptype.error"".~r5@type.int32"".delta8type.int32
   2677 "".nz0type.int32"".zigEnd(type.int32"".zig type.int32"".btype.*"".block"".d type.*"".decoder$_p.-DN&"Nr!"$r%&$ *6+Tgclocals8cf14f50ac1bf7ae2848fda35f0590ecTgclocalsc55cf99de9cdd8c8202a466952fa1a45\prebuilts/go/darwin-x86/src/image/jpeg/scan.go"".mineH%H;av?HH\$H$HL$HD$H9}HL$ HHD$ H
   2684 
   2685 :
   2686 *runtime.racefuncenterl
   2687 (runtime.racefuncexit
   2688 (runtime.racefuncexit
   2689 0runtime.morestack_noctxt0"".~r2 type.int"".ytype.int"".xtype.int+`""
   2691 DTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".diveH%H;avmHH\$H$D$L$|&tD$HD$t\$Hz
   2694 
   2695 :
   2696 *runtime.racefuncenter
   2697 (runtime.racefuncexit
   2698 (runtime.racefuncexit
   2699 0runtime.morestack_noctxt "".~r2type.int32"".btype.int32"".atype.int328)>2
   2703 tTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go*"".(*huffmanLUT).initeH%HD$H;AHH$H$1Ht$@H$H$H$H$1H$HD$XH$HHL$`Hl$XH9}MHD$hH$Ht$@HL$h)@H9~@HH\$@HHHL$`HHL$`Hl$XH9|HHHH$HD$HD$H\$H$H\$ H$H\$(H$H$H$L$H$IjH$IjH$=II*1T$<HD$H1HHH\$81H$HL$PHHl
]D$78L$H$H$H$H$H$Hl$HH$H9H)H$H$H$H$H$H$Hl$HH$H9.H)+H$HHHKHkH$HT$pHL$xH9HH$L$DL$<H|$HHL$PH$H$H$H$H$H$H9H:+HItsI2IRIjH$Ht$pHT$xH9sGHl$8D	+DT$<HHHD$HD$7HH$HL$PHLAT$<HHHL$Hl$L$8&
   2713 X
   2714 *runtime.racefuncenter
   2715  runtime.racereadtype.[]uint32
   2716 "runtime.makeslice
   2717 "runtime.racewrite6runtime.writeBarrierEnabled
   2718  runtime.raceread
   2719  runtime.raceread
   2720 
   2721 "runtime.racewrite
   2723 $runtime.panicindex
   2725 $runtime.panicindex
   2727 $runtime.panicindex
   2729 $runtime.panicindex
   2731 $runtime.panicindex
   2733 $runtime.panicindex
   2734 (runtime.racefuncexit
   2735 .runtime.writebarrierptr
   2736 0runtime.morestack_noctxt`$"".autotmp_0698type.int"".autotmp_0696type.*uint8"".autotmp_0695type.int"".autotmp_0694type.int"".autotmp_0693type.int"".autotmp_0692type.uint32"".autotmp_0691type.uint8"".autotmp_0690type.int"".autotmp_0688_type.[]uint32"".autotmp_0687/type.[]uint8"".jtype.uint8"".nBitstype.uint32"".itype.int"".ktype.int"".codetype.uint32"".maxValuetype.int"".s&type."".huffmanSpec"".h&type.*"".huffmanLUT-h d	
   2738 .	&(

+^_8Tgclocals1084dc26f0d346afc0dbdc8beafc25c4Tgclocals0b442a376425157193dde894238d0fe6`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".init.2eH%H$HH;A H8H$8H$HH$HD$H5H$1HD$0H$HHL$8Hl$0H9HD$@H$HD$(Ht$@HH|$pHD$8Ht$pH|$HHHHsPHkHH$Ht$HH|$HD$@HL$8H(HHL$8Hl$0H9iH8t
   2745 ^
   2746 *runtime.racefuncenterl""".theHuffmanSpec
   2747 *runtime.racereadrange""".theHuffmanSpec
   2748  runtime.duffcopy
   2749 *runtime.racereadrange
   2750  runtime.duffcopy
   2751  runtime.duffcopy "".theHuffmanLUT
   2752  runtime.duffcopy
   2753 *"".(*huffmanLUT).init
   2754 (runtime.racefuncexit
   2755 $runtime.panicindex
   2756 0runtime.morestack_noctxt"".autotmp_0710&type."".huffmanSpec"".autotmp_0709(type.*"".huffmanSpec"".autotmp_0708type.int"".autotmp_0707type.int"".autotmp_0706,type.[4]"".huffmanSpec"".s&type."".huffmanSpec"#&"/).m
#Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocals79414f19561456371de38e64d2ef7f7a`prebuilts/go/darwin-x86/src/image/jpeg/writer.go&"".(*encoder).flusheH%H;aH8H\$8H$H\$@H$H$HD$@HhHt
   2760 H8H$H\$@HHHkHl$ H,$HL$HY H\$H\$(H\$H\$0H\$@H$H$H\$@Hl$(HkHl$0=uHkH8LCL$Hl$y
   2762 B
   2763 *runtime.racefuncenterh
   2764  runtime.raceread
   2765 (runtime.racefuncexit
   2766  runtime.raceread
   2767 "runtime.racewrite6runtime.writeBarrierEnabled
   2768 (runtime.racefuncexit
   2769 .runtime.writebarrierptr
   2770 0runtime.morestack_noctxtp"".autotmp_0711type.error"".e type.*"".encoderp9opop+(" %5Tgclocals51fa0e13d53d6bad7f86670d3edaeac6Tgclocals2c78d3ad9d760b5f66e2e47be684c787`prebuilts/go/darwin-x86/src/image/jpeg/writer.go&"".(*encoder).writeeH%H;aHXH\$XH$H\$`H$H$HD$`HhHt
   2772 HXH$H\$`HHHkH\$hH\$H\$pH\$H\$xH\$Hl$@H,$HL$8HY(H\$(H\$HH\$0H\$PH\$`H$H$H\$`Hl$HHkHl$P=uHkHXLCL$Hl$[
   2774 B
   2775 *runtime.racefuncenterh
   2776  runtime.raceread
   2777 (runtime.racefuncexit
   2778  runtime.raceread
   2779 "runtime.racewrite6runtime.writeBarrierEnabled
   2780 (runtime.racefuncexit
   2781 .runtime.writebarrierptr
   2782 0runtime.morestack_noctxt@"".autotmp_0713type.error"".ptype.[]uint8"".e type.*"".encoder&9-*" %7Tgclocalsaefd16b155593f6f07980a05b297ad1fTgclocals2c78d3ad9d760b5f66e2e47be684c787`prebuilts/go/darwin-x86/src/image/jpeg/writer.go."".(*encoder).writeByteeH%H;aH@H\$@H$H\$HH$H$HD$HHhHt
   2784 H@H$H\$HHHHk\$P\$Hl$(H,$HL$ HY0H\$H\$0H\$H\$8H\$HH$H$H\$HHl$0HkHl$8=uHkH@LCL$Hl$p
   2786 B
   2787 *runtime.racefuncenterh
   2788  runtime.raceread
   2789 (runtime.racefuncexit
   2790  runtime.raceread
   2791 "runtime.racewrite6runtime.writeBarrierEnabled
   2792 (runtime.racefuncexit
   2793 .runtime.writebarrierptr
   2794 0runtime.morestack_noctxt "".autotmp_0715type.error"".btype.uint8"".e type.*"".encoder"92*" %<Tgclocals32bd5c6dc84e3e86dd35593b3922d3aaTgclocals2c78d3ad9d760b5f66e2e47be684c787`prebuilts/go/darwin-x86/src/image/jpeg/writer.go$"".(*encoder).emiteH%H;a"HH\$H$\$,\$H\$ H$H$4HT$ Z4l$l$( \$,) l$(l$H$H$0HT$ D$,J0l$	L$(D$,rSH$D$D$HT$ \$uH$D$HT$ L$(L$(D$,D$,sH$H$0HD$ l$(h0H$H$4H\$ l$,k4H11
   2796 B
   2797 *runtime.racefuncenterx
   2798  runtime.raceread
   2799  runtime.raceread
   2800 ."".(*encoder).writeByte
   2801 ."".(*encoder).writeByte
   2802 "runtime.racewrite
   2803 "runtime.racewrite
   2804 (runtime.racefuncexit
   2805 0runtime.morestack_noctxt 0"".autotmp_0721type.uint32"".autotmp_0720type.uint32"".autotmp_0719type.uint32"".autotmp_0718type.uint32"".autotmp_0717type.uint32"".b	type.uint8"".nBitstype.uint32"".bitstype.uint32"".e type.*"".encoder0/0H),	
   2806 
	9 Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go,"".(*encoder).emitHuffeH%H;a!H(H\$(H$HHl$8HHkHH$HHl$8HHkHHHCHkHl$ HL$l$@HcHD$H9HH$HHl$8HsgHkHHHCHkHl$ HL$l$@HcHD$H9s3H+H\$0H$\$\$H(
   2820 B
   2821 *runtime.racefuncenterP "".theHuffmanLUT
   2822  runtime.raceread "".theHuffmanLUT
   2823  runtime.raceread "".theHuffmanLUT
   2824 $"".(*encoder).emit
   2825 (runtime.racefuncexit
   2826 $runtime.panicindex
   2827 $runtime.panicindex
   2828 $runtime.panicindex
   2829 $runtime.panicindex
   2830 $runtime.panicindex
   2831 0runtime.morestack_noctxt0P"".value type.int32"".h"type."".huffIndex"".e type.*"".encoderPOP/"(# Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals790e5cc5051fc0affc980ade09e929ec`prebuilts/go/darwin-x86/src/image/jpeg/writer.go2"".(*encoder).emitHuffRLEeH%H;aYH(H\$(H$D$DD$ }L$ =HD$$HcHH+H$Hl$$HcHsuH++H\$0H$H\$8H\$\$@D$	\$D$v,H\$0H$\$  s!\$D$H(1D$$H-HcHs@HlH,$l$$HHcHsH+1 
   2840 B
   2841 *runtime.racefuncenter"".bitCount
   2842  runtime.raceread"".bitCount
   2843 ,"".(*encoder).emitHuff
   2844 $"".(*encoder).emit
   2845 (runtime.racefuncexit
   2846 $runtime.panicindex
   2847 $runtime.panicindex"".bitCount
   2848  runtime.raceread"".bitCount
   2849 $runtime.panicindex
   2850 $runtime.panicindex
   2851 0runtime.morestack_noctxt0P"".nBitstype.uint32"".btype.int32"".atype.int32"".value(type.int32"".runLength type.int32"".h"type."".huffIndex"".e type.*"".encoderPOPHH-1P Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go>"".(*encoder).writeMarkerHeadereH%H;aH8H\$8H$H\$@Hk H,$HD$@@ Hh HH,$HD$@l$H@h!Hh HH,$HD$@Hl$PH@h"Hh HH,$HD$@Hl$PH@h#HH Ht?HHH$HL$ HL$Hl$(Hl$HT$0HT$H8
   2856 B
   2857 *runtime.racefuncenterf
   2858 "runtime.racewrite
   2859 "runtime.racewrite
   2860 "runtime.racewrite
   2861 "runtime.racewrite
   2862 &"".(*encoder).write
   2863 (runtime.racefuncexit
   2864 0runtime.morestack_noctxt0p"".autotmp_0726/type.[]uint8"".markerlen type.int"".markertype.uint8"".e type.*"".encoderpop,
   2865 #&G	 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals790e5cc5051fc0affc980ade09e929ec`prebuilts/go/darwin-x86/src/image/jpeg/writer.go,"".(*encoder).writeDQTeH%H;aHPH\$PH$H\$XH$D$HD$1HD$(Hl$(H9HD$0H\$XH$HD$ D$Ht$XHt}Hn8LD$ IsgILHtUH@H@H4$Hl$8Hl$HT$@HT$HL$HHL$HD$0HHl$(H9rHPE|
   2869 B
   2870 *runtime.racefuncenterz
   2871 >"".(*encoder).writeMarkerHeader
   2872 ."".(*encoder).writeByte
   2873 &"".(*encoder).write
   2874 (runtime.racefuncexit
   2875 $runtime.panicindex
   2876 0runtime.morestack_noctxt
   2877 "".autotmp_0729Otype.int"".autotmp_0728?type.int"".autotmp_0727/type.[]uint8"".i_type.int"".e type.*"".encoder0
   2878 W	 Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals790e5cc5051fc0affc980ade09e929ec`prebuilts/go/darwin-x86/src/image/jpeg/writer.go."".(*encoder).writeSOF0
eH%H;aaHHH\$HH$HD$hH\$PHkHH$D$HD$H\$PHk H,$HD$P@ Hh HH,$HD$PHl$`H@h!Hh HH,$HD$PHl$`H@h"Hh HH,$HD$PHl$XH@h#Hh HH,$HD$PHl$XH@h$Hh HH,$HT$hHL$PQ%HHi HH,$HD$P@&Hh HH,$HD$P@'Hh HH,$HT$hHL$PA(HHHkH	HwTHHtGH Ht8HH$Hl$0Hl$H\$8H\$HT$@HT$HHE1H9}HHD$ HkHHi H\$(HcHlH,$HL$PHD$ H:Hi H\$(H HlHH]HkHHi HD$(HHlH,$HL$PHD$ HHi H\$(HHlHLIA]HkHHi HD$(HshHlH,$HT$hHD$ HL$PHtAHi H\$(Hs+HlHsLIA]H2:
   2893 B
   2894 *runtime.racefuncenter
   2895 >"".(*encoder).writeMarkerHeader
   2896 "runtime.racewrite
   2897 "runtime.racewrite
   2898 "runtime.racewrite
   2899 "runtime.racewrite
   2900 "runtime.racewrite
   2901 "runtime.racewrite
   2902 "runtime.racewrite
   2903 "runtime.racewrite
   2904 "runtime.racewrite
   2905 &"".(*encoder).write
   2906 (runtime.racefuncexit
   2907 $runtime.panicslice
   2908 "runtime.racewrite	
   2909 "runtime.racewrite
   2910 ,go.string."\"\x11\x11"
   2912 "runtime.racewrite0go.string."\x00\x01\x01"
   2915 $runtime.panicindex
   2917 $runtime.panicindex
   2919 $runtime.panicindex
   2921 $runtime.panicindex
   2923 $runtime.panicindex
   2925 $runtime.panicindex
   2927 $runtime.panicindex
   2929 $runtime.panicindex
   2931 0runtime.morestack_noctxt@"".autotmp_0735type.int"".autotmp_0734type.int"".autotmp_0733type.int"".autotmp_0732/type.[]uint8"".autotmp_0731type.int"".autotmp_0730?type.int"".iOtype.int"".nComponent0type.int"".size type.image.Point"".e type.*"".encodert,)"&#&
   2932 Z
fpe Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals790e5cc5051fc0affc980ade09e929ec`prebuilts/go/darwin-x86/src/image/jpeg/writer.go,"".(*encoder).writeDHT

eH%H$pH;AJHH$H$HHt$ HHHHHH$ HuHHHT$PHHL$XHHD$`H$1H$HT$0H$HHL$8Hl$0H9HD$@H$HD$(HT$@HH]H$H$H$HL$ H$HHHt$ HL$8HH(HHL$8Hl$0H9zH$H$D$Ht$HH$H\$H\$HHT$PHD$XH\$`H$1H$HD$0H$HHL$8Hl$0H9eHD$@H$HD$(Ht$@HZH$H\$8H\$(H\$HH$HD$(H\$HH$H\$Hl$H-H,$H$H$H\$(HH-H]\$HD$HHH$HHH$HD$hHD$HT$pHT$HL$xHL$H\$HH$H$H$H$Ht$HH^H|$HHHKHOHKHOHD$@HL$8H(HHL$8Hl$0H9HC.
   2942 ^
   2943 *runtime.racefuncenter""".theHuffmanSpec
   2944 *runtime.racereadrange
   2945  runtime.duffcopy
   2946  runtime.duffcopy
   2947 >"".(*encoder).writeMarkerHeader&type."".huffmanSpec
   2948 "runtime.newobject
   2949 *runtime.racereadrange
   2950  runtime.duffcopy
   2951 ,runtime.racewriterange&type."".huffmanSpec	
   2952 (runtime.typedmemmove	8go.string."\x00\x10\x01\x11"	
   2953 ."".(*encoder).writeByte
   2954 
   2955 &"".(*encoder).write
   2957  runtime.raceread
   2959 &"".(*encoder).write
   2961 (runtime.racefuncexit
   2963 $runtime.panicindex
   2965 $runtime.panicslice
   2967 0runtime.morestack_noctxt $"".autotmp_0748&type."".huffmanSpec"".autotmp_0747(type.*"".huffmanSpec"".autotmp_0746type.int"".autotmp_0745type.int"".autotmp_0744O&type."".huffmanSpec"".autotmp_0743(type.*"".huffmanSpec"".autotmp_0742type.int"".autotmp_0741type.int"".autotmp_0740type.[]uint8"".autotmp_0739*type.[]"".huffmanSpec"".autotmp_0736*type.[]"".huffmanSpec
   2968 "".&s(type.*"".huffmanSpec"".itype.int"".s&type."".huffmanSpec"".specs*type.[]"".huffmanSpec"".markerlentype.int"".nComponenttype.int"".e type.*"".encoder"5d"""2LH)
   2970 (.u='BTgclocals1c702d716a8e9cf6dcd9f0eed7451907Tgclocals238b30358c77c9a64ddd391e183d8b96`prebuilts/go/darwin-x86/src/image/jpeg/writer.go0"".(*encoder).writeBlockeH%H;aH8H\$8H$H\$HH$H\$@Hk8H\$PHHHH,$H\$@HiHk8H\$PHOHH]\$ H\$HH$H\$H+L$ H\$@H$H\$PHHH\$D$D$l$X)\$H\$PHHH\$01L$HH@cH\$@Hk8H\$PH\HHHD$(H@?HlH,$HL$(H\$@HHk8H\$PHHHH@Hl
]\$ HH@HH$HHl$(H@HH+H\$HH@uHH$t$HHl$(H@GHH+H\$HH*H@H+L$ D$$uQL$HD$(HH@~ H\$@H$H\$0H\$D$\$\$`H8t$~4H\$@H$H\$0H\$D$L$$t$t$H\$@H$H\$0H\$t$L$1L$O1tt8
   2985 B
   2986 *runtime.racefuncenter^
   2987 "".fdct
   2988  runtime.raceread
   2989  runtime.raceread
   2990 2"".(*encoder).emitHuffRLE
   2991  runtime.raceread"".unzig
   2992  runtime.raceread"".unzig
   2993  runtime.raceread"".unzig
   2994 
   2995 ,"".(*encoder).emitHuff
   2996 
   2997 (runtime.racefuncexit
   2999 ,"".(*encoder).emitHuff
   3001 2"".(*encoder).emitHuffRLE
   3003 $runtime.panicindex
   3005 $runtime.panicindex
   3007 $runtime.panicindex
   3009 $runtime.panicindex
   3011 $runtime.panicindex
   3013 $runtime.panicindex
   3014 $runtime.panicindex
   3015 $runtime.panicindex
   3016 $runtime.panicindex
   3017 $runtime.panicindex
   3018 $runtime.panicindex
   3019 0runtime.morestack_noctxtPp&"".autotmp_0759type.int32"".autotmp_0758type.int32"".autotmp_0757type.int32"".autotmp_0755type.int32"".autotmp_0754type.int32"".autotmp_0753/type.int32"".autotmp_0752type.int32"".autotmp_0750type.int32"".autotmp_0749type.int32
   3020 "".ac'type.int32"".zigtype.int"".runLength?type.int32"".h"type."".huffIndex
   3022 "".dc7type.int32"".~r3@type.int32"".prevDC0type.int32"".q $type."".quantIndex"".btype.*"".block"".e type.*"".encoderpopp.+7	 	$	 y	! Tgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".toYCbCreH%HD$H;AHH$H$H$H$H$H[(Hl$HT$H\$HD$ Hl$XHT$`H\$hHH\$8HHD$pHH\$01H1HH$HD$HHHD$8H93HH$Ht$@HD$0HH9}HHT$HD$H$H$H$H[ HL$HD$ H$H$HL$xHY \$L$D$$\$\$\$H\$	H\$
   3029 T$-L$/\$.HD$@Hl$HH$HHHD$PH@UHH$H$H/Hl$PH@Hl$-+HD$@Hl$HH$HHHD$PH@HH$H$HHl$PH@Hl$/+HD$@Hl$HH$HHHD$PH@smHH$Ht$@H$HtIHl$PH@s7Hl$.+HD$HHHHHH@H"
   3036 X
   3037 *runtime.racefuncenter
   3038 ,image/color.RGBToYCbCr
   3039 "runtime.racewrite
   3040 "runtime.racewrite	
   3041 "runtime.racewrite
   3042 
   3043 (runtime.racefuncexit
   3044 
   3045 $runtime.panicindex
   3046 
   3047 $runtime.panicindex
   3049 $runtime.panicindex
   3051 $runtime.panicindex
   3053 $runtime.panicindex
   3055 $runtime.panicindex
   3057 0runtime.morestack_noctxtp*"".autotmp_0777type.int"".autotmp_0776type.int"".autotmp_0775type.int"".autotmp_0774type.int"".autotmp_0773type.int"".autotmp_0772otype.int"".autotmp_0771type.int"".autotmp_0764,type.image/color.Color
   3058 "".crtype.uint8
   3059 "".cbtype.uint8
   3060 "".yytype.uint8"".itype.int"".jtype.int"".ymaxtype.int"".xmaxtype.int"".b_(type.image.Rectangle"".crBlock`type.*"".block"".cbBlockPtype.*"".block"".yBlock@type.*"".block"".p  type.image.Point"".m type.image.ImageNZ8
>aaZ	

   3067 +Tgclocals7a7d3a19774678e8060af2c52613e9a0Tgclocals23e8278e2b69a3a75fa59b23c49ed6ad`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".grayToYeH%HD$H;AHH$H$H$1H\$PH\$XH\$`H\$hH$H$H$ HD$ H$HHs HS(HK0Hk8Ht$PHt$pHT$XHT$xHL$`Hl$hHH$HH\$(HH$HH\$H$H$H$HH+H$HkH$HkH$1H1HH$H$HD$@HHD$(H9HH$H|$0HD$HH9}HHT$ HD$H$H4$H$ H$HX Hl$ H)Hl$HH$H$ H$H$H$H$H$HX(Hl$H)HHhHHl$HHH\$8HD$0Hl$@H$HHHD$HH@HH$H$Hl$8L$L9H+H$H|$0H$HtpHl$HH@s^HH$LD$8L$M9s9JlDEDHD$@HHqHHXHHXo
   3077 X
   3078 *runtime.racefuncenter
   3079 *runtime.racereadrange
   3080  runtime.raceread
   3081  runtime.raceread
   3082  runtime.raceread
   3083  runtime.raceread
   3084 "runtime.racewrite	
   3085  runtime.raceread
   3087 (runtime.racefuncexit
   3089 $runtime.panicindex
   3091 $runtime.panicindex
   3093 $runtime.panicindex
   3095 $runtime.panicindex
   3097 0runtime.morestack_noctxt@."".autotmp_0786type.int"".autotmp_0785type.int"".autotmp_0784type.int"".autotmp_0783type.int"".autotmp_0782type.int"".autotmp_0781type.int"".autotmp_0780type.int"".autotmp_0778type.intimage.y4type.intimage.x3type.intimage.p2? type.*image.Gray"".~r0(type.image.Rectangleimage.p2O type.*image.Gray"".idxtype.int"".itype.int"".jtype.int"".pix/type.[]uint8"".ymaxtype.int"".xmaxtype.int"".b(type.image.Rectangle"".yBlock0type.*"".block"".p type.image.Point"".m type.*image.GrayFT
}F
 $+=wSTgclocals2976f48703bf940fd2a050777411a19bTgclocalsa965da897cb3ae399bbbe7fa873c5f1b`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".rgbaToYCbCreH%HD$H;AnHH$H$H$1H\$PH\$XH\$`H\$hH$H$H$ HD$ H$H$HH{ Hs(HK0Hk8H|$PH|$pHt$XHt$xHL$`Hl$hHH$HH\$ HH$HH\$1HH$HD$8HH\$(Hl$H9~
   3106 H\$H\$(H\$pH\$HH$H$H$HL$ H\$xHl$(H)HHjHHl$HHH)H\$01HH$HD$@HHH9~HHl$0HHHH\$HH$H$Hl$HLCLKL9LI)I)ItM*L$L$IL$|L$H$H$UHH$H$H$+HH$H$H$H(@,$HHH+@l$HHH+@l$\$H\$	H\$
   3107 T$L$\$HD$8Hl$@H$HHHD$HH@bHH$H$H<Hl$HH@&Hl$+HD$8Hl$@H$HHHD$HH@HH$H$HHl$HH@Hl$+HD$8Hl$@H$HHHD$HH@szHH$H$HL$ H$HtNHl$HH@s<Hl$+HD$@HHwHD$8HHH3p6
   3121 X
   3122 *runtime.racefuncenter
   3123 *runtime.racereadrange
   3124  runtime.raceread
   3125  runtime.raceread
   3126  runtime.raceread
   3127  runtime.raceread	
   3128  runtime.raceread
   3129 
   3130 ,image/color.RGBToYCbCr
   3132 "runtime.racewrite
   3134 "runtime.racewrite
   3135 "runtime.racewrite
   3136 (runtime.racefuncexit
   3137 $runtime.panicindex
   3138 $runtime.panicindex
   3139 $runtime.panicindex
   3140 $runtime.panicindex
   3141 $runtime.panicindex
   3142 $runtime.panicindex
   3143 $runtime.panicindex
   3144 $runtime.panicindex
   3145 $runtime.panicindex
   3146 $runtime.panicindex
   3147 $runtime.panicindex
   3148 $runtime.panicindex
   3149 $runtime.panicslice
   3150 0runtime.morestack_noctxt`2"".autotmp_0796type.int"".autotmp_0795type.int"".autotmp_0794type.int"".autotmp_0793type.int"".autotmp_0792type.int"".autotmp_0791type.int"".autotmp_0787type.int"".~r0(type.image.Rectangleimage.p2? type.*image.RGBA
   3152 "".crtype.uint8
   3153 "".cbtype.uint8
   3154 "".yytype.uint8"".pix/type.[]uint8"".itype.int"".offsettype.int
   3156 "".sjtype.int"".jtype.int"".ymaxtype.int"".xmaxtype.int"".b(type.image.Rectangle"".crBlockPtype.*"".block"".cbBlock@type.*"".block"".yBlock0type.*"".block"".p type.image.Point"".m type.*image.RGBA~	&#
   3158 NVaab*
   3161 "+=Tgclocals58e855da1e66c297419bd210b9d559e5Tgclocals721dda3334c021125365f71a78d0ed1e`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".scaleeH%H;agH@H\$@H$1HHHHHHHH	H\$01Hx1H_HHL$HHHD$HHHH\$PHHT$(HHHHD$ H@HH$HD$ HH\$PHl$(HHHH@sHH$HD$ H\$PHl$(HHBHHH@*HH$HD$ H\$PHl$(H	HHHH@HH$Hl$(Ht$ H\$PHHHHHHHHH@HHHeIHQILH@9HlmHHHIHILH@HlmH	HIHILH@Hlm\$HD$Hl$HHHl$0H\$HHHD$8H@s~HH$HT$(HL$H\$HHtXHl$8H@sFHl$+HD$HHHHHHQH@N|6
   3183 B
   3184 *runtime.racefuncenter
   3185  runtime.raceread
   3186  runtime.raceread
   3187  runtime.raceread
   3188  runtime.raceread
   3189 
   3190 "runtime.racewrite
   3192 (runtime.racefuncexit
   3194 $runtime.panicindex
   3196 $runtime.panicindex
   3198 $runtime.panicindex
   3200 $runtime.panicindex
   3202 $runtime.panicindex
   3204 $runtime.panicindex
   3206 $runtime.panicindex
   3208 $runtime.panicindex
   3210 $runtime.panicindex
   3212 $runtime.panicindex
   3214 $runtime.panicindex
   3216 $runtime.panicindex
   3218 $runtime.panicindex
   3220 $runtime.panicindex
   3222 $runtime.panicindex
   3224 $runtime.panicindex
   3226 $runtime.panicindex
   3228 $runtime.panicindex
   3230 0runtime.morestack_noctxt "".autotmp_0800type.int"".autotmp_0799type.int"".autotmp_0798type.int"".autotmp_0797type.int"".sumgtype.int32"".j?type.int"".xOtype.int"".y_type.int"".dstOfftype.int"".i/type.int"".src"type.*[4]"".block"".dsttype.*"".blockJf

~ Tgclocals2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go,"".(*encoder).writeSOSeH%H$hH;AH
   3244 1H$	H$
   3245 H$H$(
   3246 H$0
   3247 H$
   3248 H$H$
   3250 HD$\$~0HH$H$
   3251 H\$H$
   3252 H\$HD$\$ HH$H$ 
   3253 H$HH\$HH\$HH\$H$1H$1H$1D$<D$DD$@H$0
   3254 H$H$(
   3255 H[(Hl$HT$HL$HD$ H$H$H$H$H$(
   3256 H$0
   3257 H$
   3258 H$H$
   3260 HD$\$~|H$	HH$H$
   3261 H\$H$
   3262 H\$H$	H\$\$ +H$H$H9H$H$H9HD$`HT$P11H$H$HD$pHT$xH$	H$H$HD$H$HT$H$H\$H$ 
   3263 H$H$H\$HD$\$<\$HT$P\$ \$<HD$`HH$H9JHH$H9H$ 
   3264 H$D$D$H
   3266 H$
   3267 H$
   3268 H$	HH$H$	HL$H$
   3269 HD$H$	H\$\$ H$	H$	L$H$LD$HL9LH$H$Ht$XH91H)HHHHHHHHHLHH11H$H$H$H$1H9H<$H$HT$H$HL$H$H\$H$HHxHHH\$ H$HHD$hHKHHH\$(H$ 
   3271 H$H$H\$HD$\$<\$LD$HH$	Ht$X\$ \$<HD$hHHH$H$H$H\$H$ 
   3272 H$H$H\$HD$\$D\$\$ \$DH$H$H$H\$H$ 
   3273 H$H$H\$HD$\$@\$LD$HH$	\$ \$@Ht$XHH$Ht$XH9IH$	H$H$
   3276 H\$H$HT$H$HL$H$H\$ H$HHs?HHH\$(H$HHD$hHsHHH\$0/HH$H$ 
   3279 H$HH\$HH\$HH\$T
   3281 r
   3282 *runtime.racefuncenter
   3283 $runtime.ifacethash type.*image.Gray
   3284 $runtime.assertI2T2"".sosHeaderY
   3285  runtime.raceread"".sosHeaderY"".sosHeaderY "".sosHeaderY
   3286 &"".(*encoder).write
   3287  runtime.duffzero
   3288  runtime.duffzero
   3289  runtime.duffzero
   3290 $runtime.ifacethash type.*image.Gray
   3291 $runtime.assertI2T2
   3292 
   3293 "".grayToY
   3295 0"".(*encoder).writeBlock
   3297 $"".(*encoder).emit
   3299 (runtime.racefuncexit
 type.*image.RGBA
   3301 $runtime.assertI2T2
   3302 "".rgbaToYCbCr
   3303 0"".(*encoder).writeBlock
   3304 "".scale
   3305 0"".(*encoder).writeBlock
   3306 "".scale
   3307 0"".(*encoder).writeBlock
   3308 $runtime.panicindex
   3309 $runtime.panicindex
   3310 "".toYCbCr
   3311 $runtime.panicindex
   3312 $runtime.panicindex""".sosHeaderYCbCr
   3313  runtime.raceread""".sosHeaderYCbCr""".sosHeaderYCbCr """.sosHeaderYCbCr
   3314 &"".(*encoder).write
   3315 0runtime.morestack_noctxt0(L"".autotmp_0829 type.image.Point"".autotmp_0827type.int"".autotmp_0826type.int"".autotmp_0825type.int"".autotmp_0824% type.image.Point"".autotmp_0823type.uint32"".autotmp_0822type.bool"".autotmp_0821 type.image.Image"".autotmp_0818 type.image.Image"".autotmp_0817type.int"".autotmp_0816type.int"".autotmp_0815type.int32"".autotmp_0814type.int32"".autotmp_0813type.int"".autotmp_0812type.int32"".autotmp_0811O type.*image.RGBA"".autotmp_0809type.int"".~r0& type.image.Point"".~r0& type.image.Point"".p& type.image.Point"".i&type.int"".x&type.int"".y'type.int"".rgbao type.*image.RGBA"".m? type.image.Image"".p% type.image.Point"".x&type.int"".y'type.int"".m_ type.*image.Gray"".bounds%(type.image.Rectangle"".prevDCCr'type.int32"".prevDCCb'type.int32"".prevDCY'type.int32
   3318 "".cr  type.[4]"".block
   3319 "".cb type.[4]"".block"".b$type."".block"".m type.image.Image"".e type.*"".encoder"(((,b_EN(8<<&/X6wI7D	?E
   3324 :8.C
   3326 cTgclocalsb51977347780199bdeb5c3bc2af3d367Tgclocalsc7a897b026c07e0b0e016b982e596fb3`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".Encode..eH%H$H;AhHH$H$1H$(H$0H$H$H$H[(H|$Ht$HT$HL$ H$H$H$H$H$H$HH$H$H)H	H$H$HH$H$H)Hf	HH$HD$H$HH$HD$1H$H$HH$H$H\$H$H\$H$H\$\$ HH$H$H$H$<H$HH$H$HH$H+H$=HkH$ HK1H9t-H$ H$H$ HHDHH2HHHHHD$@1HD$pHl$pH9HL$xH1HD$`@Hl$`H9WHD$hHHHT$XHHHHD$PH@uHH$HT$@Ht$XHL$PHHH>HHH@&H+HHH2HH2Ip=
   3332 HIIIIH?I)IHD$0H$HHk8HHHHH@Hl
H,$HT$XHL$xH$HHk8HHHHHH\$PH@+HlH\$0]HD$hHHl$`H9HHl$pH9wHD$HH$H$H$H$H$HD$\$~uFHH$H$H\$H$H\$HD$\$ t	HD$HH$HHk H,$H$H@ Hh HH,$H$H@!HH HHHH$H$Hl$H$HT$H$HL$H$HH$H$H$H$H$11HH$H$H)HHH$H$H)HH$H$H$HH$H$HL$H$HD$H\$HH\$H$HH$H\$HH\$H$HH$H$H\$H$H\$H$HHk H,$H$H@ Hh HH,$H$H@!HH HHHH$H$Hl$H$HT$H$HL$H$HH$H$HH$H$H$HHkH$(HkH$0HEfELD$0I6HD$0(HHD$@HHHH)Hl$@HdHdLCL$Hl$SH$H$H$`H$hHD$8H$@HH$H$pHL$H$xHD$H$@H\$HD$8\$ H$@H$ H$H$H$ HD$8HZH9HH$(HH$01H9teH$HH$H$(H$0H$HH$HH$=u	HK-LCL$HL$HH$HH\$HH\$H\$H$0aHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$H$(H$HD$@H$(1H(HhHhHhHh Hh(Hh0Hh8H$H$H$(H$HkH$Hk H$=udHkH$(H$H$0H$(H$pHk0H$x=uHk8H$(LC8L$Hl$LCL$Hl$HH$H$"1H$PH$XHH$HD$H$8H$H$8H$HkH$=H+H$8H$8H1H9tEH$8H$H$H$PH$(H$XH$0HHH$HH\$HH\$HD$H$Hl$[s
   3343 ^
   3344 *runtime.racefuncentertype."".encoder
   3345 "runtime.newobject
   3346 ,runtime.racewriterangetype."".writer
   3347 $runtime.assertI2I2
   3348 "runtime.racewrite6runtime.writeBarrierEnabled
   3349  runtime.raceread
   3350  "".unscaledQuant
   3351 
   3352  runtime.raceread "".unscaledQuant
   3355 "runtime.racewrite
   3356 $runtime.ifacethash type.*image.Gray
   3357 $runtime.assertI2T2
   3358 "runtime.racewrite
   3359 "runtime.racewrite
   3360 &"".(*encoder).write
   3361 ,"".(*encoder).writeDQT
   3362 ."".(*encoder).writeSOF0
   3363 ,"".(*encoder).writeDHT
   3364 ,"".(*encoder).writeSOS
   3365 "runtime.racewrite
   3366 "runtime.racewrite
   3367 &"".(*encoder).write
   3368 &"".(*encoder).flush
   3369  runtime.raceread
   3370 (runtime.racefuncexit
   3371 $runtime.panicindex
   3372 $runtime.panicindex
   3373 $runtime.panicindex
   3374 $runtime.panicindex
   3375 $runtime.panicindex
   3376 $runtime.panicindex
   3377 $runtime.panicindex
   3378 $runtime.panicindex
   3379 .runtime.writebarrierptr$type.*bufio.Writer
   3380 $runtime.assertI2T2 
   3381  runtime.raceread!>go.itab.*bufio.Writer."".writer!
   3382 "runtime.racewrite"6runtime.writeBarrierEnabled"
   3383 .runtime.writebarrierptr#$type.*bufio.Writer#type."".writer#>go.itab.*bufio.Writer."".writer#
   3384  runtime.typ2Itab$type.[]uint8$
   3385 "runtime.makeslice%"type.bufio.Writer%
   3386 "runtime.newobject%
   3387 ,runtime.racewriterange&
   3388 "runtime.racewrite'6runtime.writeBarrierEnabled'
   3389 "runtime.racewrite(6runtime.writeBarrierEnabled)
   3390 .runtime.writebarrierptr)
   3391 .runtime.writebarrierptr)\go.string."jpeg: image is too large to encode"*.type.errors.errorString*
   3392 "runtime.newobject*
   3393 "runtime.racewrite+6runtime.writeBarrierEnabled+Bgo.itab.*errors.errorString.error,
   3394 (runtime.racefuncexit-0type.*errors.errorString-type.error-Bgo.itab.*errors.errorString.error-
   3395  runtime.typ2Itab-
   3396 .runtime.writebarrierptr.
   3397 0runtime.morestack_noctxtp\"".autotmp_0857 type.image.Point"".autotmp_0854 type.image.Image"".autotmp_0853type.int"".autotmp_0852type.int"".autotmp_0851type.int"".autotmp_0850type.int"".autotmp_0849type.int"".autotmp_0848type.*uint8"".autotmp_0847$type.*bufio.Writer"".autotmp_0846$type.*bufio.Writer"".autotmp_0845$type.*bufio.Writer"".autotmp_0844type.*uint8"".autotmp_0843otype.error"".autotmp_08420type.*errors.errorString"".autotmp_0841type.int"".autotmp_0840type.int"".autotmp_0839type.[]uint8"".autotmp_0838type.[]uint8"".autotmp_0837$type.*bufio.Writer"".autotmp_0836/type.[]uint8"".autotmp_0835type.int"".autotmp_0834$type.*bufio.Writer"".autotmp_0833Otype."".writer"".autotmp_08320type.*errors.errorString
   3398 "".&e type.*"".encoder"".~r0 type.image.Pointimage.r2(type.image.Rectanglebufio.b4$type.*bufio.Writerbufio.size3type.intbufio.w2type.io.Writerbufio.w2type.io.Writer"".~r0type.errorerrors.text2type.stringimage.r2(type.image.Rectangleimage.r2(type.image.Rectangle"".nComponenttype.int"".xtype.int"".jtype.int"".itype.int"".scaletype.int
   3401 "".wwtype."".writer"".b(type.image.Rectangle"".~r3Ptype.error"".o@ type.*"".Options"".m  type.image.Image"".wtype.io.Writer("
O"./y=
   3405 
   3406 
   3407 !w4
   3408 	~	w	!O+!OC	

   3411 
   3412 
   3413 |{J
v.IAS?q1LO-97H?
   3418 0,Tgclocalsba7003d0485cd0761ef7e09f63e8d5dcTgclocals71fb03779b2bc6a91b9c6e08fa9fb035`prebuilts/go/darwin-x86/src/image/jpeg/writer.go"".initeH%H;aHH\$H$HH$t-HH$u
   3420 HHH$HH$H-2
   3422 B
   3423 *runtime.racefuncenterP"".initdoneb
   3424  runtime.racereadp"".initdone"".initdone
   3425  runtime.raceread"".initdone
   3426 (runtime.racefuncexit
   3427 "runtime.throwinit"".initdone
   3428 "runtime.racewrite"".initdone
   3429 io.init
   3430 image.init
   3431  image/color.init
   3432 :image/internal/imageutil.init
   3433 bufio.init
   3434 "".init.1
   3435 "".init.2"".initdone
   3436 "runtime.racewrite"".initdone
   3437 (runtime.racefuncexit
   3438 0runtime.morestack_noctxtOa
   3439 	 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb`prebuilts/go/darwin-x86/src/image/jpeg/writer.go."".(*FormatError).ErroreH%H;a&HhHY Ht
H|$pH9;uH#H\$hH$1H\$xH$H\$p1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$pH$H\$pHt~HHk1H\$8H\$@H$HH\$HD$HL$HHL$Hl$PHl$ HL$(HD$0HL$XHD$`HL$8HL$xHD$@H$Hh{
   3446 n
   3447 *runtime.racefuncenter go.string."jpeg".go.string."FormatError""go.string."Error"
   3448 "runtime.panicwrap
   3449  runtime.racereadBgo.string."invalid JPEG format: "
   3450 *runtime.concatstring2
   3451 (runtime.racefuncexit
   3452 0runtime.morestack_noctxt0
   3453 "".autotmp_0867type.string"".~r0_type.string"".e?&type."".FormatError"".~r0type.string""..this(type.*"".FormatError6(Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsae0a20890c9ac6bfbea3383f34532bab<autogenerated>.type..hash."".componenteH%H;av\H H\$ H$H\$(H$H<$t1H\$0H\$HD$HD$HD$0HD$8H %
   3457 
   3458 :
   3459 *runtime.racefuncenter
   3460 runtime.memhash
   3461 (runtime.racefuncexit
   3462 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p$type.*"".component@N?@
   3464 dTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go*type..eq."".componenteH%H;av|H H\$ H$H\$(H$H<$tQH\$0H\$H|$t6HD$\$uD$8H D$8H %%k
   3467 :
   3468 *runtime.racefuncenter
   3469  runtime.memequal
   3470 (runtime.racefuncexit
   3471 (runtime.racefuncexit
   3472 0runtime.morestack_noctxt0@"".~r2 type.bool"".q$type.*"".component"".p$type.*"".component@V?@?@'Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go4type..hash.[4]"".componenteH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHkHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C
   3476 
   3477 B
   3478 *runtime.racefuncenter
   3479 .type..hash."".component
   3480 (runtime.racefuncexit
   3481 0runtime.morestack_noctxt0P
   3482 "".autotmp_0872type.int"".autotmp_0871type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[4]"".componentPOP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go0type..eq.[4]"".componenteH%H;aH(H\$(H$1HD$Hl$H95HD$HL$0HFH\$8HHkHH&HHkHH\$HL$ H$H\$H$HD$ HLD$I(H9H$H$H\$H$H$HD$ HXLD$IhH9H$H$H\$H$H$HD$ XLD$Ah@8u^H$H$H\$H$H$Hl$ ]LD$Ah@8u%HD$HHl$H9D$@H(D$@H(W
   3487 B
   3488 *runtime.racefuncenter
   3489  runtime.raceread
   3490  runtime.raceread
   3491  runtime.raceread
   3492  runtime.raceread
   3493  runtime.raceread
   3494  runtime.raceread
   3495  runtime.raceread
   3496  runtime.raceread
   3497 (runtime.racefuncexit
   3498 (runtime.racefuncexit
   3499 0runtime.morestack_noctxt0P"".autotmp_0876$type.*"".component"".autotmp_0875$type.*"".component"".autotmp_0874?type.int"".autotmp_0873/type.int"".~r2 type.bool"".q*type.*[4]"".component"".p*type.*[4]"".componentPOPOP c8Tgclocals51af24152615272c3d9efc8538f95767Tgclocals21a8f585a14d020f181242c5256583dc\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go8"".(*UnsupportedError).ErroreH%H;a&HhHY Ht
H|$pH9;uH#H\$hH$1H\$xH$H\$p1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$pH$H\$pHt~HHk1H\$8H\$@H$HH\$HD$HL$HHL$Hl$PHl$ HL$(HD$0HL$XHD$`HL$8HL$xHD$@H$Hh{
   3505 n
   3506 *runtime.racefuncenter go.string."jpeg"8go.string."UnsupportedError""go.string."Error"
   3507 "runtime.panicwrap
   3508  runtime.racereadLgo.string."unsupported JPEG feature: "
   3509 *runtime.concatstring2
   3510 (runtime.racefuncexit
   3511 0runtime.morestack_noctxt0
   3512 "".autotmp_0877type.string"".~r0_type.string"".e?0type."".UnsupportedError"".~r0type.string""..this2type.*"".UnsupportedError6(Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsae0a20890c9ac6bfbea3383f34532bab<autogenerated>"".writer.FlusheH%H;avpH(HY Ht
H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[ HL$HD$HL$HL$@HD$ HD$HH(w
   3517 
   3518 f
   3519 *runtime.racefuncenter
   3520 (runtime.racefuncexit
   3521 0runtime.morestack_noctxt@P"".autotmp_0878type.error"".~r0 type.error""..thistype."".writerPkOP2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".writer.WriteeH%H;aHHHY Ht
H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH=
   3525 
   3526 n
   3527 *runtime.racefuncenter
   3528 (runtime.racefuncexit
   3529 0runtime.morestack_noctxt
   3530 "".autotmp_0880type.errorio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".writer
   3532 6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>&"".writer.WriteByteeH%H;avyH0HY Ht
H|$8H9;uH#H\$0H$1H\$PH\$X\$H\$H\$@H$H\$8H[0HL$HD$HL$ HL$PHD$(HD$XH0n
   3535 
   3536 f
   3537 *runtime.racefuncenter
   3538 (runtime.racefuncexit
   3539 0runtime.morestack_noctxtP`"".autotmp_0883type.error"".~r20type.errorio.c type.uint8""..thistype."".writer`t_`2L"Tgclocalse4b5616e5783a0b08ed3851f8c75ffedTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>*type..hash."".encodereH%H;aH H\$ H$H\$(H$H<$H\$0H\$HD$H\$(H$H<$thH$HD$0HD$HD$H\$(H$H<$t6H$ HD$0HD$HD$HD$HD$0HD$8H %%%_
   3543 B
   3544 *runtime.racefuncenter
   3545 "runtime.interhash
   3546 "runtime.interhash
   3547 runtime.memhash
   3548 (runtime.racefuncexit
   3549 0runtime.morestack_noctxt0@
   3550 "".autotmp_0886type.uintptr"".autotmp_0885type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p type.*"".encoder@?@4 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go&type..eq."".encodereH%H;aHhH\$hH$H\$xH$H\$xHH+Hl$XHkHl$`H\$pH$HT$XH\$pHHHKHL$PHD$HH9cH$HL$HT$Hl$`Hl$\$ 8H\$xH$H$H\$xHHkHl$8HkHl$@H\$pH$H$HT$8H\$pHHCHKHL$0HD$(H9H$HL$HT$Hl$@Hl$\$ t{H\$pH$H<$tbH$ H\$xH\$H|$tBHD$ HD$\$u$Hh$Hh%%$Hh*$Hhj0
   3554 B
   3555 *runtime.racefuncenter^
   3556  runtime.raceread
   3557  runtime.raceread
   3558 runtime.ifaceeq
   3559  runtime.raceread
   3560  runtime.raceread
   3561 runtime.ifaceeq
   3562  runtime.memequal
   3563 (runtime.racefuncexit
   3564 (runtime.racefuncexit
   3565 (runtime.racefuncexit
   3566 (runtime.racefuncexit
   3567 0runtime.morestack_noctxt0"".autotmp_0891type.error"".autotmp_0890_type.error"".autotmp_0889?type."".writer"".autotmp_0888type."".writer"".~r2 type.bool"".q type.*"".encoder"".p type.*"".encoder># <KULTgclocals9c91d8a91ac42440a3d1507bc8d2e808Tgclocalse85dd0d10221e69476a0daf9bc0a53b6\prebuilts/go/darwin-x86/src/image/jpeg/fdct.go"".Reader.ReadeH%H;aHHHY Ht
H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[ HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH=
   3571 
   3572 n
   3573 *runtime.racefuncenter
   3574 (runtime.racefuncexit
   3575 0runtime.morestack_noctxt
   3576 "".autotmp_0893type.errorio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".Reader6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".Reader.ReadByteeH%H;av{H0HY Ht
H|$8H9;uH#H\$0H$11H\$PH\$XH\$@H$H\$8H[(\$HT$HL$\$HHT$ HT$PHL$(HL$XH0l
   3580 
   3581 f
   3582 *runtime.racefuncenter
   3583 (runtime.racefuncexit
   3584 0runtime.morestack_noctxtP`"".autotmp_0897type.errorio.err0type.errorio.c type.uint8""..thistype."".Reader`v_`2N Tgclocalse4b5616e5783a0b08ed3851f8c75ffedTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bf08go.itab."".FormatError.errorTgclocalsc2934d28c868ce52e67cf0667b9c3035((Tgclocals06be4abc148cc801a93c492b76c8e5c8((
Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals762ef64d066b6f51173413f25bf7cca5  Hgo.string.hdr."DHT has wrong length"  @go.string."DHT has wrong length"@go.string."DHT has wrong length"0*DHT has wrong length8go.string.hdr."bad Tc value"  0go.string."bad Tc value"0go.string."bad Tc value" bad Tc value8go.string.hdr."bad Th value"  0go.string."bad Th value"0go.string."bad Th value" bad Th valueZgo.string.hdr."Huffman table has zero length"  Rgo.string."Huffman table has zero length"Rgo.string."Huffman table has zero length"@<Huffman table has zero lengthdgo.string.hdr."Huffman table has excessive length"  "\go.string."Huffman table has excessive length"\go.string."Huffman table has excessive length"PFHuffman table has excessive lengthTgclocals176f5cd2c5a4f401e6842d3a644f12e1@@@@Tgclocals8dfb2267462a62b8e7420e37bb0f17e4@@

Vgo.string.hdr."uninitialized Huffman table"  Ngo.string."uninitialized Huffman table"Ngo.string."uninitialized Huffman table"@8uninitialized Huffman table@go.string.hdr."bad Huffman code"  8go.string."bad Huffman code"8go.string."bad Huffman code"0"bad Huffman codeTgclocals721978b6eca21c225e2ab29bfd224bf6HH  &!Tgclocalsc74d5f7f55ad85a22e7ced8e90fa0691HHTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals170309d2da858695ebefc5e7e0d9c320  
Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bfJgo.string.hdr."invalid JPEG format: "  Bgo.string."invalid JPEG format: "Bgo.string."invalid JPEG format: "0,invalid JPEG format: Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals342b6176fad1bf8fb686f6c9600f7161  Tgo.string.hdr."unsupported JPEG feature: "  Lgo.string."unsupported JPEG feature: "Lgo.string."unsupported JPEG feature: "@6unsupported JPEG feature: Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals342b6176fad1bf8fb686f6c9600f7161  rgo.string.hdr."jpeg: fill called when unread bytes exist"  )jgo.string."jpeg: fill called when unread bytes exist"jgo.string."jpeg: fill called when unread bytes exist"`Tjpeg: fill called when unread bytes existTgclocalscf27bd8426953c775c3bc54d29d51faa88	@Tgclocals22d483162ff03d8ae3f68d96ba58584488Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bfTgclocals69c1753bd5f81501d95132d08af04464Tgclocals170309d2da858695ebefc5e7e0d9c320  
Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals170309d2da858695ebefc5e7e0d9c320  
Tgclocals6124d79b7ef47c9c407e697f0880a22d00Tgclocals8889fc92438f7659f0925dca838c4962003Tgclocals146719d1bf48f9d1c4c0f00caaf1a24f00Tgclocalseb76ecd36c7b038de24a170fc7fbec5800
0Bgo.itab."".UnsupportedError.errorHgo.string.hdr."multiple SOF markers"  @go.string."multiple SOF markers"@go.string."multiple SOF markers"0*multiple SOF markersHgo.string.hdr."number of components"  @go.string."number of components"@go.string."number of components"0*number of components2go.string.hdr."precision"  	*go.string."precision"*go.string."precision" precisionHgo.string.hdr."SOF has wrong length"  @go.string."SOF has wrong length"@go.string."SOF has wrong length"0*SOF has wrong lengthZgo.string.hdr."repeated component identifier"  Rgo.string."repeated component identifier"Rgo.string."repeated component identifier"@<repeated component identifier8go.string.hdr."bad Tq value"  0go.string."bad Tq value"0go.string."bad Tq value" bad Tq valueZgo.string.hdr."luma/chroma subsampling ratio"  Rgo.string."luma/chroma subsampling ratio"Rgo.string."luma/chroma subsampling ratio"@<luma/chroma subsampling ratioTgclocalsd28eee54173373653090049ae602695c@@	Tgclocals571b7338b8395ce87dcbaec142ca56b2@@


8go.string.hdr."bad Pq value"  0go.string."bad Pq value"0go.string."bad Pq value" bad Pq valueHgo.string.hdr."DQT has wrong length"  @go.string."DQT has wrong length"@go.string."DQT has wrong length"0*DQT has wrong lengthTgclocals06d9af95671ea7b6729978b7a9eabf4c00@@Tgclocalse14558fb58ab04949d9e3b1894ce3d1800

Hgo.string.hdr."DRI has wrong length"  @go.string."DRI has wrong length"@go.string."DRI has wrong length"0*DRI has wrong lengthTgclocals43055132c19e49592b80287ab20cd01900Tgclocalsa98a1bcb6ff825b1487e8f04a1353cd000

Tgclocals2c837ca001512a37037efd3161e20199  Tgclocals170309d2da858695ebefc5e7e0d9c320  
Tgclocals2c837ca001512a37037efd3161e20199  Tgclocals170309d2da858695ebefc5e7e0d9c320  
0>go.itab.*image.Gray.image.Image0 (a] go.itab.*image.YCbCr.image.ImageDgo.string.hdr."missing SOI marker"  <go.string."missing SOI marker"<go.string."missing SOI marker"0&missing SOI markerHgo.string.hdr."short segment length"  @go.string."short segment length"@go.string."short segment length"0*short segment length<go.string.hdr."unknown marker"  4go.string."unknown marker"4go.string."unknown marker" unknown markerDgo.string.hdr."missing SOS marker"  <go.string."missing SOS marker"<go.string."missing SOS marker"0&missing SOS markerTgclocals7b4346e7aa633ba59d4752ab7ef8969c``
   3609 @@@Tgclocalsc1e726dcfdf71b0451dc4f89c8fb06b4``
   3611 70>go.itab.*image.CMYK.image.Imagego.string.hdr."unknown color model: 4-component JPEG doesn't have Adobe APP14 metadata"  Ggo.string."unknown color model: 4-component JPEG doesn't have Adobe APP14 metadata"go.string."unknown color model: 4-component JPEG doesn't have Adobe APP14 metadata"unknown color model: 4-component JPEG doesn't have Adobe APP14 metadataTgclocals3637fd6ae715497a830f842b1624ae1bB@@(   DDDDDDDDTgclocals0fee961e2498a558a6df11b4650b5c09Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd340571620>go.itab.*image.RGBA.image.ImageTgclocals8058790f0c749ea9dfcd7ea00bfde43fXX	 0	Tgclocals38bc8d8dd5342ead4ac28dea2eabd4d9XX	Tgclocals8976d98ccb4fa7cb58d19cb1e865dee3((Tgclocals1e95b17d442eccd2f5e7013de836a738((?Dgo.string.hdr."missing SOF marker"  <go.string."missing SOF marker"<go.string."missing SOF marker"0&missing SOF markerTgclocals4297f093afcd66d0ca33049a6b775aadHH3@@Tgclocals2e0eae5f62b611a330b92994e59d0dd0HH(go.string.hdr."jpeg"   go.string."jpeg" go.string."jpeg"
   3615 jpeg0go.string.hdr."\xff\xd8"  (go.string."\xff\xd8"(go.string."\xff\xd8"Tgclocalsd288a648545c6dd73287fed249acfcae00
Tgclocalsf6bd6b3389b872033d462029172c86126go.string.hdr."unreachable"  .go.string."unreachable".go.string."unreachable" unreachableTgclocalsa6eedba5de0cd30378db327c43b9e7c5``
   3618  Tgclocals55efd81f5270628e013a8450ae15bc0a``
   3619 Hgo.string.hdr."SOS has wrong length"  @go.string."SOS has wrong length"@go.string."SOS has wrong length"0*SOS has wrong lengthgo.string.hdr."SOS length inconsistent with number of components"  1zgo.string."SOS length inconsistent with number of components"zgo.string."SOS length inconsistent with number of components"pdSOS length inconsistent with number of componentsTgo.string.hdr."unknown component selector"  Lgo.string."unknown component selector"Lgo.string."unknown component selector"@6unknown component selectorVgo.string.hdr."repeated component selector"  Ngo.string."repeated component selector"Ngo.string."repeated component selector"@8repeated component selector8go.string.hdr."bad Td value"  0go.string."bad Td value"0go.string."bad Td value" bad Td value8go.string.hdr."bad Ta value"  0go.string."bad Ta value"0go.string."bad Ta value" bad Ta value`go.string.hdr."total sampling factors too large"   Xgo.string."total sampling factors too large"Xgo.string."total sampling factors too large"PBtotal sampling factors too largeZgo.string.hdr."bad spectral selection bounds"  Rgo.string."bad spectral selection bounds"Rgo.string."bad spectral selection bounds"@<bad spectral selection boundsgo.string.hdr."progressive AC coefficients for more than one component"  7go.string."progressive AC coefficients for more than one component"go.string."progressive AC coefficients for more than one component"ppprogressive AC coefficients for more than one componentfgo.string.hdr."bad successive approximation values"  #^go.string."bad successive approximation values"^go.string."bad successive approximation values"PHbad successive approximation valuesLgo.string.hdr."excessive DC component"  Dgo.string."excessive DC component"Dgo.string."excessive DC component"0.excessive DC componentFgo.string.hdr."too many components"  >go.string."too many components">go.string."too many components"0(too many components<go.string.hdr."bad RST marker"  4go.string."bad RST marker"4go.string."bad RST marker" bad RST markerTgclocals7ab8208fb34ecdcf71b0f783afc99fc8$ Tgclocalsa5a31874a11f4f0fd8123509002399bdpp


Ngo.string.hdr."unexpected Huffman code"  Fgo.string."unexpected Huffman code"Fgo.string."unexpected Huffman code"00unexpected Huffman codeJgo.string.hdr."too many coefficients"  Bgo.string."too many coefficients"Bgo.string."too many coefficients"0,too many coefficientsTgclocals75294e921b0a789ab72263c0f3f0ab5488Tgclocalsb0c99e12f6ab47270635b29fe3f297fc88ggTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals8cf14f50ac1bf7ae2848fda35f0590ec  cTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals0b442a376425157193dde894238d0fe6((
   3627 Tgclocals1084dc26f0d346afc0dbdc8beafc25c4((			Tgclocals79414f19561456371de38e64d2ef7f7a((  Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51fa0e13d53d6bad7f86670d3edaeac6  Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocalsaefd16b155593f6f07980a05b297ad1f  Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals32bd5c6dc84e3e86dd35593b3922d3aa  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals87d20ce1b58390b294df80b886db78bf4go.string.hdr."\"\x11\x11"  ,go.string."\"\x11\x11",go.string."\"\x11\x11""8go.string.hdr."\x00\x01\x01"  0go.string."\x00\x01\x01"0go.string."\x00\x01\x01"Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals2fccd208efe70893f9ac8d682812ae72@go.string.hdr."\x00\x10\x01\x11"  8go.string."\x00\x10\x01\x11"8go.string."\x00\x10\x01\x11"
   3631 Tgclocals238b30358c77c9a64ddd391e183d8b9688Tgclocals1c702d716a8e9cf6dcd9f0eed745190788Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals7a7d3a19774678e8060af2c52613e9a0sTgclocalsa965da897cb3ae399bbbe7fa873c5f1b00Tgclocals2976f48703bf940fd2a050777411a19b00				Tgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals58e855da1e66c297419bd210b9d559e5((999Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2a1dd1e1e59d0a384c26951e316cd7e6Tgclocalsc7a897b026c07e0b0e016b982e596fb388bTgclocalsb51977347780199bdeb5c3bc2af3d367880Bgo.itab.*errors.errorString.error0>go.itab.*bufio.Writer."".writerdgo.string.hdr."jpeg: image is too large to encode"  "\go.string."jpeg: image is too large to encode"\go.string."jpeg: image is too large to encode"PFjpeg: image is too large to encodeTgclocals71fb03779b2bc6a91b9c6e08fa9fb035   00!  """& @@Tgclocalsba7003d0485cd0761ef7e09f63e8d5dcDgo.string.hdr."short Huffman data"  <go.string."short Huffman data"<go.string."short Huffman data"0&short Huffman dataNgo.string.hdr."missing 0xff00 sequence"  Fgo.string."missing 0xff00 sequence"Fgo.string."missing 0xff00 sequence"00missing 0xff00 sequenceTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb.,"".errShortHuffmanData &type."".FormatError <go.string."short Huffman data".B"".errUnsupportedSubsamplingRatio 0type."".UnsupportedError Rgo.string."luma/chroma subsampling ratio"0"".unzigtype.[64]int	
   3639  !(0)"
#*1892+$%,3:;4-&'.5<=6/7>?.""".errMissingFF00 &type."".FormatError Fgo.string."missing 0xff00 sequence"0"".bitCounttype.[256]uint80 "".unscaledQuant"type.[2][64]uint8
   3646 
(1#%(:3=<9387@H\N@DWE78PmQW_bghg>Mqypdx\egc//cB8Bcccccccccccccccccccccccccccccccccccccccccccccccccc.""".theHuffmanSpec,type.[4]"".huffmanSpec}w """.statictmp_0861p""".statictmp_0862""".statictmp_0863""".statictmp_0864. "".theHuffmanLUT*type.[4]"".huffmanLUT."".sosHeaderY0type.[]uint80
   3652 
   3653 """.statictmp_0865.""".sosHeaderYCbCr0type.[]uint80""".statictmp_08660""".statictmp_0861type.[12]uint8	
   3654 0""".statictmp_0862type.[162]uint8!1AQa"q2#BR$3br	
   3656 %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz0""".statictmp_0863type.[12]uint8	
   3657 0""".statictmp_0864type.[162]uint8!1AQaq"2B	#3Rbr
   3659 $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz0""".statictmp_0865type.[10]uint8?0""".statictmp_0866type.[14]uint8?0"".initdonetype.uint8"".fdctf"".fdct8"".(*decoder).ensureNBitsf2"".(*decoder).ensureNBits<"".(*decoder).receiveExtendf6"".(*decoder).receiveExtend6"".(*decoder).processDHTf0"".(*decoder).processDHT<"".(*decoder).decodeHuffmanf6"".(*decoder).decodeHuffman4"".(*decoder).decodeBitf."".(*decoder).decodeBit6"".(*decoder).decodeBitsf0"".(*decoder).decodeBits"".idctf"".idct."".FormatError.Errorf("".FormatError.Error8"".UnsupportedError.Errorf2"".UnsupportedError.Error*"".(*decoder).fillf$"".(*decoder).fillL"".(*decoder).unreadByteStuffedBytefF"".(*decoder).unreadByteStuffedByte2"".(*decoder).readBytef,"".(*decoder).readByteH"".(*decoder).readByteStuffedBytefB"".(*decoder).readByteStuffedByte2"".(*decoder).readFullf,"".(*decoder).readFull."".(*decoder).ignoref("".(*decoder).ignore6"".(*decoder).processSOFf0"".(*decoder).processSOF6"".(*decoder).processDQTf0"".(*decoder).processDQT6"".(*decoder).processDRIf0"".(*decoder).processDRID"".(*decoder).processApp0Markerf>"".(*decoder).processApp0MarkerF"".(*decoder).processApp14Markerf@"".(*decoder).processApp14Marker."".(*decoder).decodef("".(*decoder).decode6"".(*decoder).applyBlackf0"".(*decoder).applyBlack,"".(*decoder).isRGBf&"".(*decoder).isRGB:"".(*decoder).convertToRGBf4"".(*decoder).convertToRGB"".Decodef"".Decode$"".DecodeConfigf"".DecodeConfig"".init.1f"".init.10"".(*decoder).makeImgf*"".(*decoder).makeImg6"".(*decoder).processSOSf0"".(*decoder).processSOS."".(*decoder).refinef("".(*decoder).refine@"".(*decoder).refineNonZeroesf:"".(*decoder).refineNonZeroes"".minf"".min"".divf"".div0"".(*huffmanLUT).initf*"".(*huffmanLUT).init"".init.2f"".init.2,"".(*encoder).flushf&"".(*encoder).flush,"".(*encoder).writef&"".(*encoder).write4"".(*encoder).writeBytef."".(*encoder).writeByte*"".(*encoder).emitf$"".(*encoder).emit2"".(*encoder).emitHufff,"".(*encoder).emitHuff8"".(*encoder).emitHuffRLEf2"".(*encoder).emitHuffRLED"".(*encoder).writeMarkerHeaderf>"".(*encoder).writeMarkerHeader2"".(*encoder).writeDQTf,"".(*encoder).writeDQT4"".(*encoder).writeSOF0f."".(*encoder).writeSOF02"".(*encoder).writeDHTf,"".(*encoder).writeDHT6"".(*encoder).writeBlockf0"".(*encoder).writeBlock"".toYCbCrf"".toYCbCr"".grayToYf"".grayToY""".rgbaToYCbCrf"".rgbaToYCbCr"".scalef"".scale2"".(*encoder).writeSOSf,"".(*encoder).writeSOS"".Encodef"".Encode"".initf"".init"runtime.gcbits.01.go.string.hdr."[]int32"  &go.string."[]int32"&go.string."[]int32"[]int32type.[]int32*Ms0 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]int32"p*go.weak.type.*[]int32"runtime.zerovaluetype.int326go.typelink.[]int32	[]int32type.[]int32"type..hashfunc256  ,runtime.memhash_varlentype..eqfunc256  .runtime.memequal_varlentype..alg256  "type..hashfunc256type..eqfunc256runtime.gcbits.4go.string.hdr."jpeg.block"  
   3664 ,go.string."jpeg.block",go.string."jpeg.block" jpeg.block*go.string.hdr."block"  "go.string."block""go.string."block"block4go.string.hdr."image/jpeg"  
   3666 ,go.string."image/jpeg",go.string."image/jpeg" image/jpeg"go.importpath."".  
   3667 ,go.string."image/jpeg"type."".block,N@0type..alg256@runtime.gcbits.P4go.string.hdr."jpeg.block"ptype.*"".block"runtime.zerovaluetype.int32type.[]int32`type."".block*go.string.hdr."block""go.importpath."".type."".block6go.string.hdr."*jpeg.block"  .go.string."*jpeg.block".go.string."*jpeg.block" *jpeg.blocktype.*"".block60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*jpeg.block"p.go.weak.type.**"".block"runtime.zerovaluetype."".blockBgo.string.hdr."*jpeg.FormatError"  :go.string."*jpeg.FormatError":go.string."*jpeg.FormatError"0$*jpeg.FormatError6go.string.hdr."FormatError"  .go.string."FormatError".go.string."FormatError" FormatError*go.string.hdr."Error"  "go.string."Error""go.string."Error"ErrorTgclocalsae0a20890c9ac6bfbea3383f34532bab  Tgclocals69076ee43f1cead0792b9f36906b1b56  \go.string.hdr."func(*jpeg.FormatError) string"  Tgo.string."func(*jpeg.FormatError) string"Tgo.string."func(*jpeg.FormatError) string"@>func(*jpeg.FormatError) stringBtype.func(*"".FormatError) string30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*jpeg.FormatError) string"pTgo.weak.type.*func(*"".FormatError) string"runtime.zerovalueBtype.func(*"".FormatError) stringBtype.func(*"".FormatError) string(type.*"".FormatErrortype.stringgo.typelink.func(*jpeg.FormatError) string	func(*"".FormatError) stringBtype.func(*"".FormatError) string:go.string.hdr."func() string"  
2go.string."func() string"2go.string."func() string" func() string$type.func() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string	func() string$type.func() string(type.*"".FormatErrorOq60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*jpeg.FormatError"p:go.weak.type.**"".FormatError"runtime.zerovalue&type."".FormatError`(type.*"".FormatError(type.*"".FormatError*go.string.hdr."Error"$type.func() stringBtype.func(*"".FormatError) string."".(*FormatError).Error."".(*FormatError).Error@go.string.hdr."jpeg.FormatError"  8go.string."jpeg.FormatError"8go.string."jpeg.FormatError"0"jpeg.FormatErrorZgo.string.hdr."func(jpeg.FormatError) string"  Rgo.string."func(jpeg.FormatError) string"Rgo.string."func(jpeg.FormatError) string"@<func(jpeg.FormatError) string@type.func("".FormatError) string:m30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(jpeg.FormatError) string"pRgo.weak.type.*func("".FormatError) string"runtime.zerovalue@type.func("".FormatError) string@type.func("".FormatError) string&type."".FormatErrortype.stringgo.typelink.func(jpeg.FormatError) string	func("".FormatError) string@type.func("".FormatError) string&type."".FormatError0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."jpeg.FormatError"p(type.*"".FormatError"runtime.zerovalue`&type."".FormatError6go.string.hdr."FormatError""go.importpath."".&type."".FormatError*go.string.hdr."Error"$type.func() string@type.func("".FormatError) string."".(*FormatError).Error("".FormatError.Error type..hashfunc12  ,runtime.memhash_varlentype..eqfunc12  .runtime.memequal_varlentype..alg12   type..hashfunc12type..eqfunc124go.string.hdr."*jpeg.bits"  
   3676 ,go.string."*jpeg.bits",go.string."*jpeg.bits" *jpeg.bitstype.*"".bits+60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*jpeg.bits"p,go.weak.type.**"".bits"runtime.zerovaluetype."".bits2go.string.hdr."jpeg.bits"  	*go.string."jpeg.bits"*go.string."jpeg.bits" jpeg.bits"go.string.hdr."a"  go.string."a"go.string."a"a"go.string.hdr."m"  go.string."m"go.string."m"m"go.string.hdr."n"  go.string."n"go.string."n"n(go.string.hdr."bits"   go.string."bits" go.string."bits"
   3678 bitstype."".bitsK4&0type..alg12@runtime.gcbits.P2go.string.hdr."jpeg.bits"ptype.*"".bits"runtime.zerovaluetype."".bits"go.string.hdr."a""go.importpath."".type.uint32"go.string.hdr."m""go.importpath."".type.uint32"go.string.hdr."n""go.importpath."".type.int32`type."".bits(go.string.hdr."bits""go.importpath."".type."".bits.go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8	[]uint8type.[]uint8$type..hashfunc4096  ,runtime.memhash_varlen type..eqfunc4096  .runtime.memequal_varlentype..alg4096  $type..hashfunc4096 type..eqfunc40966go.string.hdr."[4096]uint8"  .go.string."[4096]uint8".go.string."[4096]uint8" [4096]uint8 type.[4096]uint8 0type..alg4096@runtime.gcbits.P6go.string.hdr."[4096]uint8"p2go.weak.type.*[4096]uint8"runtime.zerovaluetype.uint8type.[]uint8Fgo.typelink.[4096]uint8	[4096]uint8 type.[4096]uint8$type..hashfunc4120  ,runtime.memhash_varlen type..eqfunc4120  .runtime.memequal_varlentype..alg4120  $type..hashfunc4120 type..eqfunc4120go.string.hdr."struct { buf [4096]uint8; i int; j int; nUnreadable int }"  9go.string."struct { buf [4096]uint8; i int; j int; nUnreadable int }"go.string."struct { buf [4096]uint8; i int; j int; nUnreadable int }"tstruct { buf [4096]uint8; i int; j int; nUnreadable int }&go.string.hdr."buf"  go.string."buf"go.string."buf"buf"go.string.hdr."i"  go.string."i"go.string."i"i"go.string.hdr."j"  go.string."j"go.string."j"j6go.string.hdr."nUnreadable"  .go.string."nUnreadable".go.string."nUnreadable" nUnreadable|type.struct { buf [4096]uint8; i int; j int; nUnreadable int }Jk$0type..alg4120@runtime.gcbits.Pgo.string.hdr."struct { buf [4096]uint8; i int; j int; nUnreadable int }"pgo.weak.type.*struct { buf [4096]uint8; i int; j int; nUnreadable int }"runtime.zerovalue|type.struct { buf [4096]uint8; i int; j int; nUnreadable int }&go.string.hdr."buf""go.importpath."". type.[4096]uint8"go.string.hdr."i""go.importpath."".type.int"go.string.hdr."j""go.importpath."".type.int6go.string.hdr."nUnreadable""go.importpath."".type.intTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a6type..hashfunc."".component.type..hash."".component2type..eqfunc."".component*type..eq."".component,type..alg."".component  6type..hashfunc."".component2type..eqfunc."".component>go.string.hdr."*jpeg.component"  6go.string."*jpeg.component"6go.string."*jpeg.component"  *jpeg.component$type.*"".component"60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*jpeg.component"p6go.weak.type.**"".component"runtime.zerovalue"type."".component<go.string.hdr."jpeg.component"  4go.string."jpeg.component"4go.string."jpeg.component" jpeg.component"go.string.hdr."h"  go.string."h"go.string."h"h"go.string.hdr."v"  go.string."v"go.string."v"v"go.string.hdr."c"  go.string."c"go.string."c"c$go.string.hdr."tq"  go.string."tq"go.string."tq"tq2go.string.hdr."component"  	*go.string."component"*go.string."component" component"type."".componentf9R,0,type..alg."".component@runtime.gcbits.P<go.string.hdr."jpeg.component"p$type.*"".component"runtime.zerovalue"type."".component"go.string.hdr."h""go.importpath."".type.int"go.string.hdr."v""go.importpath."".type.int"go.string.hdr."c""go.importpath."".type.uint8$go.string.hdr."tq""go.importpath."".type.uint8`"type."".component2go.string.hdr."component""go.importpath.""."type."".component@go.string.hdr."[]jpeg.component"  8go.string."[]jpeg.component"8go.string."[]jpeg.component"0"[]jpeg.component&type.[]"".componentgP0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."[]jpeg.component"p8go.weak.type.*[]"".component"runtime.zerovalue"type."".componentVgo.typelink.[]jpeg.component	[]"".component&type.[]"".componentTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals21a8f585a14d020f181242c5256583dc  Tgclocals51af24152615272c3d9efc8538f95767  <type..hashfunc.[4]"".component4type..hash.[4]"".component8type..eqfunc.[4]"".component0type..eq.[4]"".component2type..alg.[4]"".component  <type..hashfunc.[4]"".component8type..eqfunc.[4]"".componentBgo.string.hdr."[4]jpeg.component"  :go.string."[4]jpeg.component":go.string."[4]jpeg.component"0$[4]jpeg.component(type.[4]"".component`b02type..alg.[4]"".component@runtime.gcbits.PBgo.string.hdr."[4]jpeg.component"p:go.weak.type.*[4]"".component"runtime.zerovalue"type."".component&type.[]"".componentZgo.typelink.[4]jpeg.component	[4]"".component(type.[4]"".component8go.string.hdr."[]jpeg.block"  0go.string."[]jpeg.block"0go.string."[]jpeg.block" []jpeg.blocktype.[]"".block)V0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."[]jpeg.block"p0go.weak.type.*[]"".block"runtime.zerovaluetype."".blockFgo.typelink.[]jpeg.block	[]"".blocktype.[]"".block<go.string.hdr."[][]jpeg.block"  4go.string."[][]jpeg.block"4go.string."[][]jpeg.block" [][]jpeg.block"type.[][]"".block18]o0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[][]jpeg.block"p4go.weak.type.*[][]"".block"runtime.zerovaluetype.[]"".blockNgo.typelink.[][]jpeg.block	[][]"".block"type.[][]"".block&runtime.gcbits.4902I>go.string.hdr."[4][]jpeg.block"  6go.string."[4][]jpeg.block"6go.string."[4][]jpeg.block"  [4][]jpeg.block$type.[4][]"".block`P 0 runtime.algarray@&runtime.gcbits.4902P>go.string.hdr."[4][]jpeg.block"p6go.weak.type.*[4][]"".block"runtime.zerovaluetype.[]"".block"type.[][]"".blockRgo.typelink.[4][]jpeg.block	[4][]"".block$type.[4][]"".block0go.string.hdr."[]uint16"  (go.string."[]uint16"(go.string."[]uint16" []uint16type.[]uint16 0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."[]uint16"p,go.weak.type.*[]uint16"runtime.zerovaluetype.uint16:go.typelink.[]uint16	[]uint16type.[]uint16"type..hashfunc512  ,runtime.memhash_varlentype..eqfunc512  .runtime.memequal_varlentype..alg512  "type..hashfunc512type..eqfunc5126go.string.hdr."[256]uint16"  .go.string."[256]uint16".go.string."[256]uint16" [256]uint16 type.[256]uint16x0type..alg512@runtime.gcbits.P6go.string.hdr."[256]uint16"p2go.weak.type.*[256]uint16"runtime.zerovaluetype.uint16type.[]uint16Fgo.typelink.[256]uint16	[256]uint16 type.[256]uint164go.string.hdr."[256]uint8"  
   3690 ,go.string."[256]uint8",go.string."[256]uint8" [256]uint8type.[256]uint80type..alg256@runtime.gcbits.P4go.string.hdr."[256]uint8"p0go.weak.type.*[256]uint8"runtime.zerovaluetype.uint8type.[]uint8Bgo.typelink.[256]uint8	[256]uint8type.[256]uint8 type..hashfunc64  @,runtime.memhash_varlentype..eqfunc64  @.runtime.memequal_varlentype..alg64   type..hashfunc64type..eqfunc642go.string.hdr."[16]int32"  	*go.string."[16]int32"*go.string."[16]int32" [16]int32type.[16]int32@^,0type..alg64@runtime.gcbits.P2go.string.hdr."[16]int32"p.go.weak.type.*[16]int32"runtime.zerovaluetype.int32type.[]int32>go.typelink.[16]int32	[16]int32type.[16]int32"type..hashfunc964  ,runtime.memhash_varlentype..eqfunc964  .runtime.memequal_varlentype..alg964  "type..hashfunc964type..eqfunc964:go.string.hdr."*jpeg.huffman"  
2go.string."*jpeg.huffman"2go.string."*jpeg.huffman" *jpeg.huffman type.*"".huffman#z60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*jpeg.huffman"p2go.weak.type.**"".huffman"runtime.zerovaluetype."".huffman8go.string.hdr."jpeg.huffman"  0go.string."jpeg.huffman"0go.string."jpeg.huffman" jpeg.huffman,go.string.hdr."nCodes"  $go.string."nCodes"$go.string."nCodes"nCodes&go.string.hdr."lut"  go.string."lut"go.string."lut"lut(go.string.hdr."vals"   go.string."vals" go.string."vals"
   3694 vals0go.string.hdr."minCodes"  (go.string."minCodes"(go.string."minCodes" minCodes0go.string.hdr."maxCodes"  (go.string."maxCodes"(go.string."maxCodes" maxCodes6go.string.hdr."valsIndices"  .go.string."valsIndices".go.string."valsIndices" valsIndices.go.string.hdr."huffman"  &go.string."huffman"&go.string."huffman"huffmantype."".huffman0CD80type..alg964@runtime.gcbits.P8go.string.hdr."jpeg.huffman"p type.*"".huffman"runtime.zerovaluetype."".huffman,go.string.hdr."nCodes""go.importpath."".type.int32&go.string.hdr."lut""go.importpath."". type.[256]uint16(go.string.hdr."vals""go.importpath."".type.[256]uint80go.string.hdr."minCodes""go.importpath."".type.[16]int320go.string.hdr."maxCodes""go.importpath."".type.[16]int326go.string.hdr."valsIndices""go.importpath."".type.[16]int32`type."".huffman.go.string.hdr."huffman""go.importpath."".type."".huffman<go.string.hdr."[]jpeg.huffman"  4go.string."[]jpeg.huffman"4go.string."[]jpeg.huffman" []jpeg.huffman"type.[]"".huffmanwV0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]jpeg.huffman"p4go.weak.type.*[]"".huffman"runtime.zerovaluetype."".huffmanNgo.typelink.[]jpeg.huffman	[]"".huffman"type.[]"".huffman$type..hashfunc3856  ,runtime.memhash_varlen type..eqfunc3856  .runtime.memequal_varlentype..alg3856  $type..hashfunc3856 type..eqfunc3856>go.string.hdr."[4]jpeg.huffman"  6go.string."[4]jpeg.huffman"6go.string."[4]jpeg.huffman"  [4]jpeg.huffman$type.[4]"".huffman0type..alg3856@runtime.gcbits.P>go.string.hdr."[4]jpeg.huffman"p6go.weak.type.*[4]"".huffman"runtime.zerovaluetype."".huffman"type.[]"".huffmanRgo.typelink.[4]jpeg.huffman	[4]"".huffman$type.[4]"".huffmanBgo.string.hdr."[][4]jpeg.huffman"  :go.string."[][4]jpeg.huffman":go.string."[][4]jpeg.huffman"0$[][4]jpeg.huffman(type.[][4]"".huffman&0 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."[][4]jpeg.huffman"p:go.weak.type.*[][4]"".huffman"runtime.zerovalue$type.[4]"".huffmanZgo.typelink.[][4]jpeg.huffman	[][4]"".huffman(type.[][4]"".huffman$type..hashfunc7712   ,runtime.memhash_varlen type..eqfunc7712   .runtime.memequal_varlentype..alg7712  $type..hashfunc7712 type..eqfunc7712Dgo.string.hdr."[2][4]jpeg.huffman"  <go.string."[2][4]jpeg.huffman"<go.string."[2][4]jpeg.huffman"0&[2][4]jpeg.huffman*type.[2][4]"".huffman J0type..alg7712@runtime.gcbits.PDgo.string.hdr."[2][4]jpeg.huffman"p<go.weak.type.*[2][4]"".huffman"runtime.zerovalue$type.[4]"".huffman(type.[][4]"".huffman^go.typelink.[2][4]jpeg.huffman	[2][4]"".huffman*type.[2][4]"".huffman$type..hashfunc1024  ,runtime.memhash_varlen type..eqfunc1024  .runtime.memequal_varlentype..alg1024  $type..hashfunc1024 type..eqfunc1024:go.string.hdr."[4]jpeg.block"  
2go.string."[4]jpeg.block"2go.string."[4]jpeg.block" [4]jpeg.block type.[4]"".block+0type..alg1024@runtime.gcbits.P:go.string.hdr."[4]jpeg.block"p2go.weak.type.*[4]"".block"runtime.zerovaluetype."".blocktype.[]"".blockJgo.typelink.[4]jpeg.block	[4]"".block type.[4]"".block"type..hashfunc128  ,runtime.memhash_varlentype..eqfunc128  .runtime.memequal_varlentype..alg128  "type..hashfunc128type..eqfunc1284go.string.hdr."[128]uint8"  
   3699 ,go.string."[128]uint8",go.string."[128]uint8" [128]uint8type.[128]uint8MK0type..alg128@runtime.gcbits.P4go.string.hdr."[128]uint8"p0go.weak.type.*[128]uint8"runtime.zerovaluetype.uint8type.[]uint8Bgo.typelink.[128]uint8	[128]uint8type.[128]uint8runtime.gcbits.03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e004092@8go.string.hdr."jpeg.decoder"  0go.string."jpeg.decoder"0go.string."jpeg.decoder" jpeg.decoder"go.string.hdr."r"  go.string."r"go.string."r"r*go.string.hdr."bytes"  "go.string."bytes""go.string."bytes"bytes*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."img1"   go.string."img1" go.string."img1"
   3703 img1(go.string.hdr."img3"   go.string."img3" go.string."img3"
   3704 img30go.string.hdr."blackPix"  (go.string."blackPix"(go.string."blackPix" blackPix6go.string.hdr."blackStride"  .go.string."blackStride".go.string."blackStride" blackStride$go.string.hdr."ri"  go.string."ri"go.string."ri"ri*go.string.hdr."nComp"  "go.string."nComp""go.string."nComp"nComp6go.string.hdr."progressive"  .go.string."progressive".go.string."progressive" progressive(go.string.hdr."jfif"   go.string."jfif" go.string."jfif"
   3708 jfifFgo.string.hdr."adobeTransformValid"  >go.string."adobeTransformValid">go.string."adobeTransformValid"0(adobeTransformValid<go.string.hdr."adobeTransform"  4go.string."adobeTransform"4go.string."adobeTransform" adobeTransform,go.string.hdr."eobRun"  $go.string."eobRun"$go.string."eobRun"eobRun(go.string.hdr."comp"   go.string."comp" go.string."comp"
   3709 comp4go.string.hdr."progCoeffs"  
   3710 ,go.string."progCoeffs",go.string."progCoeffs" progCoeffs(go.string.hdr."huff"   go.string."huff" go.string."huff"
   3711 huff*go.string.hdr."quant"  "go.string."quant""go.string."quant"quant&go.string.hdr."tmp"  go.string."tmp"go.string."tmp"tmp.go.string.hdr."decoder"  &go.string."decoder"&go.string."decoder"decodertype."".decoder3@= 8@HPXpxPp/p30 runtime.algarray@runtime.gcbits.03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e004092P8go.string.hdr."jpeg.decoder"p type.*"".decoder"runtime.zerovaluetype."".decoder"go.string.hdr."r""go.importpath."".type.io.Reader(go.string.hdr."bits""go.importpath."".type."".bits*go.string.hdr."bytes""go.importpath."".|type.struct { buf [4096]uint8; i int; j int; nUnreadable int }*go.string.hdr."width""go.importpath."".type.int,go.string.hdr."height""go.importpath."".type.int(go.string.hdr."img1""go.importpath."". type.*image.Gray(go.string.hdr."img3""go.importpath.""."type.*image.YCbCr0go.string.hdr."blackPix""go.importpath."".type.[]uint86go.string.hdr."blackStride""go.importpath."".type.int$go.string.hdr."ri""go.importpath."".type.int*go.string.hdr."nComp""go.importpath."".type.int6go.string.hdr."progressive""go.importpath."".type.bool	(go.string.hdr."jfif"	"go.importpath."".	type.bool	Fgo.string.hdr."adobeTransformValid"	"go.importpath."".	type.bool
   3713 <go.string.hdr."adobeTransform"
   3714 "go.importpath."".
   3715 type.uint8
   3716 ,go.string.hdr."eobRun""go.importpath."".type.uint16(go.string.hdr."comp""go.importpath."".(type.[4]"".component4go.string.hdr."progCoeffs""go.importpath."".$type.[4][]"".block(go.string.hdr."huff""go.importpath."".
*type.[2][4]"".huffman
*go.string.hdr."quant"
"go.importpath."".
 type.[4]"".block&go.string.hdr."tmp""go.importpath."".type.[128]uint8`type."".decoder.go.string.hdr."decoder""go.importpath."".type."".decoder:go.string.hdr."*jpeg.decoder"  
2go.string."*jpeg.decoder"2go.string."*jpeg.decoder" *jpeg.decoderpgo.string.hdr."func(*jpeg.decoder) (image.Image, error)"  (hgo.string."func(*jpeg.decoder) (image.Image, error)"hgo.string."func(*jpeg.decoder) (image.Image, error)"`Rfunc(*jpeg.decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)sSs30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*jpeg.decoder) (image.Image, error)"phgo.weak.type.*func(*"".decoder) (image.Image, error)"runtime.zerovalueVtype.func(*"".decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error) type.*"".decoder type.image.Imagetype.errorgo.typelink.func(*jpeg.decoder) (image.Image, error)	func(*"".decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)go.string.hdr."func(*jpeg.decoder, io.Reader, bool) (image.Image, error)"  9go.string."func(*jpeg.decoder, io.Reader, bool) (image.Image, error)"go.string."func(*jpeg.decoder, io.Reader, bool) (image.Image, error)"tfunc(*jpeg.decoder, io.Reader, bool) (image.Image, error)xtype.func(*"".decoder, io.Reader, bool) (image.Image, error)It30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.decoder, io.Reader, bool) (image.Image, error)"pgo.weak.type.*func(*"".decoder, io.Reader, bool) (image.Image, error)"runtime.zerovaluextype.func(*"".decoder, io.Reader, bool) (image.Image, error)xtype.func(*"".decoder, io.Reader, bool) (image.Image, error) type.*"".decodertype.io.Readertype.bool type.image.Imagetype.errorgo.typelink.func(*jpeg.decoder, io.Reader, bool) (image.Image, error)	func(*"".decoder, io.Reader, bool) (image.Image, error)xtype.func(*"".decoder, io.Reader, bool) (image.Image, error)bgo.string.hdr."func(*jpeg.decoder) (bool, error)"  !Zgo.string."func(*jpeg.decoder) (bool, error)"Zgo.string."func(*jpeg.decoder) (bool, error)"PDfunc(*jpeg.decoder) (bool, error)Htype.func(*"".decoder) (bool, error)'E30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*jpeg.decoder) (bool, error)"pZgo.weak.type.*func(*"".decoder) (bool, error)"runtime.zerovalueHtype.func(*"".decoder) (bool, error)Htype.func(*"".decoder) (bool, error) type.*"".decodertype.booltype.errorgo.typelink.func(*jpeg.decoder) (bool, error)	func(*"".decoder) (bool, error)Htype.func(*"".decoder) (bool, error)tgo.string.hdr."func(*jpeg.decoder, int32) (uint32, error)"  *lgo.string."func(*jpeg.decoder, int32) (uint32, error)"lgo.string."func(*jpeg.decoder, int32) (uint32, error)"`Vfunc(*jpeg.decoder, int32) (uint32, error)Ztype.func(*"".decoder, int32) (uint32, error)u30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*jpeg.decoder, int32) (uint32, error)"plgo.weak.type.*func(*"".decoder, int32) (uint32, error)"runtime.zerovalueZtype.func(*"".decoder, int32) (uint32, error)Ztype.func(*"".decoder, int32) (uint32, error) type.*"".decodertype.int32type.uint32type.errorgo.typelink.func(*jpeg.decoder, int32) (uint32, error)	func(*"".decoder, int32) (uint32, error)Ztype.func(*"".decoder, int32) (uint32, error)go.string.hdr."func(*jpeg.decoder, *jpeg.huffman) (uint8, error)"  1zgo.string."func(*jpeg.decoder, *jpeg.huffman) (uint8, error)"zgo.string."func(*jpeg.decoder, *jpeg.huffman) (uint8, error)"pdfunc(*jpeg.decoder, *jpeg.huffman) (uint8, error)dtype.func(*"".decoder, *"".huffman) (uint8, error)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.decoder, *jpeg.huffman) (uint8, error)"pvgo.weak.type.*func(*"".decoder, *"".huffman) (uint8, error)"runtime.zerovaluedtype.func(*"".decoder, *"".huffman) (uint8, error)dtype.func(*"".decoder, *"".huffman) (uint8, error) type.*"".decoder type.*"".huffmantype.uint8type.errorgo.typelink.func(*jpeg.decoder, *jpeg.huffman) (uint8, error)	func(*"".decoder, *"".huffman) (uint8, error)dtype.func(*"".decoder, *"".huffman) (uint8, error)`go.string.hdr."func(*jpeg.decoder, int32) error"   Xgo.string."func(*jpeg.decoder, int32) error"Xgo.string."func(*jpeg.decoder, int32) error"PBfunc(*jpeg.decoder, int32) errorFtype.func(*"".decoder, int32) error30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*jpeg.decoder, int32) error"pXgo.weak.type.*func(*"".decoder, int32) error"runtime.zerovalueFtype.func(*"".decoder, int32) errorFtype.func(*"".decoder, int32) error type.*"".decodertype.int32type.errorgo.typelink.func(*jpeg.decoder, int32) error	func(*"".decoder, int32) errorFtype.func(*"".decoder, int32) errorRgo.string.hdr."func(*jpeg.decoder) error"  Jgo.string."func(*jpeg.decoder) error"Jgo.string."func(*jpeg.decoder) error"@4func(*jpeg.decoder) error8type.func(*"".decoder) errorVb#30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*jpeg.decoder) error"pJgo.weak.type.*func(*"".decoder) error"runtime.zerovalue8type.func(*"".decoder) error8type.func(*"".decoder) error type.*"".decodertype.errorzgo.typelink.func(*jpeg.decoder) error	func(*"".decoder) error8type.func(*"".decoder) error\go.string.hdr."func(*jpeg.decoder, int) error"  Tgo.string."func(*jpeg.decoder, int) error"Tgo.string."func(*jpeg.decoder, int) error"@>func(*jpeg.decoder, int) errorBtype.func(*"".decoder, int) errorQk530 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*jpeg.decoder, int) error"pTgo.weak.type.*func(*"".decoder, int) error"runtime.zerovalueBtype.func(*"".decoder, int) errorBtype.func(*"".decoder, int) error type.*"".decodertype.inttype.errorgo.typelink.func(*jpeg.decoder, int) error	func(*"".decoder, int) errorBtype.func(*"".decoder, int) errorPgo.string.hdr."func(*jpeg.decoder) bool"  Hgo.string."func(*jpeg.decoder) bool"Hgo.string."func(*jpeg.decoder) bool"@2func(*jpeg.decoder) bool6type.func(*"".decoder) bool%30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*jpeg.decoder) bool"pHgo.weak.type.*func(*"".decoder) bool"runtime.zerovalue6type.func(*"".decoder) bool6type.func(*"".decoder) bool type.*"".decodertype.boolvgo.typelink.func(*jpeg.decoder) bool	func(*"".decoder) bool6type.func(*"".decoder) boolZgo.string.hdr."func(*jpeg.decoder, int, int)"  Rgo.string."func(*jpeg.decoder, int, int)"Rgo.string."func(*jpeg.decoder, int, int)"@<func(*jpeg.decoder, int, int)@type.func(*"".decoder, int, int)030 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*jpeg.decoder, int, int)"pRgo.weak.type.*func(*"".decoder, int, int)"runtime.zerovalue@type.func(*"".decoder, int, int)@type.func(*"".decoder, int, int) type.*"".decodertype.inttype.intgo.typelink.func(*jpeg.decoder, int, int)	func(*"".decoder, int, int)@type.func(*"".decoder, int, int)dgo.string.hdr."func(*jpeg.decoder) (uint8, error)"  "\go.string."func(*jpeg.decoder) (uint8, error)"\go.string."func(*jpeg.decoder) (uint8, error)"PFfunc(*jpeg.decoder) (uint8, error)Jtype.func(*"".decoder) (uint8, error))^T30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*jpeg.decoder) (uint8, error)"p\go.weak.type.*func(*"".decoder) (uint8, error)"runtime.zerovalueJtype.func(*"".decoder) (uint8, error)Jtype.func(*"".decoder) (uint8, error) type.*"".decodertype.uint8type.errorgo.typelink.func(*jpeg.decoder) (uint8, error)	func(*"".decoder) (uint8, error)Jtype.func(*"".decoder) (uint8, error)dgo.string.hdr."func(*jpeg.decoder, []uint8) error"  "\go.string."func(*jpeg.decoder, []uint8) error"\go.string."func(*jpeg.decoder, []uint8) error"PFfunc(*jpeg.decoder, []uint8) errorJtype.func(*"".decoder, []uint8) errorOV30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*jpeg.decoder, []uint8) error"p\go.weak.type.*func(*"".decoder, []uint8) error"runtime.zerovalueJtype.func(*"".decoder, []uint8) errorJtype.func(*"".decoder, []uint8) error type.*"".decodertype.[]uint8type.errorgo.typelink.func(*jpeg.decoder, []uint8) error	func(*"".decoder, []uint8) errorJtype.func(*"".decoder, []uint8) errorrgo.string.hdr."func(*jpeg.decoder, uint8) (int32, error)"  )jgo.string."func(*jpeg.decoder, uint8) (int32, error)"jgo.string."func(*jpeg.decoder, uint8) (int32, error)"`Tfunc(*jpeg.decoder, uint8) (int32, error)Xtype.func(*"".decoder, uint8) (int32, error)J30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*jpeg.decoder, uint8) (int32, error)"pjgo.weak.type.*func(*"".decoder, uint8) (int32, error)"runtime.zerovalueXtype.func(*"".decoder, uint8) (int32, error)Xtype.func(*"".decoder, uint8) (int32, error) type.*"".decodertype.uint8type.int32type.errorgo.typelink.func(*jpeg.decoder, uint8) (int32, error)	func(*"".decoder, uint8) (int32, error)Xtype.func(*"".decoder, uint8) (int32, error)go.string.hdr."func(*jpeg.decoder, *jpeg.block, *jpeg.huffman, int32, int32, int32) error"  Jgo.string."func(*jpeg.decoder, *jpeg.block, *jpeg.huffman, int32, int32, int32) error"go.string."func(*jpeg.decoder, *jpeg.block, *jpeg.huffman, int32, int32, int32) error"func(*jpeg.decoder, *jpeg.block, *jpeg.huffman, int32, int32, int32) errortype.func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) errorb30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.decoder, *jpeg.block, *jpeg.huffman, int32, int32, int32) error"pgo.weak.type.*func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) error"runtime.zerovaluetype.func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) errortype.func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) error type.*"".decodertype.*"".block type.*"".huffmantype.int32type.int32type.int32type.errorgo.typelink.func(*jpeg.decoder, *jpeg.block, *jpeg.huffman, int32, int32, int32) error	func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) errortype.func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) errorgo.string.hdr."func(*jpeg.decoder, *jpeg.block, int32, int32, int32, int32) (int32, error)"  Kgo.string."func(*jpeg.decoder, *jpeg.block, int32, int32, int32, int32) (int32, error)"go.string."func(*jpeg.decoder, *jpeg.block, int32, int32, int32, int32) (int32, error)"func(*jpeg.decoder, *jpeg.block, int32, int32, int32, int32) (int32, error)type.func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.decoder, *jpeg.block, int32, int32, int32, int32) (int32, error)"pgo.weak.type.*func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error)"runtime.zerovaluetype.func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error)type.func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error) type.*"".decodertype.*"".blocktype.int32type.int32type.int32type.int32type.int32type.errorgo.typelink.func(*jpeg.decoder, *jpeg.block, int32, int32, int32, int32) (int32, error)	func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error)type.func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error)Fgo.string.hdr."func(*jpeg.decoder)"  >go.string."func(*jpeg.decoder)">go.string."func(*jpeg.decoder)"0(func(*jpeg.decoder),type.func(*"".decoder)U<30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func(*jpeg.decoder)"p>go.weak.type.*func(*"".decoder)"runtime.zerovalue,type.func(*"".decoder),type.func(*"".decoder) type.*"".decoderbgo.typelink.func(*jpeg.decoder)	func(*"".decoder),type.func(*"".decoder)4go.string.hdr."applyBlack"  
   3732 ,go.string."applyBlack",go.string."applyBlack" applyBlackVgo.string.hdr."func() (image.Image, error)"  Ngo.string."func() (image.Image, error)"Ngo.string."func() (image.Image, error)"@8func() (image.Image, error)@type.func() (image.Image, error)v~30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func() (image.Image, error)"pRgo.weak.type.*func() (image.Image, error)"runtime.zerovalue@type.func() (image.Image, error)@type.func() (image.Image, error) type.image.Imagetype.errorgo.typelink.func() (image.Image, error)	func() (image.Image, error)@type.func() (image.Image, error)8go.string.hdr."convertToRGB"  0go.string."convertToRGB"0go.string."convertToRGB" convertToRGB,go.string.hdr."decode"  $go.string."decode"$go.string."decode"decodetgo.string.hdr."func(io.Reader, bool) (image.Image, error)"  *lgo.string."func(io.Reader, bool) (image.Image, error)"lgo.string."func(io.Reader, bool) (image.Image, error)"`Vfunc(io.Reader, bool) (image.Image, error)^type.func(io.Reader, bool) (image.Image, error)b30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(io.Reader, bool) (image.Image, error)"ppgo.weak.type.*func(io.Reader, bool) (image.Image, error)"runtime.zerovalue^type.func(io.Reader, bool) (image.Image, error)^type.func(io.Reader, bool) (image.Image, error)type.io.Readertype.bool type.image.Imagetype.errorgo.typelink.func(io.Reader, bool) (image.Image, error)	func(io.Reader, bool) (image.Image, error)^type.func(io.Reader, bool) (image.Image, error)2go.string.hdr."decodeBit"  	*go.string."decodeBit"*go.string."decodeBit" decodeBitHgo.string.hdr."func() (bool, error)"  @go.string."func() (bool, error)"@go.string."func() (bool, error)"0*func() (bool, error)2type.func() (bool, error)D-30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func() (bool, error)"pDgo.weak.type.*func() (bool, error)"runtime.zerovalue2type.func() (bool, error)2type.func() (bool, error)type.booltype.errorjgo.typelink.func() (bool, error)	func() (bool, error)2type.func() (bool, error)4go.string.hdr."decodeBits"  
   3734 ,go.string."decodeBits",go.string."decodeBits" decodeBitsVgo.string.hdr."func(int32) (uint32, error)"  Ngo.string."func(int32) (uint32, error)"Ngo.string."func(int32) (uint32, error)"@8func(int32) (uint32, error)@type.func(int32) (uint32, error)a30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int32) (uint32, error)"pRgo.weak.type.*func(int32) (uint32, error)"runtime.zerovalue@type.func(int32) (uint32, error)@type.func(int32) (uint32, error)type.int32type.uint32type.errorgo.typelink.func(int32) (uint32, error)	func(int32) (uint32, error)@type.func(int32) (uint32, error):go.string.hdr."decodeHuffman"  
2go.string."decodeHuffman"2go.string."decodeHuffman" decodeHuffmandgo.string.hdr."func(*jpeg.huffman) (uint8, error)"  "\go.string."func(*jpeg.huffman) (uint8, error)"\go.string."func(*jpeg.huffman) (uint8, error)"PFfunc(*jpeg.huffman) (uint8, error)Jtype.func(*"".huffman) (uint8, error) lP30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*jpeg.huffman) (uint8, error)"p\go.weak.type.*func(*"".huffman) (uint8, error)"runtime.zerovalueJtype.func(*"".huffman) (uint8, error)Jtype.func(*"".huffman) (uint8, error) type.*"".huffmantype.uint8type.errorgo.typelink.func(*jpeg.huffman) (uint8, error)	func(*"".huffman) (uint8, error)Jtype.func(*"".huffman) (uint8, error)6go.string.hdr."ensureNBits"  .go.string."ensureNBits".go.string."ensureNBits" ensureNBitsBgo.string.hdr."func(int32) error"  :go.string."func(int32) error":go.string."func(int32) error"0$func(int32) error,type.func(int32) error?z230 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(int32) error"p>go.weak.type.*func(int32) error"runtime.zerovalue,type.func(int32) error,type.func(int32) errortype.int32type.error^go.typelink.func(int32) error	func(int32) error,type.func(int32) error(go.string.hdr."fill"   go.string."fill" go.string."fill"
   3737 fill8go.string.hdr."func() error"  0go.string."func() error"0go.string."func() error" func() error"type.func() error30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error	func() error"type.func() error,go.string.hdr."ignore"  $go.string."ignore"$go.string."ignore"ignore>go.string.hdr."func(int) error"  6go.string."func(int) error"6go.string."func(int) error"  func(int) error(type.func(int) error&30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(int) error"p:go.weak.type.*func(int) error"runtime.zerovalue(type.func(int) error(type.func(int) errortype.inttype.errorVgo.typelink.func(int) error	func(int) error(type.func(int) error*go.string.hdr."isRGB"  "go.string."isRGB""go.string."isRGB"isRGB6go.string.hdr."func() bool"  .go.string."func() bool".go.string."func() bool" func() bool type.func() boolTx30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func() bool"p2go.weak.type.*func() bool"runtime.zerovalue type.func() bool type.func() booltype.boolFgo.typelink.func() bool	func() bool type.func() bool.go.string.hdr."makeImg"  &go.string."makeImg"&go.string."makeImg"makeImg<go.string.hdr."func(int, int)"  4go.string."func(int, int)"4go.string."func(int, int)" func(int, int)&type.func(int, int)%30 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."func(int, int)"p8go.weak.type.*func(int, int)"runtime.zerovalue&type.func(int, int)&type.func(int, int)type.inttype.intRgo.typelink.func(int, int)	func(int, int)&type.func(int, int)Bgo.string.hdr."processApp0Marker"  :go.string."processApp0Marker":go.string."processApp0Marker"0$processApp0MarkerDgo.string.hdr."processApp14Marker"  <go.string."processApp14Marker"<go.string."processApp14Marker"0&processApp14Marker4go.string.hdr."processDHT"  
   3741 ,go.string."processDHT",go.string."processDHT" processDHT4go.string.hdr."processDQT"  
   3742 ,go.string."processDQT",go.string."processDQT" processDQT4go.string.hdr."processDRI"  
   3743 ,go.string."processDRI",go.string."processDRI" processDRI4go.string.hdr."processSOF"  
   3744 ,go.string."processSOF",go.string."processSOF" processSOF4go.string.hdr."processSOS"  
   3745 ,go.string."processSOS",go.string."processSOS" processSOS0go.string.hdr."readByte"  (go.string."readByte"(go.string."readByte" readByteJgo.string.hdr."func() (uint8, error)"  Bgo.string."func() (uint8, error)"Bgo.string."func() (uint8, error)"0,func() (uint8, error)4type.func() (uint8, error)T30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func() (uint8, error)"pFgo.weak.type.*func() (uint8, error)"runtime.zerovalue4type.func() (uint8, error)4type.func() (uint8, error)type.uint8type.errorngo.typelink.func() (uint8, error)	func() (uint8, error)4type.func() (uint8, error)Fgo.string.hdr."readByteStuffedByte"  >go.string."readByteStuffedByte">go.string."readByteStuffedByte"0(readByteStuffedByte0go.string.hdr."readFull"  (go.string."readFull"(go.string."readFull" readFullFgo.string.hdr."func([]uint8) error"  >go.string."func([]uint8) error">go.string."func([]uint8) error"0(func([]uint8) error0type.func([]uint8) error_[:30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func([]uint8) error"pBgo.weak.type.*func([]uint8) error"runtime.zerovalue0type.func([]uint8) error0type.func([]uint8) errortype.[]uint8type.errorfgo.typelink.func([]uint8) error	func([]uint8) error0type.func([]uint8) error:go.string.hdr."receiveExtend"  
2go.string."receiveExtend"2go.string."receiveExtend" receiveExtendTgo.string.hdr."func(uint8) (int32, error)"  Lgo.string."func(uint8) (int32, error)"Lgo.string."func(uint8) (int32, error)"@6func(uint8) (int32, error)>type.func(uint8) (int32, error)a[30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(uint8) (int32, error)"pPgo.weak.type.*func(uint8) (int32, error)"runtime.zerovalue>type.func(uint8) (int32, error)>type.func(uint8) (int32, error)type.uint8type.int32type.errorgo.typelink.func(uint8) (int32, error)	func(uint8) (int32, error)>type.func(uint8) (int32, error),go.string.hdr."refine"  $go.string."refine"$go.string."refine"refinego.string.hdr."func(*jpeg.block, *jpeg.huffman, int32, int32, int32) error"  ;go.string."func(*jpeg.block, *jpeg.huffman, int32, int32, int32) error"go.string."func(*jpeg.block, *jpeg.huffman, int32, int32, int32) error"xfunc(*jpeg.block, *jpeg.huffman, int32, int32, int32) errorxtype.func(*"".block, *"".huffman, int32, int32, int32) error430 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.block, *jpeg.huffman, int32, int32, int32) error"pgo.weak.type.*func(*"".block, *"".huffman, int32, int32, int32) error"runtime.zerovaluextype.func(*"".block, *"".huffman, int32, int32, int32) errorxtype.func(*"".block, *"".huffman, int32, int32, int32) errortype.*"".block type.*"".huffmantype.int32type.int32type.int32type.errorgo.typelink.func(*jpeg.block, *jpeg.huffman, int32, int32, int32) error	func(*"".block, *"".huffman, int32, int32, int32) errorxtype.func(*"".block, *"".huffman, int32, int32, int32) error>go.string.hdr."refineNonZeroes"  6go.string."refineNonZeroes"6go.string."refineNonZeroes"  refineNonZeroesgo.string.hdr."func(*jpeg.block, int32, int32, int32, int32) (int32, error)"  <go.string."func(*jpeg.block, int32, int32, int32, int32) (int32, error)"go.string."func(*jpeg.block, int32, int32, int32, int32) (int32, error)"zfunc(*jpeg.block, int32, int32, int32, int32) (int32, error)~type.func(*"".block, int32, int32, int32, int32) (int32, error){30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.block, int32, int32, int32, int32) (int32, error)"pgo.weak.type.*func(*"".block, int32, int32, int32, int32) (int32, error)"runtime.zerovalue~type.func(*"".block, int32, int32, int32, int32) (int32, error)~type.func(*"".block, int32, int32, int32, int32) (int32, error)type.*"".blocktype.int32type.int32type.int32type.int32type.int32type.errorgo.typelink.func(*jpeg.block, int32, int32, int32, int32) (int32, error)	func(*"".block, int32, int32, int32, int32) (int32, error)~type.func(*"".block, int32, int32, int32, int32) (int32, error)Jgo.string.hdr."unreadByteStuffedByte"  Bgo.string."unreadByteStuffedByte"Bgo.string."unreadByteStuffedByte"0,unreadByteStuffedByte,go.string.hdr."func()"  $go.string."func()"$go.string."func()"func()type.func()30 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."func()"p(go.weak.type.*func()"runtime.zerovaluetype.func()type.func()2go.typelink.func()	func()type.func() type.*"".decoderC2960 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*jpeg.decoder"p2go.weak.type.**"".decoder"runtime.zerovaluetype."".decoder` type.*"".decoder type.*"".decoder4go.string.hdr."applyBlack""go.importpath."".@type.func() (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)0"".(*decoder).applyBlack0"".(*decoder).applyBlack8go.string.hdr."convertToRGB""go.importpath."".@type.func() (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)4"".(*decoder).convertToRGB4"".(*decoder).convertToRGB,go.string.hdr."decode""go.importpath."".^type.func(io.Reader, bool) (image.Image, error)xtype.func(*"".decoder, io.Reader, bool) (image.Image, error)("".(*decoder).decode("".(*decoder).decode2go.string.hdr."decodeBit""go.importpath."".2type.func() (bool, error)Htype.func(*"".decoder) (bool, error)."".(*decoder).decodeBit."".(*decoder).decodeBit4go.string.hdr."decodeBits""go.importpath."".@type.func(int32) (uint32, error)Ztype.func(*"".decoder, int32) (uint32, error)0"".(*decoder).decodeBits0"".(*decoder).decodeBits:go.string.hdr."decodeHuffman""go.importpath."".Jtype.func(*"".huffman) (uint8, error)dtype.func(*"".decoder, *"".huffman) (uint8, error)6"".(*decoder).decodeHuffman6"".(*decoder).decodeHuffman6go.string.hdr."ensureNBits""go.importpath."".,type.func(int32) errorFtype.func(*"".decoder, int32) error2"".(*decoder).ensureNBits2"".(*decoder).ensureNBits(go.string.hdr."fill""go.importpath.""."type.func() error8type.func(*"".decoder) error$"".(*decoder).fill$"".(*decoder).fill,go.string.hdr."ignore""go.importpath."".(type.func(int) errorBtype.func(*"".decoder, int) error("".(*decoder).ignore("".(*decoder).ignore*go.string.hdr."isRGB""go.importpath."". type.func() bool	6type.func(*"".decoder) bool	&"".(*decoder).isRGB	&"".(*decoder).isRGB	.go.string.hdr."makeImg"	"go.importpath."".	&type.func(int, int)	@type.func(*"".decoder, int, int)	*"".(*decoder).makeImg
   3747 *"".(*decoder).makeImg
   3748 Bgo.string.hdr."processApp0Marker"
   3749 "go.importpath."".
   3750 (type.func(int) error
   3751 Btype.func(*"".decoder, int) error
   3752 >"".(*decoder).processApp0Marker
   3753 >"".(*decoder).processApp0Marker
   3754 Dgo.string.hdr."processApp14Marker""go.importpath."".(type.func(int) errorBtype.func(*"".decoder, int) error@"".(*decoder).processApp14Marker@"".(*decoder).processApp14Marker4go.string.hdr."processDHT""go.importpath."".(type.func(int) errorBtype.func(*"".decoder, int) error0"".(*decoder).processDHT0"".(*decoder).processDHT4go.string.hdr."processDQT""go.importpath."".(type.func(int) errorBtype.func(*"".decoder, int) error0"".(*decoder).processDQT
0"".(*decoder).processDQT
4go.string.hdr."processDRI"
"go.importpath."".
(type.func(int) error
Btype.func(*"".decoder, int) error
0"".(*decoder).processDRI
0"".(*decoder).processDRI
4go.string.hdr."processSOF""go.importpath."".(type.func(int) errorBtype.func(*"".decoder, int) error0"".(*decoder).processSOF0"".(*decoder).processSOF4go.string.hdr."processSOS""go.importpath."".(type.func(int) errorBtype.func(*"".decoder, int) error0"".(*decoder).processSOS0"".(*decoder).processSOS0go.string.hdr."readByte""go.importpath."".4type.func() (uint8, error)Jtype.func(*"".decoder) (uint8, error),"".(*decoder).readByte,"".(*decoder).readByteFgo.string.hdr."readByteStuffedByte""go.importpath."".4type.func() (uint8, error)Jtype.func(*"".decoder) (uint8, error)B"".(*decoder).readByteStuffedByteB"".(*decoder).readByteStuffedByte0go.string.hdr."readFull""go.importpath."".0type.func([]uint8) errorJtype.func(*"".decoder, []uint8) error,"".(*decoder).readFull,"".(*decoder).readFull:go.string.hdr."receiveExtend""go.importpath."".>type.func(uint8) (int32, error)Xtype.func(*"".decoder, uint8) (int32, error)6"".(*decoder).receiveExtend6"".(*decoder).receiveExtend,go.string.hdr."refine""go.importpath."".xtype.func(*"".block, *"".huffman, int32, int32, int32) errortype.func(*"".decoder, *"".block, *"".huffman, int32, int32, int32) error("".(*decoder).refine("".(*decoder).refine>go.string.hdr."refineNonZeroes""go.importpath."".~type.func(*"".block, int32, int32, int32, int32) (int32, error)type.func(*"".decoder, *"".block, int32, int32, int32, int32) (int32, error):"".(*decoder).refineNonZeroes:"".(*decoder).refineNonZeroesJgo.string.hdr."unreadByteStuffedByte""go.importpath."".type.func(),type.func(*"".decoder)F"".(*decoder).unreadByteStuffedByteF"".(*decoder).unreadByteStuffedByteLgo.string.hdr."*jpeg.UnsupportedError"  Dgo.string."*jpeg.UnsupportedError"Dgo.string."*jpeg.UnsupportedError"0.*jpeg.UnsupportedError@go.string.hdr."UnsupportedError"  8go.string."UnsupportedError"8go.string."UnsupportedError"0"UnsupportedErrorTgclocalsae0a20890c9ac6bfbea3383f34532bab  Tgclocals69076ee43f1cead0792b9f36906b1b56  fgo.string.hdr."func(*jpeg.UnsupportedError) string"  #^go.string."func(*jpeg.UnsupportedError) string"^go.string."func(*jpeg.UnsupportedError) string"PHfunc(*jpeg.UnsupportedError) stringLtype.func(*"".UnsupportedError) string'	30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*jpeg.UnsupportedError) string"p^go.weak.type.*func(*"".UnsupportedError) string"runtime.zerovalueLtype.func(*"".UnsupportedError) stringLtype.func(*"".UnsupportedError) string2type.*"".UnsupportedErrortype.stringgo.typelink.func(*jpeg.UnsupportedError) string	func(*"".UnsupportedError) stringLtype.func(*"".UnsupportedError) string2type.*"".UnsupportedError-D60 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."*jpeg.UnsupportedError"pDgo.weak.type.**"".UnsupportedError"runtime.zerovalue0type."".UnsupportedError`2type.*"".UnsupportedError2type.*"".UnsupportedError*go.string.hdr."Error"$type.func() stringLtype.func(*"".UnsupportedError) string8"".(*UnsupportedError).Error8"".(*UnsupportedError).ErrorJgo.string.hdr."jpeg.UnsupportedError"  Bgo.string."jpeg.UnsupportedError"Bgo.string."jpeg.UnsupportedError"0,jpeg.UnsupportedErrordgo.string.hdr."func(jpeg.UnsupportedError) string"  "\go.string."func(jpeg.UnsupportedError) string"\go.string."func(jpeg.UnsupportedError) string"PFfunc(jpeg.UnsupportedError) stringJtype.func("".UnsupportedError) stringPg30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(jpeg.UnsupportedError) string"p\go.weak.type.*func("".UnsupportedError) string"runtime.zerovalueJtype.func("".UnsupportedError) stringJtype.func("".UnsupportedError) string0type."".UnsupportedErrortype.stringgo.typelink.func(jpeg.UnsupportedError) string	func("".UnsupportedError) stringJtype.func("".UnsupportedError) string0type."".UnsupportedError0 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."jpeg.UnsupportedError"p2type.*"".UnsupportedError"runtime.zerovalue`0type."".UnsupportedError@go.string.hdr."UnsupportedError""go.importpath."".0type."".UnsupportedError*go.string.hdr."Error"$type.func() stringJtype.func("".UnsupportedError) string8"".(*UnsupportedError).Error2"".UnsupportedError.Errordgo.string.hdr."struct { src []uint8; stride int }"  "\go.string."struct { src []uint8; stride int }"\go.string."struct { src []uint8; stride int }"PFstruct { src []uint8; stride int }&go.string.hdr."src"  go.string."src"go.string."src"src,go.string.hdr."stride"  $go.string."stride"$go.string."stride"strideNtype.struct { src []uint8; stride int } [0 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."struct { src []uint8; stride int }"p`go.weak.type.*struct { src []uint8; stride int }"runtime.zerovalueNtype.struct { src []uint8; stride int }&go.string.hdr."src""go.importpath."".type.[]uint8,go.string.hdr."stride""go.importpath."".type.inthgo.string.hdr."[]struct { src []uint8; stride int }"  $`go.string."[]struct { src []uint8; stride int }"`go.string."[]struct { src []uint8; stride int }"PJ[]struct { src []uint8; stride int }Rtype.[]struct { src []uint8; stride int }0 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."[]struct { src []uint8; stride int }"pdgo.weak.type.*[]struct { src []uint8; stride int }"runtime.zerovalueNtype.struct { src []uint8; stride int }go.typelink.[]struct { src []uint8; stride int }	[]struct { src []uint8; stride int }Rtype.[]struct { src []uint8; stride int }&runtime.gcbits.1111jgo.string.hdr."[4]struct { src []uint8; stride int }"  %bgo.string."[4]struct { src []uint8; stride int }"bgo.string."[4]struct { src []uint8; stride int }"PL[4]struct { src []uint8; stride int }Ttype.[4]struct { src []uint8; stride int }hg0 runtime.algarray@&runtime.gcbits.1111Pjgo.string.hdr."[4]struct { src []uint8; stride int }"pfgo.weak.type.*[4]struct { src []uint8; stride int }"runtime.zerovalueNtype.struct { src []uint8; stride int }Rtype.[]struct { src []uint8; stride int }go.typelink.[4]struct { src []uint8; stride int }	[4]struct { src []uint8; stride int }Ttype.[4]struct { src []uint8; stride int }fgo.string.hdr."*struct { src []uint8; stride int }"  #^go.string."*struct { src []uint8; stride int }"^go.string."*struct { src []uint8; stride int }"PH*struct { src []uint8; stride int }Ptype.*struct { src []uint8; stride int }360 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."*struct { src []uint8; stride int }"pbgo.weak.type.**struct { src []uint8; stride int }"runtime.zerovalueNtype.struct { src []uint8; stride int }<go.string.hdr."[]image.format"  4go.string."[]image.format"4go.string."[]image.format" []image.format&type.[]image.format2{10 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]image.format"p8go.weak.type.*[]image.format"runtime.zerovalue"type.image.formatRgo.typelink.[]image.format	[]image.format&type.[]image.formathgo.string.hdr."func(io.Reader) (image.Image, error)"  $`go.string."func(io.Reader) (image.Image, error)"`go.string."func(io.Reader) (image.Image, error)"PJfunc(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)@30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(io.Reader) (image.Image, error)"pdgo.weak.type.*func(io.Reader) (image.Image, error)"runtime.zerovalueRtype.func(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)type.io.Reader type.image.Imagetype.errorgo.typelink.func(io.Reader) (image.Image, error)	func(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)jgo.string.hdr."func(io.Reader) (image.Config, error)"  %bgo.string."func(io.Reader) (image.Config, error)"bgo.string."func(io.Reader) (image.Config, error)"PLfunc(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)3/30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(io.Reader) (image.Config, error)"pfgo.weak.type.*func(io.Reader) (image.Config, error)"runtime.zerovalueTtype.func(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)type.io.Reader"type.image.Configtype.errorgo.typelink.func(io.Reader) (image.Config, error)	func(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)type..hashfunc3  ,runtime.memhash_varlentype..eqfunc3  .runtime.memequal_varlentype..alg3  type..hashfunc3type..eqfunc3|go.string.hdr."struct { compIndex uint8; td uint8; ta uint8 }"  .tgo.string."struct { compIndex uint8; td uint8; ta uint8 }"tgo.string."struct { compIndex uint8; td uint8; ta uint8 }"`^struct { compIndex uint8; td uint8; ta uint8 }2go.string.hdr."compIndex"  	*go.string."compIndex"*go.string."compIndex" compIndex$go.string.hdr."td"  go.string."td"go.string."td"td$go.string.hdr."ta"  go.string."ta"go.string."ta"taftype.struct { compIndex uint8; td uint8; ta uint8 }	p0type..alg3@runtime.gcbits.P|go.string.hdr."struct { compIndex uint8; td uint8; ta uint8 }"pxgo.weak.type.*struct { compIndex uint8; td uint8; ta uint8 }"runtime.zerovalueftype.struct { compIndex uint8; td uint8; ta uint8 }2go.string.hdr."compIndex""go.importpath."".type.uint8$go.string.hdr."td""go.importpath."".type.uint8$go.string.hdr."ta""go.importpath."".type.uint8go.string.hdr."[]struct { compIndex uint8; td uint8; ta uint8 }"  0xgo.string."[]struct { compIndex uint8; td uint8; ta uint8 }"xgo.string."[]struct { compIndex uint8; td uint8; ta uint8 }"pb[]struct { compIndex uint8; td uint8; ta uint8 }jtype.[]struct { compIndex uint8; td uint8; ta uint8 }0 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."[]struct { compIndex uint8; td uint8; ta uint8 }"p|go.weak.type.*[]struct { compIndex uint8; td uint8; ta uint8 }"runtime.zerovalueftype.struct { compIndex uint8; td uint8; ta uint8 }go.typelink.[]struct { compIndex uint8; td uint8; ta uint8 }	[]struct { compIndex uint8; td uint8; ta uint8 }jtype.[]struct { compIndex uint8; td uint8; ta uint8 }go.string.hdr."[4]struct { compIndex uint8; td uint8; ta uint8 }"  1zgo.string."[4]struct { compIndex uint8; td uint8; ta uint8 }"zgo.string."[4]struct { compIndex uint8; td uint8; ta uint8 }"pd[4]struct { compIndex uint8; td uint8; ta uint8 }ltype.[4]struct { compIndex uint8; td uint8; ta uint8 }4#0type..alg12@runtime.gcbits.Pgo.string.hdr."[4]struct { compIndex uint8; td uint8; ta uint8 }"p~go.weak.type.*[4]struct { compIndex uint8; td uint8; ta uint8 }"runtime.zerovalueftype.struct { compIndex uint8; td uint8; ta uint8 }jtype.[]struct { compIndex uint8; td uint8; ta uint8 }go.typelink.[4]struct { compIndex uint8; td uint8; ta uint8 }	[4]struct { compIndex uint8; td uint8; ta uint8 }ltype.[4]struct { compIndex uint8; td uint8; ta uint8 }0go.string.hdr."[4]int32"  (go.string."[4]int32"(go.string."[4]int32" [4]int32type.[4]int32{0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[4]int32"p,go.weak.type.*[4]int32"runtime.zerovaluetype.int32type.[]int32:go.typelink.[4]int32	[4]int32type.[4]int320go.string.hdr."[]uint32"  (go.string."[]uint32"(go.string."[]uint32" []uint32type.[]uint320 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."[]uint32"p,go.weak.type.*[]uint32"runtime.zerovaluetype.uint32:go.typelink.[]uint32	[]uint32type.[]uint32>go.string.hdr."jpeg.huffmanLUT"  6go.string."jpeg.huffmanLUT"6go.string."jpeg.huffmanLUT"  jpeg.huffmanLUT4go.string.hdr."huffmanLUT"  
   3786 ,go.string."huffmanLUT",go.string."huffmanLUT" huffmanLUT$type."".huffmanLUT50 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."jpeg.huffmanLUT"p&type.*"".huffmanLUT"runtime.zerovaluetype.uint32`$type."".huffmanLUT4go.string.hdr."huffmanLUT""go.importpath."".$type."".huffmanLUT@go.string.hdr."*jpeg.huffmanLUT"  8go.string."*jpeg.huffmanLUT"8go.string."*jpeg.huffmanLUT"0"*jpeg.huffmanLUT2go.string.hdr."[16]uint8"  	*go.string."[16]uint8"*go.string."[16]uint8" [16]uint8type.[16]uint8}5G0 runtime.algarray@runtime.gcbits.P2go.string.hdr."[16]uint8"p.go.weak.type.*[16]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[16]uint8	[16]uint8type.[16]uint8Bgo.string.hdr."*jpeg.huffmanSpec"  :go.string."*jpeg.huffmanSpec":go.string."*jpeg.huffmanSpec"0$*jpeg.huffmanSpec(type.*"".huffmanSpec)60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*jpeg.huffmanSpec"p:go.weak.type.**"".huffmanSpec"runtime.zerovalue&type."".huffmanSpec"runtime.gcbits.04@go.string.hdr."jpeg.huffmanSpec"  8go.string."jpeg.huffmanSpec"8go.string."jpeg.huffmanSpec"0"jpeg.huffmanSpec*go.string.hdr."count"  "go.string."count""go.string."count"count*go.string.hdr."value"  "go.string."value""go.string."value"value6go.string.hdr."huffmanSpec"  .go.string."huffmanSpec".go.string."huffmanSpec" huffmanSpec&type."".huffmanSpec(6A 0 runtime.algarray@"runtime.gcbits.04P@go.string.hdr."jpeg.huffmanSpec"p(type.*"".huffmanSpec"runtime.zerovalue&type."".huffmanSpec*go.string.hdr."count""go.importpath."".type.[16]uint8*go.string.hdr."value""go.importpath."".type.[]uint8`&type."".huffmanSpec6go.string.hdr."huffmanSpec""go.importpath."".&type."".huffmanSpecpgo.string.hdr."func(*jpeg.huffmanLUT, jpeg.huffmanSpec)"  (hgo.string."func(*jpeg.huffmanLUT, jpeg.huffmanSpec)"hgo.string."func(*jpeg.huffmanLUT, jpeg.huffmanSpec)"`Rfunc(*jpeg.huffmanLUT, jpeg.huffmanSpec)Rtype.func(*"".huffmanLUT, "".huffmanSpec)-V930 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*jpeg.huffmanLUT, jpeg.huffmanSpec)"pdgo.weak.type.*func(*"".huffmanLUT, "".huffmanSpec)"runtime.zerovalueRtype.func(*"".huffmanLUT, "".huffmanSpec)Rtype.func(*"".huffmanLUT, "".huffmanSpec)&type.*"".huffmanLUT&type."".huffmanSpecgo.typelink.func(*jpeg.huffmanLUT, jpeg.huffmanSpec)	func(*"".huffmanLUT, "".huffmanSpec)Rtype.func(*"".huffmanLUT, "".huffmanSpec)(go.string.hdr."init"   go.string."init" go.string."init"
   3791 initLgo.string.hdr."func(jpeg.huffmanSpec)"  Dgo.string."func(jpeg.huffmanSpec)"Dgo.string."func(jpeg.huffmanSpec)"0.func(jpeg.huffmanSpec)2type.func("".huffmanSpec)}30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(jpeg.huffmanSpec)"pDgo.weak.type.*func("".huffmanSpec)"runtime.zerovalue2type.func("".huffmanSpec)2type.func("".huffmanSpec)&type."".huffmanSpecngo.typelink.func(jpeg.huffmanSpec)	func("".huffmanSpec)2type.func("".huffmanSpec)&type.*"".huffmanLUT60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*jpeg.huffmanLUT"p8go.weak.type.**"".huffmanLUT"runtime.zerovalue$type."".huffmanLUT`&type.*"".huffmanLUT&type.*"".huffmanLUT(go.string.hdr."init""go.importpath."".2type.func("".huffmanSpec)Rtype.func(*"".huffmanLUT, "".huffmanSpec)*"".(*huffmanLUT).init*"".(*huffmanLUT).initDgo.string.hdr."[]jpeg.huffmanSpec"  <go.string."[]jpeg.huffmanSpec"<go.string."[]jpeg.huffmanSpec"0&[]jpeg.huffmanSpec*type.[]"".huffmanSpecYj
0 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."[]jpeg.huffmanSpec"p<go.weak.type.*[]"".huffmanSpec"runtime.zerovalue&type."".huffmanSpec^go.typelink.[]jpeg.huffmanSpec	[]"".huffmanSpec*type.[]"".huffmanSpec*runtime.gcbits.841002Fgo.string.hdr."[4]jpeg.huffmanSpec"  >go.string."[4]jpeg.huffmanSpec">go.string."[4]jpeg.huffmanSpec"0([4]jpeg.huffmanSpec,type.[4]"".huffmanSpec:0 runtime.algarray@*runtime.gcbits.841002PFgo.string.hdr."[4]jpeg.huffmanSpec"p>go.weak.type.*[4]"".huffmanSpec"runtime.zerovalue&type."".huffmanSpec*type.[]"".huffmanSpecbgo.typelink.[4]jpeg.huffmanSpec	[4]"".huffmanSpec,type.[4]"".huffmanSpecTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals19b49d53e9c11805652fa4c0885cbb29  Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a  Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalse4b5616e5783a0b08ed3851f8c75ffed  Tgo.string.hdr."func([]uint8) (int, error)"  Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error)	func([]uint8) (int, error)>type.func([]uint8) (int, error)Bgo.string.hdr."func(uint8) error"  :go.string."func(uint8) error":go.string."func(uint8) error"0$func(uint8) error,type.func(uint8) errorIX30 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(uint8) error"p>go.weak.type.*func(uint8) error"runtime.zerovalue,type.func(uint8) error,type.func(uint8) errortype.uint8type.error^go.typelink.func(uint8) error	func(uint8) error,type.func(uint8) error8go.string.hdr."*jpeg.writer"  0go.string."*jpeg.writer"0go.string."*jpeg.writer" *jpeg.writertype.*"".writeref60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*jpeg.writer"p0go.weak.type.**"".writer"runtime.zerovaluetype."".writer"runtime.gcbits.036go.string.hdr."jpeg.writer"  .go.string."jpeg.writer".go.string."jpeg.writer" jpeg.writer*go.string.hdr."Flush"  "go.string."Flush""go.string."Flush"Flush*go.string.hdr."Write"  "go.string."Write""go.string."Write"Write2go.string.hdr."WriteByte"  	*go.string."WriteByte"*go.string."WriteByte" WriteByte,go.string.hdr."writer"  $go.string."writer"$go.string."writer"writertype."".writertg 0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."jpeg.writer"ptype.*"".writer"runtime.zerovaluetype."".writer*go.string.hdr."Flush""type.func() error*go.string.hdr."Write">type.func([]uint8) (int, error)2go.string.hdr."WriteByte",type.func(uint8) error`type."".writer,go.string.hdr."writer""go.importpath."".type."".writer2go.string.hdr."[64]uint8"  	*go.string."[64]uint8"*go.string."[64]uint8" [64]uint8type.[64]uint8@&@0type..alg64@runtime.gcbits.P2go.string.hdr."[64]uint8"p.go.weak.type.*[64]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[64]uint8	[64]uint8type.[64]uint86go.string.hdr."[][64]uint8"  .go.string."[][64]uint8".go.string."[][64]uint8" [][64]uint8 type.[][64]uint8U:0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."[][64]uint8"p2go.weak.type.*[][64]uint8"runtime.zerovaluetype.[64]uint8Fgo.typelink.[][64]uint8	[][64]uint8 type.[][64]uint88go.string.hdr."[2][64]uint8"  0go.string."[2][64]uint8"0go.string."[2][64]uint8" [2][64]uint8"type.[2][64]uint8,60type..alg128@runtime.gcbits.P8go.string.hdr."[2][64]uint8"p4go.weak.type.*[2][64]uint8"runtime.zerovaluetype.[64]uint8 type.[][64]uint8Jgo.typelink.[2][64]uint8	[2][64]uint8"type.[2][64]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalse85dd0d10221e69476a0daf9bc0a53b6((Tgclocals9c91d8a91ac42440a3d1507bc8d2e808((2type..hashfunc."".encoder*type..hash."".encoder.type..eqfunc."".encoder&type..eq."".encoder(type..alg."".encoder  2type..hashfunc."".encoder.type..eqfunc."".encoder"runtime.gcbits.0f8go.string.hdr."jpeg.encoder"  0go.string."jpeg.encoder"0go.string."jpeg.encoder" jpeg.encoder"go.string.hdr."w"  go.string."w"go.string."w"w&go.string.hdr."err"  go.string."err"go.string."err"err*go.string.hdr."nBits"  "go.string."nBits""go.string."nBits"nBits.go.string.hdr."encoder"  &go.string."encoder"&go.string."encoder"encodertype."".encoder <{ 04880(type..alg."".encoder@"runtime.gcbits.0fP8go.string.hdr."jpeg.encoder"p type.*"".encoder"runtime.zerovaluetype."".encoder"go.string.hdr."w""go.importpath."".type."".writer&go.string.hdr."err""go.importpath."".type.error&go.string.hdr."buf""go.importpath."".type.[16]uint8(go.string.hdr."bits""go.importpath."".type.uint32*go.string.hdr."nBits""go.importpath."".type.uint32*go.string.hdr."quant""go.importpath.""."type.[2][64]uint8`type."".encoder.go.string.hdr."encoder""go.importpath."".type."".encoder:go.string.hdr."*jpeg.encoder"  
2go.string."*jpeg.encoder"2go.string."*jpeg.encoder" *jpeg.encoderfgo.string.hdr."func(*jpeg.encoder, uint32, uint32)"  #^go.string."func(*jpeg.encoder, uint32, uint32)"^go.string."func(*jpeg.encoder, uint32, uint32)"PHfunc(*jpeg.encoder, uint32, uint32)Ltype.func(*"".encoder, uint32, uint32)30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*jpeg.encoder, uint32, uint32)"p^go.weak.type.*func(*"".encoder, uint32, uint32)"runtime.zerovalueLtype.func(*"".encoder, uint32, uint32)Ltype.func(*"".encoder, uint32, uint32) type.*"".encodertype.uint32type.uint32go.typelink.func(*jpeg.encoder, uint32, uint32)	func(*"".encoder, uint32, uint32)Ltype.func(*"".encoder, uint32, uint32)>go.string.hdr."*jpeg.huffIndex"  6go.string."*jpeg.huffIndex"6go.string."*jpeg.huffIndex"  *jpeg.huffIndex$type.*"".huffIndex60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*jpeg.huffIndex"p6go.weak.type.**"".huffIndex"runtime.zerovalue"type."".huffIndex<go.string.hdr."jpeg.huffIndex"  4go.string."jpeg.huffIndex"4go.string."jpeg.huffIndex" jpeg.huffIndex2go.string.hdr."huffIndex"  	*go.string."huffIndex"*go.string."huffIndex" huffIndex"type."".huffIndexn0 runtime.algarray@runtime.gcbits.P<go.string.hdr."jpeg.huffIndex"p$type.*"".huffIndex"runtime.zerovalue`"type."".huffIndex2go.string.hdr."huffIndex""go.importpath.""."type."".huffIndextgo.string.hdr."func(*jpeg.encoder, jpeg.huffIndex, int32)"  *lgo.string."func(*jpeg.encoder, jpeg.huffIndex, int32)"lgo.string."func(*jpeg.encoder, jpeg.huffIndex, int32)"`Vfunc(*jpeg.encoder, jpeg.huffIndex, int32)Vtype.func(*"".encoder, "".huffIndex, int32)GQ30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*jpeg.encoder, jpeg.huffIndex, int32)"phgo.weak.type.*func(*"".encoder, "".huffIndex, int32)"runtime.zerovalueVtype.func(*"".encoder, "".huffIndex, int32)Vtype.func(*"".encoder, "".huffIndex, int32) type.*"".encoder"type."".huffIndextype.int32go.typelink.func(*jpeg.encoder, jpeg.huffIndex, int32)	func(*"".encoder, "".huffIndex, int32)Vtype.func(*"".encoder, "".huffIndex, int32)go.string.hdr."func(*jpeg.encoder, jpeg.huffIndex, int32, int32)"  1zgo.string."func(*jpeg.encoder, jpeg.huffIndex, int32, int32)"zgo.string."func(*jpeg.encoder, jpeg.huffIndex, int32, int32)"pdfunc(*jpeg.encoder, jpeg.huffIndex, int32, int32)dtype.func(*"".encoder, "".huffIndex, int32, int32)330 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.encoder, jpeg.huffIndex, int32, int32)"pvgo.weak.type.*func(*"".encoder, "".huffIndex, int32, int32)"runtime.zerovaluedtype.func(*"".encoder, "".huffIndex, int32, int32)dtype.func(*"".encoder, "".huffIndex, int32, int32) type.*"".encoder"type."".huffIndextype.int32type.int32go.typelink.func(*jpeg.encoder, jpeg.huffIndex, int32, int32)	func(*"".encoder, "".huffIndex, int32, int32)dtype.func(*"".encoder, "".huffIndex, int32, int32)Fgo.string.hdr."func(*jpeg.encoder)"  >go.string."func(*jpeg.encoder)">go.string."func(*jpeg.encoder)"0(func(*jpeg.encoder),type.func(*"".encoder)f630 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func(*jpeg.encoder)"p>go.weak.type.*func(*"".encoder)"runtime.zerovalue,type.func(*"".encoder),type.func(*"".encoder) type.*"".encoderbgo.typelink.func(*jpeg.encoder)	func(*"".encoder),type.func(*"".encoder)Xgo.string.hdr."func(*jpeg.encoder, []uint8)"  Pgo.string."func(*jpeg.encoder, []uint8)"Pgo.string."func(*jpeg.encoder, []uint8)"@:func(*jpeg.encoder, []uint8)>type.func(*"".encoder, []uint8)8sR30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(*jpeg.encoder, []uint8)"pPgo.weak.type.*func(*"".encoder, []uint8)"runtime.zerovalue>type.func(*"".encoder, []uint8)>type.func(*"".encoder, []uint8) type.*"".encodertype.[]uint8go.typelink.func(*jpeg.encoder, []uint8)	func(*"".encoder, []uint8)>type.func(*"".encoder, []uint8)@go.string.hdr."*jpeg.quantIndex"  8go.string."*jpeg.quantIndex"8go.string."*jpeg.quantIndex"0"*jpeg.quantIndex&type.*"".quantIndex4r60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*jpeg.quantIndex"p8go.weak.type.**"".quantIndex"runtime.zerovalue$type."".quantIndex>go.string.hdr."jpeg.quantIndex"  6go.string."jpeg.quantIndex"6go.string."jpeg.quantIndex"  jpeg.quantIndex4go.string.hdr."quantIndex"  
   3808 ,go.string."quantIndex",go.string."quantIndex" quantIndex$type."".quantIndex0 runtime.algarray@runtime.gcbits.P>go.string.hdr."jpeg.quantIndex"p&type.*"".quantIndex"runtime.zerovalue`$type."".quantIndex4go.string.hdr."quantIndex""go.importpath."".$type."".quantIndexgo.string.hdr."func(*jpeg.encoder, *jpeg.block, jpeg.quantIndex, int32) int32"  >go.string."func(*jpeg.encoder, *jpeg.block, jpeg.quantIndex, int32) int32"go.string."func(*jpeg.encoder, *jpeg.block, jpeg.quantIndex, int32) int32"~func(*jpeg.encoder, *jpeg.block, jpeg.quantIndex, int32) int32ztype.func(*"".encoder, *"".block, "".quantIndex, int32) int32=330 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*jpeg.encoder, *jpeg.block, jpeg.quantIndex, int32) int32"pgo.weak.type.*func(*"".encoder, *"".block, "".quantIndex, int32) int32"runtime.zerovalueztype.func(*"".encoder, *"".block, "".quantIndex, int32) int32ztype.func(*"".encoder, *"".block, "".quantIndex, int32) int32 type.*"".encodertype.*"".block$type."".quantIndextype.int32type.int32go.typelink.func(*jpeg.encoder, *jpeg.block, jpeg.quantIndex, int32) int32	func(*"".encoder, *"".block, "".quantIndex, int32) int32ztype.func(*"".encoder, *"".block, "".quantIndex, int32) int32Tgo.string.hdr."func(*jpeg.encoder, uint8)"  Lgo.string."func(*jpeg.encoder, uint8)"Lgo.string."func(*jpeg.encoder, uint8)"@6func(*jpeg.encoder, uint8):type.func(*"".encoder, uint8)k30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*jpeg.encoder, uint8)"pLgo.weak.type.*func(*"".encoder, uint8)"runtime.zerovalue:type.func(*"".encoder, uint8):type.func(*"".encoder, uint8) type.*"".encodertype.uint8~go.typelink.func(*jpeg.encoder, uint8)	func(*"".encoder, uint8):type.func(*"".encoder, uint8)Pgo.string.hdr."func(*jpeg.encoder, int)"  Hgo.string."func(*jpeg.encoder, int)"Hgo.string."func(*jpeg.encoder, int)"@2func(*jpeg.encoder, int)6type.func(*"".encoder, int)ym30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*jpeg.encoder, int)"pHgo.weak.type.*func(*"".encoder, int)"runtime.zerovalue6type.func(*"".encoder, int)6type.func(*"".encoder, int) type.*"".encodertype.intvgo.typelink.func(*jpeg.encoder, int)	func(*"".encoder, int)6type.func(*"".encoder, int)^go.string.hdr."func(*jpeg.encoder, uint8, int)"  Vgo.string."func(*jpeg.encoder, uint8, int)"Vgo.string."func(*jpeg.encoder, uint8, int)"@@func(*jpeg.encoder, uint8, int)Dtype.func(*"".encoder, uint8, int))E30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*jpeg.encoder, uint8, int)"pVgo.weak.type.*func(*"".encoder, uint8, int)"runtime.zerovalueDtype.func(*"".encoder, uint8, int)Dtype.func(*"".encoder, uint8, int) type.*"".encodertype.uint8type.intgo.typelink.func(*jpeg.encoder, uint8, int)	func(*"".encoder, uint8, int)Dtype.func(*"".encoder, uint8, int)jgo.string.hdr."func(*jpeg.encoder, image.Point, int)"  %bgo.string."func(*jpeg.encoder, image.Point, int)"bgo.string."func(*jpeg.encoder, image.Point, int)"PLfunc(*jpeg.encoder, image.Point, int)Ptype.func(*"".encoder, image.Point, int)=30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*jpeg.encoder, image.Point, int)"pbgo.weak.type.*func(*"".encoder, image.Point, int)"runtime.zerovaluePtype.func(*"".encoder, image.Point, int)Ptype.func(*"".encoder, image.Point, int) type.*"".encoder type.image.Pointtype.intgo.typelink.func(*jpeg.encoder, image.Point, int)	func(*"".encoder, image.Point, int)Ptype.func(*"".encoder, image.Point, int)`go.string.hdr."func(*jpeg.encoder, image.Image)"   Xgo.string."func(*jpeg.encoder, image.Image)"Xgo.string."func(*jpeg.encoder, image.Image)"PBfunc(*jpeg.encoder, image.Image)Ftype.func(*"".encoder, image.Image)W30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*jpeg.encoder, image.Image)"pXgo.weak.type.*func(*"".encoder, image.Image)"runtime.zerovalueFtype.func(*"".encoder, image.Image)Ftype.func(*"".encoder, image.Image) type.*"".encoder type.image.Imagego.typelink.func(*jpeg.encoder, image.Image)	func(*"".encoder, image.Image)Ftype.func(*"".encoder, image.Image)(go.string.hdr."emit"   go.string."emit" go.string."emit"
   3809 emitHgo.string.hdr."func(uint32, uint32)"  @go.string."func(uint32, uint32)"@go.string."func(uint32, uint32)"0*func(uint32, uint32)2type.func(uint32, uint32)[EP30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(uint32, uint32)"pDgo.weak.type.*func(uint32, uint32)"runtime.zerovalue2type.func(uint32, uint32)2type.func(uint32, uint32)type.uint32type.uint32jgo.typelink.func(uint32, uint32)	func(uint32, uint32)2type.func(uint32, uint32)0go.string.hdr."emitHuff"  (go.string."emitHuff"(go.string."emitHuff" emitHuffVgo.string.hdr."func(jpeg.huffIndex, int32)"  Ngo.string."func(jpeg.huffIndex, int32)"Ngo.string."func(jpeg.huffIndex, int32)"@8func(jpeg.huffIndex, int32)<type.func("".huffIndex, int32)w30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(jpeg.huffIndex, int32)"pNgo.weak.type.*func("".huffIndex, int32)"runtime.zerovalue<type.func("".huffIndex, int32)<type.func("".huffIndex, int32)"type."".huffIndextype.int32go.typelink.func(jpeg.huffIndex, int32)	func("".huffIndex, int32)<type.func("".huffIndex, int32)6go.string.hdr."emitHuffRLE"  .go.string."emitHuffRLE".go.string."emitHuffRLE" emitHuffRLEdgo.string.hdr."func(jpeg.huffIndex, int32, int32)"  "\go.string."func(jpeg.huffIndex, int32, int32)"\go.string."func(jpeg.huffIndex, int32, int32)"PFfunc(jpeg.huffIndex, int32, int32)Jtype.func("".huffIndex, int32, int32)m30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(jpeg.huffIndex, int32, int32)"p\go.weak.type.*func("".huffIndex, int32, int32)"runtime.zerovalueJtype.func("".huffIndex, int32, int32)Jtype.func("".huffIndex, int32, int32)"type."".huffIndextype.int32type.int32go.typelink.func(jpeg.huffIndex, int32, int32)	func("".huffIndex, int32, int32)Jtype.func("".huffIndex, int32, int32)*go.string.hdr."flush"  "go.string."flush""go.string."flush"flush*go.string.hdr."write"  "go.string."write""go.string."write"write:go.string.hdr."func([]uint8)"  
2go.string."func([]uint8)"2go.string."func([]uint8)" func([]uint8)$type.func([]uint8){30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func([]uint8)"p6go.weak.type.*func([]uint8)"runtime.zerovalue$type.func([]uint8)$type.func([]uint8)type.[]uint8Ngo.typelink.func([]uint8)	func([]uint8)$type.func([]uint8)4go.string.hdr."writeBlock"  
   3814 ,go.string."writeBlock",go.string."writeBlock" writeBlock~go.string.hdr."func(*jpeg.block, jpeg.quantIndex, int32) int32"  /vgo.string."func(*jpeg.block, jpeg.quantIndex, int32) int32"vgo.string."func(*jpeg.block, jpeg.quantIndex, int32) int32"``func(*jpeg.block, jpeg.quantIndex, int32) int32`type.func(*"".block, "".quantIndex, int32) int32b;ou30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*jpeg.block, jpeg.quantIndex, int32) int32"prgo.weak.type.*func(*"".block, "".quantIndex, int32) int32"runtime.zerovalue`type.func(*"".block, "".quantIndex, int32) int32`type.func(*"".block, "".quantIndex, int32) int32type.*"".block$type."".quantIndextype.int32type.int32go.typelink.func(*jpeg.block, jpeg.quantIndex, int32) int32	func(*"".block, "".quantIndex, int32) int32`type.func(*"".block, "".quantIndex, int32) int322go.string.hdr."writeByte"  	*go.string."writeByte"*go.string."writeByte" writeByte6go.string.hdr."func(uint8)"  .go.string."func(uint8)".go.string."func(uint8)" func(uint8) type.func(uint8)$q30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func(uint8)"p2go.weak.type.*func(uint8)"runtime.zerovalue type.func(uint8) type.func(uint8)type.uint8Fgo.typelink.func(uint8)	func(uint8) type.func(uint8)0go.string.hdr."writeDHT"  (go.string."writeDHT"(go.string."writeDHT" writeDHT2go.string.hdr."func(int)"  	*go.string."func(int)"*go.string."func(int)" func(int)type.func(int)30 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."func(int)"p.go.weak.type.*func(int)"runtime.zerovaluetype.func(int)type.func(int)type.int>go.typelink.func(int)	func(int)type.func(int)0go.string.hdr."writeDQT"  (go.string."writeDQT"(go.string."writeDQT" writeDQTBgo.string.hdr."writeMarkerHeader"  :go.string."writeMarkerHeader":go.string."writeMarkerHeader"0$writeMarkerHeader@go.string.hdr."func(uint8, int)"  8go.string."func(uint8, int)"8go.string."func(uint8, int)"0"func(uint8, int)*type.func(uint8, int)f30 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."func(uint8, int)"p<go.weak.type.*func(uint8, int)"runtime.zerovalue*type.func(uint8, int)*type.func(uint8, int)type.uint8type.intZgo.typelink.func(uint8, int)	func(uint8, int)*type.func(uint8, int)2go.string.hdr."writeSOF0"  	*go.string."writeSOF0"*go.string."writeSOF0" writeSOF0Lgo.string.hdr."func(image.Point, int)"  Dgo.string."func(image.Point, int)"Dgo.string."func(image.Point, int)"0.func(image.Point, int)6type.func(image.Point, int)30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(image.Point, int)"pHgo.weak.type.*func(image.Point, int)"runtime.zerovalue6type.func(image.Point, int)6type.func(image.Point, int) type.image.Pointtype.intrgo.typelink.func(image.Point, int)	func(image.Point, int)6type.func(image.Point, int)0go.string.hdr."writeSOS"  (go.string."writeSOS"(go.string."writeSOS" writeSOSBgo.string.hdr."func(image.Image)"  :go.string."func(image.Image)":go.string."func(image.Image)"0$func(image.Image),type.func(image.Image)j30 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(image.Image)"p>go.weak.type.*func(image.Image)"runtime.zerovalue,type.func(image.Image),type.func(image.Image) type.image.Image^go.typelink.func(image.Image)	func(image.Image),type.func(image.Image) type.*"".encoder
   3816 
   3817 
   3818 a60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*jpeg.encoder"p2go.weak.type.**"".encoder"runtime.zerovaluetype."".encoder` type.*"".encoder type.*"".encoder(go.string.hdr."emit""go.importpath."".2type.func(uint32, uint32)Ltype.func(*"".encoder, uint32, uint32)$"".(*encoder).emit$"".(*encoder).emit0go.string.hdr."emitHuff""go.importpath."".<type.func("".huffIndex, int32)Vtype.func(*"".encoder, "".huffIndex, int32),"".(*encoder).emitHuff,"".(*encoder).emitHuff6go.string.hdr."emitHuffRLE""go.importpath."".Jtype.func("".huffIndex, int32, int32)dtype.func(*"".encoder, "".huffIndex, int32, int32)2"".(*encoder).emitHuffRLE2"".(*encoder).emitHuffRLE*go.string.hdr."flush""go.importpath."".type.func(),type.func(*"".encoder)&"".(*encoder).flush&"".(*encoder).flush*go.string.hdr."write""go.importpath."".$type.func([]uint8)>type.func(*"".encoder, []uint8)&"".(*encoder).write&"".(*encoder).write4go.string.hdr."writeBlock""go.importpath."".`type.func(*"".block, "".quantIndex, int32) int32ztype.func(*"".encoder, *"".block, "".quantIndex, int32) int320"".(*encoder).writeBlock0"".(*encoder).writeBlock2go.string.hdr."writeByte""go.importpath."". type.func(uint8):type.func(*"".encoder, uint8)."".(*encoder).writeByte."".(*encoder).writeByte0go.string.hdr."writeDHT""go.importpath."".type.func(int)6type.func(*"".encoder, int),"".(*encoder).writeDHT,"".(*encoder).writeDHT0go.string.hdr."writeDQT""go.importpath."".type.func(),type.func(*"".encoder),"".(*encoder).writeDQT,"".(*encoder).writeDQTBgo.string.hdr."writeMarkerHeader""go.importpath."".*type.func(uint8, int)	Dtype.func(*"".encoder, uint8, int)	>"".(*encoder).writeMarkerHeader	>"".(*encoder).writeMarkerHeader	2go.string.hdr."writeSOF0"	"go.importpath."".	6type.func(image.Point, int)	Ptype.func(*"".encoder, image.Point, int)	."".(*encoder).writeSOF0
   3821 ."".(*encoder).writeSOF0
   3822 0go.string.hdr."writeSOS"
   3823 "go.importpath."".
   3824 ,type.func(image.Image)
   3825 Ftype.func(*"".encoder, image.Image)
   3826 ,"".(*encoder).writeSOS
   3827 ,"".(*encoder).writeSOS<go.string.hdr."*[4]jpeg.block"  4go.string."*[4]jpeg.block"4go.string."*[4]jpeg.block" *[4]jpeg.block"type.*[4]"".blockM60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*[4]jpeg.block"p4go.weak.type.**[4]"".block"runtime.zerovalue type.[4]"".block8go.string.hdr."jpeg.Options"  0go.string."jpeg.Options"0go.string."jpeg.Options" jpeg.Options.go.string.hdr."Quality"  &go.string."Quality"&go.string."Quality"Quality.go.string.hdr."Options"  &go.string."Options"&go.string."Options"Optionstype."".Options0 runtime.algarray@runtime.gcbits.P8go.string.hdr."jpeg.Options"p type.*"".Options"runtime.zerovaluetype."".Options.go.string.hdr."Quality"type.int`type."".Options.go.string.hdr."Options""go.importpath."".type."".Options:go.string.hdr."*jpeg.Options"  
2go.string."*jpeg.Options"2go.string."*jpeg.Options" *jpeg.Options type.*"".OptionsFV*60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*jpeg.Options"p2go.weak.type.**"".Options"runtime.zerovaluetype."".Options*go.string.hdr."[]int"  "go.string."[]int""go.string."[]int"[]inttype.[]intf0 runtime.algarray@"runtime.gcbits.01P*go.string.hdr."[]int"p&go.weak.type.*[]int"runtime.zerovaluetype.int.go.typelink.[]int	[]inttype.[]int.go.string.hdr."[64]int"  &go.string."[64]int"&go.string."[64]int"[64]inttype.[64]int1@0type..alg512@runtime.gcbits.P.go.string.hdr."[64]int"p*go.weak.type.*[64]int"runtime.zerovaluetype.inttype.[]int6go.typelink.[64]int	[64]inttype.[64]intBgo.string.hdr."[]jpeg.huffmanLUT"  :go.string."[]jpeg.huffmanLUT":go.string."[]jpeg.huffmanLUT"0$[]jpeg.huffmanLUT(type.[]"".huffmanLUTJx0 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."[]jpeg.huffmanLUT"p:go.weak.type.*[]"".huffmanLUT"runtime.zerovalue$type."".huffmanLUTZgo.typelink.[]jpeg.huffmanLUT	[]"".huffmanLUT(type.[]"".huffmanLUTDgo.string.hdr."[4]jpeg.huffmanLUT"  <go.string."[4]jpeg.huffmanLUT"<go.string."[4]jpeg.huffmanLUT"0&[4]jpeg.huffmanLUT*type.[4]"".huffmanLUT`PF0 runtime.algarray@&runtime.gcbits.4902PDgo.string.hdr."[4]jpeg.huffmanLUT"p<go.weak.type.*[4]"".huffmanLUT"runtime.zerovalue$type."".huffmanLUT(type.[]"".huffmanLUT^go.typelink.[4]jpeg.huffmanLUT	[4]"".huffmanLUT*type.[4]"".huffmanLUT2go.string.hdr."[12]uint8"  	*go.string."[12]uint8"*go.string."[12]uint8" [12]uint8type.[12]uint8~x0type..alg12@runtime.gcbits.P2go.string.hdr."[12]uint8"p.go.weak.type.*[12]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[12]uint8	[12]uint8type.[12]uint8"type..hashfunc162  ,runtime.memhash_varlentype..eqfunc162  .runtime.memequal_varlentype..alg162  "type..hashfunc162type..eqfunc1624go.string.hdr."[162]uint8"  
   3837 ,go.string."[162]uint8",go.string."[162]uint8" [162]uint8type.[162]uint8J0type..alg162@runtime.gcbits.P4go.string.hdr."[162]uint8"p0go.weak.type.*[162]uint8"runtime.zerovaluetype.uint8type.[]uint8Bgo.typelink.[162]uint8	[162]uint8type.[162]uint8 type..hashfunc10  
   3838 ,runtime.memhash_varlentype..eqfunc10  
   3839 .runtime.memequal_varlentype..alg10   type..hashfunc10type..eqfunc102go.string.hdr."[10]uint8"  	*go.string."[10]uint8"*go.string."[10]uint8" [10]uint8type.[10]uint8
   3840 vx
   3841 0type..alg10@runtime.gcbits.P2go.string.hdr."[10]uint8"p.go.weak.type.*[10]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[10]uint8	[10]uint8type.[10]uint8 type..hashfunc14  ,runtime.memhash_varlentype..eqfunc14  .runtime.memequal_varlentype..alg14   type..hashfunc14type..eqfunc142go.string.hdr."[14]uint8"  	*go.string."[14]uint8"*go.string."[14]uint8" [14]uint8type.[14]uint8'0type..alg14@runtime.gcbits.P2go.string.hdr."[14]uint8"p.go.weak.type.*[14]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[14]uint8	[14]uint8type.[14]uint8Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a  Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalse4b5616e5783a0b08ed3851f8c75ffed  8go.string.hdr."*jpeg.Reader"  0go.string."*jpeg.Reader"0go.string."*jpeg.Reader" *jpeg.Readertype.*"".ReaderGQ'60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*jpeg.Reader"p0go.weak.type.**"".Reader"runtime.zerovaluetype."".Reader6go.string.hdr."jpeg.Reader"  .go.string."jpeg.Reader".go.string."jpeg.Reader" jpeg.Reader(go.string.hdr."Read"   go.string."Read" go.string."Read"
   3845 Read0go.string.hdr."ReadByte"  (go.string."ReadByte"(go.string."ReadByte" ReadByte,go.string.hdr."Reader"  $go.string."Reader"$go.string."Reader"Readertype."".Reader0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."jpeg.Reader"ptype.*"".Reader"runtime.zerovaluetype."".Reader(go.string.hdr."Read">type.func([]uint8) (int, error)0go.string.hdr."ReadByte"4type.func() (uint8, error)`type."".Reader,go.string.hdr."Reader""go.importpath."".type."".ReaderDgo.string.hdr."*[4]jpeg.component"  <go.string."*[4]jpeg.component"<go.string."*[4]jpeg.component"0&*[4]jpeg.component*type.*[4]"".componentT60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*[4]jpeg.component"p<go.weak.type.**[4]"".component"runtime.zerovalue(type.[4]"".component.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime"$go.string.hdr."io"  go.string."io"go.string."io"io"go.importpath.io.  go.string."io",go.string.hdr."errors"  $go.string."errors"$go.string."errors"errors*go.importpath.errors.  $go.string."errors"*go.string.hdr."image"  "go.string."image""go.string."image"image(go.importpath.image.  "go.string."image"*go.string.hdr."bufio"  "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio.  "go.string."bufio"6go.string.hdr."image/color"  .go.string."image/color".go.string."image/color" image/color4go.importpath.image/color.  .go.string."image/color"Pgo.string.hdr."image/internal/imageutil"  Hgo.string."image/internal/imageutil"Hgo.string."image/internal/imageutil"@2image/internal/imageutilNgo.importpath.image/internal/imageutil.  Hgo.string."image/internal/imageutil"4"".(*FormatError).Errorf."".(*FormatError).Error4type..hash."".componentf.type..hash."".component0type..eq."".componentf*type..eq."".component:type..hash.[4]"".componentf4type..hash.[4]"".component6type..eq.[4]"".componentf0type..eq.[4]"".component>"".(*UnsupportedError).Errorf8"".(*UnsupportedError).Error$"".writer.Flushf"".writer.Flush$"".writer.Writef"".writer.Write,"".writer.WriteBytef&"".writer.WriteByte0type..hash."".encoderf*type..hash."".encoder,type..eq."".encoderf&type..eq."".encoder""".Reader.Readf"".Reader.Read*"".Reader.ReadBytef$"".Reader.ReadByte"runtime.zerovaluego13ld