From 8a225f8fdadaf7d77a8bb6acdc4001549a854984 Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Mon, 10 Feb 2025 23:00:03 +0100 Subject: [PATCH] ansible: configure DHCPd for domotica (pennestaat) devices --- ansible/inventory.yaml | 12 + ansible/roles/domotica/handlers/main.yaml | 4 + ansible/roles/domotica/tasks/iot_net.yaml | 35 ++ ansible/roles/domotica/tasks/main.yaml | 32 ++ .../20.pennestraat.sigsegv.be.domotica.conf | 1 + .../22.pennestraat.sigsegv.be.domotica.conf | 1 + .../22a.pennestraat.sigsegv.be.domotica.conf | 1 + ansible/roles/domotica/templates/dhcpd.conf | 30 ++ ansible/roles/domotica/templates/pf.conf | 15 + .../templates/qemu.sigsegv.be.domotica.conf | 1 + .../templates/qemu.sigsegv.be.settings.py | 316 ++++++++++++++++++ 11 files changed, 448 insertions(+) create mode 100644 ansible/roles/domotica/handlers/main.yaml create mode 100644 ansible/roles/domotica/tasks/iot_net.yaml create mode 120000 ansible/roles/domotica/templates/20.pennestraat.sigsegv.be.domotica.conf create mode 120000 ansible/roles/domotica/templates/22.pennestraat.sigsegv.be.domotica.conf create mode 120000 ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.domotica.conf create mode 100644 ansible/roles/domotica/templates/dhcpd.conf create mode 100644 ansible/roles/domotica/templates/pf.conf create mode 120000 ansible/roles/domotica/templates/qemu.sigsegv.be.domotica.conf create mode 100644 ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py diff --git a/ansible/inventory.yaml b/ansible/inventory.yaml index 37855e5..a985639 100644 --- a/ansible/inventory.yaml +++ b/ansible/inventory.yaml @@ -5,21 +5,33 @@ domoticamachines: ansible_port: 2400 http_port: 2480 ansible_host: kosmos.sigsegv.be + pf_file: "pf.conf" + lan_ip: "172.30.2.1/24" + hostname: "qemu.sigsegv.be" pennestraat20: control_port: 2401 ansible_port: 2401 http_port: 2481 ansible_host: kosmos.sigsegv.be + pf_file: "pf.conf" + lan_ip: "172.30.2.1/24" + hostname: "20.pennestraat.sigsegv.be" pennestraat22: control_port: 2402 ansible_port: 2402 http_port: 2482 ansible_host: kosmos.sigsegv.be + pf_file: "pf.conf" + lan_ip: "172.30.2.1/24" + hostname: "22.pennestraat.sigsegv.be" pennestraat22a: control_port: 2403 ansible_port: 2403 http_port: 2483 ansible_host: kosmos.sigsegv.be + pf_file: "pf.conf" + lan_ip: "172.30.2.1/24" + hostname: "22a.pennestraat.sigsegv.be" initial: hosts: diff --git a/ansible/roles/domotica/handlers/main.yaml b/ansible/roles/domotica/handlers/main.yaml new file mode 100644 index 0000000..08ecf9a --- /dev/null +++ b/ansible/roles/domotica/handlers/main.yaml @@ -0,0 +1,4 @@ +--- +- name: "restart igb1" + command: /etc/rc.d/netif restart igb1 + become: true diff --git a/ansible/roles/domotica/tasks/iot_net.yaml b/ansible/roles/domotica/tasks/iot_net.yaml new file mode 100644 index 0000000..015887c --- /dev/null +++ b/ansible/roles/domotica/tasks/iot_net.yaml @@ -0,0 +1,35 @@ +- name: Install isc-dhcpd + community.general.pkgng: + name: isc-dhcp44-server + state: present + become: true +- name: install dhcpd.conf + template: + src: dhcpd.conf + dest: /usr/local/etc/dhcpd.conf + owner: root + group: wheel + mode: 0644 + become: true +- name: dhcpd enable + community.general.sysrc: + name: dhcpd_enable + value: "YES" +- name: dhcpd flags + community.general.sysrc: + name: dhcpd_flags + value: "-q" +- name: dhcpd conf + community.general.sysrc: + name: dhcpd_conf + value: "/usr/local/etc/dhcpd.conf" +- name: dhcpd ifaces + community.general.sysrc: + name: dhcpd_ifaces + value: "igb1" +- name: Start dhcpd + ansible.builtin.service: + name: isc-dhcpd + state: started + become: true + diff --git a/ansible/roles/domotica/tasks/main.yaml b/ansible/roles/domotica/tasks/main.yaml index ec1c339..76eecb4 100644 --- a/ansible/roles/domotica/tasks/main.yaml +++ b/ansible/roles/domotica/tasks/main.yaml @@ -1,2 +1,34 @@ - name: domotica import_tasks: domotica.yaml +- name: set subnet + community.general.sysrc: + name: ifconfig_igb1 + value: "{{ lan_ip }} up" + become: true + notify: "restart igb1" +- meta: flush_handlers +- name: gateway enable + community.general.sysrc: + name: gateway_enable + value: "YES" + become: true +- name: pf enable + community.general.sysrc: + name: pf_enable + value: "YES" + become: true +- name: install pf.conf + template: + src: "{{ pf_file }}" + dest: "/etc/pf.conf" + owner: root + group: wheel + mode: 0644 + become: true +- name: unbound enable + community.general.sysrc: + name: local_unbound_enable + value: "YES" + become: true +- name: iot_net + import_tasks: iot_net.yaml diff --git a/ansible/roles/domotica/templates/20.pennestraat.sigsegv.be.domotica.conf b/ansible/roles/domotica/templates/20.pennestraat.sigsegv.be.domotica.conf new file mode 120000 index 0000000..231f0ff --- /dev/null +++ b/ansible/roles/domotica/templates/20.pennestraat.sigsegv.be.domotica.conf @@ -0,0 +1 @@ +domotica.conf \ No newline at end of file diff --git a/ansible/roles/domotica/templates/22.pennestraat.sigsegv.be.domotica.conf b/ansible/roles/domotica/templates/22.pennestraat.sigsegv.be.domotica.conf new file mode 120000 index 0000000..231f0ff --- /dev/null +++ b/ansible/roles/domotica/templates/22.pennestraat.sigsegv.be.domotica.conf @@ -0,0 +1 @@ +domotica.conf \ No newline at end of file diff --git a/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.domotica.conf b/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.domotica.conf new file mode 120000 index 0000000..231f0ff --- /dev/null +++ b/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.domotica.conf @@ -0,0 +1 @@ +domotica.conf \ No newline at end of file diff --git a/ansible/roles/domotica/templates/dhcpd.conf b/ansible/roles/domotica/templates/dhcpd.conf new file mode 100644 index 0000000..cb03691 --- /dev/null +++ b/ansible/roles/domotica/templates/dhcpd.conf @@ -0,0 +1,30 @@ +# dhcpd.conf +# + +# option definitions common to all supported networks... +#option domain-name "sigsegv.be"; +option domain-name-servers 172.30.2.1; + +option custom-lan-0 code 43 = string; + +default-lease-time 6000; +max-lease-time 7200; + +# Use this to enble / disable dynamic dns updates globally. +#ddns-update-style none; + +# If this DHCP server is the official DHCP server for the local +# network, the authoritative directive should be uncommented. +authoritative; + +# Use this to send dhcp log messages to a different log file (you also +# have to hack syslog.conf to complete the redirection). +log-facility local7; + +# No service will be given on this subnet, but declaring it helps the +# DHCP server to understand the network topology. + +subnet 172.30.2.0 netmask 255.255.255.0 { + range 172.30.2.10 172.30.2.200; + option routers 172.30.2.1; +} diff --git a/ansible/roles/domotica/templates/pf.conf b/ansible/roles/domotica/templates/pf.conf new file mode 100644 index 0000000..1d64404 --- /dev/null +++ b/ansible/roles/domotica/templates/pf.conf @@ -0,0 +1,15 @@ +#!/sbin/pfctl -f + +#set timeout tcp.established 86400 +#set block-policy return + +set skip on lo0 + +ext_if = "igb0" +int_if = "igb1" + +scrub on $ext_if all fragment reassemble reassemble tcp + +nat on $ext_if inet from ! ($ext_if) to any -> ($ext_if) + +pass diff --git a/ansible/roles/domotica/templates/qemu.sigsegv.be.domotica.conf b/ansible/roles/domotica/templates/qemu.sigsegv.be.domotica.conf new file mode 120000 index 0000000..231f0ff --- /dev/null +++ b/ansible/roles/domotica/templates/qemu.sigsegv.be.domotica.conf @@ -0,0 +1 @@ +domotica.conf \ No newline at end of file diff --git a/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py b/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py new file mode 100644 index 0000000..976dd4f --- /dev/null +++ b/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py @@ -0,0 +1,316 @@ +$ANSIBLE_VAULT;1.1;AES256 +61336133613766316637383136326133646639623730323262613461663734396535626536613238 +3364333932396136316265383165326165313034613635620a633935643336393166313866633832 +63613737336336363364646362306230363166383730663339373265326533363465373933323734 +3934633738633835620a373662626362376234363232333033666138353165643335353438663136 +33653737613734396631643838326431626533393064393663383237366432666334396432373739 +61323635356162626633346330393634656438626438313231393065363236383330323136353065 +66646438393763643364306361333035383066343137353733316334643137613231346565316366 +65313966353962366331646361613761353239396337356639393562383330666231636666313832 +38356566356336363761396663646631623739346565356633656132643438306539363464333635 +39643262323832613333396335343464633362336532633064323834666330663562353330623835 +63396639356630356336653864666632653764346632333462353634663530306434336237653365 +35356432323965383630353637646137396330366364353331326236623736326530396362353765 +64663539303439326434333038396135383233313937306130316163623537633438636532663464 +33306565396431616432643039356465386433333630326235376364663661303932306535343831 +34323832653435333539366532663465393361323933636639633166623133326462333238643262 +30366233653831313864336136643965366134323166383839663438366563343534313831656363 +32623361646165386661633436646138396230313265646638333537303534613037656264656536 +34343230346561343232643431316163363134323661303565663464333763313036643863633131 +36373664613131353235373539306538303031646163333361363031343462353862646433363936 +35646237336234393766343463626566623131616634666662396533636535313466616639393636 +64333364316462623165613536623937313337643030306331353930323237363238303335363230 +64326166643765353163323430313663626533353433633365323461343766386232313730613438 +30353735366530356232333363636531333730326364613564393830346430333639666166643532 +65663263363539316365346338643062393366383261626665333130636138363765386164613430 +36313034363964383762326337366436383831383032356536636531373539343161313132353763 +37646532386666376236383765636332373361623637663431363262663061656534663432646162 +30303165623734396565356232336336663464613939383332633766653839393562353435386363 +35666136306133303933366564393666373238626433353530616263663333346162363132393431 +39366430616530613465636630306632326661373231643166313730333437333161653433376263 +65393462373063653335323564393061616263363361666661383237643966646639663836346339 +33613937356464376237373264373336303337393764373862316163363066646339303663363133 +36393034353831323463306638376463666465343835346336613135653334346239653961366566 +33363139396161316539323237353639626537656365383733363837386632303833353433356666 +65326261323530373237633361366339613630653630383862646266393931396531303861323865 +36326531383336653663633564363866373439396130666130626531353331383962353831373030 +34303765376364346465653666326462623437343931656561613339323830333965663662353432 +30303862663832363538366661306333353035383438636163633531613432323435626132383534 +31313733343539323430613863643034663735303032396562666134663035653363316362363161 +35653331633362646333366535303565363861313631623635623733646335373664613837343637 +65623438386563393432396636623636663930356263323031353531336531646432316562356265 +31663561643035313330343330666266373735396538333939323631306435633639373733626335 +32643137326537616339663761333063306535323232383435633161333237366631656339656666 +36316536646165383736393439373437366564636133363264363239323733386133333131383532 +62636539653266663039653330353463666235356535343261643133633932326433346432633135 +37613931363164373961633336636138333830623064326337353233366532356238643333373030 +63343833363366313861633039663839623939333439626462373633333766393030646465383664 +37336438636462313161373562303863333033393765633761396361643439633232333835393430 +61306465316139396163636662343134333363383762306366313638353838326234663165653365 +62616163383536646139313565646439386437383036376231303537363339336230643939623430 +39343835326161336437306130363134326530306337623334616638366433363365313430303734 +39663263386262373534636430326632323464383664316464386266303532313463333464306533 +63646663306365363266353536303839343534616136353432373939343462303833653430613161 +31363732336164613938313934376533323162396139616138663939326133356362363562373032 +36336561666635613838353265356533643862623030333430386463653265653332343331376234 +34376264316234306332336265626237393130383135633465336364306530353130306338373339 +65643131353439363763386664623963326139346438363133323861643335326631333335396530 +31663738633439373431633339623633646362386462363466646438616164353961306662313662 +66393633336637343361353364643032306463666632363131613935613833643563333333326535 +65336531346634653335383035303936376661646362326234363238323865633037353633303263 +30663432626139653930656664316533666661343633383563373033633266366666636231306231 +38643034393435386339623637396464346435363562303161613139636537383934623062363366 +31346430316166323531636337633433306631363537636535383163303964663264613361616130 +30326666363432313238656439386330353565383032666230353061326535356234343264373563 +36333739396230363634356431313738303839323664613131346463626361666461383166353430 +62353864616235653834346135363434353836346436666163633964346434633333363630393932 +37336439666631373433653961366165633939656566366237353232303137313461366633303539 +32333136383166663239623739666132366132366433633034333431616635376464303565613132 +61393431613834333433643065313232623564623363313638386161663435306663633630353661 +32393733316461613864656364633762656330336436663838313163343163353530366662663136 +31376263343139373937363730393635336537373435313062633432383835663165363637336631 +62383332323866303735663139363864383163323963663139316566303965396366323632353532 +35333861366264313762373165376331316233366363643861316235316634303537306531616433 +65643331623061336266343433383330333631396634323936353231376438653432393636346334 +66386432313735623432343764366362623938393231363236303534316438356336386634643931 +37373737626665326165623461323430353136633533386565363837376462366666613735666665 +34363236663635326136353438386564633930363665336233343766663133653436383530383139 +30356636616132386438633338366336316563663563346666313065376438633431363164373333 +62363665326633353133373130663933303561316534663462623834653061346237333638306333 +38353033373530636361666138366366323431383265656163386237386462393034333264323330 +61653234666631383334346132653233333133313530333334363737326633326164343765383936 +37303963333939623032386432633937306564616666396364333461346161333038613163393431 +39396636633138396366343631326464366133363431363336383933316639393136306631393563 +64643138333532336665613034343961303565633865626535393630316665613430613865666631 +63323739363933383665353233643537396539663066333362343832386463336664366130323137 +35323164633335633761393339306464326433386463376635386164316265343037656130653064 +66313664363661303465396333343938663662303263346263656335613632306631306562383835 +31326566396639343165626163396139343533613932646135663038333833323463353962633337 +65323438393534633431623638303763376663353562363032653633383361323563653865653038 +36663636633264326466343038663430643436393937653538356438303233636338626537373431 +39346366666233666134633934393338656164333639383035326635336232623633623137373831 +66663439363865623761363732663934343364663936343134353833383337646333323430386462 +65386231393361346162363636663361646233613031393232653162346163616632373030336663 +34343630666337363332306430366462376436623638356638396537626432613561383361643661 +35303038393262363364366538353830613062643430386538336638636139333432646535366634 +37616164323530363263343362663938373033353465353066353166323833373031323163666638 +61373939616335626165646437623763383032303334383132646438336466323631636430623638 +34623766373038323662663638376466353165316438653863663066376161653238323464653466 +38356137616435383765333463346133356631396261303936633762366136383834386131333539 +63613065633231643534386235303530636363313762663035643963666136613439343032316334 +39366237353535323363623436633564386135613063313565656463383132646362336433326130 +62616566366236343461363234666231363637326133323530313238653737306533383431636435 +66643634663033396662666439646562663630653161353865303538363531633638663465376433 +65386263626437393733626463396530653265653331316366636166393663306263636665633964 +63373234323332383538633537313731336133363930376230363736663438346133636436373438 +63336465346233306631343639396562373235376437346338376366363134323533373839343765 +37313833303063643262623035323836376131333061356337303761303033333862363633333236 +38623636373336326132323166326637623935363235653438393862303934303862616631653866 +34383934613238646339616461336336353061643130613532396133363963343139643634306333 +34613938643761633764643963353333393031313538383161656663623636306136616462316335 +31663238333662303366666666373434663763623830373962376333633430626162313030356430 +33643639343461643065656536653165396234623331373935383066353439373165643762393261 +63383339343562393739313335333134653139656666326661353734353964303933366330653362 +38323436336236396465633565646564326336343635396531353938356162383161376661373634 +36373263306363396631336235313233316364343864373762363239373861303136343038393466 +37636536306131333430346531303739383263363731623366386432636265373066656564623563 +61396338356636633564373734613164666365663537633937383761303761613930336464396231 +64653261356136646233616230366466383964663664383966633733613062623035636132643061 +62626634333738643061383939376536636338663136346630323031366330363464353432666664 +31666562383531623362616164313134643936366233303637396164313936353836313530393361 +30383932643663656138653031653563636238306134636534343034333837663234343531313431 +33616464356231366335363561356366363130373130363336613239343339633165313832363037 +66636637653332643766626663303637323861663632626433363533616634363339313530346565 +66366330663730326364666535373639373837396136653138363064663165343665393433323362 +66343136363237343234636661613538616265356533613561396230623236376638393430663832 +39316136396535363532653639636537646231626431383166623138336235356161323230353266 +36376633346564333963363865663361303833653539326264393430613439623663326634663736 +32343339396463626163616439323161346139396438613766343161376633313838326138636537 +62666461666466653232363562363139366636646533396630356239653630623839313333653331 +62613739356234316665353837313838356464313439623137323335396636636538336639326365 +38653464663635393762366565313738306435653535666264613564383838313136656663346330 +30646366393539613861626639393332333131313765363565343735613364356563636632396635 +38353832373833383231313162646135326439363331643931363737656163336463353137333965 +37346539376238383234383137646336646231666337643036636139376638376132626661323735 +38353661636463326232326237326330623666373837333630353530643931303336653261663633 +30386237353065376665633461613066666462613864323266396462373661623439656330373637 +37373965616237353166303131656364616233316534353431383231633530633435663737663430 +66356535656332386364366638333961323764396337623862336634343531636538613831663631 +33666661343131303235663565306536366332616230626234343962623938366232643731306535 +64386663663966633534613535656133306461636439376539653339336235323434643936356633 +39633039653536653134643633623732383835386538636662363730333831383934646465353437 +61393137316665323661636465653330303734363966383430363730613532363765376263343761 +31353637663765366538666262353631616234333564346633623962373964616339356161303737 +36353562303033393730343835323138326562653438333234663337386439613139616365323135 +39386263356531396236316563356262313361343736393962346566363135396134633664333362 +36353635633437363835666639346665373739653465613363353134353133313261383163323939 +30616664613835623530323930633363656336313665346637656637646666623033356438646332 +34353366643836663130323161303432643633613737393038313136653835613363646265346438 +34363061363464376664363938303061363363396439633030356263626331633536616266643766 +33383130306361373437363466396631376533353662613538303030396464613039616435383131 +63343361316330663834313661363564646634646130643065613036363531623266386361613235 +38373733363061653936653234616661663930363664376630333639353832353235316261663830 +65633465303365386563366432663763303863353064306237373434323966353233663639383133 +38393333623264366166653464343064373233343435306131356130653661343361306333633461 +66343039643161616434323861633966613434393835336138353634333130633136343466616263 +38633562346461393131376665376565376566623830613330646238333530396333376562316235 +64373831643134613362643065373831326635333932366639346337303238373864303033326639 +65623364353066616130653433303733346666663834363465646431333538646262646537333839 +35353933316536353232663739313265323531363064656131643861363864623432303461616462 +65666534663762646130363461313030616338623566653063613436353535303334323639386639 +64643635306536613661643963616133643134343132616663333461353664346166646230663464 +37373036363061396131373862306662613936343031633936643130336464636163353764323436 +33316330363539303261653836346531336534646332353936636534376164656137643963353035 +33613733666566353563356338643138383966643066623430343066313535323532393562393262 +36663238336463616134323839363630636435323131353136313361636237663337326236376366 +38316161623030633237333534363565663139323834383339336231386135363130656133623465 +37343534383138643263353063346339303361306638396463313636306163313666323931346435 +35313464646536646162333361633730303563336263313265336135366134633462383238323835 +62313930353834623433386234396237396233363061623530623638306533353638336438363964 +30326336363364613034626636653337303464373661363333316239363730383237373836613538 +65376136313264343630386136303863326237346562663034376531313639386137393437343337 +37356131303661306362363861303134316232336264613736616265386166306563353532336330 +34353766343233323036373133633266373638613137333562643565383465666662633738323533 +36633832646233616431396237623664633530346461323633333164366135323761333561616438 +38643765343963656632643763336361323262663434366630386335356538376531356536333530 +31633035303439386331646631376434303966343664666338366165643138386535326664323738 +32383637353938363236383339663765616333353063323838366230643435346632333863323738 +33646137356263326638363266303433336631643566646335373930353436636237333936333966 +63393164393734396139623565303763303739653039313230613030323165313764366437653034 +30323265656335373730356366623232666566376430663866653366396238633332633432303064 +66613536666135336339303434653232393332316231383135623237373966343533613463386631 +31616637373132383366303937653736633738386134383163306464623835343236316664333039 +65343135636433333630306133386237613832653465343330353830376531653535333837313732 +63326466323062393739653336626333656131363535323062396436333763316137373762623161 +39333862363339323338363431633038636164356666383333646634336363663330373232306639 +30633762623438653232353134623938346231663738633237323934306430656539636261353431 +39623462386463636536393566306662633735383131373233383338376331643330636630346630 +32393064316135303931396464336530656535306566373435386162363962353161653736656232 +34353436303133623333346232656366623236323736643737653131633536356332346438636635 +35323439663334636339396133393930323139313566623362303430656663363530663535383638 +62613439323832363431666630646639383638663234636533333730333062336538653363316533 +37303964613866363139356232373863366566616431316438353865393363623430346666343235 +37626332363038366263663766373964373435376131663363613732386165363433653837393564 +64313237646364313962386263646639383038383964663063653066376432396665383066653838 +65653163393863343836633266626230363266313835316163316634346332663265303235613334 +31333636626162313936646232373961366661646335663764353433326631666263313639643533 +66646231663561623931366165366165376164663863323538306231373033373131653966323533 +34363232336531353763653330323663633838663265363639346130333839366661386431643136 +30326337653531656134643864326563306433616661313866336337323536383737313238646634 +30326334353834636233303135663263386236643033626231646339373466663261333865353438 +35656531343331663939393130326639326339366439393065613830353730326530386461353338 +39356538343538393666356230313734323561393164613631643935366563323232383338623133 +32393032623139633538333334393637343235663763393766663137393139626533616337386139 +37306465373136333834383038653234303664623434353635613533613630343230373432336438 +35303336393266353266653565663361666661666132343739303361336161373235643765646465 +30633533356238386330336531633334383838313037396337333463626635376334656564353437 +31336333363061663838376430306133366231626536353131323939366261336631626165663934 +31616631623465616362326465303333626631343033366230393231323461396665633462323466 +35376539343038386465343837663263336339363634373561613331343333303963643162323564 +33336364363531323336633937643832623438356632383238663163623635333362386539313466 +62653062643732613936643634323036326331333865343431623036383133393634643764343733 +65353962363232626435316166373165613030386463636265636334323430376536633764313534 +31373763653161326630303163343731643862333037646331663436373063616531356136366630 +63316439386133653834373630356636383562626565323335313431373363663433613564373633 +31316536613266353331363931373065623732646639653330643332323835646461313163353133 +35623036636366663565343663636531353335346232306661323366383536626538343637663865 +37663064356166303936313161393937633530646337376566303966386137393465376339333362 +63356134656463666539336439336139306465383936653230326665323136386132333433396262 +65653539643335326534363162613066663533396330343563383531633430376237323930326636 +64303438356236663863396533323963643238343038333631656533373164393665393537306461 +35363962613765643862353233633864356337316431616237333037363835343263313739616333 +66336261303766373064366230363764393964636430386231323630356231343736633230623236 +38646135666462326631333065646531666634313861356539383631626531333165633666353561 +33343037383233353637643531386434613934373731383665633863303536383437396337303231 +62626263346664623332633461653734316635313638646666666330373334306232376666343562 +31633930653665306561643733303236376665376132656637613234313138646665333161353530 +36363239313130623762313835396562396437323832326233633565633735363363656432623435 +37366261343762323236303261663231613264653833353763613534383233656432613665306363 +61613630316166343163643663396164653064316432656538653666656431353262356463356235 +38303238333763666661336333643734323239656437396439656437366231376437316632333336 +38303966386163316534633133306333613361323333386230623466646334313564363832393331 +63303664643366373633623131356662353630656565646262616532306531663736653038326566 +63376363616537626166323738393833376231383966656635353833623639363864656662376366 +66316638356532336164623865663630643431343662633836616562646466303935346131646531 +65373161356565323133323631373339363333663832663066383835373938353733613361363433 +30326630656465323336366636383261333139643634323164623239313431656538656339356331 +63313739653165323931373736663266313136336232653038366365626338356331373237376164 +61663735353361393263303263376536636430303465623263333234346132333939626464393239 +62616365353665616438623863363538643462363236616362323863346661633230376533313637 +30666337636362663263343739353637646533396361646161623637366464383263393336316666 +32363237636366323434323339346338373364656234323362316430336539346661333238663838 +39656532393931666439363333313061613031623336336131333366363337666565376466396362 +38393738656639333434623061363739353830303461366230353539373834383338613131633630 +39623238383939326264326462633263623238366566323538613934323935363139303836356262 +62633762663330343962326334303633623830356431396338633030383032396363663330623834 +38353735663738316666366331336261393364376365393966306263303136343235303066653130 +31393661653838333834666330313334353365356266373133656530626263396632353837373739 +61373936313632363261623737323035306165626433343761616262333337383133313038313064 +64336261386539336437643238303161306165333133396561616265616165613235373335353364 +32633037333934346633633833613135396638313465376434313662383838333763653935623631 +39343964653066633431363964356363396263353739393234376139656239343762663939323766 +64613539623531363535313166363064616135613261646434303630663336663731373365313638 +36626133626265643437656238663234306330306665633237653766366332353039343462336539 +35623530636666396135623835356335636339343338613666633365386434653264393465633136 +64663432643363643962363133346532663331656635333735393065653331613166623933346236 +39383137383463633566376462653437663666323566326566616137386435323536383163303163 +37343638643834303434323235666439366463326434306536643061623938623465373064643565 +32646533666261386264336230373466623464346363376533663233306635653434333863653163 +64633763336334373734333465346233643633613861636330356461323334653430383361633931 +35396461643961333037666265303331303733643537613937366438333036326232373531623965 +63363239623265313230396632363862616164643139353162363465656438386132663066343132 +35336634306631366432653132386136303065356534326233323765356233343163663233396461 +35313335346335313136376533623366336564343634366162656566383065313838363435326166 +39646563306433306635373162623737613466646461613835656438623931333633636461643864 +35646333336263343662353637613933353236653431633266643534336364306564373134333135 +66653236343564373235613265383933663362313937646361646164623437386230306538356665 +33363262396636383136343763343436346264366138656562373639616430656362333931643964 +62306335343734633431643934393736323465646534376466303138363865626662336534396333 +65623334623437643532663339396564363734663065313030623635316331373564623037323662 +37333237386438343131313239376136396561363762643461343031616433393465633564616334 +30623730653764323837626332313937646561656238303861323033666536353564316565336338 +35653236303462316661386535353438383839313937313534636239663165626630643331623030 +32623064346664306131336634656331376535396664613732383262313362363839313138393363 +33306566613263313862353138393364656434313461366664633063336138343732393938653439 +61663965303233356336633033386530353838363763353266306663633562333931326137393233 +34353539376336393033333262663162363536336163383730643333393762396638626630353030 +34653639393963303361373138633163313134303932616161383931636334303135646165303832 +65636139353336353561653435353539366364333466396162326633373635356365383133303831 +33643839633239633765363262666165333437363262386437303539366361666539623961326366 +31366636383366396435333638366334623834623165386463643763613966613537623637363937 +34666433396234663465666564356332323762653633646464376439336333333735363038343362 +61626436356162616462333461303739373965653535316233646338383063343865623663643865 +63306562653933333935343166613639326262636435306661663730343063643834303437303862 +33656432643337636639353734653065366139396434613639653933366439383361393332376437 +36303733313863363135353530343161356339336365653233643734666132356662336433363762 +30363936373761663564376162333039343330343233353232316532303461666234326466356438 +37316664363763653030633063343662326661626535303131663537626566623938643436386134 +31653765643633326435326235383866333835643034386133393561306166303831626433613763 +36353561373336626634316634626335313931366464363831343433393961623635363463613963 +63663462326262343937356438306439303031616133386136363138643434386432323863323263 +33363435373664626231653231636233633331623663353830303362356532623239666261383237 +39623030306232623063383563636462316539656665393938323365653938363934363862333633 +34396338613637623133386638363433636637393831623630323961343631353763626562326630 +37326635636238653764316138626661366335643639396531623737353239663731333839323963 +39396566343765663766323863666539613236386566376266663234663537393961306638373166 +33663665366434336464353132633265626237373730383966646339353165653934356632623030 +36373964643063336135363162666238383036393330653064656633323230373462623165316134 +32346630663532633031343135663565643930373438386234653966646563363438356237633062 +65653137663330633236373632623963313639303165633463313333333566373738383465616434 +35393236343937303934373438363139663439353564303636366632613162323934343334396238 +62656631363064613738346330623061343135663166623034623330313062653234616466363065 +31343763613263313135333435376334353839653862656164326436343539326631323234623834 +66366233653465326566643263383633636239363438326664346162353730383361653262333631 +32393330636535653439373366656466636530626162393338343637333736383431313836333161 +32393964613739393233633931336466316532313531393630623534383534313532333836323263 +30373537643634353032336263373636393864313533633139626139313666323832613738306436 +34396162326336663164326463373665326433323764336431616164313630646661636366363864 +33303831663831616534393737376536323365646139346633333338363838393237663435363933 +35626533303365616537646164663364383464383633323333356439633062323139316133363031 +65303036663733666331656339316439623934653863666566356438616663613331343838356661 +33643235626662383337663830366430636632613763333462373035633938626665396335316633 +37393736666362323731653466376561316261373437346633643432636137623433633732623038 +66643231303933663336356666376261383761386462663133333762646638313764353639626133 +32316561393932356235303135343231653938346234353631613265643333373535373263643162 +66663263316164343564376632376533373465633063376532626433326364353332643762316635 +633234626335363961343732366235613135 -- 2.51.0