From 7cb5946ff8d3e09c42936d70acc361edd04321d1 Mon Sep 17 00:00:00 2001 From: Justin W. Flory Date: Jun 08 2021 13:44:56 +0000 Subject: [PATCH 1/9] inventory: Migrate to Fedora-provided AWS EC2 virtual machine with F34 This commit migrates the Fedora TeleIRC instances to the provided host in AWS. Signed-off-by: Justin W. Flory --- diff --git a/inventory/inventory b/inventory/inventory index 23acd90..d02a673 100644 --- a/inventory/inventory +++ b/inventory/inventory @@ -1,5 +1,4 @@ -# Temporary host on RITlug infrastructure -129.21.39.107 ansible_python_interpreter=/usr/bin/python3 +telegram-irc-01.fedorainfracloud.org ansible_user=fedora [dev] 127.0.0.1 ansible_connection=local diff --git a/playbooks/telegram-irc.yml b/playbooks/telegram-irc.yml index 856dbd0..1061db8 100644 --- a/playbooks/telegram-irc.yml +++ b/playbooks/telegram-irc.yml @@ -1,6 +1,6 @@ --- - name: synchronize TeleIRC host - hosts: 129.21.39.107 + hosts: telegram-irc-01.fedorainfracloud.org become: yes roles: From 21a5cfdf43a0fac45c691302159a5ba51508a7e5 Mon Sep 17 00:00:00 2001 From: Justin W. Flory (he/him) [Fedora Project] Date: Jun 08 2021 13:46:01 +0000 Subject: [PATCH 2/9] teleirc: Update /usr/lib64/ path to /opt/ instead `/usr/lib64/` is not conventional. I am not sure what the original motivation to put it there was. But it makes more sense to put this in `/opt/` because this is running on the bare-metal host with no upper layer of virtualization involved. Signed-off-by: Justin W. Flory (he/him) [Fedora Project] --- diff --git a/roles/jwflory.teleirc/handlers/main.yml b/roles/jwflory.teleirc/handlers/main.yml index bfe1c82..a758f20 100644 --- a/roles/jwflory.teleirc/handlers/main.yml +++ b/roles/jwflory.teleirc/handlers/main.yml @@ -13,7 +13,7 @@ become_user: teleirc command: "yarn" args: - chdir: "/usr/lib64/teleirc/{{ item.value.cn }}/" + chdir: "/opt/teleirc/{{ item.value.cn }}/" loop: "{{ bots|dict2items }}" ignore_errors: yes diff --git a/roles/jwflory.teleirc/tasks/install.yml b/roles/jwflory.teleirc/tasks/install.yml index bfd1db4..c32b641 100644 --- a/roles/jwflory.teleirc/tasks/install.yml +++ b/roles/jwflory.teleirc/tasks/install.yml @@ -2,7 +2,7 @@ - name: git clone/pull RITlug/teleirc git: repo: "https://github.com/RITlug/teleirc.git" - dest: "/usr/lib64/teleirc/{{ item.value.cn }}" + dest: "/opt/teleirc/{{ item.value.cn }}" version: "{{ item.value.version }}" force: yes loop: "{{ bots|dict2items }}" @@ -12,18 +12,18 @@ - remove build dependencies - restart teleirc -- name: "set file permissions to teleirc:teleirc in /usr/lib64/teleirc/" +- name: "set file permissions to teleirc:teleirc in /opt/teleirc/" file: state: directory recurse: yes - path: "/usr/lib64/teleirc" + path: "/opt/teleirc" owner: teleirc group: teleirc - name: add templated configuration template: src: env - dest: "/usr/lib64/teleirc/{{ item.value.cn }}/.env" + dest: "/opt/teleirc/{{ item.value.cn }}/.env" mode: 0640 owner: teleirc group: teleirc diff --git a/roles/jwflory.teleirc/tasks/user-management.yml b/roles/jwflory.teleirc/tasks/user-management.yml index 8a8c545..498a658 100644 --- a/roles/jwflory.teleirc/tasks/user-management.yml +++ b/roles/jwflory.teleirc/tasks/user-management.yml @@ -4,7 +4,7 @@ name: teleirc comment: "system user to run RITlug/teleirc bots - do not use" system: yes - home: "/usr/lib64/teleirc" + home: "/opt/teleirc" create_home: no - name: add target user to TeleIRC admin group @@ -17,7 +17,7 @@ - name: create root directory for TeleIRC bots file: state: directory - path: "/usr/lib64/teleirc" + path: "/opt/teleirc" mode: 0755 owner: teleirc group: teleirc diff --git a/roles/jwflory.teleirc/templates/teleirc.service b/roles/jwflory.teleirc/templates/teleirc.service index fa8bf12..d91d52b 100644 --- a/roles/jwflory.teleirc/templates/teleirc.service +++ b/roles/jwflory.teleirc/templates/teleirc.service @@ -6,10 +6,10 @@ After=multi-user.target [Service] Type=simple User=teleirc -WorkingDirectory=/usr/lib64/teleirc/{{ item.value.cn }} +WorkingDirectory=/opt/teleirc/{{ item.value.cn }} ExecStart=/usr/bin/node teleirc.js Restart=always -RestartSec=60 +RestartSec=30 [Install] WantedBy=multi-user.target From e28a0a9a4dd58af5f76d445493fd3f920fb6b4b2 Mon Sep 17 00:00:00 2001 From: Justin W. Flory (he/him) [Fedora Project] Date: Jun 08 2021 13:46:04 +0000 Subject: [PATCH 3/9] teleirc: Change bot name to an unprotected nick, add NickServ password This commit changes the `#fedora-telegram` bridge to a nick that the LiberaChat NickServ does not regard as protected. For some reason, I was unable to claim the `teledora` nick. Someone else might have already claimed it. So, I switched (and successfully registered) `tg-fedora`. This is the only account registered out of the 27 total NickServ accounts. I also added a new password to use across all the NickServ accounts to make it easier to rotate passwords as needed. It is not ideal, but ideally we will have a better workflow for this when the Matrix/Element Telegram-native bridges are set up. Signed-off-by: Justin W. Flory (he/him) [Fedora Project] --- diff --git a/roles/jwflory.teleirc/vars/main.yml b/roles/jwflory.teleirc/vars/main.yml index 426a4e2..5e6f1c1 100644 --- a/roles/jwflory.teleirc/vars/main.yml +++ b/roles/jwflory.teleirc/vars/main.yml @@ -13,7 +13,7 @@ bots: fedora: cn: "fedora" irc_blacklist: "" - irc_bot_name: teledora + irc_bot_name: tg-fedora irc_channel: "#fedora-telegram" irc_server: "{{ default_irc_server }}" irc_nickserv_service: "{{ default_irc_nickserv_service }}" diff --git a/roles/jwflory.teleirc/vars/vault.yml b/roles/jwflory.teleirc/vars/vault.yml index ff1c8f6..323dc1d 100644 --- a/roles/jwflory.teleirc/vars/vault.yml +++ b/roles/jwflory.teleirc/vars/vault.yml @@ -1,250 +1,275 @@ $ANSIBLE_VAULT;1.1;AES256 -36313032316539383566666537616239333838323032396135343362636431653964646430643032 -6264316339323933326265636161316534396337393031620a646333373130316231316630663231 -63393739613463333530653466383936336430386464336332356438336337383832386530636665 -3237393332343364330a643835306335663839323336373330346664313337373639656135623035 -34633466373764643861383363393939616531663861303631613934626363323131653062643533 -62646530386535363465373761363661633435386563383737353335626265386362643433353531 -37323061616137623736376131616263346665626239616132323238366262333161316532373666 -66333932646463393633346663643037386639313131323161376363373731613832373632313935 -30383535396437376335373265633939323632326665646466363530366266633665633065336434 -32306531373132353561383566646135356566343832656131303635616433326161363966326136 -33383563346164626531303231633933303638333936343335616262343736393962356639616263 -36653739353635343233383931623162346234306136613463343465393833343864356638623035 -62393132616235373231343766323062333933393834366633663632666632626131376338333665 -34643866656537363763306435363261643532326363386535386134333037356130613239656366 -38336130333532613531663635376632646662666431356661626465386535626364393038393564 -35663736313536623263363337646262653662633266643936636533393836396130316265663330 -32663665343361623234626633666163653862333761313863333766653161353735636336323732 -64313133343538363463373161363037643262363765643538313033393762313435333332653065 -66326163646630663638353061356537336333303439393964623035376539336630373234643932 -66616432316462663137656332643535613637303265363966313331643865353866613737376430 -65376363373239393466663336613030393234666133636438313831383830376238343563386432 -61663263316333666638363039393566356634316436633164363033643032366534653732363062 -65666234353534376132323565306264383531353736623632636439393830633265303038373234 -38326235366431623439633931353562366136663733303238646336363566303465656630363965 -30343361326230383536393432396438363534643533373934353938636333626538343463306335 -34333931353262346137393437376232333663363364663033333232643465363038356362363064 -66656466336465366562353131653635663337323431323638316564353832396136643361656238 -31366435646231326438393237303063343139396535666239653965313131323438356662383235 -37613164623535346265366530613331306430316661613765386263303965643435376637376330 -38306133313733343664336166643364626364616532646162383433636135306333363763346664 -37646335636632363639323834396366393433363830643835363031373266633865316231346263 -34346638303361373165363664303432383863353466313138623130636337376266303262616435 -65333037626565313937323735326336373164366133643062636532633033366239666163383063 -65366535333861383031666634633766656463393564393538336234333961636564333766386132 -37663663363565333964623134306165623561373539366365353037623061393032336465666134 -65633036623366393130636532323066646439353662646636396235643763626237393639636534 -38643939343965306165386630313039356635336565613430393166343132313334383765316333 -39373130643564346263363364333436653761376438326531653662353962303262303966333135 -62316432326261666161386163663334353539393230653661386262396563396635343031643333 -61616431343638363534663062343535376235313031613462356531613262386630376136656337 -31613062643234303230633736343438333066313231336335353731303663373530626364373038 -65393337393438623964366138396531333735343936663830653030633030343131346661343339 -31393930613863386261313435326366626362373132333765643766323931653765383464393866 -61373136326463323936623763353533333264643935343765633966396165383737336133393433 -35636166623335623065643234326231356630633238353530623932303766663337393332636465 -61313838313130643234353765396432333030356330373461306536373864636366363731633334 -64353530626633326130646436613435646234323664333161386361323166323361373634666334 -34356633336565383831363863653031666264393232323664313533613435376662313331633265 -39383165353131363633366131353633626364653162356331316533393965356534336431613137 -33626332343831323933303530393664643531666464626634393461306230303161623832623635 -61356137623264666436363566656338333037613231613331353031636334663235316136386365 -65323639616331383762386631623837643963323738643538303963333964633133333231356261 -33393365363338383961343337626264653733333638306335393366343862613233616439396139 -37373363616535646362623462363566323933663530346131623431383664343331376230623161 -34653736636237303932653861396135303735346633623063656263353039326337313364636239 -31353836373166633433633464643133376335633833396661356330303866316361396162303730 -65383334616139366539333737663133633661303561366331346666666434356535383961643362 -36633261316366663463343764323338336161646235613236336264313261373534353337303564 -64353036313762646439363063386536303730663036376462306439623938396463386437343339 -35353931306538336533323032633366363139363862643864363438396235633833633764653062 -39343864353032313461653533366639303562613433343865633064626139353365323466643566 -33316438306462306663326136323033663564326239336638313263623464666137303237363733 -39396238623164623730623334333264616366353263636438383663663764376166623361323263 -66363433386236393035396239386164313165623733386561326533386137613463613133623931 -31663834383865383133623134343265333862323831363063323165376331633034363462623665 -61613537356561356264353739353233303334653066326436393762373032343732353034376330 -66376131306365373866393033373662656162346539616433646335393034666338643066343461 -65653437393562336661323539653231653431616633303262326130313761323436656266623837 -66356538656233663266653035316366663230356632656262326333376337396537626632323862 -35353634303338643532396561656463636234663761616164383238613936616136353637303266 -61643236333733333661636630383763393635316137316665313965346433646336326466653533 -37306463653465303162333637666637653235343434373831373731666631363438313861363364 -65346434643836303633353065346663373263366464366566376230613236633865323838343864 -37343232616133633762323265396334353633646163353539386439326365613034653563336234 -66386539633832373038316330396238326663336636663262623734386666313166323831646636 -33373030356636306536386133363266333032633434373636366435646561336164613539383834 -37646434393336353237356531663762346637343233646639636261663163303264393138393138 -61313933646436656438633063353538653962663961326230356633323039303239373333633163 -33666530313534666264376133663663383233376138356562303536333362313162343566343836 -64636266356235303164396534623134623466646237303534623936626639623232313638353564 -66386535376361303263363166636438393132623032616234646332373865333330633133373633 -61303336336635623830306336366139663834666632626531646136393832653736613735383262 -63653464623132303330656630643538613238316462633533346437393734363162656663386266 -35343534303166306461316133383564306430376662613935633239663431613263326631653431 -63666439393237383964323530303230656366353337643365643664616365383038663035303165 -63376530373339613237313432356664303534643730626532313735396465643964613031623539 -61623633313462326532376234326334326531306166663663303664396630373038396233346161 -64386166303864623133633833346433373866313766666264313634663431326131356437663835 -38616563386362326363626266383531353030346237366239323635313239316231663239303665 -31363436336565313366363134333339303466346361366439303431326239323335373965633532 -34316534336238306530653533313932643232386166616639646261353839663531613133353531 -32396132623731376262323738616434303739666565353364646136313765366236656365393633 -38613961313363326463653561333338303832323139383266363134636430653234313464343434 -34323265623966396561313062366638383734393136363036316263366330336537396334613665 -33343734343730663432653062623061373434343136383131626565626230393463623631663437 -35393263353463353733643662626364373738373264643661613431376163323166373861306163 -61653466346163396337653732653130373766613330626339613664613934343539313663623961 -31663664656538363263656430646166303337393366633930653834313530373930353934616630 -39323861623535303731313539386233393466346466393236653066343531646630626631323166 -35343535393836613133613865303662663830626138313064656463386637376433306666636330 -30643936623038336533303066633638316336626465616531333562323238366462636165393061 -64383031616565386135616138386332313336613032623662613966376538356533626433636365 -64303337646637386265653037636139316135393966373333316632373531643039343034626334 -39316562393933396531616138653261653930653338613166393761646164356664653864323131 -30643030383664313032306533323465396139313762386165313763323831633233643563313966 -65616438643533343439623835376562343364323837616662616233613436336238646637323464 -65396536613137316134353534336534663534396534646633373665396462363764616166356461 -37316538363137336632626434636436656534353632326365623339303831326130616434346436 -34353931383630626566383663633638346132313763663032613763333432643764363464383130 -36386533663566376338343662616365653162643332356133616532323334373861316561633461 -38613435653032323664363038616362613465333133343637326561303438376237313633643261 -66633233313561623138383636363837633662343263653638636364396138326337326661333134 -66396663303865343062383265316236616531323466623565323538636366356637333266323733 -63336362613039306563326163346230366330303436636564666363366262336333313735376636 -63636365346637386230623063393466306231333039316636346661666363326632643461313865 -63656135626165376536373637376337646639373565613137336365353136646631613633616362 -39343662343365633937313735396435623565393030613564376663303432306232353362393134 -61323534643163623430343866653630333361626537616136313036623230663364316664306233 -30643635333639393734613635313930326334326466353765316339326433626361373137653535 -32313037303639366338313631303730363037623638343630656561306338616432303661633461 -62356536313562383965633437626439333764313731316161346366383565663733643165393339 -35646664626561336638653234623662356430623965333832666633623862616166643033343832 -31373335636635353836343439623038323763376433353830326637303936646532383535323161 -64343363626439616165643763306135646631313239326233636532636164366138306562346435 -35653963393132613434383032323937623239373731383330373438396336623038373563646136 -36326132626132346161333065653364636439356334373039316266653766623938616232633234 -33663466366630393632666163356161623261316337383138303963366465633436326566316137 -64613835656133643666653635313637303038306338303333663065363965353363633135363565 -34373834323635666238326463666332613531616234383135616361663433303263613135353063 -35383761653438323737376531386131336634643664626137393862336163333237323633633738 -35346131363665613362363965306462333932366434653965313936326339343062353639663439 -63656165386435356662363661383963643162366561626636306261616336663335636330633937 -66636333613264396239363536633965396138333264363835396338356333333138643335333332 -62653732656632646335303339656164383633353232633336373636616435373762356631626131 -38366164633864373237616565333666316539346134396331353838373436326234323332383831 -61323334356130346437396639333463623530323233343231393339613637643966356664383831 -39663631663338346538623532333135306536666633663365346662366663393030396231653331 -38323633333366333531393737616338336133643038353434366232356236653033316633346538 -35613462313137303363366336373035383463383532363263303030316464323631363535316333 -35363530663430373163323231363934396630636437323063613764373537383935366635626632 -66636132366364653261613965373430313565633963393430383433656432663033333162346136 -36653462373362396262613831663637626237623934333839373166643131316135383833333632 -64633230326130353837306236303931353862613534643661363430623335613531303730383330 -34323839613063313133366233376163393263343462623430363337343763343664313738396264 -33646335303364303038323438303765653764343862373233303233616265663633653539626633 -65643762393131353134353561336233323839623132396464343939626336323032383533353731 -63373232323330666337653037333234356162396331663832336531383534313161316265323861 -31333764336435393163366630376661353237313033353564333561396633616430616137313630 -39616664396131313334383566356165346330626364343636373138373835356264346564306464 -66323165303363626163653934356161646566656331326466626431366565633965346131356137 -32373063663165636631303333633562666361626535323239386131346535383763313263356533 -31356364343635633933323033386635613766313461346366323037326562333236313364393161 -62613136616137343730653363346236333465336166376137393130353438636162356437646331 -35653465353730393566363930303166383131326137653132616139653536666631656337363633 -63313531303462363630333836653136663466636638356563326234336338353533326235356462 -63393932393334383836376534393337313362633236633434326637623638373835633666636432 -31316332616638303434636234383832623666353034646538636138613537626365646135313761 -38303038396236663431396239346336363738323534346261393531396235346263656133626435 -33663861313366623637383730346166373561666665323534343630303165366132316539386534 -37333632326561366433306539663033666631356431336262313764383136376530376432346366 -36316335633936353165636138333834306462323734613935393532666261623233616363656365 -39366162646166363330633535303965386530626162626564333639346265313333343865653838 -30366237343835363131616337653536306534633637376130373765663436356438386231316666 -34356664326661353236323530303435396135303031646433346562313861646665333833303737 -36353137346136353536333563633330313663616333613338646531653532386233303135393437 -63613030353732353339363138306437636566383263336233643965393366666133616665353530 -61663364613936353365616661333933363762623762333537376139353831323931306163653862 -66616332633532326638303366633138613463376162373530353536376436616363386432383564 -34663162626431643935333563626461663534616533643332303661663238303030653666346364 -61633836353232653236376537336237396533663734626135303363363237316162326137303135 -36393230396631323465383038393238373863326234633234613337373661643837353563343439 -37323136336666626430376635656238323938303063343636656139633161393736343432376535 -30336661306539666466613036656235343564306238663863323338383435316465316564383839 -31663065386264386163386564316633666638626535303434376537623638353333623762313239 -32643132393638316134633239613736386536333237383431353331333831353464636239663564 -39643033653966323361613237663539613033343139373666313730316234393365303232366435 -36336262643866633430666432323632303463396235373664336336386366366338303966396666 -61613930353462373137323664653963646563626463336361376332646630323162623037363638 -65616666393765633230313865653438663262653662643233303864363532353765376636643134 -35373161396538383339383938333236366266666637323439333533333232383536356237663931 -33646632623363303730323038623063373861353035653164306366366366316338336233336137 -33383366353763376133626332303061313232323833666362616132373765353562653832623939 -65363731363133393963343835313534303834323034653963356231626133623430666535336533 -65623065656565623232343462666536663131333264393061343161363465633033643065646338 -66326664313936343335613563636562353230386566316437626430333830666431303437653735 -33613763333031383735373032346161303935346664323333303366316336663666373032336264 -66313238333234323865623736613239613663356661353936316531346234656439636237366362 -37643362643838626333326462313766643832623064646431663063623762313764336432613762 -32626136373762646139643934323632316465613366303335636561613464313431376533343461 -64376135363062376238386163373538653961323565333336646331643037626134643335366565 -35336237313065633032616663613037396562363835383262623036643435613963656165643930 -31353061353739316165616465626664393466383063623063303231616331613964646335363266 -63363632356436346333376661316464353331613038363832303231393462333337323662343661 -30666131666534346331663339663762653964656636356135316635323065666137636535373432 -35633031336338326163393563313638623630303936326564613738613034326137313736303565 -34663838303231653465653433643066666234326631343261316638323631613061353731326533 -66333463626232333037376639656533653830303630656333326539333265626138383065623765 -65626137663239636563656430323731386461666437643639653662346532383537653335666461 -35303433373435303763643166646566353465636332393234633266376562653434363131306162 -63623165633530646237646231656131343262333731643366633235656231386237653836363830 -31666330306435373339623134326634383765336534353166376530373030333135643863313531 -64323034326133613963336261636331613465616232326334633336653835633963643235616663 -32613966626635363839613337346465336235326264666534373266393961383637326136333766 -38353031393137323739613661303464363235653631326633633131363839346132353661643162 -34373235326262363363363864323031326435323966306636643839333538333762353864323461 -32666563353861623330623464343266323230613536313765333534653336333462623762383731 -35626362373763333833313536646336396232323237336338643234356335616437356436666166 -38313832363230663136386630623435643637333233346166626530366334643531386265333633 -61643665663864313734303239653663386330303630393337643766366264663931626432336338 -65306462633430663530366261343335666162633162346535663431643538363430363439396133 -35333130653233326163616431616335326365353931396162653062326465336562353431653364 -62303561613038616463333533646165376533653065666632626461633663323136356263346134 -64646439383733623538343537333536643639323264316131636663396532643165323661663539 -63333262656234306635613266356535363833373563376437373730363333666564396535653465 -38323437343463633632653631393034623263333962643330613633363165333637316166386462 -36613762663437363039343930363862663964346430656365646261346462643130373161356537 -66633130313931313735613130333034646261653534363965633364643235376364323665333339 -63666566613565613039323566356563303137386566323163656664393937663932636661363531 -66356330393062356161333330376265663861373636306265626634313334313638616136626463 -33323331326237373638626562336264663739353937613239373337646239303764623733623435 -37306331623163373631396532383039366464303034656437616637346135663338363061303463 -30383362376631323537396330363830396435306563373031616638616364303138626334346566 -65663332613934323361373832643538663065343938396235633536383037353330353264346333 -64643639383331353564353230653336356330303239316532623763373838373535616538646231 -37346336393438393139346236383563346364366334613435313366653532336530646163626330 -38333865383332643362616636393332313563313763363536356662663431313237323830323661 -62393737613766323130323664343733313335373066336433333362333938396136666639636361 -64663866636135613365613531643165376339313263326239303762313234323764343862383633 -61313564633236666537663862663165343934303532343961633632363339303937653539663862 -39323661643633333035383332393131663333656130396237383065313561353931363230393137 -31346231373131663166366236663666636365383663633439393136613836363065633261343938 -66376430383264333163653735353936333533333237363235636231396535613732383362653631 -65623564326233663238666231626431616637636263636139653837383665353664646364343463 -36633238333439333430623439353262346537613461363939616464393836613139306564633639 -62613562373837386431306264396266643133666634376434633431653463336635656238613030 -62336232623037383338326636646232663161623739643432303230323362616533356635633939 -65323564376661393263363234376430633633393365353330373434636236383566633761333765 -37366331356566313236373661613634313561613832346131626261623466613836633534313730 -34623539363364353237396633643631393436356637313833306362373936363130656438343764 -61626338306366386633613632396433373431653333653035636561623034366566616566653839 -30663038313861666330363333386532313261633739363131636264313864363934386661313563 -39383430386637323563626139363032313738663130313231323737313965636534663138626339 -32383630306330326564363135396535633737636663636163316263313464623534306365346337 -64386638336233396239626337303961383038646631366663333130643466373463613239626632 -36393937396534366331306534646662373865353634303663623662356437333564383666303633 -64633736646664333134636265646137643665313836313761623934343236613862303431313761 -62333464323335656430313436363138346534613061646264643035643866323136356461666536 -32346434633531373638636436666339383931323337363962376431383862646536653065373832 -6265 +34383238616137336339393963333365633066363735633663636433656661313335333362623630 +3339306165323233303236616137343035343464616532370a326663636364316535353133326230 +63396537326636313735343938613531666665333534643033663537623732613463306631383936 +3137333563623136620a663338636163303834313865383536386336386434383866616439646136 +32623232383733316137366331353566373737346564383339313663663937663064303634326337 +37343565326165633961626532363464346563363136306464393235363838323564383165316661 +32663431353330663761663761303861393032626537653335353966613064333236376162626134 +35336663313035303032316534366665613764626133316566346663366436326164373236386664 +31333934316330623562323031373230633439303031643731373062343462613336643939366134 +31636133646333343162336136323137353633613264373730313731343237323634323336313935 +32613135613064653238383738353866333230363637616134363435636561376163623034336134 +64383664646366376361306166393365656361643138353866353438623438646431326239643166 +31383532373364373462643337643035336564663334643035633431313931316362376261393835 +65653338373766653734313730613134643737383734613461663966643166353136373065636461 +37613361393638323237373939363263316236326630616230626631623831393064613039623163 +34376531363839303139306638363132636362306264396632336635373165333930663034393436 +39653833363333306233616165646135643632626137303337636463646363663839396538666537 +64333338353139343562333531653038366136356166643963396233396434656663633135316236 +39313665626330373033333937656636363433316139346230643363373234646333663263393336 +64646637373061393230313932353637316537613537633735663136623862633138346630653761 +61353136656634623164356661666266616463393836663061343666646363323135303932623539 +61313562373239623661663639383439393761653264626364333239343334343936373530376364 +36653834373738363433653932383537323835316133366166323632643639363063626330353632 +61313361383865393335386164306637313232616239366361343434313436323534313036383831 +37346630353065313439363338363031396631363634613363633932383536313662356538323061 +31323936396531376134306631383839393832653830393333366239633666636535323462386433 +62623461393434336131633736633134353166326361656538363135616635616532336466376234 +65653935646239383935366532343939643364326236346337316662623663333034343836383535 +66373530383264646434633737303733636635323536376665633236333331646531396166303866 +33366366303035383936333861343661313430386462346163343136323335313339316265663438 +33366361313535646636366562656339623864653036356664323431363536316539343866373862 +62363164333462633830383133663935383538666166653030323433393365326230653139343038 +35333466386631613535636439323638316534313961373066373534663836626532663332393836 +34303330306561656530376139666564303436346637313938616562643132613664613762326161 +64353437373466363337396161383432663735383237323266376137323533333139376635626463 +32323866616533653235333131336438383239343239623564663132653438373134396635373532 +36316639613462336132356464306434363439613462653235353132616431643838343639663238 +32323632313234333337393939336134356235333635326162633366393030316462363136383638 +37613463303737353862636531343364376365363865393463613634643263373034623765333033 +36393138373330623335323332626633333965383031363834333933326436333163326535336265 +39383336336337373263636630363861346264633730366364653231633537653832346561626563 +32616136643365306438313062333238323938616236326265323738323064316234343564366334 +64303734306364353335656530353630393832306531386134326333363264643337653933316639 +63376462333232656132626264663135356566393732323931656231326162343232396631623965 +36666636646332336464633065656333386465656134656238333262666235353333333761643137 +62623237616265633436313162373962326232373638636132633437646636336466323037353035 +37636235386530666238376639343832633239356461646437623330343330623364393935373065 +61353335346166626566363161393031303132363938313338626234383864343733653934616264 +35316133396364356536633363623938336165356134383663346331323763323338653864393161 +65313561616262303832323833616435643739646436626137656635373539333436396332666366 +36326261613561306531383533316630353539363132373733366338663062333636363763613139 +65326535303863326639313736323833653264343764356236316239373035383662633232373335 +65336231326230373461323063623233316130646262306133613534366637616462643230386665 +31646362393561343564313035643065643962316163663331326564636333633865313230333530 +32626636643237623035326161336635366236353736663662393263316232376130383631393438 +65303135326534623465383965323864623137643638316564356163633537313030306331353832 +38333031643735323437376262353232326532646239363437333731393335656437396637633037 +36353532356635316538313666316338323761613139366130393031666630356165323865366139 +64343865656461326265663738646465346236613366393039346663646232306164643830383036 +36656365343735643966383364373239613863353836306663623832643331373965373864323564 +30646437633033323163316239373266666135353965643763356431373161333166366439616362 +35643937396636356339303366663037313461333563356134646639323335333831353136323933 +63656435336666636564623461623034326339323030626539636335656134613162663666636332 +65386231333261303132383164383866613734363239376635386337666534313764333566643138 +61363366643736313463633835626135306363363563383361353833353564656532626262656230 +31313936623166616536346661346461313531346561383166316233323038633636326261353937 +36653236326539646331343634623230333431366666646136383666643965323933623461393261 +37313133356332306133393434303931343964393238353533323634323462356437613436653238 +36663466376261383230623837383130653263366533323637376130633064373864386231666130 +65616134396638393436646337333763383133316562626239336230653036393038653164653762 +33643163343037653265653531396365383733613365373366383732316335376237363266633733 +64396361326234343864626233363838656336333639323932333436663639643336616134366266 +31343837323836633561313634303536353737333034616333336630653332326663393838336436 +37373032323031373264623466653837623464393963356431636363316330326164383531336662 +36396266373433313834613736376635343363383031313265666233303332333066613838646531 +64663335663735336235663065346165316663393232336661333063653638653336666430393435 +33376531363432333463643064396132643162356564366437643663616464363433396265383838 +33636531353836323634663661653931323364383833643135396661653064346330373662633736 +64633635646263353630623465346136363030326435613635353864373839373561383536366138 +34386437306562343830643638663734343362653634343136326664313662346633366264396464 +39623366303338633534343061646564653030393364643466383239633332393536333932646332 +62326139646566613361353463323932396333376163636162666137636237373564336562623465 +33376232633733393438636235333432653264323562363962333638353831656635663861373536 +65363664613232633736363261313062643461343664313639323034643732333230316331373736 +34343237346138633731303536663135386537653636656337646430363762386637306236386230 +37336563663533656635316135643430316435336566613239623365363561393063336162653863 +64303631646662396461336332653934656330666131633163633332336463643362626634613661 +39663635313030306338616562313266666163313162393732616634353937306561376666623464 +36303966663839633234366230366436343438356261346661353763623764313632356630666161 +33366433303932316461616230646435343037313066336462313931656635663164343762333863 +30373734396638333863303237343262386232643565383632343364396234623034613163633439 +30356261376134333966326262636430666237616235316461663038316533383163336134303861 +38353433363936313832383161383631643963633531343264393032366630316636666264613436 +36363861623564646564616634343966633639396338333534393965613433636466646366373932 +37356163666366653066353534333263616366356537396161346236336330633438396463356332 +65303330663361386664316162616564636662336139636464643037356464323065306335333830 +38383964313365633763633138306561666632346239363138613639306137386231666539383163 +63373736366364656336626339383464653237343561396666666637363565326332333933323135 +37303338623336643832373433663031656636366536623063336332363032653038663763396132 +35353134303334356433633533376631653236323766303765616635396637396437363032656363 +65336333323536313037323865613064343663373031353331373561323031363866663164373164 +30326634646266376336376639616437386233646362363731383439353130313862646362306336 +33613464316462613363383430326566326535333664626435346436383365383534343839343136 +37363837323539396163386262636137613163323134643739373964353633616139623736643938 +62353034376664656432623439333666323131386432373230343062313239323138353661373937 +32646666396232373165663139353134656534643363393635313833383462313561636633353933 +63386236623464323062383533653062353036383566366639653564646639383335313563373531 +33353931653965336235636661373236373833643734396331646531316332643331393433633430 +32626166656166363938373936653534353364613534396133653937366133383063393561643739 +66616330376133613665393463663664643563373966623839613830613234306631313936323239 +32353366636666326236326462356461633636663639376533386136383462353038653935386338 +65346632336439393035326133323831346133343836346262643732626165643737656665646661 +64656533353263306365353961646638633438653331623832363936653966343362333361343330 +30613135373734376231303261376566663632363366343965383234613066343034346361306639 +30373931636133363338626236326434636138336435353130323532646337663232313736303030 +64383730313562646636356338633930633730666564356332323164316634363162323332613639 +65666262323630316336333861396434663664393264383931313231353533356330653662626161 +61643665316531326261333436636164636139323466386634366435343334336466363230333830 +63316430633830303032623934623461323333333836313561383432613431663961376636303436 +34643663393933356664386630306335336536303037623236613736336434663435626635313161 +39646337666130656164663564353639336362356332346631386231303433376434326663653239 +36333038353438313630386564623935386138363361336233643334373831616363306634343038 +38623762636162383831316137383631336462386262303961343034613039656635396237666334 +66613632396338363662303832646465643537613335636332396533343439646233376630363734 +31383534653261353262366461663836653933333835346463396133386463663437613336323037 +64333164643731666531613239393435663338343330376265633231323931323366313039363365 +36376464363833363137303030666335326563633866323363646465323963663961656238643438 +32663462333733343838623235666530383534613532366536646130356638633933326535306639 +66393061333132633431623863636330613035373632356366356232323064333062666432353930 +38396664303231636663383231373263393538306232663430386638353561333862393133366266 +34323930633361396535343136396464326534326635633237326164353766376639656166356339 +61613236643536356164666338333566636134663435383362316538646133383965386531653535 +38353232366230656461356133343532333839633239623832623466613261333964313130313261 +36663035666534343430656637336265396564303333666639373738393461393038326264373737 +63653065336337383561313532626364343135643963316131313162643863623963333139383365 +64613334343539613139313633656633626530373239353234633165323133326330613235633538 +34323431353632663137613731306639366464336261656163316236383032643761373938616632 +63353837343266356135663839623764613438656139376433383534376135613638613962316437 +65613864333931663136323266373834316137393261636134366264353761393835663662663230 +66343338666531353634633764616436656334383963383635386663306238306339373266303165 +66353235656139383663376362336430653066376661386432303038666263313236303361633766 +64656138616366393733396637626463373031653138336261663064383836373138313561303530 +31363237343333666561366466366361333961326162383562623633356437633237663566373863 +63376439396433323237393363636565323533653338323235376230643230653235306633366438 +37323035363163613437646333333534386335656336356261393935316234656661343965386137 +66643539613038353235303465333337643663613233303931333362393935643065306139633139 +39616665613135623234633766643666336661346331613230613337323763393766316130666431 +31613934626438646635633936626161333463636365666131656330323832613165613534316263 +61666438633836643562313433373535306464386461653031643030373131666562646630326165 +34383366623334343038666561346166356639346236623835373536623431613034373230366532 +31363534633565633933306432633738336238386364616232663132616366313432616561386632 +31333065613236643232343837326366613364653030633562626339656634666165313231636339 +32306437363736356466313561636431306630616562383930353937613664333939643131356437 +63366133376131313862633464303738366531643065326338313839613037646362343464613834 +65616464363835333761313534326533346361643033396635346563366334326336323761636439 +63313539633766643262386336613766666436373335366165653765343239396463626431383231 +38386534363735336337663034616163353435356630616431643938306365336339633131323462 +62316130383034346534633632363033626232313731326332646464633061613832333435653431 +61363936616639306230306539636561383339643435343261633833383166336538333530653836 +66313534613535613463616561663439316635326261643431346133613735333934643461376232 +62353139323838393034383662666531353335373861336630326639616531646466626430666563 +35356633303861646236323734623935363664316336663634363432623434363635666162303262 +35353335653338393132333962383761376130336161343932353039326130336362343836383339 +32306337353339363938346639373036376631656661313332653263353831646633393235636238 +30343538643630613635666462386335383432306466353231633262356164356331343262656161 +39343930666631333865363364386161613630663234633763306137653733353234336235393033 +62333063656230306635613835356366343563313634323931656136653130653133306564383538 +64383632346662393839353963666137323638383531633031363738376536336231316635343631 +66663139386130643330633361343332356364353430316261343136663633353739366337666638 +66333239313432636465326435376663643831616131333131376166643732666330383730643963 +33336130643763653934656366336631323237616234616237633731366533656531366231356465 +31366661666166373962623163623636633131373266383033616363363136396139303938303137 +39376135616132623261646333383836346164656432363338343037313333393565393338353162 +62353330356339656233313161343261643761343563663633353864386130353464353062336565 +37366366353830653831323566326535353137636536343534653637633361616436323231353432 +64366564646335303534353963326466636165353939313366643637376437633833343331646263 +35663161653463653737636563313961346337366331343161313730303834363136656533626336 +63343039373064653635363364633638323836656662303038323133653038613535346239326333 +64343930663230646165643833626665663165636434613836313434306364396530323566616335 +31633333373166663063613331653830663133623831663863356234333635643335393134666631 +31353237383465353661333231663061653437373662646134376234613436333062336132326361 +62303336393365666536653536393030366437646137633238623463663865656335616538313766 +34623861303530383933626465373864393337363561313163626232646436643762333161343931 +35666237386431386636633662616363643866373336323834636239346665633665616431376132 +30386233383466336634386362633766646539306139323438653661303761303865346366653338 +30396363333963373138353235633536393534336663663666623634633935343861623731333536 +65393165623861366530666264646233333231386138633837643764363634326464666663336538 +36633736393435653139646131366533646262366138353839336538356364666332666230356438 +66363266303031353465396332373463303861396137636464643134623965653132303335383231 +33386132373563333530633437336433323663653065633531626538396430386434323535643239 +66663361306138373937663733313766636565373066306138663465323563396662386235613331 +34363431616630666366383837343131633839353066373236393962663966646635386562333431 +31393764323363323634613438366231303165623430303335613761623834333437333063323835 +32376433613030623235313866343064316636353466623062613961333234303065653465363238 +63653032386163373537653532643065646330376362323862316530376537353137316535373333 +61323132646537663835326561363639323735393839663661313064353738613230626335643131 +39396664323565356231643830393830643234396362636462316131373036666130623462616235 +30336561393138623262366239396138313464646337363230356631653236643935653639633732 +30643136623632633831376462323033373338643062316638353930373835386561643039353437 +64356438666332343730636363633066656666626639346536656530386532663463363062343861 +34313666376338643031373737376533626433303530373162386534656562383338323234303531 +65663537346532643462633337626465623736653163623131303063356134323934633036633764 +36343239383465666366333832656438366666656233393636663633373762373538623939326661 +37646364363432346365393834353833316166386661633636373536623533343231653237326438 +39333363356261396263343135656538646138633661363232656563393864373037366435326666 +61353630353536646639653463633137383962663037623631363336373035336635623337343635 +65633566316664323162636361303338356463623932313537363339363863633161326130316238 +65346462363063363761333134613235333635376365383362656630613535333537373435653437 +39346566333534353930383832313237626662383636353336323837386266636230616165316266 +33353566623231313033333336373439366331313330653037346362306361643666656331363432 +62626435613330646534656661633636323337313266323738333464633536333161313139656134 +35663963323866303735623131383766316564363966636237333731363834613639373631396339 +66626631613364373630376135373165323738313537396234303939356464393732346232333833 +37366135343739623038366162396262313835326563613066633634313163616331623733376263 +32633530353530396539346165643864326565353365393934623234346361643237643833653934 +38623137633036623733623130653930623066633763373866666265303939653436353731313732 +33353463636461303634353863646362326534386431303565666466333335396366326338623661 +37356462383532636635313538613965333661653762343934393832636533316230363536373161 +39316534623530313634393538386435616438646432366563623930363366323835376130303432 +30653664636566653230383434343735646336363465383965386165643435626365353465393934 +64336133643164333464646434383931373662656165343630313334326531363532646362353138 +62616565316461343930333334326633353462656534316266396136303365653535366461653936 +35326661386662613231313937643136313066386237663835623336373234373366663663653037 +34333231383938636237353130646135643134386163626265323362373364303532386464656534 +34653738373437616665363938656135353961343730656163313930356132633062643637333030 +32643635623433343762663130366530633334656439616531623961613338363365313032633461 +32303234313664633936363637303666333231316362343432366531623931303033623937646635 +37373730356530363238363532323963316330366533343163373733643763386166326561333262 +32336639333532656561626236623863323132366363333432366263383263623861323266653036 +64666163393465386136616537356236303961663638353264616632383830636632333761396533 +66353038643366343264333536656139623936303738313331333564613863363263316233396130 +34353538363238366364396535363336396537326464633130346266366265623364356634626364 +64313366343865306562363638363061396438613966616432346239613238343235303765623935 +61373031363864636233613737396435373831303837646136306533626563633233313837333863 +65346332663436373562313233316238393435316238393030663161323231393230643165333962 +36313935396465313433393265383235666436303135363861396432613135616665386539373661 +39666564623139646539633636633762323832636261633737316366313862383433306131346238 +66663338643932313939393163393936373833353739363764643533386536343663643238396638 +62366366343164393634356464623930386433373835633761323163376135373131653664626466 +31323039313530373230613463363935663961366132313862663930656536353932636432343032 +64343632623831636630646133313339323535363362643133306266336365646365323034353630 +30303964643734303563366662653261633036343866366463383964323433313333313137623563 +35356262393436636332633739653366623564323833356439616264613535306337653538356239 +63333861316266303332616138356237383733393337636239623061313262393762346132616236 +35363262383837396661653539663763623336653562383937393263303531666537343466353565 +37316563333964396234333663636331333234363138386266323464656439376237663935363836 +37626565383664303838623966303762326331326134353736363837663739373932323865613834 +36336135306430613964333936663035306438316164336264663566623930653837326664663663 +62653366363364643164306237386664626365653963656666303032663731303230663738616565 +37346539333734333537343831366437636638373863343430653538316432346364663035366463 +35653930373637336564343561663139646230333836613563306633653032383463303965323965 +30656334363936303035343065366233373564363863363964663865376435343561303233346563 +36316465333735353062623232623036336264323230356466666164396637383430353435353662 +63653430316638366266646539393635316162313931633365336232373731363364633737326133 +34326233363162383435393266646362643535626164303230656539636535313139613365646339 +63363635613235343032383332666433383936323536353830626435653932393863303030373835 +62323533303261633335656564633838303963336166306463663038613738346433333362643534 +65336163393665623333353931393533346239313130636233363461626163313636616463646335 +62333366363766613066343135626436353531373832326361656534363866366331646366336661 +37303534643564333732383562333365653063656530623135613631623763353966613634316164 +36383061633963346362386230316635633734323030373366326562306236356336376332663033 +35666636646462303965333666393138313562346265363461653836396533636266346562643161 +65353061303537623735346461333135633361616536663364646565376363353233343334346264 +31616432656532333537333131353731336563666536356266636230323566663464366334343533 +35343964393338323739656630376562653430313565316164663838313461326435373438643239 +32373031313632626461643435646366626664366336666336353534373963633064666434336336 +35366438333533643434613836633139333336353636313334336165393537613761363564623963 +61343831316430396130316432343062313161623932303331313538646264343965626465383137 +65316261633233666530613534613431316164343866626539356335366161613931356235643837 +33313939656537636334373739323866323838623966323262343238383063316562353230653634 +31306238383736336264666339643536386561626336323333323235313864636335393061633836 +64623533626337396363313834663236643631336533306561346165646335363335383466373439 +37656261333462303332363335353531666634366632356266386132666630373530663732303864 +3262626330393733616464303837393866346263383033373962 From 74a8052db84898b5b43fac28ae005f28eae921f0 Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Sep 08 2021 22:04:56 +0000 Subject: [PATCH 4/9] Mirror jwflory.teleirc role with Ansible Galaxy. --- diff --git a/roles/jwflory.teleirc/LICENSE.txt b/roles/jwflory.teleirc/LICENSE.txt index a612ad9..313ee67 100644 --- a/roles/jwflory.teleirc/LICENSE.txt +++ b/roles/jwflory.teleirc/LICENSE.txt @@ -1,373 +1,29 @@ -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. +BSD 3-Clause License + +Copyright (c) 2020, Justin W. Flory +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/roles/jwflory.teleirc/README.md b/roles/jwflory.teleirc/README.md index ba2cbc0..af8d199 100644 --- a/roles/jwflory.teleirc/README.md +++ b/roles/jwflory.teleirc/README.md @@ -1,6 +1,8 @@ Ansible Role: teleirc ===================== +[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) + Deploy RITlug/teleirc chat bots to bridge IRC channels and Telegram groups @@ -26,7 +28,7 @@ Available variables are listed below, along with default values (see `defaults/m ```yaml default_irc_server: chat.freenode.net default_irc_nickserv_service: NickServ -default_version: v1.2.2 +default_version: v2.0.0 ``` * **`default_irc_server`**: Default IRC server to connect to (defaults to Freenode) @@ -48,7 +50,6 @@ bots: teleirc_token: "{{ vault_bots.my_example_bot.vault_teleirc_token }}" teleirc_chat_id: "{{ vault_bots.my_example_bot.vault_teleirc_chat_id }}" imgur_client_id: "{{ vault_default_imgur_client_id }}" - version: "{{ default_version }}" ``` * **`bots`**: List of all bots @@ -63,7 +64,6 @@ bots: * **`bots.my_example_bot.teleirc_token`**: _See below_ * **`bots.my_example_bot.teleirc_chat_id`**: _See below_ * **`bots.my_example_bot.imgur_client_id`**: _See below_ -* **`bots.my_example_bot.version`**: What version of TeleIRC to deploy (uses `defaults/main.yml`) ### `vars/vault.yml` @@ -102,13 +102,9 @@ None. ## License -[Mozilla Public License 2.0](https://www.mozilla.org/en-US/MPL/ "Mozilla Public License – Mozilla") - -Author(s) accept changes made to `vars/` to be omitted in published derivative work, as these are understood to be deployment-specific. -Modifications to other aspects of the Ansible Role that others could benefit from are expected to be open. +[BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause). ## Author Information -This role was created in 2018 by [Justin W. Flory](https://justinwflory.com/). -Find him on [GitHub](https://github.com/jwflory "Check out other things I'm working on!") and [LinkedIn](https://www.linkedin.com/in/justinwflory/ "See what I'm doing out in the world…"). +This role was first created in 2018 by [Justin W. Flory](https://jwf.io). diff --git a/roles/jwflory.teleirc/defaults/main.yml b/roles/jwflory.teleirc/defaults/main.yml index 4e424dd..0693ab1 100644 --- a/roles/jwflory.teleirc/defaults/main.yml +++ b/roles/jwflory.teleirc/defaults/main.yml @@ -1,5 +1,5 @@ --- # defaults file for teleirc -default_irc_server: chat.freenode.net +default_irc_server: irc.libera.chat default_irc_nickserv_service: NickServ -default_version: v1.2.2 +default_version: v2.2.0 diff --git a/roles/jwflory.teleirc/handlers/main.yml b/roles/jwflory.teleirc/handlers/main.yml index a758f20..934f2e9 100644 --- a/roles/jwflory.teleirc/handlers/main.yml +++ b/roles/jwflory.teleirc/handlers/main.yml @@ -1,31 +1,10 @@ --- -- name: install build dependencies - package: - state: present - name: - - gcc-c++ - - libicu-devel - - # Ignore errors because `yarn` sometimes produces non-fatal exit codes that - # Ansible interprets as a fatal exit code -- name: install runtime dependencies with yarn - become: yes - become_user: teleirc - command: "yarn" - args: - chdir: "/opt/teleirc/{{ item.value.cn }}/" - loop: "{{ bots|dict2items }}" - ignore_errors: yes - -- name: remove build dependencies - package: - state: absent - name: - - gcc-c++ - - libicu-devel - - name: restart teleirc service: name: "teleirc-{{ item.value.cn }}.service" state: restarted loop: "{{ bots|dict2items }}" + +- name: systemd daemon reload + ansible.builtin.systemd: + daemon_reload: yes diff --git a/roles/jwflory.teleirc/meta/.galaxy_install_info b/roles/jwflory.teleirc/meta/.galaxy_install_info index adce2e5..5467b5b 100644 --- a/roles/jwflory.teleirc/meta/.galaxy_install_info +++ b/roles/jwflory.teleirc/meta/.galaxy_install_info @@ -1,2 +1,2 @@ -install_date: Mon May 6 14:44:44 2019 -version: v1.0.2 +install_date: Wed Sep 8 21:48:33 2021 +version: v2.0.1 diff --git a/roles/jwflory.teleirc/meta/main.yml b/roles/jwflory.teleirc/meta/main.yml index 7f50ed8..5884359 100644 --- a/roles/jwflory.teleirc/meta/main.yml +++ b/roles/jwflory.teleirc/meta/main.yml @@ -3,19 +3,19 @@ galaxy_info: author: Justin W. Flory description: Deploy RITlug/teleirc chat bots to bridge IRC channels and Telegram groups - license: MPLv2 + license: BSD-3-Clause - min_ansible_version: 2.7 + min_ansible_version: 2.9 platforms: - name: EL versions: - 7 + - 8 galaxy_tags: - irc - - javascript - - nodejs + - go - rit - ritlug - rochester diff --git a/roles/jwflory.teleirc/tasks/compile.yml b/roles/jwflory.teleirc/tasks/compile.yml new file mode 100644 index 0000000..8664c66 --- /dev/null +++ b/roles/jwflory.teleirc/tasks/compile.yml @@ -0,0 +1,30 @@ +--- +- name: install go and build dependencies + package: + state: present + name: + - git + - golang + +- name: git clone/pull RITlug/teleirc + git: + repo: "https://github.com/RITlug/teleirc.git" + dest: "/tmp/teleirc" + version: "{{ default_version }}" + accept_hostkey: yes + force: yes + +- name: build teleirc binary + command: + cmd: bash build_binary.sh + chdir: "/tmp/teleirc/" + +- name: push teleirc binary to /usr/local/bin + copy: + remote_src: true + src: "/tmp/teleirc/teleirc" + dest: "/usr/local/bin/teleirc" + mode: 0755 + setype: bin_t + seuser: system_u + notify: restart teleirc diff --git a/roles/jwflory.teleirc/tasks/configure.yml b/roles/jwflory.teleirc/tasks/configure.yml new file mode 100644 index 0000000..5ccf956 --- /dev/null +++ b/roles/jwflory.teleirc/tasks/configure.yml @@ -0,0 +1,29 @@ +--- +- name: push templated configuration + template: + src: env + dest: "/etc/teleirc/env-{{ item.value.cn }}" + mode: 0640 + owner: teleirc + group: teleirc + setype: etc_t + seuser: system_u + loop: "{{ bots|dict2items }}" + notify: restart teleirc + +- name: push templated systemd unit file + template: + src: teleirc.service + dest: "/usr/lib/systemd/system/teleirc-{{ item.value.cn }}.service" + mode: 0644 + seuser: system_u + setype: systemd_unit_file_t + loop: "{{ bots|dict2items }}" + notify: systemd daemon reload + +- name: start/enable each TeleIRC systemd unit file + service: + name: "teleirc-{{ item.value.cn }}.service" + state: started + enabled: yes + loop: "{{ bots|dict2items }}" diff --git a/roles/jwflory.teleirc/tasks/dependencies.yml b/roles/jwflory.teleirc/tasks/dependencies.yml deleted file mode 100644 index 33056df..0000000 --- a/roles/jwflory.teleirc/tasks/dependencies.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -- name: install nodejs and yarn - package: - state: present - name: - - nodejs - - yarnpkg diff --git a/roles/jwflory.teleirc/tasks/install.yml b/roles/jwflory.teleirc/tasks/install.yml deleted file mode 100644 index c32b641..0000000 --- a/roles/jwflory.teleirc/tasks/install.yml +++ /dev/null @@ -1,48 +0,0 @@ ---- -- name: git clone/pull RITlug/teleirc - git: - repo: "https://github.com/RITlug/teleirc.git" - dest: "/opt/teleirc/{{ item.value.cn }}" - version: "{{ item.value.version }}" - force: yes - loop: "{{ bots|dict2items }}" - notify: - - install build dependencies - - install runtime dependencies with yarn - - remove build dependencies - - restart teleirc - -- name: "set file permissions to teleirc:teleirc in /opt/teleirc/" - file: - state: directory - recurse: yes - path: "/opt/teleirc" - owner: teleirc - group: teleirc - -- name: add templated configuration - template: - src: env - dest: "/opt/teleirc/{{ item.value.cn }}/.env" - mode: 0640 - owner: teleirc - group: teleirc - seuser: system_u - loop: "{{ bots|dict2items }}" - notify: restart teleirc - -- name: add templated systemd unit file - template: - src: teleirc.service - dest: "/usr/lib/systemd/system/teleirc-{{ item.value.cn }}.service" - mode: 0644 - seuser: system_u - setype: systemd_unit_file_t - loop: "{{ bots|dict2items }}" - -- name: start/enable each TeleIRC systemd unit file - service: - name: teleirc-{{ item.value.cn }} - state: started - enabled: yes - loop: "{{ bots|dict2items }}" diff --git a/roles/jwflory.teleirc/tasks/main.yml b/roles/jwflory.teleirc/tasks/main.yml index 9756e69..ee637c3 100644 --- a/roles/jwflory.teleirc/tasks/main.yml +++ b/roles/jwflory.teleirc/tasks/main.yml @@ -1,5 +1,5 @@ --- - include_tasks: imports.yml -- include_tasks: dependencies.yml +- include_tasks: compile.yml - include_tasks: user-management.yml -- include_tasks: install.yml +- include_tasks: configure.yml diff --git a/roles/jwflory.teleirc/tasks/user-management.yml b/roles/jwflory.teleirc/tasks/user-management.yml index 498a658..8df1639 100644 --- a/roles/jwflory.teleirc/tasks/user-management.yml +++ b/roles/jwflory.teleirc/tasks/user-management.yml @@ -2,9 +2,9 @@ - name: create system user for TeleIRC bots user: name: teleirc - comment: "system user to run RITlug/teleirc bots - do not use" + comment: "system user for RITlug/teleirc bots - do not use interactively" system: yes - home: "/opt/teleirc" + home: /etc/teleirc create_home: no - name: add target user to TeleIRC admin group @@ -17,8 +17,7 @@ - name: create root directory for TeleIRC bots file: state: directory - path: "/opt/teleirc" + path: "/etc/teleirc" mode: 0755 - owner: teleirc - group: teleirc + setype: etc_t seuser: system_u diff --git a/roles/jwflory.teleirc/templates/env b/roles/jwflory.teleirc/templates/env index 10d3dc4..081e7b2 100644 --- a/roles/jwflory.teleirc/templates/env +++ b/roles/jwflory.teleirc/templates/env @@ -1,3 +1,7 @@ +# vim:set filetype=sh: +# See the Config File Glossary for instructions. +# https://docs.teleirc.com/en/latest/user/config-file-glossary/ + ############################################################################### # # # THIS FILE IS MANAGED BY ANSIBLE! CHANGES ARE OVERWRITTEN. # @@ -11,16 +15,49 @@ # # ############################################################################### -IRC_BLACKLIST="{{ item.value.irc_blacklist }}" -IRC_BOT_NAME={{ item.value.irc_bot_name }} -IRC_CHANNEL={{ item.value.irc_channel }} -IRC_SEND_STICKER_EMOJI=true -IRC_PREFIX="<" -IRC_SUFFIX=">" +#####----- Host connection settings -----##### +IRC_HOST_IP="" + + +#####----- IRC server connection settings -----##### IRC_SERVER={{ item.value.irc_server }} +IRC_SERVER_PASSWORD="" +IRC_PORT=6697 + +## Encryption (SSL/TLS) options +IRC_USE_SSL=true +IRC_CERT_ALLOW_EXPIRED=false +IRC_CERT_ALLOW_SELFSIGNED=false + + +#####----- IRC channel settings -----##### +IRC_CHANNEL="{{ item.value.irc_channel }}" +IRC_CHANNEL_KEY="" +IRC_BLACKLIST="{{ item.value.irc_blacklist }}" + + +#####----- IRC bot settings -----##### +IRC_BOT_NAME="{{ item.value.irc_bot_name }}" +IRC_BOT_REALNAME="Powered by TeleIRC " +IRC_BOT_IDENT="{{ item.value.irc_bot_name }}" + +# NickServ options IRC_NICKSERV_SERVICE={{ item.value.irc_nickserv_service }} +IRC_NICKSERV_USER="{{ item.value.irc_bot_name }}" IRC_NICKSERV_PASS="{{ item.value.irc_nickserv_password }}" + + +#####----- IRC message settings -----##### +IRC_PREFIX="<" +IRC_SUFFIX=">" +IRC_SEND_STICKER_EMOJI=true +IRC_SEND_DOCUMENT=false IRC_EDITED_PREFIX="(edited) " +IRC_MAX_MESSAGE_LENGTH=400 +IRC_SHOW_ZWSP=true +IRC_NO_FORWARD_PREFIX="" +IRC_QUIT_MESSAGE="TeleIRC bridge stopped." + ############################################################################### @@ -29,32 +66,20 @@ IRC_EDITED_PREFIX="(edited) " # # ############################################################################### +TELEGRAM_CHAT_ID={{ item.value.teleirc_chat_id }} TELEIRC_TOKEN={{ item.value.teleirc_token }} + MAX_MESSAGES_PER_MINUTE=20 SHOW_ACTION_MESSAGE=true SHOW_JOIN_MESSAGE=false SHOW_KICK_MESSAGE=true SHOW_LEAVE_MESSAGE=false -TELEGRAM_CHAT_ID={{ item.value.teleirc_chat_id }} +SHOW_DISCONNECT_MESSAGE=false - -############################################################################### +################################################################################ # # # Imgur configuration settings # # # ############################################################################### -USE_IMGUR_FOR_IMAGES=true IMGUR_CLIENT_ID={{ item.value.imgur_client_id }} - - -############################################################################### -# # -# Misc. required env variables # -# -- not meant for user config, don't touch -- # -# # -############################################################################### - -# https://github.com/yagop/node-telegram-bot-api/issues/319#issuecomment-324963294 -NTBA_FIX_319=1 - diff --git a/roles/jwflory.teleirc/templates/teleirc.service b/roles/jwflory.teleirc/templates/teleirc.service index d91d52b..b91b677 100644 --- a/roles/jwflory.teleirc/templates/teleirc.service +++ b/roles/jwflory.teleirc/templates/teleirc.service @@ -6,10 +6,9 @@ After=multi-user.target [Service] Type=simple User=teleirc -WorkingDirectory=/opt/teleirc/{{ item.value.cn }} -ExecStart=/usr/bin/node teleirc.js +ExecStart=/usr/local/bin/teleirc -conf /etc/teleirc/env-{{ item.value.cn }} Restart=always -RestartSec=30 +RestartSec=60 [Install] WantedBy=multi-user.target diff --git a/roles/jwflory.teleirc/vars/example_main.yml b/roles/jwflory.teleirc/vars/example_main.yml index fe05ae6..fbaf0fc 100644 --- a/roles/jwflory.teleirc/vars/example_main.yml +++ b/roles/jwflory.teleirc/vars/example_main.yml @@ -7,11 +7,10 @@ bots: cn: "my-example-bot" irc_blacklist: "noisy-irc-bot,ci-build-alerts" irc_bot_name: tg-my-example-bot - irc_channel: "#ritlug-teleirc-sandbox" + irc_channel: "#rit-lug-teleirc-sandbox" irc_server: "{{ default_irc_server }}" irc_nickserv_service: "{{ default_irc_nickserv_service }}" irc_nickserv_password: "{{ vault_bots.my_example_bot.vault_irc_nickserv_password }}" teleirc_token: "{{ vault_bots.my_example_bot.vault_teleirc_token }}" teleirc_chat_id: "{{ vault_bots.my_example_bot.vault_teleirc_chat_id }}" imgur_client_id: "{{ vault_default_imgur_client_id }}" - version: "{{ default_version }}" diff --git a/roles/jwflory.teleirc/vars/example_vault.yml b/roles/jwflory.teleirc/vars/example_vault.yml index e57ae60..5e05706 100644 --- a/roles/jwflory.teleirc/vars/example_vault.yml +++ b/roles/jwflory.teleirc/vars/example_vault.yml @@ -1,7 +1,8 @@ --- # encrypt this with Ansible Vault before committing! -vault_default_imgur_client_id: "000000000000000" +# Default TeleIRC imgur API token. It is heavily recommended to create your own. +vault_default_imgur_client_id: "7d6b00b87043f58" vault_bots: my_example_bot: diff --git a/roles/jwflory.teleirc/vars/main.yml b/roles/jwflory.teleirc/vars/main.yml index 5e6f1c1..a857b94 100644 --- a/roles/jwflory.teleirc/vars/main.yml +++ b/roles/jwflory.teleirc/vars/main.yml @@ -7,7 +7,7 @@ authorized_users: default_imgur_client_id: "{{ vault_default_imgur_client_id }}" default_irc_server: irc.libera.chat default_irc_nickserv_service: NickServ -default_version: v1.3.4 +default_version: v2.2.0 bots: fedora: From a01abd76c751902273c2b082157463cb4d319143 Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Sep 09 2021 19:58:41 +0000 Subject: [PATCH 5/9] Update Vault with new NickServ Auth. --- diff --git a/roles/jwflory.teleirc/vars/vault.yml b/roles/jwflory.teleirc/vars/vault.yml index 323dc1d..acffc95 100644 --- a/roles/jwflory.teleirc/vars/vault.yml +++ b/roles/jwflory.teleirc/vars/vault.yml @@ -1,275 +1,270 @@ $ANSIBLE_VAULT;1.1;AES256 -34383238616137336339393963333365633066363735633663636433656661313335333362623630 -3339306165323233303236616137343035343464616532370a326663636364316535353133326230 -63396537326636313735343938613531666665333534643033663537623732613463306631383936 -3137333563623136620a663338636163303834313865383536386336386434383866616439646136 -32623232383733316137366331353566373737346564383339313663663937663064303634326337 -37343565326165633961626532363464346563363136306464393235363838323564383165316661 -32663431353330663761663761303861393032626537653335353966613064333236376162626134 -35336663313035303032316534366665613764626133316566346663366436326164373236386664 -31333934316330623562323031373230633439303031643731373062343462613336643939366134 -31636133646333343162336136323137353633613264373730313731343237323634323336313935 -32613135613064653238383738353866333230363637616134363435636561376163623034336134 -64383664646366376361306166393365656361643138353866353438623438646431326239643166 -31383532373364373462643337643035336564663334643035633431313931316362376261393835 -65653338373766653734313730613134643737383734613461663966643166353136373065636461 -37613361393638323237373939363263316236326630616230626631623831393064613039623163 -34376531363839303139306638363132636362306264396632336635373165333930663034393436 -39653833363333306233616165646135643632626137303337636463646363663839396538666537 -64333338353139343562333531653038366136356166643963396233396434656663633135316236 -39313665626330373033333937656636363433316139346230643363373234646333663263393336 -64646637373061393230313932353637316537613537633735663136623862633138346630653761 -61353136656634623164356661666266616463393836663061343666646363323135303932623539 -61313562373239623661663639383439393761653264626364333239343334343936373530376364 -36653834373738363433653932383537323835316133366166323632643639363063626330353632 -61313361383865393335386164306637313232616239366361343434313436323534313036383831 -37346630353065313439363338363031396631363634613363633932383536313662356538323061 -31323936396531376134306631383839393832653830393333366239633666636535323462386433 -62623461393434336131633736633134353166326361656538363135616635616532336466376234 -65653935646239383935366532343939643364326236346337316662623663333034343836383535 -66373530383264646434633737303733636635323536376665633236333331646531396166303866 -33366366303035383936333861343661313430386462346163343136323335313339316265663438 -33366361313535646636366562656339623864653036356664323431363536316539343866373862 -62363164333462633830383133663935383538666166653030323433393365326230653139343038 -35333466386631613535636439323638316534313961373066373534663836626532663332393836 -34303330306561656530376139666564303436346637313938616562643132613664613762326161 -64353437373466363337396161383432663735383237323266376137323533333139376635626463 -32323866616533653235333131336438383239343239623564663132653438373134396635373532 -36316639613462336132356464306434363439613462653235353132616431643838343639663238 -32323632313234333337393939336134356235333635326162633366393030316462363136383638 -37613463303737353862636531343364376365363865393463613634643263373034623765333033 -36393138373330623335323332626633333965383031363834333933326436333163326535336265 -39383336336337373263636630363861346264633730366364653231633537653832346561626563 -32616136643365306438313062333238323938616236326265323738323064316234343564366334 -64303734306364353335656530353630393832306531386134326333363264643337653933316639 -63376462333232656132626264663135356566393732323931656231326162343232396631623965 -36666636646332336464633065656333386465656134656238333262666235353333333761643137 -62623237616265633436313162373962326232373638636132633437646636336466323037353035 -37636235386530666238376639343832633239356461646437623330343330623364393935373065 -61353335346166626566363161393031303132363938313338626234383864343733653934616264 -35316133396364356536633363623938336165356134383663346331323763323338653864393161 -65313561616262303832323833616435643739646436626137656635373539333436396332666366 -36326261613561306531383533316630353539363132373733366338663062333636363763613139 -65326535303863326639313736323833653264343764356236316239373035383662633232373335 -65336231326230373461323063623233316130646262306133613534366637616462643230386665 -31646362393561343564313035643065643962316163663331326564636333633865313230333530 -32626636643237623035326161336635366236353736663662393263316232376130383631393438 -65303135326534623465383965323864623137643638316564356163633537313030306331353832 -38333031643735323437376262353232326532646239363437333731393335656437396637633037 -36353532356635316538313666316338323761613139366130393031666630356165323865366139 -64343865656461326265663738646465346236613366393039346663646232306164643830383036 -36656365343735643966383364373239613863353836306663623832643331373965373864323564 -30646437633033323163316239373266666135353965643763356431373161333166366439616362 -35643937396636356339303366663037313461333563356134646639323335333831353136323933 -63656435336666636564623461623034326339323030626539636335656134613162663666636332 -65386231333261303132383164383866613734363239376635386337666534313764333566643138 -61363366643736313463633835626135306363363563383361353833353564656532626262656230 -31313936623166616536346661346461313531346561383166316233323038633636326261353937 -36653236326539646331343634623230333431366666646136383666643965323933623461393261 -37313133356332306133393434303931343964393238353533323634323462356437613436653238 -36663466376261383230623837383130653263366533323637376130633064373864386231666130 -65616134396638393436646337333763383133316562626239336230653036393038653164653762 -33643163343037653265653531396365383733613365373366383732316335376237363266633733 -64396361326234343864626233363838656336333639323932333436663639643336616134366266 -31343837323836633561313634303536353737333034616333336630653332326663393838336436 -37373032323031373264623466653837623464393963356431636363316330326164383531336662 -36396266373433313834613736376635343363383031313265666233303332333066613838646531 -64663335663735336235663065346165316663393232336661333063653638653336666430393435 -33376531363432333463643064396132643162356564366437643663616464363433396265383838 -33636531353836323634663661653931323364383833643135396661653064346330373662633736 -64633635646263353630623465346136363030326435613635353864373839373561383536366138 -34386437306562343830643638663734343362653634343136326664313662346633366264396464 -39623366303338633534343061646564653030393364643466383239633332393536333932646332 -62326139646566613361353463323932396333376163636162666137636237373564336562623465 -33376232633733393438636235333432653264323562363962333638353831656635663861373536 -65363664613232633736363261313062643461343664313639323034643732333230316331373736 -34343237346138633731303536663135386537653636656337646430363762386637306236386230 -37336563663533656635316135643430316435336566613239623365363561393063336162653863 -64303631646662396461336332653934656330666131633163633332336463643362626634613661 -39663635313030306338616562313266666163313162393732616634353937306561376666623464 -36303966663839633234366230366436343438356261346661353763623764313632356630666161 -33366433303932316461616230646435343037313066336462313931656635663164343762333863 -30373734396638333863303237343262386232643565383632343364396234623034613163633439 -30356261376134333966326262636430666237616235316461663038316533383163336134303861 -38353433363936313832383161383631643963633531343264393032366630316636666264613436 -36363861623564646564616634343966633639396338333534393965613433636466646366373932 -37356163666366653066353534333263616366356537396161346236336330633438396463356332 -65303330663361386664316162616564636662336139636464643037356464323065306335333830 -38383964313365633763633138306561666632346239363138613639306137386231666539383163 -63373736366364656336626339383464653237343561396666666637363565326332333933323135 -37303338623336643832373433663031656636366536623063336332363032653038663763396132 -35353134303334356433633533376631653236323766303765616635396637396437363032656363 -65336333323536313037323865613064343663373031353331373561323031363866663164373164 -30326634646266376336376639616437386233646362363731383439353130313862646362306336 -33613464316462613363383430326566326535333664626435346436383365383534343839343136 -37363837323539396163386262636137613163323134643739373964353633616139623736643938 -62353034376664656432623439333666323131386432373230343062313239323138353661373937 -32646666396232373165663139353134656534643363393635313833383462313561636633353933 -63386236623464323062383533653062353036383566366639653564646639383335313563373531 -33353931653965336235636661373236373833643734396331646531316332643331393433633430 -32626166656166363938373936653534353364613534396133653937366133383063393561643739 -66616330376133613665393463663664643563373966623839613830613234306631313936323239 -32353366636666326236326462356461633636663639376533386136383462353038653935386338 -65346632336439393035326133323831346133343836346262643732626165643737656665646661 -64656533353263306365353961646638633438653331623832363936653966343362333361343330 -30613135373734376231303261376566663632363366343965383234613066343034346361306639 -30373931636133363338626236326434636138336435353130323532646337663232313736303030 -64383730313562646636356338633930633730666564356332323164316634363162323332613639 -65666262323630316336333861396434663664393264383931313231353533356330653662626161 -61643665316531326261333436636164636139323466386634366435343334336466363230333830 -63316430633830303032623934623461323333333836313561383432613431663961376636303436 -34643663393933356664386630306335336536303037623236613736336434663435626635313161 -39646337666130656164663564353639336362356332346631386231303433376434326663653239 -36333038353438313630386564623935386138363361336233643334373831616363306634343038 -38623762636162383831316137383631336462386262303961343034613039656635396237666334 -66613632396338363662303832646465643537613335636332396533343439646233376630363734 -31383534653261353262366461663836653933333835346463396133386463663437613336323037 -64333164643731666531613239393435663338343330376265633231323931323366313039363365 -36376464363833363137303030666335326563633866323363646465323963663961656238643438 -32663462333733343838623235666530383534613532366536646130356638633933326535306639 -66393061333132633431623863636330613035373632356366356232323064333062666432353930 -38396664303231636663383231373263393538306232663430386638353561333862393133366266 -34323930633361396535343136396464326534326635633237326164353766376639656166356339 -61613236643536356164666338333566636134663435383362316538646133383965386531653535 -38353232366230656461356133343532333839633239623832623466613261333964313130313261 -36663035666534343430656637336265396564303333666639373738393461393038326264373737 -63653065336337383561313532626364343135643963316131313162643863623963333139383365 -64613334343539613139313633656633626530373239353234633165323133326330613235633538 -34323431353632663137613731306639366464336261656163316236383032643761373938616632 -63353837343266356135663839623764613438656139376433383534376135613638613962316437 -65613864333931663136323266373834316137393261636134366264353761393835663662663230 -66343338666531353634633764616436656334383963383635386663306238306339373266303165 -66353235656139383663376362336430653066376661386432303038666263313236303361633766 -64656138616366393733396637626463373031653138336261663064383836373138313561303530 -31363237343333666561366466366361333961326162383562623633356437633237663566373863 -63376439396433323237393363636565323533653338323235376230643230653235306633366438 -37323035363163613437646333333534386335656336356261393935316234656661343965386137 -66643539613038353235303465333337643663613233303931333362393935643065306139633139 -39616665613135623234633766643666336661346331613230613337323763393766316130666431 -31613934626438646635633936626161333463636365666131656330323832613165613534316263 -61666438633836643562313433373535306464386461653031643030373131666562646630326165 -34383366623334343038666561346166356639346236623835373536623431613034373230366532 -31363534633565633933306432633738336238386364616232663132616366313432616561386632 -31333065613236643232343837326366613364653030633562626339656634666165313231636339 -32306437363736356466313561636431306630616562383930353937613664333939643131356437 -63366133376131313862633464303738366531643065326338313839613037646362343464613834 -65616464363835333761313534326533346361643033396635346563366334326336323761636439 -63313539633766643262386336613766666436373335366165653765343239396463626431383231 -38386534363735336337663034616163353435356630616431643938306365336339633131323462 -62316130383034346534633632363033626232313731326332646464633061613832333435653431 -61363936616639306230306539636561383339643435343261633833383166336538333530653836 -66313534613535613463616561663439316635326261643431346133613735333934643461376232 -62353139323838393034383662666531353335373861336630326639616531646466626430666563 -35356633303861646236323734623935363664316336663634363432623434363635666162303262 -35353335653338393132333962383761376130336161343932353039326130336362343836383339 -32306337353339363938346639373036376631656661313332653263353831646633393235636238 -30343538643630613635666462386335383432306466353231633262356164356331343262656161 -39343930666631333865363364386161613630663234633763306137653733353234336235393033 -62333063656230306635613835356366343563313634323931656136653130653133306564383538 -64383632346662393839353963666137323638383531633031363738376536336231316635343631 -66663139386130643330633361343332356364353430316261343136663633353739366337666638 -66333239313432636465326435376663643831616131333131376166643732666330383730643963 -33336130643763653934656366336631323237616234616237633731366533656531366231356465 -31366661666166373962623163623636633131373266383033616363363136396139303938303137 -39376135616132623261646333383836346164656432363338343037313333393565393338353162 -62353330356339656233313161343261643761343563663633353864386130353464353062336565 -37366366353830653831323566326535353137636536343534653637633361616436323231353432 -64366564646335303534353963326466636165353939313366643637376437633833343331646263 -35663161653463653737636563313961346337366331343161313730303834363136656533626336 -63343039373064653635363364633638323836656662303038323133653038613535346239326333 -64343930663230646165643833626665663165636434613836313434306364396530323566616335 -31633333373166663063613331653830663133623831663863356234333635643335393134666631 -31353237383465353661333231663061653437373662646134376234613436333062336132326361 -62303336393365666536653536393030366437646137633238623463663865656335616538313766 -34623861303530383933626465373864393337363561313163626232646436643762333161343931 -35666237386431386636633662616363643866373336323834636239346665633665616431376132 -30386233383466336634386362633766646539306139323438653661303761303865346366653338 -30396363333963373138353235633536393534336663663666623634633935343861623731333536 -65393165623861366530666264646233333231386138633837643764363634326464666663336538 -36633736393435653139646131366533646262366138353839336538356364666332666230356438 -66363266303031353465396332373463303861396137636464643134623965653132303335383231 -33386132373563333530633437336433323663653065633531626538396430386434323535643239 -66663361306138373937663733313766636565373066306138663465323563396662386235613331 -34363431616630666366383837343131633839353066373236393962663966646635386562333431 -31393764323363323634613438366231303165623430303335613761623834333437333063323835 -32376433613030623235313866343064316636353466623062613961333234303065653465363238 -63653032386163373537653532643065646330376362323862316530376537353137316535373333 -61323132646537663835326561363639323735393839663661313064353738613230626335643131 -39396664323565356231643830393830643234396362636462316131373036666130623462616235 -30336561393138623262366239396138313464646337363230356631653236643935653639633732 -30643136623632633831376462323033373338643062316638353930373835386561643039353437 -64356438666332343730636363633066656666626639346536656530386532663463363062343861 -34313666376338643031373737376533626433303530373162386534656562383338323234303531 -65663537346532643462633337626465623736653163623131303063356134323934633036633764 -36343239383465666366333832656438366666656233393636663633373762373538623939326661 -37646364363432346365393834353833316166386661633636373536623533343231653237326438 -39333363356261396263343135656538646138633661363232656563393864373037366435326666 -61353630353536646639653463633137383962663037623631363336373035336635623337343635 -65633566316664323162636361303338356463623932313537363339363863633161326130316238 -65346462363063363761333134613235333635376365383362656630613535333537373435653437 -39346566333534353930383832313237626662383636353336323837386266636230616165316266 -33353566623231313033333336373439366331313330653037346362306361643666656331363432 -62626435613330646534656661633636323337313266323738333464633536333161313139656134 -35663963323866303735623131383766316564363966636237333731363834613639373631396339 -66626631613364373630376135373165323738313537396234303939356464393732346232333833 -37366135343739623038366162396262313835326563613066633634313163616331623733376263 -32633530353530396539346165643864326565353365393934623234346361643237643833653934 -38623137633036623733623130653930623066633763373866666265303939653436353731313732 -33353463636461303634353863646362326534386431303565666466333335396366326338623661 -37356462383532636635313538613965333661653762343934393832636533316230363536373161 -39316534623530313634393538386435616438646432366563623930363366323835376130303432 -30653664636566653230383434343735646336363465383965386165643435626365353465393934 -64336133643164333464646434383931373662656165343630313334326531363532646362353138 -62616565316461343930333334326633353462656534316266396136303365653535366461653936 -35326661386662613231313937643136313066386237663835623336373234373366663663653037 -34333231383938636237353130646135643134386163626265323362373364303532386464656534 -34653738373437616665363938656135353961343730656163313930356132633062643637333030 -32643635623433343762663130366530633334656439616531623961613338363365313032633461 -32303234313664633936363637303666333231316362343432366531623931303033623937646635 -37373730356530363238363532323963316330366533343163373733643763386166326561333262 -32336639333532656561626236623863323132366363333432366263383263623861323266653036 -64666163393465386136616537356236303961663638353264616632383830636632333761396533 -66353038643366343264333536656139623936303738313331333564613863363263316233396130 -34353538363238366364396535363336396537326464633130346266366265623364356634626364 -64313366343865306562363638363061396438613966616432346239613238343235303765623935 -61373031363864636233613737396435373831303837646136306533626563633233313837333863 -65346332663436373562313233316238393435316238393030663161323231393230643165333962 -36313935396465313433393265383235666436303135363861396432613135616665386539373661 -39666564623139646539633636633762323832636261633737316366313862383433306131346238 -66663338643932313939393163393936373833353739363764643533386536343663643238396638 -62366366343164393634356464623930386433373835633761323163376135373131653664626466 -31323039313530373230613463363935663961366132313862663930656536353932636432343032 -64343632623831636630646133313339323535363362643133306266336365646365323034353630 -30303964643734303563366662653261633036343866366463383964323433313333313137623563 -35356262393436636332633739653366623564323833356439616264613535306337653538356239 -63333861316266303332616138356237383733393337636239623061313262393762346132616236 -35363262383837396661653539663763623336653562383937393263303531666537343466353565 -37316563333964396234333663636331333234363138386266323464656439376237663935363836 -37626565383664303838623966303762326331326134353736363837663739373932323865613834 -36336135306430613964333936663035306438316164336264663566623930653837326664663663 -62653366363364643164306237386664626365653963656666303032663731303230663738616565 -37346539333734333537343831366437636638373863343430653538316432346364663035366463 -35653930373637336564343561663139646230333836613563306633653032383463303965323965 -30656334363936303035343065366233373564363863363964663865376435343561303233346563 -36316465333735353062623232623036336264323230356466666164396637383430353435353662 -63653430316638366266646539393635316162313931633365336232373731363364633737326133 -34326233363162383435393266646362643535626164303230656539636535313139613365646339 -63363635613235343032383332666433383936323536353830626435653932393863303030373835 -62323533303261633335656564633838303963336166306463663038613738346433333362643534 -65336163393665623333353931393533346239313130636233363461626163313636616463646335 -62333366363766613066343135626436353531373832326361656534363866366331646366336661 -37303534643564333732383562333365653063656530623135613631623763353966613634316164 -36383061633963346362386230316635633734323030373366326562306236356336376332663033 -35666636646462303965333666393138313562346265363461653836396533636266346562643161 -65353061303537623735346461333135633361616536663364646565376363353233343334346264 -31616432656532333537333131353731336563666536356266636230323566663464366334343533 -35343964393338323739656630376562653430313565316164663838313461326435373438643239 -32373031313632626461643435646366626664366336666336353534373963633064666434336336 -35366438333533643434613836633139333336353636313334336165393537613761363564623963 -61343831316430396130316432343062313161623932303331313538646264343965626465383137 -65316261633233666530613534613431316164343866626539356335366161613931356235643837 -33313939656537636334373739323866323838623966323262343238383063316562353230653634 -31306238383736336264666339643536386561626336323333323235313864636335393061633836 -64623533626337396363313834663236643631336533306561346165646335363335383466373439 -37656261333462303332363335353531666634366632356266386132666630373530663732303864 -3262626330393733616464303837393866346263383033373962 +39333931373236363562343066366261316165613334323663623662386665656162343835656330 +3735383732396239356566393235366361373163613065350a653865333037623764303564666239 +36306132353464326162363730343966333464636564313735373630386565373531323631316238 +3965316161633432390a333937646637333964386161373733303233383138666365346432326335 +30646430666465353730303930336263626438646139646633633966353264643732353639613534 +31346332366565623538623862333063613334653139353062626131323030313766313563363035 +61396537323632313336663336326565663630356235386261303163333039663739343762646161 +39376639613438653763353164663665633765373837616436356364613963623562393437306366 +36666438306165363131333665313433656161633336386638326436653262373332336461636566 +65353462323031346633366130656561643638393332656262396566623135626638353262376435 +38373131633761383834396336393234316631613732383436373631343435383164313039396136 +62353431383066313365363339646166613230616664373731633663623533376436663737663062 +36366661396331366261303164353339343864323364376664353931313265366364393933313538 +38383565633938386265396231323132613333646463633037653539343661393736626439343938 +33363062636634326637333238346661653133333135323361336539616331303133613039643334 +34663963376636313332376165383631343639346666623539353963313131323639383361616264 +31366365656134653264626464633530616136336265336333353239373934316566303536633733 +30326136313338363837316664646532613031373731366166393131313432633732613531316139 +30666632303663623732343032333639376563376166306634363431343863386264386231343635 +38366162646331316438306365626662663938393331323934393736666338656439613464386631 +64643232386561323335333562663130666533653666303336306439393931306333333938333837 +66643634663832363766663765376530383537346131613762373634313666386564656663626431 +64663764656336616131356334666336643538613233303231316537633366396366363733393932 +32313964613535306432633865393463396464326163633666616635346165663561626537636465 +33633634383032313533663362383663396664346561323961633738393136363462316264363434 +66313338316335666138316664353337396339366438316330623330306563303634666436366464 +61396137613561613831363138663465313663663634653434356334363332376534353965613333 +65303339306537303136303566663433396339383561346238656434313538636661303862306433 +36303162366433626631333533616362323532356133336264643664623531386135346263643563 +36346635613537633865383135663833383564653738666434306665363638313639383735326438 +65336565616136363837336334663166336138633964346363363430396466646434313535663862 +34633836363863306433303265386365353563626431376634343336663132343864313264333039 +34386636333939356537373031653963393462353963323663303135616465386261303532333439 +64613261646339323061626632633032616532323839386461303264663132323933646638666664 +66393762373165646431396632323162313063373731343862353962343164393164373734616433 +62393161333438376263663631353361366539306631343232613435633834646137656537316131 +66373461323064373563636438376165383565313733333762616239633439623664333631316536 +30633339333039303531303131333565313433616263613034626533386232373233653930353534 +35353933353637343762336533396231623265383733666466383839333363396136636465663963 +39323237303137393665323839383237643465343538313336303732393763323038313162366264 +65393763363933633765323332386230666438636133393938643762356135613165343930316366 +30326163393139373337396130616163323061623037616564623738316538613131323936646132 +38373931363731326136343237353966666336643564373935643831373966383563616561376332 +30326561343862313362653131613235626163313163393231336239393363343061313536636333 +62663336633135666538643034656431333339613235393233653962353135356135366233643965 +30656434376566623961616139353230396237616130383536393062303130333236343132313965 +33376538353962383266333762653366386436366264313334316635616330636266613938343136 +62616663313637313165626233323961333036383633356530363431343462393539323735313562 +66386138386262633932306165353534336365306237626539623735663330313136616363663232 +64653366376165336161313733383037626636393139663638343631333162383732643135353864 +31343564666462316230303033663361616130376265656130383738353263343165323836613464 +36656137363261643763393162316565646330633832653637356635656332336164383138313134 +34646166623338353431373365323138353061613338396334396236386636376532613830663832 +63633363363262326432346165383063323562623439636533326230363262643437363665346561 +32383661313234393633376163636432656366663334396261636431643235393063653063343966 +37303162386264323938383237633263613530353737626539666430303631306465623133656463 +30633634383539303865623432613739376134323536613033666636666466646465383639393064 +65383733383338643438353761333766356137613634383536343332353361663335376635373634 +37363030373066343734643632303264656131626534636134666131346264336438323335333632 +35363838613261373035386634643833336437323266306264366538386261343738396334356664 +36333432616566633837313565363765636237326638633364306434303865396535333932373639 +64303064643461383234666465316635613465333938383138353330323239376162653737353637 +66653234326565613530396137306537346234313262366436383734633735303230333562313465 +66373238623931346166383638376331323137663432313663343461313963336532653366663035 +36356238353632646661343935356664326139363433396563333939663235666339303938653763 +35653130366530366562326662363538346366326433646362643566343362653465393236656130 +32636431323732343664383566323261313161613131626430656365663933373637346364613538 +35303466393465646335613263386532633535383731323839616238626337343264326632396234 +32393764353639383835373239393434366635353761663232633962616434663964303563633464 +66333339343330333335626539366533353465643962376230336431623936353235316137393339 +35323936343865393264326465376638353938363833306163306465386665396232623663663161 +30303235636132636437633063306431656563646530333562623934313033363365646261323564 +62393937636335353939386538613432323638346538343463323363366135633833633335306133 +34316265623333626562373936326130343337336365356266373864346362373434393633653963 +32623764636362613032393666346263653363303433393565313839666130656231383166623237 +35626435393630313031333737643930303637633030613737663964333165653564363731643136 +65663063336131613238343063353039336661396136666533333335616566306339636265353236 +33323961326530363132666135616134393434313437666663373066643062316366303266653366 +39663865383937653033346466613063376664623834643936393137383739373639366664643166 +34653738323166626438623637666636326664383130343831616533333335646663323937363437 +63333633343061356630383137653839643731306264636232643436626231393766663738646562 +37363838643932393766636164646435373362643631393235656366363835366261633239326231 +63666637393231666165373962623739656639303731653130623533626366373063313164313762 +37356363633462316132396162616432353966323364366438656663353965333563383835366366 +64326630316265373466373462326339626233346636396536346666656534346631306561623130 +39306139663664366636303336353133333663333533386663306564653765326436636336633236 +32326131326234333039373262353434323234346362343335386234336563306665356535613464 +38396564623739373334363564636636366334633865363363646130666338396437363134313661 +65383966613735386135343962373465343064326137636532336563656639326334613864313331 +36313961653931333733313736646562316663326636666566663538623339313463386439663735 +30356261356464303739613338653336623065336235356663626264316565613135636539663061 +35356162376136363634636131643930643734373133376531366139653466343436356166383034 +66653537376339326635373338646539333632316166643831313331653566303732373633326638 +62396539333834646364323166373665326333306664333630383837366365663566333835373038 +34323830363337313361346265663362313562653663303131356338343231653563373466653430 +36663131353739353932323835373035383264633235363930623063393435316638353463356333 +66373961303061613839353131346532393636373138646562336133356239646134323262356466 +31623139616530313532336539396431643963313262363533323962363939323363663935653433 +66323533646137396161616266636236366139643930393831313066646539653861396266323065 +32313230323466393665333062336131613365643532653631363639316261646130656632373163 +30333338356233313263396433393863323363646235623734366366396362313164363135653661 +35366239376637353332353135303964356261646633383433376134663761633035663137306330 +66363065376236623139656432663265653030623238303366656637353264363764313138633566 +63343538373231616262306232653139663833623061363133343937313039366566626632353261 +63396135643431333366376264333461323631343138616534366163373461656135343334313562 +66653039383436613263303031356230643838313738356537366537646230343562653165353264 +62363764636633306266313130393264363538666438346430303037646338313938626331333538 +36373939333433666230656164313838393738336636356437366138316132363037326238323532 +63653064363036636439636366343639346564373432353363336463393130633835623065303539 +34333237386337636234396361343330646261336434656564366332353264666330626132666663 +62323434303631333763626161353562656336323032326130663938353530343936356236643263 +31343366326337393536363162373038356463343434333132666639303338623939626665353566 +64626133396636383139306432616563313632643332333865653538323937366664326336623733 +64633030633837366563363635633830316562383636316666313539373036333237336163643863 +66663138643766656337393363306564313430666338393965646164633338626532346433353234 +30386438663861613030303865643066623234646463393038356266653466353337396335313965 +63393239346565396234363332383533326339333664326562316439393966343566636634323366 +32616334616262363835346532373864656663663365383838323134383330656565363062363232 +61306133316363343063383763616463303139303731323738363631376233306465643737363262 +33623438343330643635316663636432393038613663313636353666633535306662383939316262 +32373933363636633535376430653136333032396138373661363064653438633737353737303439 +39393264326235353030616264386335393932303563323434343062353461346131663934666330 +30326535616138313233383961333365653636353631356231646236636335383835373930343133 +66326131363666383766346437353237636366363265633934346361643565663838303762333933 +34653238373364376563363836356635653630393238653931643637636264616131373561303162 +39643437633738396531663863343531666163363432363663363564363935613437376235343736 +62303932393532393938343433613063633036346433626235636639396439306632396137346532 +62363865396534346436313436353761356531386634383434376535376664343562333362626537 +36623232353361333331663363336530393631386531656464663335653364386634323364316564 +66313563383934643232356132356535626536633064373537613138346339363461303330353539 +31373236663362353562323839323530386263623263356163373533323234313837313637313232 +31626435333935383433386161383161333436636532346464333135393233303861333431623037 +61643435303063336434656666386335653465623365643239333532363266336162636632333838 +31656335616362343235303731336333373064633965613332346561363836363562306461373539 +36616665623464616130646337353230333336373734363032326330646133336665633463633634 +64313965303161616437383039356631366665613135653534623538656532633863636538393966 +31346534663531333262613332343665366264613531353636653566323661653838623965353861 +64313034313164306638643664666361383363356364396265656538613461656539633335653539 +64323733343265356139343164336562646232353436393130646232656664643463333235633734 +61363761353265626139343561383932336335326633353036306636383465623461323466653234 +31363461373338663838366530613265623932353331316534396163303935633161323363373066 +38643837653066616334333031333361306531653234303830663063386563663166666266613337 +65376565386236663036393666653635313061643535336133656334656466633166626535363562 +63646661623162346436313763623632396461616238666166626337343662336430373237613336 +63313363626430393134313965663366623535656264353264363762636630656164303037316332 +37636637393265386634643566306337656336636361643334316335646239656234316339613435 +38636536613934373833653637303336653631303436313964663839623535643632336236343436 +66333231363864363137653231326634303234646263643432333535353265613334303931656533 +31336534343538646632626435623830376563613230666364383430643939383365636131653930 +37626166646135613334343830323737386539653165623834316438356334383535306534613561 +65316237616636646664346563636230363035663733633238363434643863643835306431663232 +64656634396230393432313430346537393433616365393232663732663033396365386561656232 +31346562396235386538663434313032316563386565623433386238353062336266363262643533 +31626562343431613438373632623264663837346136383331623231343131643565623134323562 +35616462316534626162646365656163326332656165333832373166356464376363326335656366 +39623738623164313762333333336230353939333935303865346436633934313465623233373963 +36313761373363653362366263666563666661396538623437343532656236633134343461626638 +35333339313730353037663435386235363764616538393838373432353834363363636363353365 +61386436383963663662333762306539303739303062396334323665666132663630343030613537 +39383930393861323638306136343239346439353665626235393263316233633661303662636532 +39333836633431663839623763343835396565366236343233333832323032363161353933316632 +37393139363437663862316435623165303531646433326363636361316133613732663735366430 +33343765303933616532396565623331393634636537623432656162323661356433363764343865 +34306237653462653838333866633739663937333834376137643761396362343338313762353538 +32376566626333633734363334383562336334373631356438363432353436363566643665366463 +35663464633735633964633865646266316361316332333230323939323761306364623763393566 +30396533633935663361316364396333623132613265633538316432303436636165393639326139 +38333461373866636531346538323134313637316130633037323063663135313136353133373834 +66316165396264393837343966353965363233303735666165353034666133363132316638353939 +30376437316362373337353764613764303761356166663831616231623363396234333934336565 +61393965613539663663383335386239373963356264306165313662653034343139656662663234 +39383964616235336462313438323565643631393734386162383562333561656563323761326538 +35373530656366303533636662346435656234343361626166343638666362333436653134633737 +37633838326632386566383730663134316134666432363938393465396632396135633063336561 +61396431313737333765613038366661306434643032346663626336316565313262636362386338 +31386530303532346532346335373533643464306439386232613038306164613164333138373238 +30613337303965313132313139326533663839623935303537363039363463363031363633323462 +33326162376631653562663833323661303465396161323933303331666661626333306433346564 +34303062653131316364386262663166303965363334643933333235393839666333656439303961 +33353735303230356462306163633730393439393033636236373333323131353633626236346631 +35323139366133663237616139613338386630323732363833393632633061363231393432326461 +64333866653437636239653033313065663037373639316264353236326162383635663162396638 +36646530333232356162303862366238396639636634636533633761386432313337303339323766 +34396466333161653230393162653236656231653565323263613232376432393934303539336136 +38393937356661633039333232373734353130643230616431633334623836323662656264386538 +31306464313431386534633236353133646636396561303766306362366537663437636165653635 +31383738616131626562633264633663303939333236373532366431383331313832303663383333 +63383864623862653262363534386562643166613561333961663338616139303963656462343135 +66363931643063663033336232646236653363643235306136376638396133663233663166343962 +65383564323132343865363733393162366562666137613635636166336364363730383065333263 +66623237333737306538373063386664326662333835353564326331663964613765666238623137 +32666138303830366462646635383461336235306166613038363366346561343031646562656363 +39636565643938323862393331363062656637643237376136623833353665633538623962333965 +36643635616435636464346162366635643531363538353063393437393566636637656261613665 +64666535343536323766303830613038353439633532393434316437373532623039373034643263 +63646566383666336232326530303032346666363063316635303839353039333330323232646161 +35666630643530626232343666336464336562336465393134663135626462663233343964386433 +38346261363632366239623936393736633966363239623264623462346233613930646138353930 +66643030306533366162643834363336303932363636313163353738353037333636333434303264 +66316338623830636332306464386566363466316634383832376662373534393932643832306561 +33663133393363613461613935386333666532613538363566663736623837636565653164366238 +63383035373830636533393835356562313266653662353930353464663734646630303963366261 +37653066336339326132356638653031393430666535623431616236633261313431643239616338 +39346561306161303535393666386434356563373833616466363665383134346662633831626433 +65393935386630356663303036646139396230353239353537626166636433346466313438616535 +34626364333536323335653333656236313163633231353366313563306630393264646435643666 +37303032646432653333373764333931333131316465643761353835373738306334373561643666 +36623333636663663437363532643334653865326531306139373462623230613163343365393163 +30623635643261633737343166396235326463623136613163303939393062653031383032356564 +36326334393838633335613066313263363834353161316234366436396439376362383262616164 +34636133343934363139646336623137306661363664326666623864383066636564626132633166 +39613864303365383937383936333539363365643334383466356530613439353665326639656563 +37353933646561336662613166623539616462326232383165323561663462663137646531613032 +64363864373666643762396563393732663331633534663339336437613536393066316362393566 +62323561333366613433333335303231356638323434623031666231393265643161653462313335 +32323031353933373865653930643066396135303063303435373432663364306661636362383935 +31363538303435633734613766303236396565386632306338303839636333393166633736353838 +30303339383832306663323838333935633135396365616330376537633835363236376166343361 +37316332366333383336313866346239613736653333356239633533373661313766643236623463 +30376531636262663066353237393037656365366433303538353661643630363338393262366635 +61646432636366363262633838666530626161316364633637653463396363303033666361383732 +38623730643634366530626139336562373439373335373034623864383063646263623533323765 +30633963383339316664333264323962636332396233623930396631303463323431643866336436 +30643334313764663764626535623364316330653064373765353763306335363130333636336438 +37303830636332373034353836366431396131656235666564643530646533386362303931343962 +63316235346262323237626433393163643035366134363339393165366238326262383137383461 +61363030336363353737386162383231323239393332326534333663363336326437326164353963 +35323530656162356463663764656532653537333534363436326435323664323635306536313438 +64366262623862663931626238343363646261396234323365386534653734373861313538623035 +33383562366630666537396362316466646438316533663132313630316631613465356330326239 +37666162313461386233306136326266636162663835393735613530323930396164383934633832 +37373232336634383563323966393136316162636431383036373165386162393830666439386136 +62663533613237313537346231633134323338353563366430346166663564383666326634333664 +32626239376134316663333765366635333431346261623862346431393636623439333236346163 +64343336646365313435316330616430656665626366323865316162623135666564323935633830 +30333230623734323730343434366361646535323662396337353232623464636561646264336630 +39636339316537386461626332633266616538653535306566646364343130323761386265336636 +65643961336339656435316262363562656536653937353762363630343939383764663139643437 +62326566396235623238356166336137303930353966326537323531353036326437366361323663 +32653238656632663962616465393862303133333463313431323635663930623961323136346232 +36323335343938393635393938373234663633306332666238386363666234623866336333303438 +38656633386331663938626338313264663165376137323535336432623363353734306530393633 +39616361623734633931393933656437376431353832393531303934663438373430386233353464 +66353865383065326365376438343930663361616665623066643465326165386331393539373361 +37346563633035303033313131343031386239636431616632636665356366626235353234386130 +30613064633636613765656339313164363265646161666133653735326236373763656430643631 +31336261393263373762333164376532623961323935356333663463636561373961626135366634 +37343634396364376433353562633538353030613531633965336631343762306562363135356363 +37633931323563303637323561326234326231353133653338646561306366396234323966343065 +63356539613763643661636164376439613932333562633161333664373861393636646165643231 +61316538663965656139386530396661303563383733373631333765623365356234346265366462 +30656334626236356431316530353234633563383065313562333162303365383531323564376365 +64643735633539313164613831393465386536393663653637626333363064636461333764326136 +30316430353734373563656439356466373064353466623163643739383337383961653338386664 +64633163346364393563646564616163663333323335633236396461316535303330633261343661 +32643938326564396565376163626433376339356462303764303537613630656534366535376138 +30663332383562656637636631386463653632663033666663373637376662343130643265653232 +64663362306565643066633533613565373832656232643238633361613463383032653930373137 +36366437383530626535663732383439353362363864363734306531663464316432353536353931 +31666336336130393036396461393963353133636361626130336261366434323439643464363132 +65623038623831313363643737653530616336303764663261346538666262333762333731643062 +66636461633635346535396632623933393965336661353438353861323938613961353338313165 +37366662396232336331623031626137643338353637396433303962666565353462616539616336 +34383163303362646430323865623530336262396437646464666539636230626334643834316138 +32343335643032343035643939613963396131656534393263313131303865656563313964613235 +34363262353032343139386462316332643933643461643136396433663439643636663161326631 +31643266623461313839376664643634306362623530376635343237313162613436363139316235 +39666438636466613634643462656635303139396336666234366434633031356464313634646539 +3066 From 0a9a965900b7ef37267da1e36681b41f445bc2fa Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Sep 09 2021 20:20:56 +0000 Subject: [PATCH 6/9] Move back to RITlug hosting. --- diff --git a/inventory/inventory b/inventory/inventory index d02a673..21bff6f 100644 --- a/inventory/inventory +++ b/inventory/inventory @@ -1,4 +1,9 @@ -telegram-irc-01.fedorainfracloud.org ansible_user=fedora +# RITlug Temporary Host +irc-lug.rit.edu + + +# New Host -- commenting out until TLS issues are resolved +# telegram-irc-01.fedorainfracloud.org ansible_user=fedora [dev] 127.0.0.1 ansible_connection=local diff --git a/playbooks/telegram-irc.yml b/playbooks/telegram-irc.yml index 1061db8..f069839 100644 --- a/playbooks/telegram-irc.yml +++ b/playbooks/telegram-irc.yml @@ -1,6 +1,6 @@ --- - name: synchronize TeleIRC host - hosts: telegram-irc-01.fedorainfracloud.org + hosts: irc-lug.rit.edu become: yes roles: From 8d91c536a6fde1dc7af16c470427fce09f2051ed Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Sep 09 2021 20:22:26 +0000 Subject: [PATCH 7/9] Remove Fedora i3 SIG from TeleIRC bridging. --- diff --git a/roles/jwflory.teleirc/vars/main.yml b/roles/jwflory.teleirc/vars/main.yml index a857b94..06afca1 100644 --- a/roles/jwflory.teleirc/vars/main.yml +++ b/roles/jwflory.teleirc/vars/main.yml @@ -170,20 +170,6 @@ bots: imgur_client_id: "{{ default_imgur_client_id }}" version: "{{ default_version }}" - # Fedora i3 SIG - fedora_i3: - cn: "fedora-i3" - irc_blacklist: "" - irc_bot_name: tg-i3 - irc_channel: "#fedora-i3" - irc_server: "{{ default_irc_server }}" - irc_nickserv_service: "{{ default_irc_nickserv_service }}" - irc_nickserv_password: "{{ vault_bots.fedora_i3.vault_irc_nickserv_password }}" - teleirc_token: "{{ vault_bots.fedora_i3.vault_teleirc_token }}" - teleirc_chat_id: "{{ vault_bots.fedora_i3.vault_teleirc_chat_id }}" - imgur_client_id: "{{ default_imgur_client_id }}" - version: "{{ default_version }}" - fedora_india: cn: "fedora-india" irc_blacklist: "" diff --git a/roles/jwflory.teleirc/vars/vault.yml b/roles/jwflory.teleirc/vars/vault.yml index acffc95..09ba20c 100644 --- a/roles/jwflory.teleirc/vars/vault.yml +++ b/roles/jwflory.teleirc/vars/vault.yml @@ -1,270 +1,260 @@ $ANSIBLE_VAULT;1.1;AES256 -39333931373236363562343066366261316165613334323663623662386665656162343835656330 -3735383732396239356566393235366361373163613065350a653865333037623764303564666239 -36306132353464326162363730343966333464636564313735373630386565373531323631316238 -3965316161633432390a333937646637333964386161373733303233383138666365346432326335 -30646430666465353730303930336263626438646139646633633966353264643732353639613534 -31346332366565623538623862333063613334653139353062626131323030313766313563363035 -61396537323632313336663336326565663630356235386261303163333039663739343762646161 -39376639613438653763353164663665633765373837616436356364613963623562393437306366 -36666438306165363131333665313433656161633336386638326436653262373332336461636566 -65353462323031346633366130656561643638393332656262396566623135626638353262376435 -38373131633761383834396336393234316631613732383436373631343435383164313039396136 -62353431383066313365363339646166613230616664373731633663623533376436663737663062 -36366661396331366261303164353339343864323364376664353931313265366364393933313538 -38383565633938386265396231323132613333646463633037653539343661393736626439343938 -33363062636634326637333238346661653133333135323361336539616331303133613039643334 -34663963376636313332376165383631343639346666623539353963313131323639383361616264 -31366365656134653264626464633530616136336265336333353239373934316566303536633733 -30326136313338363837316664646532613031373731366166393131313432633732613531316139 -30666632303663623732343032333639376563376166306634363431343863386264386231343635 -38366162646331316438306365626662663938393331323934393736666338656439613464386631 -64643232386561323335333562663130666533653666303336306439393931306333333938333837 -66643634663832363766663765376530383537346131613762373634313666386564656663626431 -64663764656336616131356334666336643538613233303231316537633366396366363733393932 -32313964613535306432633865393463396464326163633666616635346165663561626537636465 -33633634383032313533663362383663396664346561323961633738393136363462316264363434 -66313338316335666138316664353337396339366438316330623330306563303634666436366464 -61396137613561613831363138663465313663663634653434356334363332376534353965613333 -65303339306537303136303566663433396339383561346238656434313538636661303862306433 -36303162366433626631333533616362323532356133336264643664623531386135346263643563 -36346635613537633865383135663833383564653738666434306665363638313639383735326438 -65336565616136363837336334663166336138633964346363363430396466646434313535663862 -34633836363863306433303265386365353563626431376634343336663132343864313264333039 -34386636333939356537373031653963393462353963323663303135616465386261303532333439 -64613261646339323061626632633032616532323839386461303264663132323933646638666664 -66393762373165646431396632323162313063373731343862353962343164393164373734616433 -62393161333438376263663631353361366539306631343232613435633834646137656537316131 -66373461323064373563636438376165383565313733333762616239633439623664333631316536 -30633339333039303531303131333565313433616263613034626533386232373233653930353534 -35353933353637343762336533396231623265383733666466383839333363396136636465663963 -39323237303137393665323839383237643465343538313336303732393763323038313162366264 -65393763363933633765323332386230666438636133393938643762356135613165343930316366 -30326163393139373337396130616163323061623037616564623738316538613131323936646132 -38373931363731326136343237353966666336643564373935643831373966383563616561376332 -30326561343862313362653131613235626163313163393231336239393363343061313536636333 -62663336633135666538643034656431333339613235393233653962353135356135366233643965 -30656434376566623961616139353230396237616130383536393062303130333236343132313965 -33376538353962383266333762653366386436366264313334316635616330636266613938343136 -62616663313637313165626233323961333036383633356530363431343462393539323735313562 -66386138386262633932306165353534336365306237626539623735663330313136616363663232 -64653366376165336161313733383037626636393139663638343631333162383732643135353864 -31343564666462316230303033663361616130376265656130383738353263343165323836613464 -36656137363261643763393162316565646330633832653637356635656332336164383138313134 -34646166623338353431373365323138353061613338396334396236386636376532613830663832 -63633363363262326432346165383063323562623439636533326230363262643437363665346561 -32383661313234393633376163636432656366663334396261636431643235393063653063343966 -37303162386264323938383237633263613530353737626539666430303631306465623133656463 -30633634383539303865623432613739376134323536613033666636666466646465383639393064 -65383733383338643438353761333766356137613634383536343332353361663335376635373634 -37363030373066343734643632303264656131626534636134666131346264336438323335333632 -35363838613261373035386634643833336437323266306264366538386261343738396334356664 -36333432616566633837313565363765636237326638633364306434303865396535333932373639 -64303064643461383234666465316635613465333938383138353330323239376162653737353637 -66653234326565613530396137306537346234313262366436383734633735303230333562313465 -66373238623931346166383638376331323137663432313663343461313963336532653366663035 -36356238353632646661343935356664326139363433396563333939663235666339303938653763 -35653130366530366562326662363538346366326433646362643566343362653465393236656130 -32636431323732343664383566323261313161613131626430656365663933373637346364613538 -35303466393465646335613263386532633535383731323839616238626337343264326632396234 -32393764353639383835373239393434366635353761663232633962616434663964303563633464 -66333339343330333335626539366533353465643962376230336431623936353235316137393339 -35323936343865393264326465376638353938363833306163306465386665396232623663663161 -30303235636132636437633063306431656563646530333562623934313033363365646261323564 -62393937636335353939386538613432323638346538343463323363366135633833633335306133 -34316265623333626562373936326130343337336365356266373864346362373434393633653963 -32623764636362613032393666346263653363303433393565313839666130656231383166623237 -35626435393630313031333737643930303637633030613737663964333165653564363731643136 -65663063336131613238343063353039336661396136666533333335616566306339636265353236 -33323961326530363132666135616134393434313437666663373066643062316366303266653366 -39663865383937653033346466613063376664623834643936393137383739373639366664643166 -34653738323166626438623637666636326664383130343831616533333335646663323937363437 -63333633343061356630383137653839643731306264636232643436626231393766663738646562 -37363838643932393766636164646435373362643631393235656366363835366261633239326231 -63666637393231666165373962623739656639303731653130623533626366373063313164313762 -37356363633462316132396162616432353966323364366438656663353965333563383835366366 -64326630316265373466373462326339626233346636396536346666656534346631306561623130 -39306139663664366636303336353133333663333533386663306564653765326436636336633236 -32326131326234333039373262353434323234346362343335386234336563306665356535613464 -38396564623739373334363564636636366334633865363363646130666338396437363134313661 -65383966613735386135343962373465343064326137636532336563656639326334613864313331 -36313961653931333733313736646562316663326636666566663538623339313463386439663735 -30356261356464303739613338653336623065336235356663626264316565613135636539663061 -35356162376136363634636131643930643734373133376531366139653466343436356166383034 -66653537376339326635373338646539333632316166643831313331653566303732373633326638 -62396539333834646364323166373665326333306664333630383837366365663566333835373038 -34323830363337313361346265663362313562653663303131356338343231653563373466653430 -36663131353739353932323835373035383264633235363930623063393435316638353463356333 -66373961303061613839353131346532393636373138646562336133356239646134323262356466 -31623139616530313532336539396431643963313262363533323962363939323363663935653433 -66323533646137396161616266636236366139643930393831313066646539653861396266323065 -32313230323466393665333062336131613365643532653631363639316261646130656632373163 -30333338356233313263396433393863323363646235623734366366396362313164363135653661 -35366239376637353332353135303964356261646633383433376134663761633035663137306330 -66363065376236623139656432663265653030623238303366656637353264363764313138633566 -63343538373231616262306232653139663833623061363133343937313039366566626632353261 -63396135643431333366376264333461323631343138616534366163373461656135343334313562 -66653039383436613263303031356230643838313738356537366537646230343562653165353264 -62363764636633306266313130393264363538666438346430303037646338313938626331333538 -36373939333433666230656164313838393738336636356437366138316132363037326238323532 -63653064363036636439636366343639346564373432353363336463393130633835623065303539 -34333237386337636234396361343330646261336434656564366332353264666330626132666663 -62323434303631333763626161353562656336323032326130663938353530343936356236643263 -31343366326337393536363162373038356463343434333132666639303338623939626665353566 -64626133396636383139306432616563313632643332333865653538323937366664326336623733 -64633030633837366563363635633830316562383636316666313539373036333237336163643863 -66663138643766656337393363306564313430666338393965646164633338626532346433353234 -30386438663861613030303865643066623234646463393038356266653466353337396335313965 -63393239346565396234363332383533326339333664326562316439393966343566636634323366 -32616334616262363835346532373864656663663365383838323134383330656565363062363232 -61306133316363343063383763616463303139303731323738363631376233306465643737363262 -33623438343330643635316663636432393038613663313636353666633535306662383939316262 -32373933363636633535376430653136333032396138373661363064653438633737353737303439 -39393264326235353030616264386335393932303563323434343062353461346131663934666330 -30326535616138313233383961333365653636353631356231646236636335383835373930343133 -66326131363666383766346437353237636366363265633934346361643565663838303762333933 -34653238373364376563363836356635653630393238653931643637636264616131373561303162 -39643437633738396531663863343531666163363432363663363564363935613437376235343736 -62303932393532393938343433613063633036346433626235636639396439306632396137346532 -62363865396534346436313436353761356531386634383434376535376664343562333362626537 -36623232353361333331663363336530393631386531656464663335653364386634323364316564 -66313563383934643232356132356535626536633064373537613138346339363461303330353539 -31373236663362353562323839323530386263623263356163373533323234313837313637313232 -31626435333935383433386161383161333436636532346464333135393233303861333431623037 -61643435303063336434656666386335653465623365643239333532363266336162636632333838 -31656335616362343235303731336333373064633965613332346561363836363562306461373539 -36616665623464616130646337353230333336373734363032326330646133336665633463633634 -64313965303161616437383039356631366665613135653534623538656532633863636538393966 -31346534663531333262613332343665366264613531353636653566323661653838623965353861 -64313034313164306638643664666361383363356364396265656538613461656539633335653539 -64323733343265356139343164336562646232353436393130646232656664643463333235633734 -61363761353265626139343561383932336335326633353036306636383465623461323466653234 -31363461373338663838366530613265623932353331316534396163303935633161323363373066 -38643837653066616334333031333361306531653234303830663063386563663166666266613337 -65376565386236663036393666653635313061643535336133656334656466633166626535363562 -63646661623162346436313763623632396461616238666166626337343662336430373237613336 -63313363626430393134313965663366623535656264353264363762636630656164303037316332 -37636637393265386634643566306337656336636361643334316335646239656234316339613435 -38636536613934373833653637303336653631303436313964663839623535643632336236343436 -66333231363864363137653231326634303234646263643432333535353265613334303931656533 -31336534343538646632626435623830376563613230666364383430643939383365636131653930 -37626166646135613334343830323737386539653165623834316438356334383535306534613561 -65316237616636646664346563636230363035663733633238363434643863643835306431663232 -64656634396230393432313430346537393433616365393232663732663033396365386561656232 -31346562396235386538663434313032316563386565623433386238353062336266363262643533 -31626562343431613438373632623264663837346136383331623231343131643565623134323562 -35616462316534626162646365656163326332656165333832373166356464376363326335656366 -39623738623164313762333333336230353939333935303865346436633934313465623233373963 -36313761373363653362366263666563666661396538623437343532656236633134343461626638 -35333339313730353037663435386235363764616538393838373432353834363363636363353365 -61386436383963663662333762306539303739303062396334323665666132663630343030613537 -39383930393861323638306136343239346439353665626235393263316233633661303662636532 -39333836633431663839623763343835396565366236343233333832323032363161353933316632 -37393139363437663862316435623165303531646433326363636361316133613732663735366430 -33343765303933616532396565623331393634636537623432656162323661356433363764343865 -34306237653462653838333866633739663937333834376137643761396362343338313762353538 -32376566626333633734363334383562336334373631356438363432353436363566643665366463 -35663464633735633964633865646266316361316332333230323939323761306364623763393566 -30396533633935663361316364396333623132613265633538316432303436636165393639326139 -38333461373866636531346538323134313637316130633037323063663135313136353133373834 -66316165396264393837343966353965363233303735666165353034666133363132316638353939 -30376437316362373337353764613764303761356166663831616231623363396234333934336565 -61393965613539663663383335386239373963356264306165313662653034343139656662663234 -39383964616235336462313438323565643631393734386162383562333561656563323761326538 -35373530656366303533636662346435656234343361626166343638666362333436653134633737 -37633838326632386566383730663134316134666432363938393465396632396135633063336561 -61396431313737333765613038366661306434643032346663626336316565313262636362386338 -31386530303532346532346335373533643464306439386232613038306164613164333138373238 -30613337303965313132313139326533663839623935303537363039363463363031363633323462 -33326162376631653562663833323661303465396161323933303331666661626333306433346564 -34303062653131316364386262663166303965363334643933333235393839666333656439303961 -33353735303230356462306163633730393439393033636236373333323131353633626236346631 -35323139366133663237616139613338386630323732363833393632633061363231393432326461 -64333866653437636239653033313065663037373639316264353236326162383635663162396638 -36646530333232356162303862366238396639636634636533633761386432313337303339323766 -34396466333161653230393162653236656231653565323263613232376432393934303539336136 -38393937356661633039333232373734353130643230616431633334623836323662656264386538 -31306464313431386534633236353133646636396561303766306362366537663437636165653635 -31383738616131626562633264633663303939333236373532366431383331313832303663383333 -63383864623862653262363534386562643166613561333961663338616139303963656462343135 -66363931643063663033336232646236653363643235306136376638396133663233663166343962 -65383564323132343865363733393162366562666137613635636166336364363730383065333263 -66623237333737306538373063386664326662333835353564326331663964613765666238623137 -32666138303830366462646635383461336235306166613038363366346561343031646562656363 -39636565643938323862393331363062656637643237376136623833353665633538623962333965 -36643635616435636464346162366635643531363538353063393437393566636637656261613665 -64666535343536323766303830613038353439633532393434316437373532623039373034643263 -63646566383666336232326530303032346666363063316635303839353039333330323232646161 -35666630643530626232343666336464336562336465393134663135626462663233343964386433 -38346261363632366239623936393736633966363239623264623462346233613930646138353930 -66643030306533366162643834363336303932363636313163353738353037333636333434303264 -66316338623830636332306464386566363466316634383832376662373534393932643832306561 -33663133393363613461613935386333666532613538363566663736623837636565653164366238 -63383035373830636533393835356562313266653662353930353464663734646630303963366261 -37653066336339326132356638653031393430666535623431616236633261313431643239616338 -39346561306161303535393666386434356563373833616466363665383134346662633831626433 -65393935386630356663303036646139396230353239353537626166636433346466313438616535 -34626364333536323335653333656236313163633231353366313563306630393264646435643666 -37303032646432653333373764333931333131316465643761353835373738306334373561643666 -36623333636663663437363532643334653865326531306139373462623230613163343365393163 -30623635643261633737343166396235326463623136613163303939393062653031383032356564 -36326334393838633335613066313263363834353161316234366436396439376362383262616164 -34636133343934363139646336623137306661363664326666623864383066636564626132633166 -39613864303365383937383936333539363365643334383466356530613439353665326639656563 -37353933646561336662613166623539616462326232383165323561663462663137646531613032 -64363864373666643762396563393732663331633534663339336437613536393066316362393566 -62323561333366613433333335303231356638323434623031666231393265643161653462313335 -32323031353933373865653930643066396135303063303435373432663364306661636362383935 -31363538303435633734613766303236396565386632306338303839636333393166633736353838 -30303339383832306663323838333935633135396365616330376537633835363236376166343361 -37316332366333383336313866346239613736653333356239633533373661313766643236623463 -30376531636262663066353237393037656365366433303538353661643630363338393262366635 -61646432636366363262633838666530626161316364633637653463396363303033666361383732 -38623730643634366530626139336562373439373335373034623864383063646263623533323765 -30633963383339316664333264323962636332396233623930396631303463323431643866336436 -30643334313764663764626535623364316330653064373765353763306335363130333636336438 -37303830636332373034353836366431396131656235666564643530646533386362303931343962 -63316235346262323237626433393163643035366134363339393165366238326262383137383461 -61363030336363353737386162383231323239393332326534333663363336326437326164353963 -35323530656162356463663764656532653537333534363436326435323664323635306536313438 -64366262623862663931626238343363646261396234323365386534653734373861313538623035 -33383562366630666537396362316466646438316533663132313630316631613465356330326239 -37666162313461386233306136326266636162663835393735613530323930396164383934633832 -37373232336634383563323966393136316162636431383036373165386162393830666439386136 -62663533613237313537346231633134323338353563366430346166663564383666326634333664 -32626239376134316663333765366635333431346261623862346431393636623439333236346163 -64343336646365313435316330616430656665626366323865316162623135666564323935633830 -30333230623734323730343434366361646535323662396337353232623464636561646264336630 -39636339316537386461626332633266616538653535306566646364343130323761386265336636 -65643961336339656435316262363562656536653937353762363630343939383764663139643437 -62326566396235623238356166336137303930353966326537323531353036326437366361323663 -32653238656632663962616465393862303133333463313431323635663930623961323136346232 -36323335343938393635393938373234663633306332666238386363666234623866336333303438 -38656633386331663938626338313264663165376137323535336432623363353734306530393633 -39616361623734633931393933656437376431353832393531303934663438373430386233353464 -66353865383065326365376438343930663361616665623066643465326165386331393539373361 -37346563633035303033313131343031386239636431616632636665356366626235353234386130 -30613064633636613765656339313164363265646161666133653735326236373763656430643631 -31336261393263373762333164376532623961323935356333663463636561373961626135366634 -37343634396364376433353562633538353030613531633965336631343762306562363135356363 -37633931323563303637323561326234326231353133653338646561306366396234323966343065 -63356539613763643661636164376439613932333562633161333664373861393636646165643231 -61316538663965656139386530396661303563383733373631333765623365356234346265366462 -30656334626236356431316530353234633563383065313562333162303365383531323564376365 -64643735633539313164613831393465386536393663653637626333363064636461333764326136 -30316430353734373563656439356466373064353466623163643739383337383961653338386664 -64633163346364393563646564616163663333323335633236396461316535303330633261343661 -32643938326564396565376163626433376339356462303764303537613630656534366535376138 -30663332383562656637636631386463653632663033666663373637376662343130643265653232 -64663362306565643066633533613565373832656232643238633361613463383032653930373137 -36366437383530626535663732383439353362363864363734306531663464316432353536353931 -31666336336130393036396461393963353133636361626130336261366434323439643464363132 -65623038623831313363643737653530616336303764663261346538666262333762333731643062 -66636461633635346535396632623933393965336661353438353861323938613961353338313165 -37366662396232336331623031626137643338353637396433303962666565353462616539616336 -34383163303362646430323865623530336262396437646464666539636230626334643834316138 -32343335643032343035643939613963396131656534393263313131303865656563313964613235 -34363262353032343139386462316332643933643461643136396433663439643636663161326631 -31643266623461313839376664643634306362623530376635343237313162613436363139316235 -39666438636466613634643462656635303139396336666234366434633031356464313634646539 -3066 +38343838366366316335363836313139336263313137666661323033366461383738376634303833 +3561656563313461636166383864373331313531316437620a366439623637653565626435646532 +36323964623865356333623537313235653334383463353338666133646235383739303135653037 +3839643431623166380a633733373332643636633233616465343938343132303935666430646462 +63336535313261396632396330386230646638323830366362663864633336323132383436343961 +32323238616435303536653765373765316532643439376466303632646231386437323930343238 +61656434663863386664643835633031643663633962653332333336303131333632393830326266 +31353166666437613666343664623731383661376633613532396435373636326237303833613663 +65356466623366383733316238383032333730323539386330643066323763373130643463313239 +36643463313965363837306565663263616432313337616462353363396238653733393364626531 +32633032323135663339613237343832343637373530646661363666636161346265643634383865 +66636263656232326631306138636364636666633930323463343434666534366239383261346463 +39306363623130616338313732663036346533303063353962633632373634333332396134323162 +31396231373162353230393232383037383739616330306461656462666535316433356164383332 +66366135633665303239643665636139663563363939373839323034396537656330653836326537 +38393031656133636437363563333732653333383931643034613636316363323363626532363265 +39303738616139613732333630646465653638386337313061373236393730376663636438636430 +30303435303733326630373237393430383064343636376138616665636564626331303761336266 +65646135633162323633363131613465373961343263333138636630393561303963346662383363 +34396538633362326364343631613163323134323866356336663635303663613937623834313236 +66643763636264396462616665666366663364666536316236343632646264646138366630306466 +34343134663939353161396263643434653662623539326362386463616537633637373365313765 +37316533353038623830326339356538633434376438623036613665343736333864323064376634 +39333265653861643037366361626562626534393030353839663661333261626634363534373063 +64303436303865316231336631373462636436613231343430643736353132306537666264393232 +66633161326630306130346131383138653431623466616431323866613361396663373639333832 +32303463376261383137356365333834396532656366326439353430343738383334663239626131 +65393430643331373162313163376164363734346533386336383431343061323066356466626133 +61363661393866326535313665336435363833613065623031316437643633323562303765646536 +64343731666139633134376230623334383338356165333665653234653665363139626235633838 +61386266656439306230396466346635383735333766333833343331313064616432373134383063 +33323763616266363264366432396266383637383933393534303166313730636639623665326564 +39383264376131333930643561306338643964636435663865336335653062316361626332353034 +61613336386338623566323162353764353934646437373536356335666662616231353333313939 +38636438383537663534346561653334656163326332623731633236353937653536333537666539 +37306430366235383536343633353634383739663335623564373938663938396135343762623930 +37353730393034353565393861346364333136626236656132613931343334623661333539613230 +37623838353163393936346636613838306335646430643635626233356265316665613438373762 +63613533313066376638323236376661326161633634363634363839646163343461333363396235 +66376465663130316537323634626135356538313931336436383636393833303831383539623562 +34333165346563643732616132323831346463633034613836366531386636353235326232616365 +65663261386434313639323731656439356439343232633564343832666333383739393439313265 +38343366313237636466306632306535333331616530363332646633396139616532366136383339 +39366230313863343430306237343239373033316132663131313731326634663264303332633733 +38366135613561313735353866386563643763653566646263356363623765363930653765643230 +30393336386565336565383937323834333932353364663430373333333365323365393664336137 +34376463346461386333333161383339356234646238353237333864333635373661646161373262 +30316531633365666461383536303564333863626436373230393031643435313039643336643236 +65333962353436373264313931353835643931633963623037303830623566393365316637386565 +39303035303136376664373365646636336638626637373666336165386562303430613833616236 +35646261396664353432323538383935306132383532316132643866613235313564646634653466 +62336233336432373036653036303864313062616662366331643638393363653665383538633638 +38373536303635616338633931396366613262643462366333313134613133626166386634393035 +61396533353038306266653662353334366533663531366131623030376165346261393237356361 +38323735623563626638393961303539323031323738393036623937646262336338633464656438 +66333164656239346465313339346539386637363438623539313230333265656339383062636237 +30373664303762303964383536636163656439373838663030636135613635303331623736346336 +30323639333037636561376163353538383365646463633165613635383231336131663830646465 +34626133353065373737363835373331376562653535333462313766633639336465646438323863 +39303165653465353934326530323434343264346261626537323832653630636133343136343239 +39356639336437646565653130376636306161343664646466346436396333333034343630333534 +30386134643733376234326664353932373530626337396137636530646137623232363836316637 +33353063616564353166313137613633393963363533663638383831373637373238376637666530 +37353435323864373934303033383831666466373464626531303962623861653765313532326332 +36623364396135636531313562323334303563656366343064646637613935306338363036316435 +63643435353165666432636663666335393564623265373730333738663433373864653730343733 +66393861633438353737396531666330613965306431303265353638383537383366313631616530 +32353765616334666534633330343961363331623238363664316165336632363665623964343031 +35363739613937303632376666613238663663333331623732393566303664393136336664633038 +35623037393831613261353966363461303665633630613963343666363231373966653563633231 +30316335643831386161383634613066353535343762353833633465373066626665633531316665 +31616465376462363363663164376630316131346337376132376366336137666462366430396563 +62333861336439613261663338343963306630323636363639343833613931373035336435663163 +63656435356431323661356363393961643837636663353439386634653137323230336530633366 +64643463303634393635636561633832633137383433663434336435646634323637333862643638 +63353461633435663562336365636362346137316633623538363730393534376636363839636462 +39323261656566383066643731316362316537396430353935653136643036666530623639303338 +37623232636639643237646331396231363561636438623931393930386264643463306666333936 +39396130636134616631653531346463303430623837386233363630306535646363393564373263 +35343239303434396538313739356132373765373434373933303937373532346538336232623262 +33356261323535663732306330386663643634393530613366663566316533626534643930623133 +33306631313038653730343663643538663936313139663865313661386662316662316230613931 +36653936616439613330616636303563333066386266373962343761623965353638326666303430 +63313437626238313166666435353830306461316637653638393037643562386362653961653162 +61303937333234323830656131323864656561383630663935313232336338333235396632303837 +32313866376535623739336434636362316133346564336636343863343838353030383762343135 +36326238623339633664663266653936653538633330323038396561303564623630303866303538 +39353130643536646631396464613438343763643032306364353930613361356230336634633964 +65393339353565613963623966323266376239663934333564656333643965343530393961623362 +37326535343262616165346437373233383664303934373139363466326236666366653631623035 +62323338346131323835623332663862376462616639636633343736656637656237633236653036 +65613537616461323065663935373135666431616138326234643834373064323539363231643536 +62396363383036373533386361363731623737633261346431303034376630306630653762396630 +30653134323137316336363763356430666637653661316334343939356534326161326132656534 +32663339313130666663336134663664326135666139396266363162363362343238653538653134 +38383666373938613939303164353332376231386563636531366334373137353166343934383336 +65633934626261386333613336303733373261323262316439626134333163623631306363383637 +36616366646565396438623438366230663437303031623365643464623061393430646232373731 +63303662613530306463653537623963643862626664653565623038613166613662666434623634 +31373363633062353532303066376466333030643635326464313335656166306137373164636665 +37643261316433633231323937656532393133383130323931636465366631373731613634653833 +63306435383630343230663230613563313736626439313730383866643961316236356161306534 +35346134316339353034633865363663623037363137343334323962623166396366666131376239 +64623835666565333939366365396664343236623064306363656364623533656537613833663032 +62313038643265643830646235626163323364616135663430306136323765316538396432626562 +33313763666666366431656630663730633563643836623162396237623337393563313962353662 +37623561633439643363393734643564353330393166373533656131633238343939633964656462 +64666662636264656663633237393937343033336435333064613765616666326262616465663136 +38366363646363373030653230366539353131653536343935346130633137646334356666383662 +65373465623833663632323862306634633764386335313965616265663664343334656461663664 +66316139346362393463336639396639333834323035323530326430643963386439313634353165 +64363036343938353765306465326637383165313839313038323738346131363139366336303132 +63303863336333316464323838363364343637316566623766303764313065393236336366373333 +31613536393365333731333563646136316366646666666236303931343761376561643065326165 +32303536303963323161306432663239356166326362623232363165303963333930333031393061 +34366336656535393137326133333738316633396462376566633366316637623237336666353263 +37613531633565623631373965623336343431643430366532663664653638663435346261336433 +31623561346664643038626431343530373564363834393434383564653938373132376364333735 +62613338303461383261356237633432326638306535373637393361393638633063376163343138 +63636263356631633762633366366430303963363366653934333238303461376462333930326162 +36653162333263326264326533306631393338343137356665626365373432333036313438376366 +35653432393930363462373134306362663831343335396535316639313430633938323064316462 +31393965663636316530663230663939666435653539386635656236613966393730656332636135 +64393865613866373965306461376530333134623539356139323137653866383632333135633765 +66303538393962376335616638313264393263396564356237653934386664616464336436613232 +63643532383735653834393636383762643131656239653034316437626363353732303864343461 +30636330626337323737633632643031363266663365383465663637376166613861366330306434 +61373664656564336237646130666361343662323262313039633438383139393236373338643836 +61616437333834303931376136666231663765306232386333346166656230316434633066376465 +36323166343163646535316137653731336636363165333364393566363764343565343761393064 +61353937643637316562316661326233633364626533386561363534636265613931306361373637 +61363238326463386161343064643061366364343566303737386464313034353063336666396530 +38663430366230353333323038333532346265383165373466373533616334636362376434326631 +38356133373932333761623134346662653261666138306339633732333531396138323864613136 +34386435323330653462626331653962396565666539636439333335393031653661666230303261 +33313564303430333037383234363639363835313531366437646662326133623235653730343330 +63306231613932356235356566333439326564363164396461306235383432303230383131666630 +61376663643962326630336466363536313933383134336266363136303162653166373437323166 +30333731653437353637323861366462363435333461633531316232316232383938363063376133 +33633037313937633733346238333336333833646230306165616538376333373864666331313938 +66306231333136376434633936663238643831373331303631356663303430316639636634613836 +61666433313433613930656163333538613065643066646631313031343533393234316236663131 +65336231653161613034326337353066343533613939336661613232343264303237356339353432 +32643034333266386332323061636335646435626463653533333565313565643135396439613433 +32323536353161356264323662303936306230313265653265323933343436313562303635386163 +34383636323061653532376536343764353737366264326336326335306664316162323930316364 +31333432363330633237613738373263646138653532353134653566383530613163313037643338 +65623564633135323236306436656431643563343830316365396635636239333837306136363539 +34333166336564323131376434383239376532356435613661643235383261613635313038363232 +36646230333230303465643262646533316435633662626138323963656234633732343436356239 +38653336633466393565626261366332373164653666346264346261306163353732376362323538 +39343762376431646362396364366665646134623638396438383235666461663463636332323861 +35643138326631613736323966616665646262393761353139623934666231626232666364346366 +37373832666632383238653564373861343833363437616562363234623236623830336133656132 +38623230626130393464643334313430383537363563373464353234376564346332346563623835 +35616263643861373761313331633563303466373766373336303132346139643266303966666337 +32373036366566336365393632346362623661366633376362333637653363643139306339623666 +62623136353565656437366232626238643563383961663435626339643263343032666665303935 +61643263343262376164353035376239386661646363643732393063323236626164643365383536 +39643931393562383038336233643663313339663661313837373439353664646630643535343236 +64306166396339343962363938303936663465653862663865643764366235613135323438373738 +33626366623738346461346131326464326564633664616535393934653235616337643533656337 +33343161386534666536383939303131376436666531656231396537646232636437393862626638 +39313634646238393331613237353333333563356164366261646136366664366464616235323731 +38623362653763623438376563326163326665626635663432353433373334383566366233346663 +30626435653836623337633961373463643162613463353131663464336136303430633664616631 +38343766333734306462383063313038626461323766326432316263663233626664323139333733 +38643662666330373163396432336365623838373633336266313634303333316232336139616431 +65613532373634353535323863346161666137646638356539343637373331353233396335356430 +31396330633031363430613033386265386131613032363335623833346361323865343933646565 +31623538306563626637663265373339666436376266343335373966326338616536663133636536 +36343734646532613131363735316431633634346339626339646233356236396335353432363864 +34323236333532613362346430373661373433636530376530626561616530306330303066303866 +31616338663263323239653065653931613135333563376434336264376231356438303961623864 +62393764343531356361656461333631373738633661623963393733613366336138363235326639 +63643630653532613337373766333966383031616130646338373863323639386566333939366135 +66356466343461306133373866323230643861386332633230656633623431623030646538363730 +36663763366166336534383533393539313036326630356634613632336562336439316361666662 +65383738643561356433633134633665633766346166613730326230313763393131326334643965 +34363964636464363665313265613936326635333434616338633965353139666465313738303164 +61353134303231643534333333386438653536363739393066663437323361363535396262613063 +37383634303865643030663438643332663031623862356530313635316134366337363337316562 +32623235373837316238613832303564356635356439653330613537313761663230353634333537 +64363634363137386335643863353763363162643830303434663536633761343837346338376330 +38643436396461343438656433666163376365333661643762613937613032333261323061303862 +61653432333333393236653334323433336531626631666263633731303533396338346361626537 +37383461373063333831333465396263373962363263366435333637663265623336343836616538 +30636634353830333531333034643237323064393733373862303865356539656464346263343730 +34663661383731636236326434316337623430366335343337666461363439663533663566346531 +31343262636663313737316138646464643065346332303230666338343561343863623866353262 +31343362626361613439363564386430343065303536333130376538346364346439383365646261 +61376338333561313662383338666630363831323436306531373437323839313831663865333830 +64343337643337396338663232623763343335636163646265303334343137326233663637633837 +62636434643431646131623965613731646335646230633530613364393538353034366534346130 +31646537363439653739363438623033373066666265353765313438393339653961363634616431 +33343838383937383333306537616433396532383763663335343262393933656232393833636666 +61613633333438326338343437366264333135373464376238373037383562386131393164633630 +65663135623036663861633839346466646665333763626266323532653937386635363332653131 +30646531323063626435373664393833373763356162336638633232356438396166323339613331 +35346637306361633630383066303139323436396364646337323832313965663430613834666331 +35316366373061626239663763323436633031366630663234356436643365636134643761643437 +37313864373433313938663136353532316662353962303533646361343463393938326263363961 +36303139393961333739636139663832323361373337636531316566633461313635663263653462 +62396130373235353562363861326563626365323138633830326466623362396534643464313737 +36393166333936626632373663613135613335626432366135356535323831633137333331643036 +37336331323735393566363961343939376238636530303561353266626334323564393735363234 +36343535666337663932623363336536613263663334666465393333353833643466383733373462 +32396332376239313936643761373833613865396138616235306437363062636265643333316232 +38663837363335646635343539376164636539303634363364366361346331643539306135636135 +34623831366134633734616634643834316564383565373363353039623762343238343230323433 +34376131633466663865623632323961646237333735323135643166373938626366353835613362 +61363362613638626161346336363632643631366139636431656361303130633763613838616466 +39633230376134353430633932623966313035613333393531646165393936366262396364663730 +34313033626437376235353865616265316632383138623837303339366637306337633563663365 +36386133633561343862633330326330656636633530376337353230633963323866613030383534 +39383032616462363839346161316238326662623130343738666233336531356637643863646665 +36376439633238323665393634643834396161303532626137333163663265626636303364623535 +61626435383236303231306465393537383035346161323136313030376432663731306431383232 +66356464346363396566663736336139626361613365393237353066616265363264316664393365 +31393833623039346430333463656661316637316232353039313465323665336337663366663734 +36316661366437316336323837626463373262343631363838316362316430646536666333333139 +32353838316562643536633636303838616530636364623539643862383763653761323836393830 +35366436316233303261313539663166646233323335353231323730323534326466653265633738 +66366637326563613935646539643430313333616236303539363537393236343433646665356561 +36316132663964613631383630653334373861303966376666346532633935616561383965313035 +32306364623963343763306361386135663833343937623462313438386535336332656330376139 +32313964663234663237333064303663633562316137376461623039323236336333393630376633 +62616466396332666666653931306131383336646561383765383966323138383638326563366233 +37666661636239373036663932346365343366666135336436346236306139323764366262313338 +34613531323762333737366134343237333063633937373763313166633665333337636635363363 +39613132613864306461313064643762363539623635396535643431373031363261346633623132 +32343638653939316562626562353837373662633938626364313866653431613465626235326262 +32356632313736376664383531633832663037363264386332636531663764306362346437323739 +31376364333931316639646631363464653264363032336433373733386163366166313539373436 +62346661313332623232396662363137303239343961353737363633356637333334383139636132 +66333236633135313837363337636465343331626661616536306263366530333832383431353134 +31333730313339646234333832306464303461336132653866666433613561313864333431373566 +37373637346235613132303664373830346636356534663231613437616430653263383866373761 +64343537653038326431626232343033656266303838376333633534323663383333373337313339 +62636634663861303136616263306238653536326565643231646232313332643939313966363962 +30306232313666623934616561376432663363636162393931633066386331616230343239626635 +32303931393334386331633335666166366562386439613432353634326430316334363333323631 +37616232643661353134343935376664303735616534316635346261323436633035663931633633 +39343835656166323438626539613137303133643261626132656535363539393331643364653336 +61633236313262623233646462643937326237613935636166616234643332353263663863313234 +62386633326237646364623466386330303362363431316639353330666531613934373032393335 +36656239373762353633333061646434336562303636386431643239613162336137363964363165 +61663834633365663538376562333066636463316538363866353765363539666436383965653931 +37316564373636333835663436633938343838386564373533343739623434323937343764383731 +64623033626639663064626333363934653637313633383939636136303732343361613337613732 +31646631373934643639666632343362373962353162356462323463623462653432306564393463 +31383436383834386162666339636238383438343062373432363063316231303661376437656162 +37326265343537643464336130353232333039383238323236313764626133356463653764343035 +61616534383439643733653137326538626561616238303233393263363632643035623735306439 +39346138663364316431326365383732386563666165366564373565333864383134636463623463 +63333262663139386138336330313662333033333966356363353365343330396662653864623962 +31373764636638623237616363303332303035303135646562613030323061336330306433383632 +33653566383539653534343133636162333334366636663962316166633237306239616638333531 +373863663339303338393032306362616637 From 61ea1447617c3d19e1a03332d77cf2f2b17146a5 Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Sep 09 2021 21:16:41 +0000 Subject: [PATCH 8/9] Remove unneeded TeleIRC bridges (inactive channels, Matrix bridging exists). --- diff --git a/roles/jwflory.teleirc/vars/main.yml b/roles/jwflory.teleirc/vars/main.yml index 06afca1..a6622d9 100644 --- a/roles/jwflory.teleirc/vars/main.yml +++ b/roles/jwflory.teleirc/vars/main.yml @@ -23,34 +23,6 @@ bots: imgur_client_id: "{{ default_imgur_client_id }}" version: "{{ default_version }}" - # Fedora "Ask Me Anything" chat - fedora_ama: - cn: "fedora-ama" - irc_blacklist: "" - irc_bot_name: tg-fedama - irc_channel: "#fedora-ama" - irc_server: "{{ default_irc_server }}" - irc_nickserv_service: "{{ default_irc_nickserv_service }}" - irc_nickserv_password: "{{ vault_bots.fedora_ama.vault_irc_nickserv_password }}" - teleirc_token: "{{ vault_bots.fedora_ama.vault_teleirc_token }}" - teleirc_chat_id: "{{ vault_bots.fedora_ama.vault_teleirc_chat_id }}" - imgur_client_id: "{{ default_imgur_client_id }}" - version: "{{ default_version }}" - - # Fedora Ask discussion (ask.fedoraproject.org) - fedora_ask: - cn: "fedora-ask" - irc_blacklist: "" - irc_bot_name: tg-fedask - irc_channel: "#fedora-ask" - irc_server: "{{ default_irc_server }}" - irc_nickserv_service: "{{ default_irc_nickserv_service }}" - irc_nickserv_password: "{{ vault_bots.fedora_ask.vault_irc_nickserv_password }}" - teleirc_token: "{{ vault_bots.fedora_ask.vault_teleirc_token }}" - teleirc_chat_id: "{{ vault_bots.fedora_ask.vault_teleirc_chat_id }}" - imgur_client_id: "{{ default_imgur_client_id }}" - version: "{{ default_version }}" - fedora_badges: cn: "fedora-badges" irc_blacklist: "fm-badges,fm-badges_" @@ -157,19 +129,6 @@ bots: imgur_client_id: "{{ default_imgur_client_id }}" version: "{{ default_version }}" - fedora_flock: - cn: "fedora-flock" - irc_blacklist: "" - irc_bot_name: tg-flock - irc_channel: "#fedora-flock" - irc_server: "{{ default_irc_server }}" - irc_nickserv_service: "{{ default_irc_nickserv_service }}" - irc_nickserv_password: "{{ vault_bots.fedora_flock.vault_irc_nickserv_password }}" - teleirc_token: "{{ vault_bots.fedora_flock.vault_teleirc_token }}" - teleirc_chat_id: "{{ vault_bots.fedora_flock.vault_teleirc_chat_id }}" - imgur_client_id: "{{ default_imgur_client_id }}" - version: "{{ default_version }}" - fedora_india: cn: "fedora-india" irc_blacklist: "" From ccac0d0720f4060b2be0b578f7f1caac86d0165f Mon Sep 17 00:00:00 2001 From: Tim Zabel Date: Sep 09 2021 21:33:07 +0000 Subject: [PATCH 9/9] Remove unused bridges. --- diff --git a/roles/jwflory.teleirc/vars/main.yml b/roles/jwflory.teleirc/vars/main.yml index a6622d9..e7bb2ef 100644 --- a/roles/jwflory.teleirc/vars/main.yml +++ b/roles/jwflory.teleirc/vars/main.yml @@ -63,19 +63,6 @@ bots: imgur_client_id: "{{ default_imgur_client_id }}" version: "{{ default_version }}" - fedora_design: - cn: "fedora-design" - irc_blacklist: "fm-design,fm-stg-design,fm-design_" - irc_bot_name: tg-feddesign - irc_channel: "#fedora-design" - irc_server: "{{ default_irc_server }}" - irc_nickserv_service: "{{ default_irc_nickserv_service }}" - irc_nickserv_password: "{{ vault_bots.fedora_design.vault_irc_nickserv_password }}" - teleirc_token: "{{ vault_bots.fedora_design.vault_teleirc_token }}" - teleirc_chat_id: "{{ vault_bots.fedora_design.vault_teleirc_chat_id }}" - imgur_client_id: "{{ default_imgur_client_id }}" - version: "{{ default_version }}" - fedora_devel: cn: "fedora-devel" irc_blacklist: "" diff --git a/roles/jwflory.teleirc/vars/vault.yml b/roles/jwflory.teleirc/vars/vault.yml index 09ba20c..cd14472 100644 --- a/roles/jwflory.teleirc/vars/vault.yml +++ b/roles/jwflory.teleirc/vars/vault.yml @@ -1,260 +1,218 @@ $ANSIBLE_VAULT;1.1;AES256 -38343838366366316335363836313139336263313137666661323033366461383738376634303833 -3561656563313461636166383864373331313531316437620a366439623637653565626435646532 -36323964623865356333623537313235653334383463353338666133646235383739303135653037 -3839643431623166380a633733373332643636633233616465343938343132303935666430646462 -63336535313261396632396330386230646638323830366362663864633336323132383436343961 -32323238616435303536653765373765316532643439376466303632646231386437323930343238 -61656434663863386664643835633031643663633962653332333336303131333632393830326266 -31353166666437613666343664623731383661376633613532396435373636326237303833613663 -65356466623366383733316238383032333730323539386330643066323763373130643463313239 -36643463313965363837306565663263616432313337616462353363396238653733393364626531 -32633032323135663339613237343832343637373530646661363666636161346265643634383865 -66636263656232326631306138636364636666633930323463343434666534366239383261346463 -39306363623130616338313732663036346533303063353962633632373634333332396134323162 -31396231373162353230393232383037383739616330306461656462666535316433356164383332 -66366135633665303239643665636139663563363939373839323034396537656330653836326537 -38393031656133636437363563333732653333383931643034613636316363323363626532363265 -39303738616139613732333630646465653638386337313061373236393730376663636438636430 -30303435303733326630373237393430383064343636376138616665636564626331303761336266 -65646135633162323633363131613465373961343263333138636630393561303963346662383363 -34396538633362326364343631613163323134323866356336663635303663613937623834313236 -66643763636264396462616665666366663364666536316236343632646264646138366630306466 -34343134663939353161396263643434653662623539326362386463616537633637373365313765 -37316533353038623830326339356538633434376438623036613665343736333864323064376634 -39333265653861643037366361626562626534393030353839663661333261626634363534373063 -64303436303865316231336631373462636436613231343430643736353132306537666264393232 -66633161326630306130346131383138653431623466616431323866613361396663373639333832 -32303463376261383137356365333834396532656366326439353430343738383334663239626131 -65393430643331373162313163376164363734346533386336383431343061323066356466626133 -61363661393866326535313665336435363833613065623031316437643633323562303765646536 -64343731666139633134376230623334383338356165333665653234653665363139626235633838 -61386266656439306230396466346635383735333766333833343331313064616432373134383063 -33323763616266363264366432396266383637383933393534303166313730636639623665326564 -39383264376131333930643561306338643964636435663865336335653062316361626332353034 -61613336386338623566323162353764353934646437373536356335666662616231353333313939 -38636438383537663534346561653334656163326332623731633236353937653536333537666539 -37306430366235383536343633353634383739663335623564373938663938396135343762623930 -37353730393034353565393861346364333136626236656132613931343334623661333539613230 -37623838353163393936346636613838306335646430643635626233356265316665613438373762 -63613533313066376638323236376661326161633634363634363839646163343461333363396235 -66376465663130316537323634626135356538313931336436383636393833303831383539623562 -34333165346563643732616132323831346463633034613836366531386636353235326232616365 -65663261386434313639323731656439356439343232633564343832666333383739393439313265 -38343366313237636466306632306535333331616530363332646633396139616532366136383339 -39366230313863343430306237343239373033316132663131313731326634663264303332633733 -38366135613561313735353866386563643763653566646263356363623765363930653765643230 -30393336386565336565383937323834333932353364663430373333333365323365393664336137 -34376463346461386333333161383339356234646238353237333864333635373661646161373262 -30316531633365666461383536303564333863626436373230393031643435313039643336643236 -65333962353436373264313931353835643931633963623037303830623566393365316637386565 -39303035303136376664373365646636336638626637373666336165386562303430613833616236 -35646261396664353432323538383935306132383532316132643866613235313564646634653466 -62336233336432373036653036303864313062616662366331643638393363653665383538633638 -38373536303635616338633931396366613262643462366333313134613133626166386634393035 -61396533353038306266653662353334366533663531366131623030376165346261393237356361 -38323735623563626638393961303539323031323738393036623937646262336338633464656438 -66333164656239346465313339346539386637363438623539313230333265656339383062636237 -30373664303762303964383536636163656439373838663030636135613635303331623736346336 -30323639333037636561376163353538383365646463633165613635383231336131663830646465 -34626133353065373737363835373331376562653535333462313766633639336465646438323863 -39303165653465353934326530323434343264346261626537323832653630636133343136343239 -39356639336437646565653130376636306161343664646466346436396333333034343630333534 -30386134643733376234326664353932373530626337396137636530646137623232363836316637 -33353063616564353166313137613633393963363533663638383831373637373238376637666530 -37353435323864373934303033383831666466373464626531303962623861653765313532326332 -36623364396135636531313562323334303563656366343064646637613935306338363036316435 -63643435353165666432636663666335393564623265373730333738663433373864653730343733 -66393861633438353737396531666330613965306431303265353638383537383366313631616530 -32353765616334666534633330343961363331623238363664316165336632363665623964343031 -35363739613937303632376666613238663663333331623732393566303664393136336664633038 -35623037393831613261353966363461303665633630613963343666363231373966653563633231 -30316335643831386161383634613066353535343762353833633465373066626665633531316665 -31616465376462363363663164376630316131346337376132376366336137666462366430396563 -62333861336439613261663338343963306630323636363639343833613931373035336435663163 -63656435356431323661356363393961643837636663353439386634653137323230336530633366 -64643463303634393635636561633832633137383433663434336435646634323637333862643638 -63353461633435663562336365636362346137316633623538363730393534376636363839636462 -39323261656566383066643731316362316537396430353935653136643036666530623639303338 -37623232636639643237646331396231363561636438623931393930386264643463306666333936 -39396130636134616631653531346463303430623837386233363630306535646363393564373263 -35343239303434396538313739356132373765373434373933303937373532346538336232623262 -33356261323535663732306330386663643634393530613366663566316533626534643930623133 -33306631313038653730343663643538663936313139663865313661386662316662316230613931 -36653936616439613330616636303563333066386266373962343761623965353638326666303430 -63313437626238313166666435353830306461316637653638393037643562386362653961653162 -61303937333234323830656131323864656561383630663935313232336338333235396632303837 -32313866376535623739336434636362316133346564336636343863343838353030383762343135 -36326238623339633664663266653936653538633330323038396561303564623630303866303538 -39353130643536646631396464613438343763643032306364353930613361356230336634633964 -65393339353565613963623966323266376239663934333564656333643965343530393961623362 -37326535343262616165346437373233383664303934373139363466326236666366653631623035 -62323338346131323835623332663862376462616639636633343736656637656237633236653036 -65613537616461323065663935373135666431616138326234643834373064323539363231643536 -62396363383036373533386361363731623737633261346431303034376630306630653762396630 -30653134323137316336363763356430666637653661316334343939356534326161326132656534 -32663339313130666663336134663664326135666139396266363162363362343238653538653134 -38383666373938613939303164353332376231386563636531366334373137353166343934383336 -65633934626261386333613336303733373261323262316439626134333163623631306363383637 -36616366646565396438623438366230663437303031623365643464623061393430646232373731 -63303662613530306463653537623963643862626664653565623038613166613662666434623634 -31373363633062353532303066376466333030643635326464313335656166306137373164636665 -37643261316433633231323937656532393133383130323931636465366631373731613634653833 -63306435383630343230663230613563313736626439313730383866643961316236356161306534 -35346134316339353034633865363663623037363137343334323962623166396366666131376239 -64623835666565333939366365396664343236623064306363656364623533656537613833663032 -62313038643265643830646235626163323364616135663430306136323765316538396432626562 -33313763666666366431656630663730633563643836623162396237623337393563313962353662 -37623561633439643363393734643564353330393166373533656131633238343939633964656462 -64666662636264656663633237393937343033336435333064613765616666326262616465663136 -38366363646363373030653230366539353131653536343935346130633137646334356666383662 -65373465623833663632323862306634633764386335313965616265663664343334656461663664 -66316139346362393463336639396639333834323035323530326430643963386439313634353165 -64363036343938353765306465326637383165313839313038323738346131363139366336303132 -63303863336333316464323838363364343637316566623766303764313065393236336366373333 -31613536393365333731333563646136316366646666666236303931343761376561643065326165 -32303536303963323161306432663239356166326362623232363165303963333930333031393061 -34366336656535393137326133333738316633396462376566633366316637623237336666353263 -37613531633565623631373965623336343431643430366532663664653638663435346261336433 -31623561346664643038626431343530373564363834393434383564653938373132376364333735 -62613338303461383261356237633432326638306535373637393361393638633063376163343138 -63636263356631633762633366366430303963363366653934333238303461376462333930326162 -36653162333263326264326533306631393338343137356665626365373432333036313438376366 -35653432393930363462373134306362663831343335396535316639313430633938323064316462 -31393965663636316530663230663939666435653539386635656236613966393730656332636135 -64393865613866373965306461376530333134623539356139323137653866383632333135633765 -66303538393962376335616638313264393263396564356237653934386664616464336436613232 -63643532383735653834393636383762643131656239653034316437626363353732303864343461 -30636330626337323737633632643031363266663365383465663637376166613861366330306434 -61373664656564336237646130666361343662323262313039633438383139393236373338643836 -61616437333834303931376136666231663765306232386333346166656230316434633066376465 -36323166343163646535316137653731336636363165333364393566363764343565343761393064 -61353937643637316562316661326233633364626533386561363534636265613931306361373637 -61363238326463386161343064643061366364343566303737386464313034353063336666396530 -38663430366230353333323038333532346265383165373466373533616334636362376434326631 -38356133373932333761623134346662653261666138306339633732333531396138323864613136 -34386435323330653462626331653962396565666539636439333335393031653661666230303261 -33313564303430333037383234363639363835313531366437646662326133623235653730343330 -63306231613932356235356566333439326564363164396461306235383432303230383131666630 -61376663643962326630336466363536313933383134336266363136303162653166373437323166 -30333731653437353637323861366462363435333461633531316232316232383938363063376133 -33633037313937633733346238333336333833646230306165616538376333373864666331313938 -66306231333136376434633936663238643831373331303631356663303430316639636634613836 -61666433313433613930656163333538613065643066646631313031343533393234316236663131 -65336231653161613034326337353066343533613939336661613232343264303237356339353432 -32643034333266386332323061636335646435626463653533333565313565643135396439613433 -32323536353161356264323662303936306230313265653265323933343436313562303635386163 -34383636323061653532376536343764353737366264326336326335306664316162323930316364 -31333432363330633237613738373263646138653532353134653566383530613163313037643338 -65623564633135323236306436656431643563343830316365396635636239333837306136363539 -34333166336564323131376434383239376532356435613661643235383261613635313038363232 -36646230333230303465643262646533316435633662626138323963656234633732343436356239 -38653336633466393565626261366332373164653666346264346261306163353732376362323538 -39343762376431646362396364366665646134623638396438383235666461663463636332323861 -35643138326631613736323966616665646262393761353139623934666231626232666364346366 -37373832666632383238653564373861343833363437616562363234623236623830336133656132 -38623230626130393464643334313430383537363563373464353234376564346332346563623835 -35616263643861373761313331633563303466373766373336303132346139643266303966666337 -32373036366566336365393632346362623661366633376362333637653363643139306339623666 -62623136353565656437366232626238643563383961663435626339643263343032666665303935 -61643263343262376164353035376239386661646363643732393063323236626164643365383536 -39643931393562383038336233643663313339663661313837373439353664646630643535343236 -64306166396339343962363938303936663465653862663865643764366235613135323438373738 -33626366623738346461346131326464326564633664616535393934653235616337643533656337 -33343161386534666536383939303131376436666531656231396537646232636437393862626638 -39313634646238393331613237353333333563356164366261646136366664366464616235323731 -38623362653763623438376563326163326665626635663432353433373334383566366233346663 -30626435653836623337633961373463643162613463353131663464336136303430633664616631 -38343766333734306462383063313038626461323766326432316263663233626664323139333733 -38643662666330373163396432336365623838373633336266313634303333316232336139616431 -65613532373634353535323863346161666137646638356539343637373331353233396335356430 -31396330633031363430613033386265386131613032363335623833346361323865343933646565 -31623538306563626637663265373339666436376266343335373966326338616536663133636536 -36343734646532613131363735316431633634346339626339646233356236396335353432363864 -34323236333532613362346430373661373433636530376530626561616530306330303066303866 -31616338663263323239653065653931613135333563376434336264376231356438303961623864 -62393764343531356361656461333631373738633661623963393733613366336138363235326639 -63643630653532613337373766333966383031616130646338373863323639386566333939366135 -66356466343461306133373866323230643861386332633230656633623431623030646538363730 -36663763366166336534383533393539313036326630356634613632336562336439316361666662 -65383738643561356433633134633665633766346166613730326230313763393131326334643965 -34363964636464363665313265613936326635333434616338633965353139666465313738303164 -61353134303231643534333333386438653536363739393066663437323361363535396262613063 -37383634303865643030663438643332663031623862356530313635316134366337363337316562 -32623235373837316238613832303564356635356439653330613537313761663230353634333537 -64363634363137386335643863353763363162643830303434663536633761343837346338376330 -38643436396461343438656433666163376365333661643762613937613032333261323061303862 -61653432333333393236653334323433336531626631666263633731303533396338346361626537 -37383461373063333831333465396263373962363263366435333637663265623336343836616538 -30636634353830333531333034643237323064393733373862303865356539656464346263343730 -34663661383731636236326434316337623430366335343337666461363439663533663566346531 -31343262636663313737316138646464643065346332303230666338343561343863623866353262 -31343362626361613439363564386430343065303536333130376538346364346439383365646261 -61376338333561313662383338666630363831323436306531373437323839313831663865333830 -64343337643337396338663232623763343335636163646265303334343137326233663637633837 -62636434643431646131623965613731646335646230633530613364393538353034366534346130 -31646537363439653739363438623033373066666265353765313438393339653961363634616431 -33343838383937383333306537616433396532383763663335343262393933656232393833636666 -61613633333438326338343437366264333135373464376238373037383562386131393164633630 -65663135623036663861633839346466646665333763626266323532653937386635363332653131 -30646531323063626435373664393833373763356162336638633232356438396166323339613331 -35346637306361633630383066303139323436396364646337323832313965663430613834666331 -35316366373061626239663763323436633031366630663234356436643365636134643761643437 -37313864373433313938663136353532316662353962303533646361343463393938326263363961 -36303139393961333739636139663832323361373337636531316566633461313635663263653462 -62396130373235353562363861326563626365323138633830326466623362396534643464313737 -36393166333936626632373663613135613335626432366135356535323831633137333331643036 -37336331323735393566363961343939376238636530303561353266626334323564393735363234 -36343535666337663932623363336536613263663334666465393333353833643466383733373462 -32396332376239313936643761373833613865396138616235306437363062636265643333316232 -38663837363335646635343539376164636539303634363364366361346331643539306135636135 -34623831366134633734616634643834316564383565373363353039623762343238343230323433 -34376131633466663865623632323961646237333735323135643166373938626366353835613362 -61363362613638626161346336363632643631366139636431656361303130633763613838616466 -39633230376134353430633932623966313035613333393531646165393936366262396364663730 -34313033626437376235353865616265316632383138623837303339366637306337633563663365 -36386133633561343862633330326330656636633530376337353230633963323866613030383534 -39383032616462363839346161316238326662623130343738666233336531356637643863646665 -36376439633238323665393634643834396161303532626137333163663265626636303364623535 -61626435383236303231306465393537383035346161323136313030376432663731306431383232 -66356464346363396566663736336139626361613365393237353066616265363264316664393365 -31393833623039346430333463656661316637316232353039313465323665336337663366663734 -36316661366437316336323837626463373262343631363838316362316430646536666333333139 -32353838316562643536633636303838616530636364623539643862383763653761323836393830 -35366436316233303261313539663166646233323335353231323730323534326466653265633738 -66366637326563613935646539643430313333616236303539363537393236343433646665356561 -36316132663964613631383630653334373861303966376666346532633935616561383965313035 -32306364623963343763306361386135663833343937623462313438386535336332656330376139 -32313964663234663237333064303663633562316137376461623039323236336333393630376633 -62616466396332666666653931306131383336646561383765383966323138383638326563366233 -37666661636239373036663932346365343366666135336436346236306139323764366262313338 -34613531323762333737366134343237333063633937373763313166633665333337636635363363 -39613132613864306461313064643762363539623635396535643431373031363261346633623132 -32343638653939316562626562353837373662633938626364313866653431613465626235326262 -32356632313736376664383531633832663037363264386332636531663764306362346437323739 -31376364333931316639646631363464653264363032336433373733386163366166313539373436 -62346661313332623232396662363137303239343961353737363633356637333334383139636132 -66333236633135313837363337636465343331626661616536306263366530333832383431353134 -31333730313339646234333832306464303461336132653866666433613561313864333431373566 -37373637346235613132303664373830346636356534663231613437616430653263383866373761 -64343537653038326431626232343033656266303838376333633534323663383333373337313339 -62636634663861303136616263306238653536326565643231646232313332643939313966363962 -30306232313666623934616561376432663363636162393931633066386331616230343239626635 -32303931393334386331633335666166366562386439613432353634326430316334363333323631 -37616232643661353134343935376664303735616534316635346261323436633035663931633633 -39343835656166323438626539613137303133643261626132656535363539393331643364653336 -61633236313262623233646462643937326237613935636166616234643332353263663863313234 -62386633326237646364623466386330303362363431316639353330666531613934373032393335 -36656239373762353633333061646434336562303636386431643239613162336137363964363165 -61663834633365663538376562333066636463316538363866353765363539666436383965653931 -37316564373636333835663436633938343838386564373533343739623434323937343764383731 -64623033626639663064626333363934653637313633383939636136303732343361613337613732 -31646631373934643639666632343362373962353162356462323463623462653432306564393463 -31383436383834386162666339636238383438343062373432363063316231303661376437656162 -37326265343537643464336130353232333039383238323236313764626133356463653764343035 -61616534383439643733653137326538626561616238303233393263363632643035623735306439 -39346138663364316431326365383732386563666165366564373565333864383134636463623463 -63333262663139386138336330313662333033333966356363353365343330396662653864623962 -31373764636638623237616363303332303035303135646562613030323061336330306433383632 -33653566383539653534343133636162333334366636663962316166633237306239616638333531 -373863663339303338393032306362616637 +66326566336161343834626336356163623762396439623133393838626633383861323665393237 +6435316231636365373864643438373032343733313437620a356461646437373439386261393036 +35383134623239656665326230613661653063333634626662396264623038663431653265633130 +6235623333393133610a646332326666343432386139353235643336353965666337643266396661 +38363631333438386434313432613437316165373835333038313038336539303631613636633638 +34366633663031366362303738633065353237623034333130613261363539306666663230343032 +37626633343863656638313230653864653265376131643862376439323063303735393335623437 +32396265643661633137323265353464323534373966666631393462393662623335323937323233 +38643637616333613836393831666662626536643839383832373938303836313862313438326131 +61336637643561386331316162303265363837636165393235346239613162636563633633356532 +30336261343163346330393532333262616465663230383133633331613661623433386435376161 +34643339653266326166383731656337643234303337626262653666323134323434303137633133 +35633431633363623032336638666161333936323538303439653338333536306134646336316463 +62356236663235653832323933373065343161373565623165393631623730376635666637373864 +37383632666166306239316461356139613339623131636466643832373261633438333132646335 +32306565316433653532333535366663323433383232343863613530346432373030343139346630 +65353063343265323332633061633739363034396234633935653938333130616430363530366162 +65383432393334633937623239303734626566653132363131646166363638623065326236633739 +38303062383534323238626637663463386334363837393163633763656166326631336365323264 +34396637376162353738663634643936383230393530623865323039323534633339366232626638 +66326431633334373565303535326534646533363466623039383635393230646631633535623761 +65626238313963616263626262653635626664316563366530306462343434396632333435313632 +38636138333738393561646665323764393930363166643266633562653231393862613437653538 +33353237376638323061633034646533333561666362303038313664376135323430343332336335 +38613437633633623835646431323063326139636531343263386636646362646237616437316432 +39663838643661376233333037356163383233323037643261666231326139326230356665613564 +33343735386439383535643432366438383735313862323463306364333937303861656462653265 +36373662653933663532663464346231343766323135646638356531386131373166393966623666 +36313234346462643865343864653136363061366565653033346662623933646130643663613761 +66346461376136613063633430313864323363313865396236323163613632653434343635323431 +35643363656464666339396636386436316334303331363863363135616430666135646137303934 +35366232343432616364383034333266333535303234323964343738336535383164643238353361 +31303732613662393039373839316238353765613263313137333535323133303732363639633266 +64646664623239616336623935333534633666396663653933383265326536626262323033613234 +32373662623139636432333936366235343036653266616339303438393863393764626135653139 +35653065333435373533306539656231323262616661336161353861653138353266643134346136 +33353235303539343730653561356534303730353366396161666530383636366133613335646533 +30613861346562383362393266313365656466326234306139333662663566316336363439396437 +64313361643336396432393066653938383665376236343361616664663432643861393666306430 +30383966336533333366323961376466656632353731636333643035653838363035333432643733 +39393562623931666336363434363264303431363938313035393266303431383235396239613865 +35313164613232663333313934663863346231393864336534653565303330373035343232323338 +35393832363864353666666537313032306236623934333339323238616566396231643639336463 +36303465323537323439323139313130623734323333303338636338323535343539333131303464 +62396630313666626133346630376364313033326433333562386630393435643934373632383766 +38343432356431653735343537663030643863356362663230336233336635626537653531326266 +31616630353435363630396537343362393938383835396330326239643439313337356235333739 +36623065336666383930376565396336356633303033303737666237376665616462366432363334 +35633034633533313561633261343262336238346663316164663966633433653531376330653638 +34393964623635393934633264643133366465643065383430656439343536333631616462313561 +32626530333934616437303533613265346334656461633336613666663631613737613835623034 +65653037393133306239633030613662343039336462373239356564303437386630666235616565 +34653662363737666265653961336561306534663938343666373662376139333561373663383131 +37623534303534653631363363666565353533393364313234656631613130623431313533356130 +36323531653537613963636338326437373362643934366433616366386265646433333766373638 +34343037646638626661353632306666636431636535616563393732313761653962653131353063 +39643938636632346662633864323164396266633461636234373765363037373362353434336266 +66346438633863353134336361623165623062336437386561346665373062353433666661326462 +63623535393536393766323535653066613736376435626639663337353238363164633938626231 +66343131333531316438396630366633663263323131653234613336383937353231663164303839 +38363231633435346130373166646561303461633962666339643263653063663237353166346265 +65313863656534623061366463666432613865313138396639666265646466393638383232336265 +64386162626366343435623732633162336365636262333233303866663862313938303561643766 +63313463303666646135396632666633333565323663313432623538386164356366326433356439 +32393035623137316137356134373231303932366637396636343337663235613230633931303066 +39663936373530363733626239313134373033333065313565633639316462333265326366323035 +62653837363434663039346339363133656231343965366531356565613538626566396438636435 +36376637623565643863396438316663613962313662633634633666383563633034616165633239 +64363438393339376163653262313361653430343164633863303934613834643938633130366130 +36343632376635326132336636663634323230326162303539643531303663613238663436656363 +31623831393565646465303131383963366564323439353064383863656337333262313464373962 +65333065323664393463313739653131613430333764393039666636666265316436303735666466 +32343438323439663161663661306436376638623631326664363230623861363936346336623833 +33666537373930376433386236336638656364333363336132653363303137656562646532326532 +32373764376437646434666539383235646530643164326234336132393561386431623636663862 +36326238326462626164646239333463363731393435326435636635636632373434653234613636 +32396439623132653337633062336266646462393636633765313437323339323461376436336236 +61303838656562303363646431633866646561356531383332353534636331313835616631376432 +31666231393266386564333263393939323063303839653961316439333537353134316564346632 +35663431613636613561363835623537663834336463373832633834363665636338653831623266 +66366137306564383330373630623638343037353932326564653832333033656431313766323863 +31346561356562313564623331323935643565663835623264383635386536313539323765373431 +37303565613163333262653638336333346362346233373338343839633833323934656333613431 +32373438663061336138383463393866643930363834363130646330653233643466316138326539 +32616438613735363762633861643438383137613161363833313333663764653436373331383934 +61366335316137316662633138666565653936373365376333613430626539343931633330636630 +39353238656630626264643232666530366633316165663738306439306663333433613335316561 +30643162323965653466313037363630376166303933623965626434343765653739393631613565 +65366231303035656637343432356332303838313363313930323533663133663965613132653163 +36633139656432653236373035663237356564346165653636663661643666626639393263383965 +30666338633963653461613564653066376165393637316531633832663762643239633932343864 +65626139623961353432313039643034373161303964313934336539653533323036643262383764 +36303536383533366162663630643132366166336334626233653038343464663838306265653064 +35626565613037646463663231393066383139643033393838343632646663346162326165663435 +34636531376437303861376364313234323031343938386436316236616262343432653933653761 +39353362653266356239636462346631373963313331313563366334313336663639333866663636 +34306638316435366361333636383361376334386262633661346531663162303837303437313064 +33653034306561356432363264306366663865346432663039366134663365613534666634373164 +36626239663735356265666335386261663232373932313534363264643532323362333361336135 +36613735326138376334303066633836393139396131653831353037626535616135383861396431 +39393365636161633931343965666366656166633165303235333837613034333361633961633061 +65363632396535373131303166363335346130373661346639656265373339396231323937383835 +35373366643831623731616335623437336436333637616538643662613539373935356161316137 +38623662353165383031346532333735303533393663666462613637646264316332323337306433 +38613630366466343161643366383765343361666261383836663166393532313066613930626363 +39386534633934316664623032303632613836653732613861303035633532373731653664363231 +31363561613330316538393032623031666131346332323633383830306434326237613634383361 +32326663353536373238666330343564323638386137376566663736356265643836613866363233 +39663232313761623331343134633538373162616536386361323863323837303861336261663965 +37323639346630343364643331396433656235383964366363313861626563343731633861393537 +65623737643330663132366264383964633531336430633165626466346432326363353536363262 +63373031666465396535303839623061396330383232393231386431336165363136363563333138 +65376363383935646233333735343662356535366562363563616435386563643666356263323630 +64366661623838303738633637303134336561633132383163663334333634366637356563623462 +38323263303737663039633939613737646365663931373334616439303363313936313730373431 +66633230666663363235346534306538323534633066636365373230633539353236386335316164 +34323731623031646331366263643132306232323936333166653939633134623239643232396136 +30333831396365366436336662643939663363636634613464363565616632656362396239336661 +32656433383830373931343237326538623937336662633838356565303061616539656537353938 +32323064313065613430653139393261373538333338663330623637343832656464663466346131 +66656537323137656164393236333339656461646531386163393432613932323162303061613933 +30363863373063313432306465353564343830626461333364383265383533616462623165366439 +35373138656332613765326339323962323038313436306339343937373962646665333666653639 +62653834356632616263303035616632333863353136373738636264613839656363393666613633 +66656331366265386139333630636535303535326137623237376563373037613535396566326636 +66333135323737373838653965636165343661636331363435383637363062303761306631623563 +33373534346461343535323838626236623139646137333439313337613866666337363036333065 +32653562316463653734666234616562363361373862393966346533613264306532626133306537 +62316339306239303862373061313533306636376364333333343734303262346264356633663862 +37373864636565393137363864356636316337373834353132393233316465396333643964346331 +63346265656463613565646536656235323139313837616436663638356665623836666332323133 +31346364323834353761303338373531373330626139653537653863633235386638386332646564 +35343636613139313836646136373234636338303134613663616632323139633662623361396530 +39333130323938653631386362323735323039343863613931663931313338306462313332386533 +35313863636338393537373837323234613438633362383965613337353162373039323135316430 +31333434383538343931666131626333323739633530393432623966313131303064653135323864 +30623737633638373933396634313335333038613837316238643765643863613636653130393566 +63616635313362306632643965646631353262626335663831646562313262666133636164623430 +30633834653532356138343534653135393564303961643432393139636336613163363831333732 +35353838316264353135326636343833346631353339626330616338303335656565616230613438 +36313534623465623030333538303664313365363230303732316139373933343666373534336434 +31653164623337333537396630346363376331656134353534393730386235303164343235383265 +32366630356531666663343339303235316432303639363164333462313934616533613639333430 +39613266366463326137333830353032323034373439373138393139616239313766653435353739 +62386436636333623431633766383361633764623362666162646263623735323366386635646533 +39383765353362333265323566323565356461353331616637623237373930376465363835643338 +36393461323265333563393366333935346236323266636336626465326564343330323565393236 +62613737316365653838333436643962303736323935643437363138393332303734656262626236 +33326132653266653836383164363036373633333133323062613730366137666130353034333237 +33353239393538303362313063326333636631356130333331336466353938353437373932363065 +39666335626432326239653166396664356430636236306539363465373636656338363636633165 +62393539383661653961333063353264626136386139303332333164613631613361613133613530 +65653235616137666234613230376638613735643938633438356135323733353164356639653163 +33373435613437323631383437616362666431613236643437333931613737646464346265656439 +62303530356437323132353630633263323731323864383837313432663964656338353331336139 +61373863666330333163353739656130643638373230393462656133343963336436623833323463 +36636563343639646631336233646131616138623930623334656563303661653664313264653735 +65653366356331316233393636336236663163373066353632343837646463366333323139353737 +37616666643465333032623932343833613662306532353538653934373938656630333765363035 +37323965623835323830636338313664353138653630646137636234666262376233316563316131 +63313538623631326365383538643239393236356566636665333935303031376433383137343330 +64326332393638313763663665343261383766636635316532376636653065646432613064363864 +65383130656365383431663131343361393064663861393233336539393262313138616137653563 +39386662643036653362323834666437383537323464643635666239366166353035616435313038 +35633535366533393636653966306139396232663937666363303731346530393766376536623666 +65633034386438653161633061633833316539323466343863653136633339626534653839306561 +39306436346536363261386161393364663034336131373239343834326333356261393664396466 +35306630613665316338666662366462616339343738613236386238643161316634323165306362 +66393531626366373436633738323462306666663865323930613031653738663066386266666465 +66303963646562343661613939623836633633323934386434353666363461663366336161313235 +65663534306264363436666330663466346264356462303964646236666163376533323039366232 +33653339363530316430376631636431656432336632363634373334373662346164396631656633 +34303332663538383131623361303930623234613066636130366432303963313532353565323766 +66353633613430343735653964333062356164353932663730356165353365316536623262623037 +66333637346464386438323231333631386164663364396434643261346564313733656331366131 +66376233383265663765663834323665336438623236346662666439306434376366373661613065 +64373536313664613836303561393563386635366130313836656263386237636163626138303562 +61373035386232313666303738643330346432343034316432326264306132373237386234313839 +62623362356637636634663462393461306266306136323033653931333366373365306661663363 +63323736336665313938616635333136373236636661346666636339616238336337323237653935 +65393033643362663536373032323438393732353063343466646135643637316662333731363364 +32306565633761373265323035636233333432373661643332343164633864306466343630646130 +32376136613631626632613163623134666332626434313336393233653664396665373938303963 +35633164666338653338663935336134373335313564373631623964383131636435373936333461 +30313938626465623539333336346132666532353264616439343434383464356139613439386464 +37343934356433646530323464363630363938326537666365356439623866366163643437333238 +64333431616266373738633633313661643234663438373334653337613364303665666662613765 +62626339363432656537646533616634643930623466363038323534366333323862393833363764 +37366165396433376332313831663565366333366565386337363766656538313662616335383836 +33616162353764646139656534353238373438353735656133313038653439313533636433616432 +34646462666238353961656231393435643334356165383565623432393031343062373262363935 +64366234373131303234303133623437663561356365633033393338333636626439363436383861 +37323035336561366266393734646264353334363633663563386631313435376666663364333436 +63306135376333316230333230623836656162363332623061663333616661343330666362336338 +38383837646664356164353961656561366366376136393661386235613532313563333135663532 +34633633326233313139616266376363316638616536313364346265323930393136376563323334 +39666332306338636162373935643264316263383864643531626131306437326339303835306335 +35656462626238336532656365323133343334623435356533633530613530313533656561653138 +32383530323762313564653230643462313837363263333430633562623766613261646436303836 +37326461313536353537393766333632353563346631666338366464396337343739303736613038 +30623066666139333662613534366564636534323063646339363961373164623034303739646161 +63663138653239376132323135613334643564336239306330633630353238313264363334383662 +34306364363930646532343434653435396563653234396235376234643364363962333233373236 +32303265646638393661353837356333323962636439396332633432313731303361396261663262 +37626163643461326464343664613539386631393562656166613538316131646336333630616530 +39373336663763343136323037646431373038353830656363346636663835613831623264346437 +65306463356634663832633238376332666438303436313436626461376131393766623931626266 +35653065323465373836353563643930393739663231316263623234623233626236356533323032 +31623731396638303236626562653133643763356632383238643434333136336633353264656165 +62323933663232333963626330363261636332333036356236623133323030613332363032323835 +65616438616361663331333863653964626230656136613165356338363630386561313939323365 +38306136323766643131616463336536623062643035363330326534356135323162663330636331 +39653137363533306639346433663033306363653038373934346338636165306337656333336262 +30373134646334363261336165613264323733623934353565366334346439326534646135343762 +38373931646266633334316230636338326232313963303933623263323234636563323632623863 +65633162343239353732623234343931383962323865623036663533313536643231663531373030 +39366530613333653535366232663030613630646134636637363762616364323539