home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.ghostscript.bug
- Path: sparky!uunet!cis.ohio-state.edu!ivory.bgu.ac.il!ioffe
- From: ioffe@ivory.bgu.ac.il (Ioffe Nicolay)
- Subject: question
- Message-ID: <1992Dec23.143858.29137@ramon.bgu.ac.il>
- Sender: gnulists@ai.mit.edu
- Organization: Ben-Gurion University, Beer Sheva, Israel
- Distribution: gnu
- Date: Wed, 23 Dec 1992 14:38:58 GMT
- Approved: bug-ghostscript@prep.ai.mit.edu
- Lines: 708
-
- Here is the file I had problem with.
- ( Ghostscript wrote me :
- /undefined in Top
-
-
-
- %!PS-Adobe-3.0
- %%Pages: (atend)
- %%EndComments
- %%BeginProlog
- %%DocumentMedia: () 0 0 0 () ()
- %%DocumentNeededResources: font Times-Roman font Helvetica
- %%DocumentFonts: Times-Roman Helvetica
- %%OperatorMessage: (IGS printing)
- %%ProofMode: TrustMe
- %%Orientation: Portrait
- %%LanguageLevel: 1
- %%BeginDefaults
- %%PageBoundingBox: (atend)
- %%PageResources: font Times-Roman font Helvetica
- %%EndDefaults
- %%Creator: Tim L. Casey, for IGS output.
- %%CreatetionDate: Aug 1, 1992
- %%DocumentData: Clean7Bit
- %%For: (null)
- %%Title:
- %%Date: (null)
- %%BeginProlog
- %%BeginResource: procset (IGS PS dict) 1.0 0
- /Scale 0.800000 def % shrink/expand the *board*
-
- /tmpstr 10 string def
- /bd {bind def} bind def
- /in { 72 mul } bind def
- /Margin 1 in def
- /Size 19 def
- /MaxSize 25 def
- /SquareSize 25 Scale mul def
- /StarPtRadius 1.25 Scale mul def
- /StoneRadius SquareSize 2 div def
- /TanRadius StoneRadius dup mul dup add sqrt def
- /Bottom Margin def
- /Left Margin def
- /Right systemdict /languagelevel known
- {systemdict /languagelevel get 2 eq}{false} ifelse {
- currentpagedevice /PageSize get 0 get Margin sub
- } {
- {statusdict /paperwidth get} stopped {8.5 72 mul} if Margin sub
- } ifelse
- def
- /Top systemdict /languagelevel known
- {systemdict /languagelevel get 2 eq}{false} ifelse {
- currentpagedevice /PageSize get 1 get Margin sub
- } {
- {statusdict /paperheight get} stopped {11.0 72 mul} if Margin sub
- } ifelse
- def
- /BFSize SquareSize 2 div def
- /AFSize SquareSize 2.4 div def
- /SFSize SquareSize 3 div def
- /BoardFont { /Helvetica findfont BFSize scalefont setfont } bind def
- /SmallFont { /Helvetica findfont SFSize scalefont setfont } bind def
- /AxisFont {/Helvetica findfont AFSize scalefont setfont} bind def
- /CommentFont {/Times-Roman findfont DefFontSize scalefont setfont} bind def
- /TitleFont {
- /Times-Roman findfont DefFontSize 1.4 mul Scale mul scalefont setfont}
- bind def
- /StringWidth { stringwidth pop } bind def
- /StringHeight { pop SquareSize 3.5 div } bind def
- /ShowAxis 1 def
- /DoDebug false def
-
- /TopArray [0 0 0 0 0 0 0 0 0 2 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0] def
- /MidArray [0 0 0 0 0 0 0 0 0 4 0 0 0 6 0 0 0 0 0 9 0 0 0 0 0 0] def
- /BotArray [0 0 0 0 0 0 0 0 0 6 0 0 0 9 0 0 0 0 0 15 0 0 0 0 0 0] def
- /LetArray [(A) (B) (C) (D) (E) (F) (G) (H) (J) (K) (L) (M) (N) (O) (P) (Q) (R)
- (S) (T) (U) (V) (W) (X) (Y) (Z) ] def
-
- /CoordLabel {
-
- LetArray exch get
- } bind def
-
- /XCoord {
-
- SquareSize mul Left add
- } bind def
-
- /YCoord {
-
- Top exch SquareSize mul sub
- } bind def
-
- /IsStarPoint {
-
- dup dup TopPt eq exch MidPt eq or exch BotPt eq or exch
- dup dup TopPt eq exch MidPt eq or exch BotPt eq or
- and
- } bind def
-
- /PaintStarPoint {
-
- StarPtRadius 0 360 arc 0 setgray fill
- } bind def
-
- /DrawStarPoints {
-
- /ha 3 array def
- ha dup dup 0 TopPt put 1 MidPt put 2 BotPt put
- /va 3 array def
- va dup dup 0 TopPt put 1 MidPt put 2 BotPt put
-
- currentflat
- 0.06 setflat
-
- 0 1 2 {
- ha exch get XCoord dup dup
- 0 1 2 {
- va exch get YCoord
- PaintStarPoint
- } bind for
- } bind for
-
- setflat
-
- } bind def
-
- /XLine {
- /curx exch def curx
- XCoord /xpos exch def
- xpos first moveto xpos last lineto
- ShowAxis 0 ne {
- curx CoordLabel dup
- StringWidth 2 div xpos exch sub
- last AFSize sub moveto show
- } bind if
- } bind def
-
- /YLine {
- /cury exch def cury
- YCoord /ypos exch def
- first ypos moveto last ypos lineto
- ShowAxis 0 ne {
- Size cury sub tmpstr cvs dup
- first SquareSize 1.8 div sub exch
- StringHeight AFSize div ypos exch sub
- moveto cury 9 gt {spaceshift 0 ( ) ashow} if show
- } bind if
- } bind def
-
- /DrawBoard {
-
- save
- 0 setgray
- AxisFont
-
- /first 0 YCoord def
- /last Size 1 sub YCoord def
- currentlinewidth
- .5 setlinewidth 0 XLine
- Size 1 sub XLine stroke
- setlinewidth
- 1 1 Size 2 sub {
- XLine
- } for stroke
-
-
- /spaceshift (1) stringwidth pop ( ) stringwidth pop sub def
- /first 0 XCoord def
- /last Size 1 sub XCoord def
- currentlinewidth
- .5 setlinewidth 0 YLine
- Size 1 sub YLine stroke
- setlinewidth
- 1 1 Size 2 sub {
- YLine
- } for stroke
-
- DrawStarPoints
- restore
-
- } bind def
-
- /L {
-
- gsave
- YCoord /aty exch def
- XCoord /atx exch def
- /char exch def
- atx char StringWidth 2 div sub /atx exch def
- gsave
- newpath atx aty moveto 1 setgray char false charpath
- 3 setlinewidth stroke
- grestore
- 0 setgray atx aty moveto char BoardFont show
- grestore
- } bind def
-
- /Empty {
-
- 2 copy
-
- exch XCoord exch YCoord 2 copy
- 1 setgray gsave newpath
- moveto StoneRadius dup rmoveto
- 0 SquareSize neg rlineto SquareSize neg 0 rlineto
- 0 SquareSize rlineto closepath fill grestore
-
-
-
- 0 setgray
- moveto 0 StoneRadius neg rmoveto
- 0 SquareSize rlineto
- StoneRadius StoneRadius neg rmoveto SquareSize neg 0 rlineto stroke
-
- 2 copy IsStarPoint { PaintStarPoint } { pop pop } ifelse
-
- } bind def
-
- /PieceStart {
- BoardFont
- dup dup 5 1 roll
- StringWidth 2 div exch StringHeight 2 div
- 4 2 roll
- YCoord dup 3 2 roll
- XCoord dup 3 2 roll
- newpath
- } bind def
-
- /W {
-
- PieceStart
- StoneRadius 0 360 arc
- gsave 1 setgray fill grestore 0 setgray
- stroke
- 3 1 roll
- exch sub 3 1 roll
- exch sub exch moveto 0 setgray show
- } bind def
-
- /WL {
- /wlcount exch def
- 0 setgray
- 1 1 wlcount {
- pop newpath
- YCoord exch XCoord exch
- StoneRadius 0 360 arc gsave 1 setgray fill grestore stroke
- } for
- } bind def
-
- /B {
-
- PieceStart
- StoneRadius 0 360 arc 0 setgray fill
- stroke
- 3 1 roll
- exch sub 3 1 roll
- exch sub exch moveto 1 setgray show
- } bind def
-
- /BL {
- /blcount exch def
- 0 setgray
- 1 1 blcount {
- pop newpath
- YCoord exch XCoord exch
- StoneRadius 0 360 arc fill stroke
- } for
- } bind def
-
- /RepInit {
- Size XCoord 0 YCoord moveto
- } bind def
-
- /RepCRLF {
- Size XCoord
- currentpoint exch pop
- StoneRadius 5 add sub
- moveto
- } bind def
-
- /CurCom {
- } bind def
-
- /SmallStart {
-
- SmallFont
- currentpoint newpath moveto
- StoneRadius 2 div 0 rmoveto currentpoint
- } bind def
-
- /SB {
-
- SmallStart
- currentpoint StoneRadius 1.5 div 0 360 arc 0 setgray fill stroke
- moveto
- dup StringWidth 2 div neg SFSize 4 div neg
- rmoveto 1 setgray show
- } bind def
-
- /SW {
-
- SmallStart
- currentpoint newpath StoneRadius 1.5 div 0 360 arc
- moveto
- gsave 1 setgray fill grestore
- 0 setgray currentpoint stroke moveto
- dup StringWidth 2 div neg SFSize 4 div neg
- rmoveto 0 setgray show
- } bind def
-
- /R {
- currentpoint /cury exch def /curx exch def
- load exec
- AxisFont
- curx StoneRadius add cury AFSize 2 div sub moveto
- ( @ ) 0 setgray show
- currentpoint pop cury moveto
- load exec
- RepCRLF
- } bind def
-
- /Mark {
- /myrad StoneRadius 6 mul 7 div def
- 0 myrad rmoveto
- myrad myrad neg rlineto
- myrad neg myrad neg rlineto
- myrad neg myrad rlineto
- closepath fill
- } bind def
-
- /WM {
- 2 copy () W
- newpath 0 setgray YCoord exch XCoord exch moveto
- Mark
- } bind def
-
- /BM {
- 2 copy () B
- newpath 1 setgray YCoord exch XCoord exch moveto
- Mark
- } bind def
-
- /NN {
- AxisFont 0 setgray
- dup StringWidth 2 div
- Size 1 sub XCoord 0 XCoord sub 2 div exch sub 0 XCoord add
- Size 1 sub YCoord AFSize 2.5 mul sub moveto show
- } bind def
-
- /CRLF {
- currentpoint exch pop DefFontSize 1 add sub Left exch moveto
- currentpoint /comy exch def /comx exch def
- } bind def
-
- /KCom {
- comx comy moveto 0 setgray CommentFont widthshow
- currentpoint /comy exch def /comx exch def
- } bind def
-
- /Com {
- comx comy moveto 0 setgray CommentFont show
- currentpoint /comy exch def /comx exch def
- } bind def
-
- /Initialize {
- /firstremoved true def
- /pagecount 0 def
- /DefFontSize exch def
-
- 0.000001 setlinewidth
- 1 setlinejoin
- 1 setlinecap
- /TopPt TopArray Size get def
- /MidPt MidArray Size get def
- /BotPt BotArray Size get def
- } bind def
-
- /Finish {
- } bind def
-
- /Title {
- 0 setgray TitleFont
- Left Top 0.5 Scale mul in add cvi moveto show
- Left Top 0.5 Scale mul in add DefFontSize 1.4 mul Scale mul 2 add sub moveto show
- } bind def
-
- /PageBegin {
- /under_y 0 def
- DrawBoard
- /pagecount pagecount 1 add def
- Left Size 1 add YCoord moveto
- currentpoint /comy exch def /comx exch def
- save
- } bind def
-
- /PageEnd {
- 0 setgray
- CommentFont dup StringWidth Right exch sub Bottom 0.5 in sub moveto
- CommentFont show showpage restore
- } bind def
-
- /UnderBoard {
- } bind def
-
- %%EndResource
- %%EndProlog
- %%BeginSetup
- 10 Initialize
- %%EndSetup
- %%Page: 1 1
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 9 3 () B
- 9 15 () B
- 15 9 () B
- 3 9 () B
- 9 9 () B
- 15 15 () B
- 3 3 () B
- 15 3 () B
- 3 15 () B
- 2 5 (2) W
- 2 4 (3) B
- 3 5 (4) W
- 5 3 (5) B
- 2 13 (6) W
- 2 14 (7) B
- 3 13 (8) W
- 5 15 (9) B
- 5 9 (10) W
- 2 7 (11) B
- 1 9 (12) W
- 4 7 (13) B
- 4 5 (14) W
- 5 6 (15) B
- 5 5 (16) W
- 3 11 (17) B
- 1 11 (18) W
- 7 3 (19) B
- 7 5 (20) W
- %%PageTrailer
- (Page: 1 @ 1 - 20) PageEnd
- %%Page: 2 2
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 2 4 2 7 2 14 3 3 3 9 3 11 3 15 4 7 5 3 5 6 5 15 7 3 9 3 9 9 9 15 15 3 15 9 15 15 18 BL
- 1 9 1 11 2 5 2 13 3 5 3 13 4 5 5 5 5 9 7 5 10 WL
- 2 11 (21) B
- 1 12 (22) W
- 1 14 (23) B
- 5 11 (24) W
- 7 7 (25) B
- 9 6 (26) W
- 15 6 (27) B
- 8 8 (28) W
- 5 13 (29) B
- 4 12 (30) W
- 6 6 (31) B
- 6 5 (32) W
- 7 8 (33) B
- 7 9 (34) W
- 5 7 (35) B
- 6 8 (36) W
- 8 9 (37) B
- 9 7 (38) W
- 7 10 (39) B
- 6 9 (40) W
- %%PageTrailer
- (Page: 2 @ 21 - 40) PageEnd
- %%Page: 3 3
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 14 2 4 2 7 2 11 2 14 3 3 3 9 3 11 3 15 4 7 5 3 5 6 5 7 5 13 5 15 6 6 7 3 7 7 7 8 7 10 8 9 9 3 9 9 9 15 15 3 15 6 15 9 15 15 28 BL
- 1 9 1 11 1 12 2 5 2 13 3 5 3 13 4 5 4 12 5 5 5 9 5 11 6 5 6 8 6 9 7 5 7 9 8 8 9 6 9 7 20 WL
- 6 12 (41) B
- 6 11 (42) W
- 7 11 (43) B
- 2 8 (44) W
- 1 7 (45) B
- 3 8 (46) W
- 1 5 (47) B
- 3 7 (48) W
- 12 3 (49) B
- 13 16 (50) W
- 14 16 (51) B
- 13 15 (52) W
- 15 13 (53) B
- 16 11 (54) W
- 16 12 (55) B
- 15 11 (56) W
- 13 11 (57) B
- 14 10 (58) W
- 17 10 (59) B
- 17 11 (60) W
- %%PageTrailer
- (Page: 3 @ 41 - 60) PageEnd
- %%Page: 4 4
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 5 1 7 1 14 2 4 2 7 2 11 2 14 3 3 3 9 3 11 3 15 4 7 5 3 5 6 5 7 5 13 5 15 6 6 6 12 7 3 7 7 7 8 7 10 7 11 8 9 9 3 9 9 9 15 12 3 13 11 14 16 15 3 15 6 15 9 15 13 15 15 16 12 17 10 38 BL
- 1 9 1 11 1 12 2 5 2 8 2 13 3 5 3 7 3 8 3 13 4 5 4 12 5 5 5 9 5 11 6 5 6 8 6 9 6 11 7 5 7 9 8 8 9 6 9 7 13 15 13 16 14 10 15 11 16 11 17 11 30 WL
- 17 12 (61) B
- 18 11 (62) W
- 14 17 (63) B
- 13 9 (64) W
- 13 7 (65) B
- 11 11 (66) W
- 8 12 (67) B
- 11 13 (68) W
- 11 9 (69) B
- 13 12 (70) W
- 12 10 (71) B
- 14 12 (72) W
- 4 14 (73) B
- 16 7 (74) W
- 11 16 (75) B
- 17 3 (76) W
- 15 8 (77) B
- 16 6 (78) W
- 13 8 (79) B
- 17 9 (80) W
- %%PageTrailer
- (Page: 4 @ 61 - 80) PageEnd
- %%Page: 5 5
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 5 1 7 1 14 2 4 2 7 2 11 2 14 3 3 3 9 3 11 3 15 4 7 4 14 5 3 5 6 5 7 5 13 5 15 6 6 6 12 7 3 7 7 7 8 7 10 7 11 8 9 8 12 9 3 9 9 9 15 11 9 11 16 12 3 12 10 13 7 13 8 13 11 14 16 14 17 15 3 15 6 15 8 15 9 15 13 15 15 16 12 17 10 17 12 48 BL
- 1 9 1 11 1 12 2 5 2 8 2 13 3 5 3 7 3 8 3 13 4 5 4 12 5 5 5 9 5 11 6 5 6 8 6 9 6 11 7 5 7 9 8 8 9 6 9 7 11 11 11 13 13 9 13 12 13 15 13 16 14 10 14 12 15 11 16 6 16 7 16 11 17 3 17 9 17 11 18 11 40 WL
- 15 5 (81) B
- 16 2 (82) W
- 14 11 (83) B
- 15 12 (84) W
- 3 6 (85) B
- 2 6 (86) W
- 18 12 (87) B
- 10 3 (88) W
- 15 2 (89) B
- 9 2 (90) W
- 8 3 (91) B
- 9 5 (92) W
- 10 4 (93) B
- 12 2 (94) W
- 16 10 (95) B
- 18 10 (96) W
- 10 2 (97) B
- 11 3 (98) W
- 17 1 (99) B
- 16 1 (100) W
- %%PageTrailer
- (Page: 5 @ 81 - 100) PageEnd
- %%Page: 6 6
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 5 1 7 1 14 2 4 2 7 2 11 2 14 3 3 3 6 3 9 3 11 3 15 4 7 4 14 5 3 5 6 5 7 5 13 5 15 6 6 6 12 7 3 7 7 7 8 7 10 7 11 8 3 8 9 8 12 9 3 9 9 9 15 10 2 10 4 11 9 11 16 12 3 12 10 13 7 13 8 13 11 14 11 14 16 14 17 15 2 15 3 15 5 15 6 15 8 15 9 15 13 15 15 16 10 16 12 17 1 17 10 17 12 18 12 58 BL
- 1 9 1 11 1 12 2 5 2 6 2 8 2 13 3 5 3 7 3 8 3 13 4 5 4 12 5 5 5 9 5 11 6 5 6 8 6 9 6 11 7 5 7 9 8 8 9 2 9 5 9 6 9 7 10 3 11 3 11 11 11 13 12 2 13 9 13 12 13 15 13 16 14 10 14 12 15 11 15 12 16 1 16 2 16 6 16 7 16 11 17 3 17 9 17 11 18 10 18 11 50 WL
- 1 6 (101) B
- 10 1 (102) W
- 8 1 (103) B
- 11 4 (104) W
- 10 5 (105) B
- 9 4 (106) W
- 10 6 (107) B
- 11 7 (108) W
- 15 10 (109) B
- 17 8 (110) W
- 13 3 (111) B
- 14 1 (112) W
- 15 1 (113) B
- 15 0 (114) W
- 13 2 (115) B
- 13 1 (116) W
- 12 17 (117) B
- 7 16 (118) W
- 8 17 (119) B
- 8 16 (120) W
- %%PageTrailer
- (Page: 6 @ 101 - 120) PageEnd
- %%Page: 7 7
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 5 1 6 1 7 1 14 2 4 2 7 2 11 2 14 3 3 3 6 3 9 3 11 3 15 4 7 4 14 5 3 5 6 5 7 5 13 5 15 6 6 6 12 7 3 7 7 7 8 7 10 7 11 8 1 8 3 8 9 8 12 8 17 9 3 9 9 9 15 10 2 10 4 10 5 10 6 11 9 11 16 12 3 12 10 12 17 13 2 13 3 13 7 13 8 13 11 14 11 14 16 14 17 15 1 15 2 15 3 15 5 15 6 15 8 15 9 15 10 15 13 15 15 16 10 16 12 17 1 17 10 17 12 18 12 68 BL
- 1 9 1 11 1 12 2 5 2 6 2 8 2 13 3 5 3 7 3 8 3 13 4 5 4 12 5 5 5 9 5 11 6 5 6 8 6 9 6 11 7 5 7 9 7 16 8 8 8 16 9 2 9 4 9 5 9 6 9 7 10 1 10 3 11 3 11 4 11 7 11 11 11 13 12 2 13 1 13 9 13 12 13 15 13 16 14 1 14 10 14 12 15 0 15 11 15 12 16 1 16 2 16 6 16 7 16 11 17 3 17 8 17 9 17 11 18 10 18 11 60 WL
- 9 16 (121) B
- 7 17 (122) W
- 10 17 (123) B
- 8 18 (124) W
- 9 17 (125) B
- 4 16 (126) W
- 3 16 (127) B
- 3 17 (128) W
- 2 17 (129) B
- 4 17 (130) W
- 7 14 (131) B
- 5 16 (132) W
- 6 15 (133) B
- 1 17 (134) W
- 1 16 (135) B
- 2 18 (136) W
- 6 16 (137) B
- 6 17 (138) W
- 2 16 (139) B
- 5 18 (140) W
- %%PageTrailer
- (Page: 7 @ 121 - 140) PageEnd
- %%Page: 8 8
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 5 1 6 1 7 1 14 1 16 2 4 2 7 2 11 2 14 2 16 2 17 3 3 3 6 3 9 3 11 3 15 3 16 4 7 4 14 5 3 5 6 5 7 5 13 5 15 6 6 6 12 6 15 6 16 7 3 7 7 7 8 7 10 7 11 7 14 8 1 8 3 8 9 8 12 8 17 9 3 9 9 9 15 9 16 9 17 10 2 10 4 10 5 10 6 10 17 11 9 11 16 12 3 12 10 12 17 13 2 13 3 13 7 13 8 13 11 14 11 14 16 14 17 15 1 15 2 15 3 15 5 15 6 15 8 15 9 15 10 15 13 15 15 16 10 16 12 17 1 17 10 17 12 18 12 78 BL
- 1 9 1 11 1 12 1 17 2 5 2 6 2 8 2 13 2 18 3 5 3 7 3 8 3 13 3 17 4 5 4 12 4 16 4 17 5 5 5 9 5 11 5 16 5 18 6 5 6 8 6 9 6 11 6 17 7 5 7 9 7 16 7 17 8 8 8 16 8 18 9 2 9 4 9 5 9 6 9 7 10 1 10 3 11 3 11 4 11 7 11 11 11 13 12 2 13 1 13 9 13 12 13 15 13 16 14 1 14 10 14 12 15 0 15 11 15 12 16 1 16 2 16 6 16 7 16 11 17 3 17 8 17 9 17 11 18 10 18 11 70 WL
- 7 18 (141) B
- 3 18 (142) W
- 10 14 (143) B
- 4 2 (144) W
- 3 2 (145) B
- 8 2 (146) W
- 6 1 (147) B
- 7 2 (148) W
- 4 3 (149) B
- 6 2 (150) W
- 6 3 (151) B
- 5 2 (152) W
- 11 14 (153) B
- 12 14 (154) W
- 10 13 (155) B
- 12 13 (156) W
- 16 5 (157) B
- 17 5 (158) W
- 8 15 (159) B
- 3 1 (160) W
- %%PageTrailer
- (Page: 8 @ 141 - 160) PageEnd
- %%Page: 9 9
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 1 5 1 6 1 7 1 14 1 16 2 4 2 7 2 11 2 14 2 16 2 17 3 2 3 3 3 6 3 9 3 11 3 15 3 16 4 3 4 7 4 14 5 3 5 6 5 7 5 13 5 15 6 1 6 3 6 6 6 12 6 15 6 16 7 3 7 7 7 8 7 10 7 11 7 14 7 18 8 1 8 3 8 9 8 12 8 15 8 17 9 3 9 9 9 15 9 16 9 17 10 2 10 4 10 5 10 6 10 13 10 14 10 17 11 9 11 14 11 16 12 3 12 10 12 17 13 2 13 3 13 7 13 8 13 11 14 11 14 16 14 17 15 1 15 2 15 3 15 5 15 6 15 8 15 9 15 10 15 13 15 15 16 5 16 10 16 12 17 1 17 10 17 12 18 12 88 BL
- 1 9 1 11 1 12 1 17 2 5 2 6 2 8 2 13 2 18 3 1 3 5 3 7 3 8 3 13 3 17 3 18 4 2 4 5 4 12 4 16 4 17 5 2 5 5 5 9 5 11 5 16 5 18 6 2 6 5 6 8 6 9 6 11 6 17 7 2 7 5 7 9 7 16 7 17 8 2 8 8 8 16 8 18 9 2 9 4 9 5 9 6 9 7 10 1 10 3 11 3 11 4 11 7 11 11 11 13 12 2 12 13 12 14 13 1 13 9 13 12 13 15 13 16 14 1 14 10 14 12 15 0 15 11 15 12 16 1 16 2 16 6 16 7 16 11 17 3 17 5 17 8 17 9 17 11 18 10 18 11 80 WL
- 2 1 (161) B
- 4 1 (162) W
- 10 12 (163) B
- 1 1 (164) W
- 1 3 (165) B
- 1 2 (166) W
- 2 2 (167) B
- 2 0 (168) W
- 0 3 (169) B
- 3 4 (170) W
- 11 12 (171) B
- 1 8 (172) W
- 6 10 (173) B
- 5 10 (174) W
- 9 18 (175) B
- 10 8 (176) W
- 9 8 (177) B
- 8 7 (178) W
- 16 4 (179) B
- 17 4 (180) W
- %%PageTrailer
- (Page: 9 @ 161 - 180) PageEnd
- %%Page: 10 10
- %%BeginPageSetup
- PageBegin
- (White [3d]: harhar (Komi: 0.5) Black [13k]: ManyFaces Result: W+Resign) (Played at IGS: 128.32.201.46 6969 on 1992-12-13.) Title
- %%EndPageSetup
- 0 3 1 3 1 5 1 6 1 7 1 14 1 16 2 1 2 2 2 4 2 7 2 11 2 14 2 16 2 17 3 2 3 3 3 6 3 9 3 11 3 15 3 16 4 3 4 7 4 14 5 3 5 6 5 7 5 13 5 15 6 1 6 3 6 6 6 10 6 12 6 15 6 16 7 3 7 7 7 8 7 10 7 11 7 14 7 18 8 1 8 3 8 9 8 12 8 15 8 17 9 3 9 8 9 9 9 15 9 16 9 17 9 18 10 2 10 4 10 5 10 6 10 12 10 13 10 14 10 17 11 9 11 12 11 14 11 16 12 3 12 10 12 17 13 2 13 3 13 7 13 8 13 11 14 11 14 16 14 17 15 1 15 2 15 3 15 5 15 6 15 8 15 9 15 10 15 13 15 15 16 4 16 5 16 10 16 12 17 1 17 10 17 12 18 12 98 BL
- 1 1 1 2 1 8 1 9 1 11 1 12 1 17 2 0 2 5 2 6 2 8 2 13 2 18 3 1 3 4 3 5 3 7 3 8 3 13 3 17 3 18 4 1 4 2 4 5 4 12 4 16 4 17 5 2 5 5 5 9 5 10 5 11 5 16 5 18 6 2 6 5 6 8 6 9 6 11 6 17 7 2 7 5 7 9 7 16 7 17 8 2 8 7 8 8 8 16 9 2 9 4 9 5 9 6 9 7 10 1 10 3 10 8 11 3 11 4 11 7 11 11 11 13 12 2 12 13 12 14 13 1 13 9 13 12 13 15 13 16 14 1 14 10 14 12 15 0 15 11 15 12 16 1 16 2 16 6 16 7 16 11 17 3 17 4 17 5 17 8 17 9 17 11 18 10 18 11 89 WL
- 1 13 (181) B
- 2 12 (182) W
- 8 4 (183) B
- 7 6 (184) W
- 14 2 (185) B
- 11 2 (186) W
- 12 5 (187) B
- 11 5 (188) W
- 12 6 (189) B
- 11 6 (190) W
- 10 9 (191) B
- 0 7 (192) W
- 15 7 (193) B
- 13 17 (194) W
- %%PageTrailer
- (Page: 10 @ 181 - 194) PageEnd
- %%Trailer
- %%PageBoundingBox: 0 0 612 792
- Finish
- %%Pages: 10
- %%EOF
-
-
-
-