SiteAdvanced.dfm 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912
  1. object SiteAdvancedDialog: TSiteAdvancedDialog
  2. Left = 351
  3. Top = 167
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_login_advanced'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Advanced Site Settings'
  9. ClientHeight = 432
  10. ClientWidth = 561
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. OnClose = FormClose
  16. OnCloseQuery = FormCloseQuery
  17. OnShow = FormShow
  18. DesignSize = (
  19. 561
  20. 432)
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object MainPanel: TPanel
  24. Left = 0
  25. Top = 0
  26. Width = 561
  27. Height = 392
  28. Align = alTop
  29. Anchors = [akLeft, akTop, akRight, akBottom]
  30. BevelOuter = bvNone
  31. TabOrder = 0
  32. object PageControl: TPageControl
  33. Left = 152
  34. Top = 0
  35. Width = 409
  36. Height = 392
  37. HelpType = htKeyword
  38. ActivePage = EnvironmentSheet
  39. Align = alClient
  40. MultiLine = True
  41. Style = tsButtons
  42. TabOrder = 1
  43. TabStop = False
  44. OnChange = PageControlChange
  45. object EnvironmentSheet: TTabSheet
  46. Tag = 1
  47. HelpType = htKeyword
  48. HelpKeyword = 'ui_login_environment'
  49. Caption = 'Environment'
  50. ImageIndex = 6
  51. TabVisible = False
  52. DesignSize = (
  53. 401
  54. 382)
  55. object EnvironmentGroup: TGroupBox
  56. Left = 0
  57. Top = 6
  58. Width = 393
  59. Height = 140
  60. Anchors = [akLeft, akTop, akRight]
  61. Caption = 'Server environment'
  62. TabOrder = 0
  63. DesignSize = (
  64. 393
  65. 140)
  66. object EOLTypeLabel: TLabel
  67. Left = 12
  68. Top = 20
  69. Width = 241
  70. Height = 13
  71. Caption = 'End-of-line &characters (if not indicated by server):'
  72. FocusControl = EOLTypeCombo
  73. end
  74. object UtfLabel: TLabel
  75. Left = 12
  76. Top = 44
  77. Width = 144
  78. Height = 13
  79. Caption = '&UTF-8 encoding for filenames:'
  80. FocusControl = UtfCombo
  81. end
  82. object TimeDifferenceLabel: TLabel
  83. Left = 12
  84. Top = 68
  85. Width = 84
  86. Height = 13
  87. Caption = 'Time &zone offset:'
  88. FocusControl = TimeDifferenceEdit
  89. end
  90. object TimeDifferenceHoursLabel: TLabel
  91. Left = 210
  92. Top = 68
  93. Width = 27
  94. Height = 13
  95. Anchors = [akTop, akRight]
  96. Caption = 'hours'
  97. FocusControl = TimeDifferenceEdit
  98. end
  99. object TimeDifferenceMinutesLabel: TLabel
  100. Left = 336
  101. Top = 66
  102. Width = 37
  103. Height = 13
  104. Anchors = [akTop, akRight]
  105. Caption = 'minutes'
  106. FocusControl = TimeDifferenceMinutesEdit
  107. end
  108. object EOLTypeCombo: TComboBox
  109. Left = 320
  110. Top = 15
  111. Width = 61
  112. Height = 21
  113. Style = csDropDownList
  114. Anchors = [akTop, akRight]
  115. TabOrder = 0
  116. Items.Strings = (
  117. 'LF'
  118. 'CR/LF')
  119. end
  120. object UtfCombo: TComboBox
  121. Left = 320
  122. Top = 39
  123. Width = 61
  124. Height = 21
  125. Style = csDropDownList
  126. Anchors = [akTop, akRight]
  127. TabOrder = 1
  128. end
  129. object TimeDifferenceEdit: TUpDownEdit
  130. Left = 135
  131. Top = 63
  132. Width = 69
  133. Height = 21
  134. Alignment = taRightJustify
  135. MaxValue = 25.000000000000000000
  136. MinValue = -25.000000000000000000
  137. Value = -13.000000000000000000
  138. Anchors = [akTop, akRight]
  139. TabOrder = 2
  140. OnChange = DataChange
  141. end
  142. object TimeDifferenceMinutesEdit: TUpDownEdit
  143. Left = 261
  144. Top = 63
  145. Width = 69
  146. Height = 21
  147. Alignment = taRightJustify
  148. Increment = 15.000000000000000000
  149. MaxValue = 45.000000000000000000
  150. MinValue = -45.000000000000000000
  151. Value = -13.000000000000000000
  152. Anchors = [akTop, akRight]
  153. TabOrder = 3
  154. OnChange = DataChange
  155. end
  156. object TimeDifferenceAutoCheck: TCheckBox
  157. Left = 135
  158. Top = 90
  159. Width = 242
  160. Height = 17
  161. Caption = 'Detect &automatically'
  162. TabOrder = 4
  163. OnClick = DataChange
  164. end
  165. object TrimVMSVersionsCheck: TCheckBox
  166. Left = 12
  167. Top = 113
  168. Width = 369
  169. Height = 17
  170. Caption = '&Trim VMS version numbers'
  171. TabOrder = 5
  172. OnClick = DataChange
  173. end
  174. end
  175. object DSTModeGroup: TGroupBox
  176. Left = 0
  177. Top = 153
  178. Width = 393
  179. Height = 93
  180. Anchors = [akLeft, akTop, akRight]
  181. Caption = 'Daylight saving time'
  182. TabOrder = 1
  183. DesignSize = (
  184. 393
  185. 93)
  186. object DSTModeUnixCheck: TRadioButton
  187. Left = 12
  188. Top = 19
  189. Width = 369
  190. Height = 17
  191. Anchors = [akLeft, akTop, akRight]
  192. Caption = 'Adjust remote timestamp to local co&nventions'
  193. TabOrder = 0
  194. OnClick = DataChange
  195. end
  196. object DSTModeWinCheck: TRadioButton
  197. Left = 12
  198. Top = 42
  199. Width = 369
  200. Height = 17
  201. Anchors = [akLeft, akTop, akRight]
  202. Caption = 'Adjust remote timestamp with &DST'
  203. TabOrder = 1
  204. OnClick = DataChange
  205. end
  206. object DSTModeKeepCheck: TRadioButton
  207. Left = 12
  208. Top = 65
  209. Width = 369
  210. Height = 17
  211. Anchors = [akLeft, akTop, akRight]
  212. Caption = 'Preser&ve remote timestamp'
  213. TabOrder = 2
  214. OnClick = DataChange
  215. end
  216. end
  217. object PuttyGroup: TGroupBox
  218. Left = 0
  219. Top = 252
  220. Width = 393
  221. Height = 98
  222. Anchors = [akLeft, akTop, akRight]
  223. Caption = 'PuTTY'
  224. TabOrder = 2
  225. DesignSize = (
  226. 393
  227. 98)
  228. object PuttySettingsLabel: TLabel
  229. Left = 12
  230. Top = 18
  231. Width = 116
  232. Height = 13
  233. Caption = '&PuTTY terminal settings:'
  234. FocusControl = EncryptKeyPasswordEdit
  235. end
  236. object PuttySettingsButton: TButton
  237. Left = 12
  238. Top = 61
  239. Width = 125
  240. Height = 25
  241. Anchors = [akTop, akRight]
  242. Caption = '&Edit in PuTTY...'
  243. TabOrder = 1
  244. OnClick = PuttySettingsButtonClick
  245. end
  246. object PuttySettingsEdit: TEdit
  247. Left = 12
  248. Top = 34
  249. Width = 370
  250. Height = 21
  251. MaxLength = 64
  252. TabOrder = 0
  253. Text = 'PuttySettingsEdit'
  254. OnChange = DataChange
  255. OnExit = EncryptKeyEditExit
  256. end
  257. end
  258. end
  259. object DirectoriesSheet: TTabSheet
  260. Tag = 2
  261. HelpType = htKeyword
  262. HelpKeyword = 'ui_login_directories'
  263. Caption = 'Directories'
  264. ImageIndex = 11
  265. TabVisible = False
  266. DesignSize = (
  267. 401
  268. 382)
  269. object DirectoriesGroup: TGroupBox
  270. Left = 0
  271. Top = 6
  272. Width = 393
  273. Height = 183
  274. Anchors = [akLeft, akTop, akRight]
  275. Caption = 'Directories'
  276. TabOrder = 0
  277. DesignSize = (
  278. 393
  279. 183)
  280. object LocalDirectoryLabel: TLabel
  281. Left = 12
  282. Top = 111
  283. Width = 74
  284. Height = 13
  285. Caption = '&Local directory:'
  286. FocusControl = LocalDirectoryEdit
  287. end
  288. object RemoteDirectoryLabel: TLabel
  289. Left = 12
  290. Top = 66
  291. Width = 87
  292. Height = 13
  293. Caption = '&Remote directory:'
  294. FocusControl = RemoteDirectoryEdit
  295. end
  296. object LocalDirectoryDescLabel: TLabel
  297. Left = 12
  298. Top = 156
  299. Width = 241
  300. Height = 13
  301. Caption = 'Local directory is not used with Explorer interface.'
  302. ShowAccelChar = False
  303. end
  304. object LocalDirectoryEdit: TDirectoryEdit
  305. Left = 12
  306. Top = 128
  307. Width = 371
  308. Height = 21
  309. AcceptFiles = True
  310. DialogText = 'Select startup local directory.'
  311. ClickKey = 16397
  312. Anchors = [akLeft, akTop, akRight]
  313. TabOrder = 3
  314. Text = 'LocalDirectoryEdit'
  315. OnChange = DataChange
  316. end
  317. object RemoteDirectoryEdit: TEdit
  318. Left = 12
  319. Top = 83
  320. Width = 371
  321. Height = 21
  322. Anchors = [akLeft, akTop, akRight]
  323. MaxLength = 1000
  324. TabOrder = 2
  325. Text = 'RemoteDirectoryEdit'
  326. OnChange = DataChange
  327. end
  328. object UpdateDirectoriesCheck: TCheckBox
  329. Left = 12
  330. Top = 42
  331. Width = 369
  332. Height = 17
  333. Anchors = [akLeft, akTop, akRight]
  334. Caption = 'Re&member last used directory'
  335. TabOrder = 1
  336. end
  337. object SynchronizeBrowsingCheck: TCheckBox
  338. Left = 12
  339. Top = 19
  340. Width = 369
  341. Height = 17
  342. Anchors = [akLeft, akTop, akRight]
  343. Caption = 'Syn&chronize browsing'
  344. TabOrder = 0
  345. end
  346. end
  347. object DirectoryOptionsGroup: TGroupBox
  348. Left = 1
  349. Top = 195
  350. Width = 393
  351. Height = 116
  352. Anchors = [akLeft, akTop, akRight]
  353. Caption = 'Directory reading options'
  354. TabOrder = 1
  355. DesignSize = (
  356. 393
  357. 116)
  358. object CacheDirectoriesCheck: TCheckBox
  359. Left = 12
  360. Top = 19
  361. Width = 369
  362. Height = 17
  363. Anchors = [akLeft, akTop, akRight]
  364. Caption = 'Cache &visited remote directories'
  365. TabOrder = 0
  366. OnClick = DataChange
  367. end
  368. object CacheDirectoryChangesCheck: TCheckBox
  369. Left = 12
  370. Top = 42
  371. Width = 230
  372. Height = 17
  373. Anchors = [akLeft, akTop, akRight]
  374. Caption = 'Cache &directory changes'
  375. TabOrder = 1
  376. OnClick = DataChange
  377. end
  378. object ResolveSymlinksCheck: TCheckBox
  379. Left = 12
  380. Top = 65
  381. Width = 369
  382. Height = 17
  383. Anchors = [akLeft, akTop, akRight]
  384. Caption = 'Resolve symbolic li&nks'
  385. TabOrder = 3
  386. end
  387. object PreserveDirectoryChangesCheck: TCheckBox
  388. Left = 251
  389. Top = 42
  390. Width = 139
  391. Height = 17
  392. Anchors = [akTop, akRight]
  393. Caption = '&Permanent cache'
  394. TabOrder = 2
  395. end
  396. object FollowDirectorySymlinksCheck: TCheckBox
  397. Left = 12
  398. Top = 88
  399. Width = 369
  400. Height = 17
  401. Anchors = [akLeft, akTop, akRight]
  402. Caption = '&Follow symbolic links to directories'
  403. TabOrder = 4
  404. end
  405. end
  406. end
  407. object RecycleBinSheet: TTabSheet
  408. Tag = 2
  409. HelpType = htKeyword
  410. HelpKeyword = 'ui_login_recycle_bin'
  411. Caption = 'Recycle bin'
  412. ImageIndex = 15
  413. TabVisible = False
  414. DesignSize = (
  415. 401
  416. 382)
  417. object RecycleBinGroup: TGroupBox
  418. Left = 0
  419. Top = 6
  420. Width = 393
  421. Height = 116
  422. Anchors = [akLeft, akTop, akRight]
  423. Caption = 'Recycle bin'
  424. TabOrder = 0
  425. DesignSize = (
  426. 393
  427. 116)
  428. object RecycleBinPathLabel: TLabel
  429. Left = 12
  430. Top = 66
  431. Width = 95
  432. Height = 13
  433. Caption = '&Remote recycle bin:'
  434. FocusControl = RecycleBinPathEdit
  435. end
  436. object DeleteToRecycleBinCheck: TCheckBox
  437. Left = 12
  438. Top = 19
  439. Width = 370
  440. Height = 17
  441. Anchors = [akLeft, akTop, akRight]
  442. Caption = '&Preserve deleted remote files to recycle bin'
  443. TabOrder = 0
  444. OnClick = DataChange
  445. end
  446. object OverwrittenToRecycleBinCheck: TCheckBox
  447. Left = 12
  448. Top = 42
  449. Width = 370
  450. Height = 17
  451. Anchors = [akLeft, akTop, akRight]
  452. Caption = 'Preserve &overwritten remote files to recycle bin (SFTP only)'
  453. TabOrder = 1
  454. OnClick = DataChange
  455. end
  456. object RecycleBinPathEdit: TEdit
  457. Left = 12
  458. Top = 83
  459. Width = 370
  460. Height = 21
  461. Anchors = [akLeft, akTop, akRight]
  462. MaxLength = 1000
  463. TabOrder = 2
  464. Text = 'RecycleBinPathEdit'
  465. OnChange = DataChange
  466. end
  467. end
  468. end
  469. object EncryptionSheet: TTabSheet
  470. Tag = 2
  471. HelpType = htKeyword
  472. HelpKeyword = 'ui_login_encryption'
  473. Caption = 'Encryption'
  474. TabVisible = False
  475. DesignSize = (
  476. 401
  477. 382)
  478. object EncryptFilesCheck: TCheckBox
  479. Left = 12
  480. Top = 8
  481. Width = 382
  482. Height = 17
  483. Anchors = [akLeft, akTop, akRight]
  484. Caption = '&Encrypt files'
  485. TabOrder = 0
  486. OnClick = DataChange
  487. end
  488. object EncryptFilesGroup: TGroupBox
  489. Left = 0
  490. Top = 32
  491. Width = 393
  492. Height = 121
  493. Anchors = [akLeft, akTop, akRight]
  494. Caption = 'Encryption options'
  495. TabOrder = 1
  496. object Label13: TLabel
  497. Left = 12
  498. Top = 18
  499. Width = 75
  500. Height = 13
  501. Caption = 'Encryption &key:'
  502. FocusControl = EncryptKeyPasswordEdit
  503. end
  504. object EncryptKeyVisibleEdit: TEdit
  505. Left = 12
  506. Top = 34
  507. Width = 370
  508. Height = 21
  509. MaxLength = 64
  510. TabOrder = 1
  511. Text = 'EncryptKeyVisibleEdit'
  512. Visible = False
  513. OnChange = DataChange
  514. OnExit = EncryptKeyEditExit
  515. end
  516. object EncryptKeyPasswordEdit: TPasswordEdit
  517. Left = 12
  518. Top = 34
  519. Width = 370
  520. Height = 21
  521. MaxLength = 64
  522. TabOrder = 0
  523. Text = 'EncryptKeyPasswordEdit'
  524. OnChange = DataChange
  525. OnExit = EncryptKeyEditExit
  526. end
  527. object ShowEncryptionKeyCheck: TCheckBox
  528. Left = 12
  529. Top = 61
  530. Width = 97
  531. Height = 17
  532. Caption = '&Show key'
  533. TabOrder = 2
  534. OnClick = ShowEncryptionKeyCheckClick
  535. end
  536. object GenerateKeyButton: TButton
  537. Left = 12
  538. Top = 84
  539. Width = 117
  540. Height = 25
  541. Caption = '&Generate Key'
  542. TabOrder = 3
  543. OnClick = GenerateKeyButtonClick
  544. end
  545. end
  546. end
  547. object SftpSheet: TTabSheet
  548. Tag = 2
  549. HelpType = htKeyword
  550. HelpKeyword = 'ui_login_sftp'
  551. Caption = 'SFTP'
  552. ImageIndex = 12
  553. TabVisible = False
  554. DesignSize = (
  555. 401
  556. 382)
  557. object SFTPBugsGroupBox: TGroupBox
  558. Left = 0
  559. Top = 130
  560. Width = 393
  561. Height = 70
  562. Anchors = [akLeft, akTop, akRight]
  563. Caption = 'Detection of known bugs in SFTP servers'
  564. TabOrder = 1
  565. DesignSize = (
  566. 393
  567. 70)
  568. object Label10: TLabel
  569. Left = 12
  570. Top = 20
  571. Width = 211
  572. Height = 13
  573. Caption = '&Reverses order of link command arguments:'
  574. FocusControl = SFTPBugSymlinkCombo
  575. end
  576. object Label36: TLabel
  577. Left = 12
  578. Top = 44
  579. Width = 205
  580. Height = 13
  581. Caption = '&Misinterprets file timestamps prior to 1970:'
  582. FocusControl = SFTPBugSignedTSCombo
  583. end
  584. object SFTPBugSymlinkCombo: TComboBox
  585. Left = 320
  586. Top = 15
  587. Width = 61
  588. Height = 21
  589. Style = csDropDownList
  590. Anchors = [akTop, akRight]
  591. TabOrder = 0
  592. end
  593. object SFTPBugSignedTSCombo: TComboBox
  594. Left = 320
  595. Top = 39
  596. Width = 61
  597. Height = 21
  598. Style = csDropDownList
  599. Anchors = [akTop, akRight]
  600. TabOrder = 1
  601. end
  602. end
  603. object SFTPProtocolGroup: TGroupBox
  604. Left = 0
  605. Top = 6
  606. Width = 393
  607. Height = 118
  608. Anchors = [akLeft, akTop, akRight]
  609. Caption = 'Protocol options'
  610. TabOrder = 0
  611. DesignSize = (
  612. 393
  613. 118)
  614. object Label34: TLabel
  615. Left = 12
  616. Top = 44
  617. Width = 157
  618. Height = 13
  619. Caption = '&Preferred SFTP protocol version:'
  620. FocusControl = SFTPMaxVersionCombo
  621. end
  622. object Label23: TLabel
  623. Left = 12
  624. Top = 20
  625. Width = 62
  626. Height = 13
  627. Caption = 'SFTP ser&ver:'
  628. FocusControl = SftpServerEdit
  629. end
  630. object Label5: TLabel
  631. Left = 12
  632. Top = 68
  633. Width = 157
  634. Height = 13
  635. Caption = '&Canonicalize paths on the server'
  636. FocusControl = SFTPRealPathCombo
  637. end
  638. object SFTPMaxVersionCombo: TComboBox
  639. Left = 320
  640. Top = 39
  641. Width = 61
  642. Height = 21
  643. Style = csDropDownList
  644. Anchors = [akTop, akRight]
  645. TabOrder = 1
  646. Items.Strings = (
  647. '0'
  648. '1'
  649. '2'
  650. '3'
  651. '4'
  652. '5'
  653. '6')
  654. end
  655. object SftpServerEdit: TComboBox
  656. Left = 149
  657. Top = 15
  658. Width = 232
  659. Height = 21
  660. AutoComplete = False
  661. Anchors = [akLeft, akTop, akRight]
  662. MaxLength = 255
  663. TabOrder = 0
  664. Text = 'SftpServerEdit'
  665. OnChange = DataChange
  666. Items.Strings = (
  667. 'Default'
  668. '/bin/sftp-server'
  669. 'sudo su -c /bin/sftp-server')
  670. end
  671. object AllowScpFallbackCheck: TCheckBox
  672. Left = 12
  673. Top = 90
  674. Width = 369
  675. Height = 17
  676. Anchors = [akLeft, akTop, akRight]
  677. Caption = 'Allow SCP &fallback'
  678. TabOrder = 3
  679. OnClick = DataChange
  680. end
  681. object SFTPRealPathCombo: TComboBox
  682. Left = 320
  683. Top = 63
  684. Width = 61
  685. Height = 21
  686. Style = csDropDownList
  687. Anchors = [akTop, akRight]
  688. TabOrder = 2
  689. end
  690. end
  691. end
  692. object ScpSheet: TTabSheet
  693. Tag = 2
  694. HelpType = htKeyword
  695. HelpKeyword = 'ui_login_scp'
  696. Caption = 'SCP/ShellX'
  697. ImageIndex = 3
  698. TabVisible = False
  699. DesignSize = (
  700. 401
  701. 382)
  702. object OtherShellOptionsGroup: TGroupBox
  703. Left = 0
  704. Top = 161
  705. Width = 393
  706. Height = 69
  707. Anchors = [akLeft, akTop, akRight]
  708. Caption = 'Other options'
  709. TabOrder = 2
  710. DesignSize = (
  711. 393
  712. 69)
  713. object LookupUserGroupsCheck: TCheckBox
  714. Left = 12
  715. Top = 19
  716. Width = 140
  717. Height = 17
  718. AllowGrayed = True
  719. Caption = 'Lookup &user groups'
  720. TabOrder = 0
  721. OnClick = DataChange
  722. end
  723. object ClearAliasesCheck: TCheckBox
  724. Left = 12
  725. Top = 42
  726. Width = 140
  727. Height = 17
  728. Caption = 'Clear a&liases'
  729. TabOrder = 2
  730. OnClick = DataChange
  731. end
  732. object UnsetNationalVarsCheck: TCheckBox
  733. Left = 168
  734. Top = 19
  735. Width = 213
  736. Height = 17
  737. Anchors = [akLeft, akTop, akRight]
  738. Caption = 'Clear &national variables'
  739. TabOrder = 1
  740. OnClick = DataChange
  741. end
  742. object Scp1CompatibilityCheck: TCheckBox
  743. Left = 168
  744. Top = 42
  745. Width = 213
  746. Height = 17
  747. Anchors = [akLeft, akTop, akRight]
  748. Caption = 'Use scp&2 with scp1 compatibility'
  749. TabOrder = 3
  750. OnClick = DataChange
  751. end
  752. end
  753. object ShellGroup: TGroupBox
  754. Left = 0
  755. Top = 6
  756. Width = 393
  757. Height = 70
  758. Anchors = [akLeft, akTop, akRight]
  759. Caption = 'Shell'
  760. TabOrder = 0
  761. DesignSize = (
  762. 393
  763. 70)
  764. object Label19: TLabel
  765. Left = 12
  766. Top = 20
  767. Width = 26
  768. Height = 13
  769. Caption = 'S&hell:'
  770. FocusControl = ShellEdit
  771. end
  772. object Label20: TLabel
  773. Left = 12
  774. Top = 44
  775. Width = 104
  776. Height = 13
  777. Caption = '&Return code variable:'
  778. FocusControl = ReturnVarEdit
  779. end
  780. object ShellEdit: TComboBox
  781. Left = 168
  782. Top = 15
  783. Width = 213
  784. Height = 21
  785. AutoComplete = False
  786. Anchors = [akLeft, akTop, akRight]
  787. MaxLength = 50
  788. TabOrder = 0
  789. Text = 'ShellEdit'
  790. Items.Strings = (
  791. 'Default'
  792. '/bin/bash'
  793. '/bin/ksh'
  794. '/bin/sh'
  795. 'sudo su -')
  796. end
  797. object ReturnVarEdit: TComboBox
  798. Left = 168
  799. Top = 39
  800. Width = 213
  801. Height = 21
  802. AutoComplete = False
  803. Anchors = [akLeft, akTop, akRight]
  804. MaxLength = 50
  805. TabOrder = 1
  806. Text = 'ReturnVarEdit'
  807. Items.Strings = (
  808. 'Autodetect'
  809. '?'
  810. 'status')
  811. end
  812. end
  813. object ScpLsOptionsGroup: TGroupBox
  814. Left = 0
  815. Top = 84
  816. Width = 393
  817. Height = 69
  818. Anchors = [akLeft, akTop, akRight]
  819. Caption = 'Directory listing'
  820. TabOrder = 1
  821. DesignSize = (
  822. 393
  823. 69)
  824. object Label9: TLabel
  825. Left = 12
  826. Top = 20
  827. Width = 82
  828. Height = 13
  829. Caption = 'Listing &command:'
  830. FocusControl = ListingCommandEdit
  831. end
  832. object IgnoreLsWarningsCheck: TCheckBox
  833. Left = 12
  834. Top = 42
  835. Width = 140
  836. Height = 17
  837. Caption = 'Ignore LS &warnings'
  838. TabOrder = 1
  839. OnClick = DataChange
  840. end
  841. object SCPLsFullTimeAutoCheck: TCheckBox
  842. Left = 168
  843. Top = 42
  844. Width = 217
  845. Height = 17
  846. Anchors = [akLeft, akTop, akRight]
  847. Caption = 'Try to get &full timestamp'
  848. TabOrder = 2
  849. OnClick = DataChange
  850. end
  851. object ListingCommandEdit: TComboBox
  852. Left = 168
  853. Top = 15
  854. Width = 213
  855. Height = 21
  856. AutoComplete = False
  857. Anchors = [akLeft, akTop, akRight]
  858. MaxLength = 50
  859. TabOrder = 0
  860. Text = 'ListingCommandEdit'
  861. Items.Strings = (
  862. 'ls -la'
  863. 'ls -gla')
  864. end
  865. end
  866. end
  867. object FtpSheet: TTabSheet
  868. Tag = 2
  869. HelpType = htKeyword
  870. HelpKeyword = 'ui_login_ftp'
  871. Caption = 'FTP'
  872. ImageIndex = 16
  873. TabVisible = False
  874. DesignSize = (
  875. 401
  876. 382)
  877. object FtpGroup: TGroupBox
  878. Left = 0
  879. Top = 6
  880. Width = 393
  881. Height = 251
  882. Anchors = [akLeft, akTop, akRight]
  883. Caption = 'Protocol options'
  884. TabOrder = 0
  885. DesignSize = (
  886. 393
  887. 251)
  888. object Label25: TLabel
  889. Left = 12
  890. Top = 42
  891. Width = 103
  892. Height = 13
  893. Caption = 'Post login &commands:'
  894. FocusControl = PostLoginCommandsMemo
  895. end
  896. object FtpListAllLabel: TLabel
  897. Left = 12
  898. Top = 148
  899. Width = 159
  900. Height = 13
  901. Caption = '&Support for listing of hidden files:'
  902. FocusControl = FtpListAllCombo
  903. end
  904. object Label24: TLabel
  905. Left = 12
  906. Top = 124
  907. Width = 188
  908. Height = 13
  909. Caption = 'Use &MLSD command for directory listing'
  910. FocusControl = FtpUseMlsdCombo
  911. end
  912. object FtpForcePasvIpLabel: TLabel
  913. Left = 12
  914. Top = 172
  915. Width = 230
  916. Height = 13
  917. Caption = '&Force IP address for passive mode connections:'
  918. FocusControl = FtpForcePasvIpCombo
  919. end
  920. object FtpAccountLabel: TLabel
  921. Left = 12
  922. Top = 20
  923. Width = 43
  924. Height = 13
  925. Caption = '&Account:'
  926. FocusControl = FtpAccountEdit
  927. end
  928. object Label3: TLabel
  929. Left = 12
  930. Top = 196
  931. Width = 232
  932. Height = 13
  933. Caption = 'Use &HOST command to select host on the server'
  934. FocusControl = FtpHostCombo
  935. end
  936. object PostLoginCommandsMemo: TMemo
  937. Left = 12
  938. Top = 59
  939. Width = 369
  940. Height = 53
  941. Anchors = [akLeft, akTop, akRight]
  942. ScrollBars = ssVertical
  943. TabOrder = 1
  944. end
  945. object FtpListAllCombo: TComboBox
  946. Left = 320
  947. Top = 143
  948. Width = 61
  949. Height = 21
  950. Style = csDropDownList
  951. Anchors = [akTop, akRight]
  952. TabOrder = 3
  953. OnChange = DataChange
  954. end
  955. object FtpForcePasvIpCombo: TComboBox
  956. Left = 320
  957. Top = 167
  958. Width = 61
  959. Height = 21
  960. Style = csDropDownList
  961. Anchors = [akTop, akRight]
  962. TabOrder = 4
  963. OnChange = DataChange
  964. end
  965. object FtpUseMlsdCombo: TComboBox
  966. Left = 320
  967. Top = 119
  968. Width = 61
  969. Height = 21
  970. Style = csDropDownList
  971. Anchors = [akTop, akRight]
  972. TabOrder = 2
  973. OnChange = DataChange
  974. end
  975. object FtpAccountEdit: TEdit
  976. Left = 128
  977. Top = 15
  978. Width = 253
  979. Height = 21
  980. Anchors = [akLeft, akTop, akRight]
  981. MaxLength = 100
  982. TabOrder = 0
  983. Text = 'FtpAccountEdit'
  984. OnChange = DataChange
  985. end
  986. object FtpHostCombo: TComboBox
  987. Left = 320
  988. Top = 191
  989. Width = 61
  990. Height = 21
  991. Style = csDropDownList
  992. Anchors = [akTop, akRight]
  993. TabOrder = 5
  994. OnChange = DataChange
  995. end
  996. object VMSAllRevisionsCheck: TCheckBox
  997. Left = 12
  998. Top = 220
  999. Width = 309
  1000. Height = 17
  1001. Caption = 'Display all file &revisions on VMS servers'
  1002. TabOrder = 6
  1003. end
  1004. end
  1005. end
  1006. object S3Sheet: TTabSheet
  1007. Tag = 2
  1008. HelpType = htKeyword
  1009. HelpKeyword = 'ui_login_s3'
  1010. Caption = 'S3'
  1011. ImageIndex = 16
  1012. TabVisible = False
  1013. DesignSize = (
  1014. 401
  1015. 382)
  1016. object S3Group: TGroupBox
  1017. Left = 0
  1018. Top = 6
  1019. Width = 393
  1020. Height = 70
  1021. Anchors = [akLeft, akTop, akRight]
  1022. Caption = 'Protocol options'
  1023. TabOrder = 0
  1024. DesignSize = (
  1025. 393
  1026. 70)
  1027. object Label27: TLabel
  1028. Left = 12
  1029. Top = 20
  1030. Width = 72
  1031. Height = 13
  1032. Caption = '&Default region:'
  1033. FocusControl = S3DefaultReqionCombo
  1034. end
  1035. object S3UrlStyleLabel: TLabel
  1036. Left = 12
  1037. Top = 44
  1038. Width = 49
  1039. Height = 13
  1040. Caption = '&URL style:'
  1041. FocusControl = S3UrlStyleCombo
  1042. end
  1043. object S3DefaultReqionCombo: TComboBox
  1044. Left = 168
  1045. Top = 15
  1046. Width = 213
  1047. Height = 21
  1048. Anchors = [akLeft, akTop, akRight]
  1049. MaxLength = 32
  1050. TabOrder = 0
  1051. Text = 'S3DefaultRegionCombo'
  1052. OnChange = DataChange
  1053. Items.Strings = (
  1054. 'af-south-1'
  1055. 'ap-east-1'
  1056. 'ap-northeast-1'
  1057. 'ap-northeast-2'
  1058. 'ap-northeast-3'
  1059. 'ap-south-1'
  1060. 'ap-southeast-1'
  1061. 'ap-southeast-2'
  1062. 'ca-central-1'
  1063. 'cn-north-1'
  1064. 'cn-northwest-1'
  1065. 'eu-central-1'
  1066. 'eu-north-1'
  1067. 'eu-south-1'
  1068. 'eu-west-1'
  1069. 'eu-west-2'
  1070. 'eu-west-3'
  1071. 'me-south-1'
  1072. 'sa-east-1'
  1073. 'us-east-1'
  1074. 'us-east-2'
  1075. 'us-gov-east-1'
  1076. 'us-gov-west-1'
  1077. 'us-west-1'
  1078. 'us-west-2')
  1079. end
  1080. object S3UrlStyleCombo: TComboBox
  1081. Left = 168
  1082. Top = 39
  1083. Width = 213
  1084. Height = 21
  1085. AutoComplete = False
  1086. Style = csDropDownList
  1087. Anchors = [akLeft, akTop, akRight]
  1088. MaxLength = 50
  1089. TabOrder = 1
  1090. Items.Strings = (
  1091. 'Virtual Host'
  1092. 'Path')
  1093. end
  1094. end
  1095. object S3AuthenticationGroup: TGroupBox
  1096. Left = 1
  1097. Top = 82
  1098. Width = 393
  1099. Height = 143
  1100. Anchors = [akLeft, akTop, akRight]
  1101. Caption = 'Authentication'
  1102. TabOrder = 1
  1103. DesignSize = (
  1104. 393
  1105. 143)
  1106. object S3SessionTokenLabel: TLabel
  1107. Left = 12
  1108. Top = 20
  1109. Width = 70
  1110. Height = 13
  1111. Caption = '&Session token:'
  1112. end
  1113. object S3SessionTokenMemo: TMemo
  1114. Left = 11
  1115. Top = 36
  1116. Width = 371
  1117. Height = 93
  1118. Anchors = [akLeft, akTop, akRight, akBottom]
  1119. MaxLength = 10000
  1120. TabOrder = 0
  1121. OnChange = DataChange
  1122. OnKeyDown = NoteMemoKeyDown
  1123. end
  1124. end
  1125. end
  1126. object WebDavSheet: TTabSheet
  1127. Tag = 2
  1128. HelpType = htKeyword
  1129. HelpKeyword = 'ui_login_webdav'
  1130. Caption = 'WebDAV'
  1131. ImageIndex = 17
  1132. TabVisible = False
  1133. DesignSize = (
  1134. 401
  1135. 382)
  1136. object WebdavGroup: TGroupBox
  1137. Left = 0
  1138. Top = 6
  1139. Width = 393
  1140. Height = 46
  1141. Anchors = [akLeft, akTop, akRight]
  1142. Caption = 'Protocol options'
  1143. TabOrder = 0
  1144. DesignSize = (
  1145. 393
  1146. 46)
  1147. object WebDavLiberalEscapingCheck: TCheckBox
  1148. Left = 12
  1149. Top = 19
  1150. Width = 369
  1151. Height = 17
  1152. Anchors = [akLeft, akTop, akRight]
  1153. Caption = '&Tolerate non-encoded special characters in filenames'
  1154. TabOrder = 0
  1155. OnClick = DataChange
  1156. end
  1157. end
  1158. end
  1159. object ConnSheet: TTabSheet
  1160. Tag = 1
  1161. HelpType = htKeyword
  1162. HelpKeyword = 'ui_login_connection'
  1163. Caption = 'Connection'
  1164. ImageIndex = 7
  1165. TabVisible = False
  1166. DesignSize = (
  1167. 401
  1168. 382)
  1169. object FtpPingGroup: TGroupBox
  1170. Left = 0
  1171. Top = 132
  1172. Width = 393
  1173. Height = 117
  1174. Anchors = [akLeft, akTop, akRight]
  1175. Caption = 'Keepalives'
  1176. TabOrder = 3
  1177. DesignSize = (
  1178. 393
  1179. 117)
  1180. object FtpPingIntervalLabel: TLabel
  1181. Left = 12
  1182. Top = 90
  1183. Width = 142
  1184. Height = 13
  1185. Caption = 'Seconds &between keepalives:'
  1186. FocusControl = FtpPingIntervalSecEdit
  1187. end
  1188. object FtpPingIntervalSecEdit: TUpDownEdit
  1189. Left = 208
  1190. Top = 85
  1191. Width = 73
  1192. Height = 21
  1193. Alignment = taRightJustify
  1194. MaxValue = 3600.000000000000000000
  1195. MinValue = 1.000000000000000000
  1196. MaxLength = 4
  1197. TabOrder = 3
  1198. OnChange = DataChange
  1199. end
  1200. object FtpPingOffButton: TRadioButton
  1201. Left = 12
  1202. Top = 19
  1203. Width = 365
  1204. Height = 17
  1205. Anchors = [akLeft, akTop, akRight]
  1206. Caption = '&Off'
  1207. TabOrder = 0
  1208. OnClick = DataChange
  1209. end
  1210. object FtpPingNullPacketButton: TRadioButton
  1211. Left = 12
  1212. Top = 42
  1213. Width = 365
  1214. Height = 17
  1215. Anchors = [akLeft, akTop, akRight]
  1216. Caption = 'Sending of &null SSH packets'
  1217. Enabled = False
  1218. TabOrder = 1
  1219. OnClick = DataChange
  1220. end
  1221. object FtpPingDummyCommandButton: TRadioButton
  1222. Left = 12
  1223. Top = 65
  1224. Width = 365
  1225. Height = 17
  1226. Anchors = [akLeft, akTop, akRight]
  1227. Caption = 'Executing &dummy protocol commands'
  1228. TabOrder = 2
  1229. OnClick = DataChange
  1230. end
  1231. end
  1232. object TimeoutGroup: TGroupBox
  1233. Left = 0
  1234. Top = 80
  1235. Width = 393
  1236. Height = 46
  1237. Anchors = [akLeft, akTop, akRight]
  1238. Caption = 'Timeouts'
  1239. TabOrder = 1
  1240. DesignSize = (
  1241. 393
  1242. 46)
  1243. object Label11: TLabel
  1244. Left = 12
  1245. Top = 19
  1246. Width = 122
  1247. Height = 13
  1248. Caption = 'Server &response timeout:'
  1249. FocusControl = TimeoutEdit
  1250. end
  1251. object Label12: TLabel
  1252. Left = 334
  1253. Top = 19
  1254. Width = 39
  1255. Height = 13
  1256. Anchors = [akTop, akRight]
  1257. Caption = 'seconds'
  1258. FocusControl = TimeoutEdit
  1259. end
  1260. object TimeoutEdit: TUpDownEdit
  1261. Left = 256
  1262. Top = 14
  1263. Width = 73
  1264. Height = 21
  1265. Alignment = taRightJustify
  1266. Increment = 5.000000000000000000
  1267. MaxValue = 6000.000000000000000000
  1268. MinValue = 5.000000000000000000
  1269. Anchors = [akTop, akRight]
  1270. MaxLength = 4
  1271. TabOrder = 0
  1272. OnChange = DataChange
  1273. end
  1274. end
  1275. object PingGroup: TGroupBox
  1276. Left = 0
  1277. Top = 132
  1278. Width = 393
  1279. Height = 117
  1280. Anchors = [akLeft, akTop, akRight]
  1281. Caption = 'Keepalives'
  1282. TabOrder = 2
  1283. DesignSize = (
  1284. 393
  1285. 117)
  1286. object PingIntervalLabel: TLabel
  1287. Left = 12
  1288. Top = 90
  1289. Width = 142
  1290. Height = 13
  1291. Caption = 'Seconds &between keepalives:'
  1292. FocusControl = PingIntervalSecEdit
  1293. end
  1294. object PingIntervalSecEdit: TUpDownEdit
  1295. Left = 256
  1296. Top = 85
  1297. Width = 73
  1298. Height = 21
  1299. Alignment = taRightJustify
  1300. MaxValue = 3600.000000000000000000
  1301. MinValue = 1.000000000000000000
  1302. Anchors = [akTop, akRight]
  1303. MaxLength = 4
  1304. TabOrder = 3
  1305. OnChange = DataChange
  1306. end
  1307. object PingOffButton: TRadioButton
  1308. Left = 12
  1309. Top = 19
  1310. Width = 365
  1311. Height = 17
  1312. Anchors = [akLeft, akTop, akRight]
  1313. Caption = '&Off'
  1314. TabOrder = 0
  1315. OnClick = DataChange
  1316. end
  1317. object PingNullPacketButton: TRadioButton
  1318. Left = 12
  1319. Top = 42
  1320. Width = 365
  1321. Height = 17
  1322. Anchors = [akLeft, akTop, akRight]
  1323. Caption = 'Sending of &null SSH packets'
  1324. TabOrder = 1
  1325. OnClick = DataChange
  1326. end
  1327. object PingDummyCommandButton: TRadioButton
  1328. Left = 12
  1329. Top = 65
  1330. Width = 365
  1331. Height = 17
  1332. Anchors = [akLeft, akTop, akRight]
  1333. Caption = 'Executing &dummy protocol commands'
  1334. TabOrder = 2
  1335. OnClick = DataChange
  1336. end
  1337. end
  1338. object IPvGroup: TGroupBox
  1339. Left = 0
  1340. Top = 255
  1341. Width = 393
  1342. Height = 46
  1343. Anchors = [akLeft, akTop, akRight]
  1344. Caption = 'Internet protocol version'
  1345. TabOrder = 4
  1346. object IPAutoButton: TRadioButton
  1347. Left = 12
  1348. Top = 19
  1349. Width = 101
  1350. Height = 17
  1351. Caption = 'A&uto'
  1352. TabOrder = 0
  1353. OnClick = DataChange
  1354. end
  1355. object IPv4Button: TRadioButton
  1356. Left = 124
  1357. Top = 19
  1358. Width = 101
  1359. Height = 17
  1360. Caption = 'IPv&4'
  1361. TabOrder = 1
  1362. OnClick = DataChange
  1363. end
  1364. object IPv6Button: TRadioButton
  1365. Left = 236
  1366. Top = 19
  1367. Width = 101
  1368. Height = 17
  1369. Caption = 'IPv&6'
  1370. TabOrder = 2
  1371. OnClick = DataChange
  1372. end
  1373. end
  1374. object ConnectionGroup: TGroupBox
  1375. Left = 0
  1376. Top = 6
  1377. Width = 393
  1378. Height = 69
  1379. Anchors = [akLeft, akTop, akRight]
  1380. Caption = 'Connection'
  1381. TabOrder = 0
  1382. DesignSize = (
  1383. 393
  1384. 69)
  1385. object FtpPasvModeCheck: TCheckBox
  1386. Left = 12
  1387. Top = 19
  1388. Width = 369
  1389. Height = 17
  1390. Anchors = [akLeft, akTop, akRight]
  1391. Caption = '&Passive mode'
  1392. TabOrder = 0
  1393. OnClick = DataChange
  1394. end
  1395. object BufferSizeCheck: TCheckBox
  1396. Left = 12
  1397. Top = 42
  1398. Width = 369
  1399. Height = 17
  1400. Anchors = [akLeft, akTop, akRight]
  1401. Caption = 'Optimize connection &buffer size'
  1402. TabOrder = 1
  1403. OnClick = DataChange
  1404. end
  1405. end
  1406. end
  1407. object ProxySheet: TTabSheet
  1408. Tag = 2
  1409. HelpType = htKeyword
  1410. HelpKeyword = 'ui_login_proxy'
  1411. Caption = 'Proxy'
  1412. ImageIndex = 8
  1413. TabVisible = False
  1414. DesignSize = (
  1415. 401
  1416. 382)
  1417. object ProxyTypeGroup: TGroupBox
  1418. Left = 0
  1419. Top = 6
  1420. Width = 393
  1421. Height = 164
  1422. Anchors = [akLeft, akTop, akRight]
  1423. Caption = 'Proxy'
  1424. TabOrder = 0
  1425. DesignSize = (
  1426. 393
  1427. 164)
  1428. object ProxyMethodLabel: TLabel
  1429. Left = 12
  1430. Top = 20
  1431. Width = 57
  1432. Height = 13
  1433. Caption = 'Proxy &type:'
  1434. FocusControl = SshProxyMethodCombo
  1435. end
  1436. object ProxyHostLabel: TLabel
  1437. Left = 12
  1438. Top = 41
  1439. Width = 85
  1440. Height = 13
  1441. Caption = 'Pro&xy host name:'
  1442. FocusControl = ProxyHostEdit
  1443. end
  1444. object ProxyPortLabel: TLabel
  1445. Left = 284
  1446. Top = 41
  1447. Width = 63
  1448. Height = 13
  1449. Anchors = [akTop, akRight]
  1450. Caption = 'Po&rt number:'
  1451. FocusControl = ProxyPortEdit
  1452. end
  1453. object ProxyUsernameLabel: TLabel
  1454. Left = 12
  1455. Top = 85
  1456. Width = 55
  1457. Height = 13
  1458. Caption = '&User name:'
  1459. FocusControl = ProxyUsernameEdit
  1460. end
  1461. object ProxyPasswordLabel: TLabel
  1462. Left = 200
  1463. Top = 85
  1464. Width = 50
  1465. Height = 13
  1466. Caption = '&Password:'
  1467. FocusControl = ProxyPasswordEdit
  1468. end
  1469. object SshProxyMethodCombo: TComboBox
  1470. Left = 128
  1471. Top = 15
  1472. Width = 110
  1473. Height = 21
  1474. Style = csDropDownList
  1475. TabOrder = 0
  1476. OnChange = DataChange
  1477. Items.Strings = (
  1478. 'None'
  1479. 'SOCKS4'
  1480. 'SOCKS5'
  1481. 'HTTP'
  1482. 'Telnet'
  1483. 'Local')
  1484. end
  1485. object ProxyPortEdit: TUpDownEdit
  1486. Left = 284
  1487. Top = 58
  1488. Width = 98
  1489. Height = 21
  1490. Alignment = taRightJustify
  1491. MaxValue = 65535.000000000000000000
  1492. MinValue = 1.000000000000000000
  1493. Anchors = [akTop, akRight]
  1494. TabOrder = 4
  1495. OnChange = DataChange
  1496. end
  1497. object ProxyHostEdit: TEdit
  1498. Left = 12
  1499. Top = 58
  1500. Width = 266
  1501. Height = 21
  1502. Anchors = [akLeft, akTop, akRight]
  1503. MaxLength = 255
  1504. TabOrder = 3
  1505. Text = 'ProxyHostEdit'
  1506. OnChange = DataChange
  1507. end
  1508. object ProxyUsernameEdit: TEdit
  1509. Left = 12
  1510. Top = 102
  1511. Width = 182
  1512. Height = 21
  1513. MaxLength = 100
  1514. TabOrder = 5
  1515. Text = 'ProxyUsernameEdit'
  1516. OnChange = DataChange
  1517. end
  1518. object ProxyPasswordEdit: TPasswordEdit
  1519. Left = 200
  1520. Top = 102
  1521. Width = 182
  1522. Height = 21
  1523. Anchors = [akLeft, akTop, akRight]
  1524. MaxLength = 100
  1525. TabOrder = 6
  1526. Text = 'ProxyPasswordEdit'
  1527. OnChange = DataChange
  1528. end
  1529. object FtpProxyMethodCombo: TComboBox
  1530. Left = 128
  1531. Top = 15
  1532. Width = 254
  1533. Height = 21
  1534. Style = csDropDownList
  1535. Anchors = [akLeft, akTop, akRight]
  1536. DropDownCount = 12
  1537. TabOrder = 1
  1538. OnChange = DataChange
  1539. Items.Strings = (
  1540. 'None'
  1541. 'SOCKS4'
  1542. 'SOCKS5'
  1543. 'HTTP'
  1544. 'SITE %host'
  1545. 'USER %proxyuser, USER %user@%host'
  1546. 'OPEN %host'
  1547. 'USER %proxyuser, USER %user'
  1548. 'USER %user@%host'
  1549. 'USER %proxyuser@%host'
  1550. 'USER %user@%host %proxyuser'
  1551. 'USER %user@%proxyuser@%host')
  1552. end
  1553. object NeonProxyMethodCombo: TComboBox
  1554. Left = 128
  1555. Top = 15
  1556. Width = 110
  1557. Height = 21
  1558. Style = csDropDownList
  1559. TabOrder = 2
  1560. OnChange = DataChange
  1561. Items.Strings = (
  1562. 'None'
  1563. 'SOCKS4'
  1564. 'SOCKS5'
  1565. 'HTTP')
  1566. end
  1567. object ProxyAutodetectButton: TButton
  1568. Left = 12
  1569. Top = 129
  1570. Width = 100
  1571. Height = 25
  1572. Caption = '&Autodetect'
  1573. TabOrder = 7
  1574. OnClick = ProxyAutodetectButtonClick
  1575. end
  1576. end
  1577. object ProxySettingsGroup: TGroupBox
  1578. Left = 0
  1579. Top = 176
  1580. Width = 393
  1581. Height = 128
  1582. Anchors = [akLeft, akTop, akRight]
  1583. Caption = 'Proxy settings'
  1584. TabOrder = 1
  1585. DesignSize = (
  1586. 393
  1587. 128)
  1588. object ProxyTelnetCommandLabel: TLabel
  1589. Left = 12
  1590. Top = 18
  1591. Width = 82
  1592. Height = 13
  1593. Caption = 'Telnet co&mmand:'
  1594. FocusControl = ProxyTelnetCommandEdit
  1595. end
  1596. object Label17: TLabel
  1597. Left = 12
  1598. Top = 99
  1599. Width = 168
  1600. Height = 13
  1601. Caption = 'Do &DNS name lookup at proxy end:'
  1602. FocusControl = ProxyDNSCombo
  1603. end
  1604. object ProxyLocalCommandLabel: TLabel
  1605. Left = 12
  1606. Top = 18
  1607. Width = 107
  1608. Height = 13
  1609. Caption = 'Local proxy co&mmand:'
  1610. FocusControl = ProxyLocalCommandEdit
  1611. end
  1612. object ProxyTelnetCommandEdit: TEdit
  1613. Left = 12
  1614. Top = 35
  1615. Width = 370
  1616. Height = 21
  1617. Anchors = [akLeft, akTop, akRight]
  1618. MaxLength = 255
  1619. TabOrder = 0
  1620. Text = 'ProxyTelnetCommandEdit'
  1621. OnChange = DataChange
  1622. end
  1623. object ProxyLocalhostCheck: TCheckBox
  1624. Left = 12
  1625. Top = 77
  1626. Width = 370
  1627. Height = 17
  1628. Anchors = [akLeft, akTop, akRight]
  1629. Caption = 'Co&nsider proxying local host connections'
  1630. TabOrder = 5
  1631. end
  1632. object ProxyDNSCombo: TComboBox
  1633. Left = 252
  1634. Top = 94
  1635. Width = 130
  1636. Height = 21
  1637. Style = csDropDownList
  1638. Anchors = [akLeft, akTop, akRight]
  1639. TabOrder = 6
  1640. Items.Strings = (
  1641. 'Auto'
  1642. 'No'
  1643. 'Yes')
  1644. end
  1645. object ProxyLocalCommandEdit: TEdit
  1646. Left = 12
  1647. Top = 35
  1648. Width = 274
  1649. Height = 21
  1650. Anchors = [akLeft, akTop, akRight]
  1651. TabOrder = 2
  1652. Text = 'ProxyLocalCommandEdit'
  1653. OnChange = DataChange
  1654. end
  1655. object ProxyLocalCommandBrowseButton: TButton
  1656. Left = 300
  1657. Top = 33
  1658. Width = 82
  1659. Height = 25
  1660. Anchors = [akTop, akRight]
  1661. Caption = '&Browse...'
  1662. TabOrder = 3
  1663. OnClick = ProxyLocalCommandBrowseButtonClick
  1664. end
  1665. object ProxyTelnetCommandHintText: TStaticText
  1666. Left = 303
  1667. Top = 58
  1668. Width = 79
  1669. Height = 16
  1670. Alignment = taRightJustify
  1671. Anchors = [akTop, akRight]
  1672. AutoSize = False
  1673. Caption = 'patterns'
  1674. TabOrder = 1
  1675. TabStop = True
  1676. end
  1677. object ProxyLocalCommandHintText: TStaticText
  1678. Left = 207
  1679. Top = 58
  1680. Width = 79
  1681. Height = 16
  1682. Alignment = taRightJustify
  1683. Anchors = [akTop, akRight]
  1684. AutoSize = False
  1685. Caption = 'patterns'
  1686. TabOrder = 4
  1687. TabStop = True
  1688. end
  1689. end
  1690. end
  1691. object TunnelSheet: TTabSheet
  1692. Tag = 2
  1693. HelpType = htKeyword
  1694. HelpKeyword = 'ui_login_tunnel'
  1695. Caption = 'Tunnel'
  1696. ImageIndex = 14
  1697. TabVisible = False
  1698. DesignSize = (
  1699. 401
  1700. 382)
  1701. object TunnelSessionGroup: TGroupBox
  1702. Left = 0
  1703. Top = 32
  1704. Width = 393
  1705. Height = 118
  1706. Anchors = [akLeft, akTop, akRight]
  1707. Caption = 'Host to setup tunnel on'
  1708. TabOrder = 1
  1709. DesignSize = (
  1710. 393
  1711. 118)
  1712. object Label6: TLabel
  1713. Left = 12
  1714. Top = 18
  1715. Width = 55
  1716. Height = 13
  1717. Caption = '&Host name:'
  1718. FocusControl = TunnelHostNameEdit
  1719. end
  1720. object Label14: TLabel
  1721. Left = 284
  1722. Top = 18
  1723. Width = 63
  1724. Height = 13
  1725. Anchors = [akTop, akRight]
  1726. Caption = 'Po&rt number:'
  1727. FocusControl = TunnelPortNumberEdit
  1728. end
  1729. object Label15: TLabel
  1730. Left = 12
  1731. Top = 68
  1732. Width = 55
  1733. Height = 13
  1734. Caption = '&User name:'
  1735. FocusControl = TunnelUserNameEdit
  1736. end
  1737. object Label16: TLabel
  1738. Left = 200
  1739. Top = 68
  1740. Width = 50
  1741. Height = 13
  1742. Caption = '&Password:'
  1743. FocusControl = TunnelPasswordEdit
  1744. end
  1745. object TunnelHostNameEdit: TEdit
  1746. Left = 12
  1747. Top = 35
  1748. Width = 266
  1749. Height = 21
  1750. Anchors = [akLeft, akTop, akRight]
  1751. MaxLength = 255
  1752. TabOrder = 0
  1753. Text = 'TunnelHostNameEdit'
  1754. OnChange = DataChange
  1755. end
  1756. object TunnelUserNameEdit: TEdit
  1757. Left = 12
  1758. Top = 85
  1759. Width = 182
  1760. Height = 21
  1761. MaxLength = 100
  1762. TabOrder = 2
  1763. Text = 'TunnelUserNameEdit'
  1764. OnChange = DataChange
  1765. end
  1766. object TunnelPasswordEdit: TPasswordEdit
  1767. Left = 200
  1768. Top = 85
  1769. Width = 182
  1770. Height = 21
  1771. Anchors = [akLeft, akTop, akRight]
  1772. MaxLength = 100
  1773. TabOrder = 3
  1774. Text = 'TunnelPasswordEdit'
  1775. OnChange = DataChange
  1776. end
  1777. object TunnelPortNumberEdit: TUpDownEdit
  1778. Left = 284
  1779. Top = 35
  1780. Width = 98
  1781. Height = 21
  1782. Alignment = taRightJustify
  1783. MaxValue = 65535.000000000000000000
  1784. MinValue = 1.000000000000000000
  1785. Anchors = [akTop, akRight]
  1786. TabOrder = 1
  1787. OnChange = DataChange
  1788. end
  1789. end
  1790. object TunnelCheck: TCheckBox
  1791. Left = 12
  1792. Top = 8
  1793. Width = 382
  1794. Height = 17
  1795. Anchors = [akLeft, akTop, akRight]
  1796. Caption = '&Connect through SSH tunnel'
  1797. TabOrder = 0
  1798. OnClick = DataChange
  1799. end
  1800. object TunnelOptionsGroup: TGroupBox
  1801. Left = 0
  1802. Top = 156
  1803. Width = 393
  1804. Height = 47
  1805. Anchors = [akLeft, akTop, akRight]
  1806. Caption = 'Tunnel options'
  1807. TabOrder = 2
  1808. DesignSize = (
  1809. 393
  1810. 47)
  1811. object Label21: TLabel
  1812. Left = 12
  1813. Top = 20
  1814. Width = 84
  1815. Height = 13
  1816. Caption = '&Local tunnel port:'
  1817. FocusControl = TunnelLocalPortNumberEdit
  1818. end
  1819. object TunnelLocalPortNumberEdit: TComboBox
  1820. Left = 284
  1821. Top = 15
  1822. Width = 98
  1823. Height = 21
  1824. AutoComplete = False
  1825. Anchors = [akTop, akRight]
  1826. MaxLength = 50
  1827. TabOrder = 0
  1828. Text = 'TunnelLocalPortNumberEdit'
  1829. OnChange = DataChange
  1830. Items.Strings = (
  1831. 'Autoselect')
  1832. end
  1833. end
  1834. object TunnelAuthenticationParamsGroup: TGroupBox
  1835. Left = 0
  1836. Top = 209
  1837. Width = 393
  1838. Height = 68
  1839. Anchors = [akLeft, akTop, akRight]
  1840. Caption = 'Tunnel authentication parameters'
  1841. TabOrder = 3
  1842. DesignSize = (
  1843. 393
  1844. 68)
  1845. object Label18: TLabel
  1846. Left = 12
  1847. Top = 18
  1848. Width = 75
  1849. Height = 13
  1850. Caption = 'Private &key file:'
  1851. FocusControl = TunnelPrivateKeyEdit3
  1852. end
  1853. object TunnelPrivateKeyEdit3: TFilenameEdit
  1854. Left = 12
  1855. Top = 35
  1856. Width = 370
  1857. Height = 21
  1858. AcceptFiles = True
  1859. OnBeforeDialog = PathEditBeforeDialog
  1860. OnAfterDialog = PrivateKeyEdit3AfterDialog
  1861. Filter =
  1862. 'PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.p' +
  1863. 'pk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.*'
  1864. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  1865. DialogTitle = 'Select private key file'
  1866. ClickKey = 16397
  1867. Anchors = [akLeft, akTop, akRight]
  1868. TabOrder = 0
  1869. Text = 'TunnelPrivateKeyEdit3'
  1870. OnChange = DataChange
  1871. end
  1872. end
  1873. end
  1874. object SslSheet: TTabSheet
  1875. Tag = 2
  1876. HelpType = htKeyword
  1877. HelpKeyword = 'ui_login_tls'
  1878. Caption = 'TLS/SSL'
  1879. ImageIndex = 13
  1880. TabVisible = False
  1881. DesignSize = (
  1882. 401
  1883. 382)
  1884. object SslGroup: TGroupBox
  1885. Left = 0
  1886. Top = 6
  1887. Width = 393
  1888. Height = 99
  1889. Anchors = [akLeft, akTop, akRight]
  1890. Caption = 'TLS/SSL options'
  1891. TabOrder = 0
  1892. DesignSize = (
  1893. 393
  1894. 99)
  1895. object Label1: TLabel
  1896. Left = 12
  1897. Top = 20
  1898. Width = 123
  1899. Height = 13
  1900. Caption = 'Mi&nimum TLS/SSL version:'
  1901. FocusControl = MinTlsVersionCombo
  1902. end
  1903. object Label2: TLabel
  1904. Left = 12
  1905. Top = 44
  1906. Width = 127
  1907. Height = 13
  1908. Caption = 'Ma&ximum TLS/SSL version:'
  1909. FocusControl = MaxTlsVersionCombo
  1910. end
  1911. object MinTlsVersionCombo: TComboBox
  1912. Left = 304
  1913. Top = 15
  1914. Width = 77
  1915. Height = 21
  1916. Style = csDropDownList
  1917. Anchors = [akTop, akRight]
  1918. TabOrder = 0
  1919. OnChange = MinTlsVersionComboChange
  1920. Items.Strings = (
  1921. 'SSL 3.0'
  1922. 'TLS 1.0'
  1923. 'TLS 1.1'
  1924. 'TLS 1.2'
  1925. 'TLS 1.3')
  1926. end
  1927. object MaxTlsVersionCombo: TComboBox
  1928. Left = 304
  1929. Top = 39
  1930. Width = 77
  1931. Height = 21
  1932. Style = csDropDownList
  1933. Anchors = [akTop, akRight]
  1934. TabOrder = 1
  1935. OnChange = MaxTlsVersionComboChange
  1936. Items.Strings = (
  1937. 'SSL 3.0'
  1938. 'TLS 1.0'
  1939. 'TLS 1.1'
  1940. 'TLS 1.2'
  1941. 'TLS 1.3')
  1942. end
  1943. object SslSessionReuseCheck: TCheckBox
  1944. Left = 12
  1945. Top = 68
  1946. Width = 365
  1947. Height = 17
  1948. Anchors = [akLeft, akTop, akRight]
  1949. Caption = '&Reuse TLS/SSL session ID for data connections'
  1950. TabOrder = 2
  1951. OnClick = DataChange
  1952. end
  1953. end
  1954. object TlsAuthenticationGroup: TGroupBox
  1955. Left = 0
  1956. Top = 113
  1957. Width = 393
  1958. Height = 72
  1959. Anchors = [akLeft, akTop, akRight]
  1960. Caption = 'Authentication parameters'
  1961. TabOrder = 1
  1962. DesignSize = (
  1963. 393
  1964. 72)
  1965. object Label4: TLabel
  1966. Left = 12
  1967. Top = 20
  1968. Width = 99
  1969. Height = 13
  1970. Caption = '&Client certificate file:'
  1971. FocusControl = TlsCertificateFileEdit
  1972. end
  1973. object TlsCertificateFileEdit: TFilenameEdit
  1974. Left = 12
  1975. Top = 37
  1976. Width = 372
  1977. Height = 21
  1978. AcceptFiles = True
  1979. OnBeforeDialog = PathEditBeforeDialog
  1980. OnAfterDialog = TlsCertificateFileEditAfterDialog
  1981. Filter =
  1982. 'Certificates and private key files (*.pfx;*.p12;*.key;*.pem)|*.p' +
  1983. 'fx;*.p12;*.key;*.pem|All Files (*.*)|*.*'
  1984. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  1985. DialogTitle = 'Select client certificate file'
  1986. ClickKey = 16397
  1987. Anchors = [akLeft, akTop, akRight]
  1988. TabOrder = 0
  1989. Text = 'TlsCertificateFileEdit'
  1990. OnChange = DataChange
  1991. end
  1992. end
  1993. end
  1994. object AdvancedSheet: TTabSheet
  1995. Tag = 1
  1996. HelpType = htKeyword
  1997. HelpKeyword = 'ui_login_ssh'
  1998. Caption = 'SSH'
  1999. ImageIndex = 2
  2000. TabVisible = False
  2001. DesignSize = (
  2002. 401
  2003. 382)
  2004. object ProtocolGroup: TGroupBox
  2005. Left = 0
  2006. Top = 6
  2007. Width = 393
  2008. Height = 46
  2009. Anchors = [akLeft, akTop, akRight]
  2010. Caption = 'Protocol options'
  2011. TabOrder = 0
  2012. DesignSize = (
  2013. 393
  2014. 46)
  2015. object CompressionCheck: TCheckBox
  2016. Left = 16
  2017. Top = 19
  2018. Width = 367
  2019. Height = 17
  2020. Anchors = [akLeft, akTop, akRight]
  2021. Caption = 'Enable &compression'
  2022. TabOrder = 0
  2023. OnClick = DataChange
  2024. end
  2025. end
  2026. object EncryptionGroup: TGroupBox
  2027. Left = 0
  2028. Top = 58
  2029. Width = 393
  2030. Height = 171
  2031. Anchors = [akLeft, akTop, akRight]
  2032. Caption = 'Encryption options'
  2033. TabOrder = 1
  2034. DesignSize = (
  2035. 393
  2036. 171)
  2037. object Label8: TLabel
  2038. Left = 12
  2039. Top = 19
  2040. Width = 162
  2041. Height = 13
  2042. Caption = 'Encryption cipher selection &policy:'
  2043. FocusControl = CipherListBox
  2044. end
  2045. object CipherListBox: TListBox
  2046. Left = 12
  2047. Top = 36
  2048. Width = 285
  2049. Height = 99
  2050. Anchors = [akLeft, akTop, akRight]
  2051. DragMode = dmAutomatic
  2052. ItemHeight = 13
  2053. TabOrder = 0
  2054. OnClick = DataChange
  2055. OnDragDrop = AlgListBoxDragDrop
  2056. OnDragOver = AlgListBoxDragOver
  2057. OnStartDrag = AlgListBoxStartDrag
  2058. end
  2059. object Ssh2LegacyDESCheck: TCheckBox
  2060. Left = 16
  2061. Top = 142
  2062. Width = 367
  2063. Height = 17
  2064. Anchors = [akLeft, akTop, akRight]
  2065. Caption = 'Enable legacy use of single-&DES'
  2066. TabOrder = 3
  2067. end
  2068. object CipherUpButton: TButton
  2069. Left = 303
  2070. Top = 36
  2071. Width = 80
  2072. Height = 25
  2073. Anchors = [akTop, akRight]
  2074. Caption = '&Up'
  2075. TabOrder = 1
  2076. OnClick = CipherButtonClick
  2077. end
  2078. object CipherDownButton: TButton
  2079. Left = 303
  2080. Top = 68
  2081. Width = 80
  2082. Height = 25
  2083. Anchors = [akTop, akRight]
  2084. Caption = '&Down'
  2085. TabOrder = 2
  2086. OnClick = CipherButtonClick
  2087. end
  2088. end
  2089. end
  2090. object KexSheet: TTabSheet
  2091. Tag = 2
  2092. HelpType = htKeyword
  2093. HelpKeyword = 'ui_login_kex'
  2094. Caption = 'Key exchange'
  2095. ImageIndex = 13
  2096. TabVisible = False
  2097. DesignSize = (
  2098. 401
  2099. 382)
  2100. object KexOptionsGroup: TGroupBox
  2101. Left = 0
  2102. Top = 6
  2103. Width = 393
  2104. Height = 158
  2105. Anchors = [akLeft, akTop, akRight]
  2106. Caption = 'Key exchange algorithm options'
  2107. TabOrder = 0
  2108. DesignSize = (
  2109. 393
  2110. 158)
  2111. object Label28: TLabel
  2112. Left = 12
  2113. Top = 19
  2114. Width = 124
  2115. Height = 13
  2116. Caption = 'Algorithm selection &policy:'
  2117. FocusControl = KexListBox
  2118. end
  2119. object KexListBox: TListBox
  2120. Left = 12
  2121. Top = 36
  2122. Width = 285
  2123. Height = 89
  2124. Anchors = [akLeft, akTop, akRight]
  2125. DragMode = dmAutomatic
  2126. ItemHeight = 13
  2127. TabOrder = 0
  2128. OnClick = DataChange
  2129. OnDragDrop = AlgListBoxDragDrop
  2130. OnDragOver = AlgListBoxDragOver
  2131. OnStartDrag = AlgListBoxStartDrag
  2132. end
  2133. object KexUpButton: TButton
  2134. Left = 303
  2135. Top = 36
  2136. Width = 80
  2137. Height = 25
  2138. Anchors = [akTop, akRight]
  2139. Caption = '&Up'
  2140. TabOrder = 1
  2141. OnClick = KexButtonClick
  2142. end
  2143. object KexDownButton: TButton
  2144. Left = 303
  2145. Top = 68
  2146. Width = 80
  2147. Height = 25
  2148. Anchors = [akTop, akRight]
  2149. Caption = '&Down'
  2150. TabOrder = 2
  2151. OnClick = KexButtonClick
  2152. end
  2153. object AuthGSSAPIKEXCheck: TCheckBox
  2154. Left = 12
  2155. Top = 131
  2156. Width = 285
  2157. Height = 17
  2158. Caption = 'Attempt &GSSAPI key exchange'
  2159. TabOrder = 3
  2160. OnClick = DataChange
  2161. end
  2162. end
  2163. object KexReexchangeGroup: TGroupBox
  2164. Left = 0
  2165. Top = 171
  2166. Width = 393
  2167. Height = 69
  2168. Anchors = [akLeft, akTop, akRight]
  2169. Caption = 'Options controlling key re-exchange'
  2170. TabOrder = 1
  2171. DesignSize = (
  2172. 393
  2173. 69)
  2174. object Label31: TLabel
  2175. Left = 12
  2176. Top = 20
  2177. Width = 199
  2178. Height = 13
  2179. Caption = 'Max &minutes before rekey (0 for no limit):'
  2180. Color = clBtnFace
  2181. FocusControl = RekeyTimeEdit
  2182. ParentColor = False
  2183. end
  2184. object Label32: TLabel
  2185. Left = 12
  2186. Top = 44
  2187. Width = 184
  2188. Height = 13
  2189. Caption = 'Ma&x data before rekey (0 for no limit):'
  2190. Color = clBtnFace
  2191. FocusControl = RekeyDataEdit
  2192. ParentColor = False
  2193. end
  2194. object RekeyTimeEdit: TUpDownEdit
  2195. Left = 303
  2196. Top = 12
  2197. Width = 80
  2198. Height = 21
  2199. Alignment = taRightJustify
  2200. MaxValue = 1440.000000000000000000
  2201. Anchors = [akTop, akRight]
  2202. MaxLength = 4
  2203. TabOrder = 0
  2204. OnChange = DataChange
  2205. end
  2206. object RekeyDataEdit: TEdit
  2207. Left = 303
  2208. Top = 39
  2209. Width = 80
  2210. Height = 21
  2211. Anchors = [akTop, akRight]
  2212. MaxLength = 10
  2213. TabOrder = 1
  2214. OnChange = DataChange
  2215. end
  2216. end
  2217. end
  2218. object AuthSheet: TTabSheet
  2219. Tag = 2
  2220. HelpType = htKeyword
  2221. HelpKeyword = 'ui_login_authentication'
  2222. Caption = 'Authentication'
  2223. ImageIndex = 10
  2224. TabVisible = False
  2225. DesignSize = (
  2226. 401
  2227. 382)
  2228. object SshNoUserAuthCheck: TCheckBox
  2229. Left = 12
  2230. Top = 8
  2231. Width = 382
  2232. Height = 17
  2233. Anchors = [akLeft, akTop, akRight]
  2234. Caption = '&Bypass authentication entirely'
  2235. TabOrder = 0
  2236. OnClick = DataChange
  2237. end
  2238. object AuthenticationGroup: TGroupBox
  2239. Left = 0
  2240. Top = 32
  2241. Width = 393
  2242. Height = 94
  2243. Anchors = [akLeft, akTop, akRight]
  2244. Caption = 'Authentication options'
  2245. TabOrder = 1
  2246. DesignSize = (
  2247. 393
  2248. 94)
  2249. object TryAgentCheck: TCheckBox
  2250. Left = 12
  2251. Top = 19
  2252. Width = 373
  2253. Height = 17
  2254. Anchors = [akLeft, akTop, akRight]
  2255. Caption = 'Attempt authentication using &Pageant'
  2256. TabOrder = 0
  2257. OnClick = DataChange
  2258. end
  2259. object AuthKICheck: TCheckBox
  2260. Left = 12
  2261. Top = 42
  2262. Width = 373
  2263. Height = 17
  2264. Anchors = [akLeft, akTop, akRight]
  2265. Caption = 'Attempt '#39'keyboard-&interactive'#39' authentication'
  2266. TabOrder = 1
  2267. OnClick = DataChange
  2268. end
  2269. object AuthKIPasswordCheck: TCheckBox
  2270. Left = 32
  2271. Top = 65
  2272. Width = 353
  2273. Height = 17
  2274. Anchors = [akLeft, akTop, akRight]
  2275. Caption = 'Respond with a pass&word to the first prompt'
  2276. TabOrder = 2
  2277. OnClick = DataChange
  2278. end
  2279. end
  2280. object AuthenticationParamsGroup: TGroupBox
  2281. Left = 0
  2282. Top = 132
  2283. Width = 393
  2284. Height = 120
  2285. Anchors = [akLeft, akTop, akRight]
  2286. Caption = 'Authentication parameters'
  2287. TabOrder = 2
  2288. DesignSize = (
  2289. 393
  2290. 120)
  2291. object PrivateKeyLabel: TLabel
  2292. Left = 12
  2293. Top = 42
  2294. Width = 75
  2295. Height = 13
  2296. Caption = 'Private &key file:'
  2297. FocusControl = PrivateKeyEdit3
  2298. end
  2299. object AgentFwdCheck: TCheckBox
  2300. Left = 12
  2301. Top = 19
  2302. Width = 373
  2303. Height = 17
  2304. Anchors = [akLeft, akTop, akRight]
  2305. Caption = 'Allow agent &forwarding'
  2306. TabOrder = 0
  2307. OnClick = DataChange
  2308. end
  2309. object PrivateKeyEdit3: TFilenameEdit
  2310. Left = 12
  2311. Top = 59
  2312. Width = 372
  2313. Height = 21
  2314. AcceptFiles = True
  2315. OnBeforeDialog = PathEditBeforeDialog
  2316. OnAfterDialog = PrivateKeyEdit3AfterDialog
  2317. Filter =
  2318. 'PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.p' +
  2319. 'pk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.*'
  2320. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  2321. DialogTitle = 'Select private key file'
  2322. ClickKey = 16397
  2323. Anchors = [akLeft, akTop, akRight]
  2324. TabOrder = 1
  2325. Text = 'PrivateKeyEdit3'
  2326. OnChange = DataChange
  2327. end
  2328. object PrivateKeyToolsButton: TButton
  2329. Left = 151
  2330. Top = 86
  2331. Width = 101
  2332. Height = 25
  2333. Caption = '&Tools'
  2334. TabOrder = 3
  2335. OnClick = PrivateKeyToolsButtonClick
  2336. end
  2337. object PrivateKeyViewButton: TButton
  2338. Left = 12
  2339. Top = 86
  2340. Width = 133
  2341. Height = 25
  2342. Caption = '&Display Public Key'
  2343. TabOrder = 2
  2344. OnClick = PrivateKeyViewButtonClick
  2345. end
  2346. end
  2347. object GSSAPIGroup: TGroupBox
  2348. Left = 0
  2349. Top = 258
  2350. Width = 393
  2351. Height = 71
  2352. Anchors = [akLeft, akTop, akRight]
  2353. Caption = 'GSSAPI'
  2354. TabOrder = 3
  2355. DesignSize = (
  2356. 393
  2357. 71)
  2358. object AuthGSSAPICheck3: TCheckBox
  2359. Left = 12
  2360. Top = 19
  2361. Width = 373
  2362. Height = 17
  2363. Anchors = [akLeft, akTop, akRight]
  2364. Caption = 'Attempt &GSSAPI authentication'
  2365. TabOrder = 0
  2366. OnClick = AuthGSSAPICheck3Click
  2367. end
  2368. object GSSAPIFwdTGTCheck: TCheckBox
  2369. Left = 32
  2370. Top = 42
  2371. Width = 353
  2372. Height = 17
  2373. Anchors = [akLeft, akTop, akRight]
  2374. Caption = 'Allow GSSAPI &credential delegation'
  2375. TabOrder = 1
  2376. OnClick = AuthGSSAPICheck3Click
  2377. end
  2378. end
  2379. end
  2380. object BugsSheet: TTabSheet
  2381. Tag = 2
  2382. HelpType = htKeyword
  2383. HelpKeyword = 'ui_login_bugs'
  2384. Caption = 'Bugs'
  2385. ImageIndex = 9
  2386. TabVisible = False
  2387. DesignSize = (
  2388. 401
  2389. 382)
  2390. object BugsGroupBox: TGroupBox
  2391. Left = 0
  2392. Top = 6
  2393. Width = 393
  2394. Height = 217
  2395. Anchors = [akLeft, akTop, akRight]
  2396. Caption = 'Detection of known bugs in SSH servers'
  2397. TabOrder = 0
  2398. DesignSize = (
  2399. 393
  2400. 217)
  2401. object BugHMAC2Label: TLabel
  2402. Left = 12
  2403. Top = 68
  2404. Width = 144
  2405. Height = 13
  2406. Caption = 'Miscomputes SSH H&MAC keys:'
  2407. FocusControl = BugHMAC2Combo
  2408. end
  2409. object BugDeriveKey2Label: TLabel
  2410. Left = 12
  2411. Top = 92
  2412. Width = 166
  2413. Height = 13
  2414. Caption = 'Miscomputes SSH &encryption keys:'
  2415. FocusControl = BugDeriveKey2Combo
  2416. end
  2417. object BugRSAPad2Label: TLabel
  2418. Left = 12
  2419. Top = 116
  2420. Width = 200
  2421. Height = 13
  2422. Caption = 'Requires &padding on SSH RSA signatures:'
  2423. FocusControl = BugRSAPad2Combo
  2424. end
  2425. object BugPKSessID2Label: TLabel
  2426. Left = 12
  2427. Top = 140
  2428. Width = 185
  2429. Height = 13
  2430. Caption = 'Misuses the sessio&n ID in SSH PK auth:'
  2431. FocusControl = BugPKSessID2Combo
  2432. end
  2433. object BugRekey2Label: TLabel
  2434. Left = 12
  2435. Top = 164
  2436. Width = 177
  2437. Height = 13
  2438. Caption = 'Handles SSH &key re-exchange badly:'
  2439. FocusControl = BugRekey2Combo
  2440. end
  2441. object BugMaxPkt2Label: TLabel
  2442. Left = 12
  2443. Top = 188
  2444. Width = 166
  2445. Height = 13
  2446. Caption = 'Ignores SSH ma&ximum packet size:'
  2447. FocusControl = BugMaxPkt2Combo
  2448. end
  2449. object BugIgnore2Label: TLabel
  2450. Left = 12
  2451. Top = 20
  2452. Width = 159
  2453. Height = 13
  2454. Caption = 'Chokes on SSH i&gnore messages:'
  2455. FocusControl = BugIgnore2Combo
  2456. end
  2457. object BugWinAdjLabel: TLabel
  2458. Left = 12
  2459. Top = 44
  2460. Width = 202
  2461. Height = 13
  2462. Caption = 'Chokes on WinSCP'#39's SSH '#39'&winadj'#39' requests'
  2463. FocusControl = BugWinAdjCombo
  2464. end
  2465. object BugHMAC2Combo: TComboBox
  2466. Left = 320
  2467. Top = 63
  2468. Width = 61
  2469. Height = 21
  2470. Style = csDropDownList
  2471. Anchors = [akTop, akRight]
  2472. TabOrder = 2
  2473. OnChange = DataChange
  2474. end
  2475. object BugDeriveKey2Combo: TComboBox
  2476. Left = 320
  2477. Top = 87
  2478. Width = 61
  2479. Height = 21
  2480. Style = csDropDownList
  2481. Anchors = [akTop, akRight]
  2482. TabOrder = 3
  2483. OnChange = DataChange
  2484. end
  2485. object BugRSAPad2Combo: TComboBox
  2486. Left = 320
  2487. Top = 111
  2488. Width = 61
  2489. Height = 21
  2490. Style = csDropDownList
  2491. Anchors = [akTop, akRight]
  2492. TabOrder = 4
  2493. OnChange = DataChange
  2494. end
  2495. object BugPKSessID2Combo: TComboBox
  2496. Left = 320
  2497. Top = 135
  2498. Width = 61
  2499. Height = 21
  2500. Style = csDropDownList
  2501. Anchors = [akTop, akRight]
  2502. TabOrder = 5
  2503. OnChange = DataChange
  2504. end
  2505. object BugRekey2Combo: TComboBox
  2506. Left = 320
  2507. Top = 159
  2508. Width = 61
  2509. Height = 21
  2510. Style = csDropDownList
  2511. Anchors = [akTop, akRight]
  2512. TabOrder = 6
  2513. OnChange = DataChange
  2514. end
  2515. object BugMaxPkt2Combo: TComboBox
  2516. Left = 320
  2517. Top = 183
  2518. Width = 61
  2519. Height = 21
  2520. Style = csDropDownList
  2521. Anchors = [akTop, akRight]
  2522. TabOrder = 7
  2523. OnChange = DataChange
  2524. end
  2525. object BugIgnore2Combo: TComboBox
  2526. Left = 320
  2527. Top = 15
  2528. Width = 61
  2529. Height = 21
  2530. Style = csDropDownList
  2531. Anchors = [akTop, akRight]
  2532. TabOrder = 0
  2533. OnChange = DataChange
  2534. end
  2535. object BugWinAdjCombo: TComboBox
  2536. Left = 320
  2537. Top = 39
  2538. Width = 61
  2539. Height = 21
  2540. Style = csDropDownList
  2541. Anchors = [akTop, akRight]
  2542. TabOrder = 1
  2543. OnChange = DataChange
  2544. end
  2545. end
  2546. end
  2547. object NoteSheet: TTabSheet
  2548. HelpType = htKeyword
  2549. HelpKeyword = 'ui_login_note'
  2550. Caption = 'Note'
  2551. ImageIndex = 14
  2552. TabVisible = False
  2553. DesignSize = (
  2554. 401
  2555. 382)
  2556. object NoteGroup: TGroupBox
  2557. Left = 0
  2558. Top = 6
  2559. Width = 393
  2560. Height = 367
  2561. Anchors = [akLeft, akTop, akRight, akBottom]
  2562. Caption = 'Note'
  2563. TabOrder = 0
  2564. DesignSize = (
  2565. 393
  2566. 367)
  2567. object NoteMemo: TMemo
  2568. Left = 12
  2569. Top = 21
  2570. Width = 371
  2571. Height = 332
  2572. Anchors = [akLeft, akTop, akRight, akBottom]
  2573. MaxLength = 4000
  2574. TabOrder = 0
  2575. OnChange = DataChange
  2576. OnKeyDown = NoteMemoKeyDown
  2577. end
  2578. end
  2579. end
  2580. end
  2581. object LeftPanel: TPanel
  2582. Left = 0
  2583. Top = 0
  2584. Width = 152
  2585. Height = 392
  2586. Align = alLeft
  2587. BevelOuter = bvNone
  2588. TabOrder = 0
  2589. DesignSize = (
  2590. 152
  2591. 392)
  2592. object NavigationTree: TTreeView
  2593. Left = 8
  2594. Top = 9
  2595. Width = 136
  2596. Height = 379
  2597. Anchors = [akLeft, akTop, akRight, akBottom]
  2598. DoubleBuffered = True
  2599. HideSelection = False
  2600. HotTrack = True
  2601. Indent = 19
  2602. ParentDoubleBuffered = False
  2603. ReadOnly = True
  2604. ShowButtons = False
  2605. ShowRoot = False
  2606. TabOrder = 0
  2607. OnChange = NavigationTreeChange
  2608. OnCollapsing = NavigationTreeCollapsing
  2609. Items.NodeData = {
  2610. 030400000036000000000000000000000000000000FFFFFFFF00000000000000
  2611. 0008000000010C45006E007600690072006F006E006D0065006E007400580036
  2612. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2613. 0C4400690072006500630074006F007200690065007300580036000000000000
  2614. 000000000000000000FFFFFFFF000000000000000000000000010C5200650063
  2615. 00790063006C0065002000620069006E005800340000000000000000000000FF
  2616. FFFFFFFFFFFFFF000000000000000000000000010B45006E0063007200790070
  2617. 00740069006F006E00580028000000000000000000000000000000FFFFFFFF00
  2618. 0000000000000000000000010553004600540050005800260000000000000000
  2619. 00000000000000FFFFFFFF000000000000000000000000010453004300500058
  2620. 00260000000000000000000000FFFFFFFFFFFFFFFF0000000000000000000000
  2621. 000104460054005000580024000000000000000000000000000000FFFFFFFF00
  2622. 000000000000000000000001035300330058002C0000000000000000000000FF
  2623. FFFFFFFFFFFFFF00000000000000000000000001075700650062004400410056
  2624. 00580034000000000000000000000000000000FFFFFFFF000000000000000002
  2625. 000000010B43006F006E006E0065006300740069006F006E0058002A00000000
  2626. 0000000000000000000000FFFFFFFF0000000000000000000000000106500072
  2627. 006F007800790058002C000000000000000000000000000000FFFFFFFF000000
  2628. 0000000000000000000107540075006E006E0065006C00580026000000000000
  2629. 000000000000000000FFFFFFFF00000000000000000300000001045300530048
  2630. 00580038000000000000000000000000000000FFFFFFFF000000000000000000
  2631. 000000010D4B00650078002000650078006300680061006E006700650058003C
  2632. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2633. 0F410075007400680065006E007400690063006100740069006F006E00580028
  2634. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2635. 054200750067007300580028000000000000000000000000000000FFFFFFFF00
  2636. 000000000000000000000001054E006F00740065005800}
  2637. end
  2638. end
  2639. end
  2640. object OKBtn: TButton
  2641. Left = 307
  2642. Top = 401
  2643. Width = 75
  2644. Height = 25
  2645. Anchors = [akRight, akBottom]
  2646. Caption = 'OK'
  2647. Default = True
  2648. ModalResult = 1
  2649. TabOrder = 1
  2650. end
  2651. object CancelBtn: TButton
  2652. Left = 392
  2653. Top = 401
  2654. Width = 75
  2655. Height = 25
  2656. Anchors = [akRight, akBottom]
  2657. Cancel = True
  2658. Caption = 'Cancel'
  2659. ModalResult = 2
  2660. TabOrder = 2
  2661. end
  2662. object HelpButton: TButton
  2663. Left = 475
  2664. Top = 401
  2665. Width = 75
  2666. Height = 25
  2667. Anchors = [akRight, akBottom]
  2668. Caption = '&Help'
  2669. TabOrder = 3
  2670. OnClick = HelpButtonClick
  2671. end
  2672. object ColorButton: TButton
  2673. Left = 8
  2674. Top = 401
  2675. Width = 82
  2676. Height = 25
  2677. Anchors = [akLeft, akBottom]
  2678. Caption = '&Color'
  2679. TabOrder = 4
  2680. OnClick = ColorButtonClick
  2681. end
  2682. object ColorImageList: TImageList
  2683. AllocBy = 1
  2684. Left = 36
  2685. Top = 289
  2686. Bitmap = {
  2687. 494C010101000400500010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2688. 0000000000003600000028000000400000001000000001002000000000000010
  2689. 0000000000000000000000000000000000000000000000000000000000000000
  2690. 0000000000000000000000000000000000000000000000000000000000000000
  2691. 0000000000000000000000000000000000000000000000000000000000000000
  2692. 0000000000000000000000000000000000000000000000000000000000000000
  2693. 0000000000000000000000000000000000000000000000000000000000000000
  2694. 0000000000000000000000000000000000000000000000000000000000000000
  2695. 0000000000000000000000000000000000000000000000000000000000000000
  2696. 0000000000000000000000000000000000000000000000000000000000000000
  2697. 0000000000000000000000000000000000000000000000000000000000000000
  2698. 00004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2699. 3500000000000000000000000000000000000000000000000000000000000000
  2700. 0000000000000000000000000000000000000000000000000000000000000000
  2701. 0000000000000000000000000000000000000000000000000000000000000000
  2702. 0000000000000000000000000000000000000000000000000000000000000000
  2703. 0000000000000000000000000000000000000000000000000000000000000000
  2704. 0000000000000000000000000000000000000000000000000000000000000000
  2705. 0000000000000000000000000000000000000000000000000000000000000000
  2706. 000000000000000000004B3F35004B3F35004B3F35004B3F3500000000000000
  2707. 0000000000000000000000000000000000000000000000000000000000000000
  2708. 0000000000000000000000000000000000000000000000000000000000000000
  2709. 0000000000000000000000000000000000000000000000000000000000000000
  2710. 0000000000000000000000000000000000000000000000000000000000000000
  2711. 0000000000000000000000000000000000000000000000000000000000000000
  2712. 0000000000000000000000000000000000000000000000000000000000000000
  2713. 00000000000000000000000000000000000000000000645951004B3F35004B3F
  2714. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2715. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2716. 0000000000000000000000000000000000000000000000000000000000000000
  2717. 0000000000000000000000000000000000000000000000000000000000000000
  2718. 0000000000000000000000000000000000000000000000000000000000000000
  2719. 0000000000000000000000000000000000000000000000000000000000000000
  2720. 0000000000000000000000000000000000000000000000000000000000000000
  2721. 000000000000000000000000000000000000000000004B3F3500736052007360
  2722. 5200736052007360520073605200736052007360520073605200736052007360
  2723. 520073605200736052004B3F3500000000000000000000000000000000000000
  2724. 0000000000000000000000000000000000000000000000000000000000000000
  2725. 0000000000000000000000000000000000000000000000000000000000000000
  2726. 0000000000000000000000000000000000000000000000000000000000000000
  2727. 0000000000000000000000000000000000000000000000000000000000000000
  2728. 0000000000000000000000000000000000000000000000000000000000000000
  2729. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2730. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2731. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2732. 0000000000000000000000000000000000000000000000000000000000000000
  2733. 0000000000000000000000000000000000000000000000000000000000000000
  2734. 0000000000000000000000000000000000000000000000000000000000000000
  2735. 0000000000000000000000000000000000000000000000000000000000000000
  2736. 0000000000000000000000000000000000000000000000000000000000000000
  2737. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2738. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2739. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2740. 0000000000000000000000000000000000000000000000000000000000000000
  2741. 0000000000000000000000000000000000000000000000000000000000000000
  2742. 0000000000000000000000000000000000000000000000000000000000000000
  2743. 0000000000000000000000000000000000000000000000000000000000000000
  2744. 0000000000000000000000000000000000000000000000000000000000000000
  2745. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2746. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2747. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2748. 0000000000000000000000000000000000000000000000000000000000000000
  2749. 0000000000000000000000000000000000000000000000000000000000000000
  2750. 0000000000000000000000000000000000000000000000000000000000000000
  2751. 0000000000000000000000000000000000000000000000000000000000000000
  2752. 0000000000000000000000000000000000000000000000000000000000000000
  2753. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2754. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2755. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2756. 0000000000000000000000000000000000000000000000000000000000000000
  2757. 0000000000000000000000000000000000000000000000000000000000000000
  2758. 0000000000000000000000000000000000000000000000000000000000000000
  2759. 0000000000000000000000000000000000000000000000000000000000000000
  2760. 0000000000000000000000000000000000000000000000000000000000000000
  2761. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2762. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2763. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2764. 0000000000000000000000000000000000000000000000000000000000000000
  2765. 0000000000000000000000000000000000000000000000000000000000000000
  2766. 0000000000000000000000000000000000000000000000000000000000000000
  2767. 0000000000000000000000000000000000000000000000000000000000000000
  2768. 0000000000000000000000000000000000000000000000000000000000000000
  2769. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2770. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2771. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2772. 0000000000000000000000000000000000000000000000000000000000000000
  2773. 0000000000000000000000000000000000000000000000000000000000000000
  2774. 0000000000000000000000000000000000000000000000000000000000000000
  2775. 0000000000000000000000000000000000000000000000000000000000000000
  2776. 0000000000000000000000000000000000000000000000000000000000000000
  2777. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2778. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2779. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2780. 0000000000000000000000000000000000000000000000000000000000000000
  2781. 0000000000000000000000000000000000000000000000000000000000000000
  2782. 0000000000000000000000000000000000000000000000000000000000000000
  2783. 0000000000000000000000000000000000000000000000000000000000000000
  2784. 0000000000000000000000000000000000000000000000000000000000000000
  2785. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2786. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2787. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2788. 0000000000000000000000000000000000000000000000000000000000000000
  2789. 0000000000000000000000000000000000000000000000000000000000000000
  2790. 0000000000000000000000000000000000000000000000000000000000000000
  2791. 0000000000000000000000000000000000000000000000000000000000000000
  2792. 0000000000000000000000000000000000000000000000000000000000000000
  2793. 0000000000000000000000000000000000000000000062584F004B3F35004B3F
  2794. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2795. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2796. 0000000000000000000000000000000000000000000000000000000000000000
  2797. 0000000000000000000000000000000000000000000000000000000000000000
  2798. 0000000000000000000000000000000000000000000000000000000000000000
  2799. 0000000000000000000000000000000000000000000000000000000000000000
  2800. 0000000000000000000000000000000000000000000000000000000000000000
  2801. 0000000000000000000000000000000000000000000000000000000000000000
  2802. 0000000000000000000000000000000000000000000000000000000000000000
  2803. 0000000000000000000000000000000000000000000000000000000000000000
  2804. 0000000000000000000000000000000000000000000000000000000000000000
  2805. 0000000000000000000000000000000000000000000000000000000000000000
  2806. 0000000000000000000000000000000000000000000000000000000000000000
  2807. 0000000000000000000000000000000000000000000000000000000000000000
  2808. 0000000000000000000000000000000000000000000000000000000000000000
  2809. 0000000000000000000000000000000000000000000000000000000000000000
  2810. 0000000000000000000000000000000000000000000000000000000000000000
  2811. 0000000000000000000000000000000000000000000000000000000000000000
  2812. 0000000000000000000000000000000000000000000000000000000000000000
  2813. 0000000000000000000000000000000000000000000000000000000000000000
  2814. 0000000000000000000000000000000000000000000000000000000000000000
  2815. 0000000000000000000000000000000000000000000000000000000000000000
  2816. 0000000000000000000000000000000000000000000000000000000000000000
  2817. 000000000000000000000000000000000000424D3E000000000000003E000000
  2818. 2800000040000000100000000100010000000000800000000000000000000000
  2819. 000000000000000000000000FFFFFF00FFFF000000000000F00F000000000000
  2820. FC3F000000000000800100000000000080010000000000008001000000000000
  2821. 8001000000000000800100000000000080010000000000008001000000000000
  2822. 8001000000000000800100000000000080010000000000008001000000000000
  2823. FFFF000000000000FFFF00000000000000000000000000000000000000000000
  2824. 000000000000}
  2825. end
  2826. object ColorImageList120: TImageList
  2827. AllocBy = 1
  2828. Height = 20
  2829. Width = 20
  2830. Left = 132
  2831. Top = 289
  2832. Bitmap = {
  2833. 494C0101010010001C0014001400FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2834. 0000000000003600000028000000500000001400000001002000000000000019
  2835. 0000000000000000000000000000000000000000000000000000000000000000
  2836. 0000000000000000000000000000000000000000000000000000000000000000
  2837. 0000000000000000000000000000000000000000000000000000000000000000
  2838. 0000000000000000000000000000000000000000000000000000000000000000
  2839. 0000000000000000000000000000000000000000000000000000000000000000
  2840. 0000000000000000000000000000000000000000000000000000000000000000
  2841. 0000000000000000000000000000000000000000000000000000000000000000
  2842. 0000000000000000000000000000000000000000000000000000000000000000
  2843. 0000000000000000000000000000000000000000000000000000000000000000
  2844. 0000000000000000000000000000000000000000000000000000000000000000
  2845. 0000000000000000000000000000000000000000000000000000000000000000
  2846. 00000000000062584F004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2847. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2848. 0000000000000000000000000000000000000000000000000000000000000000
  2849. 0000000000000000000000000000000000000000000000000000000000000000
  2850. 0000000000000000000000000000000000000000000000000000000000000000
  2851. 0000000000000000000000000000000000000000000000000000000000000000
  2852. 0000000000000000000000000000000000000000000000000000000000000000
  2853. 0000000000000000000000000000000000000000000000000000000000000000
  2854. 0000000000000000000000000000000000000000000000000000000000000000
  2855. 0000000000000000000000000000000000000000000000000000000000000000
  2856. 0000000000004B3F350099816F0099816F0099816F0099816F0099816F009981
  2857. 6F0099816F0099816F004B3F3500000000000000000000000000000000000000
  2858. 0000000000000000000000000000000000000000000000000000000000000000
  2859. 0000000000000000000000000000000000000000000000000000000000000000
  2860. 0000000000000000000000000000000000000000000000000000000000000000
  2861. 0000000000000000000000000000000000000000000000000000000000000000
  2862. 0000000000000000000000000000000000000000000000000000000000000000
  2863. 0000000000000000000000000000000000000000000000000000000000000000
  2864. 0000000000000000000000000000000000000000000000000000000000000000
  2865. 0000000000000000000000000000000000000000000000000000000000000000
  2866. 00000000000062584F004B3F35004B3F35003028220030282200302822003028
  2867. 22004B3F35004B3F350062584F00000000000000000000000000000000000000
  2868. 0000000000000000000000000000000000000000000000000000000000000000
  2869. 0000000000000000000000000000000000000000000000000000000000000000
  2870. 0000000000000000000000000000000000000000000000000000000000000000
  2871. 0000000000000000000000000000000000000000000000000000000000000000
  2872. 0000000000000000000000000000000000000000000000000000000000000000
  2873. 0000000000000000000000000000000000000000000000000000000000000000
  2874. 0000000000000000000000000000000000000000000000000000000000000000
  2875. 0000000000000000000000000000000000000000000000000000000000000000
  2876. 00000000000000000000000000000000000027211C0027211C0027211C002721
  2877. 1C00000000000000000000000000000000000000000000000000000000000000
  2878. 0000000000000000000000000000000000000000000000000000000000000000
  2879. 0000000000000000000000000000000000000000000000000000000000000000
  2880. 0000000000000000000000000000000000000000000000000000000000000000
  2881. 0000000000000000000000000000000000000000000000000000000000000000
  2882. 0000000000000000000000000000000000000000000000000000000000000000
  2883. 0000000000000000000000000000000000000000000000000000000000000000
  2884. 0000000000000000000000000000000000000000000000000000000000000000
  2885. 0000000000000000000000000000000000000000000071675F004B3F35004B3F
  2886. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2887. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F350071675F000000
  2888. 0000000000000000000000000000000000000000000000000000000000000000
  2889. 0000000000000000000000000000000000000000000000000000000000000000
  2890. 0000000000000000000000000000000000000000000000000000000000000000
  2891. 0000000000000000000000000000000000000000000000000000000000000000
  2892. 0000000000000000000000000000000000000000000000000000000000000000
  2893. 0000000000000000000000000000000000000000000000000000000000000000
  2894. 0000000000000000000000000000000000000000000000000000000000000000
  2895. 000000000000000000000000000000000000000000004B3F35008C8078008C80
  2896. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  2897. 78008C8078008C8078008C80780029BD3E0029BD3E008C8078004B3F35000000
  2898. 0000000000000000000000000000000000000000000000000000000000000000
  2899. 0000000000000000000000000000000000000000000000000000000000000000
  2900. 0000000000000000000000000000000000000000000000000000000000000000
  2901. 0000000000000000000000000000000000000000000000000000000000000000
  2902. 0000000000000000000000000000000000000000000000000000000000000000
  2903. 0000000000000000000000000000000000000000000000000000000000000000
  2904. 0000000000000000000000000000000000000000000000000000000000000000
  2905. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2906. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2907. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2908. 0000000000000000000000000000000000000000000000000000000000000000
  2909. 0000000000000000000000000000000000000000000000000000000000000000
  2910. 0000000000000000000000000000000000000000000000000000000000000000
  2911. 0000000000000000000000000000000000000000000000000000000000000000
  2912. 0000000000000000000000000000000000000000000000000000000000000000
  2913. 0000000000000000000000000000000000000000000000000000000000000000
  2914. 0000000000000000000000000000000000000000000000000000000000000000
  2915. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2916. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2917. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2918. 0000000000000000000000000000000000000000000000000000000000000000
  2919. 0000000000000000000000000000000000000000000000000000000000000000
  2920. 0000000000000000000000000000000000000000000000000000000000000000
  2921. 0000000000000000000000000000000000000000000000000000000000000000
  2922. 0000000000000000000000000000000000000000000000000000000000000000
  2923. 0000000000000000000000000000000000000000000000000000000000000000
  2924. 0000000000000000000000000000000000000000000000000000000000000000
  2925. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2926. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2927. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2928. 0000000000000000000000000000000000000000000000000000000000000000
  2929. 0000000000000000000000000000000000000000000000000000000000000000
  2930. 0000000000000000000000000000000000000000000000000000000000000000
  2931. 0000000000000000000000000000000000000000000000000000000000000000
  2932. 0000000000000000000000000000000000000000000000000000000000000000
  2933. 0000000000000000000000000000000000000000000000000000000000000000
  2934. 0000000000000000000000000000000000000000000000000000000000000000
  2935. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2936. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2937. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2938. 0000000000000000000000000000000000000000000000000000000000000000
  2939. 0000000000000000000000000000000000000000000000000000000000000000
  2940. 0000000000000000000000000000000000000000000000000000000000000000
  2941. 0000000000000000000000000000000000000000000000000000000000000000
  2942. 0000000000000000000000000000000000000000000000000000000000000000
  2943. 0000000000000000000000000000000000000000000000000000000000000000
  2944. 0000000000000000000000000000000000000000000000000000000000000000
  2945. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2946. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2947. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2948. 0000000000000000000000000000000000000000000000000000000000000000
  2949. 0000000000000000000000000000000000000000000000000000000000000000
  2950. 0000000000000000000000000000000000000000000000000000000000000000
  2951. 0000000000000000000000000000000000000000000000000000000000000000
  2952. 0000000000000000000000000000000000000000000000000000000000000000
  2953. 0000000000000000000000000000000000000000000000000000000000000000
  2954. 0000000000000000000000000000000000000000000000000000000000000000
  2955. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2956. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2957. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2958. 0000000000000000000000000000000000000000000000000000000000000000
  2959. 0000000000000000000000000000000000000000000000000000000000000000
  2960. 0000000000000000000000000000000000000000000000000000000000000000
  2961. 0000000000000000000000000000000000000000000000000000000000000000
  2962. 0000000000000000000000000000000000000000000000000000000000000000
  2963. 0000000000000000000000000000000000000000000000000000000000000000
  2964. 0000000000000000000000000000000000000000000000000000000000000000
  2965. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2966. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2967. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2968. 0000000000000000000000000000000000000000000000000000000000000000
  2969. 0000000000000000000000000000000000000000000000000000000000000000
  2970. 0000000000000000000000000000000000000000000000000000000000000000
  2971. 0000000000000000000000000000000000000000000000000000000000000000
  2972. 0000000000000000000000000000000000000000000000000000000000000000
  2973. 0000000000000000000000000000000000000000000000000000000000000000
  2974. 0000000000000000000000000000000000000000000000000000000000000000
  2975. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2976. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2977. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2978. 0000000000000000000000000000000000000000000000000000000000000000
  2979. 0000000000000000000000000000000000000000000000000000000000000000
  2980. 0000000000000000000000000000000000000000000000000000000000000000
  2981. 0000000000000000000000000000000000000000000000000000000000000000
  2982. 0000000000000000000000000000000000000000000000000000000000000000
  2983. 0000000000000000000000000000000000000000000000000000000000000000
  2984. 0000000000000000000000000000000000000000000000000000000000000000
  2985. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2986. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2987. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2988. 0000000000000000000000000000000000000000000000000000000000000000
  2989. 0000000000000000000000000000000000000000000000000000000000000000
  2990. 0000000000000000000000000000000000000000000000000000000000000000
  2991. 0000000000000000000000000000000000000000000000000000000000000000
  2992. 0000000000000000000000000000000000000000000000000000000000000000
  2993. 0000000000000000000000000000000000000000000000000000000000000000
  2994. 0000000000000000000000000000000000000000000000000000000000000000
  2995. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2996. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2997. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2998. 0000000000000000000000000000000000000000000000000000000000000000
  2999. 0000000000000000000000000000000000000000000000000000000000000000
  3000. 0000000000000000000000000000000000000000000000000000000000000000
  3001. 0000000000000000000000000000000000000000000000000000000000000000
  3002. 0000000000000000000000000000000000000000000000000000000000000000
  3003. 0000000000000000000000000000000000000000000000000000000000000000
  3004. 0000000000000000000000000000000000000000000000000000000000000000
  3005. 000000000000000000000000000000000000000000006F655D004B3F35004B3F
  3006. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3007. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35006F655D000000
  3008. 0000000000000000000000000000000000000000000000000000000000000000
  3009. 0000000000000000000000000000000000000000000000000000000000000000
  3010. 0000000000000000000000000000000000000000000000000000000000000000
  3011. 0000000000000000000000000000000000000000000000000000000000000000
  3012. 0000000000000000000000000000000000000000000000000000000000000000
  3013. 0000000000000000000000000000000000000000000000000000000000000000
  3014. 0000000000000000000000000000000000000000000000000000000000000000
  3015. 0000000000000000000000000000000000000000000000000000000000000000
  3016. 0000000000000000000000000000000000000000000000000000000000000000
  3017. 0000000000000000000000000000000000000000000000000000000000000000
  3018. 0000000000000000000000000000000000000000000000000000000000000000
  3019. 0000000000000000000000000000000000000000000000000000000000000000
  3020. 0000000000000000000000000000000000000000000000000000000000000000
  3021. 0000000000000000000000000000000000000000000000000000000000000000
  3022. 0000000000000000000000000000000000000000000000000000000000000000
  3023. 0000000000000000000000000000000000000000000000000000000000000000
  3024. 0000000000000000000000000000000000000000000000000000000000000000
  3025. 0000000000000000000000000000000000000000000000000000000000000000
  3026. 0000000000000000000000000000000000000000000000000000000000000000
  3027. 0000000000000000000000000000000000000000000000000000000000000000
  3028. 0000000000000000000000000000000000000000000000000000000000000000
  3029. 0000000000000000000000000000000000000000000000000000000000000000
  3030. 0000000000000000000000000000000000000000000000000000000000000000
  3031. 0000000000000000000000000000000000000000000000000000000000000000
  3032. 0000000000000000000000000000000000000000000000000000000000000000
  3033. 0000000000000000000000000000000000000000000000000000000000000000
  3034. 0000000000000000000000000000000000000000000000000000000000000000
  3035. 000000000000000000000000000000000000424D3E000000000000003E000000
  3036. 2800000050000000140000000100010000000000F00000000000000000000000
  3037. 000000000000000000000000FFFFFF00FFFFF0000000000000000000F801F000
  3038. 0000000000000000F801F0000000000000000000F801F0000000000000000000
  3039. FF0FF00000000000000000008000100000000000000000008000100000000000
  3040. 0000000080001000000000000000000080001000000000000000000080001000
  3041. 0000000000000000800010000000000000000000800010000000000000000000
  3042. 8000100000000000000000008000100000000000000000008000100000000000
  3043. 0000000080001000000000000000000080001000000000000000000080001000
  3044. 0000000000000000FFFFF0000000000000000000FFFFF0000000000000000000
  3045. 00000000000000000000000000000000000000000000}
  3046. end
  3047. object ColorImageList144: TImageList
  3048. AllocBy = 1
  3049. Height = 24
  3050. Width = 24
  3051. Left = 36
  3052. Top = 337
  3053. Bitmap = {
  3054. 494C010101006800740018001800FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  3055. 0000000000003600000028000000600000001800000001002000000000000024
  3056. 0000000000000000000000000000000000000000000000000000000000000000
  3057. 0000000000000000000000000000000000000000000000000000000000000000
  3058. 0000000000000000000000000000000000000000000000000000000000000000
  3059. 0000000000000000000000000000000000000000000000000000000000000000
  3060. 0000000000000000000000000000000000000000000000000000000000000000
  3061. 0000000000000000000000000000000000000000000000000000000000000000
  3062. 0000000000000000000000000000000000000000000000000000000000000000
  3063. 0000000000000000000000000000000000000000000000000000000000000000
  3064. 0000000000000000000000000000000000000000000000000000000000000000
  3065. 0000000000000000000000000000000000000000000000000000000000000000
  3066. 0000000000000000000000000000000000000000000000000000000000000000
  3067. 0000000000000000000000000000000000000000000000000000000000000000
  3068. 0000000000000000000000000000000000000000000000000000000000000000
  3069. 0000000000000000000062584F004B3F35004B3F35004B3F35004B3F35004B3F
  3070. 35004B3F35004B3F35004B3F35004B3F35004B3F350062584F00000000000000
  3071. 0000000000000000000000000000000000000000000000000000000000000000
  3072. 0000000000000000000000000000000000000000000000000000000000000000
  3073. 0000000000000000000000000000000000000000000000000000000000000000
  3074. 0000000000000000000000000000000000000000000000000000000000000000
  3075. 0000000000000000000000000000000000000000000000000000000000000000
  3076. 0000000000000000000000000000000000000000000000000000000000000000
  3077. 0000000000000000000000000000000000000000000000000000000000000000
  3078. 0000000000000000000000000000000000000000000000000000000000000000
  3079. 0000000000000000000000000000000000000000000000000000000000000000
  3080. 0000000000000000000000000000000000000000000000000000000000000000
  3081. 000000000000000000004B3F350099816F0099816F0099816F0099816F009981
  3082. 6F0099816F0099816F0099816F0099816F0099816F004B3F3500000000000000
  3083. 0000000000000000000000000000000000000000000000000000000000000000
  3084. 0000000000000000000000000000000000000000000000000000000000000000
  3085. 0000000000000000000000000000000000000000000000000000000000000000
  3086. 0000000000000000000000000000000000000000000000000000000000000000
  3087. 0000000000000000000000000000000000000000000000000000000000000000
  3088. 0000000000000000000000000000000000000000000000000000000000000000
  3089. 0000000000000000000000000000000000000000000000000000000000000000
  3090. 0000000000000000000000000000000000000000000000000000000000000000
  3091. 0000000000000000000000000000000000000000000000000000000000000000
  3092. 0000000000000000000000000000000000000000000000000000000000000000
  3093. 000000000000000000004B3F35007360520073605200736052004B3F35004B3F
  3094. 35004B3F35004B3F35007360520073605200736052004B3F3500000000000000
  3095. 0000000000000000000000000000000000000000000000000000000000000000
  3096. 0000000000000000000000000000000000000000000000000000000000000000
  3097. 0000000000000000000000000000000000000000000000000000000000000000
  3098. 0000000000000000000000000000000000000000000000000000000000000000
  3099. 0000000000000000000000000000000000000000000000000000000000000000
  3100. 0000000000000000000000000000000000000000000000000000000000000000
  3101. 0000000000000000000000000000000000000000000000000000000000000000
  3102. 0000000000000000000000000000000000000000000000000000000000000000
  3103. 0000000000000000000000000000000000000000000000000000000000000000
  3104. 0000000000000000000000000000000000000000000000000000000000000000
  3105. 0000000000000000000062584F004B3F35004B3F35004B3F350042372F004237
  3106. 2F0042372F0042372F004B3F35004B3F35004B3F350062584F00000000000000
  3107. 0000000000000000000000000000000000000000000000000000000000000000
  3108. 0000000000000000000000000000000000000000000000000000000000000000
  3109. 0000000000000000000000000000000000000000000000000000000000000000
  3110. 0000000000000000000000000000000000000000000000000000000000000000
  3111. 0000000000000000000000000000000000000000000000000000000000000000
  3112. 0000000000000000000000000000000000000000000000000000000000000000
  3113. 0000000000000000000000000000000000000000000000000000000000000000
  3114. 0000000000000000000000000000000000000000000000000000000000000000
  3115. 0000000000000000000000000000000000000000000000000000000000000000
  3116. 0000000000000000000000000000000000000000000000000000000000000000
  3117. 0000000000000000000000000000000000000000000000000000302822003028
  3118. 2200302822003028220000000000000000000000000000000000000000000000
  3119. 0000000000000000000000000000000000000000000000000000000000000000
  3120. 0000000000000000000000000000000000000000000000000000000000000000
  3121. 0000000000000000000000000000000000000000000000000000000000000000
  3122. 0000000000000000000000000000000000000000000000000000000000000000
  3123. 0000000000000000000000000000000000000000000000000000000000000000
  3124. 0000000000000000000000000000000000000000000000000000000000000000
  3125. 0000000000000000000000000000000000000000000000000000000000000000
  3126. 0000000000000000000000000000000000000000000000000000000000000000
  3127. 0000000000000000000000000000000000000000000000000000000000000000
  3128. 00000000000000000000000000000000000000000000746A63004B3F35004B3F
  3129. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3130. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3131. 35004B3F35004B3F3500746A6300000000000000000000000000000000000000
  3132. 0000000000000000000000000000000000000000000000000000000000000000
  3133. 0000000000000000000000000000000000000000000000000000000000000000
  3134. 0000000000000000000000000000000000000000000000000000000000000000
  3135. 0000000000000000000000000000000000000000000000000000000000000000
  3136. 0000000000000000000000000000000000000000000000000000000000000000
  3137. 0000000000000000000000000000000000000000000000000000000000000000
  3138. 0000000000000000000000000000000000000000000000000000000000000000
  3139. 0000000000000000000000000000000000000000000000000000000000000000
  3140. 000000000000000000000000000000000000000000004B3F35004E4238004E42
  3141. 38004E4238004E4238004E4238004E4238004E4238004E4238004E4238004E42
  3142. 38004E4238004E4238004E4238004E4238004E4238004E4238004E42380029BD
  3143. 3E0029BD3E004E4238004B3F3500000000000000000000000000000000000000
  3144. 0000000000000000000000000000000000000000000000000000000000000000
  3145. 0000000000000000000000000000000000000000000000000000000000000000
  3146. 0000000000000000000000000000000000000000000000000000000000000000
  3147. 0000000000000000000000000000000000000000000000000000000000000000
  3148. 0000000000000000000000000000000000000000000000000000000000000000
  3149. 0000000000000000000000000000000000000000000000000000000000000000
  3150. 0000000000000000000000000000000000000000000000000000000000000000
  3151. 0000000000000000000000000000000000000000000000000000000000000000
  3152. 000000000000000000000000000000000000000000004B3F350051443B008C80
  3153. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  3154. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  3155. 78008C80780051443B004B3F3500000000000000000000000000000000000000
  3156. 0000000000000000000000000000000000000000000000000000000000000000
  3157. 0000000000000000000000000000000000000000000000000000000000000000
  3158. 0000000000000000000000000000000000000000000000000000000000000000
  3159. 0000000000000000000000000000000000000000000000000000000000000000
  3160. 0000000000000000000000000000000000000000000000000000000000000000
  3161. 0000000000000000000000000000000000000000000000000000000000000000
  3162. 0000000000000000000000000000000000000000000000000000000000000000
  3163. 0000000000000000000000000000000000000000000000000000000000000000
  3164. 000000000000000000000000000000000000000000004B3F350055473D00FF00
  3165. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3166. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3167. FF00FF00FF0055473D004B3F3500000000000000000000000000000000000000
  3168. 0000000000000000000000000000000000000000000000000000000000000000
  3169. 0000000000000000000000000000000000000000000000000000000000000000
  3170. 0000000000000000000000000000000000000000000000000000000000000000
  3171. 0000000000000000000000000000000000000000000000000000000000000000
  3172. 0000000000000000000000000000000000000000000000000000000000000000
  3173. 0000000000000000000000000000000000000000000000000000000000000000
  3174. 0000000000000000000000000000000000000000000000000000000000000000
  3175. 0000000000000000000000000000000000000000000000000000000000000000
  3176. 000000000000000000000000000000000000000000004B3F3500584A3F00FF00
  3177. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3178. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3179. FF00FF00FF00584A3F004B3F3500000000000000000000000000000000000000
  3180. 0000000000000000000000000000000000000000000000000000000000000000
  3181. 0000000000000000000000000000000000000000000000000000000000000000
  3182. 0000000000000000000000000000000000000000000000000000000000000000
  3183. 0000000000000000000000000000000000000000000000000000000000000000
  3184. 0000000000000000000000000000000000000000000000000000000000000000
  3185. 0000000000000000000000000000000000000000000000000000000000000000
  3186. 0000000000000000000000000000000000000000000000000000000000000000
  3187. 0000000000000000000000000000000000000000000000000000000000000000
  3188. 000000000000000000000000000000000000000000004B3F35005B4D4200FF00
  3189. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3190. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3191. FF00FF00FF005B4D42004B3F3500000000000000000000000000000000000000
  3192. 0000000000000000000000000000000000000000000000000000000000000000
  3193. 0000000000000000000000000000000000000000000000000000000000000000
  3194. 0000000000000000000000000000000000000000000000000000000000000000
  3195. 0000000000000000000000000000000000000000000000000000000000000000
  3196. 0000000000000000000000000000000000000000000000000000000000000000
  3197. 0000000000000000000000000000000000000000000000000000000000000000
  3198. 0000000000000000000000000000000000000000000000000000000000000000
  3199. 0000000000000000000000000000000000000000000000000000000000000000
  3200. 000000000000000000000000000000000000000000004B3F35005E504400FF00
  3201. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3202. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3203. FF00FF00FF005E5044004B3F3500000000000000000000000000000000000000
  3204. 0000000000000000000000000000000000000000000000000000000000000000
  3205. 0000000000000000000000000000000000000000000000000000000000000000
  3206. 0000000000000000000000000000000000000000000000000000000000000000
  3207. 0000000000000000000000000000000000000000000000000000000000000000
  3208. 0000000000000000000000000000000000000000000000000000000000000000
  3209. 0000000000000000000000000000000000000000000000000000000000000000
  3210. 0000000000000000000000000000000000000000000000000000000000000000
  3211. 0000000000000000000000000000000000000000000000000000000000000000
  3212. 000000000000000000000000000000000000000000004B3F350062534700FF00
  3213. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3214. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3215. FF00FF00FF00625347004B3F3500000000000000000000000000000000000000
  3216. 0000000000000000000000000000000000000000000000000000000000000000
  3217. 0000000000000000000000000000000000000000000000000000000000000000
  3218. 0000000000000000000000000000000000000000000000000000000000000000
  3219. 0000000000000000000000000000000000000000000000000000000000000000
  3220. 0000000000000000000000000000000000000000000000000000000000000000
  3221. 0000000000000000000000000000000000000000000000000000000000000000
  3222. 0000000000000000000000000000000000000000000000000000000000000000
  3223. 0000000000000000000000000000000000000000000000000000000000000000
  3224. 000000000000000000000000000000000000000000004B3F350065554900FF00
  3225. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3226. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3227. FF00FF00FF00655549004B3F3500000000000000000000000000000000000000
  3228. 0000000000000000000000000000000000000000000000000000000000000000
  3229. 0000000000000000000000000000000000000000000000000000000000000000
  3230. 0000000000000000000000000000000000000000000000000000000000000000
  3231. 0000000000000000000000000000000000000000000000000000000000000000
  3232. 0000000000000000000000000000000000000000000000000000000000000000
  3233. 0000000000000000000000000000000000000000000000000000000000000000
  3234. 0000000000000000000000000000000000000000000000000000000000000000
  3235. 0000000000000000000000000000000000000000000000000000000000000000
  3236. 000000000000000000000000000000000000000000004B3F350069584C00FF00
  3237. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3238. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3239. FF00FF00FF0069584C004B3F3500000000000000000000000000000000000000
  3240. 0000000000000000000000000000000000000000000000000000000000000000
  3241. 0000000000000000000000000000000000000000000000000000000000000000
  3242. 0000000000000000000000000000000000000000000000000000000000000000
  3243. 0000000000000000000000000000000000000000000000000000000000000000
  3244. 0000000000000000000000000000000000000000000000000000000000000000
  3245. 0000000000000000000000000000000000000000000000000000000000000000
  3246. 0000000000000000000000000000000000000000000000000000000000000000
  3247. 0000000000000000000000000000000000000000000000000000000000000000
  3248. 000000000000000000000000000000000000000000004B3F35006C5B4E00FF00
  3249. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3250. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3251. FF00FF00FF006C5B4E004B3F3500000000000000000000000000000000000000
  3252. 0000000000000000000000000000000000000000000000000000000000000000
  3253. 0000000000000000000000000000000000000000000000000000000000000000
  3254. 0000000000000000000000000000000000000000000000000000000000000000
  3255. 0000000000000000000000000000000000000000000000000000000000000000
  3256. 0000000000000000000000000000000000000000000000000000000000000000
  3257. 0000000000000000000000000000000000000000000000000000000000000000
  3258. 0000000000000000000000000000000000000000000000000000000000000000
  3259. 0000000000000000000000000000000000000000000000000000000000000000
  3260. 000000000000000000000000000000000000000000004B3F35006F5E5100FF00
  3261. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3262. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3263. FF00FF00FF006F5E51004B3F3500000000000000000000000000000000000000
  3264. 0000000000000000000000000000000000000000000000000000000000000000
  3265. 0000000000000000000000000000000000000000000000000000000000000000
  3266. 0000000000000000000000000000000000000000000000000000000000000000
  3267. 0000000000000000000000000000000000000000000000000000000000000000
  3268. 0000000000000000000000000000000000000000000000000000000000000000
  3269. 0000000000000000000000000000000000000000000000000000000000000000
  3270. 0000000000000000000000000000000000000000000000000000000000000000
  3271. 0000000000000000000000000000000000000000000000000000000000000000
  3272. 000000000000000000000000000000000000000000004B3F350073615300FF00
  3273. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3274. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3275. FF00FF00FF00736153004B3F3500000000000000000000000000000000000000
  3276. 0000000000000000000000000000000000000000000000000000000000000000
  3277. 0000000000000000000000000000000000000000000000000000000000000000
  3278. 0000000000000000000000000000000000000000000000000000000000000000
  3279. 0000000000000000000000000000000000000000000000000000000000000000
  3280. 0000000000000000000000000000000000000000000000000000000000000000
  3281. 0000000000000000000000000000000000000000000000000000000000000000
  3282. 0000000000000000000000000000000000000000000000000000000000000000
  3283. 0000000000000000000000000000000000000000000000000000000000000000
  3284. 000000000000000000000000000000000000000000004B3F350076645600FF00
  3285. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3286. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3287. FF00FF00FF00766456004B3F3500000000000000000000000000000000000000
  3288. 0000000000000000000000000000000000000000000000000000000000000000
  3289. 0000000000000000000000000000000000000000000000000000000000000000
  3290. 0000000000000000000000000000000000000000000000000000000000000000
  3291. 0000000000000000000000000000000000000000000000000000000000000000
  3292. 0000000000000000000000000000000000000000000000000000000000000000
  3293. 0000000000000000000000000000000000000000000000000000000000000000
  3294. 0000000000000000000000000000000000000000000000000000000000000000
  3295. 0000000000000000000000000000000000000000000000000000000000000000
  3296. 000000000000000000000000000000000000000000004B3F350079665800855D
  3297. 6700855D6700855D6700855D6700855D6700855D6700855D6700855D6700855D
  3298. 6700855D6700855D6700855D6700855D6700855D6700855D6700855D6700855D
  3299. 6700855D6700796658004B3F3500000000000000000000000000000000000000
  3300. 0000000000000000000000000000000000000000000000000000000000000000
  3301. 0000000000000000000000000000000000000000000000000000000000000000
  3302. 0000000000000000000000000000000000000000000000000000000000000000
  3303. 0000000000000000000000000000000000000000000000000000000000000000
  3304. 0000000000000000000000000000000000000000000000000000000000000000
  3305. 0000000000000000000000000000000000000000000000000000000000000000
  3306. 0000000000000000000000000000000000000000000000000000000000000000
  3307. 0000000000000000000000000000000000000000000000000000000000000000
  3308. 00000000000000000000000000000000000000000000726961004F4338004F43
  3309. 38004F4338004F4338004F4338004F4338004F4338004F4338004F4338004F43
  3310. 38004F4338004F4338004F4338004F4338004F4338004F4338004F4338004F43
  3311. 38004F4338004F43380072696100000000000000000000000000000000000000
  3312. 0000000000000000000000000000000000000000000000000000000000000000
  3313. 0000000000000000000000000000000000000000000000000000000000000000
  3314. 0000000000000000000000000000000000000000000000000000000000000000
  3315. 0000000000000000000000000000000000000000000000000000000000000000
  3316. 0000000000000000000000000000000000000000000000000000000000000000
  3317. 0000000000000000000000000000000000000000000000000000000000000000
  3318. 0000000000000000000000000000000000000000000000000000000000000000
  3319. 0000000000000000000000000000000000000000000000000000000000000000
  3320. 0000000000000000000000000000000000000000000000000000000000000000
  3321. 0000000000000000000000000000000000000000000000000000000000000000
  3322. 0000000000000000000000000000000000000000000000000000000000000000
  3323. 0000000000000000000000000000000000000000000000000000000000000000
  3324. 0000000000000000000000000000000000000000000000000000000000000000
  3325. 0000000000000000000000000000000000000000000000000000000000000000
  3326. 0000000000000000000000000000000000000000000000000000000000000000
  3327. 0000000000000000000000000000000000000000000000000000000000000000
  3328. 0000000000000000000000000000000000000000000000000000000000000000
  3329. 0000000000000000000000000000000000000000000000000000000000000000
  3330. 0000000000000000000000000000000000000000000000000000000000000000
  3331. 0000000000000000000000000000000000000000000000000000000000000000
  3332. 0000000000000000000000000000000000000000000000000000000000000000
  3333. 0000000000000000000000000000000000000000000000000000000000000000
  3334. 0000000000000000000000000000000000000000000000000000000000000000
  3335. 0000000000000000000000000000000000000000000000000000000000000000
  3336. 0000000000000000000000000000000000000000000000000000000000000000
  3337. 0000000000000000000000000000000000000000000000000000000000000000
  3338. 0000000000000000000000000000000000000000000000000000000000000000
  3339. 0000000000000000000000000000000000000000000000000000000000000000
  3340. 0000000000000000000000000000000000000000000000000000000000000000
  3341. 0000000000000000000000000000000000000000000000000000000000000000
  3342. 0000000000000000000000000000000000000000000000000000000000000000
  3343. 0000000000000000000000000000000000000000000000000000000000000000
  3344. 000000000000000000000000000000000000424D3E000000000000003E000000
  3345. 2800000060000000180000000100010000000000200100000000000000000000
  3346. 000000000000000000000000FFFFFF00FFFFFF000000000000000000FC003F00
  3347. 0000000000000000FC003F000000000000000000FC003F000000000000000000
  3348. FC003F000000000000000000FFC3FF0000000000000000008000010000000000
  3349. 0000000080000100000000000000000080000100000000000000000080000100
  3350. 0000000000000000800001000000000000000000800001000000000000000000
  3351. 8000010000000000000000008000010000000000000000008000010000000000
  3352. 0000000080000100000000000000000080000100000000000000000080000100
  3353. 0000000000000000800001000000000000000000800001000000000000000000
  3354. 800001000000000000000000800001000000000000000000FFFFFF0000000000
  3355. 00000000FFFFFF00000000000000000000000000000000000000000000000000
  3356. 000000000000}
  3357. end
  3358. object ColorImageList192: TImageList
  3359. AllocBy = 1
  3360. Height = 32
  3361. Width = 32
  3362. Left = 132
  3363. Top = 337
  3364. Bitmap = {
  3365. 494C0101010060006C0020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  3366. 0000000000003600000028000000800000002000000001002000000000000040
  3367. 0000000000000000000000000000000000000000000000000000000000000000
  3368. 0000000000000000000000000000000000000000000000000000000000000000
  3369. 0000000000000000000000000000000000000000000000000000000000000000
  3370. 0000000000000000000000000000000000000000000000000000000000000000
  3371. 0000000000000000000000000000000000000000000000000000000000000000
  3372. 0000000000000000000000000000000000000000000000000000000000000000
  3373. 0000000000000000000000000000000000000000000000000000000000000000
  3374. 0000000000000000000000000000000000000000000000000000000000000000
  3375. 0000000000000000000000000000000000000000000000000000000000000000
  3376. 0000000000000000000000000000000000000000000000000000000000000000
  3377. 0000000000000000000000000000000000000000000000000000000000000000
  3378. 0000000000000000000000000000000000000000000000000000000000000000
  3379. 0000000000000000000000000000000000000000000000000000000000000000
  3380. 0000000000000000000000000000000000000000000000000000000000000000
  3381. 0000000000000000000000000000000000000000000000000000000000000000
  3382. 0000000000000000000000000000000000000000000000000000000000000000
  3383. 0000000000000000000000000000000000000000000000000000000000000000
  3384. 0000000000000000000000000000000000000000000000000000000000000000
  3385. 0000000000000000000000000000000000000000000000000000000000000000
  3386. 0000000000000000000000000000000000000000000000000000000000000000
  3387. 0000000000000000000000000000000000000000000000000000000000000000
  3388. 0000000000000000000000000000000000000000000000000000000000000000
  3389. 0000000000000000000000000000000000000000000000000000000000000000
  3390. 0000000000000000000000000000000000000000000000000000000000000000
  3391. 0000000000000000000000000000000000000000000000000000000000000000
  3392. 0000000000000000000000000000000000000000000000000000000000000000
  3393. 0000000000000000000000000000000000000000000000000000000000000000
  3394. 0000000000000000000000000000000000000000000000000000000000000000
  3395. 0000000000000000000000000000000000000000000000000000000000000000
  3396. 0000000000000000000000000000000000000000000000000000000000000000
  3397. 0000000000000000000000000000000000000000000000000000000000000000
  3398. 0000000000000000000000000000000000000000000000000000000000000000
  3399. 0000000000000000000000000000000000000000000000000000000000000000
  3400. 000000000000000000000000000000000000695F57004B3F35004B3F35004B3F
  3401. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3402. 35004B3F35004B3F35004B3F3500695F57000000000000000000000000000000
  3403. 0000000000000000000000000000000000000000000000000000000000000000
  3404. 0000000000000000000000000000000000000000000000000000000000000000
  3405. 0000000000000000000000000000000000000000000000000000000000000000
  3406. 0000000000000000000000000000000000000000000000000000000000000000
  3407. 0000000000000000000000000000000000000000000000000000000000000000
  3408. 0000000000000000000000000000000000000000000000000000000000000000
  3409. 0000000000000000000000000000000000000000000000000000000000000000
  3410. 0000000000000000000000000000000000000000000000000000000000000000
  3411. 0000000000000000000000000000000000000000000000000000000000000000
  3412. 0000000000000000000000000000000000000000000000000000000000000000
  3413. 0000000000000000000000000000000000000000000000000000000000000000
  3414. 0000000000000000000000000000000000000000000000000000000000000000
  3415. 0000000000000000000000000000000000000000000000000000000000000000
  3416. 0000000000000000000000000000000000004B3F350099816F0099816F009981
  3417. 6F0099816F0099816F0099816F0099816F0099816F0099816F0099816F009981
  3418. 6F0099816F0099816F0099816F004B3F35000000000000000000000000000000
  3419. 0000000000000000000000000000000000000000000000000000000000000000
  3420. 0000000000000000000000000000000000000000000000000000000000000000
  3421. 0000000000000000000000000000000000000000000000000000000000000000
  3422. 0000000000000000000000000000000000000000000000000000000000000000
  3423. 0000000000000000000000000000000000000000000000000000000000000000
  3424. 0000000000000000000000000000000000000000000000000000000000000000
  3425. 0000000000000000000000000000000000000000000000000000000000000000
  3426. 0000000000000000000000000000000000000000000000000000000000000000
  3427. 0000000000000000000000000000000000000000000000000000000000000000
  3428. 0000000000000000000000000000000000000000000000000000000000000000
  3429. 0000000000000000000000000000000000000000000000000000000000000000
  3430. 0000000000000000000000000000000000000000000000000000000000000000
  3431. 0000000000000000000000000000000000000000000000000000000000000000
  3432. 0000000000000000000000000000000000004B3F350073605200736052007360
  3433. 5200736052004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35007360
  3434. 52007360520073605200736052004B3F35000000000000000000000000000000
  3435. 0000000000000000000000000000000000000000000000000000000000000000
  3436. 0000000000000000000000000000000000000000000000000000000000000000
  3437. 0000000000000000000000000000000000000000000000000000000000000000
  3438. 0000000000000000000000000000000000000000000000000000000000000000
  3439. 0000000000000000000000000000000000000000000000000000000000000000
  3440. 0000000000000000000000000000000000000000000000000000000000000000
  3441. 0000000000000000000000000000000000000000000000000000000000000000
  3442. 0000000000000000000000000000000000000000000000000000000000000000
  3443. 0000000000000000000000000000000000000000000000000000000000000000
  3444. 0000000000000000000000000000000000000000000000000000000000000000
  3445. 0000000000000000000000000000000000000000000000000000000000000000
  3446. 0000000000000000000000000000000000000000000000000000000000000000
  3447. 0000000000000000000000000000000000000000000000000000000000000000
  3448. 000000000000000000000000000000000000695F57004B3F35004B3F35004B3F
  3449. 35004B3F3500453A3100453A3100453A3100453A3100453A3100453A31004B3F
  3450. 35004B3F35004B3F35004B3F3500695F57000000000000000000000000000000
  3451. 0000000000000000000000000000000000000000000000000000000000000000
  3452. 0000000000000000000000000000000000000000000000000000000000000000
  3453. 0000000000000000000000000000000000000000000000000000000000000000
  3454. 0000000000000000000000000000000000000000000000000000000000000000
  3455. 0000000000000000000000000000000000000000000000000000000000000000
  3456. 0000000000000000000000000000000000000000000000000000000000000000
  3457. 0000000000000000000000000000000000000000000000000000000000000000
  3458. 0000000000000000000000000000000000000000000000000000000000000000
  3459. 0000000000000000000000000000000000000000000000000000000000000000
  3460. 0000000000000000000000000000000000000000000000000000000000000000
  3461. 0000000000000000000000000000000000000000000000000000000000000000
  3462. 0000000000000000000000000000000000000000000000000000000000000000
  3463. 0000000000000000000000000000000000000000000000000000000000000000
  3464. 0000000000000000000000000000000000000000000000000000000000000000
  3465. 0000000000003930280039302800393028003930280039302800393028000000
  3466. 0000000000000000000000000000000000000000000000000000000000000000
  3467. 0000000000000000000000000000000000000000000000000000000000000000
  3468. 0000000000000000000000000000000000000000000000000000000000000000
  3469. 0000000000000000000000000000000000000000000000000000000000000000
  3470. 0000000000000000000000000000000000000000000000000000000000000000
  3471. 0000000000000000000000000000000000000000000000000000000000000000
  3472. 0000000000000000000000000000000000000000000000000000000000000000
  3473. 0000000000000000000000000000000000000000000000000000000000000000
  3474. 0000000000000000000000000000000000000000000000000000000000000000
  3475. 0000000000000000000000000000000000000000000000000000000000000000
  3476. 0000000000000000000000000000000000000000000000000000000000000000
  3477. 0000000000000000000000000000000000000000000000000000000000000000
  3478. 0000000000000000000000000000000000000000000000000000000000000000
  3479. 0000000000000000000000000000000000000000000000000000000000000000
  3480. 0000000000000000000000000000000000000000000000000000000000000000
  3481. 0000000000002D2620002D2620002D2620002D2620002D2620002D2620000000
  3482. 0000000000000000000000000000000000000000000000000000000000000000
  3483. 0000000000000000000000000000000000000000000000000000000000000000
  3484. 0000000000000000000000000000000000000000000000000000000000000000
  3485. 0000000000000000000000000000000000000000000000000000000000000000
  3486. 0000000000000000000000000000000000000000000000000000000000000000
  3487. 0000000000000000000000000000000000000000000000000000000000000000
  3488. 0000000000000000000000000000000000000000000000000000000000000000
  3489. 0000000000000000000000000000000000000000000000000000000000000000
  3490. 0000000000000000000000000000000000000000000000000000000000000000
  3491. 0000000000000000000000000000000000000000000000000000000000000000
  3492. 0000000000000000000000000000000000000000000000000000000000000000
  3493. 0000000000000000000000000000000000000000000000000000000000000000
  3494. 0000000000000000000000000000000000000000000000000000000000000000
  3495. 00000000000000000000000000000000000000000000000000008C857E004C40
  3496. 36004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3497. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3498. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3499. 35004C4036008F88810000000000000000000000000000000000000000000000
  3500. 0000000000000000000000000000000000000000000000000000000000000000
  3501. 0000000000000000000000000000000000000000000000000000000000000000
  3502. 0000000000000000000000000000000000000000000000000000000000000000
  3503. 0000000000000000000000000000000000000000000000000000000000000000
  3504. 0000000000000000000000000000000000000000000000000000000000000000
  3505. 0000000000000000000000000000000000000000000000000000000000000000
  3506. 0000000000000000000000000000000000000000000000000000000000000000
  3507. 0000000000000000000000000000000000000000000000000000000000000000
  3508. 0000000000000000000000000000000000000000000000000000000000000000
  3509. 0000000000000000000000000000000000000000000000000000000000000000
  3510. 0000000000000000000000000000000000000000000000000000000000000000
  3511. 00000000000000000000000000000000000000000000000000004C4036004D41
  3512. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3513. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3514. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3515. 38004D4138004C40360000000000000000000000000000000000000000000000
  3516. 0000000000000000000000000000000000000000000000000000000000000000
  3517. 0000000000000000000000000000000000000000000000000000000000000000
  3518. 0000000000000000000000000000000000000000000000000000000000000000
  3519. 0000000000000000000000000000000000000000000000000000000000000000
  3520. 0000000000000000000000000000000000000000000000000000000000000000
  3521. 0000000000000000000000000000000000000000000000000000000000000000
  3522. 0000000000000000000000000000000000000000000000000000000000000000
  3523. 0000000000000000000000000000000000000000000000000000000000000000
  3524. 0000000000000000000000000000000000000000000000000000000000000000
  3525. 0000000000000000000000000000000000000000000000000000000000000000
  3526. 0000000000000000000000000000000000000000000000000000000000000000
  3527. 00000000000000000000000000000000000000000000000000004B3F35005043
  3528. 3A0050433A0050433A0050433A0050433A0050433A0050433A0050433A005043
  3529. 3A0050433A0050433A0050433A0050433A0050433A0050433A0050433A005043
  3530. 3A0050433A0050433A0050433A0050433A0050433A0029BD3E0029BD3E0029BD
  3531. 3E0050433A004B3F350000000000000000000000000000000000000000000000
  3532. 0000000000000000000000000000000000000000000000000000000000000000
  3533. 0000000000000000000000000000000000000000000000000000000000000000
  3534. 0000000000000000000000000000000000000000000000000000000000000000
  3535. 0000000000000000000000000000000000000000000000000000000000000000
  3536. 0000000000000000000000000000000000000000000000000000000000000000
  3537. 0000000000000000000000000000000000000000000000000000000000000000
  3538. 0000000000000000000000000000000000000000000000000000000000000000
  3539. 0000000000000000000000000000000000000000000000000000000000000000
  3540. 0000000000000000000000000000000000000000000000000000000000000000
  3541. 0000000000000000000000000000000000000000000000000000000000000000
  3542. 0000000000000000000000000000000000000000000000000000000000000000
  3543. 00000000000000000000000000000000000000000000000000004B3F35005245
  3544. 3B008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3545. 78008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3546. 78008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3547. 780052453B004B3F350000000000000000000000000000000000000000000000
  3548. 0000000000000000000000000000000000000000000000000000000000000000
  3549. 0000000000000000000000000000000000000000000000000000000000000000
  3550. 0000000000000000000000000000000000000000000000000000000000000000
  3551. 0000000000000000000000000000000000000000000000000000000000000000
  3552. 0000000000000000000000000000000000000000000000000000000000000000
  3553. 0000000000000000000000000000000000000000000000000000000000000000
  3554. 0000000000000000000000000000000000000000000000000000000000000000
  3555. 0000000000000000000000000000000000000000000000000000000000000000
  3556. 0000000000000000000000000000000000000000000000000000000000000000
  3557. 0000000000000000000000000000000000000000000000000000000000000000
  3558. 0000000000000000000000000000000000000000000000000000000000000000
  3559. 00000000000000000000000000000000000000000000000000004B3F35005447
  3560. 3D00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3561. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3562. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3563. FF0054473D004B3F350000000000000000000000000000000000000000000000
  3564. 0000000000000000000000000000000000000000000000000000000000000000
  3565. 0000000000000000000000000000000000000000000000000000000000000000
  3566. 0000000000000000000000000000000000000000000000000000000000000000
  3567. 0000000000000000000000000000000000000000000000000000000000000000
  3568. 0000000000000000000000000000000000000000000000000000000000000000
  3569. 0000000000000000000000000000000000000000000000000000000000000000
  3570. 0000000000000000000000000000000000000000000000000000000000000000
  3571. 0000000000000000000000000000000000000000000000000000000000000000
  3572. 0000000000000000000000000000000000000000000000000000000000000000
  3573. 0000000000000000000000000000000000000000000000000000000000000000
  3574. 0000000000000000000000000000000000000000000000000000000000000000
  3575. 00000000000000000000000000000000000000000000000000004B3F35005749
  3576. 3F00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3577. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3578. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3579. FF0057493F004B3F350000000000000000000000000000000000000000000000
  3580. 0000000000000000000000000000000000000000000000000000000000000000
  3581. 0000000000000000000000000000000000000000000000000000000000000000
  3582. 0000000000000000000000000000000000000000000000000000000000000000
  3583. 0000000000000000000000000000000000000000000000000000000000000000
  3584. 0000000000000000000000000000000000000000000000000000000000000000
  3585. 0000000000000000000000000000000000000000000000000000000000000000
  3586. 0000000000000000000000000000000000000000000000000000000000000000
  3587. 0000000000000000000000000000000000000000000000000000000000000000
  3588. 0000000000000000000000000000000000000000000000000000000000000000
  3589. 0000000000000000000000000000000000000000000000000000000000000000
  3590. 0000000000000000000000000000000000000000000000000000000000000000
  3591. 00000000000000000000000000000000000000000000000000004B3F3500594B
  3592. 4000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3593. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3594. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3595. FF00594B40004B3F350000000000000000000000000000000000000000000000
  3596. 0000000000000000000000000000000000000000000000000000000000000000
  3597. 0000000000000000000000000000000000000000000000000000000000000000
  3598. 0000000000000000000000000000000000000000000000000000000000000000
  3599. 0000000000000000000000000000000000000000000000000000000000000000
  3600. 0000000000000000000000000000000000000000000000000000000000000000
  3601. 0000000000000000000000000000000000000000000000000000000000000000
  3602. 0000000000000000000000000000000000000000000000000000000000000000
  3603. 0000000000000000000000000000000000000000000000000000000000000000
  3604. 0000000000000000000000000000000000000000000000000000000000000000
  3605. 0000000000000000000000000000000000000000000000000000000000000000
  3606. 0000000000000000000000000000000000000000000000000000000000000000
  3607. 00000000000000000000000000000000000000000000000000004B3F35005B4D
  3608. 4200FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3609. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3610. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3611. FF005B4D42004B3F350000000000000000000000000000000000000000000000
  3612. 0000000000000000000000000000000000000000000000000000000000000000
  3613. 0000000000000000000000000000000000000000000000000000000000000000
  3614. 0000000000000000000000000000000000000000000000000000000000000000
  3615. 0000000000000000000000000000000000000000000000000000000000000000
  3616. 0000000000000000000000000000000000000000000000000000000000000000
  3617. 0000000000000000000000000000000000000000000000000000000000000000
  3618. 0000000000000000000000000000000000000000000000000000000000000000
  3619. 0000000000000000000000000000000000000000000000000000000000000000
  3620. 0000000000000000000000000000000000000000000000000000000000000000
  3621. 0000000000000000000000000000000000000000000000000000000000000000
  3622. 0000000000000000000000000000000000000000000000000000000000000000
  3623. 00000000000000000000000000000000000000000000000000004B3F35005E4F
  3624. 4400FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3625. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3626. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3627. FF005E4F44004B3F350000000000000000000000000000000000000000000000
  3628. 0000000000000000000000000000000000000000000000000000000000000000
  3629. 0000000000000000000000000000000000000000000000000000000000000000
  3630. 0000000000000000000000000000000000000000000000000000000000000000
  3631. 0000000000000000000000000000000000000000000000000000000000000000
  3632. 0000000000000000000000000000000000000000000000000000000000000000
  3633. 0000000000000000000000000000000000000000000000000000000000000000
  3634. 0000000000000000000000000000000000000000000000000000000000000000
  3635. 0000000000000000000000000000000000000000000000000000000000000000
  3636. 0000000000000000000000000000000000000000000000000000000000000000
  3637. 0000000000000000000000000000000000000000000000000000000000000000
  3638. 0000000000000000000000000000000000000000000000000000000000000000
  3639. 00000000000000000000000000000000000000000000000000004B3F35006051
  3640. 4600FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3641. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3642. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3643. FF00605146004B3F350000000000000000000000000000000000000000000000
  3644. 0000000000000000000000000000000000000000000000000000000000000000
  3645. 0000000000000000000000000000000000000000000000000000000000000000
  3646. 0000000000000000000000000000000000000000000000000000000000000000
  3647. 0000000000000000000000000000000000000000000000000000000000000000
  3648. 0000000000000000000000000000000000000000000000000000000000000000
  3649. 0000000000000000000000000000000000000000000000000000000000000000
  3650. 0000000000000000000000000000000000000000000000000000000000000000
  3651. 0000000000000000000000000000000000000000000000000000000000000000
  3652. 0000000000000000000000000000000000000000000000000000000000000000
  3653. 0000000000000000000000000000000000000000000000000000000000000000
  3654. 0000000000000000000000000000000000000000000000000000000000000000
  3655. 00000000000000000000000000000000000000000000000000004B3F35006253
  3656. 4700FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3657. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3658. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3659. FF00625347004B3F350000000000000000000000000000000000000000000000
  3660. 0000000000000000000000000000000000000000000000000000000000000000
  3661. 0000000000000000000000000000000000000000000000000000000000000000
  3662. 0000000000000000000000000000000000000000000000000000000000000000
  3663. 0000000000000000000000000000000000000000000000000000000000000000
  3664. 0000000000000000000000000000000000000000000000000000000000000000
  3665. 0000000000000000000000000000000000000000000000000000000000000000
  3666. 0000000000000000000000000000000000000000000000000000000000000000
  3667. 0000000000000000000000000000000000000000000000000000000000000000
  3668. 0000000000000000000000000000000000000000000000000000000000000000
  3669. 0000000000000000000000000000000000000000000000000000000000000000
  3670. 0000000000000000000000000000000000000000000000000000000000000000
  3671. 00000000000000000000000000000000000000000000000000004B3F35006555
  3672. 4900FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3673. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3674. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3675. FF00655549004B3F350000000000000000000000000000000000000000000000
  3676. 0000000000000000000000000000000000000000000000000000000000000000
  3677. 0000000000000000000000000000000000000000000000000000000000000000
  3678. 0000000000000000000000000000000000000000000000000000000000000000
  3679. 0000000000000000000000000000000000000000000000000000000000000000
  3680. 0000000000000000000000000000000000000000000000000000000000000000
  3681. 0000000000000000000000000000000000000000000000000000000000000000
  3682. 0000000000000000000000000000000000000000000000000000000000000000
  3683. 0000000000000000000000000000000000000000000000000000000000000000
  3684. 0000000000000000000000000000000000000000000000000000000000000000
  3685. 0000000000000000000000000000000000000000000000000000000000000000
  3686. 0000000000000000000000000000000000000000000000000000000000000000
  3687. 00000000000000000000000000000000000000000000000000004B3F35006757
  3688. 4B00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3689. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3690. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3691. FF0067574B004B3F350000000000000000000000000000000000000000000000
  3692. 0000000000000000000000000000000000000000000000000000000000000000
  3693. 0000000000000000000000000000000000000000000000000000000000000000
  3694. 0000000000000000000000000000000000000000000000000000000000000000
  3695. 0000000000000000000000000000000000000000000000000000000000000000
  3696. 0000000000000000000000000000000000000000000000000000000000000000
  3697. 0000000000000000000000000000000000000000000000000000000000000000
  3698. 0000000000000000000000000000000000000000000000000000000000000000
  3699. 0000000000000000000000000000000000000000000000000000000000000000
  3700. 0000000000000000000000000000000000000000000000000000000000000000
  3701. 0000000000000000000000000000000000000000000000000000000000000000
  3702. 0000000000000000000000000000000000000000000000000000000000000000
  3703. 00000000000000000000000000000000000000000000000000004B3F35006A59
  3704. 4C00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3705. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3706. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3707. FF006A594C004B3F350000000000000000000000000000000000000000000000
  3708. 0000000000000000000000000000000000000000000000000000000000000000
  3709. 0000000000000000000000000000000000000000000000000000000000000000
  3710. 0000000000000000000000000000000000000000000000000000000000000000
  3711. 0000000000000000000000000000000000000000000000000000000000000000
  3712. 0000000000000000000000000000000000000000000000000000000000000000
  3713. 0000000000000000000000000000000000000000000000000000000000000000
  3714. 0000000000000000000000000000000000000000000000000000000000000000
  3715. 0000000000000000000000000000000000000000000000000000000000000000
  3716. 0000000000000000000000000000000000000000000000000000000000000000
  3717. 0000000000000000000000000000000000000000000000000000000000000000
  3718. 0000000000000000000000000000000000000000000000000000000000000000
  3719. 00000000000000000000000000000000000000000000000000004B3F35006C5B
  3720. 4E00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3721. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3722. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3723. FF006C5B4E004B3F350000000000000000000000000000000000000000000000
  3724. 0000000000000000000000000000000000000000000000000000000000000000
  3725. 0000000000000000000000000000000000000000000000000000000000000000
  3726. 0000000000000000000000000000000000000000000000000000000000000000
  3727. 0000000000000000000000000000000000000000000000000000000000000000
  3728. 0000000000000000000000000000000000000000000000000000000000000000
  3729. 0000000000000000000000000000000000000000000000000000000000000000
  3730. 0000000000000000000000000000000000000000000000000000000000000000
  3731. 0000000000000000000000000000000000000000000000000000000000000000
  3732. 0000000000000000000000000000000000000000000000000000000000000000
  3733. 0000000000000000000000000000000000000000000000000000000000000000
  3734. 0000000000000000000000000000000000000000000000000000000000000000
  3735. 00000000000000000000000000000000000000000000000000004B3F35006F5D
  3736. 5000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3737. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3738. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3739. FF006F5D50004B3F350000000000000000000000000000000000000000000000
  3740. 0000000000000000000000000000000000000000000000000000000000000000
  3741. 0000000000000000000000000000000000000000000000000000000000000000
  3742. 0000000000000000000000000000000000000000000000000000000000000000
  3743. 0000000000000000000000000000000000000000000000000000000000000000
  3744. 0000000000000000000000000000000000000000000000000000000000000000
  3745. 0000000000000000000000000000000000000000000000000000000000000000
  3746. 0000000000000000000000000000000000000000000000000000000000000000
  3747. 0000000000000000000000000000000000000000000000000000000000000000
  3748. 0000000000000000000000000000000000000000000000000000000000000000
  3749. 0000000000000000000000000000000000000000000000000000000000000000
  3750. 0000000000000000000000000000000000000000000000000000000000000000
  3751. 00000000000000000000000000000000000000000000000000004B3F3500715F
  3752. 5200FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3753. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3754. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3755. FF00715F52004B3F350000000000000000000000000000000000000000000000
  3756. 0000000000000000000000000000000000000000000000000000000000000000
  3757. 0000000000000000000000000000000000000000000000000000000000000000
  3758. 0000000000000000000000000000000000000000000000000000000000000000
  3759. 0000000000000000000000000000000000000000000000000000000000000000
  3760. 0000000000000000000000000000000000000000000000000000000000000000
  3761. 0000000000000000000000000000000000000000000000000000000000000000
  3762. 0000000000000000000000000000000000000000000000000000000000000000
  3763. 0000000000000000000000000000000000000000000000000000000000000000
  3764. 0000000000000000000000000000000000000000000000000000000000000000
  3765. 0000000000000000000000000000000000000000000000000000000000000000
  3766. 0000000000000000000000000000000000000000000000000000000000000000
  3767. 00000000000000000000000000000000000000000000000000004B3F35007361
  3768. 5300FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3769. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3770. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3771. FF00736153004B3F350000000000000000000000000000000000000000000000
  3772. 0000000000000000000000000000000000000000000000000000000000000000
  3773. 0000000000000000000000000000000000000000000000000000000000000000
  3774. 0000000000000000000000000000000000000000000000000000000000000000
  3775. 0000000000000000000000000000000000000000000000000000000000000000
  3776. 0000000000000000000000000000000000000000000000000000000000000000
  3777. 0000000000000000000000000000000000000000000000000000000000000000
  3778. 0000000000000000000000000000000000000000000000000000000000000000
  3779. 0000000000000000000000000000000000000000000000000000000000000000
  3780. 0000000000000000000000000000000000000000000000000000000000000000
  3781. 0000000000000000000000000000000000000000000000000000000000000000
  3782. 0000000000000000000000000000000000000000000000000000000000000000
  3783. 00000000000000000000000000000000000000000000000000004B3F35007563
  3784. 5500FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3785. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3786. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3787. FF00756355004B3F350000000000000000000000000000000000000000000000
  3788. 0000000000000000000000000000000000000000000000000000000000000000
  3789. 0000000000000000000000000000000000000000000000000000000000000000
  3790. 0000000000000000000000000000000000000000000000000000000000000000
  3791. 0000000000000000000000000000000000000000000000000000000000000000
  3792. 0000000000000000000000000000000000000000000000000000000000000000
  3793. 0000000000000000000000000000000000000000000000000000000000000000
  3794. 0000000000000000000000000000000000000000000000000000000000000000
  3795. 0000000000000000000000000000000000000000000000000000000000000000
  3796. 0000000000000000000000000000000000000000000000000000000000000000
  3797. 0000000000000000000000000000000000000000000000000000000000000000
  3798. 0000000000000000000000000000000000000000000000000000000000000000
  3799. 00000000000000000000000000000000000000000000000000004B3F35007865
  3800. 5700FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3801. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3802. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3803. FF00786557004B3F350000000000000000000000000000000000000000000000
  3804. 0000000000000000000000000000000000000000000000000000000000000000
  3805. 0000000000000000000000000000000000000000000000000000000000000000
  3806. 0000000000000000000000000000000000000000000000000000000000000000
  3807. 0000000000000000000000000000000000000000000000000000000000000000
  3808. 0000000000000000000000000000000000000000000000000000000000000000
  3809. 0000000000000000000000000000000000000000000000000000000000000000
  3810. 0000000000000000000000000000000000000000000000000000000000000000
  3811. 0000000000000000000000000000000000000000000000000000000000000000
  3812. 0000000000000000000000000000000000000000000000000000000000000000
  3813. 0000000000000000000000000000000000000000000000000000000000000000
  3814. 0000000000000000000000000000000000000000000000000000000000000000
  3815. 00000000000000000000000000000000000000000000000000004C4036007A67
  3816. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3817. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3818. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3819. 59007A6759004C40360000000000000000000000000000000000000000000000
  3820. 0000000000000000000000000000000000000000000000000000000000000000
  3821. 0000000000000000000000000000000000000000000000000000000000000000
  3822. 0000000000000000000000000000000000000000000000000000000000000000
  3823. 0000000000000000000000000000000000000000000000000000000000000000
  3824. 0000000000000000000000000000000000000000000000000000000000000000
  3825. 0000000000000000000000000000000000000000000000000000000000000000
  3826. 0000000000000000000000000000000000000000000000000000000000000000
  3827. 0000000000000000000000000000000000000000000000000000000000000000
  3828. 0000000000000000000000000000000000000000000000000000000000000000
  3829. 0000000000000000000000000000000000000000000000000000000000000000
  3830. 0000000000000000000000000000000000000000000000000000000000000000
  3831. 00000000000000000000000000000000000000000000000000008B837D004B3F
  3832. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3833. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3834. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3835. 35004C4036008C857E0000000000000000000000000000000000000000000000
  3836. 0000000000000000000000000000000000000000000000000000000000000000
  3837. 0000000000000000000000000000000000000000000000000000000000000000
  3838. 0000000000000000000000000000000000000000000000000000000000000000
  3839. 0000000000000000000000000000000000000000000000000000000000000000
  3840. 0000000000000000000000000000000000000000000000000000000000000000
  3841. 0000000000000000000000000000000000000000000000000000000000000000
  3842. 0000000000000000000000000000000000000000000000000000000000000000
  3843. 0000000000000000000000000000000000000000000000000000000000000000
  3844. 0000000000000000000000000000000000000000000000000000000000000000
  3845. 0000000000000000000000000000000000000000000000000000000000000000
  3846. 0000000000000000000000000000000000000000000000000000000000000000
  3847. 0000000000000000000000000000000000000000000000000000000000000000
  3848. 0000000000000000000000000000000000000000000000000000000000000000
  3849. 0000000000000000000000000000000000000000000000000000000000000000
  3850. 0000000000000000000000000000000000000000000000000000000000000000
  3851. 0000000000000000000000000000000000000000000000000000000000000000
  3852. 0000000000000000000000000000000000000000000000000000000000000000
  3853. 0000000000000000000000000000000000000000000000000000000000000000
  3854. 0000000000000000000000000000000000000000000000000000000000000000
  3855. 0000000000000000000000000000000000000000000000000000000000000000
  3856. 0000000000000000000000000000000000000000000000000000000000000000
  3857. 0000000000000000000000000000000000000000000000000000000000000000
  3858. 0000000000000000000000000000000000000000000000000000000000000000
  3859. 0000000000000000000000000000000000000000000000000000000000000000
  3860. 0000000000000000000000000000000000000000000000000000000000000000
  3861. 0000000000000000000000000000000000000000000000000000000000000000
  3862. 0000000000000000000000000000000000000000000000000000000000000000
  3863. 0000000000000000000000000000000000000000000000000000000000000000
  3864. 0000000000000000000000000000000000000000000000000000000000000000
  3865. 0000000000000000000000000000000000000000000000000000000000000000
  3866. 0000000000000000000000000000000000000000000000000000000000000000
  3867. 0000000000000000000000000000000000000000000000000000000000000000
  3868. 0000000000000000000000000000000000000000000000000000000000000000
  3869. 0000000000000000000000000000000000000000000000000000000000000000
  3870. 0000000000000000000000000000000000000000000000000000000000000000
  3871. 0000000000000000000000000000000000000000000000000000000000000000
  3872. 0000000000000000000000000000000000000000000000000000000000000000
  3873. 0000000000000000000000000000000000000000000000000000000000000000
  3874. 0000000000000000000000000000000000000000000000000000000000000000
  3875. 0000000000000000000000000000000000000000000000000000000000000000
  3876. 0000000000000000000000000000000000000000000000000000000000000000
  3877. 0000000000000000000000000000000000000000000000000000000000000000
  3878. 0000000000000000000000000000000000000000000000000000000000000000
  3879. 000000000000000000000000000000000000424D3E000000000000003E000000
  3880. 2800000080000000200000000100010000000000000200000000000000000000
  3881. 000000000000000000000000FFFFFF00FFFFFFFF000000000000000000000000
  3882. FFFFFFFF000000000000000000000000FF0000FF000000000000000000000000
  3883. FF0000FF000000000000000000000000FF0000FF000000000000000000000000
  3884. FF0000FF000000000000000000000000FFF81FFF000000000000000000000000
  3885. FFF81FFF000000000000000000000000C0000003000000000000000000000000
  3886. C0000003000000000000000000000000C0000003000000000000000000000000
  3887. C0000003000000000000000000000000C0000003000000000000000000000000
  3888. C0000003000000000000000000000000C0000003000000000000000000000000
  3889. C0000003000000000000000000000000C0000003000000000000000000000000
  3890. C0000003000000000000000000000000C0000003000000000000000000000000
  3891. C0000003000000000000000000000000C0000003000000000000000000000000
  3892. C0000003000000000000000000000000C0000003000000000000000000000000
  3893. C0000003000000000000000000000000C0000003000000000000000000000000
  3894. C0000003000000000000000000000000C0000003000000000000000000000000
  3895. C0000003000000000000000000000000C0000003000000000000000000000000
  3896. C0000003000000000000000000000000FFFFFFFF000000000000000000000000
  3897. FFFFFFFF00000000000000000000000000000000000000000000000000000000
  3898. 000000000000}
  3899. end
  3900. object PrivateKeyMenu: TPopupMenu
  3901. Left = 128
  3902. Top = 384
  3903. object PrivateKeyGenerateItem: TMenuItem
  3904. Caption = '&Generate New Key Pair with PuTTYgen...'
  3905. OnClick = PrivateKeyGenerateItemClick
  3906. end
  3907. object PrivateKeyUploadItem: TMenuItem
  3908. Caption = '&Install Public Key into Server...'
  3909. OnClick = PrivateKeyUploadItemClick
  3910. end
  3911. end
  3912. end