fix: cleanup jobs

This commit is contained in:
Nathaniel Landau
2023-12-24 12:35:50 -05:00
parent 394b34a5d1
commit 7bde47d43a
11 changed files with 809 additions and 740 deletions

View File

@@ -14,7 +14,6 @@ valentina_version: 2.1.0
backup_mongodb_version: 1.1.0 backup_mongodb_version: 1.1.0
# ---------------------------------- SERVICE STATIC PORT MAPPINGS # ---------------------------------- SERVICE STATIC PORT MAPPINGS
authelia_port: "9091"
influxdb_port: "8086" influxdb_port: "8086"
tdarr_node_port: "8267" tdarr_node_port: "8267"
tdarr_server_port: "8266" tdarr_server_port: "8266"

View File

@@ -20,6 +20,27 @@
"failures_before_critical": 3 "failures_before_critical": 3
}] }]
}, },
{
"name": "jellyfin",
"id": "jellyfin",
"tags": [
"traefik.enable=true",
"traefik.http.services.jellyfin.loadbalancer.server.port=8096",
"traefik.http.routers.jellyfin.rule=Host(`jellyfin.{{ homelab_domain_name }}`)",
"traefik.http.routers.jellyfin.entryPoints=web,websecure",
"traefik.http.routers.jellyfin.service=jellyfin",
"traefik.http.routers.jellyfin.tls=true",
"traefik.http.routers.jellyfin.tls.certresolver=cloudflare"
],
"checks": [{
"id": "jellyfin-http-check",
"http": "http://{{ synology_second_ip }}:8096",
"interval": "30s",
"timeout": "5s",
"success_before_passing": 3,
"failures_before_critical": 3
}]
},
{ {
"name": "synology", "name": "synology",
"id": "synology", "id": "synology",

View File

@@ -0,0 +1,17 @@
version: '3.9'
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
hostname: jellyfin
container_name: jellyfin
network_mode: "host"
environment:
- "TZ=America/New_York"
- "PGID=101"
- "PUID={{ ansible_user_uid }}"
volumes:
- /volume1/pi-cluster/jellyfin:/config
- /volume1/media/media/movies:/data/movies
- /volume1/media/media/tv:/data/tv
restart: unless-stopped

View File

@@ -71,7 +71,7 @@ job "jellyfin" {
"traefik.http.routers.${NOMAD_TASK_NAME}.entryPoints=web,websecure", "traefik.http.routers.${NOMAD_TASK_NAME}.entryPoints=web,websecure",
"traefik.http.routers.${NOMAD_TASK_NAME}.service=${NOMAD_TASK_NAME}", "traefik.http.routers.${NOMAD_TASK_NAME}.service=${NOMAD_TASK_NAME}",
"traefik.http.routers.${NOMAD_TASK_NAME}.tls=true", "traefik.http.routers.${NOMAD_TASK_NAME}.tls=true",
"traefik.http.routers.${NOMAD_TASK_NAME}.tls.certresolver=cloudflare", "traefik.http.routers.${NOMAD_TASK_NAME}.tls.certresolver=cloudflare"
] ]
check { check {
@@ -90,7 +90,7 @@ job "jellyfin" {
resources { resources {
cpu = 2500 # MHz cpu = 2500 # MHz
memory = 700 # MB memory = 750 # MB
} // resources } // resources
} // task } // task

View File

@@ -45,9 +45,10 @@ job "overseerr" {
driver = "docker" driver = "docker"
config { config {
image = "ghcr.io/linuxserver/overseerr" image = "lscr.io/linuxserver/overseerr:latest"
hostname = "${NOMAD_JOB_NAME}" hostname = "${NOMAD_JOB_NAME}"
ports = ["overseerr"] ports = ["overseerr"]
image_pull_timeout = "10m"
volumes = [ "${meta.nfsStorageRoot}/pi-cluster/overseerr:/config" ] volumes = [ "${meta.nfsStorageRoot}/pi-cluster/overseerr:/config" ]
} // docker config } // docker config
@@ -61,8 +62,7 @@ job "overseerr" {
"traefik.http.routers.${NOMAD_JOB_NAME}.entryPoints=web,websecure", "traefik.http.routers.${NOMAD_JOB_NAME}.entryPoints=web,websecure",
"traefik.http.routers.${NOMAD_JOB_NAME}.service=overseerr", "traefik.http.routers.${NOMAD_JOB_NAME}.service=overseerr",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls=true", "traefik.http.routers.${NOMAD_JOB_NAME}.tls=true",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=cloudflare", "traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=cloudflare"
"traefik.http.routers.${NOMAD_JOB_NAME}.middlewares=authelia@file"
] ]
check { check {

View File

@@ -51,7 +51,7 @@ job "promtail-syslogs" {
{% raw -%} {% raw -%}
clients: clients:
- url: http://{{ range service "loki" }}{{ .Address }}:{{ .Port }}{{ end }}/loki/api/v1/push - url: http://{{ range nomadService "loki" }}{{ .Address }}:{{ .Port }}{{ end }}/loki/api/v1/push
{% endraw %} {% endraw %}
scrape_configs: scrape_configs:

View File

@@ -3,11 +3,6 @@ job "reverse-proxy" {
datacenters = ["{{ datacenter_name }}"] datacenters = ["{{ datacenter_name }}"]
type = "service" type = "service"
constraint {
attribute = "${node.unique.name}"
value = "rpi1"
}
update { update {
max_parallel = 1 max_parallel = 1
health_check = "checks" health_check = "checks"
@@ -19,7 +14,14 @@ job "reverse-proxy" {
stagger = "30s" stagger = "30s"
} }
group "reverse-proxy-group" { group "authelia-group" {
constraint {
attribute = "${node.unique.name}"
operator = "regexp"
value = "rpi"
}
restart { restart {
attempts = 0 attempts = 0
delay = "30s" delay = "30s"
@@ -27,28 +29,8 @@ job "reverse-proxy" {
network { network {
port "authelia-port" { port "authelia-port" {
static = {{ authelia_port }}
to = 9091 to = 9091
} }
port "whoami" {
to = 80
}
port "dashboard" {
static = 8080
to = 8080
}
port "web" {
static = 80
to = 80
}
port "websecure" {
static = 443
to = 443
}
port "externalwebsecure" {
static = 4430
to = 4430
}
} }
task "authelia" { task "authelia" {
@@ -64,6 +46,7 @@ job "reverse-proxy" {
image = "authelia/authelia:{{ authelia_version }}" image = "authelia/authelia:{{ authelia_version }}"
hostname = "authelia" hostname = "authelia"
ports = ["authelia-port"] ports = ["authelia-port"]
image_pull_timeout = "10m"
volumes = [ "${meta.nfsStorageRoot}/pi-cluster/authelia:/config" ] volumes = [ "${meta.nfsStorageRoot}/pi-cluster/authelia:/config" ]
args = [ args = [
"--config", "--config",
@@ -111,8 +94,13 @@ job "reverse-proxy" {
host: 0.0.0.0 host: 0.0.0.0
port: 9091 port: 9091
path: "" path: ""
read_buffer_size: 4096 buffers:
write_buffer_size: 4096 read: 4096
write: 4096
timeouts:
read: 15s
write: 15s
idle: 30s
enable_pprof: false enable_pprof: false
enable_expvars: false enable_expvars: false
disable_healthcheck: false disable_healthcheck: false
@@ -127,7 +115,8 @@ job "reverse-proxy" {
issuer: authelia.com issuer: authelia.com
authentication_backend: authentication_backend:
disable_reset_password: false password_reset:
disable: false
file: file:
path: /local/authelia/users.yml path: /local/authelia/users.yml
password: password:
@@ -226,11 +215,47 @@ job "reverse-proxy" {
} // task authelia } // task authelia
} // authelia-group
group "reverse-proxy-group" {
constraint {
attribute = "${node.unique.name}"
value = "rpi1"
}
restart {
attempts = 0
delay = "30s"
}
network {
port "whoami" {
to = 80
}
port "dashboard" {
static = 8080
to = 8080
}
port "web" {
static = 80
to = 80
}
port "websecure" {
static = 443
to = 443
}
port "externalwebsecure" {
static = 4430
to = 4430
}
}
task "whoami" { task "whoami" {
driver = "docker" driver = "docker"
config { config {
image = "containous/whoami:latest" image = "containous/whoami:latest"
hostname = "${NOMAD_TASK_NAME}" hostname = "${NOMAD_TASK_NAME}"
image_pull_timeout = "10m"
ports = ["whoami"] ports = ["whoami"]
} // /docker config } // /docker config
@@ -246,7 +271,7 @@ job "reverse-proxy" {
"traefik.http.routers.${NOMAD_TASK_NAME}.service=${NOMAD_TASK_NAME}", "traefik.http.routers.${NOMAD_TASK_NAME}.service=${NOMAD_TASK_NAME}",
"traefik.http.routers.${NOMAD_TASK_NAME}.tls=true", "traefik.http.routers.${NOMAD_TASK_NAME}.tls=true",
"traefik.http.routers.${NOMAD_TASK_NAME}.tls.certresolver=cloudflare", "traefik.http.routers.${NOMAD_TASK_NAME}.tls.certresolver=cloudflare",
// "traefik.http.routers.${NOMAD_TASK_NAME}.middlewares=authelia@file" "traefik.http.routers.${NOMAD_TASK_NAME}.middlewares=authelia@file"
] ]
check { check {
type = "http" type = "http"
@@ -282,6 +307,7 @@ job "reverse-proxy" {
hostname = "traefik" hostname = "traefik"
ports = ["dashboard", "web", "websecure","externalwebsecure"] ports = ["dashboard", "web", "websecure","externalwebsecure"]
volumes = [ "${meta.nfsStorageRoot}/pi-cluster/traefik/acme:/acme" ] volumes = [ "${meta.nfsStorageRoot}/pi-cluster/traefik/acme:/acme" ]
image_pull_timeout = "10m"
args = [ args = [
"--global.sendAnonymousUsage=false", "--global.sendAnonymousUsage=false",
"--global.checkNewVersion=false", "--global.checkNewVersion=false",
@@ -359,13 +385,11 @@ job "reverse-proxy" {
scheme = "https" scheme = "https"
permanent = true permanent = true
[http.middlewares.authelia.forwardAuth] [http.middlewares.authelia.forwardAuth]
address = {% raw %}"http://{{ env "NOMAD_IP_authelia_port" }}:{{ env "NOMAD_PORT_authelia_port" }}{% endraw %}/api/verify?rd=https://authelia.{{ homelab_domain_name }}" address = {% raw %}"http://{{ range nomadService "authelia" }}{{ .Address }}:{{ .Port }}{{ end }}{% endraw %}/api/verify?rd=https://authelia.{{ homelab_domain_name }}"
trustForwardHeader = true trustForwardHeader = true
authResponseHeaders = ["Remote-User", "Remote-Groups", "Remote-Name", "Remote-Email"] authResponseHeaders = ["Remote-User", "Remote-Groups", "Remote-Name", "Remote-Email"]
[http.middlewares.basicauth.basicauth] [http.middlewares.basicauth.basicauth]
usersfile = "/local/traefik/httpasswd" usersfile = "/local/traefik/httpasswd"
removeHeader = true removeHeader = true
@@ -460,7 +484,7 @@ job "reverse-proxy" {
// {% raw -%} // {% raw -%}
// clients: // clients:
// - url: http://{{ range service "loki" }}{{ .Address }}:{{ .Port }}{{ end }}/loki/api/v1/push // - url: http://{{ range nomadService "loki" }}{{ .Address }}:{{ .Port }}{{ end }}/loki/api/v1/push
// {% endraw %} // {% endraw %}
// scrape_configs: // scrape_configs:

View File

@@ -71,7 +71,7 @@ job "sabnzbd" {
"traefik.http.routers.${NOMAD_TASK_NAME}.entryPoints=web,websecure", "traefik.http.routers.${NOMAD_TASK_NAME}.entryPoints=web,websecure",
"traefik.http.routers.${NOMAD_TASK_NAME}.service=${NOMAD_TASK_NAME}", "traefik.http.routers.${NOMAD_TASK_NAME}.service=${NOMAD_TASK_NAME}",
"traefik.http.routers.${NOMAD_TASK_NAME}.tls=true", "traefik.http.routers.${NOMAD_TASK_NAME}.tls=true",
"traefik.http.routers.${NOMAD_TASK_NAME}.tls.certresolver=cloudflare", "traefik.http.routers.${NOMAD_TASK_NAME}.tls.certresolver=cloudflare"
// "traefik.http.routers.${NOMAD_TASK_NAME}.middlewares=authelia@file" // "traefik.http.routers.${NOMAD_TASK_NAME}.middlewares=authelia@file"
] ]

View File

@@ -76,7 +76,6 @@ job "stash" {
"traefik.http.routers.${NOMAD_JOB_NAME}.service=${NOMAD_JOB_NAME}", "traefik.http.routers.${NOMAD_JOB_NAME}.service=${NOMAD_JOB_NAME}",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls=true", "traefik.http.routers.${NOMAD_JOB_NAME}.tls=true",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=cloudflare", "traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=cloudflare",
// "traefik.http.routers.${NOMAD_JOB_NAME}.middlewares=authelia@file"
] ]
check { check {

View File

@@ -45,7 +45,8 @@ job "valentina" {
VALENTINA_OWNER_CHANNELS = "{{ valentina_owner_channels }}" VALENTINA_OWNER_CHANNELS = "{{ valentina_owner_channels }}"
VALENTINA_OWNER_IDS = "{{ valentina_owner_ids }}" VALENTINA_OWNER_IDS = "{{ valentina_owner_ids }}"
VALENTINA_S3_BUCKET_NAME = "{{ valentina_s3_bucket_name}}" VALENTINA_S3_BUCKET_NAME = "{{ valentina_s3_bucket_name}}"
VALENTINA_DB_PATH = "/valentina/valentina.sqlite" # Depreciated VALENTINA_GITHUB_TOKEN = "{{ valentina_github_token }}"
VALENTINA_GITHUB_REPO = "{{ valentina_github_repo }}"
} }
driver = "docker" driver = "docker"
config { config {

406
vault.yml
View File

@@ -1,200 +1,208 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
33613639643135653862323161366235336566636238643437633830613362353535633133623639 35623038633764373461616362396466626463363165643435306131303963653738646362313863
6231323735643536326436616336323763623333376338630a666139643836656631333633633962 6533636431623330323134613339303362373632666136610a303862613363323738346438666563
38636630646234386632346561393533323031323434396638386562386230356630336539306337 33353231343231313636313961383165666538653932663463306366373061303436636438393837
6535643439326439320a313533396461353262326263363736313034633561663937646333343663 6461343430386562320a623836653637306536353137623661373836653735393632613134636539
61373131313034363966386634613561353564666664353631616536313531323463373166623139 32623663303365663361306634396166323461356636626365353965336630303139396666653439
64366138663433393733373161613930636361366463346330366565616463316363663363633537 34373265376132323338396137376137656530373339316339393935353633323165643262346135
65313833323264643033323832353762613730663139376232666464386236356162663462616563 35363639633733343264346330353636626165313839623239343130366332666262613134383136
35386138343235666665643264653238343766366365363730643139313063376231613135393262 38653366363264383134623534646433343963623366616638306666323562363238346361613031
34393539643663303535353637656638363930393234363039333039396232333761386138386563 33333839366663303861386133323264336161623939336262663166383165323031393663633339
65363734633833613165636564313931323839326337383632333132333931366366383438323631 33633765356331653939663732653436623164386634323064356463313038303833653865303635
33616462363830656233643763363266396237383138363137383639653233323831346336346230 31386538653138623063393831636366313330366230666337333762623536333362343466663964
34663137386433396638303033366362653030663737643663316361323162313763646630343061 31343163303035393339303466336137303338353334336237643733346462333261653730396665
62393435376632626530613836353539663235623666353536323431663030666334623330306137 61313534623533363263626536373137383037333739613830623938663432616464333631383331
32366538333935623865346630653165316134663661633937343162396235346538383337636230 62636136373830343636613931656262383066636130653862316136363365386166663934356665
32663364646266303663663734356562633932396237363638613132363138633631336135666565 63313134633261346561323138373734393364396662656333333263343665623766623633393565
37633266323365323530343137323333613230616434636435323935653334656635613962323331 33353533363764323334663562653563326431663563366438636634333166386330633234303235
64633266633934656263336131323436386631306331623733313230663664663237663138623561 30323966333764376566613164343538656566616132663735326436333735363033393465656233
63363965326262623536343034356464383039346435373032653930393039633430323130353334 64323739393538323837366132303731393463363137333935373866353832383135353063633365
63313465396431313565643637333461313361653634333238323233356530623131313036663638 39626531643038353161346637623061316662383432643133396131343536333436616664343234
31396131323836396138613863386563343732303361316465316665363935306265663163336364 38663864393365343465656265633032373032383134663265643661386532613734366532623065
34313633313837353538373463343138333930383766386166663138383134393133306136626337 34333436383562343565313931336637646666363838303661326466333661303737613563666463
66343863303936613635643532656163626433303138626262363435366564313834343962663665 63333334373665656538663139383639333435643764363730303833393634373930613033636132
33373961633035663639663361303433366363643061623833623837633661633433646162383136 35656166323437393430323430633139353962666562623630356166643234323264333430343837
63633331646138303333313634316135663464396563383839323535316236643135396262383232 30313831333930653164313463393534303733613336346237343933376238653638366265396531
30316536353264373562343532323966363233326334666163653535363163323939616564623036 31356461346266633631363839373834366337313534626530643133373031613837386562376562
63376534643531353432633063613361666265333531656638366665353833346235623064623137 30633061663966613838383232393235323231316335646431663261313230303938663433656266
39663331333533356464323334616139316661633338646231393136373039323230393463383530 35623231346432343835643233313238353832623763343735373661316131313232383732333062
62373861376535626262666266396263316365323736356332623134663336666534363237316431 34326538666462376164366566626230393666643563633532336430326339306330663238653261
37623339353266373033646264353332636632373235346333326565306362323138626430363137 38393931653964656365333236656166353138643934353230303163643331346438363166333263
35666263623134373230336438633131626635303465336664353733323131393835386166656361 39666531343738316665383765323566363237393234653663306231383239346266653935663063
38383734643030313333633761663535326236616365326534666636633231313630323834366365 36646439356662633237346362393335343730626464656532373032376231613431373166363761
66373638373964396263363966393233643133323730363261383238363166626237643964306237 33353239643361323434666432623165316638616530646430623866313063356635363831643235
30613866643361656137376335343637333932633434363936373530653236373265643832393534 31666265653436616464326364303961313666333837393033326561323931616435376165306562
31383938353763613939323466316135656332386635666538333963616231366664356466346563 38373763636430326233636138373361373639633766343761653966336662663833613732306336
33393236323033306335313735366435653939643861323230316366393632336161363030363861 32323733393434356465623436323665633862643236383162353239333534336165326665356564
31646463643663313931306133626132306161323639396339373763626564363033653634663563 32303966353330623431346332633332346463316435363835346366333065346136633533333464
32356362323566633632386566303737386633356133373535663064633635323662353661643538 31316566666535623166313265333561626335663238393439396237636261623730363261353364
64613738313532376566623831663461353564363234323961363231396439663664613831613639 33643430333961393663643135313030623036356538323538373032643430623234326330623334
31323366616266613861613039663830323831626339643235323736353234383832383865633763 32636663336339336262376338346431613535383235313039336564303033646132633463323461
61306239393532373466343338376632643937313839663230663130326363323534373632356435 61613133383032636233306135383536383433363736363964336431313462376266306336646633
61373438396361366332306461663161396137383335346238666439663230613935643463346164 34623730643531623138373736643232333562316239323863646439386132313736613432663437
38303833323864303562313536386431616136636139336636323364313866366461313430326536 32396262656333623561643239373737333438383036323536353036366563373536636230326562
36636536306663656234373031386630363939366466643861323966313238333666386265633632 65363864626361336235653936366666306663663230663637393332633762386338636637353930
30313136336362376563323037623336373031393935343964653530613132353565636236656366 36653364616433653436663565646266663166346630313566366262626534616130343730393062
34656136306630663636303433393139306133643966656366653166333432343838346662613136 66336132633531376438356162313063616532393735313935386633386137643736373038333531
63303162323230323666643935353664376339663734633265306430306366626136646436393632 65323536313962626566356330303063356534373063366565663633623836616363383436326339
65323737656235346465323131356433313564373362393732643264636136613962666531636438 38333064363065623464353238613765346161393362376132613462376661373030636338643365
39386365626166376435306337366438366661656463363161366334376135626437303338353130 33373431396533626632366232383161653037333235633138323439613330633734376366636464
63373331316234613730646366363863613764623933626530336165323639633035373830666637 62383563343538313232653763303536613166366666303763313331366238386161626533333763
37343333643630613038656539646632366162643138343262333161616331393337633166383265 38383132326236393136356230333138646365623062343638643733323866373031316532663336
65646165653761353361393565323466313062626262386434326534306531643364633561623965 64303738623637613535376366363762386466366664353862333066643933666431663265666635
31653363393536643531386335303634336630626337303931626235646562626334323631353835 62636564323230303263343832373938626235363439393434313039366338633464613566653565
66313461376332316262356233376333666336393936363934343139336136373135353136666435 63356362393465316137393138353365393866303363333439623635336364616134623733353161
32363766323366396336626138323937316366323133306165643534656332316231373166653831 34633537653533336164323065366133306232643931316366626664383963313461646133303535
33633462323161346666393338386536323939303530643038313362303165313064393562616633 37383835656535616339613061323466356437626665343363326262316661663033316236666465
65643063343939323233396436653133306339386566613064386333393335393530303161643463 64313331623430333262313532383931333138646265333662376262626139346134346662616663
38303833366338666135623438653830636263663864353066393239643763623336383932356530 61656539366165626463356138373965396634313135346133653532666334646631613062343064
36633066613362646330633735643432306633663834653434363964366634666662333234626136 31393765343539363435666462356634343939313330623130393535383363613139303763623333
39643363386534613065366261376233326663363164656162346234393963383563333337393563 36386330333463346632396139666233323462616537326134373463373636373439383163393530
31363334323837376364666335323362313663646432633261623764653332333138366139666636 39303935396166663165386134336430653337343632633439663665363539363764633733633565
38623936656332393430366666393235316537633339616266356137633131303439373231373133 64663637393664313564633839346334626438643736333161653733383136313366326639313762
30336134316639393332643330326632653737316165383836343763326236363637653537663565 38643265373664386438313033353664323732373466303432373339633238343766663630643535
33343665633636613262393339373837346633353732333234326434366134386438326536373636 39316634336362326263626532663061316636333735656361353662646464636634333662366264
65383766303932333338366538313566373735626235616162303362333032633438623238643264 33393863313237313534316361306263386664326337366231393330366230646138386565633565
34643562626237396531346166323836613666613630653466393237323435356435386333653436 61363536363936303136393137306434336534346431633332613431646537316631623031663739
63366237623435303832636530383239386562333637653538316531326130303530346633373235 35346634396636343761366232333732646433666263313066656237343435653733323566336261
64353463306535613532383061336561316139353263363938313665343636303137666437326436 37636464626461346466623835613439353836623338346165633837653364363834333732303065
31663830396464326363643233626439666430626638353565373733303630336538383564313665 63363630656233346330363763363564306561346566326330636361643135343836616630336635
63396361316634633061653164626664646666313731656639326333316233363131353962656236 65383734626136626337333736346635313636346364393030326362333833643566356135623737
38363837663931646562353734363838303636373232613965346533666338653334633035653934 62343765386564383230343931363134376663393634313130633462346664306263623836316435
62393530623264326333636630393037666633393864643331356635623435653731383337613131 64656465303666323764643261333362356165613261333738623834613733316230313631313762
39653539316230373834363561643033363035323432656535373137393864616233613163383039 62363930366234653963633164366463613132333631653837356235366436653836346132303934
65313633313831393137303236353133356238613062356335393363653137623836656339313537 35343537613734373737653636313261306435383232303935396264353430333739383235346434
64326636303630643430633734393563373163616239616436623030643138373531323835363062 30663839626333616463663633323066323864383833313739363532306330393266633464313430
33663337613162313231633932326638366266383231366339363637613566326432326639623637 30653061316531366636353064316466643734363232353638386365326634333931636537666435
33303261343835623231373231326264326266346239376337336133643538636434643131623134 65383631376339646665623638613132653161663335663838386331343336646338323965333432
65363461616536663463336464626339656138373331623263326364393163343535376164316535 65303531636564336130333530343361386232316464653563303163316561316133623433643264
61383937313237666466396565646538396162343932343939316165616339643730303231306437 37663635386264336462353061376630336634353737323234386334386630633864306466323535
64323766653933623664666663646335653631373839373233343764313936333235616637393239 37313030383463636561623566663934656363393661613730386439373762363165386334326161
30346133373734623639643530626136356230666333663730363930636661656661333335323334 65666234656137383834653738336263323939633363323837643539326335643766663035386365
63303364613537643634653732643632663739393638633966663466363463313766366330303935 64343030303764343631306466323638303163326633346665343165376261376565313032363262
36363466383062316437363035333231386464613836646139343966383832343338373432396462 39663765343031353837666232306338326665343936333034316331366439663966663238336430
32363762323239393537386338656461613461306539623939353737383061396138666463656362 32366330336661323735623236303763633835383230363862623538393633653465623330393234
31383033353630633630316433346232666431313131336534316165643961393533343964326238 31323630353838313838613666373231613936343938643233373636326664313237623266343036
30353863633564653663646462616537653865636230326363313936393639323565663739663965 32366336343430363161343561626165396433643530323465346137633330383137613336386434
33356562363562343137313735346164343833383264393737653662383337626238306365646338 35353461336237376134373762323236633432366534646462626366356663346364646531313838
33303966613133383934376239666233376233356633353637626465326130323936393163613364 33366632336165356231643132366463313037373630326437356634303530393930656331373562
33303964646238343233643330653936323034363933626264343965336530613532643263623939 61376661313433616162373839393964623438626664626535343136323734333434623632393262
61363862643666363834353439633532313435633431323532663631653337353734303231613733 65393536636365643633336130373162626636373638363731313835323136333930666235616230
66643238613565376432373761343362323630396531376465323665623965626461383566656362 31633863643763616266343135663263313665363934396334623661643039633566653765363136
34353363353862306539353434656630643830313064346430373361306536653038353962316564 32306563343236376564353233366666636137626234656366323862356465393930393431353437
30376461376132623838303037623331363932613639663335653137326162346533663733646266 65366233653837343561666435643631623964663334346439376632303961306233323338616433
33333035633835376630343739343964343734343238336664393731363839306236613432306332 63343162663466626436613262393265313834396239303230626635393162653862363836303630
36633864626436383566313362343164353764633331383833313362663532366165363739306336 31653264653735363430393234306639346165623561326266653562333963383164613034666564
33636632376132616337396631316531663333366337333335373534646565316162306362396263 39356666343563343837333633646266353565366335306635613231363238623131636561323135
37373932366565663935343535306361663634633431373439623731633832316233383531333135 36656464343761653837653233313139386138303762613662343334666164636237306337653538
65396132623365333466653738313762373561393036366534616633626637393362396161393363 33623236663631353238343238633232356661323064623139333366313534656531343262393734
33306362313962656463393561393531313733643062646236623939333136386161636532616264 62663066356435633166393439353936376437306133383432353863306163663330643034626265
66346135646435396335623136316462663965366338396565623161653866666138376338623730 33393331313739643934626139343565333834366439346635636566323563616436323235643663
32636432366636326339653135653432323863326434646165623261306666636639393333306539 32353330616639343135306434343733383062633866326434303464623633376264313763633737
33643362363335656338323231653562626634613361356232333530306238313364303637353262 30373666663664333465376337383239333537643536313338373861393233643135363830343961
34353231653430303733373632663836653935356333623330653164383630643661393539616338 38343036363965656163366363353361306438303131656239313436666466343734393435333565
62303933363330306163393638663434306462356533393931616139353339343363363634653536 33363034346665333761396635313737323065636331323138303238663138666162616333613536
62643330383061613833653335633663666433636165346235343137333965383335333861353234 37623234626431326163663962383361343836396431353039653537333538663133346430653733
38633165366337386136326236666137633737356637613463363033366666353530636566653235 31373862663835643236393234653036393331313731326431313633636566396364663163373634
34326263383264653266636162323662303239326133383639393165353535633530383237643436 65373163666531643164333161653366353037343934313666613962326330376336386264626165
62653463333835326139303164613434623762353138646563626466666665656166326338646431 31656131323461626530383130396162656333653536383766666236386334343265346262633263
39333931666532303832323361653566643563353634386666333865333539326539623266363637 38393863333738366566316565653163386435303330323662383434633937636463313261373331
32353632363034333562623533663432653334323663613533363438303331326265653939336165 34363138393337306131363132396165323534613362306261303635366238646166616230323530
64373461333130373561653265653834363432643435633032616430646237366131646465323237 66353237363835653163656333303165336565303839363736633932343566396633306534663939
30326131623738346463373636313131656535633632353539363438306438313430353661613934 65623632636637383631353461323037313531366232333464376466323336313166353263373166
31653834316231353336653133663662313738303865633566643333353932396261663161363066 63313138623836653738663164373139663834636661636365376336386565623362393639343036
65356664366236363661333434363065393038666131363764633136383561656135353833626566 34666530613066336130376338346438366432393437663834386664623530643137626635343065
34363865323565653237356139653231646435313134323631646265633033373033633336376565 66336439363262386532373661623664653737643338666562656639303636353531363862643738
36626637636462353134383365333831373965616535326665356533303538383438636131383063 36333931626439643033353935353434623030613762376135303538306132313331333365356363
65323537313431656235323833633235396631313037336132313430346165383037663566353932 64383339643732323764303839363335313338343965353532396661303164303861353963316532
66303837316662393232643432663031376332613334353962666338636233323837313861313464 38646331633561366538336165346430396161633862396331393934323431636238646665643966
39393637313262656139633662333336353061333132303438393262303739376430303635616663 39323332653035663630373236633434316431383134333661653634376662623830626332326464
61613938616363663061646230633933366437616537656339363566626566383565666230643762 62643438613761303538303035396232316665653865313839346637636462386663343838643831
32653233383732336431343434363239333636646537643938373439366533613761666634383739 32366432323535613930376233643037666631316434643164643666323534636234666636336532
62356636653464636531653634393261643562633431653866343438653537366363633564303137 39366437656632616237393436643336643636633863356666643131666535636136373436383636
35363133376537303030346435373033353563633435343861303862633638623634353562306531 34393061383935373734346164313462353164613132613334303230336436326433656462653831
35356535646437333230623463393662373839386132663931363930383839306661366230663538 38353335653266383837633738393331353963373734643961366231393331366135303138373933
64663863386531326431613636306338643765316437343564396233303035373938373464326561 32303935306261363562633565383566346462663662656163366533333733356230306334363637
34636532626662353237333836313739363265353037366435356131393361636262633965396639 61646661646136303838346136326362363539643236316331306363333766386436393362663832
65663133643838616434663563636534663539373361356537333266383337383231613636353566 31383032616564663062343665636235306233303834366161356333666334323934633562333164
39653364326261623561396339663638333765653935366134396432383362386432636236383961 32623861393463383966313131396332666462386662303439313965343566313561376634623930
61623635376435346364643362306464666130383163646137303766666633333065626564333039 37346239373233376238623531656633303765313633623564623562346535626365393263316233
30323133653130393064303433323230656131383239336632306237366233313633656266316233 62646239653861326262306465643764326363626436343230616138383863636137303439656430
34376465323265353263353635326462663333356264333033636663653835333433663764383432 63623965313361393630373633396566653062613665656331323937666430616666636536623461
64383666333734396364376536336362653134653236616533663337646438396664373330623730 37316138353762376439316236663435303531386265386365633036333030636466306430643138
30343263343162336235333931373338663934313361343831353461653630396131333461363538 65613964633332373237633934633932323938633436663464343038626433663130343937623864
33633462633130623135656462383864626666646439363261326662303037663137383137306535 65613565663031303333306264386363366431313837346530656239633833326563666231636634
62373831623030343730353838613363393931363734326133323133643238316364316631323866 35626133616330346537636664376439316535663733323666633333343062663439636234303863
33363464313033306530653862643539313262326661343735383362346163373232643061623761 34336137333961336461333935653761343662393064343134646631383134383065383836316464
34363337353931343635306236356465623238666561626533303830383330323133346464343631 62356561303135633732306361333735353135633536613133616466636364316335383431303631
38336265323363323531633862353161333830666265316561346433323839616263636539663964 63356635353236656565656230366336353638323430373434613638636637626135636134386463
38353530333563356233643337653162313831613239323439316634326461356434396430393533 62393236363464363365306166306139306662376562636631353736336236306433633237636164
39393763633534613737663238663430313732613038653962663835306139653761383663326137 31356235346239323666616463626263313238326364663935663732613237643830626362393161
35626665336430393934396237316334383737383063346561633866636363333232343036656135 31336266323933646339343234356463653864666334376662383837666262633963333861326533
30616235313136363164636338633038393630383066633166373039383530613666613163643336 63306430363361313362366530393566393063346662383730666631643030646237623339643439
33366338346533386261393432363762653032383565396562666166643134643831363630646539 36663332343065643063346136353230626136663163366333303238376533386435356437616134
62623436323438626261636337643338343732303630363838383966633664323961303631643264 39663036353630383663643136333333316561613061366264393132323939393435313663613338
34363561626665353333646631613966613134373064646430343561353665643235663066633065 39643138343161383435363638643034383734396537363736383564396138363435396531633830
62626266656534313030303535366662363561306432623334356364396533633731333130366537 33623964653034383735316165373766633661623932303037616335356463633866373230323130
64326333386636393366353935323832333962366535383866386438336564616232373130613531 61396432363337626130633936363562333130363165336464346635646630363763623337343162
65353964303261333931653432613866306366373163373162623738356635623734383739333338 33373661303164363534386164326364363133346635636664373833336437373335373231663934
63396166363938313333343439383435303837343864376266623033333639663339356566346364 38383837646633333631376163616131353965346532323666623531396637393436646131336632
66663062636432353232356234666465623038306664653539623130663137663031613766343931 31376435323737323733613939316662326533356364346135336334353831383238616666653933
38393236656261386537663330316163366530643731323439343930623137386365303237386131 62363934663839623134316366646433626466326665613437396430353738343134333136626366
32613263393266636530353666306239313935363262653963626530626261303564633261613735 33376264303937643732306534666666353130326435306433653132656237313336346462353535
31396234353934653233303263616531343232626332383636343264626134616666303664303165 30343062663866636464643234663637373138636561663538363033343438646665616130626461
37636537666334643363643933366530373636373866653666623933366438316133623761313130 33653466613633313265396338376339393039666631353537326532623964316537646463383632
66626635323363363230633035616162373630353661633736646563376139326564346265373134 61343337313965366564383764303761393630666631613866386437323163366433636263356265
34303738316633333239643739386538623862373932353064333163643039646235323365343739 63643063646633663934363739366539303731626537666236343138323065656139626239343863
62383261323765396438336166666363653065346336316561356366396233306433363166353036 34663939306234326638626239303232396562663264363162623430653163363637373765346439
62653338346231353739623530616633386430373332393664633034316534346338343135323332 38326137623936633630623765623763653138646166356566383966353031343166316136633761
65376633393434303937626462366161623431623836386231363337396432333535376435343231 33363437663133623335623765656561663266613461613562386638623232613738613563633333
65326231363564313031316232663839383439316434343961623761336230306532626461323732 30323734306664356266343235316238663131383639383365663538666161646139633663613162
33653531333063386136623135343138633034663562326239373066646663346630636433373032 61366336303465363334656432633131363534666135346537373138393338363965383332636562
37336566373935616431393231313466393338656537666530306136346632313862663832623063 37666538363639613538373036346338376661636137613533343931333462636238393538383464
35313337623662616662633161636533373433636238313332613865353836623863613438376631 62666264376439626530633462343261623766346263396234316638396538353539326265343334
30323633306461663932393533613833353764613565636533633264363532313434663934346237 35373036303135663239386238626634353139373132353338383735626161376334396132333035
63653333313635353634393935343535623964306133643136623364346637336239343239633761 64343465666338343164323737643137623664633463353631306237613136653935663530643637
31393766393264323131636461303464313363633631326136663337643363613138383434653931 36313831633333396163353665316636343461653933653361653665396338376663326439653865
61373139646666613139346135326132356461636635643065613661346634303136363766376663 35343232393330343635653265383963313434653636626662626161366430316438653933623232
30353432386331343931623464343665366438663633636432326534323432613562643638643232 38363966313762393163303763616331366337366138383630393230343536623461306133363035
32383632366266396436383336363739653536626365323266326238633335386439643639616236 37646464346338346166373234306162613231663935663434636533333865626439663733363631
37646132663033393536343530633765626665383031623265653331303235356632616336653734 63623539393139396663383031323933633132656338323661343639366537396138666265356337
33663666336436646536336561653864393736366330616639656231386131393330363933343663 63396334323236386466646238366165343562326265396565643630623963383730656464333663
36343536646163356439646535636463613737623035323462396664323830353262633735663937 37643965336266643766626363616563333234633261363833386430376331613862646564326565
37303837333461653561373732326464313436323563336264653737306335626237346536656438 37343363333732633735376563346265623031666461653533366538313662643238363030356163
61633935353861373931383330343438343865633933613861313931653363633461623632613164 38393762373439633162663164303461623833376434396637323665323638373736303331353531
37616333393139626363373435376238326630613362336432306431663235303039616231343239 38303666326235343232623437636337616631373938636638303835336134366235383637653530
39613066393036626465626261313834313036313836333830633865616534623532303365663331 61383961626166356264393365343930633332386532613136343861333731326135616234326632
39303738663063376235666462646365393235353663346130353539393931346263626335373031 37313336303764383236333138643730316637303832666164383666383830313933323439373937
65336665663863663038303631336464303765656638373537393933663366636133323337303432 35366561646235613231313262373538343436613034663232386231333365663832343062306532
37653837653231663537666464343734306562646134626338343365616266633133363337366333 32373538626633356665363031363732393962333732653834343066383761636633616132636537
35303931646334346133663961613862376262366262373931316436646661353563636239366531 37386561393265636665303561663065333434373466643736306139653364306562373436313065
66356663333733316637636434383532636439303236353666663035623761336338666539623538 63626434613838323933626336346138656330653264613531323338653462663230343065363639
35393838343835333261656435646461343932386533633639653737656335323034313361373364 37633633336334316230613437356338613362383962663434303739376161326134353261616235
63376566363462653233613233353764376630616338343764393862313733386630646330623062 34373565343235613030356164353338656266616162386466646636643731363662626232323335
38623364643936353365636233316336373161386564386134643865306462376536393866363162 31663437333031356361653030636632656135306463626431663265383266333539653831393361
32333466366236623561316466396330353837346137333233633231333831303262393135616439 34343234663133373139383631353638636639383530386264386636316137613836343066383264
33383937333738623932663535313836333665386135396538313039383066626330663832326265 35616632326632333231316437333633346336646330386363353734636331653735326135613239
63633465343530393935636162333264366564666266643439383932333039663730643836346236 32333162313735383366333237356430303166353866306537356166356264346535653635613838
32393133313666663630663763383231303661663332373339663534343431363165393266393431 35376236393734383264653839626434333565663532366565386535633233363466336138373235
32313263393230656331326335366565366335643431343666626439666535386532323433353035 33326137303435376566666239356232376564373962653061633138653363633135323239656461
39353365626330346431353337303862313438646133626339323964653232386238343866356537 39336562326664333131323434336161306662646164643964363963343733363234646132316266
30333239663337313437626333623633313864646266323037396533326130356434383135353233 66343437633238333734333133333364386565396264623463376231623865343631363363663865
33306535623864343331363363383534643262323463613062353632313736363330653331333732 31663963396261396264333331383964616139343435353031363439306262303761386633613962
38656139643433343432353161303164636264373138356435623236353636623363646138363035 34383133623935316439326139363434353464343066643138333035376262376638353163396536
38303739663261316630646632373465643834333537613437636531663537363564383139393664 64303065303637346166303031303162313935303035613538623536663931316430316666303462
34306434323062623638616133333431303865393537616335663036346561346231303066313863 34306265376166633862343239616132623935396135356130316464613637663339616633623839
36366661636365313361306363623932393663626235376563626234313936353939393132306533 35363838316137336537383135396638656133336631623265353635613464393663326330653036
32663132653039373536316634346133633163326134343366336130306431636163643939633163 66373735396663646663336634613561393135616361366239376536643834656134356533383937
34363633656164313266623037396134363238363239613934616561356534663662303037643135 65343665636364393033656566303737333963323766323039636636316138633863326531646161
37333864396331353064323739393036336337323433313539653065363736616333323938343865 32303566376562303163353362373736633665396364613435346231373263313962343936383234
346331666232656339386331396463343238 33373030633938343139613563646635373762623236396663343663336337626562666536643833
62663938636239376535663433303432303838396630363336663663386330666430653533366637
34366437383961646333316335663266383133663638663965366565303966663063613031643262
36366334663333306434373832313562656639323461626262386632623535316263386261373565
61353135636230386238353461666637353638333365323331313934346365623233346639323662
30636532326137313531633131626231336630373930306666343066356632636262363838316131
33633139396638313131333738333762316336306563663236303330356165306637373662636239
38313530376131366334613039636166346231663664396639666630643066333431613962633364
303335396436643665366330303565343464