亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? gs_lev2.ps

?? 遺傳算法工具箱 希望高手指點(diǎn) GATOOLS
?? PS
字號(hào):
%    Copyright (C) 1990, 1996 Aladdin Enterprises.  All rights reserved.
% 
% This file is part of Aladdin Ghostscript.
% 
% Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
% or distributor accepts any responsibility for the consequences of using it,
% or for whether it serves any particular purpose or works at all, unless he
% or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
% License (the "License") for full details.
% 
% Every copy of Aladdin Ghostscript must include a copy of the License,
% normally in a plain ASCII text file named PUBLIC.  The License grants you
% the right to copy, modify and redistribute Aladdin Ghostscript, but only
% under certain conditions described in the License.  Among other things, the
% License requires that the copyright notice and this notice be preserved on
% all copies.

% Initialization file for Level 2 functions.
% When this is run, systemdict is still writable,
% but (almost) everything defined here goes into level2dict.

level2dict begin

% ------ Miscellaneous ------ %

(<<) cvn /mark load def
(>>) cvn /.dicttomark load def
/currentsystemparams { mark .currentsystemparams .dicttomark } odef
/currentuserparams { mark .currentuserparams .dicttomark } odef
/deviceinfo { currentdevice getdeviceprops .dicttomark readonly } odef
/languagelevel 2 def
% When running in Level 2 mode, this interpreter is supposed to be
% compatible with PostScript version 2010 (I think).
/version (2010) def

% If binary tokens are supported by this interpreter,
% set an appropriate default binary object format.
/setobjectformat where
 { pop
   currentsystemparams dup
   /RealFormat get (IEEE) eq { 1 } { 3 } ifelse
   exch /ByteOrder get { 1 add } if
   setobjectformat
 } if

% ------ Virtual memory ------ %

/currentglobal /currentshared load def
/gcheck /scheck load def
/setglobal /setshared load def
% We can make the global dictionaries very small, because they auto-expand.
/globaldict currentdict /shareddict .knownget not { 4 dict } if def
/GlobalFontDirectory SharedFontDirectory def

% ------ IODevices ------ %

/.getdevparams where
 { pop /currentdevparams { .getdevparams .dicttomark } odef
 } if
/.putdevparams where
 { pop /setdevparams { mark exch { } forall counttomark 2 add -1 roll .putdevparams } odef
 } if

% ------ Job control ------ %

serverdict begin

% We could protect the job information better, but we aren't attempting
% (currently) to protect ourselves against maliciousness.

/.jobsave null def		% top-level save object
/.jobsavelevel 0 def		% save depth of job (0 if .jobsave is null,
				% 1 otherwise)
/.adminjob true def		% status of current unencapsulated job

/exitserver
 { true exch startjob not { /exitserver /invalidaccess signalerror } if
 } bind def

end		% serverdict

%**************** The definition of startjob is not complete yet, since
% it doesn't clear the exec stack, doesn't reset stdin/stdout,
% doesn't run the job under its own control, and doesn't reset
% other aspects of the interpreter.
/startjob
 { vmstatus pop pop serverdict /.jobsavelevel get eq
   1 index .checkpassword 0 gt and
    { .checkpassword count 2 roll count 2 sub { pop } repeat
      cleardictstack
      serverdict /.jobsave get dup null eq { pop } { restore } ifelse
      exch
       {	% unencapsulated job
	 serverdict /.jobsave null put
	 serverdict /.jobsavelevel 0 put
	 serverdict /.adminjob 3 -1 roll 1 gt put
       }
       {	% encapsulated job
	 serverdict /.jobsave save put
	 serverdict /.jobsavelevel 1 put
	 userdict /quit /stop load put
	 pop
       }
      ifelse true
    }
    { pop pop false
    }
   ifelse
 } odef

systemdict begin
/quit
 { //systemdict /serverdict get /.jobsave get null eq
    { //quit }
    { //systemdict /quit get /invalidaccess signalerror }
   ifelse
 } bind odef
end

% ------ Compatibility ------ %

% In Level 2 mode, the following replace the definitions that gs_statd.ps
% installs in statusdict and serverdict.
% Note that statusdict must be allocated in local VM.
% We don't bother with many of these yet, and the ones defined in terms
% of currentsystemparams are cavalier about allocating a dictionary
% in order to retrieve a single element from it....

/.dict1 { exch mark 3 1 roll .dicttomark } bind def

currentglobal false setglobal 25 dict exch setglobal begin
currentsystemparams

/buildtime 1 index /BuildTime get def
/byteorder 1 index /ByteOrder get def
/checkpassword { .checkpassword 0 gt } bind def
/defaulttimeouts
 { currentsystemparams dup
   /JobTimeout .knownget not { 0 } if
   exch /WaitTimeout .knownget not { 0 } if
   currentpagedevice /ManualFeedTimeout .knownget not { 0 } if
 } bind def
dup /DoStartPage known
 { /dostartpage { currentsystemparams /DoStartPage get } bind def
   /setdostartpage { /DoStartPage .dict1 setsystemparams } bind def
 } if
dup /StartupMode known
 { /dosysstart { currentsystemparams /StartupMode get 0 ne } bind def
   /setdosysstart { { 1 } { 0 } ifelse /StartupMode .dict1 setsystemparams } bind def
 } if
%****** Setting jobname is supposed to set userparams.JobName, too.
/jobname { currentuserparams /JobName get } bind def
/jobtimeout { currentuserparams /JobTimeout get } bind def
%manualfeed
%manualfeedtimeout
/margins
 { currentpagedevice /Margins .knownget { exch } { [0 0] } ifelse
 } bind def
%pagecount
%pagestackorder
/printername
 { currentsystemparams /PrinterName .knownget not { () } if exch copy
 } bind def
%/ramsize { currentsystemparams /RamSize get } bind def
/realformat 1 index /RealFormat get def

/.setpagedevice where
 { pop
   /setdefaulttimeouts
    { exch mark /ManualFeedTimeout 3 -1 roll
      /Policies mark /ManualFeedTimeout 1 .dicttomark
      .dicttomark setpagedevice
      /WaitTimeout exch mark /JobTimeout 5 2 roll .dicttomark setsystemparams
    } bind def
   /setmargins
    { exch 2 array astore /Margins .dict1 setpagedevice
    } bind def
 }
if
%setpagestackorder
dup /PrinterName known
 { /setprintername { /PrinterName .dict1 setsystemparams } bind def
 } if
currentuserparams /WaitTimeout known
 { /waittimeout { currentuserparams /WaitTimeout get } bind def
 } if

/.setpagedevice where
 { pop 
   /pagemargin
    { currentpagedevice /PageOffset .knownget { 0 get } { 0 } ifelse
    } bind def
   /pageparams
    { currentpagedevice
      dup /Orientation .knownget { 1 and ORIENT1 { 1 xor } if } { 0 } ifelse exch
      dup /PageSize get aload pop 3 index 0 ne { exch } if 3 2 roll
      /PageOffset .knownget { 0 get } { 0 } ifelse 4 -1 roll
    } bind def
   /.setpagesize { 2 array astore /PageSize .dict1 setpagedevice } bind def
   /setduplexmode { /Duplex .dict1 setpagedevice } bind def
   /setpagemargin { 0 2 array astore /PageOffset .dict1 setpagedevice } bind def
   /setpageparams
    { mark /PageSize 6 -2 roll
      4 index 1 and ORIENT1 { 1 } { 0 } ifelse ne { exch } if 2 array astore
      /Orientation 5 -1 roll ORIENT1 { 1 xor } if
      /PageOffset counttomark 2 add -1 roll 0 2 array astore
      .dicttomark setpagedevice
    } bind def
   /setresolution
    { dup 2 array astore /HWResolution .dict1 setpagedevice
    } bind def
 }
if

pop		% currentsystemparams

% Flag the current dictionary so it will be swapped when we
% change language levels.  (See zmisc2.c for more information.)
/statusdict currentdict def

currentdict end
/statusdict exch def

% ------ Color spaces ------ %

% Define the setcolorspace procedures.
/colorspacedict mark
  /DeviceGray { pop 0 setgray } bind
  /DeviceRGB { pop 0 0 0 setrgbcolor } bind
  /setcmykcolor where
   { pop /DeviceCMYK { pop 0 0 0 1 setcmykcolor } bind
   } if
  /.setcieaspace where
   { pop /CIEBasedA { NOCIE { pop 0 setgray } { 1 get .setcieaspace } ifelse } bind
   } if
  /.setcieabcspace where
   { pop /CIEBasedABC { NOCIE { pop 0 0 0 setrgbcolor } { 1 get .setcieabcspace } ifelse } bind
   } if
  /.setciedefspace where
   { pop /CIEBasedDEF { NOCIE { pop 0 0 0 setrgbcolor } { 1 get .setciedefspace } ifelse } bind
   } if
  /.setciedefgspace where
   { pop /CIEBasedDEFG { NOCIE { pop 0 0 0 1 setcmykcolor } { 1 get .setciedefgspace } ifelse } bind
   } if
  /.setseparationspace where
   { pop /Separation { dup 2 get setcolorspace .setseparationspace } bind
   } if
  /.setindexedspace where
   { pop /Indexed { dup 1 get setcolorspace .setindexedspace } bind
   } if
  /.setpatternspace where
   { pop /Pattern
      { dup length 1 gt { dup 1 get setcolorspace } if
        .setpatternspace
      } bind
   } if
.dicttomark def

/.devcs [/DeviceGray /DeviceRGB /DeviceCMYK] readonly def
/currentcolorspace
 { .currentcolorspace dup type /integertype eq
    { //.devcs exch 1 getinterval
    } if
 } odef
currentdict /.devcs .undef

/setcolorspace
 { dup type /nametype eq { 1 array astore } if
   dup //colorspacedict 1 index 0 get get exec
   .setcolorspace
 } odef

% Initialize the CIE rendering dictionary if necessary.
% The most common CIE files seem to assume the "calibrated RGB color space"
% described on p. 189 of the PostScript Language Reference Manual,
% 2nd Edition; we simply invert this transformation back to RGB.
/setcolorrendering where
 { pop mark
   /ColorRenderingType 1
% We must make RangePQR and RangeLMN large enough so that values computed by
% the assumed encoding MatrixLMN don't get clamped.
   /RangePQR [0 0.9505 0 1 0 1.0890]
   /TransformPQR [ { } dup dup ]
   /RangeLMN [0 0.9505 0 1 0 1.0890]
   /MatrixABC
    [ 3.24063 -0.96893  0.05571
     -1.53721  1.87576 -0.20402
     -0.49863  0.04152  1.05700
    ]
   /EncodeABC [{0 max 0.45 exp} bind dup dup]
   /WhitePoint [0.9505 1 1.0890]
   .dicttomark setcolorrendering
 } if

% ------ Painting ------ %

% A straightforward definition of execform that doesn't actually
% do any caching.
/execform
 { dup /Implementation known not
    { dup /FormType get 1 ne { /rangecheck signalerror } if
      dup /Implementation null put readonly
    } if
   gsave dup /Matrix get concat
   dup /BBox get aload pop
   exch 3 index sub exch 2 index sub rectclip
   dup /PaintProc get exec
   grestore
 } odef

/makepattern
 { currentglobal
    { false setglobal .buildpattern true setglobal }
    { .buildpattern }
   ifelse
   exch dup length 1 add dict .copydict
   dup /Implementation 4 -1 roll put
   readonly
 } odef

/setpattern
 { currentcolorspace 0 get /Pattern ne
    { [ /Pattern currentcolorspace ] setcolorspace } if
   setcolor
 } odef

end				% level2dict

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩成人免费看| 免播放器亚洲一区| 制服.丝袜.亚洲.中文.综合| 国模娜娜一区二区三区| 一级做a爱片久久| 久久久久久久精| 欧美精品aⅴ在线视频| 99精品在线免费| 老司机免费视频一区二区| 亚洲一区成人在线| 国产精品大尺度| 久久精品综合网| 欧美一区二区三区免费观看视频| 91小宝寻花一区二区三区| 久久99国产精品麻豆| 午夜精品免费在线| 自拍偷自拍亚洲精品播放| 欧美精品一区二区精品网| 欧美日韩在线不卡| 91在线国产福利| 成人av影院在线| 国产91精品一区二区麻豆网站| 蜜桃av一区二区在线观看 | 欧美激情一区二区三区不卡| 欧美一区二区在线免费观看| 欧美综合欧美视频| 91亚洲精品久久久蜜桃| 99久久精品免费精品国产| 成人亚洲一区二区一| 韩国欧美国产一区| 国产在线不卡一卡二卡三卡四卡| 免费一级欧美片在线观看| 图片区日韩欧美亚洲| 亚洲第一综合色| 亚洲国产视频一区| 丝瓜av网站精品一区二区| 午夜欧美视频在线观看| 亚洲电影一级片| 午夜天堂影视香蕉久久| 日韩电影免费在线看| 日韩不卡在线观看日韩不卡视频| 日韩高清一区在线| 免费成人在线观看视频| 奇米影视7777精品一区二区| 美美哒免费高清在线观看视频一区二区| 婷婷成人综合网| 免费欧美日韩国产三级电影| 日本美女视频一区二区| 久久精品国产99国产| 久久精品国产第一区二区三区| 精品一区二区日韩| 国产剧情一区二区| 成人av动漫网站| 91免费看片在线观看| 在线观看亚洲一区| 337p亚洲精品色噜噜噜| 欧美一区二区三区在| 精品欧美一区二区在线观看| 久久久久久久免费视频了| 久久色.com| **欧美大码日韩| 亚洲va欧美va天堂v国产综合| 日韩电影在线一区二区三区| 久久精品99久久久| 国产成人精品免费一区二区| 91色视频在线| 欧美喷水一区二区| 精品国产91洋老外米糕| 国产日韩欧美激情| 亚洲靠逼com| 久久成人免费电影| www.在线成人| 欧美日韩成人综合天天影院| 精品电影一区二区| 中文字幕亚洲欧美在线不卡| 亚洲成a人片综合在线| 日韩av成人高清| 99久久精品国产一区| 免费在线视频一区| 国产欧美精品在线观看| 日韩精品一区二区三区视频| 国产片一区二区| 一区二区欧美国产| 久久69国产一区二区蜜臀| 99久久精品国产精品久久| 欧美日韩视频在线观看一区二区三区| 日韩精品一区二区三区在线观看 | 中文字幕av不卡| 午夜精品久久久久久久久久| 国产精品18久久久久久久久久久久| 94-欧美-setu| wwww国产精品欧美| 亚洲国产视频一区| 成人激情开心网| 欧美一区二区三区精品| 《视频一区视频二区| 国内精品免费在线观看| 欧美午夜宅男影院| 国产欧美综合在线| 美女视频免费一区| 欧美性生活久久| 国产欧美日韩久久| 日本中文字幕一区| 色哟哟一区二区三区| 久久亚洲影视婷婷| 香蕉成人啪国产精品视频综合网| 国产69精品久久久久777| 91精品国产91久久久久久最新毛片| 国产精品久久久久久久久快鸭| 免费成人在线视频观看| 欧美视频在线观看一区| 国产精品理论在线观看| 韩国精品久久久| 91.xcao| 亚洲精品免费视频| 成人a级免费电影| 久久久久久久久久看片| 久久不见久久见免费视频1| 欧美性大战久久久| 一区二区三区四区在线免费观看| 粉嫩av亚洲一区二区图片| 精品国产伦一区二区三区观看方式 | 欧美剧在线免费观看网站| 亚洲欧美日韩在线播放| 成人性视频免费网站| 久久精品一区二区三区四区| 欧美性淫爽ww久久久久无| 国产精品美女久久福利网站| 国产成人综合视频| 久久人人爽人人爽| 国产精品一区二区三区99| 欧美成人一区二区三区片免费 | 亚洲国产精品一区二区www | 91精品啪在线观看国产60岁| 亚洲风情在线资源站| 欧美性色黄大片| 亚洲福利国产精品| 欧美男同性恋视频网站| 婷婷一区二区三区| 91精品国产综合久久久蜜臀粉嫩| 午夜久久久久久电影| 欧美三级视频在线| 亚洲电影欧美电影有声小说| 欧美老女人在线| 美女一区二区在线观看| 精品福利在线导航| 国产一区二区福利视频| 久久久久高清精品| 成人激情视频网站| 亚洲精品国产一区二区精华液 | 精品国产乱码久久久久久免费 | 欧美中文字幕不卡| 五月天欧美精品| 日韩一卡二卡三卡| 国产一区在线视频| 中文字幕av一区二区三区高| 色综合咪咪久久| 亚洲国产日日夜夜| 日韩亚洲国产中文字幕欧美| 久久91精品国产91久久小草| 欧美国产综合一区二区| 91黄色小视频| 日韩av在线发布| 久久九九久久九九| 色国产综合视频| 婷婷中文字幕综合| 久久综合色鬼综合色| 99久久免费精品高清特色大片| 亚洲女人小视频在线观看| 91精品国产高清一区二区三区蜜臀| 久久99九九99精品| 亚洲人成人一区二区在线观看| 欧美日韩精品一区二区三区 | 夜夜嗨av一区二区三区网页| 在线综合+亚洲+欧美中文字幕| 国产乱人伦偷精品视频不卡| 一二三四区精品视频| 精品国产一二三| 在线一区二区三区| 精品一区二区日韩| 亚洲在线免费播放| 久久久精品中文字幕麻豆发布| 91精品办公室少妇高潮对白| 麻豆国产精品视频| 亚洲黄色小视频| 久久伊99综合婷婷久久伊| 在线影院国内精品| 国产69精品久久久久毛片| 日日欢夜夜爽一区| 国产精品成人免费精品自在线观看| 91.com视频| 色老头久久综合| 国产成人精品免费视频网站| 五月天丁香久久| 亚洲欧洲av一区二区三区久久| 在线综合亚洲欧美在线视频| 日本韩国精品在线| 国产白丝网站精品污在线入口| 日产精品久久久久久久性色| 怡红院av一区二区三区|