TAS0020MF.dfm 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  1. object TAS0020M: TTAS0020M
  2. Left = 352
  3. Top = 109
  4. Caption = #44036#49440#46020#47196' '#53685#44228
  5. ClientHeight = 763
  6. ClientWidth = 1355
  7. Color = clWhite
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -13
  11. Font.Name = #47569#51008' '#44256#46357
  12. Font.Style = []
  13. OldCreateOrder = False
  14. Position = poOwnerFormCenter
  15. Scaled = False
  16. ShowHint = True
  17. OnClose = FormClose
  18. OnCreate = FormCreate
  19. OnShow = FormShow
  20. DesignSize = (
  21. 1355
  22. 763)
  23. PixelsPerInch = 96
  24. TextHeight = 17
  25. object ShpList: TShape
  26. Left = 4
  27. Top = 118
  28. Width = 1346
  29. Height = 641
  30. Anchors = [akLeft, akTop, akRight, akBottom]
  31. Pen.Color = 10849679
  32. Pen.Width = 2
  33. ExplicitHeight = 613
  34. end
  35. object LblRptTitle: TLabel
  36. Left = 944
  37. Top = 39
  38. Width = 108
  39. Height = 16
  40. Anchors = [akLeft, akTop, akRight]
  41. Caption = #44036#49440#46020#47196' '#53685#44228
  42. Font.Charset = DEFAULT_CHARSET
  43. Font.Color = clRed
  44. Font.Height = -16
  45. Font.Name = #44404#47548
  46. Font.Style = [fsBold]
  47. ParentFont = False
  48. ParentShowHint = False
  49. ShowHint = True
  50. Visible = False
  51. end
  52. object LblQryDay: TLabel
  53. Left = 705
  54. Top = 37
  55. Width = 58
  56. Height = 16
  57. Anchors = [akLeft, akTop, akRight]
  58. Caption = 'QryDay'
  59. Font.Charset = DEFAULT_CHARSET
  60. Font.Color = clRed
  61. Font.Height = -16
  62. Font.Name = #44404#47548
  63. Font.Style = [fsBold]
  64. ParentFont = False
  65. ParentShowHint = False
  66. ShowHint = True
  67. Visible = False
  68. end
  69. object LblQryYear: TLabel
  70. Left = 781
  71. Top = 39
  72. Width = 65
  73. Height = 16
  74. Anchors = [akLeft, akTop, akRight]
  75. Caption = 'QryYear'
  76. Font.Charset = DEFAULT_CHARSET
  77. Font.Color = clRed
  78. Font.Height = -16
  79. Font.Name = #44404#47548
  80. Font.Style = [fsBold]
  81. ParentFont = False
  82. ParentShowHint = False
  83. ShowHint = True
  84. Visible = False
  85. end
  86. object LblQryTm: TLabel
  87. Left = 639
  88. Top = 39
  89. Width = 52
  90. Height = 16
  91. Anchors = [akLeft, akTop, akRight]
  92. Caption = 'QryTm'
  93. Font.Charset = DEFAULT_CHARSET
  94. Font.Color = clRed
  95. Font.Height = -16
  96. Font.Name = #44404#47548
  97. Font.Style = [fsBold]
  98. ParentFont = False
  99. ParentShowHint = False
  100. ShowHint = True
  101. Visible = False
  102. end
  103. object ShpTitle: TShape
  104. Left = 4
  105. Top = 4
  106. Width = 1347
  107. Height = 40
  108. Anchors = [akLeft, akTop, akRight]
  109. Brush.Color = 14671839
  110. Pen.Color = 10849679
  111. Pen.Width = 2
  112. ExplicitWidth = 1269
  113. end
  114. object LblCaption: TLabel
  115. Left = 16
  116. Top = 10
  117. Width = 267
  118. Height = 23
  119. Caption = #53440#51060#53952' '
  120. Font.Charset = DEFAULT_CHARSET
  121. Font.Color = 4740964
  122. Font.Height = -17
  123. Font.Name = #47569#51008' '#44256#46357
  124. Font.Style = [fsBold]
  125. ParentFont = False
  126. ParentShowHint = False
  127. ShowHint = True
  128. end
  129. object PgQuery: TcxPageControl
  130. Tag = 9
  131. Left = 4
  132. Top = 50
  133. Width = 1347
  134. Height = 68
  135. Cursor = crHandPoint
  136. Anchors = [akLeft, akTop, akRight]
  137. Focusable = False
  138. TabOrder = 0
  139. Properties.ActivePage = TsDay
  140. Properties.HotTrack = True
  141. Properties.Images = LimgTmp
  142. Properties.Options = [pcoAlwaysShowGoDialogButton, pcoFixedTabWidthWhenRotated, pcoGradient, pcoGradientClientArea, pcoRedrawOnResize]
  143. Properties.TabSlants.Positions = [spRight]
  144. TabSlants.Positions = [spRight]
  145. OnChange = PgQueryChange
  146. ClientRectBottom = 63
  147. ClientRectLeft = 2
  148. ClientRectRight = 1342
  149. ClientRectTop = 28
  150. object TsDay: TcxTabSheet
  151. Caption = #49884#44036#45824#48324' '#53685#44228' '
  152. ImageIndex = 2
  153. ExplicitLeft = 0
  154. ExplicitTop = 0
  155. ExplicitWidth = 0
  156. ExplicitHeight = 0
  157. DesignSize = (
  158. 1340
  159. 35)
  160. object LblRecordsTm: TLabel
  161. Left = 1200
  162. Top = 10
  163. Width = 52
  164. Height = 17
  165. Alignment = taRightJustify
  166. Anchors = [akTop, akRight]
  167. Caption = #51312#54924#44148#49688
  168. Transparent = True
  169. end
  170. object DtDay: TDateTimePicker
  171. Left = 216
  172. Top = 6
  173. Width = 145
  174. Height = 25
  175. BevelInner = bvNone
  176. BevelOuter = bvNone
  177. BevelKind = bkFlat
  178. Date = 39924.557697118050000000
  179. Format = 'yyyy'#45380' MM'#50900' dd'#51068
  180. Time = 39924.557697118050000000
  181. DoubleBuffered = True
  182. ImeName = 'Microsoft Office IME 2007'
  183. ParentDoubleBuffered = False
  184. ParentShowHint = False
  185. ShowHint = True
  186. TabOrder = 0
  187. end
  188. object Lbl2: TcxLabel
  189. Left = 97
  190. Top = 7
  191. AutoSize = False
  192. Caption = #53685#44228#51068
  193. ParentShowHint = False
  194. ShowHint = True
  195. Style.BorderStyle = ebsNone
  196. Style.Edges = [bLeft, bTop, bRight, bBottom]
  197. Style.TextStyle = []
  198. Properties.Alignment.Horz = taRightJustify
  199. Transparent = True
  200. Height = 20
  201. Width = 110
  202. AnchorX = 207
  203. end
  204. end
  205. object TsMon: TcxTabSheet
  206. Caption = #51068#48324' '#53685#44228' '
  207. ImageIndex = 1
  208. ExplicitLeft = 0
  209. ExplicitTop = 0
  210. ExplicitWidth = 0
  211. ExplicitHeight = 0
  212. DesignSize = (
  213. 1340
  214. 35)
  215. object LblRecordsDay: TLabel
  216. Left = 1200
  217. Top = 10
  218. Width = 52
  219. Height = 17
  220. Alignment = taRightJustify
  221. Anchors = [akTop, akRight]
  222. Caption = #51312#54924#44148#49688
  223. Transparent = True
  224. end
  225. object DtMon: TDateTimePicker
  226. Left = 69
  227. Top = 6
  228. Width = 109
  229. Height = 25
  230. BevelInner = bvNone
  231. BevelOuter = bvNone
  232. BevelKind = bkFlat
  233. Date = 39924.557697118050000000
  234. Format = 'yyyy'#45380' MM'#50900
  235. Time = 39924.557697118050000000
  236. DateMode = dmUpDown
  237. ImeName = 'Microsoft Office IME 2007'
  238. ParentShowHint = False
  239. ShowHint = True
  240. TabOrder = 1
  241. end
  242. object cxLabel1: TcxLabel
  243. Left = 10
  244. Top = 7
  245. AutoSize = False
  246. Caption = #53685#44228#50900
  247. ParentShowHint = False
  248. ShowHint = True
  249. Style.BorderStyle = ebsNone
  250. Style.Edges = [bLeft, bTop, bRight, bBottom]
  251. Style.TextStyle = []
  252. Properties.Alignment.Horz = taRightJustify
  253. Transparent = True
  254. Height = 20
  255. Width = 54
  256. AnchorX = 64
  257. end
  258. object DtStTime: TDateTimePicker
  259. Left = 186
  260. Top = 6
  261. Width = 95
  262. Height = 25
  263. BevelInner = bvNone
  264. BevelOuter = bvNone
  265. BevelKind = bkFlat
  266. Date = 39924.557697118050000000
  267. Format = ' HH'#49884' mm'#48516
  268. Time = 39924.557697118050000000
  269. Color = clWhite
  270. DateMode = dmUpDown
  271. ImeName = 'Microsoft Office IME 2007'
  272. Kind = dtkTime
  273. ParentColor = True
  274. TabOrder = 2
  275. end
  276. object DtEdTime: TDateTimePicker
  277. Left = 310
  278. Top = 6
  279. Width = 95
  280. Height = 25
  281. BevelInner = bvNone
  282. BevelOuter = bvNone
  283. BevelKind = bkFlat
  284. Date = 39924.557697118050000000
  285. Format = ' HH'#49884' mm'#48516
  286. Time = 39924.557697118050000000
  287. Color = clWhite
  288. DateMode = dmUpDown
  289. ImeName = 'Microsoft Office IME 2007'
  290. Kind = dtkTime
  291. ParentColor = True
  292. TabOrder = 3
  293. end
  294. object cxLabel3: TcxLabel
  295. Left = 282
  296. Top = 7
  297. AutoSize = False
  298. Caption = ' ~ '
  299. ParentShowHint = False
  300. ShowHint = True
  301. Style.BorderStyle = ebsNone
  302. Style.Edges = [bLeft, bTop, bRight, bBottom]
  303. Style.TextStyle = []
  304. Properties.Alignment.Horz = taCenter
  305. Transparent = True
  306. Height = 20
  307. Width = 25
  308. AnchorX = 295
  309. end
  310. end
  311. object TsYear: TcxTabSheet
  312. Caption = #50900#48324' '#53685#44228' '
  313. ImageIndex = 0
  314. TabVisible = False
  315. ExplicitLeft = 0
  316. ExplicitTop = 0
  317. ExplicitWidth = 0
  318. ExplicitHeight = 0
  319. DesignSize = (
  320. 1340
  321. 35)
  322. object LblRecordsYear: TLabel
  323. Left = 1200
  324. Top = 10
  325. Width = 52
  326. Height = 17
  327. Alignment = taRightJustify
  328. Anchors = [akTop, akRight]
  329. Caption = #51312#54924#44148#49688
  330. Transparent = True
  331. end
  332. object DtYear: TDateTimePicker
  333. Left = 275
  334. Top = 6
  335. Width = 77
  336. Height = 25
  337. BevelInner = bvNone
  338. BevelOuter = bvNone
  339. BevelKind = bkFlat
  340. Date = 39924.557697118050000000
  341. Format = 'yyyy'#45380
  342. Time = 39924.557697118050000000
  343. DateMode = dmUpDown
  344. ImeName = 'Microsoft Office IME 2007'
  345. ParentShowHint = False
  346. ShowHint = True
  347. TabOrder = 1
  348. end
  349. object cxLabel2: TcxLabel
  350. Left = 159
  351. Top = 7
  352. AutoSize = False
  353. Caption = #53685#44228#45380
  354. ParentShowHint = False
  355. ShowHint = True
  356. Style.BorderStyle = ebsNone
  357. Style.Edges = [bLeft, bTop, bRight, bBottom]
  358. Style.TextStyle = []
  359. Properties.Alignment.Horz = taRightJustify
  360. Transparent = True
  361. Height = 20
  362. Width = 110
  363. AnchorX = 269
  364. end
  365. end
  366. end
  367. object BtnSearch: TcxButton
  368. Left = 425
  369. Top = 84
  370. Width = 75
  371. Height = 25
  372. Cursor = crHandPoint
  373. Hint = #45936#51060#53552#47484' '#44160#49353#54633#45768#45796'.'
  374. Caption = #51312#54924
  375. Colors.Default = 3893744
  376. LookAndFeel.Kind = lfUltraFlat
  377. LookAndFeel.NativeStyle = False
  378. TabOrder = 1
  379. Font.Charset = DEFAULT_CHARSET
  380. Font.Color = clWindowText
  381. Font.Height = -13
  382. Font.Name = #47569#51008' '#44256#46357
  383. Font.Style = [fsBold]
  384. ParentFont = False
  385. OnClick = BtnSearchClick
  386. end
  387. object BtnGraph: TcxButton
  388. Left = 953
  389. Top = 84
  390. Width = 75
  391. Height = 25
  392. Cursor = crHandPoint
  393. Hint = #45936#51060#53552#47484' '#44536#47000#54532#47196' '#52636#47141#54633#45768#45796'.'
  394. Anchors = [akTop, akRight]
  395. Caption = #44536#47000#54532
  396. Colors.Default = 3893744
  397. LookAndFeel.Kind = lfUltraFlat
  398. LookAndFeel.NativeStyle = False
  399. TabOrder = 2
  400. Visible = False
  401. Font.Charset = DEFAULT_CHARSET
  402. Font.Color = clWindowText
  403. Font.Height = -13
  404. Font.Name = #47569#51008' '#44256#46357
  405. Font.Style = [fsBold]
  406. ParentFont = False
  407. OnClick = BtnGraphClick
  408. end
  409. object BtnPrint: TcxButton
  410. Left = 1034
  411. Top = 84
  412. Width = 75
  413. Height = 25
  414. Cursor = crHandPoint
  415. Hint = #45936#51060#53552#47484' '#54532#47536#53552#47196' '#52636#47141#54633#45768#45796'.'
  416. Anchors = [akTop, akRight]
  417. Caption = #51064#49604
  418. Colors.Default = 3893744
  419. LookAndFeel.Kind = lfUltraFlat
  420. LookAndFeel.NativeStyle = False
  421. TabOrder = 3
  422. Visible = False
  423. Font.Charset = DEFAULT_CHARSET
  424. Font.Color = clWindowText
  425. Font.Height = -13
  426. Font.Name = #47569#51008' '#44256#46357
  427. Font.Style = [fsBold]
  428. ParentFont = False
  429. OnClick = BtnPrintClick
  430. end
  431. object BtnExlSave: TcxButton
  432. Left = 1266
  433. Top = 84
  434. Width = 75
  435. Height = 25
  436. Cursor = crHandPoint
  437. Hint = #51312#54924' '#44208#44284' '#45936#51060#53552#47484' '#54028#51068#47196' '#51200#51109#54633#45768#45796'.'
  438. Anchors = [akTop, akRight]
  439. Caption = #51200#51109
  440. Colors.Default = 3893744
  441. LookAndFeel.Kind = lfUltraFlat
  442. LookAndFeel.NativeStyle = False
  443. TabOrder = 4
  444. Font.Charset = DEFAULT_CHARSET
  445. Font.Color = clWindowText
  446. Font.Height = -13
  447. Font.Name = #47569#51008' '#44256#46357
  448. Font.Style = [fsBold]
  449. ParentFont = False
  450. OnClick = BtnExlSaveClick
  451. end
  452. object PgList: TcxPageControl
  453. Left = 11
  454. Top = 125
  455. Width = 1331
  456. Height = 628
  457. Anchors = [akLeft, akTop, akRight, akBottom]
  458. Color = clWhite
  459. Focusable = False
  460. ParentBackground = False
  461. ParentColor = False
  462. ParentShowHint = False
  463. ShowHint = False
  464. TabOrder = 5
  465. Properties.ActivePage = TsListDay
  466. Properties.HotTrack = True
  467. Properties.OwnerDraw = True
  468. Properties.Style = 9
  469. ClientRectBottom = 628
  470. ClientRectRight = 1331
  471. ClientRectTop = 24
  472. object TsListDay: TcxTabSheet
  473. Caption = #49884#44036#45824#48324' '#53685#44228' '
  474. ImageIndex = 0
  475. ExplicitTop = 0
  476. ExplicitWidth = 0
  477. ExplicitHeight = 0
  478. object PnlDayGraph: TPanel
  479. Left = 0
  480. Top = 284
  481. Width = 1331
  482. Height = 320
  483. Align = alBottom
  484. BevelInner = bvLowered
  485. BevelOuter = bvNone
  486. TabOrder = 0
  487. end
  488. object SplDay: TcxSplitter
  489. Left = 0
  490. Top = 278
  491. Width = 6
  492. Height = 6
  493. HotZoneClassName = 'TcxSimpleStyle'
  494. AlignSplitter = salBottom
  495. ResizeUpdate = True
  496. Control = PnlDayGraph
  497. Color = 3893744
  498. ParentColor = False
  499. end
  500. object CxDay: TcxGrid
  501. Left = 0
  502. Top = 0
  503. Width = 1331
  504. Height = 278
  505. Align = alClient
  506. TabOrder = 2
  507. LookAndFeel.Kind = lfUltraFlat
  508. LookAndFeel.NativeStyle = False
  509. object TvDay: TcxGridDBBandedTableView
  510. DataController.Summary.DefaultGroupSummaryItems = <>
  511. DataController.Summary.FooterSummaryItems = <>
  512. DataController.Summary.SummaryGroups = <>
  513. DataController.Summary.Options = [soNullIgnore]
  514. FilterRow.InfoText = #44160#49353#50612' '#51077#47141
  515. OptionsBehavior.CellHints = True
  516. OptionsCustomize.ColumnFiltering = False
  517. OptionsCustomize.ColumnHidingOnGrouping = False
  518. OptionsCustomize.ColumnMoving = False
  519. OptionsCustomize.ColumnSorting = False
  520. OptionsCustomize.BandMoving = False
  521. OptionsCustomize.ColumnVertSizing = False
  522. OptionsData.CancelOnExit = False
  523. OptionsData.Deleting = False
  524. OptionsData.DeletingConfirmation = False
  525. OptionsData.Editing = False
  526. OptionsData.Inserting = False
  527. OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
  528. OptionsView.GroupByBox = False
  529. OptionsView.GroupFooters = gfVisibleWhenExpanded
  530. OptionsView.FixedBandSeparatorColor = 10849679
  531. OptionsView.FixedBandSeparatorWidth = 0
  532. Bands = <
  533. item
  534. Caption = #44396#48516
  535. FixedKind = fkLeft
  536. Width = 334
  537. end
  538. item
  539. Caption = #49884#44036#45824#48324' '#53685#44228'(km/h)'
  540. end>
  541. object vDayColumnNo: TcxGridDBBandedColumn
  542. Caption = #44036#49440#46020#47196#47749
  543. DataBinding.FieldName = 'ARTERYNAME'
  544. PropertiesClassName = 'TcxTextEditProperties'
  545. Properties.Alignment.Horz = taLeftJustify
  546. Properties.Alignment.Vert = taVCenter
  547. BestFitMaxWidth = 55
  548. HeaderAlignmentHorz = taCenter
  549. HeaderAlignmentVert = vaCenter
  550. Options.CellMerging = True
  551. Width = 175
  552. Position.BandIndex = 0
  553. Position.ColIndex = 0
  554. Position.RowIndex = 0
  555. end
  556. object vDayColumnTot: TcxGridDBBandedColumn
  557. Caption = #48169#54693
  558. DataBinding.FieldName = 'DIRECTIONNAME'
  559. PropertiesClassName = 'TcxTextEditProperties'
  560. Properties.Alignment.Horz = taCenter
  561. Properties.Alignment.Vert = taVCenter
  562. BestFitMaxWidth = 70
  563. HeaderAlignmentHorz = taCenter
  564. HeaderAlignmentVert = vaCenter
  565. Width = 70
  566. Position.BandIndex = 0
  567. Position.ColIndex = 1
  568. Position.RowIndex = 0
  569. end
  570. object vDayColumnNm: TcxGridDBBandedColumn
  571. Caption = #44600#51060'(m)'
  572. DataBinding.FieldName = 'ARTERYLENGHT'
  573. PropertiesClassName = 'TcxSpinEditProperties'
  574. Properties.Alignment.Horz = taRightJustify
  575. Properties.Alignment.Vert = taVCenter
  576. Properties.DisplayFormat = '#,##0'
  577. BestFitMaxWidth = 195
  578. HeaderAlignmentHorz = taCenter
  579. HeaderAlignmentVert = vaCenter
  580. Width = 67
  581. Position.BandIndex = 0
  582. Position.ColIndex = 2
  583. Position.RowIndex = 0
  584. end
  585. object vDayColumnAvg: TcxGridDBBandedColumn
  586. Caption = #54217#44512
  587. DataBinding.FieldName = 'ARTERYSPD'
  588. PropertiesClassName = 'TcxSpinEditProperties'
  589. Properties.Alignment.Horz = taRightJustify
  590. Properties.Alignment.Vert = taVCenter
  591. OnCustomDrawCell = vDayColumnCustomDrawCell
  592. BestFitMaxWidth = 50
  593. HeaderAlignmentHorz = taCenter
  594. HeaderAlignmentVert = vaCenter
  595. Width = 62
  596. Position.BandIndex = 0
  597. Position.ColIndex = 4
  598. Position.RowIndex = 0
  599. end
  600. object vDayColumn1: TcxGridDBBandedColumn
  601. Caption = '00'
  602. DataBinding.FieldName = 'C00'
  603. PropertiesClassName = 'TcxSpinEditProperties'
  604. Properties.Alignment.Horz = taRightJustify
  605. Properties.Alignment.Vert = taVCenter
  606. Properties.DisplayFormat = '##,##0'
  607. OnCustomDrawCell = vDayColumnCustomDrawCell
  608. BestFitMaxWidth = 50
  609. HeaderAlignmentHorz = taCenter
  610. HeaderAlignmentVert = vaCenter
  611. Width = 50
  612. Position.BandIndex = 1
  613. Position.ColIndex = 0
  614. Position.RowIndex = 0
  615. end
  616. object cxGridDBBandedColumn32: TcxGridDBBandedColumn
  617. Caption = '01'
  618. DataBinding.FieldName = 'C01'
  619. PropertiesClassName = 'TcxSpinEditProperties'
  620. Properties.Alignment.Horz = taRightJustify
  621. Properties.Alignment.Vert = taVCenter
  622. Properties.DisplayFormat = '##,##0'
  623. OnCustomDrawCell = vDayColumnCustomDrawCell
  624. BestFitMaxWidth = 50
  625. HeaderAlignmentHorz = taCenter
  626. HeaderAlignmentVert = vaCenter
  627. Width = 50
  628. Position.BandIndex = 1
  629. Position.ColIndex = 1
  630. Position.RowIndex = 0
  631. end
  632. object cxGridDBBandedColumn33: TcxGridDBBandedColumn
  633. Caption = '02'
  634. DataBinding.FieldName = 'C02'
  635. PropertiesClassName = 'TcxSpinEditProperties'
  636. Properties.Alignment.Horz = taRightJustify
  637. Properties.Alignment.Vert = taVCenter
  638. Properties.DisplayFormat = '##,##0'
  639. OnCustomDrawCell = vDayColumnCustomDrawCell
  640. BestFitMaxWidth = 50
  641. HeaderAlignmentHorz = taCenter
  642. HeaderAlignmentVert = vaCenter
  643. Width = 50
  644. Position.BandIndex = 1
  645. Position.ColIndex = 2
  646. Position.RowIndex = 0
  647. end
  648. object cxGridDBBandedColumn34: TcxGridDBBandedColumn
  649. Caption = '03'
  650. DataBinding.FieldName = 'C03'
  651. PropertiesClassName = 'TcxSpinEditProperties'
  652. Properties.Alignment.Horz = taRightJustify
  653. Properties.Alignment.Vert = taVCenter
  654. Properties.DisplayFormat = '##,##0'
  655. OnCustomDrawCell = vDayColumnCustomDrawCell
  656. BestFitMaxWidth = 50
  657. HeaderAlignmentHorz = taCenter
  658. HeaderAlignmentVert = vaCenter
  659. Width = 50
  660. Position.BandIndex = 1
  661. Position.ColIndex = 3
  662. Position.RowIndex = 0
  663. end
  664. object cxGridDBBandedColumn35: TcxGridDBBandedColumn
  665. Caption = '04'
  666. DataBinding.FieldName = 'C04'
  667. PropertiesClassName = 'TcxSpinEditProperties'
  668. Properties.Alignment.Horz = taRightJustify
  669. Properties.Alignment.Vert = taVCenter
  670. Properties.DisplayFormat = '##,##0'
  671. OnCustomDrawCell = vDayColumnCustomDrawCell
  672. BestFitMaxWidth = 50
  673. HeaderAlignmentHorz = taCenter
  674. HeaderAlignmentVert = vaCenter
  675. Width = 50
  676. Position.BandIndex = 1
  677. Position.ColIndex = 4
  678. Position.RowIndex = 0
  679. end
  680. object cxGridDBBandedColumn36: TcxGridDBBandedColumn
  681. Caption = '05'
  682. DataBinding.FieldName = 'C05'
  683. PropertiesClassName = 'TcxSpinEditProperties'
  684. Properties.Alignment.Horz = taRightJustify
  685. Properties.Alignment.Vert = taVCenter
  686. Properties.DisplayFormat = '##,##0'
  687. OnCustomDrawCell = vDayColumnCustomDrawCell
  688. BestFitMaxWidth = 50
  689. HeaderAlignmentHorz = taCenter
  690. HeaderAlignmentVert = vaCenter
  691. Width = 50
  692. Position.BandIndex = 1
  693. Position.ColIndex = 5
  694. Position.RowIndex = 0
  695. end
  696. object cxGridDBBandedColumn37: TcxGridDBBandedColumn
  697. Caption = '06'
  698. DataBinding.FieldName = 'C06'
  699. PropertiesClassName = 'TcxSpinEditProperties'
  700. Properties.Alignment.Horz = taRightJustify
  701. Properties.Alignment.Vert = taVCenter
  702. Properties.DisplayFormat = '##,##0'
  703. OnCustomDrawCell = vDayColumnCustomDrawCell
  704. BestFitMaxWidth = 50
  705. HeaderAlignmentHorz = taCenter
  706. HeaderAlignmentVert = vaCenter
  707. Width = 50
  708. Position.BandIndex = 1
  709. Position.ColIndex = 6
  710. Position.RowIndex = 0
  711. end
  712. object cxGridDBBandedColumn38: TcxGridDBBandedColumn
  713. Caption = '07'
  714. DataBinding.FieldName = 'C07'
  715. PropertiesClassName = 'TcxSpinEditProperties'
  716. Properties.Alignment.Horz = taRightJustify
  717. Properties.Alignment.Vert = taVCenter
  718. Properties.DisplayFormat = '##,##0'
  719. OnCustomDrawCell = vDayColumnCustomDrawCell
  720. BestFitMaxWidth = 50
  721. HeaderAlignmentHorz = taCenter
  722. HeaderAlignmentVert = vaCenter
  723. Width = 50
  724. Position.BandIndex = 1
  725. Position.ColIndex = 7
  726. Position.RowIndex = 0
  727. end
  728. object cxGridDBBandedColumn39: TcxGridDBBandedColumn
  729. Caption = '08'
  730. DataBinding.FieldName = 'C08'
  731. PropertiesClassName = 'TcxSpinEditProperties'
  732. Properties.Alignment.Horz = taRightJustify
  733. Properties.Alignment.Vert = taVCenter
  734. Properties.DisplayFormat = '##,##0'
  735. OnCustomDrawCell = vDayColumnCustomDrawCell
  736. BestFitMaxWidth = 50
  737. HeaderAlignmentHorz = taCenter
  738. HeaderAlignmentVert = vaCenter
  739. Width = 50
  740. Position.BandIndex = 1
  741. Position.ColIndex = 8
  742. Position.RowIndex = 0
  743. end
  744. object cxGridDBBandedColumn40: TcxGridDBBandedColumn
  745. Caption = '09'
  746. DataBinding.FieldName = 'C09'
  747. PropertiesClassName = 'TcxSpinEditProperties'
  748. Properties.Alignment.Horz = taRightJustify
  749. Properties.Alignment.Vert = taVCenter
  750. Properties.DisplayFormat = '##,##0'
  751. OnCustomDrawCell = vDayColumnCustomDrawCell
  752. BestFitMaxWidth = 50
  753. HeaderAlignmentHorz = taCenter
  754. HeaderAlignmentVert = vaCenter
  755. Width = 50
  756. Position.BandIndex = 1
  757. Position.ColIndex = 9
  758. Position.RowIndex = 0
  759. end
  760. object cxGridDBBandedColumn41: TcxGridDBBandedColumn
  761. Caption = '10'
  762. DataBinding.FieldName = 'C10'
  763. PropertiesClassName = 'TcxSpinEditProperties'
  764. Properties.Alignment.Horz = taRightJustify
  765. Properties.Alignment.Vert = taVCenter
  766. Properties.DisplayFormat = '##,##0'
  767. OnCustomDrawCell = vDayColumnCustomDrawCell
  768. BestFitMaxWidth = 50
  769. HeaderAlignmentHorz = taCenter
  770. HeaderAlignmentVert = vaCenter
  771. Width = 50
  772. Position.BandIndex = 1
  773. Position.ColIndex = 10
  774. Position.RowIndex = 0
  775. end
  776. object cxGridDBBandedColumn42: TcxGridDBBandedColumn
  777. Caption = '11'
  778. DataBinding.FieldName = 'C11'
  779. PropertiesClassName = 'TcxSpinEditProperties'
  780. Properties.Alignment.Horz = taRightJustify
  781. Properties.Alignment.Vert = taVCenter
  782. Properties.DisplayFormat = '##,##0'
  783. OnCustomDrawCell = vDayColumnCustomDrawCell
  784. BestFitMaxWidth = 50
  785. HeaderAlignmentHorz = taCenter
  786. HeaderAlignmentVert = vaCenter
  787. Width = 50
  788. Position.BandIndex = 1
  789. Position.ColIndex = 11
  790. Position.RowIndex = 0
  791. end
  792. object cxGridDBBandedColumn43: TcxGridDBBandedColumn
  793. Caption = '12'
  794. DataBinding.FieldName = 'C12'
  795. PropertiesClassName = 'TcxSpinEditProperties'
  796. Properties.Alignment.Horz = taRightJustify
  797. Properties.Alignment.Vert = taVCenter
  798. Properties.DisplayFormat = '##,##0'
  799. OnCustomDrawCell = vDayColumnCustomDrawCell
  800. BestFitMaxWidth = 50
  801. HeaderAlignmentHorz = taCenter
  802. HeaderAlignmentVert = vaCenter
  803. Width = 50
  804. Position.BandIndex = 1
  805. Position.ColIndex = 12
  806. Position.RowIndex = 0
  807. end
  808. object cxGridDBBandedColumn44: TcxGridDBBandedColumn
  809. Caption = '13'
  810. DataBinding.FieldName = 'C13'
  811. PropertiesClassName = 'TcxSpinEditProperties'
  812. Properties.Alignment.Horz = taRightJustify
  813. Properties.Alignment.Vert = taVCenter
  814. Properties.DisplayFormat = '##,##0'
  815. OnCustomDrawCell = vDayColumnCustomDrawCell
  816. BestFitMaxWidth = 50
  817. HeaderAlignmentHorz = taCenter
  818. HeaderAlignmentVert = vaCenter
  819. Width = 50
  820. Position.BandIndex = 1
  821. Position.ColIndex = 13
  822. Position.RowIndex = 0
  823. end
  824. object cxGridDBBandedColumn45: TcxGridDBBandedColumn
  825. Caption = '14'
  826. DataBinding.FieldName = 'C14'
  827. PropertiesClassName = 'TcxSpinEditProperties'
  828. Properties.Alignment.Horz = taRightJustify
  829. Properties.Alignment.Vert = taVCenter
  830. Properties.DisplayFormat = '##,##0'
  831. OnCustomDrawCell = vDayColumnCustomDrawCell
  832. BestFitMaxWidth = 50
  833. HeaderAlignmentHorz = taCenter
  834. HeaderAlignmentVert = vaCenter
  835. Width = 50
  836. Position.BandIndex = 1
  837. Position.ColIndex = 14
  838. Position.RowIndex = 0
  839. end
  840. object cxGridDBBandedColumn46: TcxGridDBBandedColumn
  841. Caption = '15'
  842. DataBinding.FieldName = 'C15'
  843. PropertiesClassName = 'TcxSpinEditProperties'
  844. Properties.Alignment.Horz = taRightJustify
  845. Properties.Alignment.Vert = taVCenter
  846. Properties.DisplayFormat = '##,##0'
  847. OnCustomDrawCell = vDayColumnCustomDrawCell
  848. BestFitMaxWidth = 50
  849. HeaderAlignmentHorz = taCenter
  850. HeaderAlignmentVert = vaCenter
  851. Width = 50
  852. Position.BandIndex = 1
  853. Position.ColIndex = 15
  854. Position.RowIndex = 0
  855. end
  856. object cxGridDBBandedColumn47: TcxGridDBBandedColumn
  857. Caption = '16'
  858. DataBinding.FieldName = 'C16'
  859. PropertiesClassName = 'TcxSpinEditProperties'
  860. Properties.Alignment.Horz = taRightJustify
  861. Properties.Alignment.Vert = taVCenter
  862. Properties.DisplayFormat = '##,##0'
  863. OnCustomDrawCell = vDayColumnCustomDrawCell
  864. BestFitMaxWidth = 50
  865. HeaderAlignmentHorz = taCenter
  866. HeaderAlignmentVert = vaCenter
  867. Width = 50
  868. Position.BandIndex = 1
  869. Position.ColIndex = 16
  870. Position.RowIndex = 0
  871. end
  872. object cxGridDBBandedColumn48: TcxGridDBBandedColumn
  873. Caption = '17'
  874. DataBinding.FieldName = 'C17'
  875. PropertiesClassName = 'TcxSpinEditProperties'
  876. Properties.Alignment.Horz = taRightJustify
  877. Properties.Alignment.Vert = taVCenter
  878. Properties.DisplayFormat = '##,##0'
  879. OnCustomDrawCell = vDayColumnCustomDrawCell
  880. BestFitMaxWidth = 50
  881. HeaderAlignmentHorz = taCenter
  882. HeaderAlignmentVert = vaCenter
  883. Width = 50
  884. Position.BandIndex = 1
  885. Position.ColIndex = 17
  886. Position.RowIndex = 0
  887. end
  888. object cxGridDBBandedColumn49: TcxGridDBBandedColumn
  889. Caption = '18'
  890. DataBinding.FieldName = 'C18'
  891. PropertiesClassName = 'TcxSpinEditProperties'
  892. Properties.Alignment.Horz = taRightJustify
  893. Properties.Alignment.Vert = taVCenter
  894. Properties.DisplayFormat = '##,##0'
  895. OnCustomDrawCell = vDayColumnCustomDrawCell
  896. BestFitMaxWidth = 50
  897. HeaderAlignmentHorz = taCenter
  898. HeaderAlignmentVert = vaCenter
  899. Width = 50
  900. Position.BandIndex = 1
  901. Position.ColIndex = 18
  902. Position.RowIndex = 0
  903. end
  904. object cxGridDBBandedColumn50: TcxGridDBBandedColumn
  905. Caption = '19'
  906. DataBinding.FieldName = 'C19'
  907. PropertiesClassName = 'TcxSpinEditProperties'
  908. Properties.Alignment.Horz = taRightJustify
  909. Properties.Alignment.Vert = taVCenter
  910. Properties.DisplayFormat = '##,##0'
  911. OnCustomDrawCell = vDayColumnCustomDrawCell
  912. BestFitMaxWidth = 50
  913. HeaderAlignmentHorz = taCenter
  914. HeaderAlignmentVert = vaCenter
  915. Width = 50
  916. Position.BandIndex = 1
  917. Position.ColIndex = 19
  918. Position.RowIndex = 0
  919. end
  920. object cxGridDBBandedColumn51: TcxGridDBBandedColumn
  921. Caption = '20'
  922. DataBinding.FieldName = 'C20'
  923. PropertiesClassName = 'TcxSpinEditProperties'
  924. Properties.Alignment.Horz = taRightJustify
  925. Properties.Alignment.Vert = taVCenter
  926. Properties.DisplayFormat = '##,##0'
  927. OnCustomDrawCell = vDayColumnCustomDrawCell
  928. BestFitMaxWidth = 50
  929. HeaderAlignmentHorz = taCenter
  930. HeaderAlignmentVert = vaCenter
  931. Width = 50
  932. Position.BandIndex = 1
  933. Position.ColIndex = 20
  934. Position.RowIndex = 0
  935. end
  936. object cxGridDBBandedColumn52: TcxGridDBBandedColumn
  937. Caption = '21'
  938. DataBinding.FieldName = 'C21'
  939. PropertiesClassName = 'TcxSpinEditProperties'
  940. Properties.Alignment.Horz = taRightJustify
  941. Properties.Alignment.Vert = taVCenter
  942. Properties.DisplayFormat = '##,##0'
  943. OnCustomDrawCell = vDayColumnCustomDrawCell
  944. BestFitMaxWidth = 50
  945. HeaderAlignmentHorz = taCenter
  946. HeaderAlignmentVert = vaCenter
  947. Width = 50
  948. Position.BandIndex = 1
  949. Position.ColIndex = 21
  950. Position.RowIndex = 0
  951. end
  952. object cxGridDBBandedColumn53: TcxGridDBBandedColumn
  953. Caption = '22'
  954. DataBinding.FieldName = 'C22'
  955. PropertiesClassName = 'TcxSpinEditProperties'
  956. Properties.Alignment.Horz = taRightJustify
  957. Properties.Alignment.Vert = taVCenter
  958. Properties.DisplayFormat = '##,##0'
  959. OnCustomDrawCell = vDayColumnCustomDrawCell
  960. BestFitMaxWidth = 50
  961. HeaderAlignmentHorz = taCenter
  962. HeaderAlignmentVert = vaCenter
  963. Width = 50
  964. Position.BandIndex = 1
  965. Position.ColIndex = 22
  966. Position.RowIndex = 0
  967. end
  968. object cxGridDBBandedColumn54: TcxGridDBBandedColumn
  969. Caption = '23'
  970. DataBinding.FieldName = 'C23'
  971. PropertiesClassName = 'TcxSpinEditProperties'
  972. Properties.Alignment.Horz = taRightJustify
  973. Properties.Alignment.Vert = taVCenter
  974. Properties.DisplayFormat = '##,##0'
  975. OnCustomDrawCell = vDayColumnCustomDrawCell
  976. BestFitMaxWidth = 50
  977. HeaderAlignmentHorz = taCenter
  978. HeaderAlignmentVert = vaCenter
  979. Width = 50
  980. Position.BandIndex = 1
  981. Position.ColIndex = 23
  982. Position.RowIndex = 0
  983. end
  984. object TvDayColumn1: TcxGridDBBandedColumn
  985. Caption = #49688#51665#50896
  986. DataBinding.FieldName = 'TRFTYPE'
  987. Visible = False
  988. HeaderAlignmentHorz = taCenter
  989. HeaderAlignmentVert = vaCenter
  990. VisibleForCustomization = False
  991. Width = 87
  992. Position.BandIndex = 0
  993. Position.ColIndex = 3
  994. Position.RowIndex = 0
  995. end
  996. end
  997. object GlDay: TcxGridLevel
  998. GridView = TvDay
  999. end
  1000. end
  1001. end
  1002. object TsListMon: TcxTabSheet
  1003. Caption = #51068#48324' '#53685#44228' '
  1004. ImageIndex = 1
  1005. ExplicitTop = 0
  1006. ExplicitWidth = 0
  1007. ExplicitHeight = 0
  1008. object PnlMonGraph: TPanel
  1009. Left = 0
  1010. Top = 284
  1011. Width = 1331
  1012. Height = 320
  1013. Align = alBottom
  1014. BevelInner = bvLowered
  1015. BevelOuter = bvNone
  1016. TabOrder = 0
  1017. end
  1018. object SplMon: TcxSplitter
  1019. Left = 0
  1020. Top = 278
  1021. Width = 6
  1022. Height = 6
  1023. HotZoneClassName = 'TcxSimpleStyle'
  1024. AlignSplitter = salBottom
  1025. ResizeUpdate = True
  1026. Control = PnlMonGraph
  1027. Color = 3893744
  1028. ParentColor = False
  1029. end
  1030. object CxMon: TcxGrid
  1031. Left = 0
  1032. Top = 0
  1033. Width = 1331
  1034. Height = 278
  1035. Align = alClient
  1036. TabOrder = 2
  1037. LookAndFeel.Kind = lfUltraFlat
  1038. LookAndFeel.NativeStyle = False
  1039. object TvMon: TcxGridDBBandedTableView
  1040. DataController.Summary.DefaultGroupSummaryItems = <>
  1041. DataController.Summary.FooterSummaryItems = <>
  1042. DataController.Summary.SummaryGroups = <>
  1043. DataController.Summary.Options = [soNullIgnore]
  1044. FilterRow.InfoText = #44160#49353#50612' '#51077#47141
  1045. OptionsBehavior.CellHints = True
  1046. OptionsCustomize.ColumnFiltering = False
  1047. OptionsCustomize.ColumnHidingOnGrouping = False
  1048. OptionsCustomize.ColumnMoving = False
  1049. OptionsCustomize.ColumnSorting = False
  1050. OptionsCustomize.BandMoving = False
  1051. OptionsCustomize.ColumnVertSizing = False
  1052. OptionsData.CancelOnExit = False
  1053. OptionsData.Deleting = False
  1054. OptionsData.DeletingConfirmation = False
  1055. OptionsData.Editing = False
  1056. OptionsData.Inserting = False
  1057. OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
  1058. OptionsView.GroupByBox = False
  1059. OptionsView.GroupFooters = gfVisibleWhenExpanded
  1060. OptionsView.FixedBandSeparatorColor = 10849679
  1061. OptionsView.FixedBandSeparatorWidth = 0
  1062. Bands = <
  1063. item
  1064. Caption = #44396#48516
  1065. FixedKind = fkLeft
  1066. Width = 333
  1067. end
  1068. item
  1069. Caption = #51068#48324' '#53685#44228'(km/h)'
  1070. end>
  1071. object vMonColumnNo: TcxGridDBBandedColumn
  1072. Caption = #44036#49440#46020#47196#47749
  1073. DataBinding.FieldName = 'ARTERYNAME'
  1074. PropertiesClassName = 'TcxTextEditProperties'
  1075. Properties.Alignment.Horz = taLeftJustify
  1076. Properties.Alignment.Vert = taVCenter
  1077. BestFitMaxWidth = 55
  1078. HeaderAlignmentHorz = taCenter
  1079. HeaderAlignmentVert = vaCenter
  1080. Options.CellMerging = True
  1081. Width = 175
  1082. Position.BandIndex = 0
  1083. Position.ColIndex = 0
  1084. Position.RowIndex = 0
  1085. end
  1086. object vMonColumnTot: TcxGridDBBandedColumn
  1087. Caption = #48169#54693
  1088. DataBinding.FieldName = 'DIRECTIONNAME'
  1089. PropertiesClassName = 'TcxTextEditProperties'
  1090. Properties.Alignment.Horz = taCenter
  1091. Properties.Alignment.Vert = taVCenter
  1092. BestFitMaxWidth = 70
  1093. HeaderAlignmentHorz = taCenter
  1094. HeaderAlignmentVert = vaCenter
  1095. Width = 79
  1096. Position.BandIndex = 0
  1097. Position.ColIndex = 1
  1098. Position.RowIndex = 0
  1099. end
  1100. object vMonColumnNm: TcxGridDBBandedColumn
  1101. Caption = #44600#51060'(m)'
  1102. DataBinding.FieldName = 'ARTERYLENGHT'
  1103. PropertiesClassName = 'TcxSpinEditProperties'
  1104. Properties.Alignment.Horz = taRightJustify
  1105. Properties.Alignment.Vert = taVCenter
  1106. Properties.DisplayFormat = '#,##0'
  1107. BestFitMaxWidth = 195
  1108. HeaderAlignmentHorz = taCenter
  1109. HeaderAlignmentVert = vaCenter
  1110. Width = 71
  1111. Position.BandIndex = 0
  1112. Position.ColIndex = 2
  1113. Position.RowIndex = 0
  1114. end
  1115. object vMonColumnAvg: TcxGridDBBandedColumn
  1116. Caption = #54217#44512
  1117. DataBinding.FieldName = 'ARTERYSPD'
  1118. PropertiesClassName = 'TcxSpinEditProperties'
  1119. Properties.Alignment.Horz = taRightJustify
  1120. Properties.Alignment.Vert = taVCenter
  1121. OnCustomDrawCell = vDayColumnCustomDrawCell
  1122. BestFitMaxWidth = 50
  1123. HeaderAlignmentHorz = taCenter
  1124. HeaderAlignmentVert = vaCenter
  1125. Width = 78
  1126. Position.BandIndex = 0
  1127. Position.ColIndex = 4
  1128. Position.RowIndex = 0
  1129. end
  1130. object vMonColumn1: TcxGridDBBandedColumn
  1131. Caption = '1'
  1132. DataBinding.FieldName = 'C01'
  1133. PropertiesClassName = 'TcxSpinEditProperties'
  1134. Properties.Alignment.Horz = taRightJustify
  1135. Properties.Alignment.Vert = taVCenter
  1136. Properties.DisplayFormat = '##,##0'
  1137. OnCustomDrawCell = vDayColumnCustomDrawCell
  1138. BestFitMaxWidth = 50
  1139. HeaderAlignmentHorz = taCenter
  1140. HeaderAlignmentVert = vaCenter
  1141. Width = 50
  1142. Position.BandIndex = 1
  1143. Position.ColIndex = 0
  1144. Position.RowIndex = 0
  1145. end
  1146. object vMonColumn2: TcxGridDBBandedColumn
  1147. Caption = '2'
  1148. DataBinding.FieldName = 'C02'
  1149. PropertiesClassName = 'TcxSpinEditProperties'
  1150. Properties.Alignment.Horz = taRightJustify
  1151. Properties.Alignment.Vert = taVCenter
  1152. Properties.DisplayFormat = '##,##0'
  1153. OnCustomDrawCell = vDayColumnCustomDrawCell
  1154. BestFitMaxWidth = 50
  1155. HeaderAlignmentHorz = taCenter
  1156. HeaderAlignmentVert = vaCenter
  1157. Width = 50
  1158. Position.BandIndex = 1
  1159. Position.ColIndex = 1
  1160. Position.RowIndex = 0
  1161. end
  1162. object vMonColumn3: TcxGridDBBandedColumn
  1163. Caption = '3'
  1164. DataBinding.FieldName = 'C03'
  1165. PropertiesClassName = 'TcxSpinEditProperties'
  1166. Properties.Alignment.Horz = taRightJustify
  1167. Properties.Alignment.Vert = taVCenter
  1168. Properties.DisplayFormat = '##,##0'
  1169. OnCustomDrawCell = vDayColumnCustomDrawCell
  1170. BestFitMaxWidth = 50
  1171. HeaderAlignmentHorz = taCenter
  1172. HeaderAlignmentVert = vaCenter
  1173. Width = 50
  1174. Position.BandIndex = 1
  1175. Position.ColIndex = 2
  1176. Position.RowIndex = 0
  1177. end
  1178. object vMonColumn4: TcxGridDBBandedColumn
  1179. Caption = '4'
  1180. DataBinding.FieldName = 'C04'
  1181. PropertiesClassName = 'TcxSpinEditProperties'
  1182. Properties.Alignment.Horz = taRightJustify
  1183. Properties.Alignment.Vert = taVCenter
  1184. Properties.DisplayFormat = '##,##0'
  1185. OnCustomDrawCell = vDayColumnCustomDrawCell
  1186. BestFitMaxWidth = 50
  1187. HeaderAlignmentHorz = taCenter
  1188. HeaderAlignmentVert = vaCenter
  1189. Width = 50
  1190. Position.BandIndex = 1
  1191. Position.ColIndex = 3
  1192. Position.RowIndex = 0
  1193. end
  1194. object vMonColumn5: TcxGridDBBandedColumn
  1195. Caption = '5'
  1196. DataBinding.FieldName = 'C05'
  1197. PropertiesClassName = 'TcxSpinEditProperties'
  1198. Properties.Alignment.Horz = taRightJustify
  1199. Properties.Alignment.Vert = taVCenter
  1200. Properties.DisplayFormat = '##,##0'
  1201. OnCustomDrawCell = vDayColumnCustomDrawCell
  1202. BestFitMaxWidth = 50
  1203. HeaderAlignmentHorz = taCenter
  1204. HeaderAlignmentVert = vaCenter
  1205. Width = 50
  1206. Position.BandIndex = 1
  1207. Position.ColIndex = 4
  1208. Position.RowIndex = 0
  1209. end
  1210. object vMonColumn6: TcxGridDBBandedColumn
  1211. Caption = '6'
  1212. DataBinding.FieldName = 'C06'
  1213. PropertiesClassName = 'TcxSpinEditProperties'
  1214. Properties.Alignment.Horz = taRightJustify
  1215. Properties.Alignment.Vert = taVCenter
  1216. Properties.DisplayFormat = '##,##0'
  1217. OnCustomDrawCell = vDayColumnCustomDrawCell
  1218. BestFitMaxWidth = 50
  1219. HeaderAlignmentHorz = taCenter
  1220. HeaderAlignmentVert = vaCenter
  1221. Width = 50
  1222. Position.BandIndex = 1
  1223. Position.ColIndex = 5
  1224. Position.RowIndex = 0
  1225. end
  1226. object vMonColumn7: TcxGridDBBandedColumn
  1227. Caption = '7'
  1228. DataBinding.FieldName = 'C07'
  1229. PropertiesClassName = 'TcxSpinEditProperties'
  1230. Properties.Alignment.Horz = taRightJustify
  1231. Properties.Alignment.Vert = taVCenter
  1232. Properties.DisplayFormat = '##,##0'
  1233. OnCustomDrawCell = vDayColumnCustomDrawCell
  1234. BestFitMaxWidth = 50
  1235. HeaderAlignmentHorz = taCenter
  1236. HeaderAlignmentVert = vaCenter
  1237. Width = 50
  1238. Position.BandIndex = 1
  1239. Position.ColIndex = 6
  1240. Position.RowIndex = 0
  1241. end
  1242. object vMonColumn8: TcxGridDBBandedColumn
  1243. Caption = '8'
  1244. DataBinding.FieldName = 'C08'
  1245. PropertiesClassName = 'TcxSpinEditProperties'
  1246. Properties.Alignment.Horz = taRightJustify
  1247. Properties.Alignment.Vert = taVCenter
  1248. Properties.DisplayFormat = '##,##0'
  1249. OnCustomDrawCell = vDayColumnCustomDrawCell
  1250. BestFitMaxWidth = 50
  1251. HeaderAlignmentHorz = taCenter
  1252. HeaderAlignmentVert = vaCenter
  1253. Width = 50
  1254. Position.BandIndex = 1
  1255. Position.ColIndex = 7
  1256. Position.RowIndex = 0
  1257. end
  1258. object vMonColumn9: TcxGridDBBandedColumn
  1259. Caption = '9'
  1260. DataBinding.FieldName = 'C09'
  1261. PropertiesClassName = 'TcxSpinEditProperties'
  1262. Properties.Alignment.Horz = taRightJustify
  1263. Properties.Alignment.Vert = taVCenter
  1264. Properties.DisplayFormat = '##,##0'
  1265. OnCustomDrawCell = vDayColumnCustomDrawCell
  1266. BestFitMaxWidth = 50
  1267. HeaderAlignmentHorz = taCenter
  1268. HeaderAlignmentVert = vaCenter
  1269. Width = 50
  1270. Position.BandIndex = 1
  1271. Position.ColIndex = 8
  1272. Position.RowIndex = 0
  1273. end
  1274. object vMonColumn10: TcxGridDBBandedColumn
  1275. Caption = '10'
  1276. DataBinding.FieldName = 'C10'
  1277. PropertiesClassName = 'TcxSpinEditProperties'
  1278. Properties.Alignment.Horz = taRightJustify
  1279. Properties.Alignment.Vert = taVCenter
  1280. Properties.DisplayFormat = '##,##0'
  1281. OnCustomDrawCell = vDayColumnCustomDrawCell
  1282. BestFitMaxWidth = 50
  1283. HeaderAlignmentHorz = taCenter
  1284. HeaderAlignmentVert = vaCenter
  1285. Width = 50
  1286. Position.BandIndex = 1
  1287. Position.ColIndex = 9
  1288. Position.RowIndex = 0
  1289. end
  1290. object vMonColumn11: TcxGridDBBandedColumn
  1291. Caption = '11'
  1292. DataBinding.FieldName = 'C11'
  1293. PropertiesClassName = 'TcxSpinEditProperties'
  1294. Properties.Alignment.Horz = taRightJustify
  1295. Properties.Alignment.Vert = taVCenter
  1296. Properties.DisplayFormat = '##,##0'
  1297. OnCustomDrawCell = vDayColumnCustomDrawCell
  1298. BestFitMaxWidth = 50
  1299. HeaderAlignmentHorz = taCenter
  1300. HeaderAlignmentVert = vaCenter
  1301. Width = 50
  1302. Position.BandIndex = 1
  1303. Position.ColIndex = 10
  1304. Position.RowIndex = 0
  1305. end
  1306. object vMonColumn12: TcxGridDBBandedColumn
  1307. Caption = '12'
  1308. DataBinding.FieldName = 'C12'
  1309. PropertiesClassName = 'TcxSpinEditProperties'
  1310. Properties.Alignment.Horz = taRightJustify
  1311. Properties.Alignment.Vert = taVCenter
  1312. Properties.DisplayFormat = '##,##0'
  1313. OnCustomDrawCell = vDayColumnCustomDrawCell
  1314. BestFitMaxWidth = 50
  1315. HeaderAlignmentHorz = taCenter
  1316. HeaderAlignmentVert = vaCenter
  1317. Width = 50
  1318. Position.BandIndex = 1
  1319. Position.ColIndex = 11
  1320. Position.RowIndex = 0
  1321. end
  1322. object vMonColumn13: TcxGridDBBandedColumn
  1323. Caption = '13'
  1324. DataBinding.FieldName = 'C13'
  1325. PropertiesClassName = 'TcxSpinEditProperties'
  1326. Properties.Alignment.Horz = taRightJustify
  1327. Properties.Alignment.Vert = taVCenter
  1328. Properties.DisplayFormat = '##,##0'
  1329. OnCustomDrawCell = vDayColumnCustomDrawCell
  1330. BestFitMaxWidth = 50
  1331. HeaderAlignmentHorz = taCenter
  1332. HeaderAlignmentVert = vaCenter
  1333. Width = 50
  1334. Position.BandIndex = 1
  1335. Position.ColIndex = 12
  1336. Position.RowIndex = 0
  1337. end
  1338. object vMonColumn14: TcxGridDBBandedColumn
  1339. Caption = '14'
  1340. DataBinding.FieldName = 'C14'
  1341. PropertiesClassName = 'TcxSpinEditProperties'
  1342. Properties.Alignment.Horz = taRightJustify
  1343. Properties.Alignment.Vert = taVCenter
  1344. Properties.DisplayFormat = '##,##0'
  1345. OnCustomDrawCell = vDayColumnCustomDrawCell
  1346. BestFitMaxWidth = 50
  1347. HeaderAlignmentHorz = taCenter
  1348. HeaderAlignmentVert = vaCenter
  1349. Width = 50
  1350. Position.BandIndex = 1
  1351. Position.ColIndex = 13
  1352. Position.RowIndex = 0
  1353. end
  1354. object vMonColumn15: TcxGridDBBandedColumn
  1355. Caption = '15'
  1356. DataBinding.FieldName = 'C15'
  1357. PropertiesClassName = 'TcxSpinEditProperties'
  1358. Properties.Alignment.Horz = taRightJustify
  1359. Properties.Alignment.Vert = taVCenter
  1360. Properties.DisplayFormat = '##,##0'
  1361. OnCustomDrawCell = vDayColumnCustomDrawCell
  1362. BestFitMaxWidth = 50
  1363. HeaderAlignmentHorz = taCenter
  1364. HeaderAlignmentVert = vaCenter
  1365. Width = 50
  1366. Position.BandIndex = 1
  1367. Position.ColIndex = 14
  1368. Position.RowIndex = 0
  1369. end
  1370. object vMonColumn16: TcxGridDBBandedColumn
  1371. Caption = '16'
  1372. DataBinding.FieldName = 'C16'
  1373. PropertiesClassName = 'TcxSpinEditProperties'
  1374. Properties.Alignment.Horz = taRightJustify
  1375. Properties.Alignment.Vert = taVCenter
  1376. Properties.DisplayFormat = '##,##0'
  1377. OnCustomDrawCell = vDayColumnCustomDrawCell
  1378. BestFitMaxWidth = 50
  1379. HeaderAlignmentHorz = taCenter
  1380. HeaderAlignmentVert = vaCenter
  1381. Width = 50
  1382. Position.BandIndex = 1
  1383. Position.ColIndex = 15
  1384. Position.RowIndex = 0
  1385. end
  1386. object vMonColumn17: TcxGridDBBandedColumn
  1387. Caption = '17'
  1388. DataBinding.FieldName = 'C17'
  1389. PropertiesClassName = 'TcxSpinEditProperties'
  1390. Properties.Alignment.Horz = taRightJustify
  1391. Properties.Alignment.Vert = taVCenter
  1392. Properties.DisplayFormat = '##,##0'
  1393. OnCustomDrawCell = vDayColumnCustomDrawCell
  1394. BestFitMaxWidth = 50
  1395. HeaderAlignmentHorz = taCenter
  1396. HeaderAlignmentVert = vaCenter
  1397. Width = 50
  1398. Position.BandIndex = 1
  1399. Position.ColIndex = 16
  1400. Position.RowIndex = 0
  1401. end
  1402. object vMonColumn18: TcxGridDBBandedColumn
  1403. Caption = '18'
  1404. DataBinding.FieldName = 'C18'
  1405. PropertiesClassName = 'TcxSpinEditProperties'
  1406. Properties.Alignment.Horz = taRightJustify
  1407. Properties.Alignment.Vert = taVCenter
  1408. Properties.DisplayFormat = '##,##0'
  1409. OnCustomDrawCell = vDayColumnCustomDrawCell
  1410. BestFitMaxWidth = 50
  1411. HeaderAlignmentHorz = taCenter
  1412. HeaderAlignmentVert = vaCenter
  1413. Width = 50
  1414. Position.BandIndex = 1
  1415. Position.ColIndex = 17
  1416. Position.RowIndex = 0
  1417. end
  1418. object vMonColumn19: TcxGridDBBandedColumn
  1419. Caption = '19'
  1420. DataBinding.FieldName = 'C19'
  1421. PropertiesClassName = 'TcxSpinEditProperties'
  1422. Properties.Alignment.Horz = taRightJustify
  1423. Properties.Alignment.Vert = taVCenter
  1424. Properties.DisplayFormat = '##,##0'
  1425. OnCustomDrawCell = vDayColumnCustomDrawCell
  1426. BestFitMaxWidth = 50
  1427. HeaderAlignmentHorz = taCenter
  1428. HeaderAlignmentVert = vaCenter
  1429. Width = 50
  1430. Position.BandIndex = 1
  1431. Position.ColIndex = 18
  1432. Position.RowIndex = 0
  1433. end
  1434. object vMonColumn20: TcxGridDBBandedColumn
  1435. Caption = '20'
  1436. DataBinding.FieldName = 'C20'
  1437. PropertiesClassName = 'TcxSpinEditProperties'
  1438. Properties.Alignment.Horz = taRightJustify
  1439. Properties.Alignment.Vert = taVCenter
  1440. Properties.DisplayFormat = '##,##0'
  1441. OnCustomDrawCell = vDayColumnCustomDrawCell
  1442. BestFitMaxWidth = 50
  1443. HeaderAlignmentHorz = taCenter
  1444. HeaderAlignmentVert = vaCenter
  1445. Width = 50
  1446. Position.BandIndex = 1
  1447. Position.ColIndex = 19
  1448. Position.RowIndex = 0
  1449. end
  1450. object vMonColumn21: TcxGridDBBandedColumn
  1451. Caption = '21'
  1452. DataBinding.FieldName = 'C21'
  1453. PropertiesClassName = 'TcxSpinEditProperties'
  1454. Properties.Alignment.Horz = taRightJustify
  1455. Properties.Alignment.Vert = taVCenter
  1456. Properties.DisplayFormat = '##,##0'
  1457. OnCustomDrawCell = vDayColumnCustomDrawCell
  1458. BestFitMaxWidth = 50
  1459. HeaderAlignmentHorz = taCenter
  1460. HeaderAlignmentVert = vaCenter
  1461. Width = 50
  1462. Position.BandIndex = 1
  1463. Position.ColIndex = 20
  1464. Position.RowIndex = 0
  1465. end
  1466. object vMonColumn22: TcxGridDBBandedColumn
  1467. Caption = '22'
  1468. DataBinding.FieldName = 'C22'
  1469. PropertiesClassName = 'TcxSpinEditProperties'
  1470. Properties.Alignment.Horz = taRightJustify
  1471. Properties.Alignment.Vert = taVCenter
  1472. Properties.DisplayFormat = '##,##0'
  1473. OnCustomDrawCell = vDayColumnCustomDrawCell
  1474. BestFitMaxWidth = 50
  1475. HeaderAlignmentHorz = taCenter
  1476. HeaderAlignmentVert = vaCenter
  1477. Width = 50
  1478. Position.BandIndex = 1
  1479. Position.ColIndex = 21
  1480. Position.RowIndex = 0
  1481. end
  1482. object vMonColumn23: TcxGridDBBandedColumn
  1483. Caption = '23'
  1484. DataBinding.FieldName = 'C23'
  1485. PropertiesClassName = 'TcxSpinEditProperties'
  1486. Properties.Alignment.Horz = taRightJustify
  1487. Properties.Alignment.Vert = taVCenter
  1488. Properties.DisplayFormat = '##,##0'
  1489. OnCustomDrawCell = vDayColumnCustomDrawCell
  1490. BestFitMaxWidth = 50
  1491. HeaderAlignmentHorz = taCenter
  1492. HeaderAlignmentVert = vaCenter
  1493. Width = 50
  1494. Position.BandIndex = 1
  1495. Position.ColIndex = 22
  1496. Position.RowIndex = 0
  1497. end
  1498. object vMonColumn24: TcxGridDBBandedColumn
  1499. Caption = '24'
  1500. DataBinding.FieldName = 'C24'
  1501. PropertiesClassName = 'TcxSpinEditProperties'
  1502. Properties.Alignment.Horz = taRightJustify
  1503. Properties.Alignment.Vert = taVCenter
  1504. Properties.DisplayFormat = '##,##0'
  1505. OnCustomDrawCell = vDayColumnCustomDrawCell
  1506. BestFitMaxWidth = 50
  1507. HeaderAlignmentHorz = taCenter
  1508. HeaderAlignmentVert = vaCenter
  1509. Width = 50
  1510. Position.BandIndex = 1
  1511. Position.ColIndex = 23
  1512. Position.RowIndex = 0
  1513. end
  1514. object vMonColumn25: TcxGridDBBandedColumn
  1515. Caption = '25'
  1516. DataBinding.FieldName = 'C25'
  1517. PropertiesClassName = 'TcxSpinEditProperties'
  1518. Properties.Alignment.Horz = taRightJustify
  1519. Properties.Alignment.Vert = taVCenter
  1520. Properties.DisplayFormat = '##,##0'
  1521. OnCustomDrawCell = vDayColumnCustomDrawCell
  1522. BestFitMaxWidth = 50
  1523. HeaderAlignmentHorz = taCenter
  1524. HeaderAlignmentVert = vaCenter
  1525. Width = 50
  1526. Position.BandIndex = 1
  1527. Position.ColIndex = 24
  1528. Position.RowIndex = 0
  1529. end
  1530. object vMonColumn26: TcxGridDBBandedColumn
  1531. Caption = '26'
  1532. DataBinding.FieldName = 'C26'
  1533. PropertiesClassName = 'TcxSpinEditProperties'
  1534. Properties.Alignment.Horz = taRightJustify
  1535. Properties.Alignment.Vert = taVCenter
  1536. Properties.DisplayFormat = '##,##0'
  1537. OnCustomDrawCell = vDayColumnCustomDrawCell
  1538. BestFitMaxWidth = 50
  1539. HeaderAlignmentHorz = taCenter
  1540. HeaderAlignmentVert = vaCenter
  1541. Width = 50
  1542. Position.BandIndex = 1
  1543. Position.ColIndex = 25
  1544. Position.RowIndex = 0
  1545. end
  1546. object vMonColumn27: TcxGridDBBandedColumn
  1547. Caption = '27'
  1548. DataBinding.FieldName = 'C27'
  1549. PropertiesClassName = 'TcxSpinEditProperties'
  1550. Properties.Alignment.Horz = taRightJustify
  1551. Properties.Alignment.Vert = taVCenter
  1552. Properties.DisplayFormat = '##,##0'
  1553. OnCustomDrawCell = vDayColumnCustomDrawCell
  1554. BestFitMaxWidth = 50
  1555. HeaderAlignmentHorz = taCenter
  1556. HeaderAlignmentVert = vaCenter
  1557. Width = 50
  1558. Position.BandIndex = 1
  1559. Position.ColIndex = 26
  1560. Position.RowIndex = 0
  1561. end
  1562. object vMonColumn28: TcxGridDBBandedColumn
  1563. Caption = '28'
  1564. DataBinding.FieldName = 'C28'
  1565. PropertiesClassName = 'TcxSpinEditProperties'
  1566. Properties.Alignment.Horz = taRightJustify
  1567. Properties.Alignment.Vert = taVCenter
  1568. Properties.DisplayFormat = '##,##0'
  1569. OnCustomDrawCell = vDayColumnCustomDrawCell
  1570. BestFitMaxWidth = 50
  1571. HeaderAlignmentHorz = taCenter
  1572. HeaderAlignmentVert = vaCenter
  1573. Width = 50
  1574. Position.BandIndex = 1
  1575. Position.ColIndex = 27
  1576. Position.RowIndex = 0
  1577. end
  1578. object vMonColumn29: TcxGridDBBandedColumn
  1579. Caption = '29'
  1580. DataBinding.FieldName = 'C29'
  1581. PropertiesClassName = 'TcxSpinEditProperties'
  1582. Properties.Alignment.Horz = taRightJustify
  1583. Properties.Alignment.Vert = taVCenter
  1584. Properties.DisplayFormat = '##,##0'
  1585. OnCustomDrawCell = vDayColumnCustomDrawCell
  1586. BestFitMaxWidth = 50
  1587. HeaderAlignmentHorz = taCenter
  1588. HeaderAlignmentVert = vaCenter
  1589. Width = 50
  1590. Position.BandIndex = 1
  1591. Position.ColIndex = 28
  1592. Position.RowIndex = 0
  1593. end
  1594. object vMonColumn30: TcxGridDBBandedColumn
  1595. Caption = '30'
  1596. DataBinding.FieldName = 'C30'
  1597. PropertiesClassName = 'TcxSpinEditProperties'
  1598. Properties.Alignment.Horz = taRightJustify
  1599. Properties.Alignment.Vert = taVCenter
  1600. Properties.DisplayFormat = '##,##0'
  1601. OnCustomDrawCell = vDayColumnCustomDrawCell
  1602. BestFitMaxWidth = 50
  1603. HeaderAlignmentHorz = taCenter
  1604. HeaderAlignmentVert = vaCenter
  1605. Width = 50
  1606. Position.BandIndex = 1
  1607. Position.ColIndex = 29
  1608. Position.RowIndex = 0
  1609. end
  1610. object vMonColumn31: TcxGridDBBandedColumn
  1611. Caption = '31'
  1612. DataBinding.FieldName = 'C31'
  1613. PropertiesClassName = 'TcxSpinEditProperties'
  1614. Properties.Alignment.Horz = taRightJustify
  1615. Properties.Alignment.Vert = taVCenter
  1616. Properties.DisplayFormat = '##,##0'
  1617. OnCustomDrawCell = vDayColumnCustomDrawCell
  1618. BestFitMaxWidth = 50
  1619. HeaderAlignmentHorz = taCenter
  1620. HeaderAlignmentVert = vaCenter
  1621. Width = 50
  1622. Position.BandIndex = 1
  1623. Position.ColIndex = 30
  1624. Position.RowIndex = 0
  1625. end
  1626. object TvMonColumn1: TcxGridDBBandedColumn
  1627. Caption = #49688#51665#50896
  1628. DataBinding.FieldName = 'TRFTYPE'
  1629. Visible = False
  1630. HeaderAlignmentHorz = taCenter
  1631. HeaderAlignmentVert = vaCenter
  1632. VisibleForCustomization = False
  1633. Width = 70
  1634. Position.BandIndex = 0
  1635. Position.ColIndex = 3
  1636. Position.RowIndex = 0
  1637. end
  1638. end
  1639. object GlMon: TcxGridLevel
  1640. GridView = TvMon
  1641. end
  1642. end
  1643. end
  1644. object TsListYear: TcxTabSheet
  1645. Caption = #50900#48324' '#53685#44228' '
  1646. ImageIndex = 2
  1647. TabVisible = False
  1648. ExplicitTop = 0
  1649. ExplicitWidth = 0
  1650. ExplicitHeight = 0
  1651. object PnlYearGraph: TPanel
  1652. Left = 0
  1653. Top = 284
  1654. Width = 1331
  1655. Height = 320
  1656. Align = alBottom
  1657. BevelInner = bvLowered
  1658. BevelOuter = bvNone
  1659. TabOrder = 0
  1660. end
  1661. object SplYear: TcxSplitter
  1662. Left = 0
  1663. Top = 278
  1664. Width = 6
  1665. Height = 6
  1666. HotZoneClassName = 'TcxSimpleStyle'
  1667. AlignSplitter = salBottom
  1668. ResizeUpdate = True
  1669. Control = PnlYearGraph
  1670. Color = 3893744
  1671. ParentColor = False
  1672. end
  1673. object CxYear: TcxGrid
  1674. Left = 0
  1675. Top = 0
  1676. Width = 1331
  1677. Height = 278
  1678. Align = alClient
  1679. TabOrder = 2
  1680. LookAndFeel.Kind = lfUltraFlat
  1681. LookAndFeel.NativeStyle = False
  1682. object TvYear: TcxGridDBBandedTableView
  1683. DataController.Summary.DefaultGroupSummaryItems = <>
  1684. DataController.Summary.FooterSummaryItems = <>
  1685. DataController.Summary.SummaryGroups = <>
  1686. DataController.Summary.Options = [soNullIgnore]
  1687. FilterRow.InfoText = #44160#49353#50612' '#51077#47141
  1688. OptionsBehavior.CellHints = True
  1689. OptionsCustomize.ColumnFiltering = False
  1690. OptionsCustomize.ColumnHidingOnGrouping = False
  1691. OptionsCustomize.ColumnMoving = False
  1692. OptionsCustomize.ColumnSorting = False
  1693. OptionsCustomize.BandMoving = False
  1694. OptionsCustomize.ColumnVertSizing = False
  1695. OptionsData.CancelOnExit = False
  1696. OptionsData.Deleting = False
  1697. OptionsData.DeletingConfirmation = False
  1698. OptionsData.Editing = False
  1699. OptionsData.Inserting = False
  1700. OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
  1701. OptionsView.GroupByBox = False
  1702. OptionsView.GroupFooters = gfVisibleWhenExpanded
  1703. OptionsView.FixedBandSeparatorColor = 10849679
  1704. OptionsView.FixedBandSeparatorWidth = 0
  1705. Bands = <
  1706. item
  1707. Caption = #44396#48516
  1708. FixedKind = fkLeft
  1709. Width = 455
  1710. end
  1711. item
  1712. Caption = #50900#48324' '#53685#44228'(km/h)'
  1713. end>
  1714. object vYearColumnNo: TcxGridDBBandedColumn
  1715. Caption = #44036#49440#46020#47196#47749
  1716. DataBinding.FieldName = 'ARTERYNAME'
  1717. PropertiesClassName = 'TcxTextEditProperties'
  1718. Properties.Alignment.Horz = taLeftJustify
  1719. Properties.Alignment.Vert = taVCenter
  1720. BestFitMaxWidth = 55
  1721. HeaderAlignmentHorz = taCenter
  1722. HeaderAlignmentVert = vaCenter
  1723. Options.CellMerging = True
  1724. Width = 181
  1725. Position.BandIndex = 0
  1726. Position.ColIndex = 0
  1727. Position.RowIndex = 0
  1728. end
  1729. object vYearColumnTot: TcxGridDBBandedColumn
  1730. Caption = #48169#54693
  1731. DataBinding.FieldName = 'DIRECTIONNAME'
  1732. PropertiesClassName = 'TcxTextEditProperties'
  1733. Properties.Alignment.Horz = taCenter
  1734. Properties.Alignment.Vert = taVCenter
  1735. BestFitMaxWidth = 70
  1736. HeaderAlignmentHorz = taCenter
  1737. HeaderAlignmentVert = vaCenter
  1738. Options.CellMerging = True
  1739. Width = 76
  1740. Position.BandIndex = 0
  1741. Position.ColIndex = 1
  1742. Position.RowIndex = 0
  1743. end
  1744. object vYearColumnNm: TcxGridDBBandedColumn
  1745. Caption = #44600#51060'(m)'
  1746. DataBinding.FieldName = 'ARTERYLENGHT'
  1747. PropertiesClassName = 'TcxSpinEditProperties'
  1748. Properties.Alignment.Horz = taRightJustify
  1749. Properties.Alignment.Vert = taVCenter
  1750. Properties.DisplayFormat = '#,##0'
  1751. BestFitMaxWidth = 195
  1752. HeaderAlignmentHorz = taCenter
  1753. HeaderAlignmentVert = vaCenter
  1754. Options.CellMerging = True
  1755. Width = 67
  1756. Position.BandIndex = 0
  1757. Position.ColIndex = 2
  1758. Position.RowIndex = 0
  1759. end
  1760. object vYearColumnAvg: TcxGridDBBandedColumn
  1761. Caption = #54217#44512
  1762. DataBinding.FieldName = 'ARTERYSPD'
  1763. PropertiesClassName = 'TcxSpinEditProperties'
  1764. Properties.Alignment.Horz = taRightJustify
  1765. Properties.Alignment.Vert = taVCenter
  1766. OnCustomDrawCell = vDayColumnCustomDrawCell
  1767. BestFitMaxWidth = 80
  1768. HeaderAlignmentHorz = taCenter
  1769. HeaderAlignmentVert = vaCenter
  1770. Width = 61
  1771. Position.BandIndex = 0
  1772. Position.ColIndex = 4
  1773. Position.RowIndex = 0
  1774. end
  1775. object vYearColumn1: TcxGridDBBandedColumn
  1776. Caption = '1'
  1777. DataBinding.FieldName = 'C01'
  1778. PropertiesClassName = 'TcxSpinEditProperties'
  1779. Properties.Alignment.Horz = taRightJustify
  1780. Properties.Alignment.Vert = taVCenter
  1781. Properties.DisplayFormat = '##,##0'
  1782. OnCustomDrawCell = vDayColumnCustomDrawCell
  1783. BestFitMaxWidth = 80
  1784. HeaderAlignmentHorz = taCenter
  1785. HeaderAlignmentVert = vaCenter
  1786. Width = 80
  1787. Position.BandIndex = 1
  1788. Position.ColIndex = 0
  1789. Position.RowIndex = 0
  1790. end
  1791. object vYearColumn2: TcxGridDBBandedColumn
  1792. Caption = '2'
  1793. DataBinding.FieldName = 'C02'
  1794. PropertiesClassName = 'TcxSpinEditProperties'
  1795. Properties.Alignment.Horz = taRightJustify
  1796. Properties.Alignment.Vert = taVCenter
  1797. Properties.DisplayFormat = '##,##0'
  1798. OnCustomDrawCell = vDayColumnCustomDrawCell
  1799. BestFitMaxWidth = 80
  1800. HeaderAlignmentHorz = taCenter
  1801. HeaderAlignmentVert = vaCenter
  1802. Width = 80
  1803. Position.BandIndex = 1
  1804. Position.ColIndex = 1
  1805. Position.RowIndex = 0
  1806. end
  1807. object vYearColumn3: TcxGridDBBandedColumn
  1808. Caption = '3'
  1809. DataBinding.FieldName = 'C03'
  1810. PropertiesClassName = 'TcxSpinEditProperties'
  1811. Properties.Alignment.Horz = taRightJustify
  1812. Properties.Alignment.Vert = taVCenter
  1813. Properties.DisplayFormat = '##,##0'
  1814. OnCustomDrawCell = vDayColumnCustomDrawCell
  1815. BestFitMaxWidth = 80
  1816. HeaderAlignmentHorz = taCenter
  1817. HeaderAlignmentVert = vaCenter
  1818. Width = 80
  1819. Position.BandIndex = 1
  1820. Position.ColIndex = 2
  1821. Position.RowIndex = 0
  1822. end
  1823. object vYearColumn4: TcxGridDBBandedColumn
  1824. Caption = '4'
  1825. DataBinding.FieldName = 'C04'
  1826. PropertiesClassName = 'TcxSpinEditProperties'
  1827. Properties.Alignment.Horz = taRightJustify
  1828. Properties.Alignment.Vert = taVCenter
  1829. Properties.DisplayFormat = '##,##0'
  1830. OnCustomDrawCell = vDayColumnCustomDrawCell
  1831. BestFitMaxWidth = 80
  1832. HeaderAlignmentHorz = taCenter
  1833. HeaderAlignmentVert = vaCenter
  1834. Width = 80
  1835. Position.BandIndex = 1
  1836. Position.ColIndex = 3
  1837. Position.RowIndex = 0
  1838. end
  1839. object vYearColumn5: TcxGridDBBandedColumn
  1840. Caption = '5'
  1841. DataBinding.FieldName = 'C05'
  1842. PropertiesClassName = 'TcxSpinEditProperties'
  1843. Properties.Alignment.Horz = taRightJustify
  1844. Properties.Alignment.Vert = taVCenter
  1845. Properties.DisplayFormat = '##,##0'
  1846. OnCustomDrawCell = vDayColumnCustomDrawCell
  1847. BestFitMaxWidth = 80
  1848. HeaderAlignmentHorz = taCenter
  1849. HeaderAlignmentVert = vaCenter
  1850. Width = 80
  1851. Position.BandIndex = 1
  1852. Position.ColIndex = 4
  1853. Position.RowIndex = 0
  1854. end
  1855. object vYearColumn6: TcxGridDBBandedColumn
  1856. Caption = '6'
  1857. DataBinding.FieldName = 'C06'
  1858. PropertiesClassName = 'TcxSpinEditProperties'
  1859. Properties.Alignment.Horz = taRightJustify
  1860. Properties.Alignment.Vert = taVCenter
  1861. Properties.DisplayFormat = '##,##0'
  1862. OnCustomDrawCell = vDayColumnCustomDrawCell
  1863. BestFitMaxWidth = 80
  1864. HeaderAlignmentHorz = taCenter
  1865. HeaderAlignmentVert = vaCenter
  1866. Width = 80
  1867. Position.BandIndex = 1
  1868. Position.ColIndex = 5
  1869. Position.RowIndex = 0
  1870. end
  1871. object vYearColumn7: TcxGridDBBandedColumn
  1872. Caption = '7'
  1873. DataBinding.FieldName = 'C07'
  1874. PropertiesClassName = 'TcxSpinEditProperties'
  1875. Properties.Alignment.Horz = taRightJustify
  1876. Properties.Alignment.Vert = taVCenter
  1877. Properties.DisplayFormat = '##,##0'
  1878. OnCustomDrawCell = vDayColumnCustomDrawCell
  1879. BestFitMaxWidth = 80
  1880. HeaderAlignmentHorz = taCenter
  1881. HeaderAlignmentVert = vaCenter
  1882. Width = 80
  1883. Position.BandIndex = 1
  1884. Position.ColIndex = 6
  1885. Position.RowIndex = 0
  1886. end
  1887. object vYearColumn8: TcxGridDBBandedColumn
  1888. Caption = '8'
  1889. DataBinding.FieldName = 'C08'
  1890. PropertiesClassName = 'TcxSpinEditProperties'
  1891. Properties.Alignment.Horz = taRightJustify
  1892. Properties.Alignment.Vert = taVCenter
  1893. Properties.DisplayFormat = '##,##0'
  1894. OnCustomDrawCell = vDayColumnCustomDrawCell
  1895. BestFitMaxWidth = 80
  1896. HeaderAlignmentHorz = taCenter
  1897. HeaderAlignmentVert = vaCenter
  1898. Width = 80
  1899. Position.BandIndex = 1
  1900. Position.ColIndex = 7
  1901. Position.RowIndex = 0
  1902. end
  1903. object vYearColumn9: TcxGridDBBandedColumn
  1904. Caption = '9'
  1905. DataBinding.FieldName = 'C09'
  1906. PropertiesClassName = 'TcxSpinEditProperties'
  1907. Properties.Alignment.Horz = taRightJustify
  1908. Properties.Alignment.Vert = taVCenter
  1909. Properties.DisplayFormat = '##,##0'
  1910. OnCustomDrawCell = vDayColumnCustomDrawCell
  1911. BestFitMaxWidth = 80
  1912. HeaderAlignmentHorz = taCenter
  1913. HeaderAlignmentVert = vaCenter
  1914. Width = 80
  1915. Position.BandIndex = 1
  1916. Position.ColIndex = 8
  1917. Position.RowIndex = 0
  1918. end
  1919. object vYearColumn10: TcxGridDBBandedColumn
  1920. Caption = '10'
  1921. DataBinding.FieldName = 'C10'
  1922. PropertiesClassName = 'TcxSpinEditProperties'
  1923. Properties.Alignment.Horz = taRightJustify
  1924. Properties.Alignment.Vert = taVCenter
  1925. Properties.DisplayFormat = '##,##0'
  1926. OnCustomDrawCell = vDayColumnCustomDrawCell
  1927. BestFitMaxWidth = 80
  1928. HeaderAlignmentHorz = taCenter
  1929. HeaderAlignmentVert = vaCenter
  1930. Width = 80
  1931. Position.BandIndex = 1
  1932. Position.ColIndex = 9
  1933. Position.RowIndex = 0
  1934. end
  1935. object vYearColumn11: TcxGridDBBandedColumn
  1936. Caption = '11'
  1937. DataBinding.FieldName = 'C11'
  1938. PropertiesClassName = 'TcxSpinEditProperties'
  1939. Properties.Alignment.Horz = taRightJustify
  1940. Properties.Alignment.Vert = taVCenter
  1941. Properties.DisplayFormat = '##,##0'
  1942. OnCustomDrawCell = vDayColumnCustomDrawCell
  1943. BestFitMaxWidth = 80
  1944. HeaderAlignmentHorz = taCenter
  1945. HeaderAlignmentVert = vaCenter
  1946. Width = 80
  1947. Position.BandIndex = 1
  1948. Position.ColIndex = 10
  1949. Position.RowIndex = 0
  1950. end
  1951. object vYearColumn12: TcxGridDBBandedColumn
  1952. Caption = '12'
  1953. DataBinding.FieldName = 'C12'
  1954. PropertiesClassName = 'TcxSpinEditProperties'
  1955. Properties.Alignment.Horz = taRightJustify
  1956. Properties.Alignment.Vert = taVCenter
  1957. Properties.DisplayFormat = '##,##0'
  1958. OnCustomDrawCell = vDayColumnCustomDrawCell
  1959. BestFitMaxWidth = 80
  1960. HeaderAlignmentHorz = taCenter
  1961. HeaderAlignmentVert = vaCenter
  1962. Width = 80
  1963. Position.BandIndex = 1
  1964. Position.ColIndex = 11
  1965. Position.RowIndex = 0
  1966. end
  1967. object TvYearColumn1: TcxGridDBBandedColumn
  1968. Caption = #49688#51665#50896
  1969. DataBinding.FieldName = 'TRFTYPE'
  1970. Visible = False
  1971. HeaderAlignmentHorz = taCenter
  1972. HeaderAlignmentVert = vaCenter
  1973. VisibleForCustomization = False
  1974. Width = 68
  1975. Position.BandIndex = 0
  1976. Position.ColIndex = 3
  1977. Position.RowIndex = 0
  1978. end
  1979. end
  1980. object GlYear: TcxGridLevel
  1981. GridView = TvYear
  1982. end
  1983. end
  1984. end
  1985. end
  1986. object BtnClose: TcxButton
  1987. Left = 1266
  1988. Top = 11
  1989. Width = 75
  1990. Height = 25
  1991. Cursor = crHandPoint
  1992. Hint = #45803#44592
  1993. Anchors = [akTop, akRight]
  1994. Caption = #45803#44592
  1995. Colors.Default = 10737865
  1996. LookAndFeel.NativeStyle = False
  1997. TabOrder = 6
  1998. Font.Charset = DEFAULT_CHARSET
  1999. Font.Color = clWindowText
  2000. Font.Height = -13
  2001. Font.Name = #47569#51008' '#44256#46357
  2002. Font.Style = [fsBold]
  2003. ParentFont = False
  2004. OnClick = BtnCloseClick
  2005. end
  2006. object CbLinkLevel: TComboBox
  2007. Left = 542
  2008. Top = 50
  2009. Width = 45
  2010. Height = 25
  2011. Style = csDropDownList
  2012. ImeName = #54620#44397#50612' '#51077#47141' '#49884#49828#53596' (IME 2000)'
  2013. ItemIndex = 0
  2014. TabOrder = 7
  2015. Text = '1'
  2016. Visible = False
  2017. Items.Strings = (
  2018. '1'
  2019. '2')
  2020. end
  2021. object CbStatCfg: TComboBox
  2022. Left = 637
  2023. Top = 8
  2024. Width = 124
  2025. Height = 21
  2026. Style = csDropDownList
  2027. Font.Charset = DEFAULT_CHARSET
  2028. Font.Color = clHighlight
  2029. Font.Height = -13
  2030. Font.Name = #44404#47548
  2031. Font.Style = []
  2032. ImeName = 'Microsoft Office IME 2007'
  2033. ItemIndex = 0
  2034. ParentFont = False
  2035. TabOrder = 8
  2036. Text = #53685#44228#51221#48372
  2037. Visible = False
  2038. Items.Strings = (
  2039. #53685#44228#51221#48372)
  2040. end
  2041. object TmrRefresh: TTimer
  2042. Enabled = False
  2043. Interval = 500
  2044. OnTimer = TmrRefreshTimer
  2045. Left = 333
  2046. Top = 285
  2047. end
  2048. object LimgTmp: TImageList
  2049. DrawingStyle = dsTransparent
  2050. ShareImages = True
  2051. Left = 478
  2052. Top = 12
  2053. Bitmap = {
  2054. 494C01010A000D00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2055. 0000000000003600000028000000400000003000000001002000000000000030
  2056. 0000000000000000000000000000000000000000000000000000000000000000
  2057. 0000000000000000000000000000000000000000000000000000000000000000
  2058. 0000000000000000000000000000000000000000000000800000008000000080
  2059. 0000008000000080000000800000008000000080000000800000008000000080
  2060. 0000008000000080000000800000000000000000000000000000000000000000
  2061. 0000000000000000000000000000000000000000000000000000000000000000
  2062. 0000000000000000000000000000000000000000000000000000000000000000
  2063. 0000000000000000000000000000000000000000000000000000000000000000
  2064. 0000000000000000000000000000000000000000000000000000000000000000
  2065. 0000000000000000000000000000000000000000000000000000000000000000
  2066. 0000000000000000000000000000000000000080000000800000008000000080
  2067. 0000008000000080000000800000008000000080000000800000008000000080
  2068. 0000008000000080000000800000008000000000000000000000000000000000
  2069. 0000000000000000000000000000000000000000000000000000000000000000
  2070. 0000000000000000000000000000000000000000000000000000000000000000
  2071. 0000000000000000000000000000000000000000000000000000000000000000
  2072. 0000000000000000000000000000000000000000000000000000000000000000
  2073. 00008484840084848400848484008484840084848400848484000000000000FF
  2074. FF00000000008484840000000000000000000080000000800000008000000080
  2075. 0000000000000000000000000000000000000000000000000000000000000000
  2076. 0000008000000080000000800000008000000000000000000000000000000000
  2077. 0000000000000000000000000000000000000000000000000000000000000000
  2078. 0000000000000000000000000000000000000000000000000000000000000000
  2079. 0000000000000000000000000000000000000000000000000000000000000000
  2080. 0000000000000000000000000000000000000000000000000000000000000000
  2081. 0000000000000000000000000000000000000000000000000000FFFFFF00FFFF
  2082. FF00000000000000000084848400000000000080000000800000008000000000
  2083. 0000008000000080000000800000008000000080000000800000008000000080
  2084. 0000000000000080000000800000008000000000000000000000000000000000
  2085. 0000000000000000000000000000000000000000000000000000000000000000
  2086. 0000000000000000000000000000000000000000000000000000000000000000
  2087. 0000000000000000000000000000000000000000000000000000000000000000
  2088. 000000000000000000000000000000000000000000000000000000000000FFFF
  2089. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  2090. FF00FFFFFF00FFFFFF0000000000848484000080000000800000000000000080
  2091. 0000008000000080000000800000008000000080000000800000008000000080
  2092. 0000008000000000000000800000008000000000000000000000000000000000
  2093. 0000000000000000000000000000000000000000000000000000000000000000
  2094. 0000000000000000000000000000000000000000000000000000000000000000
  2095. 0000000000000000000000000000000000000000000000000000000000000000
  2096. 000000000000000000000000000000000000000000000000000000000000FFFF
  2097. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084000000FFFFFF00FFFF
  2098. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2099. 0000008000000080000000800000008000000080000000800000008000000080
  2100. 0000008000000080000000800000008000000000000000000000000000000000
  2101. 0000000000000000000000000000000000000000000000000000000000000000
  2102. 0000000000000000000000000000000000000000000000000000000000000000
  2103. 0000000000000000000000000000000000000000000000000000000000000000
  2104. 000000000000000000000000000000000000000000000000000000000000FFFF
  2105. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  2106. FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2107. 0000008000000080000000800000008000000080000000800000008000000080
  2108. 0000008000000080000000800000008000000000000000000000000000000000
  2109. 0000000000000000000000000000000000000000000000000000000000000000
  2110. 0000000000000000000000000000000000000000000000000000000000000000
  2111. 0000000000000000000000000000000000000000000000000000000000000000
  2112. 000000000000000000000000000000000000000000000000000000000000FFFF
  2113. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFF
  2114. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2115. 0000008000000080000000800000008000000080000000800000008000000080
  2116. 0000008000000080000000800000008000000000000000000000000000000000
  2117. 0000000000000000000000000000000000000000000000000000000000000000
  2118. 0000000000000000000000000000000000000000000000000000000000000000
  2119. 0000000000000000000000000000000000000000000000000000000000000000
  2120. 000000000000000000000000000000000000000000000000000000000000FFFF
  2121. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00848484008400000000000000FFFF
  2122. FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2123. 0000008000000080000000800000008000000080000000800000008000000080
  2124. 0000008000000080000000800000008000000000000000000000000000000000
  2125. 0000000000000000000000000000000000000000000000000000000000000000
  2126. 0000000000000000000000000000000000000000000000000000000000000000
  2127. 0000000000000000000000000000000000000000000000000000000000000000
  2128. 000000000000000000000000000000000000000000000000000000000000FFFF
  2129. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF0084848400840000008484
  2130. 840000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2131. 0000008000000080000000800000008000000080000000800000008000000080
  2132. 0000008000000080000000800000008000000000000000000000000000000000
  2133. 0000000000000000000000000000000000000000000000000000000000000000
  2134. 0000000000000000000000000000000000000000000000000000000000000000
  2135. 0000000000000000000000000000000000000000000000000000000000000000
  2136. 000000000000000000000000000000000000000000000000000000000000FFFF
  2137. FF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFFFF00840000008400
  2138. 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2139. 0000008000000080000000800000008000000080000000800000008000000080
  2140. 0000008000000080000000800000008000000000000000000000000000000000
  2141. 0000000000000000000000000000000000000000000000000000000000000000
  2142. 0000000000000000000000000000000000000000000000000000000000000000
  2143. 0000000000000000000000000000000000000000000000000000000000000000
  2144. 000000000000000000000000000000000000000000000000000000000000FFFF
  2145. FF0000FFFF00FFFFFF00840000008400000000FFFF0000000000840000008400
  2146. 000000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2147. 0000000000000000000000800000008000000080000000800000000000000000
  2148. 0000008000000080000000800000008000000000000000000000000000000000
  2149. 0000000000000000000000000000000000000000000000000000000000000000
  2150. 0000000000000000000000000000000000000000000000000000000000000000
  2151. 0000000000000000000000000000000000000000000000000000000000000000
  2152. 000000000000000000000000000000000000000000000000000000000000FFFF
  2153. FF00FFFFFF00FFFFFF0000000000840000008400000084000000840000000000
  2154. 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2155. 0000000000000000000000800000008000000080000000800000000000000000
  2156. 0000008000000080000000800000008000000000000000000000000000000000
  2157. 0000000000000000000000000000000000000000000000000000000000000000
  2158. 0000000000000000000000000000000000000000000000000000000000000000
  2159. 0000000000000000000000000000000000000000000000000000000000000000
  2160. 000000000000000000000000000000000000000000000000000000000000FFFF
  2161. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFF
  2162. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2163. 0000008000000080000000800000008000000080000000800000008000000080
  2164. 0000008000000080000000800000008000000000000000000000000000000000
  2165. 0000000000000000000000000000000000000000000000000000000000000000
  2166. 0000000000000000000000000000000000000000000000000000000000000000
  2167. 0000000000000000000000000000000000000000000000000000000000000000
  2168. 000000000000000000000000000000000000000000000000000000000000FFFF
  2169. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  2170. FF00FFFFFF00FFFFFF0000000000000000000080000000800000008000000080
  2171. 0000008000000080000000800000008000000080000000800000008000000080
  2172. 0000008000000080000000800000008000000000000000000000000000000000
  2173. 0000000000000000000000000000000000000000000000000000000000000000
  2174. 0000000000000000000000000000000000000000000000000000000000000000
  2175. 0000000000000000000000000000000000000000000000000000000000000000
  2176. 0000000000000000000000000000000000000000000000000000000000000000
  2177. 0000000000000000000000000000000000000000000000000000000000000000
  2178. 0000000000000000000000000000000000000000000000800000008000000080
  2179. 0000008000000080000000800000008000000080000000800000008000000080
  2180. 0000008000000080000000800000000000000000000000000000000000000000
  2181. 0000000000000000000000000000000000000000000000000000000000000000
  2182. 0000000000000000000000000000000000000000000000000000000000000000
  2183. 0000000000000000000000000000000000000000000000000000000000000000
  2184. 0000000000000000000000000000000000000000000000000000000000000000
  2185. 0000000000000000000000000000000000000000000000000000000000000000
  2186. 0000000000000000000000000000000000000000000000000000000000000000
  2187. 0000000000000000000000000000000000000000000000000000000000000000
  2188. 0000000000000000000000000000000000000000000000000000000000000000
  2189. 0000000000000000000000000000000000000000000000000000000000000000
  2190. 0000000000000000000000000000000000000000000000000000000000000000
  2191. 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
  2192. 7B00000000000000000000000000000000000000000000000000000000000000
  2193. 0000000000000000000000000000000080000000800000000000000000000000
  2194. 0000000000000000000000000000000000000000000000000000000000000000
  2195. 0000000000000000000000000000000000000000000000000000000000000000
  2196. 0000000000000000000000000000000000000000000000000000000000000000
  2197. 0000000000000000000000000000000000000000000000000000000000000000
  2198. 0000000000000000000000000000000000000000000000000000000000000000
  2199. 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
  2200. 7B00000000000000000000000000000000000000000000000000000000000000
  2201. 0000000000000000000000008000000080000000800000008000000000000000
  2202. 0000000000000000000000000000000000000000000000840000000000000000
  2203. 0000000000000000000000000000000000000084000000000000000000000000
  2204. 0000000000000000000000000000000000000000000000000000000000000000
  2205. 0000000000000000000000000000808080008080800000000000000000000000
  2206. 0000000000000000000000000000000000000000000000000000000000000000
  2207. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2208. FF000000FF000000000000000000000000000000000000000000000000000000
  2209. 0000000000000000000000008000000080000000800000008000000000000000
  2210. 0000000000000000000000000000000000000000000000840000008400000000
  2211. 0000000000000000000000000000000000000084000000840000000000000000
  2212. 0000000000000000000000000000000000000000000000000000000000000000
  2213. 0000000000000000000000000000000000000000000000000000000000000000
  2214. 0000000000000000000000000000000000000000000000000000000000000000
  2215. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2216. FF000000FF000000FF0000000000000000000000000000000000000000000000
  2217. 0000000000000000000000000000000080000000800000000000000000000000
  2218. 000000000000000000000000000000000000000000000084000000FF00000084
  2219. 0000000000000000000000000000000000000084000000FF0000008400000000
  2220. 0000000000000000000000000000000000000000000000000000000000000000
  2221. 0000000000000000000000000000000000000000000000000000000000000000
  2222. 000000000000000000000000000000000000000000007B7B7B0000007B000000
  2223. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2224. FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
  2225. 0000000000000000000000000000000000000000000000000000000000000000
  2226. 000000000000000000000000000000000000000000000084000000FF000000FF
  2227. 0000008400000000000000000000000000000084000000FF000000FF00000084
  2228. 0000000000000000000000000000000000000000000000000000000000000000
  2229. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2230. FF000000000000000000000000000000000000000000000000000000FF000000
  2231. FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
  2232. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2233. 0000000000000000000000000000000080000000800000000000000000000000
  2234. 000000000000000000000000000000000000000000000084000000FF000000FF
  2235. 000000FF00000084000000000000000000000084000000FF000000FF000000FF
  2236. 0000008400000000000000000000000000000000000000000000000000000000
  2237. 0000000000000000FF00FFFFFF000000FF000000FF000000FF000000FF000000
  2238. 00000000000000000000000000000000000000000000000000000000FF000000
  2239. FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
  2240. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2241. 0000000000000000000080808000000080000000800080808000000000000000
  2242. 000000000000000000000000000000000000000000000084000000FF000000FF
  2243. 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
  2244. 000000FF0000008400000000000000000000000000000000FF000000FF000000
  2245. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  2246. 0000000000000000FF000000FF000000000000000000000000000000FF000000
  2247. FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
  2248. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2249. 0000000000000000000000008000000080000000800000008000000000000000
  2250. 000000000000000000000000000000000000000000000084000000FF000000FF
  2251. 000000FF000000FF000000FF0000008400000084000000FF000000FF000000FF
  2252. 000000FF000000FF000000840000000000000000000000000000000000000000
  2253. 000000000000000000000000FF000000FF000000FF000000FF00000000000000
  2254. 00000000000000000000000000000000000000000000000000000000FF000000
  2255. FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
  2256. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2257. 0000000000000000000000008000000080000000800000008000000000000000
  2258. 000000000000000000000000000000000000000000000084000000FF000000FF
  2259. 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
  2260. 000000FF00000084000000000000000000000000000000000000000000000000
  2261. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  2262. 00000000000000000000000000000000000000000000000000000000FF000000
  2263. FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
  2264. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2265. 0000000000000000000000008000000080000000800000008000000000000000
  2266. 000000000000000000000000000000000000000000000084000000FF000000FF
  2267. 000000FF00000084000000000000000000000084000000FF000000FF000000FF
  2268. 0000008400000000000000000000000000000000000000000000000000000000
  2269. 000000000000000000000000FF000000FF000000FF000000FF00000000000000
  2270. 000000000000000000000000000000000000000000007B7B7B0000007B000000
  2271. FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
  2272. FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
  2273. 0000000000000000000000008000000080000000800000008000000000000000
  2274. 000000000000000000000000000000000000000000000084000000FF000000FF
  2275. 0000008400000000000000000000000000000084000000FF000000FF00000084
  2276. 000000000000000000000000000000000000000000000000FF000000FF000000
  2277. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  2278. 0000000000000000FF000000FF00000000000000000000000000000000000000
  2279. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2280. FF000000FF000000FF0000000000000000000000000000000000000000000000
  2281. 0000000000000000000000008000000080000000800000008000000000000000
  2282. 000000000000000000000000000000000000000000000084000000FF00000084
  2283. 0000000000000000000000000000000000000084000000FF0000008400000000
  2284. 0000000000000000000000000000000000000000000000000000000000000000
  2285. 00000000000000000000808080000000FF000000FF0080808000000000000000
  2286. 0000000000000000000000000000000000000000000000000000000000000000
  2287. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2288. FF000000FF000000000000000000000000000000000000000000000000000000
  2289. 0000000000000000000000008000000080000000800000008000000000000000
  2290. 0000000000000000000000000000000000000000000000840000008400000000
  2291. 0000000000000000000000000000000000000084000000840000000000000000
  2292. 0000000000000000000000000000000000000000000000000000000000000000
  2293. 00000000FF000000000000000000808080008080800000000000000000000000
  2294. FF00000000000000000000000000000000000000000000000000000000000000
  2295. 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
  2296. 7B00000000000000000000000000000000000000000000000000000000000000
  2297. 0000000000000000000000000000000080000000800000000000000000000000
  2298. 0000000000000000000000000000000000000000000000840000000000000000
  2299. 0000000000000000000000000000000000000084000000000000000000000000
  2300. 0000000000000000000000000000000000000000000000000000000000000000
  2301. FF00000000000000000000000000000000000000000000000000000000000000
  2302. 00000000FF000000000000000000000000000000000000000000000000000000
  2303. 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
  2304. 7B00000000000000000000000000000000000000000000000000000000000000
  2305. 0000000000000000000000000000000000000000000000000000000000000000
  2306. 0000000000000000000000000000000000000000000000000000000000000000
  2307. 0000000000000000000000000000000000000000000000000000000000000000
  2308. 0000000000000000000000000000000000000000000000000000000000000000
  2309. 0000000000000000000000000000000000000000000000000000000000000000
  2310. 0000000000000000000000000000000000000000000000000000000000000000
  2311. 0000000000000000000000000000000000000000000000000000000000000000
  2312. 0000000000000000000000000000000000000000000000000000000000000000
  2313. 0000000000000000000000000000000000000000000000000000000000000000
  2314. 0000000000000000000000000000000000000000000000000000000000000000
  2315. 0000000000000000000000000000000000000000000000000000000000000000
  2316. 0000000000000000000000000000000000000000000000000000000000000000
  2317. 0000000000000000000000000000000000000000000000000000000000000000
  2318. 0000000000000000000000000000000000000000000000000000000000000000
  2319. 0000000000000000000000000000694731006947310000000000000000000000
  2320. 0000000000000000000000000000000000000000000000000000000000000000
  2321. 0000000000000000000000000000000000000000000000000000000000000000
  2322. 0000000000000000000000000000000000000000000000000000000000000000
  2323. 0000000000000000000000000000000000000000000000000000000000000000
  2324. 0000000000000000000000000000000000000000000000000000000000000000
  2325. 0000000000000000000000000000000000000000000000000000000000000000
  2326. 0000000000000000000000000000000000000000000000000000000000000000
  2327. 0000000000000000000069473100F2ECE900F2ECE90069473100000000000000
  2328. 0000000000000000000000000000000000000000000000000000000000000000
  2329. 00000000000000000000878787004F4F4F003A3A3A0058585800878787000000
  2330. 0000000000000000000000000000000000000000000000000000000000000000
  2331. 000000000000000000008686860055555500292929004D4D4D00808080000000
  2332. 0000000000000000000000000000000000000000000000000000000000000000
  2333. 0000000000000000000080808000424242003333330055555500808080000000
  2334. 0000000000000000000000000000000000000000000000000000000000000000
  2335. 00000000000069473100F2ECE9009830000098300000F2ECE900694731000000
  2336. 0000000000000000000000000000000000000000000000000000000000000000
  2337. 0000989898005555550081818100A9A9A900C5C5C500A1A1A1007C7C7C005A5A
  2338. 5A009B9B9B000000000000000000000000000000000000000000000000000000
  2339. 00009696960033336600333399006666CC009999CC006666CC00336699003333
  2340. 6600868686000000000000000000000000000000000000000000000000000000
  2341. 000096969600336633003399660066CC990066CC990066999900339966003366
  2342. 3300969696000000000000000000000000000000000000000000000000000000
  2343. 000069473100F2ECE90098300000F6865000F57C430098300000F2ECE9006947
  2344. 3100000000000000000000000000000000000000000000000000000000009D9D
  2345. 9D006A6A6A00AFAFAF00D6D6D600E2E2E200E2E2E200E6E6E600DBDBDB00B1B1
  2346. B1006A6A6A009999990000000000000000000000000000000000000000009696
  2347. 960033336600807CFF009999FF009999FF0099CCFF009999FF009999FF006666
  2348. CC00333399009696960000000000000000000000000000000000000000009999
  2349. 99003366660066CC990066FFCC0099FFCC0099FFCC0099FFCC0099FFCC0066CC
  2350. 9900339966009696960000000000000000000000000000000000000000006947
  2351. 3100F2ECE90098300000C4937500C4937500C4937500C493750098300000F2EC
  2352. E900694731000000000000000000000000000000000000000000000000005757
  2353. 570096969600D8D8D800DFDFDF00E1E1E100E3E3E300DBDBDB00E1E1E100D8D8
  2354. D800A3A3A3005F5F5F0000000000000000000000000000000000000000003333
  2355. 66006666CC00807CFF009999FF009999FF0099CCFF0099CCFF0099CCFF00807C
  2356. FF006666CC003333660000000000000000000000000000000000000000003366
  2357. 330033CC660066FFCC0099FFCC0099FFCC0099FFCC0066FFCC0066FFCC0066FF
  2358. CC0066CC9900336633000000000000000000000000000000000069473100F2EE
  2359. EA0098300000F79B6C00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AA6644009830
  2360. 0000F2ECE9006947310000000000000000000000000000000000959595007474
  2361. 7400AEAEAE00C9C9C900D4D4D400D7D7D700E4E4E400E0E0E000DCDCDC00C8C8
  2362. C800B9B9B9007878780090909000000000000000000000000000868686003333
  2363. 99006666FF00807CFF009999FF009999FF009999FF009999FF009999FF00807C
  2364. FF00807CFF003333990086868600000000000000000000000000669999003399
  2365. 660066CC990066FF990066FF990099FFCC0099FFCC0099FFCC0066FFCC0066FF
  2366. 990066CC99003399660086868600000000000000000069473100F2ECE9009830
  2367. 0000F9B18700F9AC8100F79B6C00FFFFFF00FFFFFF00AA664400F6865000F57C
  2368. 430098300000F2ECE90069473100000000000000000000000000606060008888
  2369. 8800B0B0B000AFAFAF00CECECE00CECECE00D5D5D500CDCDCD00CECECE00B0B0
  2370. B000AFAFAF007D7D7D0064646400000000000000000000000000336666003333
  2371. CC006666FF00807CFF00807CFF009999FF009999FF009999FF00807CFF006666
  2372. FF006666FF003333CC0033339900000000000000000000000000555555006699
  2373. 660066CC990033CC990066FF990066FF990099FFCC0066FF990066FF990033CC
  2374. 990033CC990033996600555555000000000098300000F9F6F400C8600000FBC3
  2375. 9F00FABA9300F9B18700F9AC8100FFFFFF00FFFFFF00AA664400F68D5900F686
  2376. 5000F57C430098300000F2ECE900694731000000000000000000373737008787
  2377. 870096969600A7A7A700B7B7B700BDBDBD00C1C1C100C2C2C200B7B7B700AAAA
  2378. AA00939393008A8A8A003A3A3A00000000000000000000000000000066003333
  2379. CC005050FF006666FF006666FF00807CFF00807CFF00807CFF006666FF006666
  2380. FF006666CC003333CC0000008000000000000000000000000000222222003399
  2381. 660033CC660033CC660066CC990066CC990066CC990066CC990066CC990033CC
  2382. 660033CC660033996600222222000000000098300000FEFEFE00C8600000FBC3
  2383. 9F00FBC39F00FABA9300F9B18700FFFFFF00FFFFFF00AA664400F7926000F68D
  2384. 5900F686500098300000F2ECE900694731000000000000000000424242007373
  2385. 73008787870090909000A5A5A500AAAAAA00ACACAC00ABABAB00A5A5A5008F8F
  2386. 8F0086868600818181004B4B4B00000000000000000000000000333366003333
  2387. 99003333CC003366CC006666CC006666FF006666FF006666FF005050FF005050
  2388. FF003333CC003333CC0033336600000000000000000000000000336633003399
  2389. 66003399660033CC660033CC990033CC990066CC990066CC990033CC990033CC
  2390. 6600339966003399660033663300000000000000000098300000FDFAF800C860
  2391. 0000FBC39F00FBC39F00FFFFFF00FFFFFF00FFFFFF00AA664400F79B6C00F792
  2392. 600098300000F2ECE90069473100000000000000000000000000797979006363
  2393. 630074747400787878009191910096969600909090008B8B8B00949494008383
  2394. 8300737373005A5A5A007A7A7A00000000000000000000000000666699003333
  2395. 9900333399003333CC003333CC003366CC003366CC003366CC003333CC003333
  2396. CC00003399003333990066669900000000000000000000000000777777003366
  2397. 3300339966000099660033CC660033CC660033CC66003399660033CC66003399
  2398. 660033996600336633007777770000000000000000000000000098300000FEFE
  2399. FE00C8600000FBC39F00FBC39F00C4937500C4937500F9AC8100F79B6C009830
  2400. 0000F2ECE9006947310000000000000000000000000000000000000000005050
  2401. 500068686800767676007E7E7E00898989009696960095959500818181007979
  2402. 79006D6D6D004949490000000000000000000000000000000000000000003333
  2403. 660033339900333399003333CC003366CC003366CC003366CC003333CC003333
  2404. 9900333399003333660000000000000000000000000000000000000000003366
  2405. 33003399330033996600339966003399660033CC660033CC6600339966003399
  2406. 6600339966003366330000000000000000000000000000000000000000009830
  2407. 0000FFFFFF00C8600000FBC39F00FFFFFF00FFFFFF00AA66440098300000F2EC
  2408. E900694731000000000000000000000000000000000000000000000000008F8F
  2409. 8F005F5F5F00A5A5A500B4B4B400B8B8B800BDBDBD00B7B7B700B4B4B4009F9F
  2410. 9F005B5B5B009494940000000000000000000000000000000000000000009696
  2411. 9600666699006666CC009999CC009999CC009999CC009999CC009999CC006666
  2412. CC00666699009696960000000000000000000000000000000000000000008686
  2413. 86004D4D4D0099CC990099CC990099CC990099CC990099CC990099CC99006699
  2414. 99004D4D4D009696960000000000000000000000000000000000000000000000
  2415. 000098300000FEFEFE00C8600000FFFFFF00FFFFFF0098300000F2ECE9006947
  2416. 3100000000000000000000000000000000000000000000000000000000000000
  2417. 0000989898008A8A8A00CDCDCD00EEEEEE00EBEBEB00E5E5E500D6D6D6008E8E
  2418. 8E00919191000000000000000000000000000000000000000000000000000000
  2419. 00009696960090A9AD00C6D6EF00EAEAEA00DDDDDD00DDDDDD00CBCBCB008686
  2420. 8600A4A0A0000000000000000000000000000000000000000000000000000000
  2421. 00009696960086868600C0DCC000EAEAEA00EAEAEA00E3E3E300CCCCCC008686
  2422. 8600969696000000000000000000000000000000000000000000000000000000
  2423. 00000000000098300000FDFAF800C8600000C8600000F2EDEA00694731000000
  2424. 0000000000000000000000000000000000000000000000000000000000000000
  2425. 00000000000000000000B5B5B500C3C3C300CDCDCD00C6C6C600B3B3B3000000
  2426. 0000000000000000000000000000000000000000000000000000000000000000
  2427. 00000000000000000000B2B2B200CBCBCB00CCCCCC00CBCBCB00B2B2B2000000
  2428. 0000000000000000000000000000000000000000000000000000000000000000
  2429. 00000000000000000000B2B2B200C0C0C000CCCCCC00CBCBCB00B2B2B2000000
  2430. 0000000000000000000000000000000000000000000000000000000000000000
  2431. 0000000000000000000098300000FEFEFE00F9F6F40069473100000000000000
  2432. 0000000000000000000000000000000000000000000000000000000000000000
  2433. 0000000000000000000000000000000000000000000000000000000000000000
  2434. 0000000000000000000000000000000000000000000000000000000000000000
  2435. 0000000000000000000000000000000000000000000000000000000000000000
  2436. 0000000000000000000000000000000000000000000000000000000000000000
  2437. 0000000000000000000000000000000000000000000000000000000000000000
  2438. 0000000000000000000000000000000000000000000000000000000000000000
  2439. 0000000000000000000000000000983000009830000000000000000000000000
  2440. 000000000000000000000000000000000000424D3E000000000000003E000000
  2441. 2800000040000000300000000100010000000000800100000000000000000000
  2442. 000000000000000000000000FFFFFF00FFF7800100000000FFE7000000000000
  2443. F0030FF000000000E001100800000000C000200400000000C000000000000000
  2444. C000000000000000C000000000000000C020000000000000C000000000000000
  2445. C000000000000000C0400C3000000000C2100C3000000000C000000000000000
  2446. C001000000000000E003800100000000FFFFFFFFFFFFF80FFE7FFFFFFFFFF007
  2447. FC3FBF7FFE7FE003FC3F9F3FFE7FC001FE7F8F1FE0078000FFFF870FE0078000
  2448. FE7F8307F00F8000FC3F810398198000FC3F8001F81F8000FC3F8103F81F8000
  2449. FC3F8307F81F8000FC3F870F9819C001FC3F8F1FFC3FE003FC3F9F3FF42FF007
  2450. FE7FBF7FEE77F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFC3F
  2451. FC1FFC1FFC1FF81FF007F007F007F00FE003E003E003E007E003E003E003C003
  2452. C001C001C0018001C001C001C0010000C001C001C0010000C001C001C0018001
  2453. C001C001C001C003E003E003E003E007E003E003E003F00FF007F007F007F81F
  2454. FC1FFC1FFC1FFC3FFFFFFFFFFFFFFE7F00000000000000000000000000000000
  2455. 000000000000}
  2456. end
  2457. object ADOD: TADOQuery
  2458. Parameters = <>
  2459. Left = 72
  2460. Top = 208
  2461. end
  2462. object DSD: TDataSource
  2463. DataSet = ADOD
  2464. Left = 112
  2465. Top = 208
  2466. end
  2467. object ADOM: TADOQuery
  2468. Parameters = <>
  2469. Left = 72
  2470. Top = 260
  2471. end
  2472. object DSM: TDataSource
  2473. DataSet = ADOM
  2474. Left = 112
  2475. Top = 260
  2476. end
  2477. object ADOY: TADOQuery
  2478. Parameters = <>
  2479. Left = 72
  2480. Top = 320
  2481. end
  2482. object DSY: TDataSource
  2483. DataSet = ADOY
  2484. Left = 124
  2485. Top = 320
  2486. end
  2487. end