DIRECTORY Basics USING [bytesPerWord], CD USING [Design, Error, ErrorCode, Instance, InterestSize, Layer, Object, LayerKey, Position, Rect, Technology], CDCells USING [CreateEmptyCell, EnumerateInstances, IncludeMode, IncludeOb, InstEnumerator, SetInterestRect], CDDirectory USING [Another1, FixChildren, Include], CDImports USING [LoadAndBindDesign, CreateImportFromCache], CDIO USING [MakeName, ReadDesign, DesignInReadOperation, WriteDesign], CDOps USING [CreateDesign], CDProperties USING [PutObjectProp, RegisterProperty], CDRects USING [CreateRect], CDSil USING [cdsil, xaqua, xbrown, xcyan, xgreen, xlime, xmagenta, xneutral, xorange, xpink, xred, xsmoke, xturquise, xultraviolet, xviolet, xwhite, xyellow], CDSilConversion, CDTexts USING [Create, FontRec, IsText, MakeFont], CDViewer USING [CreateViewer], Commander USING [CommandProc, Register], CommandTool USING [ParseToList], FileNames USING [CurrentWorkingDirectory], FS USING [ComponentPositions, Error, ExpandName, Position, StreamOpen], ImagerFont USING [Extents, Font, RopeBoundingBox], IO USING [atom, char, Close, EndOf, EndOfStream, GetChar, int, PutFR, STREAM, UnsafeGetBlock], Real USING [Round], Rope USING [ActionType, Cat, Concat, FromChar, FromProc, Length, Map, Replace, ROPE, SkipTo, Substr], TerminalIO USING [PutRope, UserAbort, Confirm], TokenIO USING [Handle], UserProfile USING [CallWhenProfileChanges, ProfileChangedProc, ProfileChangeReason, Token]; CDSilConversionImpl: CEDAR PROGRAM IMPORTS CD, CDCells, CDDirectory, CDImports, CDIO, CDOps, CDProperties, CDRects, CDSil, CDTexts, CDViewer, Commander, CommandTool, FileNames, FS, ImagerFont, IO, Real, Rope, TerminalIO, UserProfile EXPORTS CDSilConversion = BEGIN OPEN CDSilConversion; fileNotFound: ERROR [reason: Rope.ROPE] = CODE; convLibEachTime: BOOL _ FALSE; -- convert all library files for each model verbose: BOOL = FALSE; -- Asks the user whether he wants to write the converted model and libraries debug0: BOOL _ FALSE; -- reading file debug1: BOOL _ FALSE; -- converting debug2: BOOL _ FALSE; -- integration of macro files debug3: BOOL _ FALSE; -- main Sil model debug4: BOOL _ FALSE; -- translation of font names debugAll: BOOL _ debug0 OR debug1 OR debug2 OR debug3 OR debug4; FourBits: TYPE ~ [0..17B]; SevenBits: TYPE ~ [0..177B]; TwelveBits: TYPE ~ [0..7777B]; SixteenBits: TYPE ~ [0..177777B]; OneBit: TYPE ~ [0..1]; ElevenBits: TYPE ~ [0..3777B]; mainElementName: CHAR ~ 377C; -- this as name of silobject means it's part of main picture checkCodeByte1: CHAR ~ '9; -- check code indicating Sil format unbuiltCheckCodeByte2: CHAR ~ 'r; builtCheckCodeByte2: CHAR ~ 's; largeFormatFileByte2: CHAR ~ 'l; -- new password for large format files SilBlockRef: TYPE ~ REF SilBlock; LargeSilBlockRef: TYPE ~ REF LargeSilBlock; --new format for large format files SilBlock: TYPE ~ MACHINE DEPENDENT RECORD [ leftChar, rightChar: CHAR, state : FourBits, xMin : TwelveBits, yMin : SixteenBits, color : FourBits, xMax : TwelveBits, font : FourBits, italic : OneBit, yMax : ElevenBits ]; LargeSilBlock: TYPE ~ MACHINE DEPENDENT RECORD [ leftChar, rightChar: CHAR, xMin: INTEGER, yMin: INTEGER, xMax: INTEGER, yMax: INTEGER, color: FourBits, font: FourBits, italic: OneBit, pad: SevenBits _ 0 ]; TrueFonts: TYPE ~ [0..3]; MainFile: TYPE ~ [4..4]; SilFile: TYPE ~ [4..9]; InternalFonts: TYPE ~ [0..15]; InternalFileMacroFonts: TYPE ~ [8..8]; InternalTrueFonts: TYPE ~ [0..7]; InternalLibraryFile: TYPE ~ [9..13]; InternalRopeFonts: TYPE ~ [0..13]; -- those fonts which do not denote boxes. See below InternalForegroundBoxFonts: TYPE ~ [14..14]; InternalBackgroundBoxFonts: TYPE ~ [15..15]; mainFile: MainFile ~ 4; Color: TYPE ~ [0..15]; colorTable: ARRAY Color OF CD.Layer ~ [CDSil.xneutral, CDSil.xred, CDSil.xyellow, CDSil.xgreen, CDSil.xcyan, CDSil.xviolet, CDSil.xmagenta, CDSil.xwhite, CDSil.xbrown, CDSil.xorange, CDSil.xlime, CDSil.xturquise, CDSil.xaqua, CDSil.xultraviolet, CDSil.xpink, CDSil.xsmoke]; neutralColor: Color ~ 0; Font: TYPE ~ RECORD [ name: Rope.ROPE, descr: REF CDTexts.FontRec _ NIL ]; cellFonts: ARRAY InternalTrueFonts OF ARRAY BOOL OF Font; ObjectName: TYPE ~ CHAR[' .. '~]; -- Only printing characters are used MacroName: TYPE ~ CHAR['! .. '~]; -- All but mainObject: ObjectName ~ ' ; -- object whose name is SilObject: TYPE ~ RECORD [ xMin, yMin: INTEGER, -- Upper Left boundary of box or string xMax, yMax: INTEGER, -- Lower right boundary of box, guess for lower right of string color: Color, -- Color used to display or print silobject font: InternalFonts, italic: BOOL, -- Only interesting for Ropes (fonts 0-13), TRUE for italic strings value: Rope.ROPE _ NIL ]; SilObjectList: TYPE ~ LIST OF SilObject; Macro: TYPE ~ RECORD [ xMin, yMin: INTEGER _ 32767, -- Upper Left boundary of macro definition xMax, yMax: INTEGER _ -1, -- Lower right boundary of macro definition objects: SilObjectList _ NIL, cdCellPtr: CD.Object _ NIL -- This field used to generate recursion if a cell includes a cell not known yet. ]; LibraryDesign: TYPE ~ RECORD [ data: CD.Design _ NIL, imported: BOOL _ FALSE, -- Chipndale wants only a single import of the same library written: BOOL _ FALSE -- libraries are written only once per run ]; MacroPtr: TYPE ~ REF Macro _ NIL; MacroFile: TYPE ~ ARRAY ObjectName OF MacroPtr; allMacros: REF MacroFile _ NIL; coloredMacros: ARRAY Color OF CD.Object; -- the other stuff is in the neutral macro record silDesigns: ARRAY SilFile OF LibraryDesign; -- need all because of imports background: ATOM = $SilBackground; silProfilePrefix: Rope.ROPE ~ "Sil.Font"; cdSilProfilePrefix: Rope.ROPE ~ "Chipndale.chipnsil.Library"; lambda: INTEGER = CDSil.cdsil.lambda; -- Sil uses integers throughout lambdaAltoScreenHeights: INTEGER ~ lambda * 808; CrackNames: PROC [genericName: Rope.ROPE] RETURNS [fullSilName: Rope.ROPE, properName: Rope.ROPE] ~ { namePos: FS.ComponentPositions; silExtension: Rope.ROPE ~ "Sil"; dummy: Rope.ROPE; -- in Cedar 5.2 FS.ExpandName does not work as documented fullSilName _ CDIO.MakeName [base: genericName, ext: silExtension, wDir: FileNames.CurrentWorkingDirectory[]]; [fullFName: dummy, cp: namePos] _ FS.ExpandName [name: fullSilName]; properName _ Rope.Substr [base: dummy, start: namePos.base.start, len: namePos.base.length] }; -- end CrackNames FlushLibraries: UserProfile.ProfileChangedProc ~ BEGIN FOR lib: LibraryFile IN LibraryFile DO silDesigns[lib].data _ NIL; silDesigns[lib].imported _ FALSE ENDLOOP END; -- FlushLibraries TechnologyIsCdsil: PROC [d: TokenIO.Handle] RETURNS [BOOL] ~ { IF d = NIL THEN CD.Error [explanation: "Programming error in ReadSilLibrary"]; RETURN [CDIO.DesignInReadOperation[d].technology = CDSil.cdsil] }; -- end TechnologyIsCdsil ReadSilModel: PUBLIC PROC [name: Rope.ROPE] RETURNS [design: CD.Design _ NIL] ~ { designName: Rope.ROPE; write: BOOL _ NOT verbose; [fullSilName: name, properName: designName] _ CrackNames [name]; IF convLibEachTime THEN FlushLibraries [edit]; design _ CDOps.CreateDesign [technology: CDSil.cdsil]; design.name _ designName; silDesigns[mainFile].data _ design; ReadSilFile [fileName: name]; ConvertSilFile [file: mainFile]; IF verbose THEN write _ TerminalIO.Confirm [text: "CDSilConversion", help: Rope.Cat["Write ", designName, " to disk ?"]]; IF write THEN IF NOT CDIO.WriteDesign [design: design, to: designName] THEN TerminalIO.PutRope [Rope.Cat["Warning: The design ", designName, " cannot be written. Proceeding anyway.\n"]]; [] _ CDViewer.CreateViewer [design: design]; }; -- end ReadSilModel ReadSilLibrary: PUBLIC PROC [library: LibraryFile] RETURNS [cells: CD.Design _ NIL] ~ { libraryPrefix: Rope.ROPE ~ "sil.lb"; -- Cedar Sil designPrefix: Rope.ROPE ~ "SilLib"; -- Chipnsil macroFileName, cdFileName, defaultName, designName: Rope.ROPE; key: Rope.ROPE; -- Access key for the User Profile. write: BOOL _ NOT verbose; IF silDesigns[library].data # NIL THEN RETURN [silDesigns[library].data]; key _ Rope.Concat [cdSilProfilePrefix, Rope.FromChar['0 + library]]; defaultName _ Rope.Cat [designPrefix, Rope.FromChar['0 + library], ".dale"]; cdFileName _ UserProfile.Token [key: key, default: defaultName]; designName _ CrackNames [cdFileName].properName; key _ Rope.Concat [silProfilePrefix, Rope.FromChar['0 + library]]; defaultName _ Rope.Concat [libraryPrefix, Rope.FromChar['0 + library]]; macroFileName _ UserProfile.Token [key: key, default: defaultName]; IF NOT convLibEachTime THEN BEGIN cells _ CDIO.ReadDesign [from: cdFileName, check: TechnologyIsCdsil]; IF cells # NIL THEN {silDesigns[library].data _ cells; RETURN [cells]} ELSE TerminalIO.PutRope [Rope.Cat["The library file ", cdFileName, " is not available. It is being converted from ", macroFileName, "\n"]]; END; -- NOT convLibEachTime ReadSilFile [fileName: macroFileName]; cells _ CDOps.CreateDesign[technology: CDSil.cdsil]; cells.name _ designName; silDesigns[library].data _ cells; ConvertSilFile [file: library]; IF verbose THEN write _ TerminalIO.Confirm [text: "CDSilConversion", help: Rope.Cat ["Write ", designName, " to disk ?"]]; IF write THEN { IF NOT silDesigns[library].written THEN { silDesigns[library].written _ CDIO.WriteDesign [design: cells, to: cdFileName]; IF NOT silDesigns[library].written THEN TerminalIO.PutRope [Rope.Cat["Warning: The design ", designName, " cannot be written. Proceeding anyway.\n"]] } }; -- IF write RETURN [cells] }; -- end ReadSilLibrary SetFonts: UserProfile.ProfileChangedProc ~ { key: Rope.ROPE; -- Access key for the User Profile. TrueFontsDefaults: TYPE ~ ARRAY TrueFonts OF Rope.ROPE; trueFontsDefaults: TrueFontsDefaults ~ ["Helvetica10", "Helvetica7", "Template64", "Gates32"]; italic: BOOL ~ TRUE; FixAttibutes: PROC [coarseName: Rope.ROPE] RETURNS [notBold, italic, both: Rope.ROPE] ~ { properName, dummy, attributes, notBAttr: Rope.ROPE; namePos: FS.ComponentPositions; attributePos, bPos: INTEGER; alreadyItalic: BOOL; [fullFName: dummy, cp: namePos] _ FS.ExpandName [name: coarseName]; properName _ Rope.Substr [base: dummy, start: namePos.base.start, len: namePos.base.length]; attributePos _ properName.SkipTo [0, "0123456789"]; attributes _ properName.Substr [attributePos, properName.Length[]-attributePos]; bPos _ attributes.SkipTo [0, "bB"]; IF bPos = attributes.Length[] THEN notBAttr _ Rope.Concat [attributes, "B"] ELSE notBAttr _ Rope.Replace [base: attributes, start: bPos, len: 1]; alreadyItalic _ (attributes.SkipTo [0, "iI"] # attributes.Length []); IF NOT alreadyItalic THEN attributes _ Rope.Concat [attributes, "I"]; notBold _ Rope.Replace [base: properName, start: attributePos, len: properName.Length[]-attributePos, with: notBAttr]; italic _ Rope.Replace [base: properName, start: attributePos, len: properName.Length[]-attributePos, with: attributes]; IF alreadyItalic THEN both _ notBold ELSE { notBAttr _ Rope.Concat [notBAttr, "I"]; both _ Rope.Replace [base: properName, start: attributePos, len: properName.Length[]-attributePos, with: notBAttr] }; IF debug4 THEN { TerminalIO.PutRope [Rope.Cat["Original font: ", coarseName, ", notBold: "]]; TerminalIO.PutRope [Rope.Cat[notBold, ", italic: ", italic]]; TerminalIO.PutRope [Rope.Cat[", both: ", both, "\n"]]; } }; -- end FixAttibutes FOR i: TrueFonts IN TrueFonts DO key _ Rope.Concat [silProfilePrefix, Rope.FromChar ['0 + i]]; cellFonts[2*i][~italic].name _ UserProfile.Token [key: key, default: trueFontsDefaults[i]]; [cellFonts[2*i+1][~italic].name, cellFonts[2*i][italic].name, cellFonts[2*i+1][italic].name] _ FixAttibutes [cellFonts[2*i][~italic].name] ENDLOOP }; -- end SetFonts MakeCDFont: PROC [nr: InternalTrueFonts, italic: BOOL] ~ { fullName: Rope.ROPE; fullName _ Rope.Cat ["Xerox/TiogaFonts/", cellFonts[nr][italic].name]; cellFonts[nr][italic].descr _ CDTexts.MakeFont [name: fullName, scale: lambda]; IF cellFonts[nr][italic].descr = NIL THEN { TerminalIO.PutRope [Rope.Cat["CDTexts.MakeFont returns not found on ", fullName, ". Fatal error.\n"]]; ERROR ABORTED } }; -- end MakeCDFont ConvertSilFile: PROC [file: SilFile] ~ { MacroToObject: PROC [sil: MacroPtr, name: ObjectName] RETURNS [object: CD.Object _ NIL] ~ { size, position: CD.Position _ [0, 0]; topLeftPos: CD.Position _ [0, 0]; cdObPtr: CD.Object _ NIL; -- object before it is either a cell or an application cell: CD.Object _ NIL; -- NIL when object is not a cell boundingBox: CD.Rect; -- interesting rectangle height: INTEGER _ 0; -- height of cell or main object import, workingOnMainObject: BOOL; impName: Rope.ROPE; -- global importee name assigned in FOR loop and used in the recursion ColoredMacro: PROC [name: ObjectName, color: Color _ neutralColor] RETURNS [colored: CD.Object] ~ BEGIN ColorContents: CDCells.InstEnumerator = BEGIN IF ((inst.ob.class.objectType = $Rect) OR (CDTexts.IsText [inst.ob])) THEN [] _ inst.ob.class.newLayer [inst, colorTable[color]] END; -- ColorContents IF (color = neutralColor) THEN BEGIN IF (allMacros[name].cdCellPtr = NIL) THEN BEGIN IF debug1 THEN TerminalIO.PutRope [IO.PutFR [" will prepone macro %g\n", IO.char[name]]]; RETURN [MacroToObject [allMacros[name], name]] END ELSE RETURN [allMacros[name].cdCellPtr] END; IF (coloredMacros[color] # NIL) THEN colored _ coloredMacros[color] ELSE BEGIN -- This is the real stuff design: CD.Design ~ silDesigns[mainFile].data; childAccessible: BOOL; coloredName: Rope.ROPE ~ IO.PutFR [format: "%g-%g", v1: IO.char[name], v2: IO.atom[CD.LayerKey[colorTable[color]]]]; IF (allMacros[name].cdCellPtr = NIL) THEN BEGIN IF debug1 THEN TerminalIO.PutRope [IO.PutFR [" will prepone macro %g\n", IO.char[name]]]; [] _ MacroToObject [allMacros[name], name] END; [colored, childAccessible] _ CDDirectory.Another1 [me: allMacros[name].cdCellPtr, fromOrNil: design, into: design, friendly: TRUE]; IF ((colored = NIL) OR (colored = allMacros[name].cdCellPtr) OR (NOT CDDirectory.Include [design, colored, coloredName]) OR ((~childAccessible) AND (NOT CDDirectory.FixChildren [colored, design]))) THEN BEGIN TerminalIO.PutRope [IO.PutFR ["Failed to color macro %g\n", IO.char[name]]]; colored _ allMacros[name].cdCellPtr END ELSE BEGIN [] _ CDCells.EnumerateInstances [colored, ColorContents]; coloredMacros[color] _ colored END END END; -- ColoredMacro ExpansionWrapping: PROC [rope: Rope.ROPE, color: Color _ neutralColor] = BEGIN ExpandRope: PROC [c: CHAR] RETURNS [quit: BOOL _ FALSE] ~ { cdObPtr: CD.Object; -- object before it is either a cell or an instance sz, pos: CD.Position; IF import THEN BEGIN cdObPtr _ CDImports.CreateImportFromCache [into: silDesigns[file].data, objectName: Rope.FromChar[c], importeeName: impName]; IF cdObPtr = NIL THEN CD.Error [ec: other, explanation: "CDImports.CreateImport failed"]; END ELSE -- not import: file macro cdObPtr _ ColoredMacro [c, color]; sz _ CD.InterestSize [cdObPtr]; pos _ [topLeftPos.x, topLeftPos.y-sz.y]; topLeftPos.x _ topLeftPos.x + sz.x; [] _ CDCells.IncludeOb [design: silDesigns[file].data, cell: cell, ob: cdObPtr, trans: [pos], mode: dontNotify]; }; -- end ExpandRope [] _ Rope.Map [base: rope, action: ExpandRope] END; -- ExpansionWrapping workingOnMainObject _ (name = ' ); height _ IF workingOnMainObject THEN lambdaAltoScreenHeights ELSE lambda * (sil.yMax - sil.yMin); boundingBox _ [x1: lambda*sil.xMin, y1: height - lambda*sil.yMax, x2: lambda*sil.xMax, y2: height - lambda*sil.yMin]; IF workingOnMainObject THEN cell _ NIL ELSE { ir: CD.Rect _ [x1: lambda*sil.xMin, y1: height - lambda*sil.yMax, x2: lambda*sil.xMax, y2: height - lambda*sil.yMin]; cell _ CDCells.CreateEmptyCell []; CDCells.SetInterestRect [silDesigns[file].data, cell, ir]; }; FOR silObj: SilObjectList _ sil.objects, silObj.rest WHILE silObj # NIL DO size.x _ lambda * (silObj.first.xMax - silObj.first.xMin); size.y _ lambda * (silObj.first.yMax - silObj.first.yMin); topLeftPos.x _ position.x _ lambda * silObj.first.xMin; position.y _ height - lambda * silObj.first.yMax; topLeftPos.y _ height - lambda * silObj.first.yMin; SELECT silObj.first.font FROM IN InternalTrueFonts => { cdFont: REF CDTexts.FontRec; er: ImagerFont.Extents; IF (cellFonts[silObj.first.font][silObj.first.italic].descr = NIL) THEN MakeCDFont [silObj.first.font, silObj.first.italic]; cdFont _ cellFonts[silObj.first.font][silObj.first.italic].descr; cdObPtr _ CDTexts.Create [text: silObj.first.value, font: cdFont, layer: colorTable[silObj.first.color]]; IF cdObPtr = NIL THEN CD.Error [ec: other, explanation: "Cannot create text"]; er _ ImagerFont.RopeBoundingBox [cdFont.font, silObj.first.value]; position.y _ height - lambda * silObj.first.yMin - Real.Round[er.ascent] - cdFont.origin.y; [] _ CDCells.IncludeOb [design: silDesigns[file].data, cell: cell, ob: cdObPtr, trans: [position], mode: dontNotify] }; IN InternalFileMacroFonts => { IF debug1 THEN TerminalIO.PutRope [IO.PutFR ["%g calls a cell in the same design:\n", IO.char [name]]]; import _ FALSE; ExpansionWrapping [rope: silObj.first.value, color: silObj.first.color] }; IN InternalLibraryFile => { externalFileNr: LibraryFile; -- Since the exported procedure works with the external library file numbering, we cannot use the internal Sil numbering when we call our procedures. IF debug1 THEN TerminalIO.PutRope ["Import of a cell in another design.\n"]; externalFileNr _ silObj.first.font - mainFile; IF (silDesigns[externalFileNr].data = NIL) THEN [] _ ReadSilLibrary [externalFileNr]; IF NOT silDesigns[externalFileNr].imported THEN { silDesigns[externalFileNr].imported _ CDImports.LoadAndBindDesign[into: silDesigns[file].data, importeeName: silDesigns[externalFileNr].data.name]; IF NOT silDesigns[externalFileNr].imported THEN IF file IN MainFile THEN CD.Error [ec: other, explanation: "Cannot import library"] ELSE CD.Error [ec: other, explanation: "Library tried to import other library"] }; impName _ silDesigns[externalFileNr].data.name; -- assigned to a global variable, so that it can be used in the recursion import _ TRUE; ExpansionWrapping [rope: silObj.first.value, color: silObj.first.color] }; IN InternalForegroundBoxFonts => { cdObPtr _ CDRects.CreateRect [size: size, l: colorTable[silObj.first.color]]; [] _ CDCells.IncludeOb [design: silDesigns[file].data, cell: cell, ob: cdObPtr, trans: [position], mode: dontNotify] }; IN InternalBackgroundBoxFonts => { cdObPtr _ CDRects.CreateRect [size: size, l: colorTable[silObj.first.color]]; CDProperties.PutObjectProp [onto: cdObPtr, prop: background, val: background]; [] _ CDCells.IncludeOb [design: silDesigns[file].data, cell: cell, ob: cdObPtr, trans: [position], mode: dontNotify] }; ENDCASE => CD.Error [explanation: "Invalid case in CDSilConversionImpl.MacroToObject"] ENDLOOP; IF NOT workingOnMainObject THEN { CDCells.SetInterestRect [silDesigns[file].data, cell]; [] _ CDDirectory.Include [design: silDesigns[file].data, object: cell, name: Rope.FromChar[name]]; }; object _ IF workingOnMainObject THEN cdObPtr ELSE cell; sil.cdCellPtr _ object; sil.objects _ NIL; -- dispose obsolete space IF debug1 THEN TerminalIO.PutRope [IO.PutFR ["Converted object: %g\n", IO.char[name]]]; RETURN [object] }; -- end MacroToObject FOR obj: MacroName IN MacroName DO IF ((allMacros[obj] # NIL) AND (allMacros[obj].cdCellPtr = NIL)) THEN [] _ MacroToObject [allMacros[obj], obj] ENDLOOP; IF ((allMacros[mainObject] # NIL) AND (allMacros[mainObject].cdCellPtr = NIL)) THEN [] _ MacroToObject [allMacros[mainObject], mainObject]; IF debugAll THEN TerminalIO.PutRope ["Sil macro file converted to Chipndale model.\n"] }; -- end ConvertSilFile ReadSilFile: PROC [fileName: Rope.ROPE] ~ { sBlock: SilBlockRef _ NEW [SilBlock]; largesBlock: LargeSilBlockRef _ NEW [LargeSilBlock]; largeFormat: BOOL _ FALSE; block: LONG POINTER _ NIL; -- either sBlock or largesBlock bytesInSilItemBlock: INTEGER; -- depends on above AddItemBlockToMacro: PROC [itemBlock: SilObject, name: CHAR] ~ { m: MacroPtr _ allMacros[name]; IF m = NIL THEN m _ NEW [Macro]; m.xMin _ MIN [m.xMin, itemBlock.xMin]; m.yMin _ MIN [m.yMin, itemBlock.yMin]; m.xMax _ MAX [m.xMax, itemBlock.yMax]; m.yMax _ MAX [m.yMax, itemBlock.yMax]; m.objects _ CONS [itemBlock, m.objects]; allMacros[name] _ m }; -- end AddItemBlockToMacro ReadItemBlock: PROC [s: IO.STREAM] RETURNS [name: CHAR, itemBlock: SilObject] ~ { ENABLE IO.EndOfStream => CD.Error [ec: other, explanation: "Unexpected End Of Stream"]; ReadChar: PROC[] RETURNS [c: CHAR] ~ { RETURN [s.GetChar[] ]; }; -- end ReadChar maxRecLen: INTEGER ~ 256; --the longest a record can be (1 byte for its length) len: INTEGER; TRUSTED BEGIN bytesGot: INT _ s.UnsafeGetBlock [ [base: block, startIndex: 0, count: bytesInSilItemBlock]]; IF bytesGot # bytesInSilItemBlock THEN CD.Error [ec: other, explanation: "Macro file corrupted"] END; IF largeFormat THEN BEGIN name _ IF largesBlock.leftChar = mainElementName THEN ' ELSE largesBlock.rightChar; itemBlock.xMin _ largesBlock.xMin; itemBlock.yMin _ largesBlock.yMin; itemBlock.xMax _ largesBlock.xMax; itemBlock.yMax _ largesBlock.yMax; itemBlock.color _ largesBlock.color; itemBlock.font _ largesBlock.font; itemBlock.italic _ (largesBlock.italic = 1) END ELSE BEGIN name _ IF sBlock.leftChar = mainElementName THEN ' ELSE sBlock.rightChar; itemBlock.xMin _ sBlock.xMin; itemBlock.yMin _ sBlock.yMin; itemBlock.xMax _ sBlock.xMax; itemBlock.yMax _ sBlock.yMax; itemBlock.color _ sBlock.color; itemBlock.font _ sBlock.font; itemBlock.italic _ (sBlock.italic = 1) END; IF debug0 THEN { TerminalIO.PutRope [IO.PutFR ["\n%g%g", IO.char[name], IO.int[ORD[name]]]]; {OPEN itemBlock; TerminalIO.PutRope [IO.PutFR [": xMin = %g, yMin = %g, xMax = %g, yMax = %g. ", IO.int[xMin], IO.int[yMin], IO.int[xMax], IO.int[yMax]]]; TerminalIO.PutRope [IO.PutFR ["Color = %g. Font = %g", IO.int[color], IO.int[font]]]; IF color # 0 THEN TerminalIO.PutRope ["***"]; IF NOT italic THEN TerminalIO.PutRope [", not"]; TerminalIO.PutRope [" italic "] } }; IF itemBlock.font IN InternalRopeFonts THEN { len _ s.GetChar[] - 0C; itemBlock.value _ Rope.FromProc [len, ReadChar, maxRecLen]; IF debug0 THEN TerminalIO.PutRope [itemBlock.value]; IF len MOD 2 = 0 THEN --Make sure to start next item block on a word boundary [] _ s.GetChar[]; --Flush the extra slot for a Char } }; -- end ReadItemBlock BEGIN header1, header2: CHAR; name: CHAR; itemBlock: SilObject; s: IO.STREAM _ FS.StreamOpen [fileName ! FS.Error => IF error.group#bug THEN ERROR fileNotFound [error.explanation]]; IF debugAll THEN {TerminalIO.PutRope [fileName]; TerminalIO.PutRope ["\n"]}; header1 _ s.GetChar[]; header2 _ s.GetChar[]; IF (header1 # checkCodeByte1) THEN ERROR fileNotFound ["File not in Sil format"]; SELECT header2 FROM unbuiltCheckCodeByte2 => IF debugAll THEN TerminalIO.PutRope ["Sil file format OK.\n"]; builtCheckCodeByte2 => TerminalIO.PutRope ["Sil schematic file has been 'build' into a wire-list file via the Build process.\n"]; largeFormatFileByte2 => largeFormat _ TRUE; ENDCASE => ERROR fileNotFound ["File not in Sil format"]; TRUSTED {block _ IF largeFormat THEN LOOPHOLE [largesBlock] ELSE LOOPHOLE [sBlock]}; bytesInSilItemBlock _ IF largeFormat THEN SIZE [LargeSilBlock] * Basics.bytesPerWord ELSE SIZE [SilBlock] * Basics.bytesPerWord; allMacros _ NEW [MacroFile]; WHILE NOT s.EndOf[] DO [name, itemBlock] _ ReadItemBlock [s]; AddItemBlockToMacro [itemBlock, name] ENDLOOP; IO.Close[s] END }; -- end ReadSilFile ReadModel: Commander.CommandProc = BEGIN ENABLE BEGIN TerminalIO.UserAbort => {msg _ "user abort"; GOTO failure}; fileNotFound => {msg _ reason; GOTO failure} END; list: LIST OF Rope.ROPE; length: NAT; name: Rope.ROPE; [list, length] _ CommandTool.ParseToList [cmd]; IF length = 1 THEN name _ list.first ELSE BEGIN result _ $Failure; msg _ "unknown arguments"; TerminalIO.PutRope [msg.Cat ["\n"]]; RETURN END; IF convLibEachTime THEN TerminalIO.PutRope ["\nAll libraries will be converted as they are referenced.\n"] ELSE TerminalIO.PutRope ["\nIf they exist, the libraries specified in the user profile entries 'ChipNDale.ChipNSil.Library%' will be used. Delete them to force the creation of new ones.\n"]; [] _ ReadSilModel [name]; msg _ name.Concat [" converted to ChipNDale"]; FOR color: Color IN Color DO coloredMacros[color] _ NIL ENDLOOP; EXITS failure => {result _ $Failure; TerminalIO.PutRope [msg.Concat ["\n"]]} END; UserProfile.CallWhenProfileChanges [SetFonts]; UserProfile.CallWhenProfileChanges [FlushLibraries]; IF NOT CDProperties.RegisterProperty [prop: background, registrationKey: $GBB] THEN TerminalIO.PutRope ["CDSilConversionImpl re-executed"]; -- somebody is already using it Commander.Register [key: "CDReadSil", proc: ReadModel, doc: "Read a SIL model into ChipNSil and save it."] END. 6²CDSilConversionImpl.mesa Copyright c 1984, 1985, 1986, 1987 by Xerox Corporation. All rights reserved. Last edited by: Christian Jacobi, February 25, 1987 4:25:13 pm PST gbb December 1, 1986 8:12:03 pm PST This module allows Chipndale to access Sil files and macros. Toggles for behaviour of this program Toggles for debugging Description of the SIL file structure: The first word in the file is a check code, that can be used to see that the file is actually a Sil format file. This word has two possible values, octal 34562 and 34563. The second value has been adopted as part of the design automation process to indicate that a Sil schematic file has been "build" into a wire-list file via the Build process. Following this word are a secession of "item blocks" that describe the contents of the Sil drawing. An Item block has the following form: word 0: macro-code If this word equals a character code, then this item is to be added to the list of items for the macro Font 4 character. All items which are part of macro definitions will appear first in the file. word 1: state and X-min bits 0...3 are used internally to indicate the current state of an item - normal, selected, or deleted. bits 4...15 are the minimum X coordinate bit position of the bounding box that the item occupies. word 2: Y-min bits 0...15 are the minimum Y coordinate bit position of the bounding box that the item occupies. word 3: color and X-max bits 0...3 are used to indicate the color associated with this item according to the following table: 00: Neutral 08: Brown 01: Red 09: Orange 02: Yellow 10: Lime 03: Green 11: Turquise 04: Cyan 12: Aqua 05: Violet 13: UltraViolet 06: Magenta 14: Pink 07: White 15: Smoke bits 4...15 are the maximum X coordinate bit position of the bounding box that the item occupies. word 4: font, face, and Y-max bits 0...3 are used to indicate the "font" associated with this item. Font values are interpreted according to the following table: 00: Font 0 01: Font 0 with "boldness" opposite to default value in profile 02: Font 1 03: Font 1 with "boldness" opposite to default value in profile 04: Font 2 05: Font 2 with "boldness" opposite to default value in profile 06: Font 3 07: Font 3 with "boldness" opposite to default value in profile 08: Font 4 macro 09: Font 5 macro 10: Font 6 macro 11: Font 7 macro 12: Font 8 macro 13: Font 9 macro 14: A line with lingth and width indicated by preceeding coordinates 15: A background with area indicated by preceeding coordinates bit 4 is used to indicate the "italics" opposite to default value in profile. This bit only has significance if the font value is 0 through 7. bits 5...15 are the maximum Y coordinate bit position of the bounding box that the item occupies. word 5 etc: optional string If the preceeding word indicated an item of fonts 0 through 13, then additional words are required to define the characters in the item string. This is done with a BCPL string definition, that is, the left byte of word 5 is the number of characters in the string, the right byte is the first character. Additional words are appended as needed to contain the specified number of character bytes. All coordinate value are expressed in "Alto Screen" units and are referneced to the upper left hand corner of the screen. Notice that descriptions of library fonts 5 through 9 characters are not defined within this Sil file. A table is filled in by Sil during input, and later the library files indicated in the user profile are opened, and the front of the file is scanned for items defining the required character codes for each of the library fonts characters. This boils down to the following Cedar declarations for reading a Sil file. For convenience we introduce the following font subranges. LibraryFile: TYPE ~ [5..9]; declared in the definitions InternalMacroFonts: TYPE ~ [8..13]; InternalBoxFonts: TYPE ~ [14..15]; internalFileMacroFont: InternalFonts ~ 8; foregroundBoxFont: InternalFonts ~ 14; backgroundBoxFont: InternalFonts ~ 15; Storage of fonts. Storage of macros. note: coordinates are Alto screen absolute, hence -1 is OK. File name towahboo. Takes any name in any format and produces a full Sil file names in slash convention and a proper name (base). A Chipndale name is not produced because this is already done by Chipndale. Causes all library files to be reconverted. Useful when trying to crack a Sil file. A small utility. Reading a design. Reads a file containing a Sil model and makes it avalilable as a Chipndale design 'silDesign' with specific cells 'silDesignCells'. Reading a library file. Reads all macros from a macro disk file and stores them into the Chipndale cells. The design 'cells' additionally contains a synopsis of the cells it contains. For normal usage, 'cells' is not needed. Libray may already have been converted. Build Chipnsil design name. Build the Sil library name. Check whether the library file already exists in Chipndale format and read it if this is the case. Read in the the library file specified and convert it. Write the library to disk, if necessary. Gets from the user profile the fonts and makes the names for the Chipndale fonts. For the moment we consider only the display font, as Cedar Sil does. The Chipndale fonts are made only when they are referenced the first time. Takes the coarse name as it is specified in the user profile, and produces one with the 'bold' (B) attribute reversed as well as one with the 'italic' (I) attibute. The 'narrow' (N) attribute is ignored. Fix boldness attribute. Add an italic attribute if none is present. Build the new font names. Get the true font names from the profile. In the version of Cedar Sil as of today, November 26, 1986 4:06:59 pm PST, there is a new command (^A) that allows you to use either strike or spline fonts for editing. However, it is not recorded in the Sil file which one you used to create the document. The Sil specification says that fonts are strike fonts, and that is what you get. If the document is scrambled when you read it because it was created with spline fonts, you lose: LIFE IS HARD! However, if you print the ChipNSil file using Nectarine, everithing will look OK. Transforms all Sil macros to Chipndale cells. If a macro contains a macro from another macro file, the following policy is adopted: We try to import it an abort if we fail to do so. Produces a Chipndale object from a Sil macro. The return parameter is necessary for the recursion. In Sil, if the color of the instantiation of a macro is not neutral, then all elements of the macro get this color. To do this, a new cell with all the contents on a new layer has to be created. This is done here partially, i.e., only one recursion level down and only for internal macros (font 4): LIFE IS HARD! If you want to implement is, you have to add to allMacros an index for the color. There are several cases, depending on whether the library has been converted at all and on whether the specific instance color has already been seen. To know the color, you have to introduce a global variable to get it out of the loop "FOR silObj: SilObjectList _ sil.objects". You cannot put it in as a procedure parameter because the procedure has to be of type Rope.ActionType. On the other side, be careful, because this procedure may call itself recursively! To make a copy of a cell use the procedure CDDirectory.Another. To change the layers of all objects in it use the procedure CDCells.EnumerateInstances. The way Sil is used, the instances you will be called back with, are either rectangles or ropes, so everything is easy. The code in Sil, however, allows you to have also other cells, i.e., macros in there, so you should take care of all the recursions, because some day somebody will find it out and you will get bitten. Why is it done that way in Sil? Well, since Sil (at least the first conversion of Alto Sil to Cedar Sil that was the basis for this program) simply interprets the Sil file, it merely calls Imager.SetColor everytime it finds a color different from Neutral. Guess why selection is so slow in Sil! Cannot simply change the layer, since because of caching the objects in the copied cell are the sames than those in the original cell. Hence simply changing the layer would cause the change in the original cell and in all itsd colored copies. Now allMacros[c].cdCellPtr # NIL Create a copy of the cell: Here the other returned fields are tested for consistency. Colour the cell: Makes things easier to understand in the case of recursion. TYPE = ActionType. Imports a string of cells from another library. It is guaranteed that the library is already imported. THIS ERROR REALLY MIGHT HAPPEN A file macro is one that is not in a library file, but rather in the file containing the Sil model. Externally it is referred to as a character of font 4. IF debug2 AND ((name = 'B) OR (name = 'x)) THEN TerminalIO.PutRope [IO.PutFR ["SetInterestRect to (%g, %g), (%g, %g)\n", IO.int[boundingBox.x1], IO.int[boundingBox.y1], IO.int[boundingBox.x2], IO.int[boundingBox.y2]]] IF debug2 AND ((name = 'B) OR (name = 'x)) THEN TerminalIO.PutRope [IO.PutFR ["Value: %g, y position: %g\n", IO.rope[silObj.first.value], IO.int[position.y]]]; Import cell from specified design. Sil first displays all background rectangles, then the foreground rectangles. To avoid unnecessary recursion, we convert first the true macros and last the main object. The macro is not empty and has not been converted yet. The mainObject is not empty and has not been converted yet. Reads a single macro file. Update bounding box of macro. Attach item block to Sil object list Return the Sil item block which appears next in the file being read. Also, return the item block's name, which will be ' (space) for main pictures, and a printing character for item blocks which are part of macro definitions. This procedure exists so it can be passed to Rope.FromProc, below. Main of ReadItemBlock name depends on whether is part of main picture ot macro. state of item block (normal, selected, deleted) is ignored. name depends on whether is part of main picture ot macro. state of item block (normal, selected, deleted) is ignored. The item block can now be attached to the relative macro. We cannot work directly with cells, because we need the bounding box of the entire macro to convert the y coordinate. Each library file contains a synopsis of all macros, stored as a main picture. Fluch cache to avoid colored cells to be inherited by next design: For library files this would be synopsis _ ReadSilLibrary [5]; [] _ CDViewer.CreateViewer [design: synopsis]; CDOps.Redraw [synopsis] -- optional Module initialization. Edited on January 14, 1985 6:08:21 pm PST, by Beretta Font handling adapted to new Chipndale interface. Edited on January 15, 1985 2:14:43 pm PST, by Beretta Substituted CD.Error by ERROR ABORTED in case the file is not found. gbb September 4, 1985 4:13:19 pm PDT Added toggles for behaviour. The strategy on the re-use of library files and on the dialogue about writing them onto disk can be changed by modifying convLibEachTime, verbose and recompiling. Finding fonts is simpler because of the pseudo-server mechanism introduced with Cedar 6.0. changes to: CDSilConversionImpl, ReadSilModel, ReadSilLibrary, MakeCDFont. gbb September 6, 1985 12:19:09 pm PDT Clean-up changes to: DIRECTORY, CDSilConversionImpl, TechnologyIsCdsil, ReadSilModel, ReadSilLibrary, SetFonts, FixAttibutes (local of SetFonts), MakeCDFont, MacroToObject (local of ConvertSilFile), ExpandRope (local of MacroToObject, local of ConvertSilFile) gbb October 14, 1985 4:45:17 pm PDT The defaults in Cedar Sil have changed: added test for the new large Cedar Sil file format and abort if the case. The large format will have to implemented in some future. changes to: CDSilConversionImpl: new constant, ReadSilFile: Added test for header2 = largeFormatFileByte2. gbb March 26, 1986 11:42:18 am PST Tracked changes for ChipNDale23 gbb April 9, 1986 6:59:19 pm PST Added ability to read new large Cedar Sil format. changes to: DIRECTORY, CDSilConversionImpl, CrackNames, TechnologyIsCdsil, ReadSilModel, ReadSilLibrary, SetFonts, FixAttibutes (local of SetFonts), MakeCDFont, ConvertSilFile, MacroToObject (local of ConvertSilFile), ReadSilFile, ReadItemBlock (local of ReadSilFile), ReadChar (local of ReadItemBlock, local of ReadSilFile), ReadModel, SetFonts gbb July 17, 1986 7:14:38 pm PDT Registers the procedure to read the fonts from the user profile. changes to: CDSilConversionImpl: registration, SetFonts: now a call back procedure. gbb October 28, 1986 12:03:42 pm PST Unlike Cedar Sil, ChipNSil now abortes if the file is not in Sil format. changes to: ReadSilFile: Added ERROR ABORTED. gbb November 25, 1986 2:20:28 pm PST Converted to Chipndale 24. Libraries are now forced to be recreated whenever the user profile changes (but not more often as desired by some people, since you have to change the user profile to change a library name. If you wanna play in the interpreter then you can also use it to smash the cache). gbb November 26, 1986 4:13:08 pm PST Tried to implement some idiosyncrasies of the latest version of Cedar Sil, but estimated it was too much of a pain in the ass to do it. Search for LIFE IS HARD! if you care to do it. changes to: DIRECTORY, CDSilConversionImpl, TechnologyIsCdsil, SetFonts, MakeCDFont, ExpandRope (local of MacroToObject, local of ConvertSilFile), MacroToObject (local of ConvertSilFile) gbb November 27, 1986 5:15:44 pm PST Did part of it anyway. changes to: DIRECTORY, CDSilConversionImpl, CrackNames, MakeCDFont, ConvertSilFile, MacroToObject (local of ConvertSilFile), ColoredMacro (local of MacroToObject, local of ConvertSilFile), ColorContents (local of ColoredMacro, local of MacroToObject, local of ConvertSilFile), ExpansionWrapping (local of MacroToObject, local of ConvertSilFile), ExpandRope (local of ExpansionWrapping, local of MacroToObject, local of ConvertSilFile) ΚX– "cedar" style˜code™Kšœ ΟmœC™NK™BK™#—K˜K™<code2šΟk ˜ Kšœžœ˜Kšžœžœi˜qKšœžœ`˜mKšœ žœ"˜3Kšœ žœ,˜;Kšžœžœ<˜FKšœžœ˜Kšœ žœ#˜5Kšœžœ˜Kšœžœ“˜žKšœ˜Kšœžœ%˜2Kšœ žœ˜Kšœ žœ˜(Kšœ žœ˜ Kšœ žœ˜+Kšžœžœ?˜GKšœ žœ"˜2Kšžœžœ>žœ˜^Kšœžœ ˜KšœžœEžœ˜eKšœ žœ˜/Kšœžœ ˜Kšœ žœJ˜[—šΠlnœžœž˜"Lš žœžœ#žœ]žœžœ%˜ΕLšžœ˜Lšžœžœ˜Lšœžœžœžœ˜/L™%KšœžœžœΟc+˜JKšœ žœžœ L˜cL™Kšœžœžœ Πce ˜%Kšœžœžœ ‘ ˜#Kšœžœžœ ‘˜3Kšœžœžœ ‘˜'KšœΟežœžœ’‘˜2Kš œ žœ žœžœžœžœ˜@™&K™Ϋ™Š™K™Ζ—™K™gK™a—™ K™a—™™eK™±—K™a—™™„K™™—K™K™a—™K™Œ——K™yK™Φ—™KKšœ žœ ˜Kšœ žœ ˜Kšœ žœ˜Kšœ žœ˜!Kšœ žœ ˜Kšœ žœ˜Kšœžœ  <˜ZKšœžœ ‘ ˜>Kšœžœ˜!Kšœžœ˜Kšœžœ &˜GKšœ žœžœ ˜!Kšœžœžœ #˜Oš œ žœžœž œžœ˜,Kšœžœ˜Kšœ˜Kšœ˜Kšœ˜Kšœ˜Kšœ˜Kšœ˜Kšœ˜Kšœ˜Kšœ˜—š œžœžœž œžœ˜1Kšœžœ˜Kšœžœ˜Kšœžœ˜Kšœžœ˜Kšœžœ˜Kšœ˜Kšœ˜Kšœ˜K˜Kšœ˜——™:Kšœ žœ ˜Kšœ žœ ˜Kšœ žœ&™7Kšœ žœ ˜Kšœžœ ˜Kšœžœ ™#Kšœžœ ˜&Kšœžœ ˜!Kšœžœ ˜$Kšœžœ  4˜XKšœžœ ™"Kšœžœ ˜,Kšœžœ ˜,Kšœ˜Kšœ)™)K™&K™&Kšœžœ ˜Kšœ žœžœžœτ˜‘K˜—™šœžœžœ˜Kšœ žœ˜Kšœžœž˜ K˜—Kš œ žœžœžœžœžœ˜9—šœ™Kšœ žœžœ  $˜GKšœ žœžœ  ‘˜4Kšœ ‘˜<šœ žœžœ˜Kšœ žœ '˜Kšžœžœžœžœ<˜NKšžœžœ4˜@Kšœ ‘˜—L™š₯ œžœžœ žœžœ žœ žœ˜Qšœƒ™ƒKšœžœ˜Kšœžœžœ ˜Kšœ@˜@Kšžœžœ˜.Kšœ6˜6Kšœ˜Kšœ#˜#Mšœ>˜>Mšžœ žœj˜yšžœž˜ šžœžœžœ.ž˜=Kšœn˜n——Kšœ,˜,—Kšœ ‘˜—L™š ₯œžœžœžœ žœ žœ˜WšœΘ™ΘKšœžœ  ‘ ˜1Kšœžœ  ‘˜/Kšœ9žœ˜>Kšœ žœ ‘ ˜3Kšœžœžœ ˜M™'KšžœžœžœΠklœ˜IK™KšœD˜DKšœL˜LKšœ@˜@Kšœ0˜0K™KšœB˜BKšœG˜GKšœC˜Cšžœžœžœž˜!K™bKšœžœ9˜EKšžœ žœžœ$Ρbklœ ˜Fšž˜Kšœ†˜†—Kšžœ ˜—M™6Kšœ&˜&Kšœ4˜4Kšœ˜Kšœ!˜!Mšœ˜M™(Kšžœ žœk˜zšžœžœ˜šžœžœžœ˜)Kšœžœ-˜Ošžœžœž˜'Kšœm˜m—K˜—Kšœ  ˜—Kšžœ˜Kšœ’‘˜——š₯œ žœ˜,™αKšœ žœ ‘ ˜3Kš œžœžœ žœžœ˜7Kšœ^˜^Kšœžœžœ˜š ₯ œžœžœžœžœ˜Y™ΛKšœ.žœ˜3Kšœ žœ˜Kšœžœ˜Kšœžœ˜Mšœ"žœ˜CKšœ\˜\Kšœ3˜3KšœP˜PM™Kšœ#˜#Kšžœžœ)˜KKšžœA˜EM™+KšœE˜EKšžœžœžœ,˜EM™Kšœv˜vKšœw˜wKšžœžœ˜$šžœ˜Kšœ'˜'Kšœr˜rK˜—šžœžœ˜KšœL˜LKšœ=˜=Kšœ6˜6K–Z[r1: ROPE _ NIL, r2: ROPE _ NIL, r3: ROPE _ NIL, r4: ROPE _ NIL, r5: ROPE _ NIL]šœ˜——Kšœ ‘˜—šžœžœ žœ˜!K™)Kšœ=˜=Kšœ[˜[KšœŠ˜Š—Kšž˜—Kšœ ‘ ˜—š₯ œžœ!žœ˜:Kšœžœ˜KšœF˜FKšœ΄Οb œR™“KšœO˜Ošžœžœžœ˜+Kšœf˜fKšžœž˜ K˜—Kšœ ‘˜—š₯œžœ˜(šœ΅™΅š ₯ œžœ#žœ žœ žœ˜[K™bKšœžœ˜%Kšœ žœ˜!Kšœ žœ žœ ‘3˜PKšœžœ žœ ‘˜7Kšœ žœ ‘˜.Kšœžœ‘ ˜6Kšœžœ˜"Kšœžœ ‘6  ˜Zš ₯ œžœ1žœ žœ ž˜gšœ«¨ ™ΈKšœΎžœΰ™‘KšœΨ™ΨK™¦—š₯ œž˜-K™σKšžœ%žœžœ6˜€Kšžœ ˜—šžœžœž˜$šžœžœžœž˜/šžœž˜Kšœžœ&žœ˜L—KšΠbkœ(˜.Kšž˜—Kšžœ©œ˜'Kšžœ˜—Mšžœžœžœ˜Cšžœžœ ˜$Kšœžœ$˜.Kšœžœ˜Kš œžœžœžœžœžœ˜tšžœžœžœž˜/šžœž˜Kšœžœ&žœ˜L—Kšœ*˜*Kšœž™ Kšž˜—K™Kšœ}žœ˜ƒK™:šžœ žœžœ'žœžœ5žœžœžœ.žœž˜ΠKšœžœ&žœ˜LKšœ#˜#Kšž˜—šžœž˜ K™Kšœ9˜9Kšœ˜Kšž˜—Kšž˜—Kšžœ ˜—š₯œžœ žœ!ž˜NK™;š ₯ œžœžœžœžœžœ˜;Kšžœ™Kšœ žœ  ‘0˜HKšœ žœ ˜šžœžœž˜Kšœf™fKšœ}˜}šžœ žœžœ˜KšžœA˜CKšœ™—Kšž˜—šžœ ˜Kšœš™š—Kšœ"˜"Kšœžœ˜Kšœ(˜(Kšœ#˜#Kšœp˜pKšœ ‘  ˜—Mšœ.˜.Kšžœ ˜—Mšœ"˜"šœ žœžœ˜