1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
8a9b3db287 Gramps: upgrade to 25.7.0 2025-07-02 13:43:33 +03:00
a72c67f070 Wakapi: install 2.14.0
And transfer data from local
2025-07-01 11:21:05 +03:00
47745b7bc9 RSS-Bridge: install version 2025-06-03 2025-06-30 19:18:45 +03:00
11 changed files with 4056 additions and 3867 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,28 +4,23 @@ set -eu
set -o pipefail
echo "Backup: perform gitea backup"
su --login gitea --command '/home/gitea/backup.sh'
echo "Backup: perform outline backup"
su --login outline --command '/home/outline/backup.sh'
echo "Backup: perform gramps backup"
su --login gramps --command '/home/gramps/backup.sh'
echo "Backup: perform miniflux backup"
su --login miniflux --command '/home/miniflux/backup.sh'
echo "Backup: perform wakapi backup"
su --login wakapi --command '/home/wakapi/backup.sh'
echo "Backup: send backups to remote storage with retic"
restic-shell.sh backup --verbose /home/gitea/backups /home/outline/backups /home/gramps/backups /home/miniflux/backups \
restic-shell.sh backup --verbose /home/gitea/backups /home/outline/backups /home/gramps/backups /home/miniflux/backups /home/wakapi/backups \
&& restic-shell.sh check \
&& restic-shell.sh forget --compact --prune --keep-daily 90 --keep-monthly 36 \
&& restic-shell.sh check

View File

@ -72,3 +72,22 @@ miniflux.vakhrushev.me {
}
}
wakapi.vakhrushev.me {
tls anwinged@ya.ru
reverse_proxy {
to wakapi_app:3000
}
}
rssbridge.vakhrushev.me {
tls anwinged@ya.ru
forward_auth authelia_app:9091 {
uri /api/authz/forward-auth
copy_headers Remote-User Remote-Groups Remote-Email Remote-Name
}
reverse_proxy rssbridge_app:80
}
}

View File

@ -3,13 +3,11 @@
services:
gramps_app: &gramps_app
image: ghcr.io/gramps-project/grampsweb:v25.6.0
image: ghcr.io/gramps-project/grampsweb:25.7.0
container_name: gramps_app
depends_on:
- gramps_redis
restart: unless-stopped
ports:
- "127.0.0.1:{{ gramps_port }}:5000" # host:docker
networks:
- "gramps_network"
- "{{ web_proxy_network }}"

View File

@ -0,0 +1,12 @@
services:
rssbridge_app:
image: rssbridge/rss-bridge:2025-06-03
container_name: rssbridge_app
restart: unless-stopped
networks:
- "{{ web_proxy_network }}"
networks:
{{ web_proxy_network }}:
external: true

10
files/wakapi/backup.sh.j2 Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -eu
set -o pipefail
echo "{{ app_name }}: backup data with gobackups"
(cd "{{ base_dir }}" && gobackup perform --config "{{ gobackup_config }}")
echo "{{ app_name }}: done."

View File

@ -0,0 +1,32 @@
# See versions: https://github.com/gramps-project/gramps-web/pkgs/container/grampsweb
services:
wakapi_app:
image: ghcr.io/muety/wakapi:2.14.0
container_name: wakapi_app
restart: unless-stopped
user: '{{ user_create_result.uid }}:{{ user_create_result.group }}'
networks:
- "{{ web_proxy_network }}"
volumes:
- "{{ data_dir }}:/data"
environment:
WAKAPI_PUBLIC_URL: "https://wakapi.vakhrushev.me"
WAKAPI_PASSWORD_SALT: "{{ wakapi_password_salt }}"
WAKAPI_ALLOW_SIGNUP: "false"
WAKAPI_DISABLE_FRONTPAGE: "true"
WAKAPI_COOKIE_MAX_AGE: 31536000
# Mail
WAKAPI_MAIL_SENDER: "Wakapi <wakapi@vakhrushev.me>"
WAKAPI_MAIL_PROVIDER: "smtp"
WAKAPI_MAIL_SMTP_HOST: "{{ postbox_host }}"
WAKAPI_MAIL_SMTP_PORT: "{{ postbox_port }}"
WAKAPI_MAIL_SMTP_USER: "{{ postbox_user }}"
WAKAPI_MAIL_SMTP_PASS: "{{ postbox_pass }}"
WAKAPI_MAIL_SMTP_TLS: "false"
networks:
{{ web_proxy_network }}:
external: true

View File

@ -0,0 +1,16 @@
# https://gobackup.github.io/configuration
models:
gramps:
compress_with:
type: 'tgz'
storages:
local:
type: 'local'
path: '{{ backups_dir }}'
keep: 3
databases:
wakapi:
type: sqlite
path: "{{ (data_dir, 'wakapi.db') | path_join }}"

34
playbook-rssbridge.yml Normal file
View File

@ -0,0 +1,34 @@
---
- name: "Configure rssbridge application"
hosts: all
vars_files:
- vars/ports.yml
- vars/secrets.yml
vars:
app_name: "rssbridge"
app_user: "{{ app_name }}"
base_dir: "/home/{{ app_user }}"
tasks:
- name: "Create user and environment"
ansible.builtin.import_role:
name: owner
vars:
owner_name: "{{ app_user }}"
owner_extra_groups: ["docker"]
- name: "Copy docker compose file"
ansible.builtin.template:
src: "./files/{{ app_name }}/docker-compose.yml.j2"
dest: "{{ base_dir }}/docker-compose.yml"
owner: "{{ app_user }}"
group: "{{ app_user }}"
mode: "0640"
- name: "Run application with docker compose"
community.docker.docker_compose_v2:
project_src: "{{ base_dir }}"
state: "present"
remove_orphans: true

64
playbook-wakapi.yml Normal file
View File

@ -0,0 +1,64 @@
---
- name: "Configure wakapi application"
hosts: all
vars_files:
- vars/ports.yml
- vars/secrets.yml
vars:
app_name: "wakapi"
app_user: "{{ app_name }}"
base_dir: "/home/{{ app_user }}"
data_dir: "{{ (base_dir, 'data') | path_join }}"
backups_dir: "{{ (base_dir, 'backups') | path_join }}"
gobackup_config: "{{ (base_dir, 'gobackup.yml') | path_join }}"
tasks:
- name: "Create user and environment"
ansible.builtin.import_role:
name: owner
vars:
owner_name: "{{ app_user }}"
owner_extra_groups: ["docker"]
- name: "Create application internal directories"
ansible.builtin.file:
path: "{{ item }}"
state: "directory"
owner: "{{ app_user }}"
group: "{{ app_user }}"
mode: "0750"
loop:
- "{{ data_dir }}"
- "{{ backups_dir }}"
- name: "Copy gobackup config"
ansible.builtin.template:
src: "./files/{{ app_name }}/gobackup.yml.j2"
dest: "{{ gobackup_config }}"
owner: "{{ app_user }}"
group: "{{ app_user }}"
mode: "0640"
- name: "Copy backup script"
ansible.builtin.template:
src: "files/{{ app_name }}/backup.sh.j2"
dest: "{{ base_dir }}/backup.sh"
owner: "{{ app_user }}"
group: "{{ app_user }}"
mode: "0750"
- name: "Copy docker compose file"
ansible.builtin.template:
src: "./files/{{ app_name }}/docker-compose.yml.j2"
dest: "{{ base_dir }}/docker-compose.yml"
owner: "{{ app_user }}"
group: "{{ app_user }}"
mode: "0640"
- name: "Run application with docker compose"
community.docker.docker_compose_v2:
project_src: "{{ base_dir }}"
state: "present"
remove_orphans: true

View File

@ -1,138 +1,142 @@
$ANSIBLE_VAULT;1.1;AES256
66633938626636626634656630333932313866343066363831643562616664353461623463613238
6337323833633562373136343562653835366664383161310a386633393039633164303231633532
39653862313234346631353135373336613639623562623363643034343965326239333638393161
3333333835356233620a366532616336383835326161356437636561353166386431383635666639
36633432663037623063653764336566336362376531323132393635343562616435643335663564
65383531333563366362666531363139643962353232326333343534313130393736626364656430
63366463366430316232363136656361626430393538323261626530613339393438353937393262
33353132383266316534303536333961396330303362313363313263643566353365313664356464
35646333326338353136643038396637626236623138623535656530343934656233376364363136
62303764303230346635633535646434323838363437346135336131653937326635653731333466
63613964643166643331636362343431313161303332366330306164636239333166323161613636
30396166386231393331333238643230626538653362303431386235646262393361666136393531
64636533366232306637393131323830666137646265353866616563303265636635636138363665
36653565376462313262616331353661623534336431346462393233353936326662333836666132
39366632323739656465303362343932336235316265306637663135663764633637383738653461
37643337663231323534303133333131623038363561663061623863366463643131636130653662
37366130303039616139366231353038313239353534666361343063363633663664663165373431
31333235623462383637383566303965666162386630363338376534326238383564393564663264
66366337623561666636373965353237316232616631343565336263613338643932386639666361
34623564336438336431363435663462343065653466626132326231373439656464356231633533
37616637306133343435393732313839623639633838643931326461346464363735616435616133
36336566386162613263376631353366323533633462386333396539633734643336373164366261
61323166633436323439626662646665616233333636356666396131626434633262313665313064
61353431393333313263646433646538626137653634366236663436343736633532363032376132
33353436313737333239636636386533373334613536356136323636326634636339646261333564
36316562643830303039356431383261386136656438326662343165393333663361366565313064
38393531326538616539626536666463363139306534353637663766396635343931613864376365
32386635323062303638636166376262326231613162646633626430356437323733383461353634
37643332663236393365353766616536303761663235633436306131383333616234303135343233
63643231636531633636376130613064393366353462303933333433396635663563656636616263
33323834353739636434326561636264323131663861353730646665393638643735383735643435
31396462666331316361613062323934333835646363383461303738616332316331656135373137
65653833653732623465656633313136383933653038383734383836613431373265343936326137
36383139383739666233343563313566633662613434326366313665666634313938303136343266
34333135363238363166653463616438633833626664356135346231306536633231383662353432
31363664343565373764343463303565303661343462303936393865323264383666313333326561
32643534333564393139313434393835643839623032636435613361343932373630306633663863
35353932326565383931613063643466353932323836656462353333643261626439346263356566
66626662663734316133653965313462636536643638656539343233353933303036393933376165
37653266326330663739373031376361353832323066323433626334326335383465393463313131
36666165373866363539646430316232386137353139306131313239643664396336643461356339
65636533313439366531363735626133336666313865363535643239613065643733636538373031
64666332653233663430326432613537343930353334373134366138633865613631663035616334
65643639393965646130366465366230376361346530363131316230383666643465613639623938
34353530333861356630633732376434616639373738373033373464343761323730313537353236
66353766633635316230343065666330646138333832326365363865616165373861333038316364
63356633306262313866653933646363623039663961636462386138643264613330633630343536
64376239346561356535636633393661386433383933613431623661366435393436333561616664
36636136373365316333656664353530636434643735373438353136646435363836653234646366
33623563303265623862376664333362653935303339363661343337393935356134336464383932
33613963386431616238633734383237356630616664316633333732616636356137656433653930
62343437343239666163316336313961356636643837353661623839386332336462393065373039
63303866346337343463303461353835343566383036373064306165633336633862326538383635
61376166303531393366303466653434643037393534313130303166306639313264316139663538
35343863326434366438643931653631333738333464626436633634336562633866373330636134
62376632636539616437366636353430393131363163386466636438653436653739396564643662
33386161366332646539383639636336663861613061363261386631303333313838613433343631
38393134623863333865386664636233353236373230623539623535306563623563393434613034
66646362376638383066633932653766383830393866666338326537303934353061653837343336
34366530643364363736626163373234316666623836366261366637366632383764626264623530
62666238626436613437633566353435353637633837343939383466383965643839663262613330
65383834373033383962643334626363346537336662303231383263663761393066373036663161
63646537363063643635303564376263333730386363633233643264363934343633663735363234
65346662336332636136393534306265303435303061636130636362376439666261353064353335
62323630643037656539623935646666623132646462383831343262643030643264373538313863
38366564316539313866376265303330633337623739343738323830363737303135363964643764
33633862366635356130653433356161643435366330366261643762613534643863643962346232
33343765643761653033383363626430663637343632383865343339326230643337656137633664
64336662656131643335643431613733336531613736663734306236623833313833663362356266
35623561326635346266636230326433313933326538663631643663326339316563303934656362
66323934646431313233323239326437623739613663653030326666623735373762366236373137
30373534346138396563363839643562383166336435306237653438313063303435613231636232
61306564386534396632373334663966343165386533326366353537623432336435396236353839
64326335643932366439373138326666336263633731306566306334363264633138353634313033
33626362323835336333333066303232663438383835613639616439333037366362616362303730
37353339396231373938373532323063316164663463663866306432373133303335326366666262
30623432316532396438653139336366303037346236633337663563386366373761646263366464
64316130643530663861363639326666643161313432396239616135326662323761656132653566
64623439663963636465616365623630366332373462306432633936373339386133373462333736
39656439643639633665313764633235376530383134363063353363636664663134666137363431
39393436356266636439343465393034393465616332353366366562373236313838353430646262
32353132613531383265333161613836653863383234353035376431303936386361633035636530
35643162616630353837396663363663316138396238613532326231316539363164653335346432
65393737373334373461633162656434323037323363616238306666323865356233386330316233
33666262363137643636653761613161623735663862386237626566393764356164663463623637
32633166643365653935396338633835386635316431316364663637623939323438646135326631
37613866656562666465333666616364643330356439636131363166613862343561376136313261
39323661343032393531316139323237666539306465616234613038336261313835613237663365
35613762356461363165626637633338353933633031353330363064356231393562306566306364
39346131373662613361393936616236623163656532306162666330663736623036396230626563
36303861396632323163303436646164613865373564363363643263326435346138353835336661
37626335663331363931313162363836306664666232613837616635343761356365323630323639
35356531643733313739613637646431303061363833326666643833653631323938326335633136
35376563306264313031393363653565366135656632353332616238346631326531343531363536
39656234633462306662633439366565643465616433363635316438303132393764623865366535
62386561343131336665386337353037303430633739666439653463626537633063623434666634
61633634333939623534643562663961373462643531396533376661623834356337363165373437
62303234346539333138366436323936393838643666373264666361353435636262323065376534
33393830656535346537323633363062656365623862313936613464343137326437633234303038
32383834643162303062376664393965666430313863643937373335363737396561386135353362
63653562316366373737663866313563636534626166663064363037643939363834336164346365
61623739306432666639306635646539623539373562316232323733333564373762373033396564
64366134303963333634633536616563636536303065643731633534336531653737393038633930
35613463396366306364373762356462363730396437363234643265323931376132643832386465
65356235393839333065663231613164663231393865376139633731613037323739376230333930
65656366616665363033316136393963343263336632366131316133633932356231333764613462
32663033653662303138636439373130303062303665316630636665333266306431333539323730
65386362656634366336626630656461343237343833656230323839633038326437303834643634
63363337643436663465643938373937346535663763326135373462343532623964633333376533
30396262363765363830623836333963353438663236353432353332316262643038303832373361
65656362303732633232303966316164393239643233396132393937333262626463366363333031
38663662623738363361346337393731633662653763613832636232356232313663633664343332
30343135383237333765323064643331613765343764373931363166336233643738366164336633
61363033303135383339363362363766396161353339303438306665323162366364653865376164
39323037323638613739633363633564653635393964313631653563336431303537623461373864
62346336346237383839326362366666393830343234316361393133303163363735643738386234
30656632376233613764646230653130656437626562616535376461656165373636316538653937
31636666376364383233306637653634383061653964366461396335383430646238663161313565
38343432383634623466373565373664303737653238303335306530373432613537613931313435
38343831393734326334376437333961633661386339373330646536646632366233346364346262
65326433393433376639353031376466353431376631656433326635333765356234663765396464
61643234626234626336653665396330326162656462663339373233313832663730336231616264
31373566646465366639326464623036303530663832313534386237346131393661343761326432
64326663346539363963613837366331643735326561643961653633343335373862623465376137
66663737666365343962326333656530396266366163336361623536326665333230626566316132
34386664343039366633353963646634383739646634393665313263326336363263333965646564
62623062383266613565343763613534653739616662373937333061316562663638373031316337
39383135663934393763336165313364656461353531326434363333346236386534636634653639
35396134373535396230323862653265363238663362653733336638363961306230383466613735
63343438316634353263333134643466623035623366633733666138346239386365396538633166
35313263633836393065633731613935356430373835623234336261363465323731323533386138
36376661336662613438626234376265356562663666353163653633386331636161613137393462
37323630366236353863396234363136373533383864336331626663336164626161363335636661
61623864306339396331636532363238376135363164343134666362303434323631373861646436
30613137613139326438663866623731636263306237393531376639356633356234306364623333
31663331363030316534396265373864643265396137303037646561356237666231346133323461
38326166623239373537663035303530326235363066383434333430313138333937
62653431636461623338643536653736633166303934626565363963373637396534303130373035
6565376162653735313737333439633862643366336264650a633265316463323062653032363861
32626536343138663837633334316537373662653262366163633334623764633938323363363962
6230333564643665320a613862653632363363616266336338346539323964383736366235306437
33306363353163383663643062656330313134353836666232616532316264303564336235356661
30653262363866653139646436333036393837383262643537313933613939326433313565393465
31373036353133663337613935343038616164316132303833363338623863633234656537653039
62626436346238636234393939366139363034306432326538656264343733356537393332633836
38636639626665666238656338363633383566616638353235383465623232646537616230626630
63303130316438353934656636393366306566346362356564393661643064323630636463383061
37636461386432323136393739633862313337333261306664323361393835323034643134383461
31313762616538336666656137373631336132383364646163633732323431613239333563653332
65616664333839363834333362626238633833666430653738613636333432333430333861356339
61323865663661383534343964346238383134613532616637346235616139383434623564333361
31636165653261363830623162623738333937316664633434346431626630393837366666643434
61643734653834326434353431393732376266626266313264376235323838313539306463653864
36393461366230643234376161623330326365616539323965633431633238386262373562383161
39323634633166643038356434616461613864303334393932663730303839373530643933323839
66353337326336656635636362356531613634623633303461336565363564393964663430393666
64326439346233346132653230343234653430653239636362616561636166343030303863373337
36363633646432613138313062346164663730313061363432396138323561366430316439343036
32353931393064666231323863656165363066313236613332356161363139616636333963386130
37363030383765613132353161613766633635363033656561343038633839313933646264383730
64336339646264383332373639326164373163383966626363653762643037353636376336626136
33346533303036326531316332306461646361376435316438376161663162336335353938366565
30633133653431393066393961313138383337313731653031323432633766356338316366373432
32373937663961623739633439636661336461346132376533373961666432353937373066643165
61663063363661633938373365393665356665636562646265313834373962336566393835633339
34396666396162613162326331313037303933366564623837386338363063636564656339336639
66346465366233663534373465313930323134313835316464363263383866313563396263616535
63383265623865636162346635613863356266336664343434393437656134353639353535383332
62623934643930313939646466663336633034343534396137333264623263663866663339663266
30343234356536663262616363376663646264353331646164376331376639363135373137396437
37363166386233356434656237373535326162303437346233623263663534383032363638376134
61653939306433393437656465343066613530396265396262373433383637656266303064623234
64333062353435373863636439663561393763333538303836303631666262326430623835656138
37653562353562373935333235316430613737653862303933333062643663333364333966643461
33323335346566363337643161303835356336306232653763346639323265373432376239363566
64373562653238333865326335613133636335373739396335633631313431363061616139303463
37333364393438666532396131343637373833353766396234383739306565646439366438653032
33656330343061636338643465653664326338663233316631303465666632653436633135643664
64616132366632666431653262393035393163343664303961396431666236303864303865343634
35616634613165373637653235323164323666343436646339646637646234306163333462393063
32346534636165656436353036316232303266616135303663343631303565623562616237306365
65303938646239393564333461343238636335336533633265383066653734613332656563666434
31316665613630336263613934316361383332363164323266373565323239343033666663396534
39323739313636616232663535386439363065333766623837336230303334656466656262613363
37386664336436376530373436353235616437333834646563353830626162336261333135383866
64383930316531373366646335306131633166353161336463376530353066356530393665393063
31613636386532623035373866373065633233633135343439616662616232366337313764646436
64626262643532613136373238316561616361393433323066326333663663353236393662396539
31653036303031303462643231333965653536666136313638613832393361666131363435633932
31663864326563663230626237643763333737613239373134626433636564386231383961316162
39383165336433626466393935383363396333636131643733663866356434366664613766396263
34313934626133653361633665323131613736306331373732323434323535346136393964356231
62346136356331393238346333393266613365633563626238353530333931613330663765393936
32333261353634646366323238353238643837633735636662356630373464343330626630656130
36356565356430643133386461313335343436316263303064366139316638663161356332386362
37376431393661386231313763303266313630323362363664336366633035353562303439373630
33343265633630343065363461363064653933303932613761303538393734373962613633386539
66636534333537313135356665633966326430373062346136326532666638303334653263646431
38393131653338316663313265653861663334326635353137623739396636333637343137636339
32303836373535326363396434326233623532633931653039643763326263616232333462616631
36666564623030396134346665386661386433366266363739626161653062323963313365353161
35643530343439326133613939353737653165326538666530366530323963363839373032326462
34666235376263616364656130633637346334353934396132353263313237316366303137386430
64653563333963313361303239666361336136356363306266633833366262326431616161613238
38653538613032386238623839663332613064333031303939363733396635373238666562386536
32316566666435376239386637396334643861643634316338613063656465373164646530363865
34373130636435326130633437303539646535336131393339613139383636333763336530636534
34636666666265373636326666333130623863316465663333653466353063313134386262333739
62626264393362353663303531313061643538663532333164336662343732373463623166396539
39396531376338616538633633343733343765306237656466666232623163303738643431633763
61656335616430653936303831393664653365363764333362373337323364323039363163353461
61336536316466396636306266353830316665343739613033346538333830306263386134613737
64316339613462346438656362346664303762643766373364343931626530626439336634666537
31633964386564663531343764326666666261643464353438353035333665363434646661646663
38636239373331623061343730376632393963303732393533396464633131633435373161303163
66383461343861326665623463636262336562633936623563373136613063356362383862663232
37333331373431393137363735613366656434323065346661366433663464666363343231393863
64633530316230653065356165366135396531663731323866376162306238343962376362633234
61626563306431623336623737353931316236623333623337383366613262346631646330313637
39366239396330303461303666396431663062626533336136643039353034633230353765353334
38613362653963336162326163356662356661386630353664333265373032316531656131376665
37376262363130336161613230333863653662623436666361396561613935323432663665643138
38616564636634613164313666393532396265396135326538336665373232316461326635306131
34343632636637653835653131613161316237346239363830386536363933643532333533373333
39643364306163666366376535653333323435383332633961343930633635383030356463333964
39626130666166313234386439383833616265316265363430343134633730336261383435356138
62373063346238613061363033343366623633373034346531303538396335653938646664303962
31336634623135616237323837623831306535316463613266326262663934303938373132343735
37656335333263326531646162393738653632376164323165393563656138613830633936396433
61353332343134636564333233393863643837353366386234376237623435663765343366363033
63326233383962633266303962613361643464613764303531333930363736323535386632393766
61353666303134663466333330383031333933666137346364656364313965656164303065303530
34616130653061613934393831373130333566363736626261316330303966656162326638333130
66373133613536623566303432356666346535636237616561323063643439616436393666376536
32613830343636393031333737376332396230313034393062663437613838363263333233613439
30623039336339373234326261306435366332656164613439376139346333616331326561383963
30643133376632656564616536323863373237623263366266396264633464373765316164346165
37636233633661643362636630356333333766613036663335613264333439323239633861363034
34663937376530653837653236303839336631313863363239626632646436653638366638366566
39306538353231623434373537313862386335393262633062313432646232623863383731313031
30656366363837366666393933346238363336363030373836386230343062363661306263633163
33626562623935643665626239386133636531393536336661613430343630333961303233343430
63656666346138643163393663316134666336323961626163376461663635633834333337393062
61656163613234633965356133666335343065626137633137333266613561633936386136643134
37383562663031393133326662623136386539633066323336306262346236613161613637626162
36636133666334333636653535623732343233396430653566393165353431303739656239373738
33323939633264303139323162613964306237376461383261646635343036313639626539373238
32336537373436373338386432646139303831383138326564333739353761616336346461356532
38303138656533386231303336336564656135346162376662663962663763353830663237323138
33373331656637363139626132393231313136303936633161636261643264313230356261366165
39666331306262643566663830626663656530303831343231323336306266363735393966613062
63353938386263376166316335656164633233633465303065663565373764343031663866653135
64663766386436653665356265333565323336636539656237303334383636353161643366656637
66356532373130323236313936623964663433333965326662333833316437326461326165376661
66396537653032346666363965313339323331303864616230646361386335663138613433326261
35613430363864336635343434333761656639633863323534653862383936653762646134356664
38326463326239636162333435656561343739366364313738663535636136323439373462643832
62633661663337343538393466613734633531666532353161616231323161646237653736346561
64323063656366373931396639393261643333393333626539663561636661393936316539633263
63343331313464623636353031343232613534663565303538333164306531303438616539386364
30376233333630336431336364663834633734636261353364343564333639623737363538313462
61616233663335303062336635376435643965373039336231346234363436356238356162613138
65326532663461616263626238346535623136633039613939353132313836373962646463333535
65313562346631633435616232366166373763346337303561326130333936346130363431383036
62356435616630396539303633343166646461393030336462366463636138316333633363643636
65376131333731356566333237363266656466376539326438313930376363386231616138336335
65333735653830373035656265336331346562353233663465343935383235303930633831613137
64303130666532303733633133386334613733383562613661643931636136386264396438316366
61653964643135646332343764666134336666336232376465353462356632346533633961636534
32643234396636303135663562656435376561336235303837643932366334616265383639343733
65633833653763643366646232343765306131313465326263623636386131376463356139623334
39343163366439643334646663393434353333316234623530393431643539346435616263303734
61633066653838363933646230623238653431393061646430383537343363643562653831336362
37626630633161653763386663373630306564663339393265663732623434643231326335376562
37663234643466366535326461396631633430613431346134316635653032663033623465346338
61353331393631343365663233376330333730366161353362626166646232313666336333386265
33373761313536326165343339346263316636363362393365663034353964373164643763383037
3666