From: Kristof Provost Date: Mon, 24 Feb 2025 21:30:07 +0000 (+0100) Subject: domotica: minor progress on configuring the domotica webapp X-Git-Url: https://git.sigsegv.be/?a=commitdiff_plain;h=f9e1176bf022b888038e85b3f55e1ff64445c579;p=pennestraat-domotica domotica: minor progress on configuring the domotica webapp --- diff --git a/ansible/playbook-push.yaml b/ansible/playbook-push.yaml index 62ee84f..06bb177 100644 --- a/ansible/playbook-push.yaml +++ b/ansible/playbook-push.yaml @@ -6,8 +6,8 @@ hosts: routers roles: - router -- name: domotica on phobos - hosts: phobos,qemu +- name: domotica + hosts: pennestraat22a,pennestraat22,pennestraat20,qemu roles: - domotica - name: alarmd on iapetus diff --git a/ansible/roles/domotica/handlers/main.yaml b/ansible/roles/domotica/handlers/main.yaml index 08ecf9a..260c0b9 100644 --- a/ansible/roles/domotica/handlers/main.yaml +++ b/ansible/roles/domotica/handlers/main.yaml @@ -2,3 +2,9 @@ - name: "restart igb1" command: /etc/rc.d/netif restart igb1 become: true +- name: "restart pf" + command: /etc/rc.d/pf restart + become: true +- name: "restart unbound" + command: /usr/sbin/local-unbound-setup + become: true diff --git a/ansible/roles/domotica/tasks/domotica.yaml b/ansible/roles/domotica/tasks/domotica.yaml index fbb5542..c40cc6d 100644 --- a/ansible/roles/domotica/tasks/domotica.yaml +++ b/ansible/roles/domotica/tasks/domotica.yaml @@ -34,6 +34,14 @@ group: wheel mode: 0644 become: true +- name: install main apache config file + template: + src: "httpd.conf" + dest: "/usr/local/etc/apache24/httpd.conf" + owner: root + group: wheel + mode: 0644 + become: true - name: enable apache community.general.sysrc: name: apache24_enable diff --git a/ansible/roles/domotica/tasks/main.yaml b/ansible/roles/domotica/tasks/main.yaml index 76eecb4..130a21d 100644 --- a/ansible/roles/domotica/tasks/main.yaml +++ b/ansible/roles/domotica/tasks/main.yaml @@ -25,10 +25,13 @@ group: wheel mode: 0644 become: true + notify: "restart pf" - name: unbound enable community.general.sysrc: name: local_unbound_enable value: "YES" become: true + notify: "restart unbound" +- meta: flush_handlers - name: iot_net import_tasks: iot_net.yaml diff --git a/ansible/roles/domotica/templates/domotica.conf b/ansible/roles/domotica/templates/domotica.conf new file mode 100644 index 0000000..394c3c2 --- /dev/null +++ b/ansible/roles/domotica/templates/domotica.conf @@ -0,0 +1,40 @@ +LoadModule wsgi_module libexec/apache24/mod_wsgi.so + + + ServerAdmin webmaster@sigsegv.be + ServerName {{ hostname }} + + DocumentRoot /home/kp/domotica + + + Options FollowSymLinks + Require all granted + #AllowOverride None + + + Options Indexes FollowSymLinks MultiViews + AllowOverride None + Order allow,deny + allow from all + + + SetEnv LD_LIBRARY_PATH /home/kp/libs7comm/src/lib + + WSGIScriptAlias / /home/kp/domotica/django.wsgi + + Alias /static/ /home/kp/domotica/static/ + Alias /.well-known/ /home/kp/domotica/.well-known/ + + CustomLog /var/log/domotica_plain.log combined + ErrorLog /var/log/domotica_plain_error.log + + + Order deny,allow + Allow from all + + + Options +Indexes + Require all granted + Allow from all + + diff --git a/ansible/roles/domotica/templates/httpd.conf b/ansible/roles/domotica/templates/httpd.conf new file mode 100644 index 0000000..9ab0f6e --- /dev/null +++ b/ansible/roles/domotica/templates/httpd.conf @@ -0,0 +1,538 @@ +# +# This is the main Apache HTTP server configuration file. It contains the +# configuration directives that give the server its instructions. +# See for detailed information. +# In particular, see +# +# for a discussion of each configuration directive. +# +# Do NOT simply read the instructions in here without understanding +# what they do. They're here only as hints or reminders. If you are unsure +# consult the online docs. You have been warned. +# +# Configuration and logfile names: If the filenames you specify for many +# of the server's control files begin with "/" (or "drive:/" for Win32), the +# server will use that explicit path. If the filenames do *not* begin +# with "/", the value of ServerRoot is prepended -- so "logs/access_log" +# with ServerRoot set to "/usr/local/apache2" will be interpreted by the +# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log" +# will be interpreted as '/logs/access_log'. + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# Do not add a slash at the end of the directory path. If you point +# ServerRoot at a non-local disk, be sure to specify a local disk on the +# Mutex directive, if file-based mutexes are used. If you wish to share the +# same ServerRoot for multiple httpd daemons, you will need to change at +# least PidFile. +# +ServerRoot "/usr/local" + +# +# Mutex: Allows you to set the mutex mechanism and mutex file directory +# for individual mutexes, or change the global defaults +# +# Uncomment and change the directory if mutexes are file-based and the default +# mutex file directory is not on a local disk or is not appropriate for some +# other reason. +# +# Mutex default:/var/run + +# +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, instead of the default. See also the +# directive. +# +# Change this to Listen on specific IP addresses as shown below to +# prevent Apache from glomming onto all bound IP addresses. +# +#Listen 12.34.56.78:80 +Listen 8123 + +# +# Dynamic Shared Object (DSO) Support +# +# To be able to use the functionality of a module which was built as a DSO you +# have to place corresponding `LoadModule' lines at this location so the +# directives contained in it are actually available _before_ they are used. +# Statically compiled modules (those listed by `httpd -l') do not need +# to be loaded here. +# +# Example: +# LoadModule foo_module modules/mod_foo.so +# +#LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so +LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so +#LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so +LoadModule authn_file_module libexec/apache24/mod_authn_file.so +#LoadModule authn_dbm_module libexec/apache24/mod_authn_dbm.so +#LoadModule authn_anon_module libexec/apache24/mod_authn_anon.so +#LoadModule authn_dbd_module libexec/apache24/mod_authn_dbd.so +#LoadModule authn_socache_module libexec/apache24/mod_authn_socache.so +LoadModule authn_core_module libexec/apache24/mod_authn_core.so +LoadModule authz_host_module libexec/apache24/mod_authz_host.so +LoadModule authz_groupfile_module libexec/apache24/mod_authz_groupfile.so +LoadModule authz_user_module libexec/apache24/mod_authz_user.so +#LoadModule authz_dbm_module libexec/apache24/mod_authz_dbm.so +#LoadModule authz_owner_module libexec/apache24/mod_authz_owner.so +#LoadModule authz_dbd_module libexec/apache24/mod_authz_dbd.so +LoadModule authz_core_module libexec/apache24/mod_authz_core.so +#LoadModule authnz_fcgi_module libexec/apache24/mod_authnz_fcgi.so +LoadModule access_compat_module libexec/apache24/mod_access_compat.so +LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so +#LoadModule auth_form_module libexec/apache24/mod_auth_form.so +#LoadModule auth_digest_module libexec/apache24/mod_auth_digest.so +#LoadModule allowmethods_module libexec/apache24/mod_allowmethods.so +#LoadModule file_cache_module libexec/apache24/mod_file_cache.so +#LoadModule cache_module libexec/apache24/mod_cache.so +#LoadModule cache_disk_module libexec/apache24/mod_cache_disk.so +#LoadModule cache_socache_module libexec/apache24/mod_cache_socache.so +#LoadModule socache_shmcb_module libexec/apache24/mod_socache_shmcb.so +#LoadModule socache_dbm_module libexec/apache24/mod_socache_dbm.so +#LoadModule socache_memcache_module libexec/apache24/mod_socache_memcache.so +#LoadModule watchdog_module libexec/apache24/mod_watchdog.so +#LoadModule macro_module libexec/apache24/mod_macro.so +#LoadModule dbd_module libexec/apache24/mod_dbd.so +#LoadModule dumpio_module libexec/apache24/mod_dumpio.so +#LoadModule buffer_module libexec/apache24/mod_buffer.so +#LoadModule data_module libexec/apache24/mod_data.so +#LoadModule ratelimit_module libexec/apache24/mod_ratelimit.so +LoadModule reqtimeout_module libexec/apache24/mod_reqtimeout.so +#LoadModule ext_filter_module libexec/apache24/mod_ext_filter.so +#LoadModule request_module libexec/apache24/mod_request.so +#LoadModule include_module libexec/apache24/mod_include.so +LoadModule filter_module libexec/apache24/mod_filter.so +#LoadModule reflector_module libexec/apache24/mod_reflector.so +#LoadModule substitute_module libexec/apache24/mod_substitute.so +#LoadModule sed_module libexec/apache24/mod_sed.so +#LoadModule charset_lite_module libexec/apache24/mod_charset_lite.so +#LoadModule deflate_module libexec/apache24/mod_deflate.so +#LoadModule xml2enc_module libexec/apache24/mod_xml2enc.so +#LoadModule proxy_html_module libexec/apache24/mod_proxy_html.so +LoadModule mime_module libexec/apache24/mod_mime.so +LoadModule log_config_module libexec/apache24/mod_log_config.so +#LoadModule log_debug_module libexec/apache24/mod_log_debug.so +#LoadModule log_forensic_module libexec/apache24/mod_log_forensic.so +#LoadModule logio_module libexec/apache24/mod_logio.so +LoadModule env_module libexec/apache24/mod_env.so +#LoadModule mime_magic_module libexec/apache24/mod_mime_magic.so +#LoadModule cern_meta_module libexec/apache24/mod_cern_meta.so +#LoadModule expires_module libexec/apache24/mod_expires.so +LoadModule headers_module libexec/apache24/mod_headers.so +#LoadModule usertrack_module libexec/apache24/mod_usertrack.so +#LoadModule unique_id_module libexec/apache24/mod_unique_id.so +LoadModule setenvif_module libexec/apache24/mod_setenvif.so +LoadModule version_module libexec/apache24/mod_version.so +#LoadModule remoteip_module libexec/apache24/mod_remoteip.so +#LoadModule proxy_module libexec/apache24/mod_proxy.so +#LoadModule proxy_connect_module libexec/apache24/mod_proxy_connect.so +#LoadModule proxy_ftp_module libexec/apache24/mod_proxy_ftp.so +#LoadModule proxy_http_module libexec/apache24/mod_proxy_http.so +#LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so +#LoadModule proxy_scgi_module libexec/apache24/mod_proxy_scgi.so +#LoadModule proxy_uwsgi_module libexec/apache24/mod_proxy_uwsgi.so +#LoadModule proxy_fdpass_module libexec/apache24/mod_proxy_fdpass.so +#LoadModule proxy_wstunnel_module libexec/apache24/mod_proxy_wstunnel.so +#LoadModule proxy_ajp_module libexec/apache24/mod_proxy_ajp.so +#LoadModule proxy_balancer_module libexec/apache24/mod_proxy_balancer.so +#LoadModule proxy_express_module libexec/apache24/mod_proxy_express.so +#LoadModule proxy_hcheck_module libexec/apache24/mod_proxy_hcheck.so +#LoadModule session_module libexec/apache24/mod_session.so +#LoadModule session_cookie_module libexec/apache24/mod_session_cookie.so +#LoadModule session_crypto_module libexec/apache24/mod_session_crypto.so +#LoadModule session_dbd_module libexec/apache24/mod_session_dbd.so +#LoadModule slotmem_shm_module libexec/apache24/mod_slotmem_shm.so +#LoadModule slotmem_plain_module libexec/apache24/mod_slotmem_plain.so +#LoadModule ssl_module libexec/apache24/mod_ssl.so +#LoadModule dialup_module libexec/apache24/mod_dialup.so +#LoadModule http2_module libexec/apache24/mod_http2.so +#LoadModule proxy_http2_module libexec/apache24/mod_proxy_http2.so +#LoadModule md_module libexec/apache24/mod_md.so +#LoadModule lbmethod_byrequests_module libexec/apache24/mod_lbmethod_byrequests.so +#LoadModule lbmethod_bytraffic_module libexec/apache24/mod_lbmethod_bytraffic.so +#LoadModule lbmethod_bybusyness_module libexec/apache24/mod_lbmethod_bybusyness.so +#LoadModule lbmethod_heartbeat_module libexec/apache24/mod_lbmethod_heartbeat.so +LoadModule unixd_module libexec/apache24/mod_unixd.so +#LoadModule heartbeat_module libexec/apache24/mod_heartbeat.so +#LoadModule heartmonitor_module libexec/apache24/mod_heartmonitor.so +#LoadModule dav_module libexec/apache24/mod_dav.so +LoadModule status_module libexec/apache24/mod_status.so +LoadModule autoindex_module libexec/apache24/mod_autoindex.so +#LoadModule asis_module libexec/apache24/mod_asis.so +#LoadModule info_module libexec/apache24/mod_info.so + + #LoadModule cgid_module libexec/apache24/mod_cgid.so + + + #LoadModule cgi_module libexec/apache24/mod_cgi.so + +#LoadModule dav_fs_module libexec/apache24/mod_dav_fs.so +#LoadModule dav_lock_module libexec/apache24/mod_dav_lock.so +#LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so +#LoadModule negotiation_module libexec/apache24/mod_negotiation.so +LoadModule dir_module libexec/apache24/mod_dir.so +#LoadModule imagemap_module libexec/apache24/mod_imagemap.so +#LoadModule actions_module libexec/apache24/mod_actions.so +#LoadModule speling_module libexec/apache24/mod_speling.so +#LoadModule userdir_module libexec/apache24/mod_userdir.so +LoadModule alias_module libexec/apache24/mod_alias.so +#LoadModule rewrite_module libexec/apache24/mod_rewrite.so + +# Third party modules +IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf + + +# +# If you wish httpd to run as a different user or group, you must run +# httpd as root initially and it will switch. +# +# User/Group: The name (or #number) of the user/group to run httpd as. +# It is usually good practice to create a dedicated user and group for +# running httpd, as with most system services. +# +User www +Group www + + + +# 'Main' server configuration +# +# The directives in this section set up the values used by the 'main' +# server, which responds to any requests that aren't handled by a +# definition. These values also provide defaults for +# any containers you may define later in the file. +# +# All of these directives may appear inside containers, +# in which case these default settings will be overridden for the +# virtual host being defined. +# + +# +# ServerAdmin: Your address, where problems with the server should be +# e-mailed. This address appears on some server-generated pages, such +# as error documents. e.g. admin@your-domain.com +# +ServerAdmin you@example.com + +# +# ServerName gives the name and port that the server uses to identify itself. +# This can often be determined automatically, but we recommend you specify +# it explicitly to prevent problems during startup. +# +# If your host doesn't have a registered DNS name, enter its IP address here. +# +#ServerName www.example.com:80 + +# +# Deny access to the entirety of your server's filesystem. You must +# explicitly permit access to web content directories in other +# blocks below. +# + + AllowOverride none + Require all denied + + +# +# Note that from this point forward you must specifically allow +# particular features to be enabled - so if something's not working as +# you might expect, make sure that you have specifically enabled it +# below. +# + +# +# DocumentRoot: The directory out of which you will serve your +# documents. By default, all requests are taken from this directory, but +# symbolic links and aliases may be used to point to other locations. +# +DocumentRoot "/usr/local/www/apache24/data" + + # + # Possible values for the Options directive are "None", "All", + # or any combination of: + # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews + # + # Note that "MultiViews" must be named *explicitly* --- "Options All" + # doesn't give it to you. + # + # The Options directive is both complicated and important. Please see + # http://httpd.apache.org/docs/2.4/mod/core.html#options + # for more information. + # + Options Indexes FollowSymLinks + + # + # AllowOverride controls what directives may be placed in .htaccess files. + # It can be "All", "None", or any combination of the keywords: + # AllowOverride FileInfo AuthConfig Limit + # + AllowOverride None + + # + # Controls who can get stuff from this server. + # + Require all granted + + +# +# DirectoryIndex: sets the file that Apache will serve if a directory +# is requested. +# + + DirectoryIndex index.html + + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Require all denied + + +# +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog "/var/log/httpd-error.log" + +# +# LogLevel: Control the number of messages logged to the error_log. +# Possible values include: debug, info, notice, warn, error, crit, +# alert, emerg. +# +LogLevel warn + + + # + # The following directives define some format nicknames for use with + # a CustomLog directive (see below). + # + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined + LogFormat "%h %l %u %t \"%r\" %>s %b" common + + + # You need to enable mod_logio.c to use %I and %O + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio + + + # + # The location and format of the access logfile (Common Logfile Format). + # If you do not define any access logfiles within a + # container, they will be logged here. Contrariwise, if you *do* + # define per- access logfiles, transactions will be + # logged therein and *not* in this file. + # + CustomLog "/var/log/httpd-access.log" common + + # + # If you prefer a logfile with access, agent, and referer information + # (Combined Logfile Format) you can use the following directive. + # + #CustomLog "/var/log/httpd-access.log" combined + + + + # + # Redirect: Allows you to tell clients about documents that used to + # exist in your server's namespace, but do not anymore. The client + # will make a new request for the document at its new location. + # Example: + # Redirect permanent /foo http://www.example.com/bar + + # + # Alias: Maps web paths into filesystem paths and is used to + # access content that does not live under the DocumentRoot. + # Example: + # Alias /webpath /full/filesystem/path + # + # If you include a trailing / on /webpath then the server will + # require it to be present in the URL. You will also likely + # need to provide a section to allow access to + # the filesystem path. + + # + # ScriptAlias: This controls which directories contain server scripts. + # ScriptAliases are essentially the same as Aliases, except that + # documents in the target directory are treated as applications and + # run by the server when requested rather than as documents sent to the + # client. The same rules about trailing "/" apply to ScriptAlias + # directives as to Alias. + # + ScriptAlias /cgi-bin/ "/usr/local/www/apache24/cgi-bin/" + + + + + # + # ScriptSock: On threaded servers, designate the path to the UNIX + # socket used to communicate with the CGI daemon of mod_cgid. + # + #Scriptsock cgisock + + +# +# "/usr/local/www/apache24/cgi-bin" should be changed to whatever your ScriptAliased +# CGI directory exists, if you have that configured. +# + + AllowOverride None + Options None + Require all granted + + + + # + # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied + # backend servers which have lingering "httpoxy" defects. + # 'Proxy' request header is undefined by the IETF, not listed by IANA + # + RequestHeader unset Proxy early + + + + # + # TypesConfig points to the file containing the list of mappings from + # filename extension to MIME-type. + # + TypesConfig etc/apache24/mime.types + + # + # AddType allows you to add to or override the MIME configuration + # file specified in TypesConfig for specific file types. + # + #AddType application/x-gzip .tgz + # + # AddEncoding allows you to have certain browsers uncompress + # information on the fly. Note: Not all browsers support this. + # + #AddEncoding x-compress .Z + #AddEncoding x-gzip .gz .tgz + # + # If the AddEncoding directives above are commented-out, then you + # probably should define those extensions to indicate media types: + # + AddType application/x-compress .Z + AddType application/x-gzip .gz .tgz + + # + # AddHandler allows you to map certain file extensions to "handlers": + # actions unrelated to filetype. These can be either built into the server + # or added with the Action directive (see below) + # + # To use CGI scripts outside of ScriptAliased directories: + # (You will also need to add "ExecCGI" to the "Options" directive.) + # + #AddHandler cgi-script .cgi + + # For type maps (negotiated resources): + #AddHandler type-map var + + # + # Filters allow you to process content before it is sent to the client. + # + # To parse .shtml files for server-side includes (SSI): + # (You will also need to add "Includes" to the "Options" directive.) + # + #AddType text/html .shtml + #AddOutputFilter INCLUDES .shtml + + +# +# The mod_mime_magic module allows the server to use various hints from the +# contents of the file itself to determine its type. The MIMEMagicFile +# directive tells the module where the hint definitions are located. +# +#MIMEMagicFile etc/apache24/magic + +# +# Customizable error responses come in three flavors: +# 1) plain text 2) local redirects 3) external redirects +# +# Some examples: +#ErrorDocument 500 "The server made a boo boo." +#ErrorDocument 404 /missing.html +#ErrorDocument 404 "/cgi-bin/missing_handler.pl" +#ErrorDocument 402 http://www.example.com/subscription_info.html +# + +# +# MaxRanges: Maximum number of Ranges in a request before +# returning the entire resource, or one of the special +# values 'default', 'none' or 'unlimited'. +# Default setting is to accept 200 Ranges. +#MaxRanges unlimited + +# +# EnableMMAP and EnableSendfile: On systems that support it, +# memory-mapping or the sendfile syscall may be used to deliver +# files. This usually improves server performance, but must +# be turned off when serving from networked-mounted +# filesystems or if support for these functions is otherwise +# broken on your system. +# Defaults: EnableMMAP On, EnableSendfile Off +# +#EnableMMAP off +#EnableSendfile on + +# Supplemental configuration +# +# The configuration files in the etc/apache24/extra/ directory can be +# included to add extra features or to modify the default configuration of +# the server, or you may simply copy their contents here and change as +# necessary. + +# Server-pool management (MPM specific) +#Include etc/apache24/extra/httpd-mpm.conf + +# Multi-language error messages +#Include etc/apache24/extra/httpd-multilang-errordoc.conf + +# Fancy directory listings +#Include etc/apache24/extra/httpd-autoindex.conf + +# Language settings +#Include etc/apache24/extra/httpd-languages.conf + +# User home directories +#Include etc/apache24/extra/httpd-userdir.conf + +# Real-time info on requests and configuration +#Include etc/apache24/extra/httpd-info.conf + +# Virtual hosts +#Include etc/apache24/extra/httpd-vhosts.conf + +# Local access to the Apache HTTP Server Manual +#Include etc/apache24/extra/httpd-manual.conf + +# Distributed authoring and versioning (WebDAV) +#Include etc/apache24/extra/httpd-dav.conf + +# Various default settings +#Include etc/apache24/extra/httpd-default.conf + +# Configure mod_proxy_html to understand HTML4/XHTML1 + +Include etc/apache24/extra/proxy-html.conf + + +# Secure (SSL/TLS) connections +#Include etc/apache24/extra/httpd-ssl.conf +# +# Note: The following must must be present to support +# starting without SSL on platforms with no /dev/random equivalent +# but a statically compiled-in mod_ssl. +# + +SSLRandomSeed startup builtin +SSLRandomSeed connect builtin + + +Include etc/apache24/Includes/*.conf + diff --git a/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py b/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py index 976dd4f..0e5edda 100644 --- a/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py +++ b/ansible/roles/domotica/templates/qemu.sigsegv.be.settings.py @@ -1,316 +1,317 @@ $ANSIBLE_VAULT;1.1;AES256 -61336133613766316637383136326133646639623730323262613461663734396535626536613238 -3364333932396136316265383165326165313034613635620a633935643336393166313866633832 -63613737336336363364646362306230363166383730663339373265326533363465373933323734 -3934633738633835620a373662626362376234363232333033666138353165643335353438663136 -33653737613734396631643838326431626533393064393663383237366432666334396432373739 -61323635356162626633346330393634656438626438313231393065363236383330323136353065 -66646438393763643364306361333035383066343137353733316334643137613231346565316366 -65313966353962366331646361613761353239396337356639393562383330666231636666313832 -38356566356336363761396663646631623739346565356633656132643438306539363464333635 -39643262323832613333396335343464633362336532633064323834666330663562353330623835 -63396639356630356336653864666632653764346632333462353634663530306434336237653365 -35356432323965383630353637646137396330366364353331326236623736326530396362353765 -64663539303439326434333038396135383233313937306130316163623537633438636532663464 -33306565396431616432643039356465386433333630326235376364663661303932306535343831 -34323832653435333539366532663465393361323933636639633166623133326462333238643262 -30366233653831313864336136643965366134323166383839663438366563343534313831656363 -32623361646165386661633436646138396230313265646638333537303534613037656264656536 -34343230346561343232643431316163363134323661303565663464333763313036643863633131 -36373664613131353235373539306538303031646163333361363031343462353862646433363936 -35646237336234393766343463626566623131616634666662396533636535313466616639393636 -64333364316462623165613536623937313337643030306331353930323237363238303335363230 -64326166643765353163323430313663626533353433633365323461343766386232313730613438 -30353735366530356232333363636531333730326364613564393830346430333639666166643532 -65663263363539316365346338643062393366383261626665333130636138363765386164613430 -36313034363964383762326337366436383831383032356536636531373539343161313132353763 -37646532386666376236383765636332373361623637663431363262663061656534663432646162 -30303165623734396565356232336336663464613939383332633766653839393562353435386363 -35666136306133303933366564393666373238626433353530616263663333346162363132393431 -39366430616530613465636630306632326661373231643166313730333437333161653433376263 -65393462373063653335323564393061616263363361666661383237643966646639663836346339 -33613937356464376237373264373336303337393764373862316163363066646339303663363133 -36393034353831323463306638376463666465343835346336613135653334346239653961366566 -33363139396161316539323237353639626537656365383733363837386632303833353433356666 -65326261323530373237633361366339613630653630383862646266393931396531303861323865 -36326531383336653663633564363866373439396130666130626531353331383962353831373030 -34303765376364346465653666326462623437343931656561613339323830333965663662353432 -30303862663832363538366661306333353035383438636163633531613432323435626132383534 -31313733343539323430613863643034663735303032396562666134663035653363316362363161 -35653331633362646333366535303565363861313631623635623733646335373664613837343637 -65623438386563393432396636623636663930356263323031353531336531646432316562356265 -31663561643035313330343330666266373735396538333939323631306435633639373733626335 -32643137326537616339663761333063306535323232383435633161333237366631656339656666 -36316536646165383736393439373437366564636133363264363239323733386133333131383532 -62636539653266663039653330353463666235356535343261643133633932326433346432633135 -37613931363164373961633336636138333830623064326337353233366532356238643333373030 -63343833363366313861633039663839623939333439626462373633333766393030646465383664 -37336438636462313161373562303863333033393765633761396361643439633232333835393430 -61306465316139396163636662343134333363383762306366313638353838326234663165653365 -62616163383536646139313565646439386437383036376231303537363339336230643939623430 -39343835326161336437306130363134326530306337623334616638366433363365313430303734 -39663263386262373534636430326632323464383664316464386266303532313463333464306533 -63646663306365363266353536303839343534616136353432373939343462303833653430613161 -31363732336164613938313934376533323162396139616138663939326133356362363562373032 -36336561666635613838353265356533643862623030333430386463653265653332343331376234 -34376264316234306332336265626237393130383135633465336364306530353130306338373339 -65643131353439363763386664623963326139346438363133323861643335326631333335396530 -31663738633439373431633339623633646362386462363466646438616164353961306662313662 -66393633336637343361353364643032306463666632363131613935613833643563333333326535 -65336531346634653335383035303936376661646362326234363238323865633037353633303263 -30663432626139653930656664316533666661343633383563373033633266366666636231306231 -38643034393435386339623637396464346435363562303161613139636537383934623062363366 -31346430316166323531636337633433306631363537636535383163303964663264613361616130 -30326666363432313238656439386330353565383032666230353061326535356234343264373563 -36333739396230363634356431313738303839323664613131346463626361666461383166353430 -62353864616235653834346135363434353836346436666163633964346434633333363630393932 -37336439666631373433653961366165633939656566366237353232303137313461366633303539 -32333136383166663239623739666132366132366433633034333431616635376464303565613132 -61393431613834333433643065313232623564623363313638386161663435306663633630353661 -32393733316461613864656364633762656330336436663838313163343163353530366662663136 -31376263343139373937363730393635336537373435313062633432383835663165363637336631 -62383332323866303735663139363864383163323963663139316566303965396366323632353532 -35333861366264313762373165376331316233366363643861316235316634303537306531616433 -65643331623061336266343433383330333631396634323936353231376438653432393636346334 -66386432313735623432343764366362623938393231363236303534316438356336386634643931 -37373737626665326165623461323430353136633533386565363837376462366666613735666665 -34363236663635326136353438386564633930363665336233343766663133653436383530383139 -30356636616132386438633338366336316563663563346666313065376438633431363164373333 -62363665326633353133373130663933303561316534663462623834653061346237333638306333 -38353033373530636361666138366366323431383265656163386237386462393034333264323330 -61653234666631383334346132653233333133313530333334363737326633326164343765383936 -37303963333939623032386432633937306564616666396364333461346161333038613163393431 -39396636633138396366343631326464366133363431363336383933316639393136306631393563 -64643138333532336665613034343961303565633865626535393630316665613430613865666631 -63323739363933383665353233643537396539663066333362343832386463336664366130323137 -35323164633335633761393339306464326433386463376635386164316265343037656130653064 -66313664363661303465396333343938663662303263346263656335613632306631306562383835 -31326566396639343165626163396139343533613932646135663038333833323463353962633337 -65323438393534633431623638303763376663353562363032653633383361323563653865653038 -36663636633264326466343038663430643436393937653538356438303233636338626537373431 -39346366666233666134633934393338656164333639383035326635336232623633623137373831 -66663439363865623761363732663934343364663936343134353833383337646333323430386462 -65386231393361346162363636663361646233613031393232653162346163616632373030336663 -34343630666337363332306430366462376436623638356638396537626432613561383361643661 -35303038393262363364366538353830613062643430386538336638636139333432646535366634 -37616164323530363263343362663938373033353465353066353166323833373031323163666638 -61373939616335626165646437623763383032303334383132646438336466323631636430623638 -34623766373038323662663638376466353165316438653863663066376161653238323464653466 -38356137616435383765333463346133356631396261303936633762366136383834386131333539 -63613065633231643534386235303530636363313762663035643963666136613439343032316334 -39366237353535323363623436633564386135613063313565656463383132646362336433326130 -62616566366236343461363234666231363637326133323530313238653737306533383431636435 -66643634663033396662666439646562663630653161353865303538363531633638663465376433 -65386263626437393733626463396530653265653331316366636166393663306263636665633964 -63373234323332383538633537313731336133363930376230363736663438346133636436373438 -63336465346233306631343639396562373235376437346338376366363134323533373839343765 -37313833303063643262623035323836376131333061356337303761303033333862363633333236 -38623636373336326132323166326637623935363235653438393862303934303862616631653866 -34383934613238646339616461336336353061643130613532396133363963343139643634306333 -34613938643761633764643963353333393031313538383161656663623636306136616462316335 -31663238333662303366666666373434663763623830373962376333633430626162313030356430 -33643639343461643065656536653165396234623331373935383066353439373165643762393261 -63383339343562393739313335333134653139656666326661353734353964303933366330653362 -38323436336236396465633565646564326336343635396531353938356162383161376661373634 -36373263306363396631336235313233316364343864373762363239373861303136343038393466 -37636536306131333430346531303739383263363731623366386432636265373066656564623563 -61396338356636633564373734613164666365663537633937383761303761613930336464396231 -64653261356136646233616230366466383964663664383966633733613062623035636132643061 -62626634333738643061383939376536636338663136346630323031366330363464353432666664 -31666562383531623362616164313134643936366233303637396164313936353836313530393361 -30383932643663656138653031653563636238306134636534343034333837663234343531313431 -33616464356231366335363561356366363130373130363336613239343339633165313832363037 -66636637653332643766626663303637323861663632626433363533616634363339313530346565 -66366330663730326364666535373639373837396136653138363064663165343665393433323362 -66343136363237343234636661613538616265356533613561396230623236376638393430663832 -39316136396535363532653639636537646231626431383166623138336235356161323230353266 -36376633346564333963363865663361303833653539326264393430613439623663326634663736 -32343339396463626163616439323161346139396438613766343161376633313838326138636537 -62666461666466653232363562363139366636646533396630356239653630623839313333653331 -62613739356234316665353837313838356464313439623137323335396636636538336639326365 -38653464663635393762366565313738306435653535666264613564383838313136656663346330 -30646366393539613861626639393332333131313765363565343735613364356563636632396635 -38353832373833383231313162646135326439363331643931363737656163336463353137333965 -37346539376238383234383137646336646231666337643036636139376638376132626661323735 -38353661636463326232326237326330623666373837333630353530643931303336653261663633 -30386237353065376665633461613066666462613864323266396462373661623439656330373637 -37373965616237353166303131656364616233316534353431383231633530633435663737663430 -66356535656332386364366638333961323764396337623862336634343531636538613831663631 -33666661343131303235663565306536366332616230626234343962623938366232643731306535 -64386663663966633534613535656133306461636439376539653339336235323434643936356633 -39633039653536653134643633623732383835386538636662363730333831383934646465353437 -61393137316665323661636465653330303734363966383430363730613532363765376263343761 -31353637663765366538666262353631616234333564346633623962373964616339356161303737 -36353562303033393730343835323138326562653438333234663337386439613139616365323135 -39386263356531396236316563356262313361343736393962346566363135396134633664333362 -36353635633437363835666639346665373739653465613363353134353133313261383163323939 -30616664613835623530323930633363656336313665346637656637646666623033356438646332 -34353366643836663130323161303432643633613737393038313136653835613363646265346438 -34363061363464376664363938303061363363396439633030356263626331633536616266643766 -33383130306361373437363466396631376533353662613538303030396464613039616435383131 -63343361316330663834313661363564646634646130643065613036363531623266386361613235 -38373733363061653936653234616661663930363664376630333639353832353235316261663830 -65633465303365386563366432663763303863353064306237373434323966353233663639383133 -38393333623264366166653464343064373233343435306131356130653661343361306333633461 -66343039643161616434323861633966613434393835336138353634333130633136343466616263 -38633562346461393131376665376565376566623830613330646238333530396333376562316235 -64373831643134613362643065373831326635333932366639346337303238373864303033326639 -65623364353066616130653433303733346666663834363465646431333538646262646537333839 -35353933316536353232663739313265323531363064656131643861363864623432303461616462 -65666534663762646130363461313030616338623566653063613436353535303334323639386639 -64643635306536613661643963616133643134343132616663333461353664346166646230663464 -37373036363061396131373862306662613936343031633936643130336464636163353764323436 -33316330363539303261653836346531336534646332353936636534376164656137643963353035 -33613733666566353563356338643138383966643066623430343066313535323532393562393262 -36663238336463616134323839363630636435323131353136313361636237663337326236376366 -38316161623030633237333534363565663139323834383339336231386135363130656133623465 -37343534383138643263353063346339303361306638396463313636306163313666323931346435 -35313464646536646162333361633730303563336263313265336135366134633462383238323835 -62313930353834623433386234396237396233363061623530623638306533353638336438363964 -30326336363364613034626636653337303464373661363333316239363730383237373836613538 -65376136313264343630386136303863326237346562663034376531313639386137393437343337 -37356131303661306362363861303134316232336264613736616265386166306563353532336330 -34353766343233323036373133633266373638613137333562643565383465666662633738323533 -36633832646233616431396237623664633530346461323633333164366135323761333561616438 -38643765343963656632643763336361323262663434366630386335356538376531356536333530 -31633035303439386331646631376434303966343664666338366165643138386535326664323738 -32383637353938363236383339663765616333353063323838366230643435346632333863323738 -33646137356263326638363266303433336631643566646335373930353436636237333936333966 -63393164393734396139623565303763303739653039313230613030323165313764366437653034 -30323265656335373730356366623232666566376430663866653366396238633332633432303064 -66613536666135336339303434653232393332316231383135623237373966343533613463386631 -31616637373132383366303937653736633738386134383163306464623835343236316664333039 -65343135636433333630306133386237613832653465343330353830376531653535333837313732 -63326466323062393739653336626333656131363535323062396436333763316137373762623161 -39333862363339323338363431633038636164356666383333646634336363663330373232306639 -30633762623438653232353134623938346231663738633237323934306430656539636261353431 -39623462386463636536393566306662633735383131373233383338376331643330636630346630 -32393064316135303931396464336530656535306566373435386162363962353161653736656232 -34353436303133623333346232656366623236323736643737653131633536356332346438636635 -35323439663334636339396133393930323139313566623362303430656663363530663535383638 -62613439323832363431666630646639383638663234636533333730333062336538653363316533 -37303964613866363139356232373863366566616431316438353865393363623430346666343235 -37626332363038366263663766373964373435376131663363613732386165363433653837393564 -64313237646364313962386263646639383038383964663063653066376432396665383066653838 -65653163393863343836633266626230363266313835316163316634346332663265303235613334 -31333636626162313936646232373961366661646335663764353433326631666263313639643533 -66646231663561623931366165366165376164663863323538306231373033373131653966323533 -34363232336531353763653330323663633838663265363639346130333839366661386431643136 -30326337653531656134643864326563306433616661313866336337323536383737313238646634 -30326334353834636233303135663263386236643033626231646339373466663261333865353438 -35656531343331663939393130326639326339366439393065613830353730326530386461353338 -39356538343538393666356230313734323561393164613631643935366563323232383338623133 -32393032623139633538333334393637343235663763393766663137393139626533616337386139 -37306465373136333834383038653234303664623434353635613533613630343230373432336438 -35303336393266353266653565663361666661666132343739303361336161373235643765646465 -30633533356238386330336531633334383838313037396337333463626635376334656564353437 -31336333363061663838376430306133366231626536353131323939366261336631626165663934 -31616631623465616362326465303333626631343033366230393231323461396665633462323466 -35376539343038386465343837663263336339363634373561613331343333303963643162323564 -33336364363531323336633937643832623438356632383238663163623635333362386539313466 -62653062643732613936643634323036326331333865343431623036383133393634643764343733 -65353962363232626435316166373165613030386463636265636334323430376536633764313534 -31373763653161326630303163343731643862333037646331663436373063616531356136366630 -63316439386133653834373630356636383562626565323335313431373363663433613564373633 -31316536613266353331363931373065623732646639653330643332323835646461313163353133 -35623036636366663565343663636531353335346232306661323366383536626538343637663865 -37663064356166303936313161393937633530646337376566303966386137393465376339333362 -63356134656463666539336439336139306465383936653230326665323136386132333433396262 -65653539643335326534363162613066663533396330343563383531633430376237323930326636 -64303438356236663863396533323963643238343038333631656533373164393665393537306461 -35363962613765643862353233633864356337316431616237333037363835343263313739616333 -66336261303766373064366230363764393964636430386231323630356231343736633230623236 -38646135666462326631333065646531666634313861356539383631626531333165633666353561 -33343037383233353637643531386434613934373731383665633863303536383437396337303231 -62626263346664623332633461653734316635313638646666666330373334306232376666343562 -31633930653665306561643733303236376665376132656637613234313138646665333161353530 -36363239313130623762313835396562396437323832326233633565633735363363656432623435 -37366261343762323236303261663231613264653833353763613534383233656432613665306363 -61613630316166343163643663396164653064316432656538653666656431353262356463356235 -38303238333763666661336333643734323239656437396439656437366231376437316632333336 -38303966386163316534633133306333613361323333386230623466646334313564363832393331 -63303664643366373633623131356662353630656565646262616532306531663736653038326566 -63376363616537626166323738393833376231383966656635353833623639363864656662376366 -66316638356532336164623865663630643431343662633836616562646466303935346131646531 -65373161356565323133323631373339363333663832663066383835373938353733613361363433 -30326630656465323336366636383261333139643634323164623239313431656538656339356331 -63313739653165323931373736663266313136336232653038366365626338356331373237376164 -61663735353361393263303263376536636430303465623263333234346132333939626464393239 -62616365353665616438623863363538643462363236616362323863346661633230376533313637 -30666337636362663263343739353637646533396361646161623637366464383263393336316666 -32363237636366323434323339346338373364656234323362316430336539346661333238663838 -39656532393931666439363333313061613031623336336131333366363337666565376466396362 -38393738656639333434623061363739353830303461366230353539373834383338613131633630 -39623238383939326264326462633263623238366566323538613934323935363139303836356262 -62633762663330343962326334303633623830356431396338633030383032396363663330623834 -38353735663738316666366331336261393364376365393966306263303136343235303066653130 -31393661653838333834666330313334353365356266373133656530626263396632353837373739 -61373936313632363261623737323035306165626433343761616262333337383133313038313064 -64336261386539336437643238303161306165333133396561616265616165613235373335353364 -32633037333934346633633833613135396638313465376434313662383838333763653935623631 -39343964653066633431363964356363396263353739393234376139656239343762663939323766 -64613539623531363535313166363064616135613261646434303630663336663731373365313638 -36626133626265643437656238663234306330306665633237653766366332353039343462336539 -35623530636666396135623835356335636339343338613666633365386434653264393465633136 -64663432643363643962363133346532663331656635333735393065653331613166623933346236 -39383137383463633566376462653437663666323566326566616137386435323536383163303163 -37343638643834303434323235666439366463326434306536643061623938623465373064643565 -32646533666261386264336230373466623464346363376533663233306635653434333863653163 -64633763336334373734333465346233643633613861636330356461323334653430383361633931 -35396461643961333037666265303331303733643537613937366438333036326232373531623965 -63363239623265313230396632363862616164643139353162363465656438386132663066343132 -35336634306631366432653132386136303065356534326233323765356233343163663233396461 -35313335346335313136376533623366336564343634366162656566383065313838363435326166 -39646563306433306635373162623737613466646461613835656438623931333633636461643864 -35646333336263343662353637613933353236653431633266643534336364306564373134333135 -66653236343564373235613265383933663362313937646361646164623437386230306538356665 -33363262396636383136343763343436346264366138656562373639616430656362333931643964 -62306335343734633431643934393736323465646534376466303138363865626662336534396333 -65623334623437643532663339396564363734663065313030623635316331373564623037323662 -37333237386438343131313239376136396561363762643461343031616433393465633564616334 -30623730653764323837626332313937646561656238303861323033666536353564316565336338 -35653236303462316661386535353438383839313937313534636239663165626630643331623030 -32623064346664306131336634656331376535396664613732383262313362363839313138393363 -33306566613263313862353138393364656434313461366664633063336138343732393938653439 -61663965303233356336633033386530353838363763353266306663633562333931326137393233 -34353539376336393033333262663162363536336163383730643333393762396638626630353030 -34653639393963303361373138633163313134303932616161383931636334303135646165303832 -65636139353336353561653435353539366364333466396162326633373635356365383133303831 -33643839633239633765363262666165333437363262386437303539366361666539623961326366 -31366636383366396435333638366334623834623165386463643763613966613537623637363937 -34666433396234663465666564356332323762653633646464376439336333333735363038343362 -61626436356162616462333461303739373965653535316233646338383063343865623663643865 -63306562653933333935343166613639326262636435306661663730343063643834303437303862 -33656432643337636639353734653065366139396434613639653933366439383361393332376437 -36303733313863363135353530343161356339336365653233643734666132356662336433363762 -30363936373761663564376162333039343330343233353232316532303461666234326466356438 -37316664363763653030633063343662326661626535303131663537626566623938643436386134 -31653765643633326435326235383866333835643034386133393561306166303831626433613763 -36353561373336626634316634626335313931366464363831343433393961623635363463613963 -63663462326262343937356438306439303031616133386136363138643434386432323863323263 -33363435373664626231653231636233633331623663353830303362356532623239666261383237 -39623030306232623063383563636462316539656665393938323365653938363934363862333633 -34396338613637623133386638363433636637393831623630323961343631353763626562326630 -37326635636238653764316138626661366335643639396531623737353239663731333839323963 -39396566343765663766323863666539613236386566376266663234663537393961306638373166 -33663665366434336464353132633265626237373730383966646339353165653934356632623030 -36373964643063336135363162666238383036393330653064656633323230373462623165316134 -32346630663532633031343135663565643930373438386234653966646563363438356237633062 -65653137663330633236373632623963313639303165633463313333333566373738383465616434 -35393236343937303934373438363139663439353564303636366632613162323934343334396238 -62656631363064613738346330623061343135663166623034623330313062653234616466363065 -31343763613263313135333435376334353839653862656164326436343539326631323234623834 -66366233653465326566643263383633636239363438326664346162353730383361653262333631 -32393330636535653439373366656466636530626162393338343637333736383431313836333161 -32393964613739393233633931336466316532313531393630623534383534313532333836323263 -30373537643634353032336263373636393864313533633139626139313666323832613738306436 -34396162326336663164326463373665326433323764336431616164313630646661636366363864 -33303831663831616534393737376536323365646139346633333338363838393237663435363933 -35626533303365616537646164663364383464383633323333356439633062323139316133363031 -65303036663733666331656339316439623934653863666566356438616663613331343838356661 -33643235626662383337663830366430636632613763333462373035633938626665396335316633 -37393736666362323731653466376561316261373437346633643432636137623433633732623038 -66643231303933663336356666376261383761386462663133333762646638313764353639626133 -32316561393932356235303135343231653938346234353631613265643333373535373263643162 -66663263316164343564376632376533373465633063376532626433326364353332643762316635 -633234626335363961343732366235613135 +38363532373564643461353766393066623930383132323232396464646561323036336336316365 +6361656330346135333665356238336136613766303966310a336163353061643961363966646563 +37663764313036646633343364303839363636346564656261616461356463353934323364626533 +3765633530363632620a306438323034616438396365353035616638653561393662636233653631 +33396135323037383336636164303438663066363863663363393837303232353631363234376538 +62396335643638623433663931623062636131623330346634393265356266666462353163386664 +31363137336264356363653163623536306536333232366132313932646431303537376464666363 +63663139306664623364316639616333613833363866313638366261646166393761626437323133 +35323832366335616666393233663662626336613439333032313866326263383637336663356636 +39666239303438383132323436356564306431656436663632633165396231383866376464636463 +62346230656363376638313461373436393935666339633131663534336631316630383063613563 +33356561666333623133336530663633653461366563326438326338613038666630663639393837 +39623939633433626539326133316361633864363038643835346433303266346136393464336466 +34366263383639613738376635316234643464653961386364666430373164333637373039363161 +36323134646364343330663438376265356132626665333565323930653231316464363936613931 +36313837316164633132306265363962393533323738386464663437626430626138633732383732 +30636439346561353030613936363838366164366134376165653666393062346234663734666339 +63303433663865323838303933663266396137376564653336646236353136313033666631643638 +32386361636632326638336430636165623539376139336234633963366437646137353238383739 +39643136656665303066343266313462373661366663653330353334303166336131643033633438 +66363535326465333636323430303031383362316462343435666165353766376365363135333934 +35653066663639653566663431656431333530323166636563343136343361373763626265383765 +63306439633734653566613434656136303739383035613361636564306436323065316635633831 +30393237633863666530623431393363643263623662643464356461393264383662383162643035 +64613033386235663761323939613436333165653264376666313737353533323364373832653532 +39653030643364306465316630646166353932323930383966366230333666386461666439353161 +30316164343166656338663461383838376265643630653637316262376632313632383733373737 +66643234376463336430353738623964613031623234626537353361346432343162666162323636 +62376136396235353131363734626631306339643731363432613338303665306663323030666434 +63346438306465633031623536343130663637646532376635306166623433326366613032303165 +34346661623561643731626165333763376136386237303230326530323534643136656639663439 +63313061386435373933663036613330373130363161373935613463326334663430396438656562 +38383236666466326137363438636637373066383335363861383137663138316234366535636363 +31636231336437356335636538323837616565326536303062306230386565363136386232356365 +32663435636631616433376533363365653036613531623161626366616565623163383565363337 +36633366326338303463326337623165626132633864656532663732633336633465623562316331 +34336561393962333364373331616237613461633938376665326337396461353163383738346636 +62343338663437366436343639313733333364353432313539313437326434646464363861326235 +34363564353136306461663362363036613637383762316334626237323530653432626236313062 +39316462646262363039653962303633343464393236663166336233626362616166323433626561 +34383962313435656161633762316334386261316538646331353165643365623932363264386366 +35643564353137373935316638653263306334626637323336643438363663646662356635636634 +35636531346337616162636134343862373364346361316265316465393862373034336431646463 +39666464393630353738633833623864326637383461393762643363343064663064643233393035 +36366434616261636639303037623633323666656463633339323638333931356133373534616665 +66323933663662336637376438383865663763316130376662633439366338386339323263346638 +34653137313431383662303038396466323433656530316534623534343161353138656563633630 +32636435386633373263356462373363303365626662306665303364396465653035383731643330 +33336433346537656663326464346362333666343962643237636335633531643234363936626664 +63386232656661396533323336326331323836396236383331323134303663383664666434613166 +35306361633163646132326337313462663331326634346139623064663137626265623466363764 +64373762333330656331363538323934393530386632396434313166313430343734306134646364 +31393565613439333036643266623335396465393365336235643933356261656363393032333461 +32383131316637626365386135306138626564376539363333663230653266396436303834633437 +65653932376134663432326230376339373430623434306133336538613934393364386464373065 +34316530303036636135323462356631646664386630663765363266373337326561623135303165 +30656436663463363435323430333838383335336161356339383531303630646631393562663331 +37396132613632356366373665326235646261613864353330316133326133636633366164353834 +39623462656162356537613239386332353061376632343731373965643430623762303632626338 +34383235383266633261653266656463376332363965616433616362346562306333343931353963 +32353737613365633139383832623062363665623436366266333132323132333535333063313061 +61373232366537316466366237633663623131326435333132393035653436396165366165623832 +66366566326539613832363363376534656430623534333835383030383834343163373936343130 +66373539363231386665636236343962663637343161326662623532393636333136336365666262 +38653532303735646161653266643030623163363661613135666532626135633038326638353861 +33383239393436656235356361323463393563663961646636633239366563656237343761363864 +31663533353230616437396334646662353736306365303861366136366632366330356335323138 +38356463393931373363626564326632333365666437393633633336343265303335316566303630 +33316465316462633434636638313962303364343036633639333863653864363533613866343066 +36386432396335393138313766366662623862393662666332643764646136393262636361306533 +38326633323361333562333239306166613866636161343463643634323037363137633531336333 +62363436323664333934373139303564393236316336623562366665613933343034653864616261 +61326361646533333638393632623732366338393934623031336430356537326235653031303438 +35663136313266636137653831353361633362393939343038626362396637616132353638376364 +66623939336635333635393166376666363966303634646365323861316261313137636137363565 +30623135333838356632666131643963346566323136323634643432366133326134373836353634 +64323435366137613464343838306162363437383434653361653631323961363731363936373066 +37613530623039346230343836646236353538323462323533313264616630663561353839633536 +30356430643161343162656230356331303034366361336233383537343831356232663832636435 +30353330666334393932393738353036303734623233303333373935613633613362356130623666 +66613562343832343861363937346431663464643539353838633837373630643536336364306265 +33396265373833353162656635346638333837326363363834386633336365306632643330613230 +64656166313038623636613237356134383565336237643133393032623863613663376431393266 +30636432616235376264376461393262316237306136306463666435383631386536666166336434 +64306337386530383263343732616661616162353730383733303035373265356535343731303934 +31336464326632623630616232663038653737643639616163653062633336663535343038393162 +31316332636135393235633861343435326566366433636231306238613631613364356365616431 +65613761666435633430616265663566343030313335613631633637316534396131666565613462 +66313537393533376232336561306237313437336264353734656435396163386637613739323564 +34653831643433393933393630666664373930386366393937626364303064323863626439623465 +36303735363963663733666532663333343136323436323863643565313430333936326636663734 +33653232366464383335666132313566323935383061316465323131326361653630333039386134 +31663166323031636661376266326535393235636232623862653536613961383663393131323363 +30636633356461383336326335363561343837623263376662633338633964626335326532313738 +65356339633364343038396266393833346630386134663832303230653538643966656634636131 +33376365636238626332383033363266393733363763306231303130663537393364313136366534 +39613730666133396335383865313732623434646437383639333432663163373661616332626232 +63656436383662353866306165336332326638386435613838323337333262363963613766393931 +30393763653531656362663362383862326166626363623837636435613566306637623132643639 +62353336306165373962326435303964626236633566346637663764373731386234666632386331 +34623361356566616439623032326339343436656461336163383264393934653961313964336233 +62393261366534353633353665653363303435656666393337383562613731366634613063303834 +38366438376463616138663631313037303138386237323431376535393432373861636330323862 +32613364646433306531653665323138666364373862336334383230353236393266366461333238 +30346464363239383034363130386364653937303161363431313634386563363366376136386463 +30633136633464356531633235333062313162393033373263623138333237376637326236643238 +35656563316366353031366130653966316132653039373536306537323731663830623165623532 +31333439356239383161323165666566646237306231663434623731653661353639353939336662 +36366264336462623164626432616434306231383664346537333934663637386634323664383130 +63396333363362326562616635353531313261633438366637383766336565393531656466353136 +65376239323861363864363530613132346234303364306131306633333337636635653964353863 +62333530323465393063396230306338633462373938613564653730386234343236356262316565 +38373839663031613730333634386265643661316462323563343061663131373937333937303734 +32303763666333323433303936663865376339303465303535653164623666613537616637383331 +32613539633431663433336133663635396564663835663335663534656561333165613562333666 +31393665613734346363376638643539643930356461666636316238376337353337633263383461 +63623734386465656130643133616566626631316134663739626337356263613832633532623336 +31613931383562313761303839636438336638323335396438646137393439623233373563323762 +34363831653834323330376463653931646366396630303033653430323137353930656230396130 +34326636616133633330383132333361633363626462346261363330666234343435666434663131 +62376432333965303630356236626161316233316165656166613435386138663565396539356464 +30366634656532313634333233636135313861623363393338616330323265303263383033656664 +32373464616234336533346635343263663161343161373032306564323865333936363462323266 +63306537383962643737656239356432333537333861343138636432333566393663623039363465 +65366436386235356262366165616162666266356137626632363465303966383838353865623931 +66653337663939363334356236376632393236373639353539363032656138613162333136333131 +32363834343836303038343536343737646239626437626162663835366266623562626331303939 +61623730346166336634306164626435636563643534316630316663343435346431653165383939 +36623237663564353532383737373735323734363963393164626437323138336366383834336563 +64386530636538653364623161323765613835386463386361303931633664366462653461323237 +63363537666161383032653564336231356263396662643236313438626462363933313734646366 +30306162383463363663373830396263363735373962353432666337663263663363326135663333 +61623466663066306134343339356532333236353732316531383234636265326262633961336164 +64663866383536373436366165376464396634643830373137653238623437303364613965303135 +33303437663965366436306536373138316664383466653865333438346432343564613833396630 +63383637363930326630353638663762666235366662313439346564616566353962373537613563 +64316634663264393265333032323261383133663030356635623061623130623533346364346231 +33333932326264373161326531316439623232623365306535333963306530666361343965623539 +62323232656331396432633063656336333239383038333863633137623761663164653265343564 +37333139393963333666346339313737333038356633363036633230316363346636363334643232 +63633137316565333934633836653734313833393232313337316532333465623533393262326266 +37633933633566306536633030346132643134613961663732613461373964326134323536633539 +32323664646636366233393135353930663938353239616333323539656436656138363234646631 +66393832333263313839343036303535653836643961356131636632643731396463336633376534 +37323735643465353133373735656131646236313632643665373235646664333434303136363838 +30646335383738623165356465366462623861636337363362383538326465666635663534383566 +62633561396133626538306430616336383363316331653139656437353033353964656238353630 +38306138613764303037313364303432353132356337343862373230303165633762323339653464 +30386638326664393934663139316534393063376161653031633532643435653336643639633561 +64626336336632316237326435353263663364653831336165323730303137333861656430613036 +65333433663730343339623738313235656263303265666364373531653964383366353464383365 +66356462303236653432373164613431323036663463323565313761336236663632636261633962 +34366430663762653031653961383536333665393465356266386434396266316331643661663835 +64343033363731393263386536653262613362636336356266363462366439636663336636623435 +35313666626461636565613831613535623634323134386332646265333231646462633736656230 +34303361316439313031303662316366303237616436643663383066373334376534616262633530 +63333132633531613766626235393034666638386163643537636464333366346237336532303535 +64623862356634303963373632613639376633623235376432613633383734636131336336393062 +34653261333863346639656130623632623330356230313930666634343031323562643936643466 +38613639313464383662336536343030353263656665346130633530643036613532633638666230 +35666461393262353437383332393139353962316138643139383432623961323931353139666133 +64343337623633386633643565383733623732333664623039303430356433343338326464306330 +33626335306561663734666666656562623064646534313961363032323238613032633133383265 +64323336633438626535303237656562363034653632666239333761316639616135356430383333 +35653639373039316137376666626639396235353866333031383764316462323265336665646336 +39393334386437363533633462346361623437613161646632656639346430353865613865623934 +65663963343739303761333731313533363231663863343131316630363137356235323138613364 +63356136663332393235636431663566663865383136626331343439393664396262363137306235 +62636431643563326664333363323832336535393366306338356463366135623165343361646335 +30323832343038363462626538386533373830306631386162303466626264643234353866373333 +38316661333232393439386637663431613761303532353434376662353162363834353130323032 +63323637353338316233353133353438386539363037366636303264623438643438383136313831 +33633532303733396566666661343034626162656430343865626337356138346138396234316439 +62643866353839336135633434663231386230316661656138323733623666306137353233656536 +37613761316366316162306532323433373562653436316233373061383433383534643537653932 +65363233363335636639383364323165346237636131386433623730336165623137323161386365 +31326339383638663163666332333166633437303331626134313134626566346661333264656637 +37336338356661306430643931653231376139643930663163313532346137616535353562326661 +38646239613034383731663863373161316135613535353832343862386537396666383261653135 +36343463613136386435313134363363353437383836643662313664356238623766373263663536 +33353031636364663738356439386631363836663239353366616161616433656665666561636139 +65623230646133653238643535613931643937633636643630613535613263373338313762333362 +32666330613435643961353738393363303331306364633535353165386633373135343935326234 +33393132363833353832346433636333613061636266663736613539313731303364663432376534 +36313739363063366161383338353465313331663035343863353339653866306362336666346438 +65356366353930386138306162343139353764353061626436383133383937333764343538373630 +63346366356165333134333839396261363263316564613363326465643065313138396137396666 +30366165383962366233303637396338636435313235383762666634653536323165666330653666 +31323532303837303832396430613261656462313464616166333433333961626534656565336264 +34623232346262663731666639373761363063666362333162363633643566653165393561306334 +37313139623630333932643264646235356331646161353431386235303136353435373734336536 +34383664633965323163353332646661393737613737333866643332396330616430316336643130 +34363166353935333761623265386265323833376433336436386165393761323634623137353030 +32656630613539303364656638373965316363623164653132633062623130306636393837366330 +30653037616137393061323230363034353765623035393730373736313036383666626365373137 +65373236373161346163623865623963366630343163353139343137363632636437636166356532 +62336230616439323963383636663466313930306530656462346130656236323066623435633834 +38363961653562653831306330663735383263643335633232363135336532613639636361336636 +64303830323062373934323631313639663262636333646133616235326635363233336163306339 +34373539306337303132623464656365396336323766636534303962363363623664383135333835 +31363666633832396433323531653063646233633236373261653061623965353730313232313837 +62653133343865363965623639656439653138633032613438303230663938643966303365616236 +31396630633631383165633238643761386566363436333130613364323035326636363862653031 +39363734333334363163663565373430613331643364633932393061643762623132656661636633 +37383430393364386136393130383566363466393962666530353633333036336437336262353161 +37613662363538653932623764396631366230616462306565363565316239323563663064363430 +32396437313134626139333862643231363263663835646465353330633862363338623163306333 +30336636363638373530313261303362333332333334373562663062666364653234303762353038 +34333231336238363066363364313239633830613637343030353037373762386261316637316436 +30356637356464396136653636383431616436313537663534636630643935613463393131323134 +37363439666362393966636534386136333861316165656265333835333739353433376437303762 +65303264306138306434383736663932303735633433633035393437323439376331633332326162 +36663135663065313332383663323139646464346532313433656231343264383039623030336239 +39653163313937663136323833343230646464626134386539313633323639346334333831326566 +37326532613837346563316463393331353731613434643862353732616364366635383165336636 +31656330316633316635376230386665623232666535336331643730336533323962663766363133 +30626631303065323839306332326562353763316535323161646163373439663834633736323833 +61663833653532346261313663376532623339626364313333303931323263613232343139303633 +64643931386663316663383538633235663365303463643364343966313966346266353437653439 +61616461393535636461383136626365653133633633326531653331316639646538306534623734 +65356138613463653361623238613032643935346231346635386138646130653834396236373734 +63313366616435323661636366326635653132343239666466663735623266343566343230373464 +38666133636335636532633662303833373335613361386262356639643366303766383334303261 +66623530623263363662313634653939636234343662343433656138623266633131366465643032 +66393037316536393732366631303861326561353836303936636362366330643036633862383361 +62623237346436373534346635393132333639303461646237363264356533633930396366613365 +34356165616331356634353366646137653734633937396562636465386664323039613563623639 +30623532616235386161633335666162393139376139356339623164333163316565336135303433 +31386337343530363232653263653561383264616135383033663830333036313137353739636665 +37353030663565386535303564386332373663333338326266363439353262656562333235376434 +34343864363734656636393131336563633965343234313964326462616163366133393531356638 +64616533393666313938366135313733643862393032363264356134393733353832626336336162 +61666231653435313366616362363964303230326363663533313736396636626463356264666635 +35663962366233366365646434366232373564323334336334636431666438313562353734353964 +38333532366432613939316530326237396562646462663766633038373833373331366464633034 +64363762643633623665373830393662646633343263623138316430316534393431396563623130 +38393137343061346230326563623466666261656362366438346562333265613761663731383230 +66633737636434303437643531386332626633393533313533623765353138323430346335383831 +65666133386266626465393564366461656466366561623766356562636562663936366332633763 +32393739653734316365343536303732646264666332343635383663363565393761353035333737 +64326632636433366164363031306564386465656334666135336165316461653931346230303539 +65396137663237616538353836303339643237316437326263316535323034366533323764383137 +35313661366635356437336533313361366638333863333734626139656136663663613235373264 +33626563613238353737383466613032393166333337373934636330613262356430373361333165 +34386139623566353261303237316439396533333737373566663134333436623634633166366539 +35353066313736646262346637336538613163626362366238396432616133626333626236623835 +37666330343461386463313837663834323965613432353962303139336630363065363663386662 +37346436613064313839623964376137643064393330656336643938383766633139376332303032 +30366137636637383034646139646133653130656539383234376334333566613665306562643362 +38323766643832363461373836343738356237363930346564656661313466633939343462383731 +34653464633562663563643361613933343663393163343761323662636333393834656438323635 +37626331306139623163336530323938653263336633383663346230343535303165613764356536 +65376563646634353030366131353937663766346261633038633931333966343937323635396362 +66303634353638303430343437666439366434343633653039636630353638363136323838303661 +36383632656437306231343036393436636539303663633239613433633434623633326262343537 +34386436363135623662383832666530333735643266663733336630626631646432376561313530 +35636261343435383935313262626137613230373866666262366334323861343833303265373039 +31643136366237316265393133346331626230333932356236313238393933386264646533353664 +36313763353166653536373835386132356230613663643861663931653065653530353638626137 +66336638653837373762616635323832663438303161653236663866326462613330333261363261 +62393734656633663962346134326433383634316564663836613863383733386165313164643634 +61306365373835393933373930326337376338373164643635333239393431613735653332613731 +32656131366536326338363863313939366435626437303162306662623861363264623234353838 +63343264653435396330373837313238643262636237616161626431323862373563666362633337 +31383033383437343038383931613337393039323039663738643861663235336364353437363938 +34373563316330323236313362643030356431303164626264346237373536316263373061383039 +34613832626134623132616662316435623862636431623538613033393562323532306165633033 +66313139313638356130313633393930663939636264313537383935316630316163383138623866 +33613466366431656266383965363731393766663737303034373932616239396439383534643864 +64633165333437363465343734343038363562363462373562306234626465363334643361636239 +30633436623363363139636435383334343963353030653534383832663734393264303433306631 +32613033643631643737323331646434366632396666323836653965626462376631323930343761 +65633832386234643130316632313566656534396530356264383662393064363562616135306637 +36313938653338663137646363393037633935666465633065353963653262623634323563626365 +66356530376466333139353332636364386566326334373764653536616164323833316138333630 +61643033363436313639316534306164376338613233333361366563353663363130346166633034 +32373132383464616466333566626230656231366539323864353038666538303834613364393561 +34356630333361303963656139373431626263393432353863653438303761373361353131373763 +34303739393939336633353662393532323630326233373532373037643466313666663165336134 +38626662333463313431326562383831633034343236333636316338323431653935313562613638 +31623839373165623139646164623461306136616531393735373334336338356338303231613634 +34303166393733333530313564353738363232316462333861636432343261656430363962663538 +39333636376163343564663361616434363033626465313736376132356163663564623837333534 +31623862643233373936633335346463333131343839363730626335663431316430363734353063 +64373163363262663863613363363835356664643633346364646532626135396661393835396561 +30613361303634653736343665323364613132643036336132353962353365313534373033353036 +33366435396531646237646137323361306231366464643030323031346431646638633330376565 +38623063346363343564303435623735313262353266613830333433636535663838313931653065 +35656539663434663731356132363162656164343936343264636462306564396463393862366665 +33316262313632373736376432326138323464333238346365346461303732663365303061633862 +31333266666531643665373663373835623361356139306632326438373537613132613761626434 +32616631643436393238656665353039346666376464316362633036313964353336323131343133 +61646665663966373433313030383334303838666331613235626162303531336163323535343735 +39666433646339366338353363313165656536343361376231646236643361396535383635366536 +39303063383534636433373433313061336238383431316663313761646133643065383334356332 +35303230663436333938656637323561303065323034353839363934356232313265343038303365 +33303839636132363265316638343663663763623961306238663033633039623135313330643362 +37386664633937386635653239333639633736323637316465306635623962643333643330323162 +62326365626466323862333035316637346362373535343437343931393735383638343733393066 +66373462636263633032393631323231646332663837316135326131643563386339343264333238 +36643062643564656337363130623231383837313563636331326136396162353238326264396238 +34373966303330656136316233373231613232363233656338323532663733383261643234633738 +65633735653638386439366262666331613832313965303465323539386439366235373236626433 +65656139353964326162323639383963356162333162383830306538333438306334663137396135 +39373736326462643439623437303836313537336166373038656133643131653535623535333537 +32336637383430396238613466633530326533313933386163653939393136646363343637323161 +39623862643937636533636532616635316466373861623039363834626438366363363766356164 +39663962333161653965383330353561616435323161373564373439633137373232333636633032 +39333838396139326661636136343138353935613231663633663730353162393465616234646363 +37393739323866666234656235663361313835373037356566626265616333663662373430636235 +31323663303765303932376662623831663339653835616436313738653261366563323666663764 +61363836633037633834306137656237366532303131313738346566613065386261386635303061 +32633265323364636533643436383166333761663337633235306362643465336138313734613936 +61643438393530356237393433336136313566653162356234306466633637306565393836386162 +65313062356266306432656235346431623030666666623862323638646437636335346365333832 +31316566346237623737