ASR_BASE

Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/external/subpack/net/lighttpd/files/lighttpd.conf b/external/subpack/net/lighttpd/files/lighttpd.conf
new file mode 100644
index 0000000..caae25f
--- /dev/null
+++ b/external/subpack/net/lighttpd/files/lighttpd.conf
@@ -0,0 +1,248 @@
+# lighttpd configuration file
+# 
+## modules to load
+# all other module should only be loaded if really neccesary
+# - saves some time
+# - saves memory
+server.modules = ( 
+	"mod_rewrite", 
+#	"mod_redirect", 
+#	"mod_alias", 
+	"mod_auth",
+	"mod_authn_file", 
+#	"mod_status", 
+#	"mod_setenv",
+#	"mod_fastcgi",
+#	"mod_proxy",
+#	"mod_simple_vhost",
+	"mod_cgi",
+#	"mod_ssi",
+#	"mod_usertrack",
+#	"mod_expire",
+	"mod_webdav",
+	"mod_mbedtls"
+)
+
+# force use of the "write" backend (closes: #2401)
+server.network-backend = "write"
+
+## a static document-root, for virtual-hosting take look at the 
+## server.virtual-* options
+server.document-root = "/www/"
+
+## where to send error-messages to
+#server.errorlog = "/var/log/lighttpd/error.log"
+
+## files to check for if .../ is requested
+index-file.names = ( "index.html", "default.html", "index.htm", "default.htm" )
+
+## mimetype mapping
+mimetype.assign = (  
+	".pdf"   => "application/pdf",
+	".class" => "application/octet-stream",
+	".pac"   => "application/x-ns-proxy-autoconfig",
+	".swf"   => "application/x-shockwave-flash",
+	".wav"   => "audio/x-wav",
+	".gif"   => "image/gif",
+	".jpg"   => "image/jpeg",
+	".jpeg"  => "image/jpeg",
+	".png"   => "image/png",
+	".svg"   => "image/svg+xml",
+	".css"   => "text/css",
+	".html"  => "text/html",
+	".htm"   => "text/html",
+	".js"    => "text/javascript",
+	".txt"   => "text/plain",
+	".dtd"   => "text/xml",
+	".xml"   => "text/xml"
+ )
+
+## Use the "Content-Type" extended attribute to obtain mime type if possible
+#mimetypes.use-xattr = "enable"
+
+## send a different Server: header
+## be nice and keep it at lighttpd
+#server.tag = "lighttpd"
+
+$HTTP["url"] =~ "\.pdf$" {
+	server.range-requests = "disable"
+}
+
+##
+# which extensions should not be handle via static-file transfer
+#
+# .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
+static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
+
+######### Options that are good to be but not neccesary to be changed #######
+
+## bind to port (default: 80)
+server.port = 80
+
+## bind to localhost (default: all interfaces)
+#server.bind = "localhost"
+
+## error-handler for status 404
+#server.error-handler-404 = "/error-handler.html"
+#server.error-handler-404 = "/error-handler.php"
+
+## to help the rc.scripts
+server.pid-file = "/var/run/lighttpd.pid"
+
+
+###### virtual hosts
+##
+##   If you want name-based virtual hosting add the next three settings and load
+##   mod_simple_vhost
+##
+## document-root =
+##   virtual-server-root + virtual-server-default-host + virtual-server-docroot or
+##   virtual-server-root + http-host + virtual-server-docroot
+##
+#simple-vhost.server-root = "/home/weigon/wwwroot/servers/"
+#simple-vhost.default-host = "grisu.home.kneschke.de"
+#simple-vhost.document-root = "/pages/"
+
+
+## 
+## Format: <errorfile-prefix><status>.html
+## -> ..../status-404.html for 'File not found'
+#server.errorfile-prefix = "/www/error-"
+
+## virtual directory listings
+#server.dir-listing = "enable"
+
+## send unhandled HTTP-header headers to error-log
+#debug.dump-unknown-headers = "enable"
+
+### only root can use these options
+#
+# chroot() to directory (default: no chroot() )
+#server.chroot = "/"
+
+## change uid to <uid> (default: don't care)
+#server.username = "nobody"
+#
+server.upload-dirs = ( "/tmp" )
+
+## change uid to <uid> (default: don't care)
+#server.groupname = "nobody"
+
+#### compress module
+#compress.cache-dir          = "/dev/null/"
+#compress.filetype           = ("text/plain", "text/html")
+
+#### proxy module
+## read proxy.txt for more info
+#proxy.server = (
+#	".php" => (
+#		"localhost" => (
+#			"host" => "192.168.0.101",
+#			"port" => 80
+#		)
+#	)
+#)
+
+#### fastcgi module
+## read fastcgi.txt for more info
+#fastcgi.server = (
+#	".php" => (
+#		"localhost" => (
+#			"socket" => "/tmp/php-fastcgi.socket",
+#			"bin-path" => "/usr/local/bin/php"
+#		)
+#	)
+#)
+
+#### CGI module
+cgi.assign = ( ".pl"  => "/usr/bin/perl", ".cgi" => "" )
+
+#### SSL engine
+$SERVER["socket"] == ":443" {
+	ssl.engine = "enable"
+	ssl.pemfile = "/etc/lighttpd/server.pem"
+}
+
+#### status module
+#status.status-url = "/server-status"
+#status.config-url = "/server-config"
+
+#### auth module
+## read authentification.txt for more info
+auth.backend = "plain"
+auth.backend.plain.userfile = "/etc/lighttpd/lighttpd.user.webdav"
+#auth.backend.plain.groupfile = "lighttpd.group"
+auth.require = (
+	"/webdav/" => ( 
+		"method"  => "digest",
+		"realm"   => "WebDav",
+		"require" => "valid-user"
+	)
+#	"/server-info" => ( 
+#		"method"  => "digest",
+#		"realm"   => "download archiv",
+#		"require" => "group=www|user=jan|host=192.168.2.10"
+#	)
+)
+
+#### url handling modules (rewrite, redirect, access)
+#url.rewrite = ( "^/$" => "/server-status" )
+#url.redirect = ( "^/wishlist/(.+)" => "http://www.123.org/$1" )
+url.rewrite-once = (
+	"^/([a-zA-Z0-9_-]+)$" => "/ASR/$1.html",
+	"^/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$" => "/ASR/$1/$2.html"
+)
+
+#### both rewrite/redirect support back reference to regex conditional using %n
+#$HTTP["host"] =~ "^www\.(.*)" {
+#	url.redirect = ( "^/(.*)" => "http://%1/$1" )
+#}
+
+#### expire module
+#expire.url = ( "/buggy/" => "access 2 hours", "/asdhas/" => "access plus 1 seconds 2 minutes")
+
+#### ssi
+#ssi.extension = ( ".shtml" )
+
+#### setenv
+#setenv.add-request-header  = ( "TRAV_ENV" => "mysql://user@host/db" )
+#setenv.add-response-header = ( "X-Secret-Message" => "42" )
+
+#### variable usage:
+## variable name without "." is auto prefixed by "var." and becomes "var.bar"
+#bar = 1
+#var.mystring = "foo"
+
+## integer add
+#bar += 1
+## string concat, with integer cast as string, result: "www.foo1.com"
+#server.name = "www." + mystring + var.bar + ".com"
+## array merge
+#index-file.names = (foo + ".php") + index-file.names
+#index-file.names += (foo + ".php")
+
+#### include
+#include /etc/lighttpd/lighttpd-inc.conf
+## same as above if you run: "lighttpd -f /etc/lighttpd/lighttpd.conf"
+#include "lighttpd-inc.conf"
+
+#### include_shell
+#include_shell "echo var.a=1"
+## the above is same as:
+#var.a=1
+
+#### webdav-need digest auth folder
+$HTTP["url"] =~ "^/webdav($|/)" {
+  webdav.activate = "enable"
+  webdav.opts = ( "deprecated-unsafe-partial-put" => "enable" )
+# webdav.is-readonly = "enable"
+# webdav.sqlite-db-name = "/var/run/lighttpd-webdav-lock.db"
+}
+#### shared-no need digest auth folder
+$HTTP["url"] =~ "^/shared($|/)" {
+  webdav.activate = "enable"
+  webdav.opts = ( "deprecated-unsafe-partial-put" => "enable" )
+# webdav.is-readonly = "enable"
+# webdav.sqlite-db-name = "/var/run/lighttpd-webdav-lock.db"
+}
+
diff --git a/external/subpack/net/lighttpd/files/lighttpd.init b/external/subpack/net/lighttpd/files/lighttpd.init
new file mode 100644
index 0000000..1577d05
--- /dev/null
+++ b/external/subpack/net/lighttpd/files/lighttpd.init
@@ -0,0 +1,53 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006-2011 OpenWrt.org
+
+START=50
+STOP=50
+
+USE_PROCD=1
+PROG=/usr/sbin/lighttpd
+
+validate_conf() {
+	$PROG -tt -f /etc/lighttpd/lighttpd.conf >/dev/null 2>&1 || {
+		echo "validation failed"
+		return 1
+	}
+}
+
+start_service() {
+	PIPE=`uci get cmdline.PIPE 2> /dev/null`
+	
+	if [ "$PIPE" == "1" ]; then
+		echo "Disable webUI in pipe mode"
+	else
+		user_exists http || user_add http
+		[ -d /var/log/lighttpd ] || {
+			mkdir -m 0775 -p /var/log/lighttpd
+			chgrp www-data /var/log/lighttpd
+		}
+
+		validate_conf || exit 1
+
+		procd_open_instance
+		procd_set_param command $PROG -D -f /etc/lighttpd/lighttpd.conf
+		procd_close_instance
+	fi
+}
+
+service_triggers() {
+	procd_add_reload_interface_trigger loopback
+	procd_add_reload_interface_trigger lan
+}
+
+reload_service() {
+	# lighttpd graceful restart (SIGUSR1)
+	procd_send_signal lighttpd '*' USR1
+}
+
+relog() {
+	# lighttpd reopen log files (SIGHUP)
+	procd_send_signal lighttpd '*' HUP
+}
+
+EXTRA_COMMANDS="relog"
+EXTRA_HELP="	relog   Reopen log files (without reloading)"
diff --git a/external/subpack/net/lighttpd/files/lighttpd.logrotate b/external/subpack/net/lighttpd/files/lighttpd.logrotate
new file mode 100644
index 0000000..9bf4859
--- /dev/null
+++ b/external/subpack/net/lighttpd/files/lighttpd.logrotate
@@ -0,0 +1,8 @@
+/var/log/lighttpd/error.log {
+	maxsize 1M
+	compress
+	delaycompress
+	postrotate
+		/etc/init.d/lighttpd reload
+	endscript
+}
diff --git a/external/subpack/net/lighttpd/files/lighttpd.user.webdav b/external/subpack/net/lighttpd/files/lighttpd.user.webdav
new file mode 100644
index 0000000..8a5c9a6
--- /dev/null
+++ b/external/subpack/net/lighttpd/files/lighttpd.user.webdav
@@ -0,0 +1 @@
+admin:admin
diff --git a/external/subpack/net/lighttpd/files/lighttpdp403.conf b/external/subpack/net/lighttpd/files/lighttpdp403.conf
new file mode 100644
index 0000000..e605373
--- /dev/null
+++ b/external/subpack/net/lighttpd/files/lighttpdp403.conf
@@ -0,0 +1,222 @@
+# lighttpd configuration file
+# 
+## modules to load
+# all other module should only be loaded if really neccesary
+# - saves some time
+# - saves memory
+server.modules = ( 
+#	"mod_rewrite", 
+#	"mod_redirect", 
+#	"mod_alias", 
+	"mod_auth",
+	"mod_authn_file", 
+#	"mod_status", 
+#	"mod_setenv",
+#	"mod_fastcgi",
+#	"mod_proxy",
+#	"mod_simple_vhost",
+	"mod_cgi",
+#	"mod_ssi",
+#	"mod_usertrack",
+#	"mod_expire",
+	"mod_mbedtls"
+)
+
+# force use of the "write" backend (closes: #2401)
+server.network-backend = "write"
+
+## a static document-root, for virtual-hosting take look at the 
+## server.virtual-* options
+server.document-root = "/www/"
+
+## where to send error-messages to
+#server.errorlog = "/var/log/lighttpd/error.log"
+
+## files to check for if .../ is requested
+index-file.names = ( "index.html", "default.html", "index.htm", "default.htm" )
+
+## mimetype mapping
+mimetype.assign = (  
+	".pdf"   => "application/pdf",
+	".class" => "application/octet-stream",
+	".pac"   => "application/x-ns-proxy-autoconfig",
+	".swf"   => "application/x-shockwave-flash",
+	".wav"   => "audio/x-wav",
+	".gif"   => "image/gif",
+	".jpg"   => "image/jpeg",
+	".jpeg"  => "image/jpeg",
+	".png"   => "image/png",
+	".svg"   => "image/svg+xml",
+	".css"   => "text/css",
+	".html"  => "text/html",
+	".htm"   => "text/html",
+	".js"    => "text/javascript",
+	".txt"   => "text/plain",
+	".dtd"   => "text/xml",
+	".xml"   => "text/xml"
+ )
+
+## Use the "Content-Type" extended attribute to obtain mime type if possible
+#mimetypes.use-xattr = "enable"
+
+## send a different Server: header
+## be nice and keep it at lighttpd
+#server.tag = "lighttpd"
+
+$HTTP["url"] =~ "\.pdf$" {
+	server.range-requests = "disable"
+}
+
+##
+# which extensions should not be handle via static-file transfer
+#
+# .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
+static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
+
+######### Options that are good to be but not neccesary to be changed #######
+
+## bind to port (default: 80)
+server.port = 80
+
+## bind to localhost (default: all interfaces)
+#server.bind = "localhost"
+
+## error-handler for status 404
+#server.error-handler-404 = "/error-handler.html"
+#server.error-handler-404 = "/error-handler.php"
+
+## to help the rc.scripts
+server.pid-file = "/var/run/lighttpd.pid"
+
+
+###### virtual hosts
+##
+##   If you want name-based virtual hosting add the next three settings and load
+##   mod_simple_vhost
+##
+## document-root =
+##   virtual-server-root + virtual-server-default-host + virtual-server-docroot or
+##   virtual-server-root + http-host + virtual-server-docroot
+##
+#simple-vhost.server-root = "/home/weigon/wwwroot/servers/"
+#simple-vhost.default-host = "grisu.home.kneschke.de"
+#simple-vhost.document-root = "/pages/"
+
+
+## 
+## Format: <errorfile-prefix><status>.html
+## -> ..../status-404.html for 'File not found'
+#server.errorfile-prefix = "/www/error-"
+
+## virtual directory listings
+#server.dir-listing = "enable"
+
+## send unhandled HTTP-header headers to error-log
+#debug.dump-unknown-headers = "enable"
+
+### only root can use these options
+#
+# chroot() to directory (default: no chroot() )
+#server.chroot = "/"
+
+## change uid to <uid> (default: don't care)
+#server.username = "nobody"
+#
+server.upload-dirs = ( "/tmp" )
+
+## change uid to <uid> (default: don't care)
+#server.groupname = "nobody"
+
+#### compress module
+#compress.cache-dir          = "/dev/null/"
+#compress.filetype           = ("text/plain", "text/html")
+
+#### proxy module
+## read proxy.txt for more info
+#proxy.server = (
+#	".php" => (
+#		"localhost" => (
+#			"host" => "192.168.0.101",
+#			"port" => 80
+#		)
+#	)
+#)
+
+#### fastcgi module
+## read fastcgi.txt for more info
+#fastcgi.server = (
+#	".php" => (
+#		"localhost" => (
+#			"socket" => "/tmp/php-fastcgi.socket",
+#			"bin-path" => "/usr/local/bin/php"
+#		)
+#	)
+#)
+
+#### CGI module
+cgi.assign = ( ".pl"  => "/usr/bin/perl", ".cgi" => "" )
+
+#### SSL engine
+$SERVER["socket"] == ":443" {
+	ssl.engine = "enable"
+	ssl.pemfile = "/etc/lighttpd/server.pem"
+}
+
+#### status module
+#status.status-url = "/server-status"
+#status.config-url = "/server-config"
+
+#### auth module
+## read authentification.txt for more info
+auth.backend = "plain"
+#auth.backend.plain.groupfile = "lighttpd.group"
+#auth.require = (
+#	"/server-info" => ( 
+#		"method"  => "digest",
+#		"realm"   => "download archiv",
+#		"require" => "group=www|user=jan|host=192.168.2.10"
+#	)
+#)
+
+#### url handling modules (rewrite, redirect, access)
+#url.rewrite = ( "^/$" => "/server-status" )
+#url.redirect = ( "^/wishlist/(.+)" => "http://www.123.org/$1" )
+
+#### both rewrite/redirect support back reference to regex conditional using %n
+#$HTTP["host"] =~ "^www\.(.*)" {
+#	url.redirect = ( "^/(.*)" => "http://%1/$1" )
+#}
+
+#### expire module
+#expire.url = ( "/buggy/" => "access 2 hours", "/asdhas/" => "access plus 1 seconds 2 minutes")
+
+#### ssi
+#ssi.extension = ( ".shtml" )
+
+#### setenv
+#setenv.add-request-header  = ( "TRAV_ENV" => "mysql://user@host/db" )
+#setenv.add-response-header = ( "X-Secret-Message" => "42" )
+
+#### variable usage:
+## variable name without "." is auto prefixed by "var." and becomes "var.bar"
+#bar = 1
+#var.mystring = "foo"
+
+## integer add
+#bar += 1
+## string concat, with integer cast as string, result: "www.foo1.com"
+#server.name = "www." + mystring + var.bar + ".com"
+## array merge
+#index-file.names = (foo + ".php") + index-file.names
+#index-file.names += (foo + ".php")
+
+#### include
+#include /etc/lighttpd/lighttpd-inc.conf
+## same as above if you run: "lighttpd -f /etc/lighttpd/lighttpd.conf"
+#include "lighttpd-inc.conf"
+
+#### include_shell
+#include_shell "echo var.a=1"
+## the above is same as:
+#var.a=1
+
diff --git a/external/subpack/net/lighttpd/files/server.pem b/external/subpack/net/lighttpd/files/server.pem
new file mode 100644
index 0000000..85d804e
--- /dev/null
+++ b/external/subpack/net/lighttpd/files/server.pem
@@ -0,0 +1,50 @@
+-----BEGIN PRIVATE KEY-----
+MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQChQWTTHi4Oq2R4
+63Jbh0kXsPY07bZcxtyWsH/i4DH2x9suAq7oLhFFUrs5zXb2hAnLmBLk/sWcagbQ
+q2DwrztgoE4EMpm7sShRDSpvFwieLScrZ/qyC2ucc3EwNXz8L2Y6etg0P+dH1jb3
+ytb2CPr4HlRqvW8DpwomhOIj8q5rYXNx3jK/LGpiD814imQX+Rs4QHpMPsFSOn/h
+Zsnn0lGMXo9qYLcng2HCU6OkKe6LY9Y3joJdiOzhXM+doxa4p0p+B/mA8lq8Odmg
+SnRuDBc3CYYfwa97zaSP7/FI2y/Aup5/EiD6Oky000maLn6VwhCMyhU0/kyDxJoY
+MuWu1Aq/AgMBAAECggEABjU5R3Ni/IeWn50Y0vM7WiEi6Vi5a4rwVRDIa5iL898v
+ze6mgyO64HtV39zMFqNwqRjaqVwxiVr/liry2XE1jPu+5SR5jKM+VRh3qL0vRL+i
+QWaIXTBZXTWIhv2YKTE980RlbGWFZtuVVCbH7cLcvo6UW2OdkXttxZvaBN5D3rhb
+Do0dwqx+NOC/v3uBhJ91GfXvVPyXP9qHzGw6Ty4XpDO2cEiSN/W7z0a0gZgB29g/
+s24aa+ILsIG10Ep6iBLOjFc9nwrv7zrkBNLAhQ+mJxPogdtBcdb3QhTLL9L9aXv9
+/H9VXOBIsOt5Uaz/clTqcnKTl6XKS2s7KUNk7mEWeQKBgQDP0i/4Vt1M3uypYumM
+D4PUycSDzLOK9lVGwBvvd6vFwyFg855Ud3NIVlZLiiWBO0byzfzarstBGwiw4Iv/
+pQp9jr1XyX9LNzXZHO+SM8LMQdAcJlhz+mWTPXqryuhXjdywgIUUweX0nd5vCF4C
+V1aw1qXLr16yRhu6qsZct8CzowKBgQDGo57GC/Lk9TCsiJBoAD3nArkeE/9EHQIt
+KWg0S8jpGvwtjRS5sS8R6Y2M1XmtJoArLokLoOThZPtN66I3/0jtFarTaAvFIK7Y
+qnFf3LeQsXA/e9HQWOE1cHymvFUkQB42MFatBe+7tYgorwEtRPpc1WQbBw5O7nZi
+ks8KDbNeNQKBgQCyCD7eARQd+U9GoJywRs5J6Pt3aVJZ9kMBlCuaTquRhGNA2hLG
+C3pv+r58ggE1H2HdOUem01z+Djm4xPRJ8cn12+UqokxxU//GWfqGBd+X+b1dkB/w
+Yw7HP0CqkO3Pq5Dmh4L6UE097EwUVFesq8NxRMDNqBN4p4Szuf6qiSQE/wKBgE2K
+a51l5rBn4lNHkA95ILEACCFsrvX42POmOU5I0ynj5dMmQpPmTbiRUjdK0g+8esXg
+iZDngtFVqSAWvqFbXy1liuSxtf6Crp5XkqBYObQa//VYMWRCfc9tlMtFs3rOKL0A
+i6VJLvc4eulev3fbeFwq1MQUMgqv3bjHFFkZVg6NAoGBAMf0HrGMrMGZOGcg5ZYy
+icIuZ/mhFr64MMRJ7vsBjLQzXF2Q5loO5ulWKmhff3oMRrAlVmxsRmubZam20081
+jOHonm6oRCJ8Avp2ujSOkzlES08ddxnYCBp3Np3CubMBugY9EqSGL6BnY+5PIuAU
+Du651IyEdwd8SjxdP+qm83NH
+-----END PRIVATE KEY-----
+-----BEGIN CERTIFICATE-----
+MIIDpTCCAo2gAwIBAgIUEmM7pvAuQGFXvU9lF6l1rFY9wGkwDQYJKoZIhvcNAQEL
+BQAwYjELMAkGA1UEBhMCQ04xDjAMBgNVBAgMBUFuaHVpMQ4wDAYDVQQHDAVIZWZl
+aTEMMAoGA1UECgwDQVNSMQ8wDQYDVQQLDAZNb2JpbGUxFDASBgNVBAMMCzE5Mi4x
+NjguMS4xMB4XDTI0MTEwNDEwNTcxNVoXDTQ0MTAzMDEwNTcxNVowYjELMAkGA1UE
+BhMCQ04xDjAMBgNVBAgMBUFuaHVpMQ4wDAYDVQQHDAVIZWZlaTEMMAoGA1UECgwD
+QVNSMQ8wDQYDVQQLDAZNb2JpbGUxFDASBgNVBAMMCzE5Mi4xNjguMS4xMIIBIjAN
+BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoUFk0x4uDqtkeOtyW4dJF7D2NO22
+XMbclrB/4uAx9sfbLgKu6C4RRVK7Oc129oQJy5gS5P7FnGoG0Ktg8K87YKBOBDKZ
+u7EoUQ0qbxcIni0nK2f6sgtrnHNxMDV8/C9mOnrYND/nR9Y298rW9gj6+B5Uar1v
+A6cKJoTiI/Kua2Fzcd4yvyxqYg/NeIpkF/kbOEB6TD7BUjp/4WbJ59JRjF6PamC3
+J4NhwlOjpCnui2PWN46CXYjs4VzPnaMWuKdKfgf5gPJavDnZoEp0bgwXNwmGH8Gv
+e82kj+/xSNsvwLqefxIg+jpMtNNJmi5+lcIQjMoVNP5Mg8SaGDLlrtQKvwIDAQAB
+o1MwUTAdBgNVHQ4EFgQU5ZjhwxaTcoTL7K2wAsVkx7WeN7QwHwYDVR0jBBgwFoAU
+5ZjhwxaTcoTL7K2wAsVkx7WeN7QwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0B
+AQsFAAOCAQEAi01anKYd0y6G9x6+TQvJJehruLUfjBTDmY+0do88O02UCF4A8TV8
+qUMQXpa+VKEg17KaIK84crUNj3ImVJSfwRDmgw0sZL9MvADnNDwUVnUXk00GgSUt
+mi+jJkpZOElA//xdGmwmZZqDtssnUr1XloNFJrq3Gql1PiyGjKs5V1IJ/msRj59k
+UWGAqKDXY3jXrc+oNJ8MC69Xxm35MsSNB1E7cvUDCHJrdqXxY+kK0PhLJkrkxXWW
+QXnUPbEW/Bo16mSOw3krT9Fd9KQK029gEghwUYyd3YZ0SyBgq7EyYISLOMgA+wz4
+ijgyI22FRwJdLJQS1loN9SgGIN9MnZEHqw==
+-----END CERTIFICATE-----