bye bye github

This commit is contained in:
mynah
2018-07-13 19:06:08 -05:00
commit ee47c30aca
241 changed files with 26451 additions and 0 deletions

104
public/home/cal/cssCal.css Executable file
View File

@@ -0,0 +1,104 @@
section.title{
background: #C22A39;
min-height:50vh;
position:relative;
}
section.title > p {
font-size: 4em;
position: absolute;
left: 0;
top: 33%;
width: 100%;
text-align: center;
color:white;
}
a.cal{
max-width:720px;
display:block;
margin:25px auto;
}
section.month{
max-width: 720px;
margin: 25px auto;
justify-content: space-between;
-webkit-justify-content: space-between;
}
div.spacer{
flex:4;
margin:auto;
background-color:black;
height:1px;
}
p.month{
flex:3;
font-weight: bold;
font-size: 1.5em;
margin:auto;
text-align: center;
text-transform: capitalize;
}
section.event{
justify-content: space-between;
-webkit-justify-content: space-between;
}
article.data{ padding:10px;}
article.more{
position:absolute;
right: 3%;
top: 75%;
text-align: center;
color:white;
font-size:1.5em;
}
article.image{
position:relative;
}
img.small{
max-height:180px;
}
p.date{
font-size: 1.4em;
margin:auto;
}
p.city{
font-weight: bold;
font-size: 1.7em;
margin:auto;
color:#C22A39;
}
p.place{
font-size: 0.7em;
font-style: italic;
font-weight:lighter;
margin:10px auto;
color:#C22A39;
display:inline;
}
p.dir{
font-size: 0.7em;
font-style: italic;
font-weight:lighter;
margin:10px auto;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
max-width:380px;
}
p.name{
font-size: 1em;
margin:10px auto;
}
a.cal,
a.cal:visited,
a.cal:link,
a.cal:active,
a.cal:hover{ color:black;
text-decoration:none; }

BIN
public/home/cal/img/Argentina.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
public/home/cal/img/CDMX.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
public/home/cal/img/Cancun.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
public/home/cal/img/Carmen.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

BIN
public/home/cal/img/Chile.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
public/home/cal/img/China.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

BIN
public/home/cal/img/Cuba.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

BIN
public/home/cal/img/Ensenada.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

BIN
public/home/cal/img/Hidalgo.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

BIN
public/home/cal/img/Leon.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
public/home/cal/img/Merida.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
public/home/cal/img/Mexicali.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
public/home/cal/img/Monterrey.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

BIN
public/home/cal/img/Oaxaca.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

BIN
public/home/cal/img/Puebla.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

BIN
public/home/cal/img/Queretaro.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

BIN
public/home/cal/img/Veracruz.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

BIN
public/home/cal/img/Xalapa.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

BIN
public/home/cal/img/Xalpan.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

10
public/home/cal/q1Block.q Executable file
View File

@@ -0,0 +1,10 @@
select distinct
concat(mes.nombre,' ',year(evento.fecha_inicio)) as text,
date_format(evento.fecha_inicio,'%Y%m') as id
from evento
inner join mes on month(evento.fecha_inicio)=mes.id
where evento.estado=1
order by evento.fecha_inicio
;

23
public/home/cal/q3Event.q Executable file
View File

@@ -0,0 +1,23 @@
select
date_format(evento.fecha_inicio,'%Y%m') as bid,
evento.id as eeid,
concat(lugar.municipio,", ",lugar.federativa) as ciudad,
concat(lugar.nombre,". ") as lugar,
lugar.direccion as dir,
case when month(evento.fecha_inicio) = month(evento.fecha_fin)
then concat("Del ", day(evento.fecha_inicio)," al ",day(evento.fecha_fin)," de ",mi.nombre)
else concat("Del ",day(evento.fecha_inicio)," de ",mi.nombre," al ",
day(evento.fecha_fin)," de ", mo.nombre)
end as fecha,
curso.nombre as nombre,
evento.imagen_chica as imagen_chica
from evento
inner join lugar on evento.lugar_id=lugar.id
inner join curso on evento.curso_id=curso.id
join mes as mi on mi.id=month(evento.fecha_inicio)
join mes as mo on mo.id=month(evento.fecha_fin)
where evento.estado=1
order by evento.fecha_inicio
;

View File

@@ -0,0 +1,15 @@
Candy Javascript client for XMMS
Xmms setup instructions:
install prosody
edit and copy prosody.cfg.lua -> /etc/prosody/ (arch)
run
# luac5.1 -p /etc/prosody/prosody.cfg.lua
no output = ok.
Enable/start service
# prosodyctl adduser user_admin@virtualserver.org
check bosh module at
http://virtualserver.org:5280/http-bind

804
public/home/candy/default.css Executable file
View File

@@ -0,0 +1,804 @@
** File: default.css
* Candy - Chats are not dead yet.
*
* Legal: See the LICENSE file at the top-level directory of this distribution and at https://github.com/candy-chat/candy/blob/master/LICENSE
*/
html, body {
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
}
#candy {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background-color: #444;
color: #333;
overflow: hidden;
}
a {
color: #333;
text-decoration: none;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
#chat-tabs {
list-style: none;
margin: 0 200px 0 0;
padding: 0;
overflow: auto;
overflow-y: hidden;
}
#chat-tabs li {
margin: 0;
float: left;
position: relative;
white-space: nowrap;
margin: 3px 0 0 3px;
}
#chat-tabs a {
padding: 4px 50px 4px 10px;
display: inline-block;
color: #ccc;
height: 20px;
background-color: #666;
border-radius: 3px 3px 0 0;
}
#chat-tabs .active a {
background-color: #eee;
color: black;
}
#chat-tabs .transition {
position: absolute;
top: 0;
right: 0;
padding: 0;
width: 30px;
height: 30px;
background: url( #ext candy/res/img/tab-transitions.png) repeat-y left;
border-radius: 0 3px 0 0;
}
#chat-tabs a.close {
background-color: transparent;
position: absolute;
right: -2px;
top: -3px;
height: auto;
padding: 5px;
margin: 0 5px 0 2px;
color: #999;
}
#chat-tabs .active .transition {
background: url( #ext candy/res/img/tab-transitions.png) repeat-y -50px;
}
#chat-tabs .close:hover {
color: black;
}
#chat-tabs .unread {
color: white;
background-color: #9b1414;
padding: 2px 4px;
font-weight: bold;
font-size: 10px;
position: absolute;
top: 5px;
right: 22px;
border-radius: 3px;
}
#chat-tabs .offline .label {
text-decoration: line-through;
}
#chat-toolbar {
position: fixed;
bottom: 0;
right: 0;
font-size: 11px;
color: #666;
width: 200px;
height: 24px;
padding-top: 7px;
background-color: #444;
display: none;
border-top: 1px solid black;
box-shadow: 0 1px 0 0 #555 inset;
}
#chat-toolbar li {
width: 16px;
height: 16px;
margin-left: 5px;
float: left;
display: inline-block;
cursor: pointer;
background-position: top left;
background-repeat: no-repeat;
}
#chat-toolbar #emoticons-icon {
background-image: url( #ext candy/res/img/action/emoticons.png);
}
#chat-toolbar .context {
background-image: url( #ext candy/res/img/action/settings.png);
display: none;
}
.role-moderator #chat-toolbar .context, .affiliation-owner #chat-toolbar .context {
display: inline-block;
}
#chat-sound-control {
background-image: url( #ext candy/res/img/action/sound-off.png);
}
#chat-sound-control.checked {
background-image: url( #ext candy/res/img/action/sound-on.png);
}
#chat-autoscroll-control {
background-image: url( #ext candy/res/img/action/autoscroll-off.png);
}
#chat-autoscroll-control.checked {
background-image: url( #ext candy/res/img/action/autoscroll-on.png);
}
#chat-statusmessage-control {
background-image: url( #ext candy/res/img/action/statusmessage-off.png);
}
#chat-statusmessage-control.checked {
background-image: url( #ext candy/res/img/action/statusmessage-on.png);
}
#chat-toolbar .usercount {
background-image: url( #ext candy/res/img/action/usercount.png);
cursor: default;
padding-left: 20px;
width: auto;
margin-right: 5px;
float: right;
}
.usercount span {
display: inline-block;
padding: 1px 3px;
background-color: #666;
font-weight: bold;
border-radius: 3px;
color: #ccc;
}
.room-pane {
display: none;
}
.roster-pane {
position: absolute;
overflow: auto;
top: 0;
right: 0;
bottom: 0;
width: 200px;
margin: 30px 0 31px 0;
background-color: #333;
border-top: 1px solid black;
box-shadow: inset 0 1px 0 0 #555;
}
.roster-pane .user {
cursor: pointer;
padding: 7px 10px;
font-size: 12px;
opacity: 0;
display: none;
color: #ccc;
clear: both;
height: 14px;
border-bottom: 1px solid black;
box-shadow: 0 1px 0 0 #555;
}
.roster-pane .user:hover {
background-color: #222;
}
.roster-pane .user.status-ignored {
cursor: default;
}
.roster-pane .user.me {
font-weight: bold;
cursor: default;
}
.roster-pane .user.me:hover {
background-color: transparent;
}
.roster-pane .label {
float: left;
width: 110px;
overflow: hidden;
white-space: nowrap;
text-shadow: 1px 1px black;
}
.roster-pane li {
width: 16px;
height: 16px;
float: right;
display: block;
margin-left: 3px;
background-repeat: no-repeat;
background-position: center;
}
.roster-pane li.role {
cursor: default;
display: none;
}
.roster-pane li.role-moderator {
background-image: url( #ext candy/res/img/roster/role-moderator.png);
display: block;
}
.roster-pane li.affiliation-owner {
background-image: url( #ext candy/res/img/roster/affiliation-owner.png);
display: block;
}
.roster-pane li.ignore {
background-image: url( #ext candy/res/img/roster/ignore.png);
display: none;
}
.roster-pane .status-ignored li.ignore {
display: block;
}
.roster-pane li.context {
color: #999;
text-align: center;
cursor: pointer;
}
.roster-pane li.context:hover {
background-color: #666;
border-radius: 4px;
}
.roster-pane .me li.context {
display: none;
}
.message-pane-wrapper {
clear: both;
overflow: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: auto;
width: auto;
margin: 30px 200px 31px 0;
background-color: #eee;
font-size: 13px;
padding: 0 5px;
}
.message-pane {
padding-top: 1px;
}
.message-pane li {
cursor: default;
border-bottom: 1px solid #ccc;
box-shadow: 0 1px 0 0 white;
}
.message-pane small {
display: none;
color: #a00;
font-size: 10px;
position: absolute;
background-color: #f7f7f7;
text-align: center;
line-height: 20px;
margin: 4px 0;
padding: 0 5px;
right: 5px;
}
.message-pane li:hover {
background-color: #f7f7f7;
}
.message-pane li:hover small {
display: block;
}
.message-pane li>div {
overflow: auto;
padding: 2px 0 2px 130px;
line-height: 24px;
white-space: -o-pre-wrap; /* Opera */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.message-pane li>div p {
margin: 0;
}
.message-pane .label {
font-weight: bold;
white-space: nowrap;
display: block;
margin-left: -130px;
width: 110px;
float: left;
overflow: hidden;
text-align: right;
color: black;
}
.message-pane .label:hover,
.message-pane .label:focus {
color: inherit;
}
.message-pane .spacer {
color: #aaa;
font-weight: bold;
margin-left: -14px;
float: left;
}
.message-pane .subject, .message-pane .subject .label {
color: #a00;
font-weight: bold;
}
.message-pane .adminmessage {
color: #a00;
font-weight: bold;
}
.message-pane .infomessage {
color: #888;
font-style: italic;
}
.message-pane div>a {
color: #a00;
}
.message-pane a:hover {
text-decoration: underline;
}
.message-pane .emoticon {
vertical-align: text-bottom;
height: 15px;
width: 15px;
}
.message-form-wrapper {
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: auto;
margin-right: 200px;
border-top: 1px solid #ccc;
background-color: white;
height: 31px;
}
.message-form {
position: fixed;
bottom: 0;
left: 0;
right: 0;
margin-right: 320px;
padding: 0;
}
.message-form input {
border: 0 none;
padding: 5px 10px;
font-size: 14px;
width: 100%;
display: block;
outline-width: 0;
background-color: white;
}
.message-form input.submit {
cursor: pointer;
background-color: #ccc;
color: #666;
position: fixed;
bottom: 0;
right: 0;
margin: 3px 203px 3px 3px;
padding: 0 10px;
width: auto;
font-size: 12px;
line-height: 12px;
height: 25px;
font-weight: bold;
border-radius: 3px;
}
#tooltip {
position: absolute;
z-index: 10;
display: none;
margin: 13px -18px -3px -2px;
color: #333;
font-size: 11px;
padding: 5px 0;
}
#tooltip div {
background-color: #f7f7f7;
padding: 2px 5px;
zoom: 1;
box-shadow: 0 1px 2px rgba(0, 0, 0, .75);
}
.arrow {
background: url( #ext candy/res/img/tooltip-arrows.gif) no-repeat left bottom;
height: 5px;
display: block;
position: relative;
z-index: 11;
}
.right-bottom .arrow-bottom {
background-position: right bottom;
}
.arrow-top {
display: none;
background-position: left top;
}
.right-top .arrow-top {
display: block;
background-position: right top;
}
.left-top .arrow-top {
display: block;
}
.left-top .arrow-bottom,
.right-top .arrow-bottom {
display: none;
}
#context-menu {
position: absolute;
z-index: 10;
display: none;
padding: 5px 10px;
margin: 13px -28px -3px -12px;
}
#context-menu ul {
background-color: #f7f7f7;
color: #333;
font-size: 12px;
padding: 2px;
zoom: 1;
box-shadow: 0 1px 2px rgba(0, 0, 0, .75);
}
#context-menu li {
padding: 3px 5px 3px 20px;
line-height: 12px;
cursor: pointer;
margin-bottom: 2px;
background: 1px no-repeat;
white-space: nowrap;
}
#context-menu li:hover {
background-color: #ccc;
}
#context-menu li:last-child {
margin-bottom: 0;
}
#context-menu .private {
background-image: url( #ext candy/res/img/action/private.png);
}
#context-menu .ignore {
background-image: url( #ext candy/res/img/action/ignore.png);
}
#context-menu .unignore {
background-image: url( #ext candy/res/img/action/unignore.png);
}
#context-menu .kick {
background-image: url( #ext candy/res/img/action/kick.png);
}
#context-menu .ban {
background-image: url( #ext candy/res/img/action/ban.png);
}
#context-menu .subject {
background-image: url( #ext candy/res/img/action/subject.png);
}
#context-menu .emoticons {
padding-left: 5px;
width: 85px;
white-space: normal;
}
#context-menu .emoticons:hover {
background-color: transparent;
}
#context-menu .emoticons img {
cursor: pointer;
margin: 3px;
height: 15px;
width: 15px;
}
#chat-modal.modal-common {
background: #eee;
width: 300px;
padding: 20px 5px;
color: #333;
font-size: 16px;
position: fixed;
left: 50%;
top: 50%;
margin-left: -160px;
margin-top: -45px;
text-align: center;
display: none;
z-index: 100;
border: 5px solid #888;
border-radius: 5px;
box-shadow: 0 0 5px black;
}
#chat-modal-overlay {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 90;
background-image: url( #ext candy/res/img/overlay.png);
}
#chat-modal.modal-login {
display: block;
margin-top: -100px;
}
#chat-modal-spinner {
display: none;
margin-left: 15px;
}
#chat-modal form {
margin: 15px 0;
}
#chat-modal label, #chat-modal input, #chat-modal select {
display: block;
float: left;
line-height: 26px;
font-size: 16px;
margin: 5px 0;
}
#chat-modal input, #chat-modal select {
padding: 2px;
line-height: 16px;
width: 150px;
}
#chat-modal input[type='text'],
#chat-modal input[type='password'] {
background-color: white;
border: 1px solid #ccc;
padding: 4px;
font-size: 14px;
color: #333;
}
#chat-modal.login-with-domains {
width: 650px;
margin-left: -330px;
}
#chat-modal span.at-symbol {
float: left;
padding: 6px;
font-size: 14px;
}
#chat-modal select[name=domain] {
width: 320px;
}
#chat-modal label {
text-align: right;
padding-right: 1em;
clear: both;
width: 100px;
}
#chat-modal input.button {
float: none;
display: block;
margin: 5px auto;
clear: both;
position: relative;
top: 10px;
width: 200px;
}
#chat-modal .close {
position: absolute;
right: 0;
display: none;
padding: 0 5px;
margin: -17px 3px 0 0;
color: #999;
border-radius: 3px;
}
#chat-modal .close:hover {
color: #333;
background-color: #aaa;
}
/**
* Bootstrap Responsive Design styles
* It add styles to every element so we need to override some to keep the look of Candy
*/
*, :after, :before {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
label {
font-weight: normal;
}
.label {
font-size: 100%;
font-weight: normal;
text-align: left;
line-height: inherit;
padding: 0;
color: inherit;
}
.close {
font-size: inherit;
line-height: inherit;
opacity: 1;
text-shadow: none;
}
#mobile-roster-icon {
display: none;
}
/*
* Responsive specific styles for devices under 600px
* Mainly changing the size of room, roster and message panes when opened / closed
*/
@media (max-width: 599px) {
.room-pane .message-pane-wrapper {
margin-right: 50px;
}
.room-pane:not(.open) .roster-pane {
right: -150px;
}
.roster-pane {
z-index: 10;
}
.message-pane li>div {
padding-left: 10px;
}
.message-pane li>div.infomessage {
padding-left: 30px;
}
.message-pane .label {
width: auto;
margin-left: 0;
}
.message-pane .spacer {
margin: 0 5px;
}
.room-pane:not(.open) .message-form-wrapper {
margin-right: 50px;
}
.room-pane:not(.open) .message-form {
margin-right: 150px;
}
.room-pane:not(.open) .message-form input.submit {
margin-right: 53px;
}
#mobile-roster-icon {
position: fixed;
top: 0;
right: 0;
}
/*
* These are for the hamburger icon. The box-shadow adds the extra lines
*/
.box-shadow-icon {
position: relative;
display: block;
width: 50px;
height: 30px;
cursor: pointer;
}
.box-shadow-icon:before {
content: "";
position: absolute;
left: 15px;
top: 9px;
width: 20px;
height: 2px;
background: #aaa;
box-shadow: 0 5px 0 0 #aaa, 0 10px 0 0 #aaa;
}
.box-shadow-icon:hover {
background: #222;
}
}

20
public/home/candy/loader.js Executable file
View File

@@ -0,0 +1,20 @@
//var css = d3.select("#head").insert("link","link")
// .attr("rel","stylesheet")
// .attr("type","text/css");
// css.attr("href"," #ext candy/libs.min.css");
// css.attr("href"," #ext candy/res/default.css");
window.onload = function(){
// Candy.init(' #chat_addr :5280/http-bind/', {
Candy.init(chat_addr, {
core: {
debug: false,
autojoin: [chat_channel]
},
view: { language: 'es', assets: 'ext/candy/res/'}
});
Candy.Core.connect(chat_srv,null," <%= nick %>");
Candy.Core.onWindowUnload = function(){window.close();};
$(Candy).on("candy:view.connection.status-6",function(){
window.close();});
}

View File

@@ -0,0 +1,66 @@
section.contact{
background-color:white;
width:100%;
text-align: center;
position:relative;
}
section.cbanner{
background-color:#C22A39;
width:100%;
position: absolute;
text-align: center;
margin: 80px auto;
}
p.bsmall{font-size:1.5em; color:white; text-align:left;}
p.blarge{
font-size:4em; font-style: italic;
color:white;
margin: 15px 0px 45px;
}
article.textc{
display: inline-block;
}
div.bspace{
background-color:white;
width:100%;
height: 1px;
}
section.cform{
width:100%;
justify-content:center;
-webkit-justify-content:center;
}
article.cform{
flex:1;
background-color:#333333;
margin: 30px auto;
display: inline-block;
text-align: left;
width: 60vw;
max-width: 800px;
min-width:300px;
}
form.cform{
margin: 380px auto 70px;
width: 80%;
max-width: 500px;
min-width: 240px;
}
label{ color:white; width:100%; display:block;}
textarea{
width:100%;
height:25vh;
max-height:130px;
display:block;
font-size:1.2em;
}
input[type=text],
input[type=email]{
width:100%;
height:10vh;
font-size:2em;
max-height:50px;
}

View File

@@ -0,0 +1,36 @@
section.contact{
background-color:white;
width:100%;
text-align: center;
position:relative;
}
section.cbanner{
background-color:#C22A39;
width:100%;
position: absolute;
text-align: center;
margin: 80px auto;
}
p.bsmall{font-size:1.5em; color:white; text-align:left;}
p.blarge{
font-size:4em; font-style: italic;
color:white;
margin: 15px 0px 45px;
}
article.textc{
display: inline-block;
}
div.bspace{
background-color:white;
width:100%;
height: 1px;
}
section.cform{
background-color:#333333;
margin-top: 300px;
width:60vw;
margin: 30px auto;
padding: 300px 100px 70px;
display: inline-block;
text-align: left;
}

48
public/home/contact/msg/b.pl Executable file
View File

@@ -0,0 +1,48 @@
#!/usr/bin/perl -s
use warnings;
use strict;
#---
use Cwd 'abs_path';
use lib abs_path("../../")."/sibelius2/conf";
use Paths;
use Init;
use ServerVars;
use Net::Telnet;
use MIME::Lite;
use JSON;
#-------------
### MimeLite necesita sendmail, para arch, sendmail esta sin atender,
### puedes usar msmtp msmtp-mta para simular sendmail. este ultimo
### necesita configurarse con un correo.
my ($mod_name,$sid) = @ARGV;
my %var = (Init::modInit($sid),%ServerVars::sk);
my $server_name = $var{'chat_srv'};
my @arr;
push (@arr,{name=>"one",tag=>"notag"});
my $to = 'benjamuga@gmail.com';
my $from = 'mensajes@vuelodegrulla.com';
my $subject = "Mensaje de $var{'mname'}";
my $message = "Enviado por:
<h1>$var{'mname'}</h1>
<h2>correo:</br>$var{'mail'}<h2>
<p>$var{'msg'}</p>
";
my $msg = MIME::Lite->new(
From => $from,
To => $to,
Subject => $subject,
Data => $message
);
$msg->attr("content-type" => "text/html");
$msg->send;
print encode_json( \@arr ) ."\n";
1
__END__

View File

@@ -0,0 +1,14 @@
/* c#host localhost*/
/* c#database #dbmsg */
/* c#user #dbmsg_w */
/* c#password #dbmsg_wp */
/* c#write write*/
insert into entrada
(nombre,correo,pagina,texto,fecha)
values
( q#mname , q#mail , q#wp , q#msg ,now() );

94
public/home/event/cssEvent.css Executable file
View File

@@ -0,0 +1,94 @@
section.eimage{
background-size:cover;
height:80vh;
background-attachment: fixed;
margin: auto;
background-image:url("img/grulla_10.jpg");
background-position:center;
}
section.place{
background: #C22A39;
padding:40px;
}
p.place{
font-size: 1.5em;
color: white;
text-align: center;
}
p.cname{
font-size: 1.7em;
color: white;
text-align: center;
margin: 7px;
}
section.description{
background-color:white;
justify-content: center;
-webkit-justify-content: center;
}
article.info{
flex:1 1 250px;
max-width:370px;
margin:auto;
min-width:250px;
padding-left:20px;
}
p.pbig{
font-weight:bold;
font-size:1.8em;
}
p.pmed{
font-size:1.1em;
}
article.specs{
flex:2 2 250px;
margin:auto;
max-width:420px;
}
p#subt{
margin: 10px;
color: black;
font-size: 1.2em;
}
article.specs >p{
margin-bottom: 30px;
color: black;
font-size: .875rem;
font-weight: 400;
line-height: 1.5;
min-width:250px;
}
p.promo{
margin: 10px;
color: #c22a39;
font-size: 1.2em;
}
section.map{
background-color:#333333;
overflow:hidden;
height:80vh;
min-height:400px;
position:relative;
}
section.map > iframe{
width:70%;
height:70%;
top:15%;
left:15%;
overflow: hidden;
position:absolute;
}
p.arrive{
position:absolute;
left:10%;
top:1%;
font-size:1.5em;
color:white;
}
article.contact{
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 493 KiB

29
public/home/event/qEvent.q Executable file
View File

@@ -0,0 +1,29 @@
select
curso.nombre as cname,
concat(lugar.municipio,', ',lugar.federativa) as place,
lugar.direccion as paddr,
lugar.observacion as pobs,
lugar.municipio as city,
evento.precio as cost,
case evento.promo_estado when 1 then coalesce(evento.promocion,"") else "" end as promo,
curso.temario as csubjects,
curso.servicios as cservices,
lugar.nombre as pname,
case when month(evento.fecha_inicio) = month(evento.fecha_fin)
then concat("Del ", day(evento.fecha_inicio)," al ",day(evento.fecha_fin)," de ",mi.nombre)
else concat("Del ",day(evento.fecha_inicio)," de ",mi.nombre," al ",
day(evento.fecha_fin)," de ", mo.nombre)
end as date
from evento
inner join lugar on evento.lugar_id=lugar.id
inner join curso on evento.curso_id=curso.id
join mes as mi on mi.id=month(evento.fecha_inicio)
join mes as mo on mo.id=month(evento.fecha_fin)
where evento.estado=1
and evento.id = ?

112
public/home/home/cssGrid.css Executable file
View File

@@ -0,0 +1,112 @@
/* general ---------------------------------*/
section.content{
width:100%;
background-color: white;
position:relative;
}
article.content{
position: relative;
justify-content:center;
-webkit-justify-content:center;
max-width:1000px;
margin:auto;
z-index: 3;
}
[class*="box-"]{
margin:10px;
box-shadow:1px 4px 8px 0px black;
transition: transform 0.3s;
}
[class*="box-"]:hover,{
-ms-transform: scale(2, 3); /* IE 9 */
-webkit-transform: scale(2, 3); /* Safari */
transform: scale(1.04, 1.04);
}
.box-1{
height:180px;
min-width:44%;
flex:1 1 44%;
}
.box-2{
height:180px;
min-width:48%;
flex:2 1 48%;
}
.box-4,
.group{
height:400px;
min-width:300px;
flex:2 1 300px;
}
/* links ------------------------------------*/
article.link{
height:180px;
min-width:44%;
flex:1 1 44%;
color:black;
align-content:center;
-webkit-align-content:center;
padding:10% 0px;
}
article.link > p{ font-size:1em;}
article.link > p.bold{ font-weight:bold;}
article.link > a {
list-style-type:none;
padding:5% 0px;
display: block;
text-align: center;
text-decoration: none;
margin: 10px 15px;
transition: transform 0.3s;
}
article.link > a:hover{
-ms-transform: scale(2, 3); /* IE 9 */
-webkit-transform: scale(2, 3); /* Safari */
transform: scale(1.1, 1.1);
cursor: pointer;
}
article.link > a > img{
width:100%;
height:auto;
}
/* facebook ---------------------------------*/
article.fb{ background-color:#1d86d0; overflow: auto; padding-left: 5px; }
article.fb > p{ color:white; font-size:1.5em; }
/* youtube ---------------------------------*/
iframe#evideo{
width:100%;
height:100%;
}
/* soundcloud-------------------------------*/
iframe#scloud{
width:100%;
height:100%;
}
/* pang ------------------------------------*/
article.pang{
background-image:url("img/pang.jpg");
color:white;
align-content:center; text-align:center;
-webkit-align-content:center; text-align:center;
height:100%; padding:1px;
}
article.pang > p{ font-size:2em;}
article.pang > p.bold{ font-weight:bold;}
/* Cal ------------------------------------*/
article.cal{
background-image:url("img/cal.jpg");
color:white;
align-content:center; text-align:center;
-webkit-align-content:center; text-align:center;
height:100%; padding:1px;
}
article.cal > p{ font-size:1.9em;}
article.cal > p.bold{ font-weight:bold;}
/* a ---------------------------------------*/

35
public/home/home/cssHead.css Executable file
View File

@@ -0,0 +1,35 @@
body{
background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
background-image:url("grulla_21.jpg");
background-position: top;
}
#ihead{
width:100%;
height:100vh;
}
#courtain{
background-color:black;
background-size:cover;
width: 100vw;
position:fixed;
z-index:100;
top: -50vh;
}
article.mod{
position:fixed;
z-index:0;
}
p.mod{
color:black;
font-weight:bold;
font-size:1.3em;
max-width:500px;
padding:5% 5%;
text-align:left;
}

17
public/home/home/cssOsc.css Executable file
View File

@@ -0,0 +1,17 @@
#sadown{
animation-name:pulsate;
animation-timing-function:linear;
animation-delay:5s;
animation-duration:2s;
animation-iteration-count:infinite;
}
@keyframes pulsate {
0%{margin-top:0px;}
25%{margin-top:5px;}
50%{margin-top:0px;}
75%{margin-top:-5px;}
100%{margin-top:0px;}
}

50
public/home/home/cssTrans.css Executable file
View File

@@ -0,0 +1,50 @@
section.adown{
position:absolute;
top: calc(100vh - 45px);
width:100%;}
article.adown{
background-repeat: no-repeat;
background-size: contain;
background-position: center;
background-image:url("img/adown.svg");
width: 35px;
height: 40px;
margin: auto;
}
section.trans{
/* background-color: gray;*/
width: 100%;
min-height: 40vh;
justify-content: center;
-webkit-justify-content: center;
position:relative;
padding: 40px 0px 10px 0px;
margin-bottom: -15vh;
z-index: 2;
}
article.vdg{
background-repeat: no-repeat;
background-size: contain;
background-position: center;
background-image:url(logo/vdg.svg);
padding: 0px 20px;
margin: 10px 1% 10px 3%;
display: inline;
flex: 1;
max-width:25%;
position:relative;
}
article.trans{
text-align: center;
flex:3;
max-width:50%;
}
article.trans > p.bold{ font-size: 2em }
article.trans > p.light{ font-size: 1em }
article.trans > p.superlight{ font-size: 0.5em }
section.gap{
width:100%;
height: 15vh;
margin-bottom: 0px;
margin-top: auto;
}

12
public/home/home/d3Tras.js vendored Executable file
View File

@@ -0,0 +1,12 @@
var h = d3.select('section.trans').node().getBoundingClientRect().top;
d3.select(window).on("scroll",function(){
var t = d3.select('#trs').node().getBoundingClientRect().top;
var trans= 0.5 + Math.round(100*(h-t)/h)/100;
d3.select('#trs').style("background-color","rgba(229,229,229,"+ trans +")");
});

BIN
public/home/home/grulla_1.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

BIN
public/home/home/grulla_2.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 992 KiB

BIN
public/home/home/grulla_21.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 KiB

62
public/home/home/img/adown.svg Executable file
View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="112.41982mm"
height="72.920959mm"
viewBox="0 0 112.41982 72.920959"
version="1.1"
id="svg8"
inkscape:version="0.92.1 r"
sodipodi:docname="adown.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="-12.396604"
inkscape:cy="57.475189"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1028"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-38.286092,-72.348947)">
<path
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 38.553572,72.482143 150.43452,72.860119 93.738093,145.05357 Z"
id="path3682"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
public/home/home/img/cal.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
public/home/home/img/pang.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,55 @@
/*
#ihead{
animation-name: headIntro;
animation-fill-mode:backwards;
animation-timing-function:linear;
animation-delay:4s;
animation-duration: 3s;
}
@keyframes headIntro {
0% { transform:scale(5,5); background-position: 30vw 30vh; }
70% { transform:scale(3,3); background-position:top center; }
100% { transform:scale(1,1); }
}
*/
#courtain{
-webkit-animation: oopacity 2s ease-out 6s, clear 3s 6.5s;
-webkit-animation-fill-mode:both,both;
}
/*
article.mod{
animation-name:modIntro;
animation-timing-function:ease-in;
animation-delay:3s;
animation-duration:0.5s;
animation-fill-mode:backwards;
}
*/
section#spacer{
animation-name:nintro;
animation-timing-function:ease-in;
animation-delay:6s;
animation-duration:0s;
animation-fill-mode:backwards;
}
section.anav{
animation-name:nintro;
animation-timing-function:ease-in;
animation-delay:5s;
animation-duration:1s;
animation-fill-mode:backwards;
}
@keyframes modIntro{ 0%{opacity:0;} 100%{opacity:1;} }
@keyframes oopacity { 0%{ opacity:1; } 100%{ opacity:0; } }
@keyframes clear{ 0%{ height:150vh; } 100%{ height:0px; } }
@keyframes nintro{ 0% { position:absolute; top:-200px; } 100% { top:0px;} }
@-webkit-keyframes modIntro{ 0%{opacity:0;} 100%{opacity:1;} }
@-webkit-keyframes oopacity { 0%{ opacity:1; } 100%{ opacity:0; } }
@-webkit-keyframes clear{ 0%{ height:150vh; } 100%{ height:0px; } }
@-webkit-keyframes nintro{ 0% { position:absolute; top:-200px; } 100% { top:0px;} }

16
public/home/home/jsFb.js Executable file
View File

@@ -0,0 +1,16 @@
window.fbAsyncInit = function() {
FB.init({
appId : '339e',
xfbml : true,
version : 'v2.8'
});
FB.AppEvents.logPageView();
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/es_LA/sdk.js#xfbml=1&version=v2.8";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));

62
public/home/home/logo/fb.svg Executable file
View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="28.183945mm"
height="27.841576mm"
viewBox="0 0 28.183944 27.841576"
version="1.1"
id="svg3905"
inkscape:version="0.92.0 r"
sodipodi:docname="fb.svg">
<defs
id="defs3899" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="116.13352"
inkscape:cy="-465.26308"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="786"
inkscape:window-height="779"
inkscape:window-x="841"
inkscape:window-y="83"
inkscape:window-maximized="0" />
<metadata
id="metadata3902">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(56.429375,2.1090982)">
<path
d="m -36.965303,25.732477 h 7.290064 c 0.789517,0 1.429809,-0.632619 1.429809,-1.412346 V -0.69648818 c 0,-0.78025602 -0.640292,-1.41261002 -1.429809,-1.41261002 h -25.324596 c -0.78951,0 -1.42954,0.632354 -1.42954,1.41261002 V 24.320131 c 0,0.779727 0.64003,1.412346 1.42954,1.412346 h 13.55011 V 15.019498 h -3.67506 v -4.422246 h 3.67506 V 6.4864208 c 0,0 0.56039,-6.10393798 8.844491,-4.173009 v 3.73724 h -2.678377 c 0,0 -1.681428,-0.124619 -1.681428,1.743869 0,1.868487 0,2.8651732 0,2.8651732 h 4.360069 l -0.747448,4.360068 h -3.612356 v 10.712715 z"
id="path74"
inkscape:connector-curvature="0"
style="fill:#39469c;stroke-width:0.26458332" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

118
public/home/home/logo/fb_1.svg Executable file
View File

@@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="105.44651mm"
height="14.106005mm"
viewBox="0 0 105.44651 14.106005"
version="1.1"
id="svg3783"
inkscape:version="0.92.1 r"
sodipodi:docname="fb_1.svg">
<defs
id="defs3777" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="-495.48826"
inkscape:cy="-198.6384"
inkscape:document-units="mm"
inkscape:current-layer="g56"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3780">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-59.913649,-97.593875)">
<g
transform="matrix(0.26458333,0,0,0.26458333,17.553858,25.159164)"
id="g56">
<path
inkscape:connector-curvature="0"
d="m 228.63,283.201 0.183,-0.443 c 1.406,0 2.812,0.018 4.218,0.052 h 0.859 c 0.26,0 0.547,-0.009 0.859,-0.026 1.128,-0.052 3.168,-0.078 6.12,-0.078 0.59,0 1.163,0.004 1.719,0.013 0.555,0.009 1.093,0.022 1.614,0.039 0.104,0.052 0.182,0.13 0.234,0.234 l -0.052,0.417 c -0.104,0.174 -0.364,0.261 -0.781,0.261 h -0.208 c -0.486,-0.017 -1.285,0.022 -2.396,0.117 -1.111,0.096 -1.84,0.273 -2.187,0.534 -0.226,0.191 -0.339,0.443 -0.339,0.755 0,0.677 0.287,1.692 0.859,3.046 l 3.963,9.192 1.382,3.047 c 1.338,3.229 2.659,6.527 3.963,9.895 0.139,0.365 0.269,0.695 0.391,0.99 l 1.742,-4.271 c 0.901,-2.152 1.812,-4.444 2.73,-6.875 l 1.794,-4.896 c 0.035,-0.104 0.13,-0.451 0.286,-1.042 1.681,-4.6 2.522,-7.508 2.522,-8.724 0,-0.26 -0.117,-0.525 -0.352,-0.794 -0.235,-0.269 -0.612,-0.49 -1.133,-0.664 -0.208,-0.069 -0.885,-0.173 -2.031,-0.312 l -1.927,-0.234 c -0.156,-0.173 -0.234,-0.321 -0.234,-0.443 l 0.078,-0.208 8.437,-0.078 h 2.786 c 0.938,0 1.58,0.061 1.927,0.182 l 0.026,0.208 c 0,0.139 -0.052,0.321 -0.156,0.546 -0.417,0.139 -0.799,0.226 -1.146,0.261 -1.458,0.174 -2.361,0.377 -2.709,0.612 -0.347,0.234 -0.712,0.733 -1.093,1.498 l -6.833,16.926 c -2.13,5.086 -3.646,9.028 -4.546,11.823 l -0.753,2.266 c -0.225,0.139 -0.416,0.208 -0.571,0.208 -0.2,0 -0.417,-0.026 -0.651,-0.078 -2.067,-5.343 -3.751,-9.471 -5.053,-12.385 L 234.2,286.715 c -0.573,-1.076 -1.002,-1.723 -1.289,-1.94 -0.287,-0.217 -1.289,-0.525 -3.007,-0.924 -0.607,-0.139 -0.946,-0.226 -1.015,-0.26 -0.12,-0.087 -0.207,-0.216 -0.259,-0.39 z"
id="path2" />
<path
inkscape:connector-curvature="0"
d="m 263.707,295.778 h 1.945 l 0.856,0.052 0.675,-0.052 c 1.781,0 2.888,0.018 3.32,0.052 l 0.026,0.495 c 0,2.448 -0.035,4.818 -0.104,7.109 -0.052,1.354 -0.078,2.126 -0.078,2.317 0,3.055 0.1,4.965 0.3,5.729 0.2,0.764 0.67,1.376 1.41,1.836 0.74,0.46 1.631,0.689 2.676,0.689 1.27,0 2.484,-0.264 3.641,-0.794 1.157,-0.529 2.145,-1.176 2.962,-1.94 0.086,-0.659 0.13,-1.389 0.13,-2.188 0,-2.586 0.026,-4.331 0.078,-5.233 0.017,-0.538 0.026,-1.007 0.026,-1.406 0,-2.812 -0.139,-4.401 -0.417,-4.765 -0.278,-0.365 -1.337,-0.642 -3.177,-0.833 -0.608,-0.069 -1.05,-0.13 -1.328,-0.182 -0.139,-0.226 -0.208,-0.399 -0.208,-0.521 l 0.078,-0.287 c 0.451,-0.052 0.894,-0.078 1.328,-0.078 l 4.141,0.052 c 1.475,-0.035 2.256,-0.052 2.344,-0.052 0.191,0 0.373,0.009 0.547,0.026 l 0.052,1.901 c -0.122,2.639 -0.191,5.902 -0.208,9.791 l -0.052,2.109 0.104,3.541 c 0.156,0.278 0.295,0.443 0.417,0.495 0.208,0.087 0.633,0.13 1.276,0.13 h 0.234 c 0.225,0 0.868,0.053 1.927,0.156 0.017,0.227 0.026,0.391 0.026,0.495 v 0.286 c -2.327,0.504 -4.21,1.008 -5.651,1.511 -0.573,0.19 -1.059,0.329 -1.458,0.417 -0.087,-0.607 -0.13,-0.98 -0.13,-1.12 v -2.109 c 0,-0.087 -0.009,-0.321 -0.026,-0.703 -0.226,0.156 -0.486,0.348 -0.781,0.573 -1.372,1.059 -2.821,1.953 -4.349,2.682 -1.024,0.504 -2.014,0.756 -2.968,0.756 -1.823,0 -3.307,-0.678 -4.453,-2.031 -1.163,-1.354 -1.745,-3.663 -1.745,-6.927 0,-0.173 0.008,-0.485 0.026,-0.938 0.069,-0.833 0.104,-1.415 0.104,-1.745 0,-0.122 -0.009,-0.503 -0.026,-1.146 -0.018,-0.277 -0.026,-0.521 -0.026,-0.729 0,-0.156 0.008,-0.508 0.026,-1.055 0.017,-0.547 0.026,-0.933 0.026,-1.159 0,-0.295 -0.009,-0.556 -0.026,-0.781 l -0.052,-1.38 0.026,-0.729 c 0,-0.277 -0.139,-0.529 -0.417,-0.755 -1.094,-0.295 -1.81,-0.464 -2.148,-0.508 -0.338,-0.043 -0.638,-0.117 -0.898,-0.221 v -0.833 z"
id="path4" />
<path
inkscape:connector-curvature="0"
d="m 309.589,302.47 -10.442,0.076 -1.979,-0.002 c -0.799,0 -1.614,0.036 -2.448,0.108 -0.156,0.521 -0.234,0.877 -0.234,1.067 l 0.026,0.261 v 0.26 l -0.026,1.276 c 0,1.059 0.334,2.357 1.002,3.893 0.668,1.537 1.623,2.708 2.865,3.516 1.241,0.807 2.79,1.236 4.648,1.289 0.99,-0.053 1.779,-0.174 2.37,-0.365 0.59,-0.19 1.423,-0.633 2.5,-1.328 l 1.875,-1.535 0.156,1.041 c 0,0.121 -0.009,0.252 -0.026,0.391 -0.781,0.989 -1.771,1.857 -2.968,2.604 -1.198,0.747 -2.413,1.293 -3.646,1.641 -0.59,0.156 -1.562,0.234 -2.917,0.234 -1.232,0 -2.448,-0.252 -3.646,-0.755 -1.771,-0.764 -3.164,-1.992 -4.179,-3.685 -1.016,-1.693 -1.523,-3.746 -1.523,-6.159 0,-0.764 0.143,-1.745 0.43,-2.942 0.286,-1.198 0.803,-2.474 1.549,-3.828 0.503,-0.92 1.12,-1.675 1.849,-2.266 1.042,-0.833 1.953,-1.415 2.734,-1.745 1.128,-0.469 2.439,-0.703 3.932,-0.703 1.615,0 2.934,0.295 3.958,0.886 1.389,0.781 2.426,1.788 3.112,3.021 0.686,1.233 1.029,2.361 1.029,3.385 v 0.364 z m -14.53,-0.937 h 1.224 c 0.885,0 3.524,-0.139 7.916,-0.417 0.694,-0.035 1.12,-0.104 1.276,-0.208 0.312,-0.33 0.469,-0.625 0.469,-0.886 0,-0.538 -0.174,-1.149 -0.521,-1.835 -0.348,-0.686 -0.881,-1.215 -1.602,-1.589 -0.721,-0.373 -1.558,-0.56 -2.513,-0.56 -2.014,0 -3.629,0.755 -4.844,2.266 -0.937,1.146 -1.405,2.222 -1.405,3.229 z"
id="path6" />
<path
inkscape:connector-curvature="0"
d="m 312.532,283.956 v -0.573 c 0.486,-0.156 1.024,-0.321 1.615,-0.495 0.872,-0.277 2.163,-0.703 3.874,-1.276 h 1.23 c 0,0.834 0,1.312 0,1.433 0,14.264 -0.043,22.769 -0.13,25.513 -0.052,1.616 -0.078,2.477 -0.078,2.58 0,1.945 0.078,3.031 0.234,3.258 0.208,0.312 0.846,0.529 1.914,0.651 1.067,0.122 1.696,0.243 1.888,0.364 0.139,0.07 0.208,0.191 0.208,0.365 0,0.191 -0.039,0.325 -0.117,0.403 -0.078,0.078 -0.222,0.117 -0.43,0.117 -0.122,0 -1.033,-0.03 -2.734,-0.089 l -3.411,-0.119 -4.375,0.208 c -0.278,0.017 -0.486,-0.036 -0.625,-0.16 -0.104,-0.089 -0.156,-0.214 -0.156,-0.374 0,-0.178 0.056,-0.307 0.169,-0.387 0.113,-0.08 0.738,-0.216 1.875,-0.407 1.137,-0.19 1.788,-0.352 1.953,-0.481 0.165,-0.131 0.273,-0.421 0.325,-0.873 0.069,-0.625 0.104,-2.387 0.104,-5.285 l -0.026,-5.99 0.078,-6.198 -0.026,-6.198 0.078,-3.046 c 0,-0.607 -0.096,-1.046 -0.287,-1.315 -0.191,-0.269 -0.599,-0.534 -1.224,-0.794 -0.937,-0.381 -1.579,-0.659 -1.926,-0.832 z"
id="path8" />
<path
inkscape:connector-curvature="0"
d="m 325.292,305.751 c 0,-1.18 0.248,-2.443 0.742,-3.789 0.494,-1.346 1.246,-2.552 2.252,-3.62 1.007,-1.068 2.074,-1.862 3.203,-2.383 1.58,-0.729 3.506,-1.094 5.781,-1.094 3.246,0 5.959,1.111 8.138,3.333 2.178,2.223 3.268,4.896 3.268,8.021 0,2.778 -1.142,5.256 -3.424,7.434 -2.283,2.18 -5.169,3.269 -8.658,3.269 -2.153,0 -4.184,-0.564 -6.094,-1.692 -1.423,-0.851 -2.647,-2.109 -3.671,-3.775 -1.026,-1.668 -1.537,-3.568 -1.537,-5.704 z m 11.522,10.156 c 1.322,0 2.596,-0.355 3.821,-1.067 1.226,-0.712 2.204,-1.854 2.935,-3.424 0.73,-1.572 1.096,-3.391 1.096,-5.456 0,-1.354 -0.283,-2.925 -0.848,-4.713 -0.565,-1.788 -1.435,-3.129 -2.609,-4.023 -1.174,-0.894 -2.552,-1.341 -4.134,-1.341 -1.147,0 -2.317,0.269 -3.508,0.807 -1.191,0.539 -2.2,1.571 -3.026,3.099 -0.826,1.528 -1.239,3.698 -1.239,6.51 0,3.16 0.717,5.551 2.152,7.174 1.435,1.623 3.221,2.434 5.36,2.434 z"
id="path10" />
<path
inkscape:connector-curvature="0"
d="m 382.945,297.314 0.026,-0.755 -0.026,-3.046 0.026,-5.755 c 0,-1.597 -0.174,-2.613 -0.521,-3.047 -0.348,-0.434 -1.363,-0.876 -3.047,-1.328 -0.122,-0.035 -0.312,-0.086 -0.573,-0.156 v -0.286 c 0,-0.173 0.017,-0.365 0.052,-0.573 2.361,-0.243 4.392,-0.651 6.093,-1.224 l 1.328,-0.026 c 0.069,1.181 0.104,2.5 0.104,3.958 l -0.104,10.025 0.182,11.301 -0.078,6.016 c 0,1.232 0.087,1.927 0.261,2.083 0.347,0.348 1.11,0.53 2.292,0.547 0.243,0 0.573,0.018 0.989,0.052 v 0.469 c 0,0.122 -0.009,0.252 -0.026,0.391 -0.539,0.122 -1.094,0.234 -1.667,0.339 l -3.776,0.729 c -0.556,0.104 -0.999,0.156 -1.328,0.156 v -2.5 c -0.295,0.087 -0.755,0.26 -1.38,0.521 -2.708,1.146 -5.199,1.719 -7.473,1.719 -1.372,0 -2.77,-0.447 -4.193,-1.341 -1.423,-0.895 -2.517,-2.14 -3.281,-3.737 -0.764,-1.597 -1.146,-3.229 -1.146,-4.896 0,-1.493 0.251,-2.92 0.755,-4.284 0.503,-1.362 1.163,-2.495 1.979,-3.398 0.521,-0.59 1.258,-1.176 2.213,-1.758 0.955,-0.582 1.745,-0.951 2.37,-1.107 1.545,-0.399 2.578,-0.599 3.099,-0.599 2.344,0 4.271,0.347 5.781,1.042 0.47,0.226 0.826,0.382 1.069,0.468 z m 0.026,16.093 c 0.069,-1.163 0.104,-3.559 0.104,-7.187 0,-3.073 -0.143,-5.013 -0.428,-5.82 -0.286,-0.808 -0.999,-1.571 -2.14,-2.292 -1.141,-0.721 -2.421,-1.081 -3.839,-1.081 -1.989,0 -3.675,0.773 -5.059,2.318 -1.383,1.545 -2.075,3.828 -2.075,6.849 0,2.655 0.748,4.774 2.244,6.354 1.496,1.58 3.359,2.37 5.59,2.37 1.28,0 2.447,-0.174 3.502,-0.521 1.055,-0.347 1.755,-0.677 2.101,-0.99 z"
id="path12" />
<path
inkscape:connector-curvature="0"
d="m 411.225,302.47 -10.441,0.076 -1.979,-0.002 c -0.799,0 -1.614,0.036 -2.448,0.108 -0.156,0.521 -0.234,0.877 -0.234,1.067 l 0.026,0.261 v 0.26 l -0.026,1.276 c 0,1.059 0.334,2.357 1.002,3.893 0.669,1.537 1.623,2.708 2.864,3.516 1.241,0.807 2.791,1.236 4.648,1.289 0.99,-0.053 1.779,-0.174 2.369,-0.365 0.591,-0.19 1.424,-0.633 2.5,-1.328 l 1.875,-1.535 0.156,1.041 c 0,0.121 -0.009,0.252 -0.025,0.391 -0.781,0.989 -1.771,1.857 -2.969,2.604 -1.197,0.747 -2.413,1.293 -3.646,1.641 -0.59,0.156 -1.562,0.234 -2.916,0.234 -1.232,0 -2.447,-0.252 -3.646,-0.755 -1.771,-0.764 -3.164,-1.992 -4.179,-3.685 -1.016,-1.693 -1.523,-3.746 -1.523,-6.159 0,-0.764 0.143,-1.745 0.43,-2.942 0.286,-1.198 0.803,-2.474 1.549,-3.828 0.503,-0.92 1.12,-1.675 1.849,-2.266 1.042,-0.833 1.953,-1.415 2.734,-1.745 1.128,-0.469 2.438,-0.703 3.933,-0.703 1.614,0 2.934,0.295 3.957,0.886 1.389,0.781 2.426,1.788 3.112,3.021 0.686,1.233 1.028,2.361 1.028,3.385 z m -14.531,-0.937 h 1.224 c 0.886,0 3.524,-0.139 7.916,-0.417 0.695,-0.035 1.121,-0.104 1.277,-0.208 0.312,-0.33 0.469,-0.625 0.469,-0.886 0,-0.538 -0.174,-1.149 -0.521,-1.835 -0.347,-0.686 -0.881,-1.215 -1.602,-1.589 -0.721,-0.373 -1.559,-0.56 -2.513,-0.56 -2.015,0 -3.629,0.755 -4.844,2.266 -0.937,1.146 -1.406,2.222 -1.406,3.229 z"
id="path14" />
<path
inkscape:connector-curvature="0"
d="m 460.883,284.607 0.287,3.958 c 0.104,1.198 0.156,2.014 0.156,2.448 l -0.729,0.13 c -1.164,-2.639 -2.609,-4.618 -4.336,-5.938 -1.729,-1.319 -3.842,-1.979 -6.342,-1.979 -3.055,0 -5.434,0.374 -7.135,1.12 -2.465,1.059 -4.574,2.899 -6.328,5.521 -1.752,2.622 -2.629,5.781 -2.629,9.479 0,2.135 0.32,4.054 0.963,5.755 0.643,1.702 1.549,3.286 2.721,4.753 1.172,1.467 2.557,2.738 4.154,3.814 1.041,0.712 2.283,1.25 3.725,1.614 0.814,0.191 2.031,0.286 3.645,0.286 1.041,0 2.195,-0.146 3.463,-0.442 1.268,-0.295 2.223,-0.69 2.865,-1.185 0.643,-0.495 1.08,-1.055 1.314,-1.68 0.234,-0.625 0.352,-1.84 0.352,-3.646 0,-3.002 -0.199,-4.751 -0.598,-5.247 -0.4,-0.495 -1.658,-0.82 -3.777,-0.977 l -1.041,-0.078 -0.703,0.026 c -0.104,-0.017 -0.242,-0.043 -0.416,-0.078 l -0.391,-0.651 c 0,-0.087 0.061,-0.2 0.182,-0.339 0.902,-0.139 2.865,-0.208 5.885,-0.208 0.678,0 1.779,0.017 3.309,0.052 l 2.682,0.104 2.422,-0.026 c 0.469,0 1.031,0.018 1.691,0.052 0.121,0.018 0.199,0.048 0.234,0.091 0.035,0.043 0.053,0.117 0.053,0.221 0,0.191 -0.043,0.434 -0.131,0.729 -0.729,0.156 -1.293,0.234 -1.691,0.234 l -1.693,-0.026 c -0.572,0 -1.033,0.2 -1.381,0.599 -0.172,0.191 -0.26,0.842 -0.26,1.953 l 0.025,3.411 c 0,2.344 -0.094,3.838 -0.285,4.479 -0.105,0.382 -0.322,0.726 -0.65,1.028 -0.33,0.305 -1.025,0.664 -2.084,1.081 -1.51,0.608 -2.883,1.016 -4.115,1.224 -2.291,0.399 -4.504,0.6 -6.639,0.6 -3.438,0 -6.256,-0.439 -8.451,-1.315 -2.195,-0.876 -4.088,-2.097 -5.676,-3.659 -1.59,-1.562 -2.723,-3.142 -3.398,-4.738 -1.025,-2.344 -1.537,-4.731 -1.537,-7.162 0,-3.038 0.803,-6.011 2.408,-8.919 1.605,-2.907 4.197,-5.273 7.773,-7.096 2.518,-1.285 5.938,-1.927 10.26,-1.927 2.986,0 5.43,0.261 7.33,0.781 1.902,0.523 3.407,1.113 4.517,1.773 z"
id="path16" />
<path
inkscape:connector-curvature="0"
d="m 468.33,316.298 -0.104,-0.339 c 0,-0.121 0.078,-0.303 0.234,-0.547 l 1.537,-0.312 2.16,-0.39 c 0.174,-0.087 0.295,-0.208 0.365,-0.364 0.104,-0.226 0.156,-0.893 0.156,-2.002 0,-5.893 -0.035,-9.294 -0.104,-10.204 -0.07,-0.91 -0.227,-1.486 -0.469,-1.729 -0.244,-0.243 -0.869,-0.434 -1.875,-0.572 -0.592,-0.086 -1.061,-0.199 -1.406,-0.338 l 0.104,-0.794 c 1.822,-0.748 3.047,-1.392 3.672,-1.932 0.867,-0.783 1.605,-1.811 2.213,-3.081 l 0.887,0.026 c 0.104,0.869 0.156,2.795 0.156,5.781 l -0.027,0.442 c 0,0.104 0.018,0.27 0.053,0.495 0.66,-1.198 1.484,-2.3 2.473,-3.307 l 0.6,-0.599 c 0.242,-0.277 0.477,-0.495 0.703,-0.651 1.215,-0.729 2.117,-1.094 2.709,-1.094 0.764,0 1.389,0.256 1.875,0.768 0.484,0.512 0.729,1.142 0.729,1.888 0,0.59 -0.174,1.05 -0.521,1.38 -0.469,0.434 -1.006,0.651 -1.613,0.651 -0.279,0 -0.826,-0.147 -1.641,-0.442 -0.816,-0.295 -1.355,-0.443 -1.615,-0.443 -0.486,0 -0.824,0.078 -1.016,0.234 -0.486,0.382 -1.076,1.164 -1.771,2.344 -0.537,0.885 -0.807,1.702 -0.807,2.448 l 0.131,4.306 0.053,5.168 c 0.051,0.592 0.121,0.975 0.207,1.148 0.07,0.122 0.244,0.27 0.521,0.443 1.875,0.156 2.986,0.27 3.332,0.34 0.244,0.018 0.426,0.035 0.547,0.052 0.746,0.018 1.268,0.122 1.562,0.313 0.156,0.087 0.234,0.217 0.234,0.391 0,0.104 -0.068,0.243 -0.207,0.416 l -2.891,-0.052 -1.094,-0.026 -1.59,0.026 h -2.654 l -1.434,0.078 z"
id="path18" />
<path
inkscape:connector-curvature="0"
d="m 487.627,295.778 h 1.945 l 0.857,0.052 0.674,-0.052 c 1.781,0 2.887,0.018 3.32,0.052 l 0.025,0.495 c 0,2.448 -0.035,4.818 -0.104,7.109 -0.053,1.354 -0.078,2.126 -0.078,2.317 0,3.055 0.1,4.965 0.301,5.729 0.199,0.764 0.668,1.376 1.408,1.836 0.74,0.46 1.633,0.689 2.676,0.689 1.271,0 2.484,-0.264 3.641,-0.794 1.158,-0.529 2.145,-1.176 2.963,-1.94 0.088,-0.659 0.131,-1.389 0.131,-2.188 0,-2.586 0.025,-4.331 0.078,-5.233 0.018,-0.538 0.025,-1.007 0.025,-1.406 0,-2.812 -0.139,-4.401 -0.416,-4.765 -0.277,-0.365 -1.336,-0.642 -3.176,-0.833 -0.609,-0.069 -1.051,-0.13 -1.328,-0.182 -0.141,-0.226 -0.209,-0.399 -0.209,-0.521 l 0.078,-0.287 c 0.451,-0.052 0.895,-0.078 1.328,-0.078 l 4.141,0.052 c 1.475,-0.035 2.256,-0.052 2.344,-0.052 0.189,0 0.373,0.009 0.547,0.026 l 0.051,1.901 c -0.121,2.639 -0.191,5.902 -0.207,9.791 l -0.053,2.109 0.104,3.541 c 0.156,0.278 0.295,0.443 0.418,0.495 0.207,0.087 0.633,0.13 1.275,0.13 h 0.234 c 0.225,0 0.867,0.053 1.928,0.156 0.016,0.227 0.025,0.391 0.025,0.495 v 0.286 c -2.326,0.504 -4.211,1.008 -5.65,1.511 -0.574,0.19 -1.061,0.329 -1.459,0.417 -0.086,-0.607 -0.131,-0.98 -0.131,-1.12 v -2.109 c 0,-0.087 -0.008,-0.321 -0.025,-0.703 -0.227,0.156 -0.486,0.348 -0.781,0.573 -1.371,1.059 -2.82,1.953 -4.348,2.682 -1.025,0.504 -2.016,0.756 -2.969,0.756 -1.824,0 -3.309,-0.678 -4.453,-2.031 -1.164,-1.354 -1.746,-3.663 -1.746,-6.927 0,-0.173 0.01,-0.485 0.027,-0.938 0.068,-0.833 0.104,-1.415 0.104,-1.745 0,-0.122 -0.008,-0.503 -0.025,-1.146 -0.018,-0.277 -0.027,-0.521 -0.027,-0.729 0,-0.156 0.01,-0.508 0.027,-1.055 0.017,-0.547 0.025,-0.933 0.025,-1.159 0,-0.295 -0.008,-0.556 -0.025,-0.781 l -0.053,-1.38 0.025,-0.729 c 0,-0.277 -0.139,-0.529 -0.416,-0.755 -1.094,-0.295 -1.809,-0.464 -2.148,-0.508 -0.338,-0.043 -0.637,-0.117 -0.898,-0.221 z"
id="path20" />
<path
inkscape:connector-curvature="0"
d="m 514.24,283.956 v -0.573 c 0.486,-0.156 1.023,-0.321 1.615,-0.495 0.871,-0.277 2.162,-0.703 3.873,-1.276 h 1.23 c 0,0.834 0,1.312 0,1.433 0,14.264 -0.043,22.769 -0.131,25.513 -0.051,1.616 -0.078,2.477 -0.078,2.58 0,1.945 0.078,3.031 0.234,3.258 0.209,0.312 0.848,0.529 1.914,0.651 1.068,0.122 1.697,0.243 1.889,0.364 0.139,0.07 0.207,0.191 0.207,0.365 0,0.191 -0.039,0.325 -0.117,0.403 -0.078,0.078 -0.221,0.117 -0.43,0.117 -0.121,0 -1.031,-0.03 -2.732,-0.089 l -3.412,-0.119 -4.375,0.208 c -0.277,0.017 -0.486,-0.036 -0.625,-0.16 -0.104,-0.089 -0.156,-0.214 -0.156,-0.374 0,-0.178 0.057,-0.307 0.17,-0.387 0.111,-0.08 0.736,-0.216 1.875,-0.407 1.137,-0.19 1.787,-0.352 1.953,-0.481 0.164,-0.131 0.273,-0.421 0.324,-0.873 0.07,-0.625 0.105,-2.387 0.105,-5.285 l -0.027,-5.99 0.078,-6.198 -0.025,-6.198 0.078,-3.046 c 0,-0.607 -0.096,-1.046 -0.287,-1.315 -0.191,-0.269 -0.598,-0.534 -1.223,-0.794 -0.937,-0.381 -1.579,-0.659 -1.927,-0.832 z"
id="path22" />
<path
inkscape:connector-curvature="0"
d="m 526.453,283.956 v -0.573 c 0.486,-0.156 1.023,-0.321 1.615,-0.495 0.871,-0.277 2.162,-0.703 3.873,-1.276 h 1.23 c 0,0.834 0,1.312 0,1.433 0,14.264 -0.043,22.769 -0.131,25.513 -0.051,1.616 -0.078,2.477 -0.078,2.58 0,1.945 0.078,3.031 0.234,3.258 0.209,0.312 0.848,0.529 1.914,0.651 1.068,0.122 1.697,0.243 1.889,0.364 0.139,0.07 0.207,0.191 0.207,0.365 0,0.191 -0.039,0.325 -0.117,0.403 -0.078,0.078 -0.221,0.117 -0.43,0.117 -0.121,0 -1.031,-0.03 -2.732,-0.089 l -3.412,-0.119 -4.375,0.208 c -0.277,0.017 -0.486,-0.036 -0.625,-0.16 -0.104,-0.089 -0.156,-0.214 -0.156,-0.374 0,-0.178 0.057,-0.307 0.17,-0.387 0.111,-0.08 0.736,-0.216 1.875,-0.407 1.137,-0.19 1.787,-0.352 1.953,-0.481 0.164,-0.131 0.273,-0.421 0.324,-0.873 0.07,-0.625 0.105,-2.387 0.105,-5.285 l -0.027,-5.99 0.078,-6.198 -0.025,-6.198 0.078,-3.046 c 0,-0.607 -0.096,-1.046 -0.287,-1.315 -0.191,-0.269 -0.598,-0.534 -1.223,-0.794 -0.937,-0.381 -1.579,-0.659 -1.927,-0.832 z"
id="path24" />
<path
inkscape:connector-curvature="0"
d="m 558.482,312.678 c 0.105,0.227 0.156,0.391 0.156,0.495 0,0.261 -0.207,0.721 -0.625,1.38 -0.537,0.869 -1.137,1.502 -1.797,1.901 -0.416,0.261 -0.988,0.391 -1.719,0.391 -1.25,0 -2.188,-0.382 -2.812,-1.146 -0.381,-0.451 -0.65,-1.259 -0.807,-2.422 l -2.916,2.031 c -1.025,0.59 -1.807,0.963 -2.344,1.119 -0.869,0.226 -1.91,0.339 -3.125,0.339 -0.885,0 -1.584,-0.265 -2.096,-0.794 -0.514,-0.529 -0.77,-1.211 -0.77,-2.045 0,-1.197 0.736,-2.629 2.205,-4.297 1.471,-1.666 3.469,-3.028 5.99,-4.088 1.775,-0.746 2.863,-1.224 3.264,-1.432 0.033,-0.573 0.051,-1.198 0.051,-1.875 0,-2.204 -0.309,-3.697 -0.926,-4.479 -0.619,-0.781 -1.504,-1.172 -2.652,-1.172 -1.201,0 -2.324,0.469 -3.369,1.406 -0.645,0.59 -1.133,1.701 -1.463,3.333 -0.104,0.452 -0.305,0.938 -0.6,1.458 -0.746,0.486 -1.346,0.729 -1.797,0.729 -0.381,0 -0.729,-0.113 -1.041,-0.339 -0.174,-0.121 -0.26,-0.26 -0.26,-0.417 0,-0.451 0.48,-1.471 1.445,-3.06 0.963,-1.588 2.178,-2.777 3.645,-3.568 1.467,-0.79 2.748,-1.185 3.842,-1.185 1.492,0 2.604,0.135 3.332,0.404 0.73,0.269 1.371,0.742 1.928,1.419 0.555,0.677 0.895,1.415 1.016,2.213 0.068,0.382 0.104,1.745 0.104,4.088 l -0.078,4.141 0.027,3.021 c 0,0.399 -0.01,0.738 -0.027,1.016 -0.018,0.504 -0.025,0.877 -0.025,1.119 0,0.573 0.164,1.033 0.494,1.381 0.33,0.348 0.721,0.521 1.172,0.521 0.66,0 1.225,-0.329 1.693,-0.989 l 0.312,-0.417 c 0.087,-0.049 0.279,-0.11 0.573,-0.18 z m -7.628,-0.755 c 0.121,-2.204 0.182,-3.759 0.182,-4.661 0,-0.469 -0.025,-1.102 -0.078,-1.901 -1.168,0.417 -2.404,1.051 -3.711,1.901 -1.307,0.852 -2.342,1.832 -3.109,2.943 -0.557,0.798 -0.836,1.553 -0.836,2.265 0,0.677 0.23,1.241 0.693,1.692 0.461,0.452 1.041,0.678 1.736,0.678 0.541,0 1.193,-0.191 1.961,-0.573 1.009,-0.503 2.062,-1.285 3.162,-2.344 z"
id="path26" />
</g>
<path
inkscape:connector-curvature="0"
d="m 59.913649,97.593875 v 14.106005 h 14.64522 V 97.593875 Z m 10.02004,7.406225 h -2.01242 v 5.38454 h -2.05053 v -5.38454 h -1.42292 v -1.93887 h 1.42292 v -1.65496 c 0,-1.30202 0.84138,-2.495555 2.77866,-2.495555 0.78449,0 1.36472,0.0741 1.36472,0.0741 l -0.0447,1.809485 c 0,0 -0.59213,-0.005 -1.23825,-0.005 -0.69955,0 -0.81015,0.322 -0.81015,0.85672 v 1.415 h 2.10264 z"
id="path60"
style="stroke-width:0.26458332" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

102
public/home/home/logo/ins.svg Executable file
View File

@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="44.680717mm"
height="45.243752mm"
viewBox="0 0 44.680716 45.243752"
version="1.1"
id="svg3905"
inkscape:version="0.92.0 r"
sodipodi:docname="ins.svg">
<defs
id="defs3899">
<linearGradient
gradientTransform="matrix(0.26458333,0,0,0.26458333,-28.894096,-14.726504)"
id="SVGID_1_"
gradientUnits="userSpaceOnUse"
x1="49.6973"
y1="690.08789"
x2="177.5529"
y2="576.54852">
<stop
offset="0.1304"
style="stop-color:#F7BF15"
id="stop78" />
<stop
offset="0.4998"
style="stop-color:#ED1C24"
id="stop80" />
<stop
offset="1"
style="stop-color:#79489C"
id="stop82" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="-27.564825"
inkscape:cy="91.370057"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="786"
inkscape:window-height="779"
inkscape:window-x="841"
inkscape:window-y="83"
inkscape:window-maximized="0" />
<metadata
id="metadata3902">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(18.409188,-127.76458)">
<path
inkscape:connector-curvature="0"
style="fill:url(#SVGID_1_);stroke-width:0.26458332"
d="m 26.271529,163.4373 c 0,5.28611 -4.284927,9.57103 -9.570773,9.57103 H -8.8384155 c -5.2858455,0 -9.5707725,-4.28492 -9.5707725,-9.57103 v -26.10168 c 0,-5.28611 4.284927,-9.57104 9.5707725,-9.57104 H 16.700756 c 5.285846,0 9.570773,4.28493 9.570773,9.57104 z"
id="path85" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#ffffff;stroke-width:3.17499995;stroke-miterlimit:10"
stroke-miterlimit="10"
d="m 20.715279,160.72532 c 0,4.0804 -3.24485,7.38822 -7.247202,7.38822 H -5.8703195 c -4.002352,0 -7.2472015,-3.30782 -7.2472015,-7.38822 v -20.14855 c 0,-4.08041 3.2445845,-7.38823 7.2472015,-7.38823 H 13.468341 c 4.002352,0 7.247202,3.30782 7.247202,7.38823 v 20.14855 z"
id="path87" />
<circle
style="fill:#ffffff;stroke-width:0.26458332"
cx="4.3277817"
cy="151.44479"
r="8.2020836"
id="circle89" />
<circle
style="fill:#ffffff;stroke-width:0.26458332"
cx="14.249659"
cy="140.72917"
r="1.6372417"
id="circle91" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

62
public/home/home/logo/tw.svg Executable file
View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22.818726mm"
height="23.106064mm"
viewBox="0 0 22.818725 23.106064"
version="1.1"
id="svg3905"
inkscape:version="0.92.0 r"
sodipodi:docname="tw.svg">
<defs
id="defs3899" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="33.541236"
inkscape:cy="-133.02665"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="786"
inkscape:window-height="779"
inkscape:window-x="841"
inkscape:window-y="83"
inkscape:window-maximized="0" />
<metadata
id="metadata3902">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(34.576833,-90.530637)">
<path
inkscape:connector-curvature="0"
style="fill:#010101;stroke-width:0.26458332"
d="m -16.586225,98.865012 c -1.60946,14.369518 -14.48435,8.276698 -14.48435,8.276698 2.341827,0.34607 4.874154,-1.46235 4.874154,-1.46235 -2.790824,-0.23919 -3.06996,-2.3921 -3.06996,-2.3921 h 1.275821 c -2.51169,-0.23892 -2.297642,-3.14934 -2.297642,-3.14934 0.293952,0.31883 1.300957,0.31883 1.300957,0.31883 -2.312459,-2.07328 -0.837407,-4.345786 -0.837407,-4.345786 2.551642,3.269191 6.570663,3.428735 6.570663,3.428735 -0.0074,-0.438414 -0.231775,-3.229239 2.040731,-3.946789 2.272242,-0.717815 3.588279,0.916781 3.588279,0.916781 0.518319,0 2.112963,-0.71755 2.112963,-0.71755 -0.07964,0.0799 -1.074473,1.714235 -1.074473,1.714235 l 1.472935,-0.358775 c -0.199231,0.438415 -1.472935,1.515269 -1.472935,1.515269 m 4.828116,-5.525294 c 0,-1.439598 -1.167077,-2.606939 -2.606675,-2.606939 h -17.604845 c -1.439598,0 -2.60694,1.167341 -2.60694,2.606939 v 17.892184 c 0,1.4396 1.167077,2.60694 2.60694,2.60694 h 17.60511 c 1.439598,0 2.606675,-1.16708 2.606675,-2.60694 V 93.137576 Z"
id="path76" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

81
public/home/home/logo/tw_1.svg Executable file
View File

@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg3934"
version="1.1"
viewBox="0 0 102.89831 14.104673"
height="14.104673mm"
width="102.89831mm">
<defs
id="defs3928" />
<metadata
id="metadata3931">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-73.52238,-73.33121)"
id="layer1">
<g
id="g56"
transform="matrix(0.26458333,0,0,0.26458333,31.161,-19.442026)">
<path
id="path28"
d="m 254.979,370.153 5.356,-0.195 -4.026,12.266 c -0.455,1.354 -0.682,2.383 -0.682,3.086 0,0.391 0.175,0.739 0.527,1.045 0.351,0.306 0.761,0.459 1.229,0.459 1.024,0 2.337,-0.518 3.94,-1.553 1.602,-1.035 2.926,-2.513 3.973,-4.434 1.047,-1.921 1.57,-3.968 1.57,-6.143 0,-3.594 -1.298,-6.546 -3.895,-8.857 -2.597,-2.311 -5.979,-3.467 -10.149,-3.467 -3.599,0 -6.869,0.752 -9.809,2.256 -2.94,1.504 -5.274,3.688 -7,6.553 -1.726,2.865 -2.589,5.938 -2.589,9.219 0,4.505 1.614,8.193 4.842,11.064 3.228,2.871 7.338,4.307 12.33,4.307 4.114,0 7.803,-0.983 11.067,-2.949 3.264,-1.966 5.577,-4.57 6.939,-7.812 h 1.34 c -1.758,3.828 -4.317,6.761 -7.68,8.799 -3.361,2.038 -7.269,3.057 -11.722,3.057 -5.64,0 -10.291,-1.618 -13.953,-4.854 -3.662,-3.236 -5.493,-7.334 -5.493,-12.295 0,-3.411 0.912,-6.572 2.735,-9.482 1.824,-2.91 4.373,-5.153 7.646,-6.729 3.274,-1.575 6.903,-2.363 10.888,-2.363 3.237,0 6.068,0.576 8.492,1.729 2.424,1.153 4.245,2.771 5.46,4.854 1.215,2.083 1.824,4.284 1.824,6.602 0,2.695 -0.656,5.156 -1.967,7.383 -1.311,2.227 -2.944,3.87 -4.899,4.932 -1.956,1.062 -4.062,1.592 -6.317,1.592 -1.45,0 -2.556,-0.319 -3.318,-0.957 -0.762,-0.638 -1.143,-1.445 -1.143,-2.422 0,-0.742 0.176,-1.673 0.527,-2.793 -1.214,1.797 -2.149,3.034 -2.807,3.711 -0.921,0.925 -1.834,1.602 -2.741,2.031 -0.599,0.286 -1.279,0.43 -2.04,0.43 -1.023,0 -1.89,-0.368 -2.599,-1.104 -0.709,-0.736 -1.063,-1.807 -1.063,-3.213 0,-2.109 0.468,-4.128 1.404,-6.055 0.936,-1.927 2.055,-3.532 3.356,-4.814 1.301,-1.282 2.72,-2.308 4.256,-3.076 0.731,-0.364 1.506,-0.547 2.326,-0.547 0.819,0 1.495,0.228 2.029,0.684 0.534,0.456 0.896,1.25 1.086,2.383 z m -3.336,0.664 c -0.307,0 -0.679,0.14 -1.118,0.42 -0.438,0.28 -1.041,1.019 -1.807,2.217 -0.767,1.198 -1.505,2.761 -2.213,4.688 -0.708,1.927 -1.062,3.503 -1.062,4.727 0,0.56 0.139,0.996 0.416,1.309 0.277,0.313 0.57,0.469 0.876,0.469 0.409,0 0.971,-0.306 1.687,-0.918 1.256,-1.055 2.37,-2.614 3.342,-4.678 0.971,-2.063 1.457,-3.962 1.457,-5.693 0,-0.872 -0.19,-1.543 -0.569,-2.012 -0.278,-0.353 -0.615,-0.529 -1.009,-0.529 z" />
<path
id="path30"
d="m 270.512,367.518 c 1.927,0.021 3.611,0.09 5.052,0.208 1.024,0 1.771,-0.017 2.24,-0.052 0.33,-0.017 0.538,-0.026 0.625,-0.026 l 2.917,0.026 c 0.399,0.069 0.72,0.113 0.963,0.13 0.104,0.035 0.199,0.131 0.287,0.287 0,0.174 -0.052,0.355 -0.156,0.547 -0.295,0.086 -0.599,0.137 -0.912,0.154 -1.302,0.137 -2.396,0.334 -3.281,0.591 -0.122,0.086 -0.183,0.172 -0.183,0.257 0,0.172 0.087,0.438 0.261,0.797 0.034,0.087 0.112,0.296 0.234,0.626 l 2.61,6.257 c 1.166,2.869 2.244,5.285 3.236,7.249 0.675,-1.286 1.298,-2.616 1.87,-3.989 0.572,-1.373 1.411,-3.537 2.52,-6.492 0.312,-0.834 0.606,-1.864 0.884,-3.091 0.052,-0.242 0.078,-0.449 0.078,-0.622 0,-0.208 -0.117,-0.437 -0.352,-0.687 -0.234,-0.251 -0.629,-0.454 -1.185,-0.609 -0.122,-0.018 -0.911,-0.146 -2.37,-0.389 -0.122,-0.069 -0.234,-0.165 -0.338,-0.286 v -0.209 c 0,-0.086 0.008,-0.199 0.026,-0.338 0.417,-0.053 0.72,-0.078 0.912,-0.078 l 3.073,0.025 c 0.208,0 0.703,-0.025 1.484,-0.078 2.76,0 4.417,0.026 4.974,0.078 0.104,0.035 0.199,0.14 0.286,0.312 0,0.156 -0.052,0.33 -0.156,0.521 l -0.807,0.207 c -0.208,0.018 -0.374,0.034 -0.495,0.052 -1.493,0.138 -2.413,0.345 -2.76,0.621 -0.26,0.189 -0.668,1.078 -1.223,2.666 -0.26,0.782 -0.642,1.773 -1.144,2.973 l -1.351,3.285 c -0.191,0.47 -0.399,0.982 -0.624,1.538 l -4.028,9.334 h -0.801 c -0.156,-0.418 -0.347,-0.853 -0.573,-1.304 l -1.978,-4.198 -4.659,-10.924 c -0.938,-2.121 -1.502,-3.268 -1.693,-3.441 -0.191,-0.173 -1.302,-0.539 -3.333,-1.096 -0.104,-0.277 -0.156,-0.477 -0.156,-0.599 z" />
<path
id="path32"
d="m 296.657,367.778 h 1.945 l 0.856,0.052 0.675,-0.052 c 1.781,0 2.888,0.018 3.32,0.052 l 0.026,0.495 c 0,2.447 -0.035,4.817 -0.104,7.108 -0.052,1.354 -0.078,2.127 -0.078,2.318 0,3.056 0.1,4.965 0.3,5.729 0.2,0.764 0.67,1.376 1.41,1.836 0.74,0.46 1.631,0.689 2.676,0.689 1.27,0 2.484,-0.264 3.641,-0.794 1.157,-0.529 2.145,-1.176 2.962,-1.939 0.086,-0.66 0.13,-1.389 0.13,-2.188 0,-2.587 0.026,-4.331 0.078,-5.234 0.017,-0.538 0.026,-1.007 0.026,-1.406 0,-2.812 -0.139,-4.4 -0.417,-4.766 -0.278,-0.364 -1.337,-0.642 -3.177,-0.833 -0.608,-0.069 -1.05,-0.13 -1.328,-0.183 -0.139,-0.225 -0.208,-0.398 -0.208,-0.521 l 0.078,-0.286 c 0.451,-0.053 0.894,-0.078 1.328,-0.078 l 4.141,0.052 c 1.475,-0.034 2.256,-0.052 2.344,-0.052 0.191,0 0.373,0.009 0.547,0.025 l 0.052,1.901 c -0.122,2.639 -0.191,5.902 -0.208,9.791 l -0.052,2.109 0.104,3.541 c 0.156,0.278 0.295,0.443 0.417,0.495 0.208,0.087 0.633,0.13 1.276,0.13 h 0.234 c 0.225,0 0.868,0.053 1.927,0.156 0.017,0.227 0.026,0.391 0.026,0.495 v 0.286 c -2.327,0.504 -4.21,1.008 -5.651,1.511 -0.573,0.19 -1.059,0.329 -1.458,0.417 -0.087,-0.607 -0.13,-0.98 -0.13,-1.12 v -2.109 c 0,-0.087 -0.009,-0.321 -0.026,-0.703 -0.226,0.156 -0.486,0.348 -0.781,0.573 -1.372,1.059 -2.821,1.953 -4.349,2.682 -1.024,0.504 -2.014,0.756 -2.968,0.756 -1.823,0 -3.307,-0.678 -4.453,-2.031 -1.163,-1.354 -1.745,-3.663 -1.745,-6.927 0,-0.174 0.008,-0.486 0.026,-0.938 0.069,-0.833 0.104,-1.415 0.104,-1.745 0,-0.121 -0.009,-0.503 -0.026,-1.146 -0.018,-0.277 -0.026,-0.521 -0.026,-0.729 0,-0.156 0.008,-0.508 0.026,-1.055 0.017,-0.547 0.026,-0.933 0.026,-1.158 0,-0.295 -0.009,-0.556 -0.026,-0.781 l -0.052,-1.38 0.026,-0.729 c 0,-0.277 -0.139,-0.529 -0.417,-0.755 -1.094,-0.295 -1.81,-0.465 -2.148,-0.508 -0.338,-0.043 -0.638,-0.117 -0.898,-0.222 v -0.831 z" />
<path
id="path34"
d="m 342.54,374.471 -10.442,0.076 -1.979,-0.002 c -0.799,0 -1.614,0.036 -2.448,0.107 -0.156,0.521 -0.234,0.877 -0.234,1.068 l 0.026,0.26 v 0.261 l -0.026,1.276 c 0,1.059 0.334,2.356 1.002,3.893 0.668,1.537 1.623,2.708 2.865,3.516 1.241,0.807 2.79,1.236 4.648,1.289 0.99,-0.053 1.779,-0.174 2.37,-0.365 0.59,-0.19 1.423,-0.633 2.5,-1.327 l 1.875,-1.537 0.156,1.042 c 0,0.121 -0.009,0.252 -0.026,0.391 -0.781,0.989 -1.771,1.857 -2.968,2.604 -1.198,0.747 -2.413,1.293 -3.646,1.641 -0.59,0.156 -1.562,0.234 -2.917,0.234 -1.232,0 -2.448,-0.252 -3.646,-0.755 -1.771,-0.764 -3.164,-1.992 -4.179,-3.685 -1.015,-1.693 -1.523,-3.745 -1.523,-6.158 0,-0.765 0.143,-1.745 0.43,-2.943 0.286,-1.197 0.803,-2.474 1.549,-3.827 0.503,-0.92 1.12,-1.676 1.849,-2.266 1.042,-0.834 1.953,-1.415 2.734,-1.745 1.128,-0.469 2.439,-0.703 3.932,-0.703 1.615,0 2.934,0.296 3.958,0.886 1.389,0.781 2.426,1.788 3.112,3.021 0.686,1.232 1.029,2.361 1.029,3.385 v 0.363 z m -14.531,-0.938 h 1.224 c 0.885,0 3.524,-0.139 7.916,-0.417 0.694,-0.034 1.12,-0.104 1.276,-0.208 0.312,-0.33 0.469,-0.625 0.469,-0.886 0,-0.538 -0.174,-1.149 -0.521,-1.836 -0.348,-0.686 -0.881,-1.215 -1.602,-1.588 -0.721,-0.373 -1.558,-0.561 -2.513,-0.561 -2.014,0 -3.629,0.756 -4.844,2.266 -0.936,1.147 -1.405,2.223 -1.405,3.23 z" />
<path
id="path36"
d="m 345.482,355.955 v -0.572 c 0.486,-0.156 1.024,-0.32 1.615,-0.494 0.872,-0.277 2.163,-0.703 3.874,-1.276 h 1.23 c 0,0.834 0,1.312 0,1.433 0,14.265 -0.043,22.769 -0.13,25.514 -0.052,1.616 -0.078,2.476 -0.078,2.58 0,1.945 0.078,3.031 0.234,3.258 0.208,0.312 0.846,0.529 1.914,0.651 1.067,0.122 1.696,0.243 1.888,0.364 0.139,0.07 0.208,0.191 0.208,0.365 0,0.191 -0.039,0.325 -0.117,0.403 -0.078,0.078 -0.222,0.117 -0.43,0.117 -0.122,0 -1.033,-0.029 -2.734,-0.089 l -3.411,-0.119 -4.375,0.208 c -0.278,0.017 -0.486,-0.036 -0.625,-0.16 -0.104,-0.089 -0.156,-0.214 -0.156,-0.374 0,-0.178 0.056,-0.307 0.169,-0.387 0.113,-0.08 0.738,-0.216 1.875,-0.407 1.137,-0.19 1.788,-0.352 1.953,-0.481 0.165,-0.131 0.273,-0.421 0.325,-0.873 0.069,-0.624 0.104,-2.387 0.104,-5.286 l -0.026,-5.989 0.078,-6.197 -0.026,-6.198 0.078,-3.046 c 0,-0.607 -0.096,-1.046 -0.287,-1.314 -0.191,-0.27 -0.599,-0.535 -1.224,-0.795 -0.936,-0.384 -1.578,-0.662 -1.926,-0.836 z" />
<path
id="path38"
d="m 358.242,377.752 c 0,-1.181 0.248,-2.443 0.742,-3.789 0.494,-1.346 1.246,-2.552 2.252,-3.62 1.007,-1.067 2.074,-1.861 3.203,-2.383 1.58,-0.729 3.506,-1.094 5.781,-1.094 3.246,0 5.959,1.111 8.138,3.334 2.178,2.222 3.268,4.896 3.268,8.021 0,2.777 -1.142,5.256 -3.424,7.434 -2.283,2.18 -5.169,3.269 -8.658,3.269 -2.153,0 -4.184,-0.564 -6.094,-1.692 -1.423,-0.851 -2.647,-2.109 -3.671,-3.776 -1.025,-1.668 -1.537,-3.569 -1.537,-5.704 z m 11.523,10.155 c 1.322,0 2.596,-0.355 3.821,-1.067 1.226,-0.712 2.204,-1.854 2.935,-3.425 0.73,-1.57 1.096,-3.389 1.096,-5.455 0,-1.354 -0.283,-2.925 -0.848,-4.714 -0.565,-1.787 -1.435,-3.129 -2.609,-4.022 -1.174,-0.895 -2.552,-1.342 -4.134,-1.342 -1.147,0 -2.317,0.27 -3.508,0.808 -1.191,0.538 -2.2,1.571 -3.026,3.099 -0.826,1.528 -1.239,3.698 -1.239,6.511 0,3.159 0.717,5.551 2.152,7.174 1.435,1.623 3.22,2.433 5.36,2.433 z" />
<path
id="path40"
d="m 402.562,369.314 0.026,-0.755 -0.026,-3.047 0.026,-5.755 c 0,-1.598 -0.174,-2.613 -0.521,-3.047 -0.348,-0.434 -1.363,-0.877 -3.047,-1.328 -0.122,-0.035 -0.312,-0.086 -0.573,-0.156 v -0.286 c 0,-0.173 0.017,-0.364 0.052,-0.573 2.361,-0.242 4.393,-0.65 6.094,-1.224 l 1.328,-0.026 c 0.069,1.182 0.104,2.5 0.104,3.959 l -0.104,10.024 0.182,11.302 -0.078,6.016 c 0,1.232 0.088,1.927 0.262,2.083 0.346,0.348 1.109,0.53 2.291,0.547 0.242,0 0.572,0.018 0.989,0.052 v 0.469 c 0,0.122 -0.009,0.252 -0.026,0.391 -0.538,0.122 -1.094,0.234 -1.666,0.339 l -3.775,0.729 c -0.557,0.104 -0.999,0.156 -1.328,0.156 v -2.5 c -0.296,0.087 -0.756,0.26 -1.381,0.521 -2.708,1.146 -5.199,1.719 -7.473,1.719 -1.372,0 -2.77,-0.447 -4.193,-1.341 -1.423,-0.895 -2.517,-2.14 -3.281,-3.737 -0.764,-1.597 -1.146,-3.229 -1.146,-4.896 0,-1.493 0.251,-2.921 0.755,-4.283 0.503,-1.363 1.163,-2.496 1.979,-3.398 0.521,-0.59 1.258,-1.176 2.213,-1.758 0.955,-0.581 1.745,-0.95 2.37,-1.106 1.545,-0.399 2.578,-0.6 3.099,-0.6 2.344,0 4.271,0.348 5.781,1.042 0.469,0.224 0.824,0.381 1.067,0.467 z m 0.027,16.093 c 0.069,-1.163 0.104,-3.559 0.104,-7.187 0,-3.073 -0.144,-5.014 -0.429,-5.82 -0.286,-0.808 -0.999,-1.571 -2.14,-2.292 -1.143,-0.72 -2.422,-1.08 -3.839,-1.08 -1.989,0 -3.675,0.772 -5.059,2.317 -1.384,1.545 -2.075,3.828 -2.075,6.849 0,2.656 0.748,4.774 2.244,6.354 1.496,1.58 3.359,2.37 5.59,2.37 1.28,0 2.448,-0.174 3.502,-0.521 1.056,-0.347 1.756,-0.677 2.102,-0.99 z" />
<path
id="path42"
d="m 430.842,374.471 -10.441,0.076 -1.979,-0.002 c -0.799,0 -1.615,0.036 -2.448,0.107 -0.156,0.521 -0.234,0.877 -0.234,1.068 l 0.026,0.26 v 0.261 l -0.026,1.276 c 0,1.059 0.334,2.356 1.003,3.893 0.668,1.536 1.623,2.708 2.864,3.516 1.241,0.807 2.79,1.236 4.647,1.289 0.99,-0.053 1.779,-0.174 2.369,-0.365 0.59,-0.19 1.424,-0.633 2.5,-1.327 l 1.875,-1.537 0.156,1.042 c 0,0.121 -0.008,0.252 -0.025,0.391 -0.781,0.989 -1.771,1.857 -2.969,2.604 -1.197,0.747 -2.412,1.293 -3.646,1.641 -0.591,0.156 -1.562,0.234 -2.917,0.234 -1.232,0 -2.447,-0.252 -3.645,-0.755 -1.771,-0.764 -3.164,-1.992 -4.18,-3.685 -1.016,-1.693 -1.523,-3.745 -1.523,-6.158 0,-0.765 0.143,-1.745 0.43,-2.943 0.286,-1.197 0.803,-2.474 1.549,-3.827 0.504,-0.92 1.12,-1.676 1.85,-2.266 1.041,-0.834 1.953,-1.415 2.734,-1.745 1.128,-0.469 2.438,-0.703 3.932,-0.703 1.615,0 2.934,0.296 3.957,0.886 1.389,0.781 2.426,1.788 3.113,3.021 0.686,1.232 1.027,2.361 1.027,3.385 v 0.363 z m -14.53,-0.938 h 1.224 c 0.886,0 3.524,-0.139 7.916,-0.417 0.694,-0.034 1.12,-0.104 1.276,-0.208 0.312,-0.33 0.469,-0.625 0.469,-0.886 0,-0.538 -0.174,-1.149 -0.521,-1.836 -0.348,-0.686 -0.881,-1.215 -1.602,-1.588 -0.721,-0.373 -1.558,-0.561 -2.512,-0.561 -2.015,0 -3.629,0.756 -4.844,2.266 -0.937,1.147 -1.406,2.223 -1.406,3.23 z" />
<path
id="path44"
d="m 439.463,389.938 c -0.209,-0.104 -0.877,-0.391 -2.006,-0.859 -1.32,-0.851 -2.152,-1.484 -2.5,-1.901 -0.348,-0.416 -0.521,-0.876 -0.521,-1.38 0,-0.451 0.131,-0.815 0.391,-1.094 0.383,-0.399 1.137,-0.781 2.266,-1.146 1.129,-0.365 2.059,-0.721 2.787,-1.067 -0.227,-0.156 -0.582,-0.382 -1.068,-0.678 -2.586,-1.597 -3.879,-3.811 -3.879,-6.64 0,-2.326 0.82,-4.292 2.461,-5.898 1.641,-1.605 3.744,-2.409 6.314,-2.409 1.162,0 2.23,0.166 3.203,0.495 0.555,0.174 1.379,0.608 2.473,1.302 0.695,0.435 1.104,0.678 1.225,0.729 0.277,0.087 0.59,0.13 0.938,0.13 0.295,0 1.012,-0.073 2.148,-0.221 1.136,-0.148 1.809,-0.222 2.018,-0.222 0.398,0 0.729,0.078 0.99,0.234 0.207,0.348 0.312,0.929 0.312,1.745 0,0.277 -0.074,0.485 -0.223,0.625 -0.146,0.139 -0.359,0.208 -0.637,0.208 -0.486,0 -1.289,-0.152 -2.408,-0.456 -1.121,-0.304 -1.803,-0.455 -2.045,-0.455 -0.088,0 -0.252,0.017 -0.494,0.052 0.746,1.493 1.119,2.855 1.119,4.088 0,1.233 -0.391,2.509 -1.172,3.828 -0.781,1.319 -1.857,2.327 -3.229,3.021 -1.373,0.695 -2.762,1.042 -4.168,1.042 -0.104,0 -0.398,-0.009 -0.885,-0.026 -1.598,0 -3.064,0.399 -4.4,1.198 -0.643,0.399 -0.963,0.772 -0.963,1.119 0,0.365 0.312,0.721 0.938,1.068 1.648,0.885 4.773,1.397 9.373,1.536 1.996,0.069 3.551,0.355 4.662,0.859 1.111,0.503 1.949,1.245 2.512,2.227 0.564,0.98 0.848,1.992 0.848,3.033 0,1.406 -0.479,2.709 -1.432,3.906 -0.955,1.198 -2.406,2.17 -4.35,2.917 -1.945,0.746 -4.176,1.119 -6.693,1.119 -2.777,0 -4.92,-0.338 -6.432,-1.016 -1.51,-0.677 -2.582,-1.415 -3.215,-2.213 -0.635,-0.799 -0.951,-1.589 -0.951,-2.37 0,-0.677 0.348,-1.523 1.041,-2.539 0.695,-1.016 2.137,-2.079 4.324,-3.189 0.64,-0.328 1.084,-0.563 1.328,-0.702 z m -1.902,9.245 c 1.58,1.215 3.576,1.823 5.99,1.823 1.719,0 3.432,-0.273 5.143,-0.82 1.709,-0.547 2.959,-1.328 3.75,-2.344 0.789,-1.016 1.186,-1.976 1.186,-2.878 0,-0.556 -0.141,-1.106 -0.418,-1.653 -0.277,-0.547 -0.654,-0.998 -1.133,-1.354 -0.477,-0.355 -1.105,-0.638 -1.887,-0.846 -0.557,-0.156 -1.346,-0.27 -2.371,-0.339 -2.916,-0.226 -4.703,-0.338 -5.363,-0.338 -1.857,0 -3.516,0.625 -4.975,1.874 -1.129,0.973 -1.691,2.136 -1.691,3.49 -10e-4,1.25 0.589,2.378 1.769,3.385 z m 0.859,-24.114 c 0,1.562 0.234,2.869 0.703,3.919 0.469,1.051 1.111,1.832 1.928,2.344 0.816,0.513 1.641,0.769 2.473,0.769 1.512,0 2.766,-0.577 3.764,-1.732 0.998,-1.154 1.498,-2.912 1.498,-5.272 0,-2.379 -0.521,-4.188 -1.562,-5.43 -1.043,-1.241 -2.301,-1.862 -3.777,-1.862 -1.648,0 -2.898,0.591 -3.748,1.771 -0.853,1.18 -1.279,3.011 -1.279,5.493 z" />
<path
id="path46"
d="m 458.705,388.298 -0.104,-0.339 c 0,-0.121 0.078,-0.303 0.234,-0.547 l 1.537,-0.312 2.16,-0.39 c 0.174,-0.087 0.295,-0.208 0.365,-0.364 0.104,-0.226 0.156,-0.893 0.156,-2.002 0,-5.893 -0.035,-9.294 -0.104,-10.204 -0.07,-0.909 -0.227,-1.486 -0.469,-1.729 -0.244,-0.242 -0.869,-0.434 -1.875,-0.572 -0.592,-0.087 -1.061,-0.199 -1.406,-0.338 l 0.104,-0.794 c 1.822,-0.749 3.047,-1.393 3.672,-1.933 0.867,-0.783 1.605,-1.81 2.213,-3.08 l 0.887,0.025 c 0.104,0.868 0.156,2.796 0.156,5.781 l -0.027,0.442 c 0,0.104 0.018,0.27 0.053,0.495 0.66,-1.198 1.484,-2.3 2.473,-3.308 l 0.6,-0.599 c 0.242,-0.277 0.477,-0.495 0.703,-0.651 1.215,-0.729 2.117,-1.094 2.709,-1.094 0.764,0 1.389,0.257 1.875,0.769 0.484,0.513 0.729,1.142 0.729,1.888 0,0.591 -0.174,1.051 -0.521,1.381 -0.469,0.434 -1.006,0.65 -1.613,0.65 -0.279,0 -0.826,-0.147 -1.641,-0.442 -0.816,-0.295 -1.355,-0.442 -1.615,-0.442 -0.486,0 -0.824,0.078 -1.016,0.234 -0.486,0.382 -1.076,1.163 -1.771,2.343 -0.537,0.886 -0.807,1.702 -0.807,2.448 l 0.131,4.306 0.053,5.168 c 0.051,0.592 0.121,0.975 0.207,1.148 0.07,0.122 0.244,0.27 0.521,0.443 1.875,0.156 2.986,0.27 3.332,0.34 0.244,0.017 0.426,0.034 0.547,0.052 0.746,0.018 1.268,0.122 1.562,0.313 0.156,0.087 0.234,0.217 0.234,0.391 0,0.104 -0.068,0.243 -0.207,0.416 l -2.891,-0.052 -1.094,-0.026 -1.59,0.026 h -2.654 l -1.434,0.078 z" />
<path
id="path48"
d="m 478.002,367.778 h 1.945 l 0.855,0.052 0.674,-0.052 c 1.781,0 2.889,0.018 3.322,0.052 l 0.025,0.495 c 0,2.447 -0.035,4.817 -0.104,7.108 -0.053,1.354 -0.078,2.127 -0.078,2.318 0,3.056 0.1,4.965 0.299,5.729 0.201,0.764 0.67,1.376 1.41,1.836 0.738,0.46 1.631,0.689 2.676,0.689 1.27,0 2.482,-0.264 3.641,-0.794 1.156,-0.529 2.145,-1.176 2.963,-1.939 0.086,-0.66 0.129,-1.389 0.129,-2.188 0,-2.587 0.027,-4.331 0.08,-5.234 0.016,-0.538 0.025,-1.007 0.025,-1.406 0,-2.812 -0.139,-4.4 -0.416,-4.766 -0.279,-0.364 -1.338,-0.642 -3.178,-0.833 -0.607,-0.069 -1.051,-0.13 -1.328,-0.183 -0.139,-0.225 -0.209,-0.398 -0.209,-0.521 l 0.078,-0.286 c 0.451,-0.053 0.895,-0.078 1.328,-0.078 l 4.141,0.052 c 1.477,-0.034 2.258,-0.052 2.344,-0.052 0.191,0 0.373,0.009 0.547,0.025 l 0.053,1.901 c -0.121,2.639 -0.191,5.902 -0.209,9.791 l -0.051,2.109 0.104,3.541 c 0.156,0.278 0.295,0.443 0.416,0.495 0.209,0.087 0.635,0.13 1.275,0.13 h 0.234 c 0.227,0 0.869,0.053 1.928,0.156 0.018,0.227 0.025,0.391 0.025,0.495 v 0.286 c -2.326,0.504 -4.209,1.008 -5.65,1.511 -0.572,0.19 -1.059,0.329 -1.457,0.417 -0.088,-0.607 -0.131,-0.98 -0.131,-1.12 v -2.109 c 0,-0.087 -0.01,-0.321 -0.025,-0.703 -0.227,0.156 -0.486,0.348 -0.781,0.573 -1.373,1.059 -2.822,1.953 -4.35,2.682 -1.023,0.504 -2.014,0.756 -2.969,0.756 -1.822,0 -3.307,-0.678 -4.453,-2.031 -1.162,-1.354 -1.744,-3.663 -1.744,-6.927 0,-0.174 0.008,-0.486 0.025,-0.938 0.07,-0.833 0.105,-1.415 0.105,-1.745 0,-0.121 -0.01,-0.503 -0.027,-1.146 -0.018,-0.277 -0.025,-0.521 -0.025,-0.729 0,-0.156 0.008,-0.508 0.025,-1.055 0.017,-0.547 0.027,-0.933 0.027,-1.158 0,-0.295 -0.01,-0.556 -0.027,-0.781 l -0.051,-1.38 0.025,-0.729 c 0,-0.277 -0.139,-0.529 -0.416,-0.755 -1.094,-0.295 -1.811,-0.465 -2.148,-0.508 -0.34,-0.043 -0.639,-0.117 -0.898,-0.222 v -0.831 z" />
<path
id="path50"
d="m 504.615,355.955 v -0.572 c 0.484,-0.156 1.023,-0.32 1.613,-0.494 0.873,-0.277 2.164,-0.703 3.875,-1.276 h 1.229 c 0,0.834 0,1.312 0,1.433 0,14.265 -0.043,22.769 -0.129,25.514 -0.053,1.616 -0.078,2.476 -0.078,2.58 0,1.945 0.078,3.031 0.234,3.258 0.207,0.312 0.846,0.529 1.914,0.651 1.066,0.122 1.695,0.243 1.887,0.364 0.139,0.07 0.209,0.191 0.209,0.365 0,0.191 -0.039,0.325 -0.117,0.403 -0.078,0.078 -0.221,0.117 -0.43,0.117 -0.121,0 -1.033,-0.029 -2.734,-0.089 l -3.412,-0.119 -4.373,0.208 c -0.279,0.017 -0.486,-0.036 -0.625,-0.16 -0.105,-0.089 -0.156,-0.214 -0.156,-0.374 0,-0.178 0.055,-0.307 0.168,-0.387 0.113,-0.08 0.738,-0.216 1.875,-0.407 1.137,-0.19 1.789,-0.352 1.953,-0.481 0.166,-0.131 0.273,-0.421 0.326,-0.873 0.068,-0.624 0.104,-2.387 0.104,-5.286 l -0.025,-5.989 0.078,-6.197 -0.027,-6.198 0.078,-3.046 c 0,-0.607 -0.094,-1.046 -0.285,-1.314 -0.191,-0.27 -0.6,-0.535 -1.225,-0.795 -0.938,-0.384 -1.581,-0.662 -1.927,-0.836 z" />
<path
id="path52"
d="m 516.828,355.955 v -0.572 c 0.484,-0.156 1.023,-0.32 1.613,-0.494 0.873,-0.277 2.164,-0.703 3.875,-1.276 h 1.229 c 0,0.834 0,1.312 0,1.433 0,14.265 -0.043,22.769 -0.129,25.514 -0.053,1.616 -0.078,2.476 -0.078,2.58 0,1.945 0.078,3.031 0.234,3.258 0.207,0.312 0.846,0.529 1.914,0.651 1.066,0.122 1.695,0.243 1.887,0.364 0.139,0.07 0.209,0.191 0.209,0.365 0,0.191 -0.039,0.325 -0.117,0.403 -0.078,0.078 -0.221,0.117 -0.43,0.117 -0.121,0 -1.033,-0.029 -2.734,-0.089 l -3.412,-0.119 -4.373,0.208 c -0.279,0.017 -0.486,-0.036 -0.625,-0.16 -0.105,-0.089 -0.156,-0.214 -0.156,-0.374 0,-0.178 0.055,-0.307 0.168,-0.387 0.113,-0.08 0.738,-0.216 1.875,-0.407 1.137,-0.19 1.789,-0.352 1.953,-0.481 0.166,-0.131 0.273,-0.421 0.326,-0.873 0.068,-0.624 0.104,-2.387 0.104,-5.286 l -0.025,-5.989 0.078,-6.197 -0.027,-6.198 0.078,-3.046 c 0,-0.607 -0.094,-1.046 -0.285,-1.314 -0.191,-0.27 -0.6,-0.535 -1.225,-0.795 -0.939,-0.384 -1.581,-0.662 -1.927,-0.836 z" />
<path
id="path54"
d="m 548.857,384.679 c 0.104,0.226 0.156,0.39 0.156,0.494 0,0.261 -0.209,0.721 -0.625,1.38 -0.539,0.869 -1.139,1.502 -1.797,1.901 -0.418,0.261 -0.99,0.391 -1.719,0.391 -1.25,0 -2.188,-0.382 -2.812,-1.146 -0.383,-0.451 -0.65,-1.259 -0.807,-2.422 l -2.918,2.031 c -1.023,0.59 -1.805,0.963 -2.344,1.119 -0.867,0.226 -1.91,0.339 -3.125,0.339 -0.885,0 -1.584,-0.265 -2.096,-0.794 -0.512,-0.529 -0.768,-1.211 -0.768,-2.045 0,-1.197 0.734,-2.63 2.205,-4.296 1.471,-1.667 3.467,-3.029 5.99,-4.089 1.775,-0.746 2.861,-1.224 3.262,-1.432 0.035,-0.573 0.053,-1.198 0.053,-1.875 0,-2.205 -0.309,-3.698 -0.928,-4.479 -0.619,-0.781 -1.502,-1.172 -2.65,-1.172 -1.203,0 -2.326,0.469 -3.371,1.406 -0.645,0.591 -1.131,1.702 -1.463,3.333 -0.104,0.452 -0.303,0.938 -0.598,1.459 -0.746,0.486 -1.346,0.729 -1.797,0.729 -0.383,0 -0.729,-0.112 -1.041,-0.338 -0.174,-0.121 -0.262,-0.261 -0.262,-0.417 0,-0.451 0.482,-1.472 1.445,-3.06 0.963,-1.589 2.18,-2.777 3.646,-3.567 1.466,-0.79 2.746,-1.186 3.84,-1.186 1.494,0 2.605,0.135 3.334,0.404 0.729,0.269 1.371,0.742 1.926,1.419 0.557,0.677 0.895,1.415 1.016,2.214 0.07,0.382 0.105,1.744 0.105,4.088 l -0.078,4.141 0.025,3.021 c 0,0.399 -0.008,0.738 -0.025,1.016 -0.018,0.504 -0.027,0.877 -0.027,1.12 0,0.572 0.166,1.032 0.496,1.38 0.33,0.348 0.721,0.521 1.172,0.521 0.658,0 1.223,-0.329 1.691,-0.989 l 0.312,-0.417 c 0.091,-0.052 0.281,-0.113 0.577,-0.182 z m -7.63,-0.756 c 0.121,-2.204 0.184,-3.758 0.184,-4.661 0,-0.469 -0.027,-1.103 -0.078,-1.9 -1.168,0.416 -2.404,1.05 -3.711,1.9 -1.307,0.85 -2.344,1.832 -3.109,2.942 -0.559,0.799 -0.836,1.554 -0.836,2.266 0,0.677 0.23,1.241 0.691,1.692 0.463,0.452 1.041,0.678 1.738,0.678 0.539,0 1.193,-0.191 1.959,-0.573 1.009,-0.503 2.064,-1.285 3.162,-2.344 z" />
</g>
<path
style="stroke-width:0.26458332"
id="path58"
d="M 73.52238,73.33121 V 87.435883 H 88.165744 V 73.33121 Z m 11.513343,4.903258 c 0.0045,0.0926 0.0066,0.185473 0.0066,0.280194 0,2.858294 -2.175933,6.151827 -6.153943,6.151827 -1.220523,0 -2.356909,-0.357452 -3.315759,-0.971285 0.169334,0.01905 0.343165,0.03069 0.516467,0.03069 1.013883,0 1.946804,-0.344752 2.686314,-0.926571 -0.946414,-0.01614 -1.745191,-0.641879 -2.020358,-1.50151 0.132821,0.02646 0.268552,0.03942 0.405606,0.03942 0.198173,0 0.389467,-0.02646 0.5715,-0.07699 -0.988748,-0.197379 -1.735666,-1.072621 -1.735666,-2.120106 0,-0.0087 0,-0.01667 0,-0.02567 0.291306,0.161132 0.625739,0.259027 0.980016,0.27014 -0.580231,-0.388938 -0.96176,-1.050661 -0.96176,-1.80049 0,-0.395816 0.107156,-0.767821 0.292629,-1.086908 1.067329,1.308629 2.659856,2.16826 4.457171,2.258483 -0.03729,-0.157686 -0.05555,-0.322786 -0.05555,-0.491855 0,-1.194329 0.968375,-2.161117 2.16244,-2.161117 0.622829,0 1.183216,0.261673 1.577181,0.681302 0.492919,-0.09684 0.956469,-0.276489 1.373981,-0.524404 -0.161396,0.504561 -0.504031,0.929481 -0.949854,1.196975 0.435769,-0.05265 0.853281,-0.170127 1.24116,-0.341577 -0.291041,0.434181 -0.656431,0.814388 -1.078177,1.119452 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

241
public/home/home/logo/vdg.svg Executable file
View File

@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="68.126854mm"
height="46.285229mm"
viewBox="0 0 68.126852 46.285229"
version="1.1"
id="svg3905"
inkscape:version="0.92.0 r"
sodipodi:docname="vdg.svg">
<defs
id="defs3899" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="127.99918"
inkscape:cy="-236.98707"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="786"
inkscape:window-height="779"
inkscape:window-x="841"
inkscape:window-y="83"
inkscape:window-maximized="0" />
<metadata
id="metadata3902">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(59.56883,-39.845277)">
<g
transform="matrix(0.26458333,0,0,0.26458333,-137.0009,-97.552643)"
id="g38">
<g
id="g12">
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 353.678,646.205 c 0,0 -0.646,0.273 -1.775,0.754 -0.555,0.267 -1.285,0.447 -2.103,0.716 -0.815,0.291 -1.768,0.466 -2.798,0.702 -2.066,0.439 -4.52,0.729 -7.148,0.848 -1.312,0.077 -2.668,0.157 -4.047,0.238 -1.375,0.096 -2.772,0.211 -4.165,0.361 -1.395,0.131 -2.783,0.309 -4.147,0.488 -1.361,0.194 -2.704,0.37 -3.987,0.63 -1.292,0.21 -2.522,0.498 -3.693,0.758 -1.169,0.264 -2.251,0.604 -3.267,0.86 -1.005,0.291 -1.903,0.632 -2.718,0.882 -0.819,0.239 -1.49,0.562 -2.065,0.771 -1.145,0.443 -1.797,0.696 -1.797,0.696 l -0.023,-0.047 c 0,0 0.633,-0.305 1.739,-0.837 0.558,-0.258 1.222,-0.607 2.028,-0.896 0.801,-0.304 1.699,-0.671 2.701,-1 1.014,-0.293 2.096,-0.678 3.277,-0.94 1.181,-0.263 2.417,-0.59 3.725,-0.773 1.299,-0.234 2.652,-0.396 4.027,-0.553 1.377,-0.125 2.776,-0.246 4.178,-0.321 2.802,-0.148 5.602,-0.293 8.211,-0.594 1.309,-0.125 2.561,-0.326 3.754,-0.462 1.184,-0.188 2.311,-0.324 3.337,-0.525 1.023,-0.213 1.972,-0.376 2.784,-0.61 0.82,-0.219 1.544,-0.376 2.121,-0.592 1.166,-0.384 1.832,-0.603 1.832,-0.603 z"
id="path10" />
</g>
<g
id="g16">
<path
style="fill:#343433"
inkscape:connector-curvature="0"
d="m 426.087,564.474 c 0,0 -1.899,0.331 -4.726,0.94 -2.825,0.615 -6.577,1.504 -10.274,2.584 -1.851,0.536 -3.677,1.146 -5.387,1.72 -0.848,0.308 -1.667,0.604 -2.444,0.886 -0.77,0.301 -1.497,0.586 -2.169,0.849 -1.322,0.574 -2.422,1.063 -3.166,1.458 -0.753,0.379 -1.184,0.596 -1.184,0.596 l -0.018,-0.029 c 0,0 0.417,-0.244 1.146,-0.671 0.364,-0.214 0.804,-0.481 1.34,-0.726 0.531,-0.254 1.122,-0.559 1.782,-0.858 0.666,-0.286 1.388,-0.595 2.151,-0.923 0.773,-0.301 1.598,-0.597 2.45,-0.904 1.713,-0.588 3.561,-1.151 5.423,-1.661 3.721,-1.03 7.486,-1.88 10.325,-2.438 2.838,-0.559 4.744,-0.855 4.744,-0.855 z"
id="path14" />
</g>
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 491.789,524.927 17.048,1.295 c 0,0 2.849,0.122 -0.316,0.698 l -8.556,0.634 c -3.473,-0.129 -6.701,0.98 -6.701,0.98 l 10.971,3.778 c 2.387,0.642 2.604,1.27 2.604,1.27 l -6.502,-0.938 c -6.245,-1.497 -10.54,0.579 -10.54,0.579 0,0 -2.786,1.069 -6.621,1.628 -3.836,0.557 -16.917,4.592 -19.776,8.917 -2.86,4.329 -6.14,14.094 -9.089,17.487 -2.945,3.394 -8.475,8.803 -10.209,8.403 0,0 7.842,-4.879 10.414,-11.384 2.567,-6.502 1.312,-14.806 3.845,-18.328 2.529,-3.521 4.432,-4.123 6.85,-4.941 2.418,-0.821 13.083,0.556 16.568,-2.706 2.507,-2.351 4.331,-4.136 5.15,-5.147 0.319,-0.396 -1.569,-0.87 -1.307,-1.366 0.231,-0.431 1.865,-0.046 1.95,-0.542 0.257,-1.482 0.24,-2.929 2.282,-2.572 z"
id="path18" />
<path
style="fill:#c22a39"
inkscape:connector-curvature="0"
d="m 487.363,521.408 c 0,0 -5.358,-3.967 -10.405,-1.019 -5.048,2.954 -5.364,5.621 -5.384,7.914 -0.021,2.295 6.147,-0.023 8.335,-1.461 2.188,-1.433 7.435,-3.144 7.454,-5.434 z"
id="path20" />
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 472.583,524.67 c 0,0 -8.632,1.831 -11.21,6.673 0,0 0.325,-1.001 5.672,-1.514 5.348,-0.514 7.332,1.026 9.12,-1.232 0,0 -5.658,1.779 -3.582,-3.927 z"
id="path22" />
<g
id="g26">
<path
style="fill:#343433"
inkscape:connector-curvature="0"
d="m 460.722,531.438 c 0,0 -0.235,0.275 -0.647,0.758 -0.401,0.49 -0.975,1.19 -1.663,2.03 -0.328,0.433 -0.683,0.902 -1.059,1.398 -0.36,0.506 -0.804,0.997 -1.148,1.581 -0.362,0.572 -0.736,1.164 -1.116,1.765 -0.37,0.607 -0.697,1.261 -1.099,1.866 -1.557,2.449 -3.345,4.754 -4.886,6.296 -0.385,0.386 -0.749,0.728 -1.086,1.017 -0.342,0.281 -0.637,0.533 -0.911,0.695 -0.522,0.366 -0.884,0.466 -0.873,0.484 l -0.006,-0.016 c -0.012,-0.019 0.342,-0.132 0.846,-0.518 0.263,-0.174 0.549,-0.433 0.883,-0.717 0.328,-0.294 0.683,-0.642 1.057,-1.033 1.474,-1.588 3.303,-3.843 4.86,-6.282 0.405,-0.6 0.734,-1.243 1.11,-1.85 0.388,-0.601 0.77,-1.192 1.139,-1.765 0.353,-0.583 0.798,-1.071 1.166,-1.574 0.382,-0.491 0.743,-0.957 1.076,-1.386 0.698,-0.833 1.281,-1.527 1.688,-2.013 0.417,-0.478 0.655,-0.75 0.655,-0.75 z"
id="path24" />
</g>
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 421.807,603.762 c 0,0 -6.052,53.483 -11.03,53.483 -4.244,0 7.779,-56.43 7.779,-56.43 0,0 -13.475,61.904 -16.623,59.651 -3.14,-2.244 13.32,-59.329 13.32,-59.329 0,0 -15.792,58.126 -20.393,58.525 -2.896,0.257 15.154,-58.525 15.154,-58.525 0,0 -18.282,58.873 -21.168,58.126 -2.88,-0.756 15.143,-52.126 15.143,-52.126 0,0 -17.473,52.012 -20.088,50.507 -2.623,-1.494 14.847,-49.386 14.847,-49.386 0,0 -15.768,48.438 -18.383,46.57 -2.623,-1.882 11.835,-44.694 11.835,-44.694 0,0 -11.972,43.426 -15.371,42.679 -3.41,-0.75 10.387,-41.926 10.387,-41.926 0,0 -11.401,39.878 -14.281,39.508 -2.884,-0.377 7.408,-31.198 7.408,-31.198 0,0 -7.8,29.943 -10.68,30.319 -2.883,0.38 8.926,-35.543 8.926,-35.543 0,0 -9.71,34.42 -12.853,34.796 -3.148,0.371 7.5,-31.026 7.5,-31.026 0,0 -8.121,30.462 -11.264,28.218 -3.143,-2.253 7.141,-30.22 7.141,-30.22 0,0 -9.279,28.252 -11.033,27.396 -2.476,-1.212 5.295,-25.123 5.295,-25.123 0,0 -7.797,26.592 -9.893,24.715 -2.096,-1.864 4.648,-17.965 4.648,-17.965 0,0 -5.965,16.034 -7.83,13.938 l 1.279,-11.315 14.652,-11.646 41.586,-14.734 16.084,-5.495 z"
id="path28" />
<path
style="fill:#5d5e5e"
inkscape:connector-curvature="0"
d="m 442.538,570.685 c 0,0 -13.971,-4.42 -27.313,8.556 -13.993,13.605 -2.056,2.817 -15.639,14.543 -8.406,7.255 -25.226,13.782 -33.354,17.835 -8.121,4.049 -22.188,7.671 -23.207,14.617 -1.012,6.941 3.557,5.789 0,9.26 0,0 1.019,2.31 3.557,0.579 2.537,-1.74 3.807,-3.474 3.553,-6.662 -0.254,-3.177 -0.508,-2.601 4.822,-2.31 5.333,0.285 10.154,1.158 10.408,-4.916 0,0 0,4.625 2.539,0.285 2.537,-4.335 1.266,-11.863 8.375,-13.594 7.109,-1.74 5.332,-3.188 5.332,-3.188 0,0 -5.837,4.919 -8.375,7.525 -2.538,2.604 -1.776,5.207 -1.271,6.947 0.508,1.73 2.794,-3.474 3.81,-5.498 1.016,-2.031 -0.508,7.229 1.016,6.943 1.522,-0.294 2.284,-6.943 3.553,-7.234 1.269,-0.294 -1.773,5.495 1.773,4.049 3.56,-1.448 0.257,-3.473 2.033,-4.049 1.78,-0.579 0.762,4.049 1.526,2.601 0.758,-1.449 1.012,-3.18 2.03,-3.474 1.015,-0.285 0.508,4.637 1.52,2.318 1.019,-2.318 1.525,-4.628 1.525,-4.628 0,0 0.254,4.628 1.523,4.628 1.269,0 2.541,-2.895 2.541,-6.071 0,-3.188 -1.272,2.308 2.538,2.308 3.807,0 4.819,-2.892 5.834,-7.809 0,0 0.254,6.656 2.036,4.053 1.776,-2.609 2.792,-5.495 2.792,-5.495 0,0 -0.768,5.204 0.759,4.625 1.525,-0.576 5.583,-0.291 5.332,-3.183 -0.257,-2.892 4.568,0.582 7.106,-4.337 2.538,-4.919 4.571,-2.604 4.314,-4.343 -0.253,-1.737 11.171,-25.171 17.012,-24.881 z"
id="path30" />
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 454.016,582.56 c 0,0 10.771,17.472 15.95,22.898 5.179,5.43 14.498,17.233 13.049,19.124 -1.451,1.888 -8.284,0 -12.014,-4.486 -3.733,-4.485 -18.639,-24.079 -19.677,-23.375 -1.035,0.713 1.035,7.323 4.557,12.747 3.521,5.43 14.085,23.846 11.182,25.971 -2.897,2.124 -14.082,-9.448 -17.809,-18.414 -3.728,-8.968 -5.598,-15.342 -6.631,-14.871 -1.032,0.471 -0.205,8.972 1.244,12.989 1.451,4.004 10.976,29.498 8.284,30.685 -2.689,1.175 -11.185,-8.022 -13.669,-15.815 -2.486,-7.797 -3.316,-25.494 -4.557,-25.734 -1.249,-0.233 -2.076,21.009 1.449,31.397 3.519,10.386 4.141,15.581 2.691,16.055 -1.448,0.468 -8.697,-3.536 -10.979,-16.291 -2.276,-12.747 -0.411,-24.077 0.416,-28.093 0.827,-4.009 -6.633,3.779 -4.146,22.189 2.484,18.413 3.311,21.721 1.865,22.194 -1.451,0.468 -4.763,-5.435 -7.46,-16.528 -2.692,-11.093 -1.237,-18.884 1.035,-26.438 2.281,-7.557 7.258,-22.899 10.568,-27.616 3.311,-4.722 12.431,-15.584 17.606,-8.27 5.178,7.32 7.046,9.682 7.046,9.682 z"
id="path32" />
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 351.147,569.724 c 0,0 -0.973,-1.95 -18.042,5.852 -17.07,7.803 -40.477,24.382 -39.017,28.289 1.466,3.896 19.508,-7.317 11.706,-1.469 -7.802,5.854 -19.996,27.804 -8.292,17.073 11.706,-10.73 19.996,-13.656 8.78,-4.877 -11.216,8.775 -14.632,21.944 -3.414,12.676 11.215,-9.262 17.557,-12.676 17.557,-12.676 0,0 -26.337,21.459 -15.606,22.429 10.728,0.976 18.042,-10.722 18.042,-10.722 0,0 -15.604,16.573 -13.166,18.53 2.438,1.944 20.48,-19.999 24.873,-27.799 4.389,-7.805 5.204,-38.104 16.42,-41.027 11.218,-2.926 0.159,-6.279 0.159,-6.279 z"
id="path34" />
<path
style="fill:#5d5e5e"
inkscape:connector-curvature="0"
d="m 390.215,576.928 c 0,0 -2.859,-8.572 0.359,-16.069 3.214,-7.503 -2.146,-11.789 -7.861,-10.007 -5.712,1.785 -17.279,9.727 -24.062,13.656 -6.787,3.933 -15.584,13.492 -18.801,18.496 -3.217,4.999 -10.357,13.928 -14.287,16.429 -3.93,2.501 1.429,2.145 6.43,-0.359 5,-2.498 -13.22,10.363 -1.787,4.648 0,0 14.289,-5.364 3.214,3.567 -11.073,8.929 -23.216,22.503 -15.716,20.008 7.5,-2.504 11.076,-5.718 11.076,-5.718 0,0 -17.507,16.435 -8.575,11.792 8.929,-4.648 18.573,-15.365 18.573,-15.365 0,0 1.072,-35.002 31.75,-56.561 6.331,-4.451 16.089,-15.128 16.089,6.896 -0.001,4.597 3.598,8.587 3.598,8.587 z"
id="path36" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:none;stroke-width:0.26458332"
d="m -39.923696,82.574371 c 0,0 12.641527,10.60555 30.8514754,-5.97377 0,0 5.432425,-2.27885 5.84782,-17.82074 1.841765,-7.78775 11.782425,-9.574744 11.782425,-9.574744"
id="path40" />
<text
style="font-size:3.17493105px;stroke-width:0.2645776"
y="92.050758"
x="-1.4328613"
transform="rotate(23.79145)"
id="text72">
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="-1.4328613"
y="92.050758"
font-size="28.4712"
id="tspan42">v</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="4.0896645"
y="91.751778"
font-size="28.4712"
rotate="-17.899"
id="tspan44">u</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="9.7405167"
y="89.557907"
font-size="28.4712"
rotate="-33.575001"
id="tspan46">e</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="13.747013"
y="86.640137"
font-size="28.4712"
rotate="-43.984001"
id="tspan48">l</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="16.443592"
y="83.920547"
font-size="28.4712"
rotate="-52.532001"
id="tspan50">o</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="19.385693"
y="79.860603"
font-size="28.4712"
rotate="-59.243999"
id="tspan52" />
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="21.243816"
y="76.659737"
font-size="28.4712"
rotate="-64.702003"
id="tspan54">d</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="23.819744"
y="70.971062"
font-size="28.4712"
rotate="-86.221001"
id="tspan56">e</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="23.831127"
y="65.870537"
font-size="28.4712"
rotate="-99.133003"
id="tspan58" />
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="23.152744"
y="62.14502"
font-size="28.4712"
rotate="-106.202"
id="tspan60">g</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="21.729847"
y="57.552742"
font-size="28.4712"
rotate="-111.186"
id="tspan62">r</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="20.448502"
y="54.310608"
font-size="28.4712"
rotate="-84.657997"
id="tspan64">u</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="21.187199"
y="49.631027"
font-size="28.4712"
rotate="-65.403"
id="tspan66">l</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="22.567234"
y="46.866989"
font-size="28.4712"
rotate="-53.778999"
id="tspan68">l</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="24.444149"
y="44.379166"
font-size="28.4712"
rotate="-43.183998"
id="tspan70">a</tspan>
</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

13
public/home/home/qUser.q Executable file
View File

@@ -0,0 +1,13 @@
/* c#host localhost*/
/* c#database #dbdata */
/* c#user #dbdata_user */
/* c#password #dbdata_pass */
select
nombre as "tag",
contenido as "uContent"
from casa;

5
public/home/pang/benjamin.md Executable file
View File

@@ -0,0 +1,5 @@
Instructor certificado en China por el Beijing Wisdom Healing Center, con más de 5 años de experiencia en el desarrollo de esta herramienta.
Benjamín ha vivido en carne propia los beneficios de esta ciencia al recuperarse totalmente de una enfermedad autoinmune, crónica, degenerativa e incurable.
Cuenta con alumnos en 8 países y una comunidad de practicantes enfocados en practicar más y mejor los métodos y lineamientos del ZhiNengQiGong.

70
public/home/pang/cssPang.css Executable file
View File

@@ -0,0 +1,70 @@
body{
background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
background-image:url("grulla_21.jpg");
background-position: right top;
}
section.spacer{ height:85vh; }
section.header{
background-color: rgba(51,51,51,0);
display: block;
padding: 45px 15px 0px;
}
h2.textHead{
background-color: #c22a39;
color: white;
text-align: center;
font-weight: bold;
margin: auto;
font-size: 2em;
padding: 2.5vh;
}
section.content{
justify-content: center;
-webkit-justify-content: center;
background-color: rgba(51,51,51,0);
padding: 40px 0px 0px 0px;
}
article.imageHead{
min-width:270px;
background-repeat: no-repeat;
background-size:contain;
background-position:center;
flex:1 1 270px;
flex-shrink:1;
max-width:500px;
margin:20px;
min-height:300px
}
article#apang{ background-image:url("img/maestro.png");}
article#ahel{ background-image:url("img/helen.png");}
article#aben{ background-image:url("img/ben.png");}
/* text column -------------------*/
article.text{
background-color: white;
overflow: auto;
min-width: 250px;
max-width:500px;
flex:3 2 250px;
flex-shrink:2;
margin:20px;
padding: 0px 30px;
height:70vh;
}
article.text > p{
color: #3d3d3d;
/*font-family: 'Lato', sans-serif;*/
font-size: 16px;
line-height: 1.8;
font-weight: 400;
text-align: justify;
}

12
public/home/pang/d3Tras.js vendored Executable file
View File

@@ -0,0 +1,12 @@
var h = d3.select('section#trs').node().getBoundingClientRect().top;
d3.select(window).on("scroll",function(){
var t = d3.select('#trs').node().getBoundingClientRect().top;
var trans= Math.min(Math.round(100*(h-t)/h)/100,0.98);
d3.selectAll('.trans').style("background-color","rgba(51,51,51,"+ trans +")");
});

BIN
public/home/pang/grulla_21.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 KiB

5
public/home/pang/helen.md Executable file
View File

@@ -0,0 +1,5 @@
Los maestros _Zhang Qing_ (Helen) y  _Qiu Fu Chun_ (Karl). Un ejemplo de congruencia. Personas sencillas, honestas, un verdadero ejemplo de mantenerse en un perfil modesto. Siempre desarrollando GongFu, Gracias a su calidad humana y su bello trabajo, en Vuelo de Grulla, podemos tener los mejores cimientos para ser practicantes que viven los beneficios de ZhiNeng QiGong.
Beijing Wisdom Healing Center se encuentra ubicado en Shichahai en el centro de Beijing, China.
[zhinengqigong.com](http://www.zhinengqigong.com)

31
public/home/pang/htmlPang.html Executable file
View File

@@ -0,0 +1,31 @@
<section class="spacer"></section>
<section id="trs" class="trans header">
<h2 class="textHead"> Nuestro querido maestro Pang He Ming </h3>
</section>
<section class=" trans content flex">
<article id="apang" class="imageHead"></article>
<article class="text">
<!-- ##pang.txt -->
</article>
</section>
<section id="trs" class="trans header">
<h2 class="textHead"> Los maestros Zhang Qing (Helen) y  Qiu Fu Chun (Karl). </h3>
</section>
<section class=" trans content flex">
<article id="ahel" class="imageHead"></article>
<article class="text">
<!-- ##helen.txt -->
</article>
</section>
<section id="trs" class="trans header">
<h2 class="textHead"> Instructor Benjamín Munñóz </h3>
</section>
<section class=" trans content flex">
<article id="aben" class="imageHead"></article>
<article class="text">
<!-- ##benjamin.txt -->
</article>
</section>

BIN
public/home/pang/img/ben.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 KiB

BIN
public/home/pang/img/helen.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 KiB

BIN
public/home/pang/img/maestro.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 KiB

21
public/home/pang/pang.md Executable file
View File

@@ -0,0 +1,21 @@
No existen palabras para describir la generosidad de este gran hombre por el cual sentimos un enorme respeto y admiración.
Gracias a su trabajo muchas personas hemos podido recuperar nuestra salud y acercarnos poco a poco a los sueños más hermosos de nuestra vida.
Queremos compartir aquí algunos de sus logros y hacer un homenaje a la raíz del ZhiNengQiGong al que muchos debemos tanto.
Pang He Ming (庞鹤鸣), también conocido como Pang Ming (庞明), es el creador de la ciencia de ZhiNeng QiGong y el fundador del Centro HuaXia ZhiNeng QiGong. Pang (庞) significa “de tamaño muy grande” o “enorme”. He (鹤) significa “grulla” y Ming (鸣) significa el sonido que hace una grulla al volar. Recibió este nombre de su abuela cuando nació.
El nombre, Pang Ming, se lo dio a sí mismo cuando alcanzó el éxito en su práctica de QiGong. Aquí, Ming (明) significa “mucha claridad”.
Pang He Ming nació el 26 de septiembre de 1940 en el condado DingXing de la provincia He Bei en China. En su infancia, recibió la influencia del QiGong tradicional, las artes marciales y la medicina china tradicional, se nutrió de estos en su ciudad natal y recibió mucha información por parte de practicantes de alto nivel.
En 1958 se graduó en Medicina Occidental de la Universidad Médica de Beijing y trabajó como médico en Beijing. Después de eso, comenzó a aprender artes marciales y QiGong con 19 maestros de manera regular. Al mismo tiempo, aprendió medicina china y se convirtió en un médico de grandes logros.
Antes de cumplir los 40 años, fue distinguido como el representante más joven de las 63 personas que asistieron a la primera Convención Nacional de Medicina China y Occidental en Beijing.
En 1979, el profesor Pang formó en Beijing la Sociedad de Investigación de QiGong de Beijing con algunos practicantes e investigadores de QiGong. En la primavera de 1981, anunció formalmente el ZhiNeng QiGong al público. Desde entonces, ha estado enseñando ZhiNeng QiGong en toda China, y sus enseñanzas se extienden a todo el mundo.
En 1988, fundó la Universidad de ZhiNeng QiGong de HeBei en Shi Jia Zhuang, que posteriormente se trasladó a Qin Huang Dao y cambió su nombre a Centro HuaXia de Investigación y Entrenamiento en ZhiNeng QiGong. Conforme la población estudiantil creció, el profesor Pang fundó el Centro HuaXia de Recuperación de ZhiNeng QiGong en Tang Shan.
El profesor Pang es el primer erudito que elevó el QiGong tradicional al nivel de ciencia de QiGong.

View File

@@ -0,0 +1,64 @@
section.title{
background: #C22A39;
min-height: 45vh;
padding-top:60px;
}
p.title{
font-size: 4em;
width: 100%;
text-align: center;
color: white;
margin: auto;
padding-top: 10vh;
padding-bottom:30px;
}
section.frame{
width: 100%;
background-color: #333333;
padding: 50px 0px;
text-align: center;
}
article.sframe{
width:100%;
}
p.subtitle {
font-size: 1em;
color: white;
max-width: 600px;
text-align: justify;
margin: auto 15px;
}
#audioframe {
min-width: 300px;
width:50%;
height: 100%;
min-height: 200px;
margin: 50px auto;
}
section.pcontent{
justify-content: center;
-webkit-justify-content: center;
}
article.pcontent{
min-width: 34%;
padding: 20px 30px;
}
p.ctitle{
font-size:1em;
text-align:center;
color:#D00000;
cursor:pointer;
}
p.ccontent{
text-align:center;
font-size:0.9em;
text-align:justify;
color:black;
max-width:400px;
}

BIN
public/home/podcast/grulla.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,18 @@
var sources;
d3.json( "home/podcast/jsonPod.json",function(d){
d3.select("#audioframe").attr("src",d[0].source);
sources=d;
});
d3.selectAll("p.ctitle").on('click', function(){
var this_id=d3.select(this).attr("value");
sources.forEach(function (d){
if(d.id == this_id){
d3.select("#audioframe").attr("src",d.source);
window.scroll(0,
d3.select("#sframe").node().getBoundingClientRect().top -
d3.select("#stitle").node().getBoundingClientRect().top
);
}
});
});

100
public/home/podcast/jsonPod.json Executable file
View File

@@ -0,0 +1,100 @@
[
{
"tag":"podcast",
"id":"1",
"ptitle":"1. ZuChangFa - Las 8 frases explicadas",
"ptext":"Método de ZhiNeng QiGong para la Orgnanización del Campo",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/221858279&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"2",
"ptitle":"2. Dian Tian Li Di - Las 8 frases con música",
"ptext":"Método de ZhiNeng QiGong para la Organización del Campo, música con letra original compuesta por el maestro Pang He Ming.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/224314693&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"3",
"ptitle":"3. Din Tian Li Di - Grabación original del centro Huaxia (Chino)",
"ptext":"Método de ZhiNeng QiGong para la Organización del Campo. Con música y letra original compuesta por el maestro Pang He Ming, grabación original del Centro Huaxia (hospital más grande del mundo sin medicamentos).",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/224980950&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"4",
"ptitle":"4. La Teoría del HunYuan - ZhiNeng QiGong",
"ptext":"Este Podcast que contiene una mirada de los fundamentos teóricos de ZhiNeng QiGong. Con base en esta teoría, buscamos profundizar posteriormente en algunos conceptos muy importantes.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/226460492&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"5",
"ptitle":"5. Yi Yuan Ti - ZhiNeng QiGong",
"ptext":"Analizamos el recurso más importante que tiene el ser humano para transformarse a sí mismo: su propia mente.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/227191181&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"6",
"ptitle":"6. Explicación de HunHua - ZhiNeng QiGong",
"ptext":"En esta sexta entrega hablamos sobre el fenómeno de HunHua, como parte fundamental de la teoría de ZhiNeng QiGong.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/228450367&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"7",
"ptitle":"7. HunYuan LingTong - ZhiNeng QiGong",
"ptext":"La explicación de un concepto central de ZhiNeng QiGong, lleno de sabiduría y compromiso con nosotros mismos, con HunYuan LingTong TODO es posible.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/230195055&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"8",
"ptitle":"8. De Gao Qi Chun ( El cambio verdadero) - ZhiNeng QiGong",
"ptext":"De Gao Qi Chun, un concepto muy profundo que nos lleva al cambio verdadero. Alcanzar la más alta moral es llegar a un nivel congruencia y de respeto...",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/231667352&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"9",
"ptitle":"9. Mantener la mente simple",
"ptext":"Algunas recomendaciones para ayudarnos a mantener la mente simple.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/233739996&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"10",
"ptitle":"10. Amor al paso y al cambio.",
"ptext":"Estudiamos la necesidad de amar cada paso que damos para acercarnos a cumplir nuestros más bellos sueños y exploramos la importancia de aprender de los cambios que ocurren en nuestro camino.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/239091582&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"11",
"ptitle":"11. Cómo mejorar nuestra concentración - YiShou, DingLi",
"ptext":"¿Cómo puedo concentrarme mejor? En esta entrega de Podcast, abordamos dos conceptos que nos ayudan a mejorar nuestro enfoque y nuestra capacidad de concentración.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/244060912&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"12",
"ptitle":"12. Admira el GongFu",
"ptext":"De los campeones debemos admirar el gran esfuerzo que han realizado para lograr sus objetivos. Porque triunfan sólo cuando se convierten en la mejor versión de sí mismos, cuando recorren miles de veces el camino que los lleva a lograr lo que en verdad quieren.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/246592916&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"13",
"ptitle":"13. La voluntad",
"ptext":"Cuando analizamos qué tan lejos estamos de donde queremos llegar, nos damos cuenta de que es muy importante desarrollar una fuerza de voluntad indomable para lograr nuestros más bellos sueños...",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/250019055&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
},
{
"tag":"podcast",
"id":"14",
"ptitle":"14. El Aprendiz de Mago (Oropel)",
"ptext":"En esta 14a entrega del Podcast de ZhiNeng QiGong, contamos una historia diseñada por nuestro amigo Fernando Filippis, un instructor argentino que ha creado un relato muy bello con un mensaje increíble.",
"source":"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/263699943&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"
}
]

1
public/home/podcast/text.txt Executable file
View File

@@ -0,0 +1 @@
Hemos desarrollado con mucho cariño ejercicios gratuitos y descargables que pueden ser practicados por cualquier persona aún antes de asistir a uno de los cursos de instrucción.

132
public/home/radio/cssRadio.css Executable file
View File

@@ -0,0 +1,132 @@
section.title{
background-color: #C22A39;
height:35vh;
min-height:360px;
padding-top:60px;
justify-content:center;
-webkit-justify-content:center;
}
article.title p{
font-size: 4em;
width: 100%;
text-align: center;
color: white;
margin: auto;
padding-top: 35px;
}
section.uname{
background-color: #C22A39;
}
article.uname> p{
font-size: 2em;
width: 100%;
text-align: center;
color: white;
margin: auto auto 20px 10px;
}
section.rmod{
width:100%;
background-color: #C22A39;
padding 10px;
}
article.rmod{
flex:1 1 250px;
margin:30px;
}
p#rmod{
font-size: 1em;
color: white;
text-align: left;
margin:10px 40px 50px;
max-width:440px;
}
section.logout{
width:100%;
background-color: #C22A39;
}
article.logout{
flex:1 1 100px;
margin:2px;
}
p#logout{
font-size: 1em;
color: white;
text-align: right;
margin:-10px 50px 10px;
}
section.info,
section.radio,
section.chat{
width:100%;
background-color: #333333;
padding 10px;
justify-content:center;
-webkit-justify-content:center;
}
section.info{
padding:50px 20px;
}
article.online,
article.offline
{
flex:5 1 300px;
font-size: 1.5em;
color: white;
max-width:340px;
}
article.spot{
text-align:center;
font-size: 1em;
color: white;
max-width:300px;
flex:1 1 280px;
}
div.spot{
display:inline-block;
background-color:red;
padding:15px;
border-radius:15px;
}
div.chat{
background-color: #C22A39;
padding:20px 0px;
margin:15px 0px;
border-radius:5px;
min-width:200px;
}
div.chat:hover{
font-size:1.2em;
padding:22px 3px;
margin:13px -3px;
cursor:pointer;
}
article.radio{
margin:30px;
background-color:black;
width:80vw;
}
p#now{
color:white;
text-align:center;
}
#ra{
width:100%;
margin:10px 0px;
}
article.online{
}
article.offline{
}
.show{
display:block;
}
.hide{
display:none;
}

20
public/home/radio/jsLink.js Executable file
View File

@@ -0,0 +1,20 @@
d3.select("#clink").on("click",function(){
var newWindow = window.open('ext/candy','_blank');
});
checkChat();
function checkChat(){
d3.json("json/candy/candy_loader/candyInterface.pl&v=isOn",function(d){
if(d != undefined){
if (d.a==1) { d3.select("#clink").style("visibility","visible");}
else if (d.a==0) { d3.select("#clink").style("visibility","hidden");}
}
else {
d3.select("#clink").style("visibility","hidden");
console.error("json/candy/candy_loader/candyInterface.pl&v=isOn");}
d3.select("#clink").transition().on("end",checkChat).delay(30000);
});
}

89
public/home/radio/jsRadio.js Executable file
View File

@@ -0,0 +1,89 @@
var vid = document.getElementById("ra");
//defined by html template
// var radio_server=rs;
// var listen_url=lis;
// var channel=chan;
vid.autoplay=true;
window.onload = function(){
radioUpdate();
function radioUpdate(){
d3.json(radio_server +"/status-json.xsl")
.timeout(10000)
.get(function(e,d){
if(e !=undefined){
console.warn("sin conxion");
offline();}
else{
if(d.icestats.source!=undefined){
if(d.icestats.source.listenurl == listen_url){
console.log("transmitiendo");
online(d); }
else {
console.warn("otro canal");
offline(); }}
else {
console.warn("fuera de línea");
offline();
}
} }); };
function dataUpdate(){
d3.json(radio_server+"/status-json.xsl")
.timeout(10000)
.get(function(e,d){
if(e !=undefined){ console.warn("sin datos radio"); }
else{
if(d.icestats.source!=undefined){
if(d.icestats.source.listenurl == listen_url ){
d3.select("#now").text(d.icestats.source.title);
}}}
d3.select("#ra").transition().on("end",dataUpdate).delay(60000);
});
};
function offline(){
d3.selectAll("article.offline").style("display","block");
d3.selectAll("article.online").style("display","none");
d3.select("#spot").style("background-color","red");
d3.select("#now").text("");
console.log("desconectado");
d3.select("#ra").transition().on("end",radioUpdate).delay(90000);
};
function online(d){
d3.select("#spot").style("background-color","green");
d3.select("#prof").text(d.icestats.source.server_name);
d3.select("#now").text(d.icestats.source.title);
d3.selectAll("article.online").style("display","block");
d3.selectAll("article.offline").style("display","none");
vid.src=radio_server+channel;
vid.load();
console.log("conectado");
dataUpdate();
}
function cerr(e){ console.warn("stream "+ e);
vid.pause();
d3.select("#ra").transition()
.on("end",function(){ vid.play(); })
.delay(1000);
};
function err(e){
console.warn("stream "+e);
d3.select("#ra").transition().on("end",radioUpdate).delay(5000);
}
// if error try reloading
vid.onerror=function(e){ err("error")};
vid.onended=function(){ err("end")};
//vid.onstalled=function(){ cerr("st")};
vid.onemptied=function(){ cerr("empty")};
//vid.onsuspend=function(){ cerr("sus")};
vid.onabort=function(){ err("abort")};
}

52
public/home/store/cssShop.css Executable file
View File

@@ -0,0 +1,52 @@
article.heading{
width:100%;
height:55vh;
min-height:350px;
display: inline-block;
background-color: #333333;
text-align: center;
margin-top: 50px;
}
p.heading{
font-size:5em;
color:white;
color: white;
margin: 20vh auto auto auto;
}
article.shop{
justify-content:center;
-webkit-justify-content:center;
margin-top: 40px;
}
div.simage{
flex:3;
max-width:350px;
transition: .5s ease;
}
div.simage:hover{
transform:scale(1.2,1.2);
}
div.simage > img{
max-width:70%;
max-height:100%;
margin:auto;
display:block;
}
div.description{
flex:2;
max-width:250px;
}
p.description{ font-size:0.8em; }
p.title{font-weight:bold;}
p.promo{font-weight:bold; color:#C22A39;}
article.separator{
background-repeat: no-repeat;
background-image: url(" #path img/separa.jpg");
height: 20px;
background-size: contain;
background-position: center;
margin-top:30px;
}

BIN
public/home/store/img/libreta.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
public/home/store/img/libro.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
public/home/store/img/mapa.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
public/home/store/img/momo.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

BIN
public/home/store/img/playera.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

BIN
public/home/store/img/separa.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

10
public/home/store/qStore.q Executable file
View File

@@ -0,0 +1,10 @@
select
nombre as "titulo",
descripcion as "descripcion",
precio as "precio",
opcion as "opciones",
promocion as "promocion",
imagen as "imagen"
from tienda where precio >= -1;

0
public/home/tst/tst.css Normal file
View File

31
public/home/tv/cssHead.css Executable file
View File

@@ -0,0 +1,31 @@
body{
background-repeat: no-repeat;
background-attachment: fixed;
background-position:right top;
background-size:cover;
background-image:url("grulla_31.jpg");
}
#ihead{
width:100%;
height:100vh;
}
#courtain{ background-color:black; background-size:cover; }
article.mod{
position:fixed;
right:10px;
z-index:0;
max-width:500px;
padding:5px 5%;
min-width:250px;
}
p.mod{
color:black;
font-weight:bold;
font-size:1.5em;
background-color:rgba(145,145,145,0.2);
}

100
public/home/tv/cssTv.css Executable file
View File

@@ -0,0 +1,100 @@
section.grid{
background-color: black;
position:relative;
margin: 0px;
padding-top:100px;
font-family: trade-gothic,sans-serif;
}
section.yt{
width:80%;
max-height:600px;
height:80vw;
background-color:black;
margin: 20px auto;
padding: 5px 20px;
}
iframe#evideo{
width:100%;
height:100%;
}
section.col{
margin: 50px auto 0px;
align-items:flex-start;
-webkit-align-items:flex-start;
justify-content:space-around;
-webkit-justify-content:space-around;
background-color:#333333;
}
article.facefeed{
flex:1 3 300px;
min-width:300px;
max-width:700px;
background-color: #8d8d8e;
text-align:center;
padding:5px;
}
@media(min-width:400px){
iframe.facefeed{
width:400px;
height:600px; /* same as url height */
}}
@media(max-width:400px){
iframe.facefeed{
width:280px;
height:450px; /* same as url height */
overflow:auto;
}}
iframe.facefeed{
vertical-align: top;
border:none;
overflow:hidden;
}
article.series{
flex:1 1 180px;
min-width:180px;
margin:20px 10px;
color:white;
text-align:center;
}
article.series >ul{
list-style: none;
}
li.series{
margin:5px;
font-size:1.5em;
margin:15px 10px;
color:white;
background-color:#C22A39;
background-color: #C22A39;
border-radius: 8px;
}
li.series{ cursor:pointer; }
article.chap{
flex:2 1 300px;
min-width:300px;
margin:20px 10px;
color:white;
text-align:left;
}
article.chap > ul{
list-style: none;
transition: 0.5s;
}
li.chap{
margin:5px;
font-size:1.2em;
margin:15px 10px;
color:white;
display:none;
}
li.chap:hover{
cursor:pointer;
transform:scale(1.1,1.1);
}

14
public/home/tv/d3Tune.js vendored Executable file
View File

@@ -0,0 +1,14 @@
var def = d3.select("li.series").attr("value")
d3.selectAll("li."+def).style("display","block");
d3.selectAll("li.chap").on("click",function(){
var link = d3.select(this).attr("value");
d3.select("#evideo").attr("src","https://www.youtube.com/embed/"+link);
});
d3.selectAll("li.series").on("click",function(){
var group = d3.select(this).attr("value");
d3.selectAll("li.chap").style("display","none");
d3.selectAll("li."+group).style("display","block");
});

BIN
public/home/tv/grulla_31.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

6
public/home/tv/qSeries.q Executable file
View File

@@ -0,0 +1,6 @@
select distinct
replace(grupo,' ','_' ) as "group",
grupo as "name"
from tv where permiso = 1
order by orden;

17
public/home/tv/qTable.q Executable file
View File

@@ -0,0 +1,17 @@
/* c#host localhost*/
/* c#database #dbdata */
/* c#user #dbdata_user */
/* c#password #dbdata_pass */
select
"table" as "tag",
nombre as "name",
vinculo as "link",
orden as "order",
replace(grupo,' ','_' ) as "group"
from tv where permiso = 1
order by orden;

View File

@@ -0,0 +1,31 @@
section.trans{
background-color: gray;
width: 100%;
justify-content: center;
-webkit-justify-content: center;
position:relative;
padding: 0px 0px 10px 0px;
margin-bottom:0px;
z-index: 2;
}
article.vdg{
background-repeat: no-repeat;
background-size: contain;
background-position: center;
background-image:url(vdg.svg);
padding: 0px 20px;
margin: 10px 1% 10px 3%;
display: inline;
flex: 1;
max-width:25%;
min-height:150px;
position:relative;
}
article.trans{
text-align: center;
flex:3;
max-width:50%;
}
article.trans > p.bold{ font-size: 2em }
article.trans > p.light{ font-size: 1em }
article.trans > p.superlight{ font-size: 0.5em }

11
public/home/tv/trans/d3Tras.js vendored Executable file
View File

@@ -0,0 +1,11 @@
var h=window.innerHeight;
d3.select(window).on("scroll",function(){
var t = d3.select('#trs').node().getBoundingClientRect().top;
var trans= -0.2 + Math.round(100*(h-t)/h)/100;
d3.select('.grid').style("background-color","rgba(0,0,0,"+ trans +")");
});

241
public/home/tv/trans/vdg.svg Executable file
View File

@@ -0,0 +1,241 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="68.126854mm"
height="46.285229mm"
viewBox="0 0 68.126852 46.285229"
version="1.1"
id="svg3905"
inkscape:version="0.92.0 r"
sodipodi:docname="vdg.svg">
<defs
id="defs3899" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="127.99918"
inkscape:cy="-236.98707"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="786"
inkscape:window-height="779"
inkscape:window-x="841"
inkscape:window-y="83"
inkscape:window-maximized="0" />
<metadata
id="metadata3902">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(59.56883,-39.845277)">
<g
transform="matrix(0.26458333,0,0,0.26458333,-137.0009,-97.552643)"
id="g38">
<g
id="g12">
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 353.678,646.205 c 0,0 -0.646,0.273 -1.775,0.754 -0.555,0.267 -1.285,0.447 -2.103,0.716 -0.815,0.291 -1.768,0.466 -2.798,0.702 -2.066,0.439 -4.52,0.729 -7.148,0.848 -1.312,0.077 -2.668,0.157 -4.047,0.238 -1.375,0.096 -2.772,0.211 -4.165,0.361 -1.395,0.131 -2.783,0.309 -4.147,0.488 -1.361,0.194 -2.704,0.37 -3.987,0.63 -1.292,0.21 -2.522,0.498 -3.693,0.758 -1.169,0.264 -2.251,0.604 -3.267,0.86 -1.005,0.291 -1.903,0.632 -2.718,0.882 -0.819,0.239 -1.49,0.562 -2.065,0.771 -1.145,0.443 -1.797,0.696 -1.797,0.696 l -0.023,-0.047 c 0,0 0.633,-0.305 1.739,-0.837 0.558,-0.258 1.222,-0.607 2.028,-0.896 0.801,-0.304 1.699,-0.671 2.701,-1 1.014,-0.293 2.096,-0.678 3.277,-0.94 1.181,-0.263 2.417,-0.59 3.725,-0.773 1.299,-0.234 2.652,-0.396 4.027,-0.553 1.377,-0.125 2.776,-0.246 4.178,-0.321 2.802,-0.148 5.602,-0.293 8.211,-0.594 1.309,-0.125 2.561,-0.326 3.754,-0.462 1.184,-0.188 2.311,-0.324 3.337,-0.525 1.023,-0.213 1.972,-0.376 2.784,-0.61 0.82,-0.219 1.544,-0.376 2.121,-0.592 1.166,-0.384 1.832,-0.603 1.832,-0.603 z"
id="path10" />
</g>
<g
id="g16">
<path
style="fill:#343433"
inkscape:connector-curvature="0"
d="m 426.087,564.474 c 0,0 -1.899,0.331 -4.726,0.94 -2.825,0.615 -6.577,1.504 -10.274,2.584 -1.851,0.536 -3.677,1.146 -5.387,1.72 -0.848,0.308 -1.667,0.604 -2.444,0.886 -0.77,0.301 -1.497,0.586 -2.169,0.849 -1.322,0.574 -2.422,1.063 -3.166,1.458 -0.753,0.379 -1.184,0.596 -1.184,0.596 l -0.018,-0.029 c 0,0 0.417,-0.244 1.146,-0.671 0.364,-0.214 0.804,-0.481 1.34,-0.726 0.531,-0.254 1.122,-0.559 1.782,-0.858 0.666,-0.286 1.388,-0.595 2.151,-0.923 0.773,-0.301 1.598,-0.597 2.45,-0.904 1.713,-0.588 3.561,-1.151 5.423,-1.661 3.721,-1.03 7.486,-1.88 10.325,-2.438 2.838,-0.559 4.744,-0.855 4.744,-0.855 z"
id="path14" />
</g>
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 491.789,524.927 17.048,1.295 c 0,0 2.849,0.122 -0.316,0.698 l -8.556,0.634 c -3.473,-0.129 -6.701,0.98 -6.701,0.98 l 10.971,3.778 c 2.387,0.642 2.604,1.27 2.604,1.27 l -6.502,-0.938 c -6.245,-1.497 -10.54,0.579 -10.54,0.579 0,0 -2.786,1.069 -6.621,1.628 -3.836,0.557 -16.917,4.592 -19.776,8.917 -2.86,4.329 -6.14,14.094 -9.089,17.487 -2.945,3.394 -8.475,8.803 -10.209,8.403 0,0 7.842,-4.879 10.414,-11.384 2.567,-6.502 1.312,-14.806 3.845,-18.328 2.529,-3.521 4.432,-4.123 6.85,-4.941 2.418,-0.821 13.083,0.556 16.568,-2.706 2.507,-2.351 4.331,-4.136 5.15,-5.147 0.319,-0.396 -1.569,-0.87 -1.307,-1.366 0.231,-0.431 1.865,-0.046 1.95,-0.542 0.257,-1.482 0.24,-2.929 2.282,-2.572 z"
id="path18" />
<path
style="fill:#c22a39"
inkscape:connector-curvature="0"
d="m 487.363,521.408 c 0,0 -5.358,-3.967 -10.405,-1.019 -5.048,2.954 -5.364,5.621 -5.384,7.914 -0.021,2.295 6.147,-0.023 8.335,-1.461 2.188,-1.433 7.435,-3.144 7.454,-5.434 z"
id="path20" />
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 472.583,524.67 c 0,0 -8.632,1.831 -11.21,6.673 0,0 0.325,-1.001 5.672,-1.514 5.348,-0.514 7.332,1.026 9.12,-1.232 0,0 -5.658,1.779 -3.582,-3.927 z"
id="path22" />
<g
id="g26">
<path
style="fill:#343433"
inkscape:connector-curvature="0"
d="m 460.722,531.438 c 0,0 -0.235,0.275 -0.647,0.758 -0.401,0.49 -0.975,1.19 -1.663,2.03 -0.328,0.433 -0.683,0.902 -1.059,1.398 -0.36,0.506 -0.804,0.997 -1.148,1.581 -0.362,0.572 -0.736,1.164 -1.116,1.765 -0.37,0.607 -0.697,1.261 -1.099,1.866 -1.557,2.449 -3.345,4.754 -4.886,6.296 -0.385,0.386 -0.749,0.728 -1.086,1.017 -0.342,0.281 -0.637,0.533 -0.911,0.695 -0.522,0.366 -0.884,0.466 -0.873,0.484 l -0.006,-0.016 c -0.012,-0.019 0.342,-0.132 0.846,-0.518 0.263,-0.174 0.549,-0.433 0.883,-0.717 0.328,-0.294 0.683,-0.642 1.057,-1.033 1.474,-1.588 3.303,-3.843 4.86,-6.282 0.405,-0.6 0.734,-1.243 1.11,-1.85 0.388,-0.601 0.77,-1.192 1.139,-1.765 0.353,-0.583 0.798,-1.071 1.166,-1.574 0.382,-0.491 0.743,-0.957 1.076,-1.386 0.698,-0.833 1.281,-1.527 1.688,-2.013 0.417,-0.478 0.655,-0.75 0.655,-0.75 z"
id="path24" />
</g>
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 421.807,603.762 c 0,0 -6.052,53.483 -11.03,53.483 -4.244,0 7.779,-56.43 7.779,-56.43 0,0 -13.475,61.904 -16.623,59.651 -3.14,-2.244 13.32,-59.329 13.32,-59.329 0,0 -15.792,58.126 -20.393,58.525 -2.896,0.257 15.154,-58.525 15.154,-58.525 0,0 -18.282,58.873 -21.168,58.126 -2.88,-0.756 15.143,-52.126 15.143,-52.126 0,0 -17.473,52.012 -20.088,50.507 -2.623,-1.494 14.847,-49.386 14.847,-49.386 0,0 -15.768,48.438 -18.383,46.57 -2.623,-1.882 11.835,-44.694 11.835,-44.694 0,0 -11.972,43.426 -15.371,42.679 -3.41,-0.75 10.387,-41.926 10.387,-41.926 0,0 -11.401,39.878 -14.281,39.508 -2.884,-0.377 7.408,-31.198 7.408,-31.198 0,0 -7.8,29.943 -10.68,30.319 -2.883,0.38 8.926,-35.543 8.926,-35.543 0,0 -9.71,34.42 -12.853,34.796 -3.148,0.371 7.5,-31.026 7.5,-31.026 0,0 -8.121,30.462 -11.264,28.218 -3.143,-2.253 7.141,-30.22 7.141,-30.22 0,0 -9.279,28.252 -11.033,27.396 -2.476,-1.212 5.295,-25.123 5.295,-25.123 0,0 -7.797,26.592 -9.893,24.715 -2.096,-1.864 4.648,-17.965 4.648,-17.965 0,0 -5.965,16.034 -7.83,13.938 l 1.279,-11.315 14.652,-11.646 41.586,-14.734 16.084,-5.495 z"
id="path28" />
<path
style="fill:#5d5e5e"
inkscape:connector-curvature="0"
d="m 442.538,570.685 c 0,0 -13.971,-4.42 -27.313,8.556 -13.993,13.605 -2.056,2.817 -15.639,14.543 -8.406,7.255 -25.226,13.782 -33.354,17.835 -8.121,4.049 -22.188,7.671 -23.207,14.617 -1.012,6.941 3.557,5.789 0,9.26 0,0 1.019,2.31 3.557,0.579 2.537,-1.74 3.807,-3.474 3.553,-6.662 -0.254,-3.177 -0.508,-2.601 4.822,-2.31 5.333,0.285 10.154,1.158 10.408,-4.916 0,0 0,4.625 2.539,0.285 2.537,-4.335 1.266,-11.863 8.375,-13.594 7.109,-1.74 5.332,-3.188 5.332,-3.188 0,0 -5.837,4.919 -8.375,7.525 -2.538,2.604 -1.776,5.207 -1.271,6.947 0.508,1.73 2.794,-3.474 3.81,-5.498 1.016,-2.031 -0.508,7.229 1.016,6.943 1.522,-0.294 2.284,-6.943 3.553,-7.234 1.269,-0.294 -1.773,5.495 1.773,4.049 3.56,-1.448 0.257,-3.473 2.033,-4.049 1.78,-0.579 0.762,4.049 1.526,2.601 0.758,-1.449 1.012,-3.18 2.03,-3.474 1.015,-0.285 0.508,4.637 1.52,2.318 1.019,-2.318 1.525,-4.628 1.525,-4.628 0,0 0.254,4.628 1.523,4.628 1.269,0 2.541,-2.895 2.541,-6.071 0,-3.188 -1.272,2.308 2.538,2.308 3.807,0 4.819,-2.892 5.834,-7.809 0,0 0.254,6.656 2.036,4.053 1.776,-2.609 2.792,-5.495 2.792,-5.495 0,0 -0.768,5.204 0.759,4.625 1.525,-0.576 5.583,-0.291 5.332,-3.183 -0.257,-2.892 4.568,0.582 7.106,-4.337 2.538,-4.919 4.571,-2.604 4.314,-4.343 -0.253,-1.737 11.171,-25.171 17.012,-24.881 z"
id="path30" />
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 454.016,582.56 c 0,0 10.771,17.472 15.95,22.898 5.179,5.43 14.498,17.233 13.049,19.124 -1.451,1.888 -8.284,0 -12.014,-4.486 -3.733,-4.485 -18.639,-24.079 -19.677,-23.375 -1.035,0.713 1.035,7.323 4.557,12.747 3.521,5.43 14.085,23.846 11.182,25.971 -2.897,2.124 -14.082,-9.448 -17.809,-18.414 -3.728,-8.968 -5.598,-15.342 -6.631,-14.871 -1.032,0.471 -0.205,8.972 1.244,12.989 1.451,4.004 10.976,29.498 8.284,30.685 -2.689,1.175 -11.185,-8.022 -13.669,-15.815 -2.486,-7.797 -3.316,-25.494 -4.557,-25.734 -1.249,-0.233 -2.076,21.009 1.449,31.397 3.519,10.386 4.141,15.581 2.691,16.055 -1.448,0.468 -8.697,-3.536 -10.979,-16.291 -2.276,-12.747 -0.411,-24.077 0.416,-28.093 0.827,-4.009 -6.633,3.779 -4.146,22.189 2.484,18.413 3.311,21.721 1.865,22.194 -1.451,0.468 -4.763,-5.435 -7.46,-16.528 -2.692,-11.093 -1.237,-18.884 1.035,-26.438 2.281,-7.557 7.258,-22.899 10.568,-27.616 3.311,-4.722 12.431,-15.584 17.606,-8.27 5.178,7.32 7.046,9.682 7.046,9.682 z"
id="path32" />
<path
style="fill:#010101"
inkscape:connector-curvature="0"
d="m 351.147,569.724 c 0,0 -0.973,-1.95 -18.042,5.852 -17.07,7.803 -40.477,24.382 -39.017,28.289 1.466,3.896 19.508,-7.317 11.706,-1.469 -7.802,5.854 -19.996,27.804 -8.292,17.073 11.706,-10.73 19.996,-13.656 8.78,-4.877 -11.216,8.775 -14.632,21.944 -3.414,12.676 11.215,-9.262 17.557,-12.676 17.557,-12.676 0,0 -26.337,21.459 -15.606,22.429 10.728,0.976 18.042,-10.722 18.042,-10.722 0,0 -15.604,16.573 -13.166,18.53 2.438,1.944 20.48,-19.999 24.873,-27.799 4.389,-7.805 5.204,-38.104 16.42,-41.027 11.218,-2.926 0.159,-6.279 0.159,-6.279 z"
id="path34" />
<path
style="fill:#5d5e5e"
inkscape:connector-curvature="0"
d="m 390.215,576.928 c 0,0 -2.859,-8.572 0.359,-16.069 3.214,-7.503 -2.146,-11.789 -7.861,-10.007 -5.712,1.785 -17.279,9.727 -24.062,13.656 -6.787,3.933 -15.584,13.492 -18.801,18.496 -3.217,4.999 -10.357,13.928 -14.287,16.429 -3.93,2.501 1.429,2.145 6.43,-0.359 5,-2.498 -13.22,10.363 -1.787,4.648 0,0 14.289,-5.364 3.214,3.567 -11.073,8.929 -23.216,22.503 -15.716,20.008 7.5,-2.504 11.076,-5.718 11.076,-5.718 0,0 -17.507,16.435 -8.575,11.792 8.929,-4.648 18.573,-15.365 18.573,-15.365 0,0 1.072,-35.002 31.75,-56.561 6.331,-4.451 16.089,-15.128 16.089,6.896 -0.001,4.597 3.598,8.587 3.598,8.587 z"
id="path36" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:none;stroke-width:0.26458332"
d="m -39.923696,82.574371 c 0,0 12.641527,10.60555 30.8514754,-5.97377 0,0 5.432425,-2.27885 5.84782,-17.82074 1.841765,-7.78775 11.782425,-9.574744 11.782425,-9.574744"
id="path40" />
<text
style="font-size:3.17493105px;stroke-width:0.2645776"
y="92.050758"
x="-1.4328613"
transform="rotate(23.79145)"
id="text72">
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="-1.4328613"
y="92.050758"
font-size="28.4712"
id="tspan42">v</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="4.0896645"
y="91.751778"
font-size="28.4712"
rotate="-17.899"
id="tspan44">u</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="9.7405167"
y="89.557907"
font-size="28.4712"
rotate="-33.575001"
id="tspan46">e</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="13.747013"
y="86.640137"
font-size="28.4712"
rotate="-43.984001"
id="tspan48">l</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="16.443592"
y="83.920547"
font-size="28.4712"
rotate="-52.532001"
id="tspan50">o</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="19.385693"
y="79.860603"
font-size="28.4712"
rotate="-59.243999"
id="tspan52" />
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="21.243816"
y="76.659737"
font-size="28.4712"
rotate="-64.702003"
id="tspan54">d</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="23.819744"
y="70.971062"
font-size="28.4712"
rotate="-86.221001"
id="tspan56">e</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="23.831127"
y="65.870537"
font-size="28.4712"
rotate="-99.133003"
id="tspan58" />
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="23.152744"
y="62.14502"
font-size="28.4712"
rotate="-106.202"
id="tspan60">g</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="21.729847"
y="57.552742"
font-size="28.4712"
rotate="-111.186"
id="tspan62">r</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="20.448502"
y="54.310608"
font-size="28.4712"
rotate="-84.657997"
id="tspan64">u</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="21.187199"
y="49.631027"
font-size="28.4712"
rotate="-65.403"
id="tspan66">l</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="22.567234"
y="46.866989"
font-size="28.4712"
rotate="-53.778999"
id="tspan68">l</tspan>
<tspan
style="font-size:7.53284168px;font-family:Marion-Regular;fill:#010101;stroke-width:0.2645776"
x="24.444149"
y="44.379166"
font-size="28.4712"
rotate="-43.183998"
id="tspan70">a</tspan>
</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB