ProjectPropertiesFrm.dfm 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. object ProjectPropertiesForm: TProjectPropertiesForm
  2. Left = 663
  3. Top = 261
  4. ActiveControl = cbShowAlias
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsSingle
  7. Caption = #39033#30446#23646#24615
  8. ClientHeight = 357
  9. ClientWidth = 530
  10. Color = clBtnFace
  11. Font.Charset = ANSI_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -12
  14. Font.Name = #23435#20307
  15. Font.Style = []
  16. OldCreateOrder = False
  17. DesignSize = (
  18. 530
  19. 357)
  20. PixelsPerInch = 96
  21. TextHeight = 12
  22. object btnOk: TButton
  23. Left = 361
  24. Top = 329
  25. Width = 75
  26. Height = 21
  27. Anchors = [akRight, akBottom]
  28. Caption = #30830' '#23450
  29. TabOrder = 0
  30. OnClick = btnOkClick
  31. end
  32. object btnCancel: TButton
  33. Left = 448
  34. Top = 329
  35. Width = 75
  36. Height = 21
  37. Anchors = [akRight, akBottom]
  38. Caption = #21462' '#28040
  39. ModalResult = 2
  40. TabOrder = 1
  41. end
  42. object pnlTop: TPanel
  43. Left = 0
  44. Top = 0
  45. Width = 530
  46. Height = 63
  47. Align = alTop
  48. BevelOuter = bvNone
  49. TabOrder = 2
  50. object tbTop: TToolBar
  51. Left = 0
  52. Top = 6
  53. Width = 530
  54. Height = 51
  55. AutoSize = True
  56. ButtonHeight = 51
  57. ButtonWidth = 67
  58. EdgeInner = esNone
  59. EdgeOuter = esNone
  60. Flat = True
  61. Images = Images
  62. ShowCaptions = True
  63. TabOrder = 0
  64. object tobtnBase: TToolButton
  65. Left = 0
  66. Top = 0
  67. Caption = #22522#30784#23646#24615
  68. Down = True
  69. ImageIndex = 0
  70. Style = tbsCheck
  71. OnClick = tobtnBaseClick
  72. end
  73. object tobtnStaff: TToolButton
  74. Tag = 1
  75. Left = 67
  76. Top = 0
  77. Caption = #35745#37327#21442#19982#20154
  78. ImageIndex = 1
  79. Style = tbsCheck
  80. OnClick = tobtnBaseClick
  81. end
  82. object tobtnView: TToolButton
  83. Tag = 2
  84. Left = 134
  85. Top = 0
  86. Caption = #26174#31034#35774#32622
  87. ImageIndex = 2
  88. Style = tbsCheck
  89. OnClick = tobtnBaseClick
  90. end
  91. end
  92. object pnlBlank: TPanel
  93. Left = 0
  94. Top = 0
  95. Width = 530
  96. Height = 6
  97. Align = alTop
  98. BevelOuter = bvNone
  99. TabOrder = 1
  100. end
  101. object jcbPhase: TJimComboBox
  102. Left = 379
  103. Top = 38
  104. Width = 145
  105. Height = 21
  106. AutoSize = False
  107. ButtonWidth = 17
  108. DropDownBox.Width = 145
  109. DropDownBox.Height = 150
  110. DropDownBox.ShowToolBar = False
  111. Style = cbsOfficeXP
  112. ItemIndex = -1
  113. ItemHeight = 14
  114. Visible = False
  115. OnChanged = jcbPhaseChanged
  116. end
  117. end
  118. object jpsProperties: TJimPages
  119. Left = 0
  120. Top = 63
  121. Width = 530
  122. Height = 255
  123. ActivePage = jpsPropertiesView
  124. ActivePageIndex = 2
  125. Align = alTop
  126. Caption = 'jpsProperties'
  127. object jpsPropertiesBase: TJimPage
  128. Left = 0
  129. Top = 0
  130. Width = 530
  131. Height = 255
  132. TabName = 'Base'
  133. Caption = 'Base'
  134. DesignSize = (
  135. 530
  136. 255)
  137. object pnlBase: TPanel
  138. Left = 0
  139. Top = 3
  140. Width = 529
  141. Height = 247
  142. Anchors = [akLeft, akTop, akRight]
  143. BevelOuter = bvNone
  144. TabOrder = 0
  145. object tbContents: TToolBar
  146. Left = 0
  147. Top = 0
  148. Width = 91
  149. Height = 247
  150. Align = alLeft
  151. AutoSize = True
  152. ButtonHeight = 20
  153. ButtonWidth = 91
  154. Color = clBtnFace
  155. Ctl3D = False
  156. EdgeBorders = []
  157. Flat = True
  158. ParentColor = False
  159. ShowCaptions = True
  160. TabOrder = 1
  161. object tobtnDealInfo: TToolButton
  162. Tag = 1
  163. Left = 0
  164. Top = 0
  165. Caption = ' '#21512#21516#20449#24687' '
  166. Down = True
  167. ImageIndex = 0
  168. Wrap = True
  169. Style = tbsCheck
  170. OnClick = tobtnDealInfoClick
  171. end
  172. object tobtnTechParameters: TToolButton
  173. Tag = 2
  174. Left = 0
  175. Top = 20
  176. Caption = #25216#26415#21442#25968
  177. ImageIndex = 1
  178. Wrap = True
  179. Style = tbsCheck
  180. OnClick = tobtnDealInfoClick
  181. end
  182. object tobtnDealPayment: TToolButton
  183. Tag = 3
  184. Left = 0
  185. Top = 40
  186. Caption = #21512#21516#25903#20184
  187. ImageIndex = 4
  188. Wrap = True
  189. Style = tbsCheck
  190. OnClick = tobtnDealInfoClick
  191. end
  192. object tobtnSafe: TToolButton
  193. Tag = 4
  194. Left = 0
  195. Top = 60
  196. Caption = #25991#20214#23433#20840
  197. ImageIndex = 5
  198. Wrap = True
  199. Style = tbsCheck
  200. OnClick = tobtnDealInfoClick
  201. end
  202. object tobtnCalcParameters: TToolButton
  203. Tag = 5
  204. Left = 0
  205. Top = 80
  206. Caption = #35745#31639#21442#25968
  207. ImageIndex = 6
  208. Wrap = True
  209. Style = tbsCheck
  210. OnClick = tobtnDealInfoClick
  211. end
  212. object tobtnDateTime: TToolButton
  213. Tag = 6
  214. Left = 0
  215. Top = 100
  216. Caption = #26102#38388#21442#25968
  217. ImageIndex = 7
  218. Style = tbsCheck
  219. OnClick = tobtnDealInfoClick
  220. end
  221. end
  222. object msbBase: TMScrollBox
  223. Left = 91
  224. Top = 0
  225. Width = 438
  226. Height = 247
  227. HorzScrollBar.Range = 401
  228. VertScrollBar.Range = 1348
  229. Align = alClient
  230. AutoScroll = False
  231. BevelInner = bvNone
  232. BevelOuter = bvNone
  233. BorderStyle = bsNone
  234. Color = clBtnFace
  235. Ctl3D = False
  236. ParentColor = False
  237. ParentCtl3D = False
  238. TabOrder = 0
  239. OnMouseWheel = msbBaseMouseWheel
  240. OnMouseWheelDown = msbBaseMouseWheelDown
  241. OnMouseWheelUp = msbBaseMouseWheelUp
  242. OnVScroll = msbBaseVScroll
  243. object lblDealInfo: TLabel
  244. Left = 7
  245. Top = 4
  246. Width = 48
  247. Height = 12
  248. Caption = #21512#21516#20449#24687
  249. Font.Charset = ANSI_CHARSET
  250. Font.Color = clBlue
  251. Font.Height = -12
  252. Font.Name = #23435#20307
  253. Font.Style = []
  254. ParentFont = False
  255. end
  256. object lblBuilder: TLabel
  257. Left = 34
  258. Top = 108
  259. Width = 60
  260. Height = 12
  261. Caption = #24314#35774#21333#20301#65306
  262. end
  263. object lblConstructor: TLabel
  264. Left = 34
  265. Top = 192
  266. Width = 66
  267. Height = 12
  268. Caption = #25215#21253#21333#20301'1'#65306
  269. end
  270. object lblSupervisor: TLabel
  271. Left = 34
  272. Top = 360
  273. Width = 66
  274. Height = 12
  275. Caption = #30417#29702#21333#20301'1'#65306
  276. end
  277. object lblTechParameters: TLabel
  278. Left = 7
  279. Top = 539
  280. Width = 48
  281. Height = 12
  282. Caption = #25216#26415#21442#25968
  283. Font.Charset = ANSI_CHARSET
  284. Font.Color = clBlue
  285. Font.Height = -12
  286. Font.Name = #23435#20307
  287. Font.Style = []
  288. ParentFont = False
  289. end
  290. object lblLoadLevel: TLabel
  291. Left = 34
  292. Top = 561
  293. Width = 60
  294. Height = 12
  295. Caption = #20844#36335#31561#32423#65306
  296. end
  297. object lblDealPayTitle: TLabel
  298. Left = 7
  299. Top = 699
  300. Width = 48
  301. Height = 12
  302. Caption = #21512#21516#25903#20184
  303. Font.Charset = ANSI_CHARSET
  304. Font.Color = clBlue
  305. Font.Height = -12
  306. Font.Name = #23435#20307
  307. Font.Style = []
  308. ParentFont = False
  309. end
  310. object lblSafeTitel: TLabel
  311. Left = 7
  312. Top = 803
  313. Width = 48
  314. Height = 12
  315. Caption = #25991#20214#23433#20840
  316. Font.Charset = ANSI_CHARSET
  317. Font.Color = clBlue
  318. Font.Height = -12
  319. Font.Name = #23435#20307
  320. Font.Style = []
  321. ParentFont = False
  322. end
  323. object lblUnlockPassword: TLabel
  324. Left = 36
  325. Top = 827
  326. Width = 84
  327. Height = 12
  328. Caption = #35299#38145#33410#28857#23494#30721#65306
  329. end
  330. object lblPasswordHint: TLabel
  331. Left = 128
  332. Top = 828
  333. Width = 90
  334. Height = 12
  335. Caption = 'lblPasswordHint'
  336. Font.Charset = ANSI_CHARSET
  337. Font.Color = clRed
  338. Font.Height = -12
  339. Font.Name = #23435#20307
  340. Font.Style = []
  341. ParentFont = False
  342. Visible = False
  343. end
  344. object lblCalcParametersTitel: TLabel
  345. Left = 7
  346. Top = 931
  347. Width = 48
  348. Height = 12
  349. Caption = #35745#31639#21442#25968
  350. Font.Charset = ANSI_CHARSET
  351. Font.Color = clBlue
  352. Font.Height = -12
  353. Font.Name = #23435#20307
  354. Font.Style = []
  355. ParentFont = False
  356. end
  357. object lblDigit: TLabel
  358. Left = 36
  359. Top = 955
  360. Width = 84
  361. Height = 12
  362. Caption = #20445#30041#23567#25968#20301#25968#65306
  363. end
  364. object lblDateTime: TLabel
  365. Left = 7
  366. Top = 1104
  367. Width = 48
  368. Height = 12
  369. Caption = #26102#38388#21442#25968
  370. Font.Charset = ANSI_CHARSET
  371. Font.Color = clBlue
  372. Font.Height = -12
  373. Font.Name = #23435#20307
  374. Font.Style = []
  375. ParentFont = False
  376. end
  377. object lblBaseline: TLabel
  378. Left = 36
  379. Top = 1127
  380. Width = 60
  381. Height = 12
  382. Caption = #36215#22987#26085#26399#65306
  383. end
  384. object lblDeadline: TLabel
  385. Left = 36
  386. Top = 1152
  387. Width = 60
  388. Height = 12
  389. Caption = #25130#27490#26085#26399#65306
  390. end
  391. object lblDateHint: TLabel
  392. Left = 36
  393. Top = 1174
  394. Width = 192
  395. Height = 12
  396. Caption = #24403#21069#25130#27490#26085#26399' '#65308' '#36215#22987#26085#26399#65292#35831#26680#26597
  397. Font.Charset = ANSI_CHARSET
  398. Font.Color = clRed
  399. Font.Height = -12
  400. Font.Name = #23435#20307
  401. Font.Style = []
  402. ParentFont = False
  403. end
  404. object lblSupervisor_2: TLabel
  405. Left = 34
  406. Top = 444
  407. Width = 66
  408. Height = 12
  409. Caption = #30417#29702#21333#20301'2'#65306
  410. end
  411. object lblConstructor_2: TLabel
  412. Left = 34
  413. Top = 274
  414. Width = 66
  415. Height = 12
  416. Caption = #25215#21253#21333#20301'2'#65306
  417. end
  418. object pnlDealInfoBar: TPanel
  419. Left = 62
  420. Top = 9
  421. Width = 339
  422. Height = 2
  423. BevelOuter = bvLowered
  424. TabOrder = 0
  425. end
  426. object leProjectName: TLabeledEdit
  427. Left = 33
  428. Top = 36
  429. Width = 330
  430. Height = 18
  431. Ctl3D = False
  432. EditLabel.Width = 84
  433. EditLabel.Height = 12
  434. EditLabel.Caption = #24314#35774#39033#30446#21517#31216#65306
  435. ParentCtl3D = False
  436. TabOrder = 1
  437. end
  438. object leDealName: TLabeledEdit
  439. Left = 33
  440. Top = 76
  441. Width = 152
  442. Height = 18
  443. Ctl3D = False
  444. EditLabel.Width = 60
  445. EditLabel.Height = 12
  446. EditLabel.Caption = #21512#21516#21517#31216#65306
  447. ParentCtl3D = False
  448. TabOrder = 2
  449. end
  450. object leDealIndex: TLabeledEdit
  451. Left = 195
  452. Top = 76
  453. Width = 80
  454. Height = 18
  455. Ctl3D = False
  456. EditLabel.Width = 60
  457. EditLabel.Height = 12
  458. EditLabel.Caption = #21512#21516#32534#21495#65306
  459. ParentCtl3D = False
  460. TabOrder = 3
  461. end
  462. object leBName: TLabeledEdit
  463. Left = 101
  464. Top = 123
  465. Width = 261
  466. Height = 18
  467. Ctl3D = False
  468. EditLabel.Width = 60
  469. EditLabel.Height = 12
  470. EditLabel.Caption = #21333#20301#21517#31216#65306
  471. ParentCtl3D = False
  472. TabOrder = 4
  473. end
  474. object leBLegal: TLabeledEdit
  475. Left = 101
  476. Top = 164
  477. Width = 137
  478. Height = 18
  479. Ctl3D = False
  480. EditLabel.Width = 60
  481. EditLabel.Height = 12
  482. EditLabel.Caption = #27861#20154#20195#34920#65306
  483. ParentCtl3D = False
  484. TabOrder = 5
  485. end
  486. object leBDate: TLabeledEdit
  487. Left = 245
  488. Top = 164
  489. Width = 119
  490. Height = 18
  491. Ctl3D = False
  492. EditLabel.Width = 60
  493. EditLabel.Height = 12
  494. EditLabel.Caption = #31614#35746#26085#26399#65306
  495. ParentCtl3D = False
  496. TabOrder = 6
  497. end
  498. object leCName: TLabeledEdit
  499. Left = 101
  500. Top = 207
  501. Width = 262
  502. Height = 18
  503. Ctl3D = False
  504. EditLabel.Width = 60
  505. EditLabel.Height = 12
  506. EditLabel.Caption = #21333#20301#21517#31216#65306
  507. ParentCtl3D = False
  508. TabOrder = 7
  509. end
  510. object leCLegal: TLabeledEdit
  511. Left = 101
  512. Top = 248
  513. Width = 137
  514. Height = 18
  515. Ctl3D = False
  516. EditLabel.Width = 60
  517. EditLabel.Height = 12
  518. EditLabel.Caption = #27861#20154#20195#34920#65306
  519. ParentCtl3D = False
  520. TabOrder = 8
  521. end
  522. object leCDate: TLabeledEdit
  523. Left = 245
  524. Top = 248
  525. Width = 119
  526. Height = 18
  527. Ctl3D = False
  528. EditLabel.Width = 60
  529. EditLabel.Height = 12
  530. EditLabel.Caption = #31614#35746#26085#26399#65306
  531. ParentCtl3D = False
  532. TabOrder = 9
  533. end
  534. object leSName: TLabeledEdit
  535. Left = 101
  536. Top = 375
  537. Width = 262
  538. Height = 18
  539. Ctl3D = False
  540. EditLabel.Width = 60
  541. EditLabel.Height = 12
  542. EditLabel.Caption = #21333#20301#21517#31216#65306
  543. ParentCtl3D = False
  544. TabOrder = 10
  545. end
  546. object leSLegal: TLabeledEdit
  547. Left = 101
  548. Top = 415
  549. Width = 137
  550. Height = 18
  551. Ctl3D = False
  552. EditLabel.Width = 60
  553. EditLabel.Height = 12
  554. EditLabel.Caption = #27861#20154#20195#34920#65306
  555. ParentCtl3D = False
  556. TabOrder = 11
  557. end
  558. object leSDate: TLabeledEdit
  559. Left = 245
  560. Top = 415
  561. Width = 119
  562. Height = 18
  563. Ctl3D = False
  564. EditLabel.Width = 60
  565. EditLabel.Height = 12
  566. EditLabel.Caption = #31614#35746#26085#26399#65306
  567. ParentCtl3D = False
  568. TabOrder = 12
  569. end
  570. object pnlTechParametersBar: TPanel
  571. Left = 62
  572. Top = 544
  573. Width = 339
  574. Height = 2
  575. BevelOuter = bvLowered
  576. TabOrder = 21
  577. end
  578. object leStartPeg: TLabeledEdit
  579. Left = 34
  580. Top = 619
  581. Width = 132
  582. Height = 18
  583. Ctl3D = False
  584. EditLabel.Width = 60
  585. EditLabel.Height = 12
  586. EditLabel.Caption = #36215#28857#26729#21495#65306
  587. ParentCtl3D = False
  588. TabOrder = 14
  589. end
  590. object leEndPeg: TLabeledEdit
  591. Left = 176
  592. Top = 619
  593. Width = 131
  594. Height = 18
  595. Ctl3D = False
  596. EditLabel.Width = 60
  597. EditLabel.Height = 12
  598. EditLabel.Caption = #32456#28857#26729#21495#65306
  599. ParentCtl3D = False
  600. TabOrder = 15
  601. end
  602. object leLength: TLabeledEdit
  603. Left = 34
  604. Top = 659
  605. Width = 132
  606. Height = 18
  607. Ctl3D = False
  608. EditLabel.Width = 72
  609. EditLabel.Height = 12
  610. EditLabel.Caption = #38271#24230#65288'km'#65289#65306
  611. ParentCtl3D = False
  612. TabOrder = 16
  613. end
  614. object leLaneCount: TLabeledEdit
  615. Left = 176
  616. Top = 659
  617. Width = 132
  618. Height = 18
  619. Ctl3D = False
  620. EditLabel.Width = 48
  621. EditLabel.Height = 12
  622. EditLabel.Caption = #36710#36947#25968#65306
  623. ParentCtl3D = False
  624. TabOrder = 17
  625. end
  626. object cbLoadLevel: TComboBox
  627. Left = 34
  628. Top = 578
  629. Width = 132
  630. Height = 20
  631. Ctl3D = False
  632. DropDownCount = 5
  633. ItemHeight = 12
  634. ParentCtl3D = False
  635. TabOrder = 13
  636. Items.Strings = (
  637. #39640#36895#20844#36335
  638. #19968#32423#20844#36335
  639. #20108#32423#20844#36335
  640. #19977#32423#20844#36335
  641. #22235#32423#20844#36335)
  642. end
  643. object pnlDealPayBar: TPanel
  644. Left = 62
  645. Top = 705
  646. Width = 339
  647. Height = 2
  648. BevelOuter = bvLowered
  649. TabOrder = 22
  650. end
  651. object leContractPrice: TLabeledEdit
  652. Left = 133
  653. Top = 720
  654. Width = 117
  655. Height = 18
  656. BiDiMode = bdLeftToRight
  657. Ctl3D = False
  658. EditLabel.Width = 96
  659. EditLabel.Height = 12
  660. EditLabel.BiDiMode = bdLeftToRight
  661. EditLabel.Caption = #31614#32422#21512#21516#20215#65306' '
  662. EditLabel.ParentBiDiMode = False
  663. LabelPosition = lpLeft
  664. ParentBiDiMode = False
  665. ParentCtl3D = False
  666. TabOrder = 18
  667. OnClick = leContractPriceClick
  668. end
  669. object leStartedSubsist: TLabeledEdit
  670. Left = 133
  671. Top = 747
  672. Width = 118
  673. Height = 18
  674. Ctl3D = False
  675. EditLabel.Width = 96
  676. EditLabel.Height = 12
  677. EditLabel.Caption = #31614#32422#24320#24037#39044#20184#27454#65306
  678. LabelPosition = lpLeft
  679. ParentCtl3D = False
  680. TabOrder = 19
  681. OnClick = leContractPriceClick
  682. end
  683. object leMaterialSubsist: TLabeledEdit
  684. Left = 133
  685. Top = 773
  686. Width = 119
  687. Height = 18
  688. Ctl3D = False
  689. EditLabel.Width = 96
  690. EditLabel.Height = 12
  691. EditLabel.Caption = #31614#32422#26448#26009#39044#20184#27454#65306
  692. LabelPosition = lpLeft
  693. ParentCtl3D = False
  694. TabOrder = 20
  695. OnClick = leContractPriceClick
  696. end
  697. object pnlSafeBar: TPanel
  698. Left = 62
  699. Top = 809
  700. Width = 339
  701. Height = 2
  702. BevelOuter = bvLowered
  703. TabOrder = 23
  704. end
  705. object pnlUnlockPassword: TPanel
  706. Left = 40
  707. Top = 841
  708. Width = 361
  709. Height = 85
  710. BevelOuter = bvNone
  711. TabOrder = 24
  712. object pnlOrgPW: TPanel
  713. Left = 0
  714. Top = 0
  715. Width = 361
  716. Height = 28
  717. Align = alTop
  718. BevelOuter = bvNone
  719. TabOrder = 0
  720. object imgOrg: TImage
  721. Left = 213
  722. Top = 9
  723. Width = 16
  724. Height = 16
  725. Picture.Data = {
  726. 055449636F6E0000010001001010000001002000680400001600000028000000
  727. 1000000020000000010020000000000000000000000000000000000000000000
  728. 0000000000000000000000000000000000000000000000000000000000000000
  729. 0000000000000000000000000000000000000000000000000000000000000000
  730. 0000000000000000000000000000000000000000000000000000000000000000
  731. 0000000000000000000000000000000000000000000000000000000000000000
  732. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  733. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  734. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  735. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  736. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  737. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  738. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  739. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  740. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  741. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  742. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  743. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  744. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  745. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  746. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  747. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  748. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  749. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  750. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  751. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  752. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  753. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  754. 0000000000000000000000000000000000000000020518220205192200000000
  755. 0000000000000000000000000205182202051922000000000000000000000000
  756. 0000000000000000000000000000000000000000000000000000000000000000
  757. 0000000000000000000000000000000000000000000000000000000000000000
  758. 0000000000000000000000000000000000000000000000000000000000000000
  759. 0000000000000000000000000000000000000000000000000000000000000000
  760. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  761. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  762. FFFF0000}
  763. Visible = False
  764. end
  765. object leUnlockPassword: TLabeledEdit
  766. Left = 89
  767. Top = 8
  768. Width = 117
  769. Height = 18
  770. Hint = #24403#21069#23494#30721#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
  771. BiDiMode = bdLeftToRight
  772. Ctl3D = False
  773. EditLabel.Width = 66
  774. EditLabel.Height = 12
  775. EditLabel.BiDiMode = bdLeftToRight
  776. EditLabel.Caption = #24403#21069#23494#30721#65306' '
  777. EditLabel.ParentBiDiMode = False
  778. LabelPosition = lpLeft
  779. MaxLength = 16
  780. ParentBiDiMode = False
  781. ParentCtl3D = False
  782. PasswordChar = '*'
  783. TabOrder = 0
  784. OnExit = leUnlockPasswordExit
  785. OnKeyPress = leUnlockPasswordKeyPress
  786. end
  787. end
  788. object pnlNewPW: TPanel
  789. Left = 0
  790. Top = 28
  791. Width = 361
  792. Height = 57
  793. Align = alClient
  794. BevelOuter = bvNone
  795. TabOrder = 1
  796. object imgNew: TImage
  797. Left = 213
  798. Top = 8
  799. Width = 16
  800. Height = 16
  801. Picture.Data = {
  802. 055449636F6E0000010001001010000001002000680400001600000028000000
  803. 1000000020000000010020000000000000000000000000000000000000000000
  804. 0000000000000000000000000000000000000000000000000000000000000000
  805. 0000000000000000000000000000000000000000000000000000000000000000
  806. 0000000000000000000000000000000000000000000000000000000000000000
  807. 0000000000000000000000000000000000000000000000000000000000000000
  808. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  809. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  810. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  811. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  812. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  813. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  814. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  815. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  816. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  817. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  818. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  819. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  820. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  821. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  822. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  823. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  824. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  825. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  826. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  827. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  828. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  829. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  830. 0000000000000000000000000000000000000000020518220205192200000000
  831. 0000000000000000000000000205182202051922000000000000000000000000
  832. 0000000000000000000000000000000000000000000000000000000000000000
  833. 0000000000000000000000000000000000000000000000000000000000000000
  834. 0000000000000000000000000000000000000000000000000000000000000000
  835. 0000000000000000000000000000000000000000000000000000000000000000
  836. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  837. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  838. FFFF0000}
  839. Visible = False
  840. end
  841. object imgNewAgain: TImage
  842. Left = 213
  843. Top = 35
  844. Width = 16
  845. Height = 16
  846. Picture.Data = {
  847. 055449636F6E0000010001001010000001002000680400001600000028000000
  848. 1000000020000000010020000000000000000000000000000000000000000000
  849. 0000000000000000000000000000000000000000000000000000000000000000
  850. 0000000000000000000000000000000000000000000000000000000000000000
  851. 0000000000000000000000000000000000000000000000000000000000000000
  852. 0000000000000000000000000000000000000000000000000000000000000000
  853. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  854. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  855. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  856. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  857. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  858. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  859. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  860. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  861. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  862. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  863. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  864. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  865. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  866. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  867. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  868. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  869. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  870. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  871. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  872. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  873. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  874. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  875. 0000000000000000000000000000000000000000020518220205192200000000
  876. 0000000000000000000000000205182202051922000000000000000000000000
  877. 0000000000000000000000000000000000000000000000000000000000000000
  878. 0000000000000000000000000000000000000000000000000000000000000000
  879. 0000000000000000000000000000000000000000000000000000000000000000
  880. 0000000000000000000000000000000000000000000000000000000000000000
  881. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  882. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  883. FFFF0000}
  884. Visible = False
  885. end
  886. object leNewUnlockPasswordAgain: TLabeledEdit
  887. Left = 89
  888. Top = 34
  889. Width = 117
  890. Height = 18
  891. Hint = #20004#27425#36755#20837#30340#26032#23494#30721#24517#39035#30456#21516
  892. BiDiMode = bdLeftToRight
  893. Ctl3D = False
  894. EditLabel.Width = 78
  895. EditLabel.Height = 12
  896. EditLabel.BiDiMode = bdLeftToRight
  897. EditLabel.Caption = #30830#35748#26032#23494#30721#65306' '
  898. EditLabel.ParentBiDiMode = False
  899. LabelPosition = lpLeft
  900. MaxLength = 16
  901. ParentBiDiMode = False
  902. ParentCtl3D = False
  903. PasswordChar = '*'
  904. ReadOnly = True
  905. TabOrder = 0
  906. OnExit = leNewUnlockPasswordAgainExit
  907. OnKeyPress = leUnlockPasswordKeyPress
  908. end
  909. object leNewUnLockPassword: TLabeledEdit
  910. Left = 89
  911. Top = 7
  912. Width = 117
  913. Height = 18
  914. Hint = #26032#23494#30721#24517#39035#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
  915. BiDiMode = bdLeftToRight
  916. Ctl3D = False
  917. EditLabel.Width = 54
  918. EditLabel.Height = 12
  919. EditLabel.BiDiMode = bdLeftToRight
  920. EditLabel.Caption = #26032#23494#30721#65306' '
  921. EditLabel.ParentBiDiMode = False
  922. LabelPosition = lpLeft
  923. MaxLength = 16
  924. ParentBiDiMode = False
  925. ParentCtl3D = False
  926. PasswordChar = '*'
  927. TabOrder = 1
  928. OnExit = leNewUnLockPasswordExit
  929. OnKeyPress = leUnlockPasswordKeyPress
  930. end
  931. end
  932. end
  933. object leDealType: TLabeledEdit
  934. Left = 283
  935. Top = 76
  936. Width = 80
  937. Height = 18
  938. Ctl3D = False
  939. EditLabel.Width = 60
  940. EditLabel.Height = 12
  941. EditLabel.Caption = #21512#21516#31867#21035#65306
  942. ParentCtl3D = False
  943. TabOrder = 25
  944. end
  945. object pnlCalcParametersBar: TPanel
  946. Left = 62
  947. Top = 937
  948. Width = 339
  949. Height = 2
  950. BevelOuter = bvLowered
  951. TabOrder = 26
  952. end
  953. object leQuantityDigit: TLabeledEdit
  954. Left = 100
  955. Top = 972
  956. Width = 87
  957. Height = 18
  958. EditLabel.Width = 36
  959. EditLabel.Height = 12
  960. EditLabel.Caption = #25968#37327#65306
  961. LabelPosition = lpLeft
  962. TabOrder = 27
  963. Text = '3'
  964. end
  965. object leTotalPriceDigit: TLabeledEdit
  966. Left = 264
  967. Top = 972
  968. Width = 87
  969. Height = 18
  970. EditLabel.Width = 36
  971. EditLabel.Height = 12
  972. EditLabel.Caption = #37329#39069#65306
  973. LabelPosition = lpLeft
  974. TabOrder = 28
  975. Text = '0'
  976. end
  977. object udQuantity: TUpDown
  978. Left = 187
  979. Top = 972
  980. Width = 16
  981. Height = 18
  982. Associate = leQuantityDigit
  983. Max = 10
  984. Position = 3
  985. TabOrder = 29
  986. end
  987. object udTotalPrice: TUpDown
  988. Left = 351
  989. Top = 972
  990. Width = 16
  991. Height = 18
  992. Associate = leTotalPriceDigit
  993. Max = 10
  994. TabOrder = 30
  995. end
  996. object gbPM_Digit: TGroupBox
  997. Left = 52
  998. Top = 1051
  999. Width = 349
  1000. Height = 44
  1001. Caption = #20215#24046
  1002. TabOrder = 31
  1003. Visible = False
  1004. object lePM_PriceDigit: TLabeledEdit
  1005. Left = 48
  1006. Top = 19
  1007. Width = 87
  1008. Height = 18
  1009. EditLabel.Width = 36
  1010. EditLabel.Height = 12
  1011. EditLabel.Caption = #21333#20215#65306
  1012. LabelPosition = lpLeft
  1013. TabOrder = 0
  1014. Text = '0'
  1015. end
  1016. object udPM_PriceDigit: TUpDown
  1017. Left = 135
  1018. Top = 19
  1019. Width = 16
  1020. Height = 18
  1021. Associate = lePM_PriceDigit
  1022. Max = 10
  1023. TabOrder = 1
  1024. end
  1025. end
  1026. object pnlDateTime: TPanel
  1027. Left = 62
  1028. Top = 1110
  1029. Width = 339
  1030. Height = 2
  1031. BevelOuter = bvLowered
  1032. TabOrder = 32
  1033. end
  1034. object dtpBaseline: TDateTimePicker
  1035. Left = 104
  1036. Top = 1123
  1037. Width = 105
  1038. Height = 20
  1039. Date = 0.457352881945553200
  1040. Format = 'yyyy-MM-dd'
  1041. Time = 0.457352881945553200
  1042. TabOrder = 33
  1043. OnChange = dtpBaselineChange
  1044. end
  1045. object dtpDeadline: TDateTimePicker
  1046. Left = 104
  1047. Top = 1148
  1048. Width = 105
  1049. Height = 20
  1050. Date = 0.457352881945553200
  1051. Format = 'yyyy-MM-dd'
  1052. Time = 0.457352881945553200
  1053. TabOrder = 34
  1054. OnChange = dtpBaselineChange
  1055. end
  1056. object cbDealPayAloneDigiy: TCheckBox
  1057. Left = 62
  1058. Top = 999
  1059. Width = 131
  1060. Height = 17
  1061. Caption = #21512#21516#25903#20184#21333#29420#35774#32622
  1062. TabOrder = 35
  1063. OnClick = cbDealPayAloneDigiyClick
  1064. end
  1065. object leDealPayTotalPriceDigit: TLabeledEdit
  1066. Left = 100
  1067. Top = 1023
  1068. Width = 87
  1069. Height = 18
  1070. EditLabel.Width = 36
  1071. EditLabel.Height = 12
  1072. EditLabel.Caption = #37329#39069#65306
  1073. LabelPosition = lpLeft
  1074. TabOrder = 36
  1075. Text = '0'
  1076. end
  1077. object udDealPayTotalPriceDigit: TUpDown
  1078. Left = 187
  1079. Top = 1023
  1080. Width = 16
  1081. Height = 18
  1082. Associate = leDealPayTotalPriceDigit
  1083. Max = 10
  1084. TabOrder = 37
  1085. end
  1086. object leDealPhase: TLabeledEdit
  1087. Left = 177
  1088. Top = 578
  1089. Width = 131
  1090. Height = 18
  1091. Ctl3D = False
  1092. EditLabel.Width = 60
  1093. EditLabel.Height = 12
  1094. EditLabel.Caption = #21512#21516#24037#26399#65306
  1095. ParentCtl3D = False
  1096. TabOrder = 38
  1097. end
  1098. object leSName_2: TLabeledEdit
  1099. Left = 101
  1100. Top = 459
  1101. Width = 262
  1102. Height = 18
  1103. Ctl3D = False
  1104. EditLabel.Width = 60
  1105. EditLabel.Height = 12
  1106. EditLabel.Caption = #21333#20301#21517#31216#65306
  1107. ParentCtl3D = False
  1108. TabOrder = 39
  1109. end
  1110. object leSLegal_2: TLabeledEdit
  1111. Left = 101
  1112. Top = 499
  1113. Width = 137
  1114. Height = 18
  1115. Ctl3D = False
  1116. EditLabel.Width = 60
  1117. EditLabel.Height = 12
  1118. EditLabel.Caption = #27861#20154#20195#34920#65306
  1119. ParentCtl3D = False
  1120. TabOrder = 40
  1121. end
  1122. object leSDate_2: TLabeledEdit
  1123. Left = 245
  1124. Top = 499
  1125. Width = 119
  1126. Height = 18
  1127. Ctl3D = False
  1128. EditLabel.Width = 60
  1129. EditLabel.Height = 12
  1130. EditLabel.Caption = #31614#35746#26085#26399#65306
  1131. ParentCtl3D = False
  1132. TabOrder = 41
  1133. end
  1134. object leCName_2: TLabeledEdit
  1135. Left = 101
  1136. Top = 289
  1137. Width = 262
  1138. Height = 18
  1139. Ctl3D = False
  1140. EditLabel.Width = 60
  1141. EditLabel.Height = 12
  1142. EditLabel.Caption = #21333#20301#21517#31216#65306
  1143. ParentCtl3D = False
  1144. TabOrder = 42
  1145. end
  1146. object leCLegal_2: TLabeledEdit
  1147. Left = 101
  1148. Top = 330
  1149. Width = 137
  1150. Height = 18
  1151. Ctl3D = False
  1152. EditLabel.Width = 60
  1153. EditLabel.Height = 12
  1154. EditLabel.Caption = #27861#20154#20195#34920#65306
  1155. ParentCtl3D = False
  1156. TabOrder = 43
  1157. end
  1158. object leCDate_2: TLabeledEdit
  1159. Left = 245
  1160. Top = 330
  1161. Width = 119
  1162. Height = 18
  1163. Ctl3D = False
  1164. EditLabel.Width = 60
  1165. EditLabel.Height = 12
  1166. EditLabel.Caption = #31614#35746#26085#26399#65306
  1167. ParentCtl3D = False
  1168. TabOrder = 44
  1169. end
  1170. end
  1171. end
  1172. end
  1173. object jpsPropertiesStaff: TJimPage
  1174. Left = 0
  1175. Top = 0
  1176. Width = 530
  1177. Height = 255
  1178. TabName = 'Staff'
  1179. Caption = 'Staff'
  1180. object zgStaff: TZJGrid
  1181. Left = 0
  1182. Top = 0
  1183. Width = 530
  1184. Height = 255
  1185. Options = [goRangeSelect, goRowSizing, goColSizing, goCellNotMaintainData, goFixedRowShowNo, goFixedColShowNo, goAlwaysShowSelection]
  1186. OptionsEx = []
  1187. RowCount = 1
  1188. ShowGridLine = False
  1189. DefaultColWidth = 73
  1190. Selection.AlphaBlend = False
  1191. Selection.TransparentColor = False
  1192. FrozenCol = 0
  1193. FrozenRow = 0
  1194. OnCellGetColor = zgStaffCellGetColor
  1195. OnCellGetFont = zgStaffCellGetFont
  1196. Font.Charset = ANSI_CHARSET
  1197. Font.Color = clBlack
  1198. Font.Height = -12
  1199. Font.Name = #23435#20307
  1200. Font.Style = []
  1201. ParentFont = False
  1202. Align = alClient
  1203. end
  1204. end
  1205. object jpsPropertiesView: TJimPage
  1206. Left = 0
  1207. Top = 0
  1208. Width = 530
  1209. Height = 255
  1210. TabName = 'View'
  1211. Caption = 'View'
  1212. object leView: TLabel
  1213. Left = 7
  1214. Top = 5
  1215. Width = 48
  1216. Height = 12
  1217. Caption = #39033#30446#26174#31034
  1218. Font.Charset = ANSI_CHARSET
  1219. Font.Color = clBlue
  1220. Font.Height = -12
  1221. Font.Name = #23435#20307
  1222. Font.Style = []
  1223. ParentFont = False
  1224. end
  1225. object leReport: TLabel
  1226. Left = 7
  1227. Top = 141
  1228. Width = 48
  1229. Height = 12
  1230. Caption = #25253#34920#24213#32441
  1231. Font.Charset = ANSI_CHARSET
  1232. Font.Color = clBlue
  1233. Font.Height = -12
  1234. Font.Name = #23435#20307
  1235. Font.Style = []
  1236. ParentFont = False
  1237. end
  1238. object pnlViewBar: TPanel
  1239. Left = 62
  1240. Top = 11
  1241. Width = 457
  1242. Height = 2
  1243. BevelOuter = bvLowered
  1244. TabOrder = 0
  1245. end
  1246. object pnlAllView: TPanel
  1247. Left = 8
  1248. Top = 24
  1249. Width = 505
  1250. Height = 113
  1251. BevelOuter = bvNone
  1252. TabOrder = 1
  1253. object pnlAlias: TPanel
  1254. Left = 0
  1255. Top = 75
  1256. Width = 505
  1257. Height = 25
  1258. Align = alTop
  1259. BevelOuter = bvNone
  1260. TabOrder = 0
  1261. object cbShowAlias: TCheckBox
  1262. Left = 33
  1263. Top = 8
  1264. Width = 80
  1265. Height = 17
  1266. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1267. Caption = #21035#21517
  1268. Ctl3D = False
  1269. Font.Charset = ANSI_CHARSET
  1270. Font.Color = clWindowText
  1271. Font.Height = -12
  1272. Font.Name = #23435#20307
  1273. Font.Style = []
  1274. ParentCtl3D = False
  1275. ParentFont = False
  1276. ParentShowHint = False
  1277. ShowHint = True
  1278. TabOrder = 0
  1279. end
  1280. end
  1281. object pnlPriceChange: TPanel
  1282. Left = 0
  1283. Top = 0
  1284. Width = 505
  1285. Height = 25
  1286. Align = alTop
  1287. BevelOuter = bvNone
  1288. TabOrder = 1
  1289. Visible = False
  1290. object cbShowPriceChange: TCheckBox
  1291. Left = 33
  1292. Top = 8
  1293. Width = 88
  1294. Height = 17
  1295. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1296. Caption = #21333#20215#21464#26356
  1297. Ctl3D = False
  1298. Font.Charset = ANSI_CHARSET
  1299. Font.Color = clWindowText
  1300. Font.Height = -12
  1301. Font.Name = #23435#20307
  1302. Font.Style = []
  1303. ParentCtl3D = False
  1304. ParentFont = False
  1305. ParentShowHint = False
  1306. ShowHint = True
  1307. TabOrder = 0
  1308. end
  1309. end
  1310. object pnlBGL: TPanel
  1311. Left = 0
  1312. Top = 25
  1313. Width = 505
  1314. Height = 25
  1315. Align = alTop
  1316. BevelOuter = bvNone
  1317. TabOrder = 2
  1318. object cbShowBGLCode: TCheckBox
  1319. Left = 33
  1320. Top = 8
  1321. Width = 80
  1322. Height = 17
  1323. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1324. Caption = #21464#26356#20196
  1325. Ctl3D = False
  1326. Font.Charset = ANSI_CHARSET
  1327. Font.Color = clWindowText
  1328. Font.Height = -12
  1329. Font.Name = #23435#20307
  1330. Font.Style = []
  1331. ParentCtl3D = False
  1332. ParentFont = False
  1333. ParentShowHint = False
  1334. ShowHint = True
  1335. TabOrder = 0
  1336. end
  1337. end
  1338. object pnlDesignQuantity: TPanel
  1339. Left = 0
  1340. Top = 50
  1341. Width = 505
  1342. Height = 25
  1343. Align = alTop
  1344. BevelOuter = bvNone
  1345. TabOrder = 3
  1346. object cbShowDesignQuantity: TCheckBox
  1347. Left = 33
  1348. Top = 8
  1349. Width = 80
  1350. Height = 17
  1351. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1352. Caption = #35774#35745#25968#37327
  1353. Ctl3D = False
  1354. Font.Charset = ANSI_CHARSET
  1355. Font.Color = clWindowText
  1356. Font.Height = -12
  1357. Font.Name = #23435#20307
  1358. Font.Style = []
  1359. ParentCtl3D = False
  1360. ParentFont = False
  1361. ParentShowHint = False
  1362. ShowHint = True
  1363. TabOrder = 0
  1364. end
  1365. end
  1366. end
  1367. object pnlReport: TPanel
  1368. Left = 62
  1369. Top = 147
  1370. Width = 457
  1371. Height = 2
  1372. BevelOuter = bvLowered
  1373. TabOrder = 2
  1374. end
  1375. object cbShowReportShading: TCheckBox
  1376. Left = 40
  1377. Top = 160
  1378. Width = 17
  1379. Height = 17
  1380. TabOrder = 3
  1381. OnClick = cbShowReportShadingClick
  1382. end
  1383. object edtReportShading: TEdit
  1384. Left = 64
  1385. Top = 160
  1386. Width = 177
  1387. Height = 18
  1388. Ctl3D = False
  1389. ParentCtl3D = False
  1390. TabOrder = 4
  1391. end
  1392. object pnlReportView: TPanel
  1393. Left = 0
  1394. Top = 128
  1395. Width = 529
  1396. Height = 89
  1397. BevelOuter = bvNone
  1398. TabOrder = 5
  1399. object lblReportShowStateTitle: TLabel
  1400. Left = 7
  1401. Top = 5
  1402. Width = 96
  1403. Height = 12
  1404. Caption = #25253#34920#26174#31034#23457#25209#29366#24577
  1405. Font.Charset = ANSI_CHARSET
  1406. Font.Color = clBlue
  1407. Font.Height = -12
  1408. Font.Name = #23435#20307
  1409. Font.Style = []
  1410. ParentFont = False
  1411. end
  1412. object pnlReportViewBar: TPanel
  1413. Left = 110
  1414. Top = 11
  1415. Width = 410
  1416. Height = 2
  1417. BevelOuter = bvLowered
  1418. TabOrder = 0
  1419. end
  1420. object cbReportShowState: TCheckBox
  1421. Left = 41
  1422. Top = 24
  1423. Width = 16
  1424. Height = 17
  1425. TabOrder = 1
  1426. OnClick = cbReportShowStateClick
  1427. end
  1428. object edtReportShowStateText: TEdit
  1429. Left = 65
  1430. Top = 22
  1431. Width = 121
  1432. Height = 20
  1433. MaxLength = 20
  1434. TabOrder = 2
  1435. Text = #25253#34920#26410#23457#26680
  1436. end
  1437. object cbReportShowStageWithoutReply: TCheckBox
  1438. Left = 64
  1439. Top = 48
  1440. Width = 121
  1441. Height = 17
  1442. Caption = #25209#22797#29366#24577#19981#26174#31034
  1443. TabOrder = 3
  1444. end
  1445. end
  1446. object pnlOverRange: TPanel
  1447. Left = 1
  1448. Top = 197
  1449. Width = 529
  1450. Height = 45
  1451. BevelOuter = bvNone
  1452. TabOrder = 6
  1453. object Label1: TLabel
  1454. Left = 7
  1455. Top = 5
  1456. Width = 48
  1457. Height = 12
  1458. Caption = #36229#35745#21151#33021
  1459. Font.Charset = ANSI_CHARSET
  1460. Font.Color = clBlue
  1461. Font.Height = -12
  1462. Font.Name = #23435#20307
  1463. Font.Style = []
  1464. ParentFont = False
  1465. end
  1466. object Panel2: TPanel
  1467. Left = 64
  1468. Top = 11
  1469. Width = 455
  1470. Height = 2
  1471. BevelOuter = bvLowered
  1472. TabOrder = 0
  1473. end
  1474. object cbShowOverRange: TCheckBox
  1475. Left = 40
  1476. Top = 26
  1477. Width = 121
  1478. Height = 17
  1479. Caption = #24213#33394#26631#32418#25552#31034
  1480. TabOrder = 1
  1481. end
  1482. end
  1483. end
  1484. end
  1485. object xpm: TXPMenu
  1486. DimLevel = 30
  1487. GrayLevel = 10
  1488. Font.Charset = DEFAULT_CHARSET
  1489. Font.Color = clMenuText
  1490. Font.Height = -12
  1491. Font.Name = #23435#20307
  1492. Font.Style = []
  1493. Color = clBtnFace
  1494. IconBackColor = clBtnFace
  1495. MenuBarColor = clBtnFace
  1496. SelectColor = 38640
  1497. SelectBorderColor = clHighlight
  1498. SelectFontColor = clMenuText
  1499. DisabledColor = clInactiveCaption
  1500. SeparatorColor = clBtnFace
  1501. CheckedColor = clHighlight
  1502. IconWidth = 24
  1503. DrawSelect = True
  1504. UseSystemColors = False
  1505. OverrideOwnerDraw = False
  1506. Gradient = False
  1507. FlatMenu = False
  1508. AutoDetect = True
  1509. XPControls = [xcToolbar]
  1510. Active = True
  1511. ControlUseTrueXPStyle = True
  1512. BtnRoundArc = 5
  1513. BtnOutLineBorderColor = 7552000
  1514. BtnInnerBorderMoveColor = 3257087
  1515. BtnInnerBorderFocusColor = 15183500
  1516. BtnSurfaceNormalColor = 16251903
  1517. BtnSurfaceDownColor = 14608359
  1518. BtnSurfaceBottomLineColor = 14608359
  1519. BtnSurfaceDownBottomLineColor = 15199215
  1520. RdoChkControlChkColor = 41472
  1521. ComboBoxChkColor = 9201994
  1522. ComboboxSurfaceMoveColor = 16771030
  1523. ControlDisabledBorderColor = 11913158
  1524. Left = 7
  1525. Top = 324
  1526. end
  1527. object Images: TImageList
  1528. DrawingStyle = dsTransparent
  1529. Height = 32
  1530. Width = 32
  1531. Left = 352
  1532. Top = 8
  1533. Bitmap = {
  1534. 494C010103000400040020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  1535. 0000000000003600000028000000800000002000000001002000000000000040
  1536. 0000000000000000000000000000000000000000000000000000000000000000
  1537. 0000000000000000000000000000000000000000000000000000000000000000
  1538. 0000000000000000000000000000000000000000000000000000000000000000
  1539. 0000000000000000000000000000000000000000000000000000000000000000
  1540. 0000000000000000000000000000000000000000000000000000000000000000
  1541. 0000000000000000000000000000000000000000000000000000000000000000
  1542. 000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
  1543. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1544. 0E000E0E0E000E0E0E000E0E0E000E0E0E000000000000000000000000000000
  1545. 0000000000000000000000000000000000000000000000000000000000000000
  1546. 0000000000000000000000000000000000000000000000000000000000000000
  1547. 0000000000000000000000000000000000000000000000000000000000000000
  1548. 0000000000000000000000000000000000000000000000000000000000000000
  1549. 0000000000000000000000000000000000000000000000000000000000000000
  1550. 0000000000000000000000000000000000000000000000000000000000000000
  1551. 0000000000000000000000000000000000000000000000000000000000000000
  1552. 0000000000000000000000000000000000000000000000000000000000000000
  1553. 0000000000000000000000000000000000000000000000000000000000000000
  1554. 00000000000000000000000000000D0D0D000D0D0D000D0D0D000D0D0D000D0D
  1555. 0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D
  1556. 0D000D0D0D000D0D0D000D0D0D00000000000000000000000000000000000000
  1557. 0000000000000000000000000000000000000000000000000000000000000000
  1558. 000000000000000000000000000000000000000000000E0E0E00CBCFCF00CBCF
  1559. CF00C9D0CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCF
  1560. CF00CBCFCF00CBCFCF00C9D0CF000E0E0E000000000000000000000000000000
  1561. 0000000000000000000000000000000000000000000000000000000000000000
  1562. 0000000000000000000000000000000000000000000000000000000000000000
  1563. 0000000000000000000000000000000000000000000000000000000000000000
  1564. 0000000000000000000000000000000000000000000000000000000000000000
  1565. 0000000000000000000000000000000000000000000000000000000000000000
  1566. 0000000000000000000000000000000000000000000000000000000000000000
  1567. 0000000000000000000000000000000000000000000000000000000000000000
  1568. 0000000000000000000000000000000000000000000000000000000000000000
  1569. 0000000000000000000000000000000000000000000000000000000000000000
  1570. 000000000000000000000000000000000000C1C9C900C1C9C800C1C9C900C1C9
  1571. C900C1C9C900C1C9C900C2C9C900C2C9C900C1C9C900C1C9C900C2C9C900C1C9
  1572. C900C2C9C900C1C9C9000D0D0D00000000000000000000000000000000000000
  1573. 0000000000000000000000000000000000000000000000000000000000000000
  1574. 000000000000000000000000000000000000000000000E0E0E00E5E7E700E5E7
  1575. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
  1576. E700E5E7E700E5E7E700E5E7E7000E0E0E000000000000000000000000000000
  1577. 0000000000000000000000000000000000000000000000000000000000000000
  1578. 0000000000000000000000000000000000000000000000000000000000000000
  1579. 0000000000000000000000000000000000000000000000000000000000000000
  1580. 0000000000000000000000000000000000000000000000000000000000000000
  1581. 0000000000000000000000000000000000000000000000000000000000000000
  1582. 0000000000000000000000000000000000000000000000000000000000000000
  1583. 0000000000000000000000000000000000000000000000000000000000000000
  1584. 0000000000000000000000000000000000000000000000000000000000000000
  1585. 0000000000000000000000000000000000000000000000000000000000000000
  1586. 000000000000000000000000000000000000C4CBCB00C4CBCB00242424002424
  1587. 240024242400C4CBCC00C4CCCC00C4CCCB00C4CBCB00C4CCCB00C4CBCC00C4CB
  1588. CB00C4CBCB00C4CBCC000D0D0D00000000000000000000000000000000000000
  1589. 0000000000000000000000000000000000000000000000000000000000000000
  1590. 000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
  1591. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1592. 0E000E0E0E000E0E0E00000000000E0E0E000000000000000000000000000000
  1593. 0000000000000000000000000000000000000000000000000000000000000000
  1594. 0000000000000000000000000000000000000000000000000000000000000000
  1595. 0000000000000000000000000000000000000000000000000000000000000000
  1596. 0000000000000000000000000000000000000000000000000000000000000000
  1597. 0000000000000000000000000000000000000000000000000000000000000000
  1598. 0000000000000000000000000000000000000000000000000000000000000000
  1599. 0000000000000000000000000000000000000000000000000000000000000000
  1600. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1601. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1602. 0E000E0E0E000E0E0E000000000000000000C8CECE002424240000DEFF0000DE
  1603. FF0000DEFF0024242400C8CFCE00C8CECE00C7CFCE00C7CFCE00C8CECF00C7CE
  1604. CE00C7CECE00C7CECF000D0D0D00000000000000000000000000000000000000
  1605. 0000000000000000000000000000000000000000000000000000000000000000
  1606. 0000000000000000000000000000000000000000000000000000000000000000
  1607. 0000CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1608. CF00CBCFCF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1609. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1610. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1611. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1612. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1613. 0000000000000000000000000000000000000000000000000000000000000000
  1614. 0000000000000000000000000000000000000000000000000000000000000000
  1615. 0000000000000000000000000000000000000000000000000000000000000000
  1616. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1617. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1618. 0E000E0E0E000E0E0E000000000000000000CCD1D2002424240000DEFF0000DE
  1619. FF0000DEFF0024242400CBD2D2000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1620. 0E00CBD1D100CCD1D1000D0D0D00000000000000000000000000000000000000
  1621. 0000000000000000000000000000000000000000000000000000000000000000
  1622. 0000000000000000000000000000000000000000000000000000000000000E0E
  1623. 0E00FFFFFF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1624. 0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1625. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1626. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1627. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1628. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1629. 0000000000000000000000000000000000000000000000000000000000000000
  1630. 0000000000000000000000000000000000000000000000000000000000000000
  1631. 0000000000000000000000000000000000000000000000000000000000000000
  1632. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1633. 0E00FFFFFF00BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7
  1634. C700BFC7C700BFC7C7000000000000000000D0D6D60024242400FFFFFF0000DE
  1635. FF0000DEFF0024242400D0D5D500D0D6D500CFD5D500D0D5D500CFD6D500CFD5
  1636. D500CFD5D500D0D5D5000D0D0D00000000000000000000000000000000000000
  1637. 0000000000000000000000000000000000000000000000000000000000000000
  1638. 000000000000000000000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E
  1639. 0E00FFFFFF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B
  1640. 0A00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00C8CF
  1641. CF00C9D0CF00C8CFCF00C9CFCF00C9D0CF00C8CFCF00C8CFCF00C8CFCF00C8CF
  1642. CF00C8D0CF00C9CFCF00C9CFCF00C9CFD000C8CFCF00C9CFCF00C9CFCF00C9CF
  1643. CF00C9CFCF00C9CFCF00C9CFCF00C9CFCF00C8CFCF00C9CFCF00C9CFCF00C9D0
  1644. CF00C9CFCF000E0E0E000E0E0E00000000000000000000000000000000000000
  1645. 0000000000000000000000000000000000000000000000000000000000000000
  1646. 0000000000000000000000000000000000000000000000000000000000000000
  1647. 0000000000000000000000000000000000000000000000000000000000000000
  1648. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1649. 0E00FFFFFF00C1C9CA00C2C9C900C2C9CA00C2C9C900C2CAC900C2CAC900C2C9
  1650. C900C1C9C900C1C9C9000000000000000000D5D9D900D4DAD900242424002424
  1651. 240024242400D4D9D900D5D9D900D4D9D900D4D9D900D4D9D900D4D9D900D4D9
  1652. D900D4D9D900D4D9D9000D0D0D00000000000000000000000000000000000000
  1653. 0000000000000000000000000000000000000000000000000000000000000000
  1654. 000000000000000000000FBBFB00000000000000000000000000000000000E0E
  1655. 0E00FFFFFF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C009572
  1656. 0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00D6DB
  1657. DB00D6DBDB00D6DBDB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DB
  1658. DB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DBDB00D7DBDB00D7DB
  1659. DB00D7DBDB0000000000D7DBDB0000000000D6DBDB0000000000D6DBDB00D7DB
  1660. DB00D7DBDB000E0E0E000E0E0E00000000000000000000000000000000000000
  1661. 0000000000000000000000000000000000000000000000000000000000000000
  1662. 0000000000000000000000000000000000000000000000000000000000000000
  1663. 0000000000000000000000000000000000000000000000000000000000000000
  1664. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1665. 0E00FFFFFF00C6CCCC00C5CCCD00C5CCCC00C6CDCC00C5CCCD00C6CCCC00C5CC
  1666. CC00C5CCCC00C6CDCD000000000000000000D9DDDD00D8DDDC00D9DDDD00D9DD
  1667. DD00D9DDDD00D9DDDD00D9DDDD00D8DDDD00D9DDDD00D8DDDD00D9DCDD00D9DD
  1668. DD00D9DDDD00D9DDDD000D0D0D00000000000000000000000000000000000000
  1669. 0000000000000000000000000000000000000000000000000000000000000000
  1670. 000000000000000000000FBBFB00000000000000000000000000000000000000
  1671. 0000FFFFFF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D009976
  1672. 0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00E4E7
  1673. E600000000000000000000000000000000000000000000000000000000000000
  1674. 0000E4E7E700E5E7E700E5E7E700E5E7E700E4E7E700E5E7E700E5E7E600E5E7
  1675. E700E5E7E70000000000E4E7E70000000000E4E7E70000000000E5E7E700E5E7
  1676. E600E5E7E7000E0E0E000E0E0E00000000000000000000000000000000000000
  1677. 0000000000000000000000000000000000000000000000000000000000000000
  1678. 0000000000000000000000000000000000000000000000000000000000000000
  1679. 0000000000000000000000000000000000000000000000000000000000000000
  1680. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1681. 0E00FFFFFF00CAD0D100CAD0D000CAD0D000C9D0D000C9D0D000CAD0D000C9D0
  1682. D000CAD0D000CAD0D0000000000000000000DDE0E000DDE0E000242424002424
  1683. 240024242400DDE1E100DDE0E100DDE1E100DEE1E000DDE1E100DDE1E100DEE1
  1684. E000DDE1E100DDE0E1000D0D0D00000000000000000000000000000000000000
  1685. 0000000000000000000000000000000000000000000000000000000000000000
  1686. 000000000000000000000FBBFB00000000000000000000000000000000000E0E
  1687. 0E00FFFFFF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B
  1688. 0C00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00EEEF
  1689. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1690. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1691. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1692. EF00EEEFEF000E0E0E000E0E0E00000000000000000000000000000000000000
  1693. 0000000000000000000000000000000000000000000000000000000000000000
  1694. 0000000000000000000000000000000000000000000000000000000000000000
  1695. 0000000000000000000000000000000000000000000000000000000000000000
  1696. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1697. 0E00FFFFFF00CFD4D400CFD4D500CFD4D400CED4D400CFD4D400CFD4D400CFD4
  1698. D500CFD4D400CFD4D4000000000000000000E2E4E50024242400003CFF00003C
  1699. FF00003CFF0024242400E2E4E500E1E4E400E1E5E400E2E4E500E2E4E400E1E5
  1700. E400E1E4E400E2E4E4000D0D0D00000000000000000000000000000000000000
  1701. 0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1702. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1703. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1704. 0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1705. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1706. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1707. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1708. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1709. 0000000000000000000000000000000000000000000000000000000000000000
  1710. 0000000000000000000000000000000000000000000000000000000000000000
  1711. 0000000000000000000000000000000000000000000000000000000000000000
  1712. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1713. 0E00FFFFFF00D3D8D900D4D9D900D3D8D900D4D9D800D4D8D800D4D8D900D4D9
  1714. D900D4D8D900D4D9D9000000000000000000E5E7E80024242400003CFF00003C
  1715. FF00003CFF0024242400E5E7E7000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1716. 0E00E5E8E800E5E8E8000D0D0D00000000000000000000000000000000000000
  1717. 0000000000000000000000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
  1718. CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCFCF00CBCF
  1719. CF00CBCFCF00C9D0CF000E0E0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1720. FF00FFFFFF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1721. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1722. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1723. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1724. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1725. 0000000000000000000000000000000000000000000000000000000000000000
  1726. 0000000000000000000000000000000000000000000000000000000000000000
  1727. 0000000000000000000000000000000000000000000000000000000000000000
  1728. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1729. 0E00FFFFFF00D9DEDD00D9DDDD00DADDDD00D9DDDD00DADDDD00D9DEDD00D9DD
  1730. DD00D9DDDD00DADEDD000000000000000000E9EAEA0024242400FFFFFF00003C
  1731. FF00003CFF0024242400E9EBEA00E8EBEB00E9EBEB00E9EBEA00E8EBEB00E9EB
  1732. EA00E9EBEB00E9EBEB000D0D0D00000000000000000000000000000000000000
  1733. 0000000000000000000000000000000000000E0E0E00E5E7E700E5E7E700E5E7
  1734. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
  1735. E700E5E7E700E5E7E7000E0E0E00000000000E0E0E000E0E0E000E0E0E000E0E
  1736. 0E000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1737. 0000000000000E0E0E000E0E0E00CECECE00CECECE00CECECE00CECECE00CECE
  1738. CE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECE
  1739. CE00CECECE00CECECE00CECECE00CECECE00CECECE000E0E0E000E0E0E000000
  1740. 0000000000000000000000000000000000000000000000000000000000000000
  1741. 0000000000000000000000000000000000000000000000000000000000000000
  1742. 0000000000000000000000000000000000000000000000000000000000000000
  1743. 0000000000000000000000000000000000000000000000000000000000000000
  1744. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1745. 0E00FFFFFF00DFE1E200DEE2E200DEE2E100DFE2E200DFE1E100DEE2E100DFE2
  1746. E200DEE2E200DEE2E2000000000000000000EBEDED00EBEDED00242424002424
  1747. 240024242400ECEDED00ECEDEE00ECEDED00EBEDED00EBEDED00ECEDED00ECED
  1748. ED00ECEDED00ECEDEE000D0D0D00000000000000000000000000000000000000
  1749. 0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1750. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1751. 0E000E0E0E000E0E0E000E0E0E0000000000000000000FBBFB00000000000000
  1752. 0000000000000000000000000000000000000000000000000000000000000000
  1753. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
  1754. F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
  1755. F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
  1756. 0000000000000000000000000000000000000000000000000000000000000000
  1757. 0000000000000000000000000000000000000000000000000000000000000000
  1758. 0000000000000000000000000000000000000000000000000000000000000000
  1759. 0000000000000000000000000000000000000000000000000000000000000000
  1760. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1761. 0E00FFFFFF00E3E6E600E4E6E600E4E6E600E4E6E600E3E6E600E4E6E600E4E6
  1762. E600E4E6E600E3E6E6000000000000000000EEEFEF00EEEFEF00EEEFEF00EEEF
  1763. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1764. EF00EEEFEF00EEEFEF000D0D0D00000000000000000000000000000000000000
  1765. 00000000000000000000000000000000000000000000000000000E0E0E00CBCF
  1766. CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1767. CF000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1768. 0000000000000000000000000000000000000000000000000000000000000000
  1769. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
  1770. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1771. 0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1772. 0000000000000000000000000000000000000000000000000000000000000000
  1773. 0000000000000000000000000000000000000000000000000000000000000000
  1774. 0000000000000000000000000000000000000000000000000000000000000000
  1775. 0000000000000000000000000000000000000000000000000000000000000000
  1776. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1777. 0E00FFFFFF00E8EAE900E7EAEA00E8EAEA00E7E9EA00E8EAE900E7E9EA00E8EA
  1778. EA00E7E9EA00E8E9E90000000000000000000000000000000000000000000000
  1779. 0000000000000000000000000000000000000000000000000000000000000000
  1780. 000000000000000000000D0D0D00000000000000000000000000000000000000
  1781. 00000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E0E00FFFF
  1782. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1783. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1784. 0000000000000000000000000000000000000000000000000000000000000000
  1785. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B39A
  1786. 1000AF950F000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1787. 0E00916C0A008F690A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1788. 0000000000000000000000000000000000000000000000000000000000000000
  1789. 0000000000000000000000000000000000000000000000000000000000000000
  1790. 0000000000000000000000000000000000000000000000000000000000000000
  1791. 0000000000000000000000000000000000000000000000000000000000000000
  1792. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1793. 0E00FFFFFF00ECEDED00EBEDED00ECEDED00ECEDED00ECEDED00EBECEC00EBEC
  1794. ED00ECEDEC00EBEDEC0000000000000000000000000000000000000000000000
  1795. 0000000000000000000000000000000000000000000000000000000000000000
  1796. 0000000000000000000000000000000000000000000000000000000000000000
  1797. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1798. FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
  1799. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1800. 0000000000000000000000000000000000000000000000000000000000000000
  1801. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B69D
  1802. 1000B29810000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1803. 0E00936E0A00906B0A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1804. 0000000000000000000000000000000000000000000000000000000000000000
  1805. 0000000000000000000000000000000000000000000000000000000000000000
  1806. 0000000000000000000000000000000000000000000000000000000000000000
  1807. 0000000000000000000000000000000000000000000000000000000000000000
  1808. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1809. 0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1810. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1811. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1812. FF000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1813. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1814. FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
  1815. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1816. 0000000000000000000000000000000000000000000000000000000000000000
  1817. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1818. 0E000E0E0E000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1819. 0E0094710B00926D0B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1820. 0000000000000000000000000000000000000000000000000000000000000000
  1821. 0000000000000000000000000000000000000000000000000000000000000000
  1822. 0000000000000000000000000000000000000000000000000000000000000000
  1823. 0000000000000000000000000000000000000000000000000000000000000000
  1824. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1825. 0E00DCCF710094700B0095700B0094700B0094700B0094700B0094700A00946F
  1826. 0B0094700B0094700A0094700B00946F0B0094700B0094700B0094700B009470
  1827. 0A0094700B0094700A0094700B00946F0B0094700B00946F0B0094700B009470
  1828. 0B000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1829. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1830. FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
  1831. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1832. 0000000000000000000000000000000000000000000000000000000000000000
  1833. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1834. 0E00F2F2F2000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1835. 0E0097740B0094700B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1836. 0000000000000000000000000000000000000000000000000000000000000000
  1837. 0000000000000000000000000000000000000000000000000000000000000000
  1838. 0000000000000000000000000000000000000000000000000000000000000000
  1839. 0000000000000000000000000000000000000000000000000000000000000000
  1840. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1841. 0E00DCCF71009C7A0B009B7A0C009C7A0C009C790C009C790C009B7A0C009C7A
  1842. 0C009C7A0B009C7A0C009C7A0C009B7A0C009C7A0C009B790C009C7A0C009C7A
  1843. 0C009B790C009B7A0C009B7A0C009B7A0C009C7A0C009C790C009B7A0C009B79
  1844. 0C000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1845. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00FFFF
  1846. FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
  1847. F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB00000000000000
  1848. 0000000000000000000000000000000000000000000000000000000000000000
  1849. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1850. 0E00F2F2F2000E0E0E00F6DF2100F6DF2100F6DF2100F6DF2100F6DF21000E0E
  1851. 0E009A780C0097720C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1852. 0000000000000000000000000000000000000000000000000000000000000000
  1853. 0000000000000000000000000000000000000000000000000000000000000000
  1854. 0000000000000000000000000000000000000000000000000000000000000000
  1855. 0000000000000000000000000000000000000000000000000000000000000000
  1856. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1857. 0E00DCCF7100A4860D00A4850D00A3850D00A4850D00A4850D00A4860D00A485
  1858. 0D00A4860D00A4850D00A4860D00A4860D00A4860D00A4860D00A4850E00A486
  1859. 0D00A4860D00A3860D00A4860D00A4850D00A4850D00A4850D00A3860D00A485
  1860. 0D000E0E0E000E0E0E0000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
  1861. CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF000E0E0E00FFFF
  1862. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1863. F2000E0E0E000000000000000000000000000000000000000000000000000000
  1864. 0000000000000000000000000000000000000000000000000000000000000000
  1865. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1866. 0E00F2F2F2000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1867. 0E009C7B0C0099760B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1868. 0000000000000000000000000000000000000000000000000000000000000000
  1869. 0000000000000000000000000000000000000000000000000000000000000000
  1870. 0000000000000000000000000000000000000000000000000000000000000000
  1871. 0000000000000000000000000000000000000000000000000000000000000000
  1872. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1873. 0E00DCCF7100AD920F00AD910E00AD920F00AE920E00AD920F00AD920F00AD92
  1874. 0F00AD920F00AE910F00AD910E00AD910E00AD920F00AD920E00AD920F00AD92
  1875. 0F00AD920E00AD920F00AD920E00AD910F00AE920F00AD920E00AD920E00AD91
  1876. 0F000E0E0E000E0E0E0000000000000000000E0E0E00E5E7E700E5E7E700E5E7
  1877. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E7000E0E0E00FFFF
  1878. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1879. FF000E0E0E000000000000000000000000000000000000000000000000000000
  1880. 0000000000000000000000000000000000000000000000000000000000000000
  1881. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1882. 0E00F6DF2100F6DF2100F6DF21000E0E0E00B0951000AC8F0E00A78A0E00A385
  1883. 0D009F7E0D009B790C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1884. 0000000000000000000000000000000000000000000000000000000000000000
  1885. 0000000000000000000000000000000000000000000000000000000000000000
  1886. 0000000000000000000000000000000000000000000000000000000000000000
  1887. 0000000000000000000000000000000000000000000000000000000000000000
  1888. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1889. 0E00DCCF7100B69D1000B69D1100B69E1000B69D1000B69D1000DCCF7100DCCF
  1890. 7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
  1891. 7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
  1892. 71000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1893. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1894. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1895. 0E000E0E0E000000000000000000000000000000000000000000000000000000
  1896. 0000000000000000000000000000000000000000000000000000000000000000
  1897. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1898. 0E000E0E0E000E0E0E000E0E0E000E0E0E00B39A1000AB8E0E00AB8E0E00A788
  1899. 0E00A2830D009E7D0C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1900. 0000000000000000000000000000000000000000000000000000000000000000
  1901. 0000000000000000000000000000000000000000000000000000000000000000
  1902. 0000000000000000000000000000000000000000000000000000000000000000
  1903. 0000000000000000000000000000000000000000000000000000000000000000
  1904. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1905. 0E00DCCF7100BDA71100BDA71100BCA71100BDA71100BDA711000E0E0E000E0E
  1906. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1907. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1908. 0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00CBCF
  1909. CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1910. CF000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1911. 0000000000000000000000000000000000000000000000000000000000000000
  1912. 0000000000000000000000000000000000000000000000000000000000000000
  1913. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100F6DF
  1914. 2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF
  1915. 2100F6DF2100F6DF21000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1916. 0000000000000000000000000000000000000000000000000000000000000000
  1917. 0000000000000000000000000000000000000000000000000000000000000000
  1918. 0000000000000000000000000000000000000000000000000000000000000000
  1919. 0000000000000000000000000000000000000000000000000000000000000000
  1920. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1921. 0E00DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF71000E0E0E000E0E
  1922. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1923. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1924. 0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00FFFF
  1925. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1926. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1927. 0000000000000000000000000000000000000000000000000000000000000000
  1928. 0000000000000000000000000000000000000000000000000000000000000000
  1929. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
  1930. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1931. 0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1932. 0000000000000000000000000000000000000000000000000000000000000000
  1933. 0000000000000000000000000000000000000000000000000000000000000000
  1934. 0000000000000000000000000000000000000000000000000000000000000000
  1935. 0000000000000000000000000000000000000000000000000000000000000000
  1936. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1937. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1938. 0E00000000000000000000000000000000000000000000000000000000000000
  1939. 0000000000000000000000000000000000000000000000000000000000000000
  1940. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1941. FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
  1942. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1943. 0000000000000000000000000000000000000000000000000000000000000000
  1944. 0000000000000000000000000000000000000000000000000000000000000000
  1945. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
  1946. F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
  1947. F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
  1948. 0000000000000000000000000000000000000000000000000000000000000000
  1949. 0000000000000000000000000000000000000000000000000000000000000000
  1950. 0000000000000000000000000000000000000000000000000000000000000000
  1951. 0000000000000000000000000000000000000000000000000000000000000000
  1952. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1953. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1954. 0E00000000000000000000000000000000000000000000000000000000000000
  1955. 0000000000000000000000000000000000000000000000000000000000000000
  1956. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1957. FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
  1958. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1959. 0000000000000000000000000000000000000000000000000000000000000000
  1960. 0000000000000000000000000000000000000000000000000000000000000000
  1961. 0000000000000E0E0E000E0E0E00AAAAAA00FFFFFF00FFFFFF00FFFFFF00FFFF
  1962. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1963. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AAAAAA000E0E0E000E0E0E000000
  1964. 0000000000000000000000000000000000000000000000000000000000000000
  1965. 0000000000000000000000000000000000000000000000000000000000000000
  1966. 0000000000000000000000000000000000000000000000000000000000000000
  1967. 0000000000000000000000000000000000000000000000000000000000000000
  1968. 0000000000000000000000000000000000000000000000000000000000000000
  1969. 0000000000000000000000000000000000000000000000000000000000000000
  1970. 0000000000000000000000000000000000000000000000000000000000000000
  1971. 0000000000000000000000000000000000000000000000000000000000000000
  1972. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1973. FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
  1974. F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB0000000000000000000000
  1975. 0000000000000000000000000000000000000000000000000000000000000000
  1976. 0000000000000000000000000000000000000000000000000000000000000000
  1977. 0000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1978. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1979. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000000
  1980. 0000000000000000000000000000000000000000000000000000000000000000
  1981. 0000000000000000000000000000000000000000000000000000000000000000
  1982. 0000000000000000000000000000000000000000000000000000000000000000
  1983. 0000000000000000000000000000000000000000000000000000000000000000
  1984. 0000000000000000000000000000000000000000000000000000000000000000
  1985. 0000000000000000000000000000000000000000000000000000000000000000
  1986. 0000000000000000000000000000000000000000000000000000000000000000
  1987. 0000000000000000000000000000000000000000000000000000000000000000
  1988. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1989. FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
  1990. F2000E0E0E000000000000000000000000000000000000000000000000000000
  1991. 0000000000000000000000000000000000000000000000000000000000000000
  1992. 0000000000000000000000000000000000000000000000000000000000000000
  1993. 000000000000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1994. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1995. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00000000000000
  1996. 0000000000000000000000000000000000000000000000000000000000000000
  1997. 0000000000000000000000000000000000000000000000000000000000000000
  1998. 0000000000000000000000000000000000000000000000000000000000000000
  1999. 0000000000000000000000000000000000000000000000000000000000000000
  2000. 0000000000000000000000000000000000000000000000000000000000000000
  2001. 0000000000000000000000000000000000000000000000000000000000000000
  2002. 0000000000000000000000000000000000000000000000000000000000000000
  2003. 0000000000000000000000000000000000000000000000000000000000000000
  2004. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2005. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  2006. F2000E0E0E000000000000000000000000000000000000000000000000000000
  2007. 0000000000000000000000000000000000000000000000000000000000000000
  2008. 0000000000000000000000000000000000000000000000000000000000000000
  2009. 0000000000000000000000000000000000000000000000000000000000000000
  2010. 0000000000000000000000000000000000000000000000000000000000000000
  2011. 0000000000000000000000000000000000000000000000000000000000000000
  2012. 0000000000000000000000000000000000000000000000000000000000000000
  2013. 0000000000000000000000000000000000000000000000000000000000000000
  2014. 0000000000000000000000000000000000000000000000000000000000000000
  2015. 0000000000000000000000000000000000000000000000000000000000000000
  2016. 0000000000000000000000000000000000000000000000000000000000000000
  2017. 0000000000000000000000000000000000000000000000000000000000000000
  2018. 0000000000000000000000000000000000000000000000000000000000000000
  2019. 0000000000000000000000000000000000000000000000000000000000000000
  2020. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2021. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  2022. FF000E0E0E000000000000000000000000000000000000000000000000000000
  2023. 0000000000000000000000000000000000000000000000000000000000000000
  2024. 0000000000000000000000000000000000000000000000000000000000000000
  2025. 0000000000000000000000000000000000000000000000000000000000000000
  2026. 0000000000000000000000000000000000000000000000000000000000000000
  2027. 0000000000000000000000000000000000000000000000000000000000000000
  2028. 0000000000000000000000000000000000000000000000000000000000000000
  2029. 0000000000000000000000000000000000000000000000000000000000000000
  2030. 0000000000000000000000000000000000000000000000000000000000000000
  2031. 0000000000000000000000000000000000000000000000000000000000000000
  2032. 0000000000000000000000000000000000000000000000000000000000000000
  2033. 0000000000000000000000000000000000000000000000000000000000000000
  2034. 0000000000000000000000000000000000000000000000000000000000000000
  2035. 0000000000000000000000000000000000000000000000000000000000000000
  2036. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  2037. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  2038. 0E000E0E0E000000000000000000000000000000000000000000000000000000
  2039. 0000000000000000000000000000000000000000000000000000000000000000
  2040. 0000000000000000000000000000000000000000000000000000000000000000
  2041. 0000000000000000000000000000000000000000000000000000000000000000
  2042. 0000000000000000000000000000000000000000000000000000000000000000
  2043. 0000000000000000000000000000000000000000000000000000000000000000
  2044. 0000000000000000000000000000000000000000000000000000000000000000
  2045. 0000000000000000000000000000000000000000000000000000000000000000
  2046. 0000000000000000000000000000000000000000000000000000000000000000
  2047. 0000000000000000000000000000000000000000000000000000000000000000
  2048. 000000000000000000000000000000000000424D3E000000000000003E000000
  2049. 2800000080000000200000000100010000000000000200000000000000000000
  2050. 000000000000000000000000FFFFFF00FFFC0000FFFF0000FFFFFFFF00000000
  2051. FFFC0000FFFF0000FFFFFFFF00000000FFFC0000FFFF0000FFFFFFFF00000000
  2052. FFFC0000FFFF0000FFFFFFFF00000000C0000000FFF000008000000100000000
  2053. C0000000FFF000018000000100000000C0000000FFF000018000000100000000
  2054. C0000000FFF000018000000100000000C0000000FFF000018000000100000000
  2055. C0000000FE0000018000000100000000C0000000FE0000018000000100000000
  2056. C0000000FE0000018000000100000000C0000000FE000001F800001F00000000
  2057. C0000000C0000001F800001F00000000C0000000C000000FF800001F00000000
  2058. C0000000C000000FF800001F00000000C0000000C000000FF800001F00000000
  2059. C0000003C000000FF800001F00000000C00000030000000FF800001F00000000
  2060. C00000030000000FF800001F00000000C00000030000000FF800001F00000000
  2061. C00000030000000FF800001F00000000C0000003000003FFF800001F00000000
  2062. C0000003000003FFF800001F00000000C000000380001FFFF800001F00000000
  2063. C00FFFFF80001FFFF800001F00000000C00FFFFF80001FFFF800001F00000000
  2064. FFFFFFFF80001FFFF800001F00000000FFFFFFFF80001FFFFC00003F00000000
  2065. FFFFFFFF80001FFFFFFFFFFF00000000FFFFFFFF8003FFFFFFFFFFFF00000000
  2066. FFFFFFFF8003FFFFFFFFFFFF0000000000000000000000000000000000000000
  2067. 000000000000}
  2068. end
  2069. object zaStaff: TZjGridDBA
  2070. Columns = <
  2071. item
  2072. Title.Caption = #26399#25968
  2073. Title.CaptionAcrossCols = '1'
  2074. Title.Font.Charset = GB2312_CHARSET
  2075. Title.Font.Color = clWindowText
  2076. Title.Font.Height = -12
  2077. Title.Font.Name = #23435#20307
  2078. Title.Font.Style = []
  2079. Alignment = taCenter
  2080. Font.Charset = GB2312_CHARSET
  2081. Font.Color = clWindowText
  2082. Font.Height = -12
  2083. Font.Name = #23435#20307
  2084. Font.Style = []
  2085. FieldName = 'PhaseID'
  2086. Width = 20
  2087. Visible = False
  2088. ReadOnly = True
  2089. end
  2090. item
  2091. Title.Caption = #23457#26680#27969#31243
  2092. Title.CaptionAcrossCols = '1'
  2093. Title.Font.Charset = GB2312_CHARSET
  2094. Title.Font.Color = clWindowText
  2095. Title.Font.Height = -12
  2096. Title.Font.Name = #23435#20307
  2097. Title.Font.Style = []
  2098. Alignment = taCenter
  2099. Font.Charset = GB2312_CHARSET
  2100. Font.Color = clWindowText
  2101. Font.Height = -12
  2102. Font.Name = #23435#20307
  2103. Font.Style = []
  2104. FieldName = 'StageID'
  2105. Width = 60
  2106. ReadOnly = True
  2107. end
  2108. item
  2109. Title.Caption = #21333#20301
  2110. Title.CaptionAcrossCols = '1'
  2111. Title.Font.Charset = GB2312_CHARSET
  2112. Title.Font.Color = clWindowText
  2113. Title.Font.Height = -12
  2114. Title.Font.Name = #23435#20307
  2115. Title.Font.Style = []
  2116. Alignment = taLeftJustify
  2117. Font.Charset = GB2312_CHARSET
  2118. Font.Color = clWindowText
  2119. Font.Height = -12
  2120. Font.Name = #23435#20307
  2121. Font.Style = []
  2122. FieldName = 'Company'
  2123. Width = 220
  2124. ReadOnly = False
  2125. end
  2126. item
  2127. Title.Caption = #35282#33394
  2128. Title.CaptionAcrossCols = '1'
  2129. Title.Font.Charset = GB2312_CHARSET
  2130. Title.Font.Color = clWindowText
  2131. Title.Font.Height = -12
  2132. Title.Font.Name = #23435#20307
  2133. Title.Font.Style = []
  2134. Alignment = taLeftJustify
  2135. Font.Charset = GB2312_CHARSET
  2136. Font.Color = clWindowText
  2137. Font.Height = -12
  2138. Font.Name = #23435#20307
  2139. Font.Style = []
  2140. FieldName = 'Role'
  2141. Width = 80
  2142. ReadOnly = False
  2143. end
  2144. item
  2145. Title.Caption = #22995#21517
  2146. Title.CaptionAcrossCols = '1'
  2147. Title.Font.Charset = GB2312_CHARSET
  2148. Title.Font.Color = clWindowText
  2149. Title.Font.Height = -12
  2150. Title.Font.Name = #23435#20307
  2151. Title.Font.Style = []
  2152. Alignment = taLeftJustify
  2153. Font.Charset = GB2312_CHARSET
  2154. Font.Color = clWindowText
  2155. Font.Height = -12
  2156. Font.Name = #23435#20307
  2157. Font.Style = []
  2158. FieldName = 'Name'
  2159. Width = 60
  2160. ReadOnly = False
  2161. end>
  2162. Grid = zgStaff
  2163. ExtendRowCount = 0
  2164. Left = 400
  2165. Top = 14
  2166. end
  2167. object imgValid: TImageList
  2168. Left = 352
  2169. Top = 40
  2170. Bitmap = {
  2171. 494C010102000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2172. 0000000000003600000028000000400000001000000001002000000000000010
  2173. 0000000000000000000000000000000000000000000000000000000000000000
  2174. 0000000000000000000000000000000000000000000000000000000000000000
  2175. 0000000000000000000000000000000000000000000000000000000000000000
  2176. 0000000000000000000000000000000000000000000000000000000000000000
  2177. 0000000000000000000000000000000000000000000000000000000000000000
  2178. 0000000000000000000000000000000000000000000000000000000000000000
  2179. 0000000000000000000000000000000000000000000000000000000000000000
  2180. 0000000000000000000000000000000000000000000000000000000000000000
  2181. 0000000000000000000000000000000000000000000000000000000000000000
  2182. 0000000000000000000000000000000000000000000000000000000000000000
  2183. 0000000000000000000000000000000000000000000000000000000000000000
  2184. 0000000000000000000000000000000000000000000000000000000000000000
  2185. 0000000000000000000000000000000000000000000000000000000000000000
  2186. 0000000000000000000000000000000000000000000000000000000000000000
  2187. 0000000000000000000000000000000000000000000000000000000000000000
  2188. 0000000000000000000000000000000000000000000000000000000000000000
  2189. 0000000000000000000000000000000000000000000000000000000000000000
  2190. 000000000000ECECECFF75AF78FF7BAD7EFFFBFBFBFF00000000000000000000
  2191. 0000000000000000000000000000000000000000000000000000000000000000
  2192. 0000DCDDDFFFDCDDDFFF00000000000000000000000000000000DCDDDFFFDCDD
  2193. DFFF000000000000000000000000000000000000000000000000000000000000
  2194. 0000000000000000000000000000000000000000000000000000000000000000
  2195. 0000000000000000000000000000000000000000000000000000000000000000
  2196. 0000000000000000000000000000000000000000000000000000000000000000
  2197. 0000000000000000000000000000000000000000000000000000000000000000
  2198. 0000C9D0CAFF56B95BFF41E84AFF40E64AFF74AD77FFF9F9F9FF000000000000
  2199. 000000000000000000000000000000000000000000000000000000000000D1D2
  2200. D7FF2A35C1FF2634C2FFD0D1D5FF0000000000000000D2D3D7FF2A35C1FF2634
  2201. C2FFCFD1D5FF0000000000000000000000000000000000000000000000000000
  2202. 0000000000000000000000000000000000000000000000000000000000000000
  2203. 0000000000000000000000000000000000000000000000000000000000000000
  2204. 0000000000000000000000000000000000000000000000000000000000000000
  2205. 000000000000000000000000000000000000000000000000000000000000A1B7
  2206. A3FF45CC4DFF42E44CFF3ED847FF3ED948FF42E64CFF70B074FFF7F7F7FF0000
  2207. 0000000000000000000000000000000000000000000000000000DADBDEFF3745
  2208. C5FF0409E4FF060BE5FF2F3EC1FFDADADDFFDADBDEFF303FC1FF060CE5FF0409
  2209. E4FF3645C6FFD9DADDFF00000000000000000000000000000000000000000000
  2210. 0000000000000000000000000000000000000000000000000000000000000000
  2211. 0000000000000000000000000000000000000000000000000000000000000000
  2212. 0000000000000000000000000000000000000000000000000000000000000000
  2213. 00000000000000000000000000000000000000000000F1F1F1FF7CAF7FFF43DF
  2214. 4DFF43E14DFF41D94AFF44E24DFF42DC4BFF41DA4AFF45E74FFF6CB170FFF4F4
  2215. F4FF000000000000000000000000000000000000000000000000DBDCDEFF4553
  2216. C6FF2932EFFF0814E5FF0C16EAFF3946BBFF3948BBFF0C16EAFF0814E5FF2932
  2217. EFFF4552C9FFD9DADDFF00000000000000000000000000000000000000000000
  2218. 0000000000000000000000000000000000000000000000000000000000000000
  2219. 0000000000000000000000000000000000000000000000000000000000000000
  2220. 0000000000000000000000000000000000000000000000000000000000000000
  2221. 000000000000000000000000000000000000CDD2CEFF60B866FF48E852FF44DD
  2222. 4EFF44DD4EFF46E350FF57C35EFF46D44FFF46E14FFF44DB4DFF48E952FF69B3
  2223. 6EFFF1F1F1FF000000000000000000000000000000000000000000000000D2D3
  2224. D8FF4C5CC6FF303EF4FF1325E9FF1526EBFF1526EBFF1325E9FF2F3EF4FF4C5A
  2225. C7FFD0D1D6FF0000000000000000000000000000000000000000000000000000
  2226. 0000000000000000000000000000000000000000000000000000000000000000
  2227. 0000000000000000000000000000000000000000000000000000000000000000
  2228. 0000000000000000000000000000000000000000000000000000000000000000
  2229. 00000000000000000000000000000000000077B37AFF4FF85AFF46DB4FFF49E3
  2230. 52FF49E452FF8AB58CFFF1F1F1FFB2C2B3FF4BDA53FF49E453FF46DC50FF4BEB
  2231. 55FF67B56CFFECECECFF00000000000000000000000000000000000000000000
  2232. 0000DBDBDEFF5663C1FF293FF1FF1E3AEFFF1E3AEFFF293FF1FF5563C0FFD9D9
  2233. DDFF000000000000000000000000000000000000000000000000000000000000
  2234. 0000000000000000000000000000000000000000000000000000000000000000
  2235. 0000000000000000000000000000000000000000000000000000000000000000
  2236. 0000000000000000000000000000000000000000000000000000000000000000
  2237. 000000000000000000000000000000000000DBDEDBFF5CC663FF51F65CFF50D6
  2238. 57FFA9BEABFF000000000000000000000000B6C5B7FF4ED756FF4CE656FF48DD
  2239. 52FF4DEC58FF65B96BFFE7E8E7FF000000000000000000000000000000000000
  2240. 0000D9DADDFF3D4DC0FF2340F4FF294EF4FF294EF4FF2341F5FF3C4CC1FFD8D9
  2241. DCFF000000000000000000000000000000000000000000000000000000000000
  2242. 0000000000000000000000000000000000000000000000000000000000000000
  2243. 0000000000000000000000000000000000000000000000000000000000000000
  2244. 0000000000000000000000000000000000000000000000000000000000000000
  2245. 00000000000000000000000000000000000000000000D2D7D2FF78BB7DFFC7CF
  2246. C7FF0000000000000000000000000000000000000000BCC8BDFF52D759FF4FE8
  2247. 59FF4BDE54FF50ED5BFF63BB6AFFE2E4E3FF000000000000000000000000D1D2
  2248. D7FF3547C8FF2545FFFF2C56F7FF4364FAFF4464FAFF2C56F7FF2546FFFF3446
  2249. C8FFCFD0D5FF0000000000000000000000000000000000000000000000000000
  2250. 0000000000000000000000000000000000000000000000000000000000000000
  2251. 0000000000000000000000000000000000000000000000000000000000000000
  2252. 0000000000000000000000000000000000000000000000000000000000000000
  2253. 0000000000000000000000000000000000000000000000000000000000000000
  2254. 0000000000000000000000000000000000000000000000000000C2CBC2FF55D4
  2255. 5DFF51EA5CFF4DDE57FF52EE5EFF5EC166FF0000000000000000DADBDEFF3C4D
  2256. D0FF284CFFFF3667FCFF4768FFFF5261C1FF5261C0FF4769FFFF3667FCFF284C
  2257. FFFF3B4CD1FFD9DADDFF00000000000000000000000000000000000000000000
  2258. 0000000000000000000000000000000000000000000000000000000000000000
  2259. 0000000000000000000000000000000000000000000000000000000000000000
  2260. 0000000000000000000000000000000000000000000000000000000000000000
  2261. 0000000000000000000000000000000000000000000000000000000000000000
  2262. 000000000000000000000000000000000000000000000000000000000000C7CF
  2263. C7FF5AD262FF54EC5FFF54EC5FFF57D65EFF0000000000000000DBDBDEFF4858
  2264. D0FF4568FFFF476BFFFF4E5ECBFFDADADDFFDBDBDEFF4F5ECAFF476CFFFF4568
  2265. FFFF4657D1FFD9D9DDFF00000000000000000000000000000000000000000000
  2266. 0000000000000000000000000000000000000000000000000000000000000000
  2267. 0000000000000000000000000000000000000000000000000000000000000000
  2268. 0000000000000000000000000000000000000000000000000000000000000000
  2269. 0000000000000000000000000000000000000000000000000000000000000000
  2270. 0000000000000000000000000000000000000000000000000000000000000000
  2271. 0000CDD3CDFF5AD362FF56D960FFC8D0C8FF000000000000000000000000D2D3
  2272. D7FF4A5AD1FF4758D1FFD1D2D6FF0000000000000000D2D2D7FF495AD1FF4759
  2273. D1FFD0D1D6FF0000000000000000000000000000000000000000000000000000
  2274. 0000000000000000000000000000000000000000000000000000000000000000
  2275. 0000000000000000000000000000000000000000000000000000000000000000
  2276. 0000000000000000000000000000000000000000000000000000000000000000
  2277. 0000000000000000000000000000000000000000000000000000000000000000
  2278. 0000000000000000000000000000000000000000000000000000000000000000
  2279. 000000000000D9DDD9FFD3D8D3FF000000000000000000000000000000000000
  2280. 0000DDDDE0FFDDDDE0FF00000000000000000000000000000000DDDDE0FFDDDD
  2281. E0FF000000000000000000000000000000000000000000000000000000000000
  2282. 0000000000000000000000000000000000000000000000000000000000000000
  2283. 0000000000000000000000000000000000000000000000000000000000000000
  2284. 0000000000000000000000000000000000000000000000000000000000000000
  2285. 0000000000000000000000000000000000000000000000000000000000000000
  2286. 0000000000000000000000000000000000000000000000000000000000000000
  2287. 0000000000000000000000000000000000000000000000000000000000000000
  2288. 0000000000000000000000000000000000000000000000000000000000000000
  2289. 0000000000000000000000000000000000000000000000000000000000000000
  2290. 0000000000000000000000000000000000000000000000000000000000000000
  2291. 0000000000000000000000000000000000000000000000000000000000000000
  2292. 0000000000000000000000000000000000000000000000000000000000000000
  2293. 0000000000000000000000000000000000000000000000000000000000000000
  2294. 0000000000000000000000000000000000000000000000000000000000000000
  2295. 0000000000000000000000000000000000000000000000000000000000000000
  2296. 0000000000000000000000000000000000000000000000000000000000000000
  2297. 0000000000000000000000000000000000000000000000000000000000000000
  2298. 0000000000000000000000000000000000000000000000000000000000000000
  2299. 0000000000000000000000000000000000000000000000000000000000000000
  2300. 0000000000000000000000000000000000000000000000000000000000000000
  2301. 000000000000000000000000000000000000424D3E000000000000003E000000
  2302. 2800000040000000100000000100010000000000800000000000000000000000
  2303. 000000000000000000000000FFFFFF00FFFFFFFF00000000FFFFFFFF00000000
  2304. F87FF3CF00000000F03FE18700000000E01FC00300000000800FC00300000000
  2305. 0007E007000000000003F00F000000000701F00F000000008F80E00700000000
  2306. FFC0C00300000000FFE0C00300000000FFF0E18700000000FFF9F3CF00000000
  2307. FFFFFFFF00000000FFFFFFFF0000000000000000000000000000000000000000
  2308. 000000000000}
  2309. end
  2310. end