Run immich

This commit is contained in:
Ivan R. 2024-10-30 11:08:12 +05:00
parent fe8529bfa9
commit a707c3cdcc
Signed by: lumin
GPG key ID: E0937DC7CD6D3817
11 changed files with 519 additions and 201 deletions

10
immich.yml Normal file
View file

@ -0,0 +1,10 @@
---
- hosts: webservers
roles:
- name: immich
db_url: postgres://immich:{{ postgresql_users.immich }}@postgresql:5432/immich?sslmode=disable
external_domain: https://i.comfycamp.space
openid_client_id: "{{ immich.client_id }}"
openid_client_secret: "{{ immich.client_secret }}"
openid_issuer_url: https://auth.comfycamp.space/application/o/immich/
openid_button_text: Login with Comfy Camp

View file

@ -70,6 +70,9 @@ frontend www
http-request redirect location /index.php%[capture.req.uri] if host_nextcloud path_well_known http-request redirect location /index.php%[capture.req.uri] if host_nextcloud path_well_known
use_backend nextcloud if host_nextcloud use_backend nextcloud if host_nextcloud
acl host_immich hdr(host) -i i.comfycamp.space
use_backend immich if host_immich
acl host_comfycamp hdr(host) -i comfycamp.space acl host_comfycamp hdr(host) -i comfycamp.space
acl host_comfycamp_tor hdr(host) -i comfycgmgfvowbbw2ckkobuvk4cejo2e56uxrhznravxnrl7itftpkad.onion acl host_comfycamp_tor hdr(host) -i comfycgmgfvowbbw2ckkobuvk4cejo2e56uxrhznravxnrl7itftpkad.onion
use_backend comfycamp if host_comfycamp || host_comfycamp_tor use_backend comfycamp if host_comfycamp || host_comfycamp_tor
@ -190,3 +193,10 @@ backend prosody
option http-server-close option http-server-close
timeout tunnel 1h timeout tunnel 1h
server s1 prosody:5280 check server s1 prosody:5280 check
backend immich
mode http
option forwardfor
option http-server-close
timeout tunnel 1h
server s1 immich-1:2283 check

View file

@ -0,0 +1,26 @@
---
argument_specs:
main:
options:
db_url:
type: str
required: true
external_domain:
type: str
required: true
tz:
type: str
tag:
type: str
openid_client_id:
type: str
openid_client_secret:
type: str
openid_issuer_url:
type: str
openid_button_text:
type: str
openid_scopes:
type: str
default_storage_quota_gib:
type: int

View file

@ -0,0 +1,65 @@
---
- name: Create root-owned immich config dir
become: true
ansible.builtin.file:
path: /etc/immich
state: directory
mode: "1700"
owner: root
- name: Create nested immich config dir
become: true
ansible.builtin.file:
path: /etc/immich/_data
state: directory
mode: "1755"
owner: root
- name: Copy config files
become: true
ansible.builtin.template:
src: "{{ item }}.j2"
dest: /etc/immich/_data/{{ item }}
loop: ["immich.env", "immich.json"]
register: cfg
- name: Start redis container
include_role:
name: redis
vars:
preset: persistent
container_name: immich-redis
docker_networks:
- name: immich
docker_volume: immich-redis
- name: Create immich volumes
become: true
community.docker.docker_volume:
name: "immich-model-cache"
- name: Start immich server container
become: true
community.docker.docker_container:
name: immich-1
image: ghcr.io/immich-app/immich-server:{{ tag }}
env_file: /etc/immich/_data/immich.env
volumes:
- /etc/localtime:/etc/localtime:ro
- /mnt/hdd/immich:/usr/src/app/upload
- /etc/immich/_data:/etc/immich
networks:
- name: haproxy
- name: immich
- name: postgresql
recreate: "{{ cfg.changed }}"
- name: Start immich machine learning container
become: true
community.docker.docker_container:
name: immich-machine-learning-1
image: ghcr.io/immich-app/immich-machine-learning:{{ tag }}
env_file: /etc/immich/_data/immich.env
volumes:
- /etc/localtime:/etc/localtime:ro
- /mnt/hdd/immich:/usr/src/app/upload
- /etc/immich/_data:/etc/immich
- immich-model-cache:/cache
networks:
- name: immich
- name: postgresql
recreate: "{{ cfg.changed }}"

View file

@ -0,0 +1,4 @@
TZ={{ tz }}
DB_URL={{ db_url }}
IMMICH_CONFIG_FILE=/etc/immich/immich.json
REDIS_HOSTNAME=immich-redis

View file

@ -0,0 +1,176 @@
{
"ffmpeg": {
"crf": 30,
"threads": 0,
"preset": "veryslow",
"targetVideoCodec": "vp9",
"acceptedVideoCodecs": ["h264", "hevc", "vp9", "av1"],
"targetAudioCodec": "libopus",
"acceptedAudioCodecs": ["aac", "mp3", "libopus", "pcm_s16le"],
"acceptedContainers": ["mov", "ogg", "webm"],
"targetResolution": "1080",
"maxBitrate": "0",
"bframes": -1,
"refs": 0,
"gopSize": 0,
"npl": 0,
"temporalAQ": false,
"cqMode": "auto",
"twoPass": true,
"preferredHwDevice": "auto",
"transcode": "required",
"tonemap": "hable",
"accel": "disabled",
"accelDecode": false
},
"job": {
"backgroundTask": {
"concurrency": 1
},
"smartSearch": {
"concurrency": 1
},
"metadataExtraction": {
"concurrency": 1
},
"faceDetection": {
"concurrency": 1
},
"search": {
"concurrency": 1
},
"sidecar": {
"concurrency": 1
},
"library": {
"concurrency": 1
},
"migration": {
"concurrency": 1
},
"thumbnailGeneration": {
"concurrency": 1
},
"videoConversion": {
"concurrency": 1
},
"notifications": {
"concurrency": 1
}
},
"logging": {
"enabled": true,
"level": "warn"
},
"machineLearning": {
"enabled": true,
"url": "http://immich-machine-learning-1:3003",
"clip": {
"enabled": true,
"modelName": "ViT-B-32__openai"
},
"duplicateDetection": {
"enabled": true,
"maxDistance": 0.01
},
"facialRecognition": {
"enabled": true,
"modelName": "buffalo_l",
"minScore": 0.7,
"maxDistance": 0.5,
"minFaces": 3
}
},
"map": {
"enabled": true,
"lightStyle": "https://tiles.immich.cloud/v1/style/light.json",
"darkStyle": "https://tiles.immich.cloud/v1/style/dark.json"
},
"reverseGeocoding": {
"enabled": true
},
"metadata": {
"faces": {
"import": false
}
},
"oauth": {
"autoLaunch": true,
"autoRegister": true,
"buttonText": "{{ openid_button_text }}",
"clientId": "{{ openid_client_id }}",
"clientSecret": "{{ openid_client_secret }}",
"defaultStorageQuota": {{ default_storage_quota_gib }},
"enabled": {{ (openid_client_id is defined and openid_client_secret is defined and openid_issuer_url is defined) | string | lower }},
"issuerUrl": "{{ openid_issuer_url }}",
"mobileOverrideEnabled": false,
"mobileRedirectUri": "",
"scope": "{{ openid_scopes }}",
"signingAlgorithm": "ES256",
"profileSigningAlgorithm": "none",
"storageLabelClaim": "preferred_username",
"storageQuotaClaim": "immich_quota"
},
"passwordLogin": {
"enabled": true
},
"storageTemplate": {
"enabled": false,
"hashVerificationEnabled": true,
"template": {% raw %}"{{y}}/{{y}}-{{MM}}-{{dd}}/{{filename}}"{% endraw %}
},
"image": {
"thumbnail": {
"format": "webp",
"size": 250,
"quality": 80
},
"preview": {
"format": "webp",
"size": 1440,
"quality": 80
},
"colorspace": "p3",
"extractEmbedded": false
},
"newVersionCheck": {
"enabled": true
},
"trash": {
"enabled": true,
"days": 30
},
"theme": {
"customCss": ""
},
"library": {
"scan": {
"enabled": true,
"cronExpression": "0 0 * * *"
},
"watch": {
"enabled": false
}
},
"server": {
"externalDomain": "{{ external_domain }}",
"loginPageMessage": ""
},
"notifications": {
"smtp": {
"enabled": false,
"from": "",
"replyTo": "",
"transport": {
"ignoreCert": false,
"host": "",
"port": 587,
"username": "",
"password": ""
}
}
},
"user": {
"deleteDelay": 7
}
}

View file

@ -0,0 +1,7 @@
tz: Asia/Yekaterinburg
tag: v1.119.0
openid_button_text: "Login with OpenID"
openid_scopes: "openid email profile"
default_storage_quota_gib: 20

View file

@ -0,0 +1,8 @@
FROM tensorchord/pgvecto-rs-binary:pg16-v0.2.1-amd64 as binary
FROM postgres:16.4-bookworm
COPY --from=binary /pgvecto-rs-binary-release.deb /tmp/vectors.deb
RUN apt install -y /tmp/vectors.deb && rm -f /tmp/vectors.deb
LABEL org.opencontainers.image.source="https://git.comfycamp.space/lumin/homelab"

View file

@ -682,7 +682,7 @@ log_timezone = 'Etc/UTC'
# notice # notice
# warning # warning
# error # error
#search_path = '"$user", public' # schema names search_path = '"$user", public, vectors' # schema names
#row_security = on #row_security = on
#default_table_access_method = 'heap' #default_table_access_method = 'heap'
#default_tablespace = '' # a tablespace name, '' uses the default #default_tablespace = '' # a tablespace name, '' uses the default
@ -744,7 +744,7 @@ default_text_search_config = 'pg_catalog.english'
#local_preload_libraries = '' #local_preload_libraries = ''
#session_preload_libraries = '' #session_preload_libraries = ''
#shared_preload_libraries = '' # (change requires restart) shared_preload_libraries = 'vectors.so' # (change requires restart)
#jit_provider = 'llvmjit' # JIT library to use #jit_provider = 'llvmjit' # JIT library to use
# - Other Defaults - # - Other Defaults -

View file

@ -20,7 +20,7 @@
become: true become: true
community.docker.docker_container: community.docker.docker_container:
name: postgresql name: postgresql
image: postgres:16.4-bookworm image: git.comfycamp.space/lumin/postgres:16.4-bookworm
networks: networks:
- name: postgresql - name: postgresql
volumes: volumes:

View file

@ -1,199 +1,211 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
61316332623931633333656331386131633431616565663736366663353566633232646163643538 33623562616365373036323031306663353630613366396265613134306632663230363861643935
3435653061376133333636303166636532663639306134640a353934343530323330393762616161 6536396139623338316366643235653461333961363563310a616630633938366264336661363438
33343633393836623630323261396632303832616231666233643665663837633565613034313163 63373439643263326664643966353839303430626433306234373937656530303034366130663032
6333333865316336310a646332323062343537363162373062653938343036666264653938653433 6232333563383265630a363462633264333538373830373961656235356139653332373866376633
37393336303766383335653532383832313138306561323735623631643934336537616264383038 34626138346237616230363239393533623637643565376237373365373065623564636538663736
36383336343063393335396432383431633066623339653634656533383137646430363430363964 36316431316430616661313366643138366530646238343330623161663130373138386438633731
39663964376464373137306562326234346231326337333861666139626361643431643437303663 63393065336530623231633335393438663733636630383363396364663566333239326537383434
36396436626630353037646130626261303239383638663132336332323264313431303565353061 66663662653735643833316663616335386363613130323766656565613136323731383464626439
65336465653566393861306430393463383562323935663561303563643634623034636362313133 34393732386437393431303363356164386631656630373562363762656563663530376665623531
63343434303039326331636534303363396639356161663533666234653164613362333935333738 62386666316137613665323032383936653866313535326162376238616436393062353734386633
64383563363338376331653263396431613631363438356435316235663530343332346230633632 65623635353237666465633961643835373430616539643464663033646132383631306630663964
34616161376363336465383034393966303231626161343032356536363265373961623634633031 32303034373438613861363838353731386437356531383066363335613534663461613661316235
39363232356338326166376336316135313636366135343633396137383531363965653233333533 38616134353334613637646237653131653532376535386338656431303235653837336131316466
62643135643032633961326239303762643331393835626633353237396432313239323438346536 66633639323037653364303932656638623130333039346166383937326361336336346135366433
37613535363536386630343432366466653131303664363865393863343234656434373030653463 35393562663034363335636236616561353466343064343564616365643964633337316432303530
38363366643337383934376239333065373462613362376564303364666231363766666439363861 34633638663635363766393161626362653235363264643661643364366230313162363438336133
39633334343333666633323733646431626438633162356336346531663064663137396434393331 33326235396332346431616664343731313835323166326330666131646462636566633061653636
31356361653066383838353432633863643966326634613361373464343637643766356262366238 64643535616363646439386534303834633963383533626530393739323334653335336436376132
38343931313239316165386237363531653362313034333865386565373134623230623935383662 37306137353238393465333664396439636233336139313562303432303637343765663634326536
38333832323833363739653961616637613263393339323830376266626130383334306139353233 62343232653764646534363332326364313437396365646139636135326564376563306133383235
64383037386261613265373561323932666339646666323962396361643062336162646466343135 63316132386437313464313338656531643366633562356166643733633934336565373464343133
33313339313330333339346263386361653937363836626638646630666231326131306132663763 32643366613236636461363734623332623064663534623433393765363565633465653532646466
31653163363034366439336233306231303738656531366630616539633137353334353737343566 65353639663034643532326130383137626235653036353130643439373062326436656434336339
62316534396232303531613236653833313966653734666665393066313162386463343533663539 64376266663733363932333930653962376132636132393565333936386462653465643334353065
61363166363163346531653039643036376561353534623536316634356233326331356362353865 66653565353665613738613663353534336530306437346237373433656164343936383061383163
37363961353239353862613763333431313632353030373038616230626561346532383661343462 66323464346363353537373961363430323862373062323665343638373264616133383763356233
31313461643839643462656362666438316532393939636266636237303235333738373335326666 30626532346161656134643939383165616337383831643235386239613732656238323939353331
39643531643064393266343465333565626636346431366239633434303436613466396566343832 39376436386332666265643434343461393264303232633962323362653931326162396333393237
34653739633639653864616637333137633861376366626266663162616366343238306634666332 65333336613363636461356562316336653839386632626439386439393133623261666564643763
66353864353438336161626561373830353565653932636666303262316561306637373539336639 39373365633131646636306332303963663964636163373433663062303834653662363366303430
61626538623131666661353366643432313035353466393031666561333362353263366161653233 66323263663635336565373566633835336163373561373330633032316665616235363932363062
31353135613165663837333230376432346663306632623930636238646664663934653532343935 62336563396534363835656161626164386136333061666337383138613338643662363666653434
34346630663132323333353461303235393462316463336334376366643833616639396533356434 62346364616365353964366236383936343462303931663862383763303562616534613535636536
31613437393466346265343762643864376535303264633936333531623539313934336163623636 33636364373933363431306530356366333939306136333037376531633164343963313466656538
33363063373762336464653266663264303264663035646262386431346565393834316165383131 30356634363564346563613264653536323933626636386632363365646531343736333531636132
33636637333162383161626139316466616166643330633463323665643034643832373362393936 33663034333837363561643136303262663864363434396435623836623630313830346134653630
35306432613664376366663937613532356436353666353137643436343163623434366263626266 30396165353864643065313562613038373137323562333262613338643937663438626539663666
63643432343937336337313636333764386433386435653438316330313634666166646135336139 31663230303363386230393463653133653365613639633362376533366235326563356231313938
32353432653963363263346234313734346466613133633538333964633334366436613265323738 65316432653865653861633634623730633335343534613133616339306437326432396333646566
36643336356261306139383032373466626462663236393438363338306137383331333432356266 63626337623939356338353438306661346430313738383563323966646363643034613261623935
62386232393662396439326237633661386631373534636335383361303365613961623130386161 33313836316661306264363534656561613634366330323939636163393534393839656666323161
35396239383163666562343534663937373331363938353539346436336661386236313432643763 64303030633764646234366564393638616639386164643364363762346633366565303465623833
61643633326334343465623636656135643961333561623035353531613264363262313061366330 30663866333737393163643738663236616430386535666261313333366632343463366637356230
34633133383164363465326232363936656634326562663664386363653931333563303136663732 31326331643036623465633434383866643937636462656238653462396265376531313962383337
62633162643235303663323834363832353936336637383137353534393233643861393139386231 34383966353132353864643666643466343938373036326530643337343435373065333638363766
36353433353939313066333461366661316238313637353962646236336134623066353761343937 61636638613262613736373431666237306163613463396334393139633366393566616538623039
64653265656431306639626139313063323831613837313431613963633036343366623137326666 35346564366261316565323135626531363532343338373966633532666431643835383765333131
38396431383036323562333163373339383736636534303337626635643262313439323166666565 38613562313430326339383264666361393438663331383633396239326433623531303539363232
39353065663762343239333732353839313663393936666136663338343532386435323563623265 63663063643763613037613261336666633634366562386630393432666439323935353230386137
61346230326165303234323439363034653466643936366132366437313062383031646630386636 64303932633230653531393238393839343832303334336131396536633139383438346235663035
37336533336264646464393530363531383631366332393238643866356662623363646434373137 36626464363535346563396365323562643939613830303562373636636632373463633364383862
61633064333131653535383436356661313537633330396265303163393034666631306334386164 35373062643162386465306430666432323264363362336632353736653061343839383130376331
36353630663062613934353633336430646136393433363732363331663164373765383463616135 63333237333235333730666133613063383234323434653938343562373932616665613631373532
31633962636466363162626163353139643138303534646662343133393738343830616239393632 61653434623465663165626138386339396432616636656561356165343164656364396430333238
37363464396438313239363962653364623937336339326264303831643031393164396234336561 61643036393434346633316332376364356233633335633131316238393232653063643963316232
35636635353665353534633065643762616638313031653764323163303462613332633665316131 37376436363066643366326263386663333731353534313538356661666261303862386232336164
37353366363066313735396134323633616262663335343431383934613539663661346463646434 37633962653766343866383431626534666561373437363430636233396232316663663133376137
31363737373261626434373533626464346630313766346538383137613733363130623238323736 39396338623532353734653765663038316630643038623932393664333063363838363632333465
33396339336464333365336361333465366538383463393635393037306564386461313261393337 30353836613736326232653436346566336533373838353532623764613864323536666566643236
64373034616261633034616630646638643065656537353930663666373336396637363137316434 36656564313862643131383333323234666439353664376130353632306133303131393934333031
39343631633339623561306633393935316162386436613232376338623664353630333264643831 32663062353532386238373364663233366438313037613731643562303739633162393362343832
30396133353364323865333935356662356661323762613533303361666462643839393361653865 32633761616561326634333731653934626231613265613630373631313565633062343261356436
63663263376631343564396262313037363535636635626230353137313833633564356165343331 34336362323865376336303938633263323333626339663265623562323837373031653937316631
35663465306638313032643233303763323738396165663661656263393664373037336333636134 64396530616538326236636663633030656434393436303439343864343766396439386535653136
62613866663736666138613262386137613930306431333936666233363131663136386237653862 37613832613636343433633165636339636132616631653265616163356639333734666234393234
34363739616437323638313965313365303733643730626432316264383533633038373564633533 31313631663337303632656264333336343564323466333264343938623530333966323736646262
38666636336136333963313061336139626336613765643864613734353266336539323036343039 62333137333833353033316132376266643835346564623762656533336365363266656566376533
65386338653461313531646136373666393165613136353431613133666532643565646334303633 65323430366165323230636637646461306531306365383763323566376634656436373635646666
36313435306636323361313362616666623138333039346138326361396438633533316639616538 31333866396637333331653337333066313334363861343030303663323964303337313533643963
62626632643562393331663231363262646166636134386130646339623538393766313332663532 37666537336665336138313239313436316464313232303333346262396435663837313737353763
64643131393834636439376463323835653639323037323530663563343734313163646266336539 66373139313831653730663236643039313065363537303236346138373166646433616632323766
37303365396334653439303634313431323337346238353037376461373933313463343464343135 63383133333436383732343333376133353632376162636365613534633634643661343630626230
37313332653839366139313034626136373861666530666639396438383963623763653239366636 64363461383131373335623835353435363336366462366235646333313633333730393835363434
63383333303562396261653930663437303262336531323433666239666563666162393433333139 30313465343931353135323632336234316339376563333666623362326262326661326231373861
62343031656537303939616164663863356430383535653532633531393566653166623837353230 35323532633037373864393265376561373438623738626338363535393434636336643732623561
30663263373763653962386337363033646562336332373236346137316264643732366564363639 38393431643630373566366432663862303164663537356462656566613731323731643233663830
32353766346566626564383664313535613138356461356237643465363163613736633631393836 63346665303531626532613666636161303962366139313362366434633939646138633165656663
33323036623464353261636336333462353033613938623261356535616431643734663830303436 63373137376137623939306164646436396438666131626330303262626435386339386536356139
36373235343532346362666433323034353437623531376634633134656462326135376633633131 33343063383165623032633932626262653432383438303434646566356162653733356532383535
32356163663036373439346463646463323763346539333133393038376464636136623461393133 34313262393563393133343234356236616638383137323639633930323631643262393139323430
36666562613631343665303836366166626464646166613733623662313031396530383933323632 39393533636231623962343935346333636536376162633433343636663461383932343665306638
32656337623564633162383130653930343766623261646662663837306538353531373436353539 65326136623236663066666134393761663338363437303439643563326535656631653164383039
34306639353436386665306364353432336230663830636465346232666239376662343164303763 63353938353432336662306233666265656333306230333232333161643732356134663738373962
37396664623764633066366330653332613237656437313332396532313639326235633133376262 64646635323331363965373664366632633833306631346164613462633433616532336430636532
35393862653530386438656562353661326430306537336439383437393935303938353764663864 66653837303339313137333731626665653562626232383731313930623963313062663131666264
64373931363761396563306663343932643530346236633736363530386133373838346637636436 39393532356438626561613534333331343438363466643136343830333338313764636166646166
33363234316534373161323861363066326362326464373462623433366438663861613230646639 35366165643439636264336433643063363763383365633739666439366638663836633265303832
31386165356137313233303534613834653966383736306239336435653933363836396239386435 30333061333436643438383332313031323761333832613366383363313834363239663964383361
32656236613366363633353934636533343661376666623964633935633235313062393836333034 39333861336663663535303633376337376235363462666265313938316265663839316666666132
35303663653135366134376466636237373330373664623934343163353431366534643338613239 36626132396264663738613231646665646430366637633331623333326430636462653463353237
31326531323934613236313866613632333338323834396464346635663135373030373337643161 31313732613339306265613264633361306234656561356237383366656532353635333863653566
66386262383232383235626239313035376238616466613064626561663135363661353035633363 61646237393666623531663063663962633535316436613830613134316363376438386666366138
65656532393765613439356134333637616566306532383163613664353034323461356231316531 37356139366163623134633030333334333236643335653135363930356465323863353638313330
65613633343562613233303563623463653539626130373863646132306237386130333035383433 66316662653730636261333666643539353264396463323930633538326266303132313039346464
32306662666431313738343135613064323063303066646136633538353266623339323463633933 37623237643439356233646433616530616431396161643965643037313931666237623733343530
36303038373264306634396663613835663463393264366162363633336538383831613233313966 30373766316563633433343165393232636637356538393930373433636264386562316138343636
37336330376438623535396630313830336565346339323434363733323063643631346564393564 36646661323534326533323532313538336531623736623830633432656666666238356462643131
36366137633761633932356137386661323831346130623465623332373566383437613461636633 31393138646538646137623138323766613464323861613530356438313862643436353066303664
61376565366163633765366536373365316631316531323735356233343131363366313062643962 32343434366435643338623765633133373039303165306334653035626365616337613062366534
61366461366639623363633135323234316237366263653563386634316335386237363638613236 39363435363662643761393330383733306638306139633634326663666363633437306163313238
66316238313962653230633930663365643631666665383630373930373063343237393631393762 35346333346665353263383562316664666136663461646533653636643431643066623461613365
65633030643634356636623931393832666530336536303430323761356433356562663733633031 66616630666239616435623030353635333235363433653734656533343463616366373963323239
62323438323466623836313734646637346337633632633532393130353536396234363336663639 32653863626563363363343330646631633836383435303031626335373063616462643530333961
63636463323436363835333737613435376231336634646533333961646532666539346332363362 63643430396166623364633738386162613037363633376136306561383766636534353234323166
30643335613537623131346235303636663837386661333737303131636130616663626166613933 64663166613466313664346330333032623436613738373832646138376336323062346537383236
65386564653332363635653539336630333530376439613161326233356433356262623630666330 39333464346638666438306165346435623164663435316161306334346133613939656538393935
30343337303832656265313630386539666165373064356530323736393837383130383864613666 66653232666337663936666533393036366433376637366534373338616231363639383966343531
31333664383862373564626363323365643236653762643861316562306239336230323838376430 35383466633633383866306533303337656237336539653062643164316436643938353436356664
38633961356462313064353432623832663139616131346266613237363861313835373532396634 38383365653937316339343337626631396233616233383534343735383862343766666536303163
31353163353334646532346236353838326339386233666336646662336132656533393036633334 66323531373537366166623034616163366662656333313630313632323337616535646435343631
30326138626665346661306433626161303963396162373235363166633032393430343730613638 61323063393134643063316234313032356161623964653665333731646338373438393034396534
39336135386461643538393136616436393432383036633036373865386230626232343236636633 35663630373061653864393733376561636263343165653933313331306639656534653361393666
32393938323335333431343962383139613136656534613136636234633961373263336362346330 39656135393466616536653435646364383863396639393738343766343664636330613239623231
32343066636237633263663530313239303438373431313664366362323433393366316339346531 64393265373365333632626435636132616136343662626237393938633436393564383063353531
31326363363939373032316234333334653161356134376461343764636331623565613735663561 30303764376365313038346431663264633633646137613237373336663230656231643334363330
31323039373136383839323061353036353238653436393062326135323464643933653764663832 65666166373066613764373137643538396661343465323231313061393834626265303930633462
32353134623833323830383038333936626230643534383734326134303861633865393564396634 30643531353236663061653539626332656638353835623664663335393930383738646166333637
31633836303136316333393731666633613865376164643337636137386431613239306566623637 38363036366430316564343035373934636130636330333261646330653262306636633765653835
65643663376466616435306461383034353465343031346133653633313666663436646262616661 66396165313461633765643731333166323365306135326466303932643337643865396536613565
62636438633032646564646565316130636135613931366238343561386134306136393237393538 33613036656435636633313162313939643637316431323135666535313262383432386632373235
38393762646332316162333935623564346335303138333333396330346230656530346434376233 31643933643365353466383666636332393366363934336330633165306364663063313562396634
33666135373630363538653736366162313266633731636438393761346537613232393734656365 39383330393234313965373761316364643965646561623233656335636232303536356137363233
66663465316365373262303137303366613466646238623333326233643735363939353831326132 34363263613363346531666166363661633837303065643366386237326662623064353131313863
33613736383861623861376233346633376362663465353531303463613934663434353630336330 39633630636435326637316635616166653265333565613035653936303539353336326533636163
65313135366161356162306531656530303464666364666631633666383633373734366538373831 39353532343566656431343462303638613063306539663935613633633734313666373866353939
32356464386663353638636165303635323661626464303865353866373037343264303436343431 66656633336266316562616339663866373863626461623336323932613735356432636339376264
61636433376431633539303735636638643233643866343065356133643938383732376465663139 35356561623632616636633332663862633163663339363235323763343830363566366334663336
35326266653036333931663161666531616465666135643537613936356262613237376636363861 33383939643730396531323064633033623832363565343638636335653962663164353536353732
34623762636338623238666563393135646536396463386537313937643962343338316535363932 65343735306166323436653439353438393763323437343666313837343330376562636236663639
37643539663730353861323861346666376434373934633038616436373636663931393261303462 30336261383934303261663762313363303332633030633864396137653832333036303932623962
33636262376334373036363064363463316361613965626364386332306631633232313439333864 61323431336261623937326139623666616233333134343330626338333763363336663333633364
36396539613733383563643739363334323537656161656362663638336632376131383865303434 35636233636161656537333833646463376331396235376431633832653535366165653434353431
61656261303837643239643762303862353362363833623737356134386136323131373835653333 63363262396465623834353339366233373135366534346166376363363130306266643065313336
63353833623265336561396362386332666230323239613762643137643530306533386438376137 33623335653061363865653365336661613131666435346233656433326364346461656235366161
35643032653733316539623962303166666533626234356236353237613465663233363866393166 39353862336266323534353733633037653661613062356462336631626335626163326239313238
64663966373134636130383237643239313430313436323637313434666366386136393735316466 62653437386435333532633262306466363033653661343734363337643333643161616135663062
61366437653365323333303362383634376539393130333234366561383732373737396334613264 38343537333532653632303439396439313733633431633039646133666132366436386333366338
66613835366131633763326365323531373934653266363362393664353366643035313062363532 32633933356536666339303031313634396164333863643134363037623637633061623036623866
62326639373934646132646332616437353831653834373366623461343531613631633265336464 61656266313236373737653136643938326563303663323839373364353066323332396139363066
30343864303562323430666538656239393530306664313464623034333031623234393037313430 37333432643238323930333735303831336665633832323035313032356637303862373463336430
65383135366634326263653030396132396539666332313537613830613039646361326133666362 65356561326664353330353266393763626638623065333538653532373431666635306630386666
62633235633139393361366264366536363733303266363530353635613165323833303863366238 62313532636464323939363631373339623535616132353132326263383430613733633761303939
32316561623738333432653666616235353730393734363532363131336136623361346664326138 34646561343366653735313331633363363438313365633832643231353739316163666537343462
31346661363038396363646534646261346433376239343761356531383364303062393831393062 30383462636135616232313634363632633862663638373232356563623039666232656363336432
38383361633431303661353737626531346439363863306263643337646231653033653635313730 64643066343566363537396230326336666163343239316166376533336261306435333339386434
35623734663930353930323062303761666131323163656561306432333036626139653937326338 31373030623664623434656462626231636532366333306436666433303038333431386232343839
64323265333433363730353366363332363737613438653334353564373866383861366463303930 30613930343665643835316264613231336538626536316230313361373337313431383633306539
35633531373265323363633066363938343561643662633262626362623466303931653565363037 38366165366133393161326563393533366261626262653565656635383138323734316664346433
64303931376337326339393966376133383165373231303564393338666639653661623866393161 35303135396436393334383435656362646261303466613233386234623965386539656664373032
39386630666630333261653764373131613237383038613137346662336131623038303661323863 39656466363232353038373334653662366334643562636130343736323238663832383034666162
35343235613265333531353761636666323261636638636234306566643338313738653565643234 30383663376364376137613937643032653466636632326433383364383239333634663164356163
39613930353666356630313938313165303239663962616361666238626537646634643331626132 30613265303265636566633666653636313833646262356431373032653964626138396235306433
30333033353130373963373134656530313131653432643936323663353863303234313738396638 65353161633461633866313264393834653638653663633237663730613230636139623236363038
63373630623166636536333438636631666139363837626339666361343962656365396261353934 36323735653535313733316164336238633333313033653433356138623465633334653335636265
33646232303737616238303637326530623733326431343238383766653764616635636639333630 31356666346131323466353333323632313237343839646661323432636463636531396436376163
30643931383464353962336338626465343637663137633365303366663937356531646330366465 61666136326164633935366632636339663632346634636235646162333730336265623464666565
35396435363365393161636134356162396639313362373831376463636630653437623531396137 30306238366639633735346231613634363938616339383863386334613537383264316531643862
63326438373639643333366432383930393335633666643664326434346338366636303866626535 36393461663564613762313733616661303935373664353632303365316331333033323464623539
31346461343764363039326237366134366236346437653930353133343234346264323662623962 63353038393932303363636464313937646266613833383962636461666661646362343439316135
32623832316665373034613435306438636235666638633864303534366261346463363163636666 31353932633862356563376630326462363839626165306239623135653734333562343437613134
30663534373239393661313462653630393735386439363633373466323839653634366430356234 37393262333632306334666361303232316636623635333862616335636139363436646432616165
31306463613937663330366665616437376164336234646437396564313937336432373230653939 31343262386431386162393732306438356461633330383333653831363237333265613638666430
38633236393463366130323766656132313932376636383237313032633661393964383164323265 37623133653231373461383462663930653935623131366430643530323532356563383938393063
34346430326465366239373230653538393962326434386136653134396239346263373436306130 65353535333432646266346462646630646262333639363562353266313763616264353564666662
65383664333237653562383333306133396533313638656139383337346461326335313065386333 64656438336238663966663434383431366530343033646233353761316638313763646630376465
32363863636238343438626564646265383132366666323931633831656531663630396138313837 37383565313764653564303662653235616462636334363638623930363334646638353132333334
66653437653839326439306631333365316434383233613036303731373730613764633730393636 64356136383136616166633138343166396561373933376165396634653763336664336265353730
38316564356533303235323361626139313566363136623363643638313864313261666261623134 37356134333638613664303466353866313134366235366230393365356666653533633834613234
34336161393532383634616637303430303130343464303233346661316135323136616361623636 35353231333263336630343830303933303935333465333962356332666235346138613530333133
31636439633438356637373464623163353135333439333861303965646563376462333938303430 66643535663032333438303138653430393261323831623034333430626464316432656266316433
36623836616334383836636437376237353330373437636233353862616465613966356463366231 33626534666536313633303430386231313035333833373831373639653738373031373532323136
33613233306237636661616565356166336431613166653764356333316433616631396465336230 32306433373762353734353635643762316531333934333064323362663161306330353966343666
36313038626535613862333533633538306137333331613463376430346562373036363963313063 63333832353332393738646433643661316633336535626464373933643732626361383031323363
33393166666138326534616265333764636238313432666663376366306535303166336238376363 64323662393733303133643236366365623363326263303535366130356530643162356434616663
32383435626436323634343663333265353562666239313236366330336638306237653464353664 39383566313261386237656634373761663630313662393235323330653934303438653134663831
66396435623532393335646139303832303361356634316539383539383035613461313331356265 33613636393633616365313566356536333936626238346635396539323062653136613939376638
64613434363830323963653437393662383865396166353130323462646432656538356533666338 66623133643163613361643435376461363239363639613039653166323432623030373761333931
31666138313339343232303438633938383466633962323838643161633431353766356463333765 36613965306230356466303033366663636433616630316133656164356631363531323139633839
62386537396533343762613263393866373433383562313531666232326563313730363936373064 62653832363838306238633062396230306564643038373565643162396136623232633730613735
61666333633039643365626661306236643238383230373133386166326462636461636366383631 32343365383838373834616138623534376438663238363065376630303339633336393066353062
32663238633037313538646637626536303539666436653662333563633836653533633361353030 36383132326237366231316433636130363033386263373539663038643861356637363466393930
62663434636330646439383839343132386539653262376436623463323639653734333136386130 62303937643864373561373732306563313434363334316630316463636531313963343233306666
33333936653432363466353533383137386565313739383938346331653066383165646362363532 66343366393331636433623762393738396264633034646539643133316633643934316336353634
64386661323433316632623037336231336136363931626266623136623930666236633433616265 65633134373132323837326539626336653532363366646233373836353439323631356533356233
31653166383937643666623062653830326462336432346136323463316362653139666431323331 36326133623762306539626534633333336130653961376635383163646436363061663236623839
61363133626131393735376131396234306464356138656564333530313438653432643536613238 33313635666131386433313332616434356530323233626265383038656336313331383462333131
39613663373664383061313237353265333665363837313435653565663735386139633963363832 33653134656264333662623365333231373937623139343434373931663966663238633032633165
35383364313034353465653935626238383034353439306265613064356264653962356539393639 62656537663164643164613664613763356233623064656132623463613237393662633662386430
32613135643162653637656633643030373963393064646433336561313232323335633231313566 33323731306464353338613564396533633630333462396330346166636639343465376139633062
66356166666362623337653639323736653261353361373662656365643039303865366635646534 63393661383862316165626362373766376336363034643134643563363537653164646235653563
33333339313136393130316665323431643139373063333239356534343432663837373132336639 33616166323331396137343233633535326365613038613662343030613339363036323136316365
32353032393631373462363937326334643435663438333663613833353039663362383336363535 31343862356338663464656332303735643632303833663536356138393365663233393233383439
37643064613232663861386436393562646439643561623839653433343136616139633039643937 33326136636665653134316235616436333962623661393437666336356536666436653831626262
37633432323534323639346639333931643035313538663233623963373161633139626665323939 36343464393930623166336335623839333833383361346134646435393462626338386432343435
30666166363964383132336362343263326537393132393635316233613561353138343836333130 34323562643632306364316637383437356562323930383761313666353138396238613930363963
64316534393234613231643033643234653339623063613534616138623835303830376662373133 65333533666461323334316533353933656235333933386162613736336636653334373536373535
33636261663935393363386565353336363161353364393130646534336337376364626265303730 34353563393866633562653266666132383230366533643835383135316566306434376339373831
3163613738316230393838393035396134613233356237633735 66346261633661336533353163336332323631313034623735303635303637363765383930356365
33376361643135626531366238343730626365396634623935363639653035323864656465613434
64613763626662653661636562306230666135383136626432613262333361643266663164663136
63346430336663633035633434336362393465343239383436383366316261653338333764386330
64373064386263316134383035333464353464613839383633653634363234373237383733333333
31653166353830643636303933326433326466383535393738396535613632363432656335316561
32383764323561316439616336393365343162613364663036303365356339336537386161623232
63613261346234373661313962666536306361666433633965333337646136353766383334383938
62653462343832653838643134653735303333376437373266663838653737393261336639393334
64313534666163393262633465633437666337313034393635353865396137656139356439346265
35336635666437363565346438626137336336333432646266386238646465616137633635343234
30343536663730303530363839613037666135663261353137323632333537613032626235643333
6530663563333539353235313730353737316366383334383736