diff --git a/roles/base_setup/tasks/main.yml b/roles/base_setup/tasks/main.yml index 6e8bf23..1174896 100644 --- a/roles/base_setup/tasks/main.yml +++ b/roles/base_setup/tasks/main.yml @@ -132,15 +132,63 @@ loop: "{{ ssh_public_keys }}" become: yes +# ========== Создание администратора zailon ========== +- name: Create admin user zailon + user: + name: zailon + shell: /bin/bash + groups: sudo + append: yes + create_home: yes + state: present + become: yes + +- name: Set password for zailon from vault + user: + name: zailon + password: "{{ vault_zailon_password | password_hash('sha512') }}" + update_password: always + become: yes + no_log: true + +- name: Create .ssh directory for zailon + file: + path: /home/zailon/.ssh + state: directory + mode: '0700' + owner: zailon + group: zailon + become: yes + +- name: Add authorized keys for zailon + authorized_key: + user: zailon + state: present + key: "{{ item }}" + loop: "{{ ssh_public_keys }}" + become: yes + +- name: Copy bashrc to zailon + copy: + src: /root/.bashrc + dest: /home/zailon/.bashrc + owner: zailon + group: zailon + mode: '0644' + remote_src: yes + become: yes + +# ========== Настройка SSH ========== - name: Configure SSH security lineinfile: path: /etc/ssh/sshd_config regexp: "{{ item.regexp }}" line: "{{ item.line }}" state: present + validate: 'sshd -t -f %s' loop: - { regexp: '^PasswordAuthentication', line: 'PasswordAuthentication no' } - - { regexp: '^PermitRootLogin', line: 'PermitRootLogin prohibit-password' } + - { regexp: '^PermitRootLogin', line: 'PermitRootLogin no' } - { regexp: '^PubkeyAuthentication', line: 'PubkeyAuthentication yes' } notify: restart ssh become: yes diff --git a/vault.yml b/vault.yml index 25ae8a7..5755c52 100644 --- a/vault.yml +++ b/vault.yml @@ -1,184 +1,197 @@ $ANSIBLE_VAULT;1.1;AES256 -30656364373165646630643866396431353931356231643862656437333766663139353631626462 -3937373835636337666562383836333636363939353161390a353434396636316163353965343139 -33306138633737333530636436393332383464613437313234643836623936313034306130316361 -3933663032306661310a343365313236336536366639333264326365303239316537633131393261 -31653232386635303730383961663234313565306639313766383461306434646462353538646237 -63623733633664326439373537306336613663353563323133383834343830303732346538666339 -36366664666231623966396363396130376335396465396139643536636332343364613962303065 -30383866326232366336343066386161316562313866663637393738666636633965326132373839 -62363565646435366631346563616332666439356464646361623061316238303365313939616363 -35613932623134386364623332613833636533643736346561376634396465623830393565626665 -32336466383063643962613065653635643238336237636234323132316266336233326537643733 -32643134643333636333336537356232626563643436313338633565633035313137346337626137 -35613134356634393464643733353232623561353539623562323437616639663965633831653038 -61373834383462666437663365636537666665633835626634313466346534643235626663353335 -38613662626438396333653262333162326138623135333361326336376564643062313037353132 -30656537613433316263643530396332333338366531636662333335663261633135666662653063 -35343766656634316334313533376638653363336135643234313065313162353939636562343439 -63613534353164316663336461373065346562653964326231343837353262323063396533636163 -64336636313931386138313939343939393662393433326463366364326464643263613736633766 -31313665646164353336376236663134656631666538636638356161616238653461303531383732 -65336463303530363165383133633365376336636538346463383161303037383835626565633666 -63366532323737386635303337626139333133313930356233383362356164343062393732303366 -65636237393735346437613531663631333363333864313836616461653036666635326537636637 -37306537323139653034343130353735323037643231313163303634623161393465623164653532 -37333135396634363561656637303534616363636235653630313532663662306237346335373630 -62616561336530643562386561646638643039386338363031616262636531663435343733353961 -35386661323730626135346139313966656665313633366561366563656136326530313537346165 -62323066386139663536366538613834383561653932633038326266376235636339303735343839 -31376432646534656265613837373036316662316137316337316236623535316566653530666665 -64653433623935373338326532623166326537306137613933393234356530646134613136356363 -63383131656532646334346234616135646263306339613164383130333538363030613735623262 -35373735666362366363636439666666636633353139393438616234303734623862633730383764 -62303332376437636432323164323436643633653232366433343536383266663261343261626137 -37313838653038636664613462396565393632393837306266306339363039303339366332383261 -64663232306663393531616134643163656464336662383438313339643038356234356231303562 -36376162653862656434373037376138333664666263633733393766316430386435383532323634 -30383264353531653963356136373537643930306532663864366366643165373232626235613962 -66663431366632646137376564393531323663336164636631373833303963303735623238666165 -35633739343834373932303362383130303063616665366364656166613732326464343066626138 -65376337346538346464346632363065616363356362653064623565616463656462303437626163 -65616136626337663538343030373666363864383161313934353738316631313732616166323865 -32353031323038663866656532363430303139343932646264346230323633356534623632656263 -66363731313032363162366265376162393163663135336166633335633163336465386336643732 -35643135636233376162366462363731643764663338366663616134636335383331643863353930 -66303432343133326432663635663566646431353035333862313238653830613863353239616435 -61303535626230656632383433383238303536666631396131343864656238363631376461356337 -35333235636131663366633063646332666432646239636266656631363034313033633564323230 -62303531343533653265373037383938626435396563666237616438376464353733356239346439 -61346136303531363138313734623234386531666130376235313561666639666364636532366235 -64633965323961333036333736393162333066306265666366623430616366346339363630613464 -34303266353262316465366662336632323635373363666230646163323232333562303564646636 -34363732313331386331363039333266383138666634653939613166363764373331356435316564 -37396335666233653563646265613139353731643664363038303263326163663066623339663965 -64643863336136623465336661376333643739306334666532333334653138333730383437663265 -64353234356137373266623265326663346635613564613838336334363031616463666431383561 -36326366366233313061646265383061353662633162376537633138343534363139343063646237 -32616232313031353530633064356433643731383434333663326635386335613966356233653566 -66376237373431633362343737353733376632383839633630386136623961393035346136383534 -66616162363962313333383466303932386136353064393634653232393431326462323162613830 -37616337383432646563323833383333636463346531616430613938363536343335343737383033 -66666263626534363034623530656335313264303835346134646133323537386137366635353664 -35393032383934336265633861633138623337326631336139393963613236303439613537366261 -63373665313461356562313361643534363433653033623431383632656338636332636539383065 -39383338386563383231303166313839343965303462643132323034313630393662363164353363 -66366439656365323938383733653531303331663731373362303462393961373639623165646431 -65313865653032643439313136363261626361666337356138616366303333373833336665303161 -38666661303765643463373735333034313332313832366565316431383436343364313734643563 -63373065656135376431356264326136323236643765346233383562343666396133613336373337 -36653837616330356164383562303336343334336530303362633564316564623935646435383631 -64326436313563323039333665396161316331383266386264663530356337396238656131656664 -64313763653531303733366533636437613234616465636538356236323031323130333930666230 -66656665336237636438383562316334346434373965306466346432353339323034323065313631 -30303561346431643163636366356435363434353932653337643466646363333235643963633932 -38313839383262326162633362366636336261343063363965353838383038663665663331633366 -66326162663664353430633033623137326435656164633039313162363664316465623666663237 -62373934623435636635623838396538663235303164656130643962376561613964366462363863 -38366363363537336232366231616139353635653334306338303631663065623637623262623834 -31336161643539313031643934336565663631376435613866376535633838633961636461613065 -32373537653165396262396363313265306138653437653431333961643831376530653131323264 -36643339636166333530323931363763306632306531373736623762393636376135626635373137 -62616265313634313764346133326535363666663036646463613938646434383533363464333061 -31323936623030633237353236323265613837343165643061393836303765336239363431313233 -33336465613731663130356361666234333937616135653735303561356431373662343666656130 -35313232303133626334373063636562616537643337663933616538306530313530376534633436 -33633565643930316661333661633030623833393564613332323439356335323763356635393362 -31363136613134383762376636343963356436323366643434633162616361306362326536643638 -30303964313463626432626561656633383231333661666261353664326663393438613761316434 -34646138336230626639366330343664343434333733663230623538346162343762643938356437 -62353632616336363266616430646363623331626534336534636137626437636561633735393237 -32346637333338393936346236356162663330333434623165633937323335616565356239366335 -33343339393039636562343738366664643737346266643962386530373736323130363337356565 -63316264656161616265396534623662376630643763373763343838613164303035393532623033 -62346337343531306266393335636435656239356266393937353863643036643933366461343665 -61636435353237306233393237333764386135353532383162356536613261303630383564356561 -30333735363835383738303435343364363337616435326233373665396238616431303264393864 -62613762326235393639663832363632326531383331636661616638343662643462393761396330 -33306566353935386234356436303363653631643932343630653231643466393466393862666230 -31306130393539633163366364306334666362363266633361396465636637623338313464363837 -64386661323334346336333736366439376465373066376539636531343732653763303530316138 -38653734313939326535653935623736613639623331373832313138343233396533643739386539 -61643961633438643133666663613362646565346233643431383761343166376133316666326336 -36623238616138663937396433616266653136376564656332333739376135653039633365653962 -37663036313066393634353435313263623634313431386536333738343565396162316636393331 -33373535343962343135323032623730633532653232663166633934346561373038353231323063 -33633062316439316438356238386265353235303132616133623534383133613964333561616138 -62303934616336313730386363363933303530633162393132343536383663323035643066363439 -37313536376437356336636361353731336364396235643737326538306139663436373166633632 -66313738373235666131363637646361623138383835653635393862376139626630363539636335 -32643937663465336464303837383364333961376565666332663231633334393765623864346537 -33373463353634306163656332326661616433616566646133393462656237613662393363626330 -33343361616139626262613233376231306362353135373766396164373366626533643733346466 -38333138326662643834613333666239663732306132636531363335366531336562633237636365 -62346466313166346231353965656465653864396332613836333864643836326539646630643039 -38626464323066646539383031383966636133333333373433653537353639303264323936383631 -64373639623434663137636537313533343238376363376363353263616433313164343531353761 -35323964646631376463393765353564356136633063633363646566383334306263363936326261 -33616237383334346231333833386339613234616365383231663264363331363164326363653563 -32643065643235663139326231636433653962376666643066353538316563353065313039373134 -33313638666164366435336139626435626630613465373461656330343231636266386538616563 -31376633626461646132663537313432386332333232306464383364313466356135613033373662 -32636330383536623962653236326664363936326231613437633365313137323331323732343961 -62383333373234633462373931386433366266373439393761356462666161633035626265383539 -66613363323931666263643034656134393362616533623737653761613332373339363730623761 -31663837663361623531386465323137616632643735303563656632376230663961326436383635 -62656335356464653563376536303938656361656361353637323633396163613438326665313133 -62306162343366666238353138653835616638623639346464666565666137666663663231343462 -39336566316562386532383563396435623236393239376233323736636132656437353539636266 -37653465613231373263343036366432313963376338326632326430353633653833346435613837 -63653935343730383962376134623331366132363961353739393033336566633633396330623437 -63313866653236373966633433353364363165336135643635613164613639383862373238643165 -63666661313134363366393264643637653435646365396432353263633365336265626664653264 -62353263376166626131383132373535613537356231616466323738653630366466343539626463 -64373233373865396664363034663164616439366431353863303065353830666462373962316233 -33623763616134343337396531633239316638303765383630363266346539333338353864346431 -39613139303266653662333635333761313834356332363630306664343031666331316261393431 -37313231383638616437643532343530393030656339623466333561666162656462646165623166 -63353632623638323930366165636564383363346336306161336639353566306262356233663233 -37333961666532373739316539343930323761623361643432353537326563626638393331653462 -65343732303063656364333962323932306162613934303339613735363164653765643339646139 -39373939383365653062313762323332636366393733616265373763383932633030333866646465 -36336135396638313061386631323861656131656231383830366433346330653931306161653036 -61393432393632303432646432353463633637323761373834633666643763653936383430386363 -31323436396161633938346463653130366537353030633133636639363261653132333062323939 -32353936656565343836656231616561333964323163643366366136653333653034613766313235 -31656634343539623864326264656631636533316139626565336363303534613438303664353333 -30356163643836343537666235613161386232633062633865323239616464353431343063316332 -66396631393264333433343131613833306532386463613634306664396565656237663134626165 -62623937643232366538386263326463366235663938386362363134323338363133363663366532 -39306165386462623233386639393233323632313066373161653833383534633964336461333334 -64626136383030636237386637353630313433376439356364646638383561363636616237313332 -34656362663233646663656466623961663535663438376532386532333265386639646339326337 -63643037326333363732653638303763633362613335376536613836396132313736306335386666 -33346631616239306363313566386230613737626564656432366534646161363138376364336639 -62616239376263383061306432363338623831353932336363323261316263366461313430323464 -35663638656632316332343530636663333736376432336239663030383961623439653130383433 -62666461383930363765373462633566373861306438303561616361313630363638613833666663 -32653861393561633638633231653765643866643935393138343735366438383966623732656637 -62626238616161333539363031623534303862633433373030373563353930343536383830653636 -37303366643430633531646232373065353137623139663630363230666536666432313034363264 -38343033346231346332623764383663363333396466386463333232333633396261663033376130 -64623234353235656430303938313831396132366432316331316663336633303566373032386662 -35326431613835313831303430303461613730383638313463663062353864653633623161633338 -33396231316535323466613863386334666130323236353264313230346665633836636330613962 -66313138303163623031613265346437613434643237393662343234336132366638393165376632 -63353731653331633532663936663764323736313731626236386132626239616235656435363966 -64663431303130626137303862343531633932666566303161383134366236306132643837653133 -64366663633739393932353833353066336135373664313865313663623439636561373562626261 -33646135643436303131666665396464313933623163313838333234313261613630623836306535 -30336362303135653434383534356361323731336361656235666361373031323331353036376539 -33323834343236343834616138323531613661633262353938343135313038376132306563653237 -61366536306133623265336231353762373866373962383830663138653431333135313536356530 -31373762366465623430316134383032653861663538353061633165643061633863386135343934 -39336535356230623238346539313361366130363131316234623466653032333363356162396265 -65353634653735616333326130303864613962646636336331353934373164353334373138336633 -37376263386631633063356334366532306666333032333064353036663531623032376135663635 -33663065383131323434376163373731653262663238356666383136386664356166326463623639 -32336337396261663862373338623534363764373734633832316363346636363063353739333037 -62336363623536343363323735303732343131386533643366313135303762353661313763373266 -32656665626234656535626333383766356636613339306336333861663034393836333561613437 -35383266623230643662626166373330303366396261653035373933643833333164383962626263 -30376138363333663530393766653537393762633264353164656564376538396137343465646533 -62633839326132643565353437613862666431653961343464313932396562663239306561366333 -636263666430643837376530636562373465 +66363765373732646137623030316366326462353736356637656564323331353762383133383361 +3864623337343864663931646366393239383365616262620a636531393533363063633762353763 +30633934303466396565643034646133313330386465353237336539643631613665393930396166 +3662386431613532330a353537306362383030626533376337633133383634323031623861663531 +34623435313834343435633438343732313966336566386132353766653032336238333938353037 +37663266636361323030313635356633393464393565356635366430393963623865653562633966 +65313461323832316334326339646537393032353237313430363564373964643635363562303136 +38373465356636333163373033383765656463303563663635313739646635383132313161323334 +39386130383361363430643838383964363763396530313534326566666265313033373439333437 +33326130386337323365343562323731333230636362643530323531353133656533326433613662 +32363338333434393233323637386165333530326631393330656435373162326134363062396331 +63633034343364323535373161313336376236363137353239376531363635616537386562333230 +32363165383666366339663938323638383566643431336439653532393963623638363133353630 +66613566656161363564363438323462346265386232356537376663653762316264643635613265 +65316265393336663665383432306163376434386132656233386232363732613534636364643531 +65373033666634303235343134643031636136646434386138663037653261336262386235313837 +36666363623265653064353232333731346537336236333136623363303238663531633739353235 +64333866656135393031643338326232396136623834356638333431313761616664313434303435 +65623838316535346236666331356639343863663935363963353334303537316534353732303963 +66313564393266643734336461626561646338303133393839633565343664653634653463353730 +32333131356336343936383933633165366339653434646332386661303336353336613864373432 +61316464383331643837613039333861356566353736616462356231613565313866386533366438 +36396663306639383132363133613765343338623766333237313038303466633234653333333132 +36343939366531333162373966313636353566306138643730636662333337633432336462353730 +36333436646338303266326665393035626561373364643730613037393133643536353465323264 +65343561373165373835656661303234626136666239626638393939313566623938643138303231 +38666235343537343564386133306566666561343234353363656134633162616333323732623064 +30393137616531616162646435363039626533643166306331663563396334303230343136343938 +38313662633161376333613663323134353566333362656564363032303834623531326532383130 +37303838616231376332326361633966323634353733623663613666393436383565326566363233 +66383833633038353336653065376133343462666663663532646562666263633934633032653939 +63343338373066666131646335316265653134373063353365396639623133616162383262633138 +64306661303039373233353461373035646233373231333234316531613962643337393234653866 +34343433613663333562313931616162653563326131326235303133656231663237636639323430 +30613030396237613366633263336336663865646464323066333266616138363833326232393034 +39646262343433613966303062306534633262333132663863376336633661353135653631353131 +62646235636334633235366135376538653035383134623432373164393264353865333532643032 +64663065303765653830653766643562623332306234353964323939376338366165343137313937 +30663835393062303836333863626432653831393165656438653337663636316264396462656564 +33383165663532383935356164643036336633366561656566383661663231633363373736616337 +39343765383035656234623235366164393463663838636665356338643964393665663135663366 +66336661663535656535616236653431666134353063343431306632633935623462633837313836 +31376431343238303461643131303931343839663535346132616165353339646131653937326236 +66623138333262643132346262303836316438623039363162653363376437653532303466396565 +36656461373132313238303665623036303565653135646563323736613936353466666436666535 +33623064666131326433633161633264383061356131393536333666633338666133643762396166 +35393538353337333634343761323935363032373664376366613263643030353631323133333661 +64366132393137333963326135613334633532653438376637376161373434353836646239613637 +66333130366566636333313133343965336434323865333731336639656230396632396561373162 +66373938643137336530363464393632383338663961666364376437383961663565666265323065 +62666431326334373135323934626630636562346333363462396463396465313564303036636232 +38366263333037646565376539396232333138333633303862653434666332616336323537623365 +61613037363631393335313961613535623739333430643030656562336134346637613362623734 +63666636363461353134363831633664636535353565323564353363323130346334383063386136 +65396234386431336366383435303365316639643161666465386436373431623165383265303832 +66366336643965326531336162336634363638663563653330626338396366343666366635633263 +35653939346262656335323163643739623565366561353161363936646338613739393666323563 +64356465356638626431613166653233303534666437306365643134633638396233646463316561 +30666462396134646432623639386231333736306164306231633937383766326133363736646132 +33316430396432316262323565613161626434613863396366316338323932343039653564353263 +31386466653265373931663162313239666562633665313661383330326338633831303737633665 +30636237313531313037356334323236303836663132633866393834396165376536393134376461 +30366165366433616363316136613733336130323639326464623931373932616439393639313066 +63626333636164326463633534623362343835343231643063643634373763343633643337383938 +64363166386633383337643934313834346362373163346631663836656139346235643036633164 +61366362363635623265333532366138306166363062393666313835336533613635306235343737 +61346338363861616534303535356236323033636366613237323633363664663537653061313733 +62306534343565623563333231623135336634376262643435386137646335373338306363373466 +62376563653836666430633764663933643735636634393463306632613938323138316464636265 +64653431306431623466326562643935323732356632613336343465306265386363623431653462 +62343263663839396135313263336232313261323833323334633036363031323964356665653436 +39643631643133353961343239363435333039646137643739316436326662353765366365343764 +36623138326137663766626232646335353466373230643764323633353064663432653732313235 +65643037373565613965613238303337366438333764306466313564343236303931393436353266 +66383439353466326336346462393536646363383938613536326231653639373561363133386563 +38303463666138356261643763306138666130323335346566626139376266386362303761333533 +62323733373564663034366363333266663536313164656137366330393736343834323632653737 +62323531306164376535613830376139646131393963613335396131663130313434363536363763 +65623166343132396232373537396331306266396132616638356562333630323536656534623134 +39653163383032623931343963393137643266306633323538616337393837393731383433363233 +39663537393135343664623161383935353236616238303362626465633735623936353839346264 +36653761653163356162346263366538663964616133343964656262323465376533653830386339 +39643733353330363338623936306335636431646337633238323038363034623862393137363036 +63643263613562333062356637363363316236616631636232633133373334626632386536353962 +61626562373136303232306133343833386130393239383262366466303331303963646335336662 +37623136366161393732353738306430633661613061663531346237346132333363623634373534 +39633961343238636333333138336565336564636331633566663663653531616432363963326365 +32373162373961326666313538303866646536333630663738396666396465323436663038353132 +65366331653961343832643966636565666638616365353532313061623661313332323263343835 +33613632326330633634336361353031386130363538313161613032326539373061313132363034 +65616362623064396233316138323536346363316664336430303231616234373531363364363135 +34373161383737353564376233306464343330643733636139363463346232616466303738386539 +66643166396534353665613966363733313562396138393833306462383933323531666666333639 +39663665346362656232313231393361626166333562393766663964323162386663346637313133 +30646639326630653030303338326363343439343336363431346465306661373636313031306461 +39623562386439643662656466386133306135383035666332316236326435666638343632636536 +34666235376163663562376265633066633337626233643166303639353639383161626130326634 +66623530323563366631373235306132323834393238633337386537323563363161653830323730 +39373633666436383336336538383163393432376339626431353239623337343335303037353131 +35363966616636623339373161326465666135396635663830646633386135663330636238343930 +34613432653863363539306430646134613033663331633436646632393163393938613039353838 +30313562353238376263333333353063633138656662646331636464656464373138633439633162 +37393565306534303430653636323939333936646531656166356135666335656362393562663564 +39376465346533666163366535386561623366386665663631316364646466393438653863373533 +31646634313239383962326361326537323037656530303061356365326233333462306635356132 +33306161346632373034633036373762646139633934336562353133653364333530333766323037 +39343039333564396633353732663966653732313135386361353161663265623363393437376130 +65333261383865356630373466616662323831373437303437383265396531643838393838333931 +34363063633135643039323537333366363738306536376361346462323264366266343332333136 +64353437613939633132396164323231366133393165386336383231383037653830323839316333 +63646432383434643863623632663634393432653166323934663963626565333838663264653761 +36633333393432393438353533396436363331653536376436316634303366356637333364656136 +36373132663835303039646132353439663661643433353435646363633232343265396139353438 +35636434323237326561643063646535656465653938396531373632353236383163616566633530 +33393334386339373736336338373338366433616531383431613265343338643663663562643562 +38623338653762646531633030303336333535323064303231316334386561313834383165366331 +36646531313062336332303765666364653464633165626236343732313438336334353361333439 +34656461636239396233633666383234623932383331376166643130306334393138396136383537 +64303962613432633630626565383738636533643636316432613738386166393432636532333334 +30333161353663656238633465666333613531633637326265646466643031623061386130396536 +36393165353531663939326132663234346164393037363631646366653930353034643736663435 +31313434666133383566323838663162303230323964326639316431636439313164363139356636 +66643564633138616162373437336664376661633835656437626433373561623332666635356633 +34636635306163623635616635393639616234633266363061306334376138356232373862333963 +65653835396439356665663866663636386332663836643063323466343731366336343735333362 +65343530313533303066656539303666313837343066366539666366613235356233613634306564 +66326664636263666134393131356139636166363061333335366263316237326237663464353462 +33643963623165323235343231393866376632623538353564353039333831356364613365663234 +38623163323530363465343936646362363931333837326266383362393536333361336636323331 +66616134663337376163353632376463323664626165623766633139313633393731643132613664 +64623533643431616261373331363731663866386634343630353736373937376130303533646231 +63633736636633626434343339306630656466303762323861356434336436353835643134303138 +34376165323564633238666166373861363265336633643935313265313636663836643734396538 +39663934653565346230626631393939303639313839656438646364363838363334373536323565 +35303332336532346632623531613164653138393463616665666231633036623836333736336531 +33346432613365363539383939613036356366323938326235663962393036373830343331313335 +34373566343665623863343564663135323635336162636162376461373735396431376338396166 +34303032653766396130306463343739633462303062313834396438356236633137656665663830 +30623966626135633338623066363631313636656437333738363734313462623931626139333439 +61333334653764333938393064633636326563613162333535303064633236383835336139373039 +30383033613463333432343039323231353362376466316436616638363431616635346162356635 +31613261326138613238343665663635613331366334656661633365386638363434376231666132 +39666638646634313461663830616637656162373765396166383764373064613666633066373862 +63666639383232646565653139353636626663616437653839333137376631326232613536646636 +38396465363035646666613532303038613832616631656666633837336264383833616636643362 +39313234643030333363333435396632373234333063366433316563396565616337663966393564 +34643739386330626362356637323164316361636434393434303831383433663330303132386230 +34643232646230386663333333356431623839623861383835663537366131303837353463336130 +39646565363435343234623563613736653233306562613038616165356636336335616133633363 +65346637383865646161663734643234646462393937393939666437316563396537303935393062 +38373761616538633366643930646334393834323664353834346365373662633933643835643231 +39353764316361643135326231393732346234643930623436656238336230653734316537303738 +62383266616331303139633034353039643333366636313931353366386134633337323833353530 +61303263353965353833386664633832316136343831343533613166396362346239636162633462 +31346538623465343363303338383564653333333238656363386437623938663235386365616334 +31336338383830383833643833313237663437616565356164306464383139653437326434303839 +63343030643938396335636232336266393232663733643866396434376663666564383437376230 +62316535313833393934356338306639303564623536653938333562363737613463613263643637 +65616265326162643261633439336439363431346538306537376338653235363032393731336661 +63303461626334356565663231353731306330383362623633383334666136663666396238323538 +30646630643038383666666632333439376539303134383834373430396232636632653761633065 +30383865613263303661616462356662643264353231316435323439343536383066326165356338 +64613937633131326635643862303532363763376235316339393537616135323530643630626433 +37363039376230343263633139633261353030393636633432326332333265333463353432643130 +32653838353333313465316330316533353633363463636134623930303036303264323635366434 +31323234653638386130356633643135663036316538323364666431653837613464383236656336 +66356466636564376436333265326561613634643734336132653538376263313161303661303933 +34343064313435303339613838353164396666326665656464373837623732666561623763616337 +36633331616664376365663335623166373334653930316636313630356131303338653239363337 +30373364646563623231663537663166336333353862346530666266333632653333343139373533 +35643034393838626661386366346537666630626536333430326335326261356435396335303561 +37303961383661646337333866373438663037376666376530633431343030653066656433326631 +61663365656362376561653236363038626534343833383037343761623566643464393462353038 +61363435663636383864633063643731356133313166353561386338333965666566653466373533 +61643137306162323661383936636364653264383139306636356166343662366436353434306231 +30313838653166356530623734613235356332393131396231616565363534346231613939336565 +30613436623362303835373737303633646237393935626666313738653033396636333231656639 +36356564343336626439333634393335653433646530396430396165613730613564383830356230 +39346431306263393666383330353739383762333333366138613766623334613366623763353664 +66626564303864343432613032613164653832353864386666653538373937303965656635643736 +62343265623636613935636338356566303066393765363737363633303331636562323634386635 +66323961363462336361363333386237643839373765333834326434373138636238363764623230 +39343839346338376232623962346365316432326137383462613832326633343939356132653866 +36346535363431303066623438643039633832646335323665623665306331393164386262303139 +64396635333933386662376633356239323863363261633663333365336637306265616463326137 +33373235343731316630396335663636623363333734343831643035613637323562656633623865 +34313139396133656132633366643938393363373731626537633064313864326631643066393231 +30303138623934373035313965613565336232393266336161383033323263633330373237386437 +35393262306136623565303662303066303936326337393462363336613662343462373363663037 +34666637303465353364306130383164316535346535656366353435343864663465343066343865 +30623366646434393032653631646532326165346464383933373665353630346539376665303564 +37633736636366366233656231626131343436613938353433623661383433366132306335393032 +33653264363766656230643639646663646261386332313764326439343938383664373064333366 +36376138663639643763373634623665626433356262613830333739313833663432633065393061 +31613835666534313137356631626661656264313166343162363236326666353636613031616437 +38366234633835663634