summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2014-07-24 00:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2014-07-24 00:26:38 +0000
commit9a26239bb835d2d9687c04ad307901a40ddf45e1 (patch)
tree7232afe4ae2abed0d8f67f3361da471fa446a9cd
initial commit
-rw-r--r--.gitignore1
-rw-r--r--arch.pngbin0 -> 575 bytes
-rw-r--r--dir.pngbin0 -> 652 bytes
-rw-r--r--file.pngbin0 -> 622 bytes
-rw-r--r--index.php123
-rw-r--r--iso.pngbin0 -> 1066 bytes
-rw-r--r--para.pngbin0 -> 1150 bytes
-rw-r--r--parent.pngbin0 -> 672 bytes
-rw-r--r--pkg.pngbin0 -> 831 bytes
-rw-r--r--pkg.svg1063
-rw-r--r--repo.pngbin0 -> 768 bytes
-rw-r--r--style.css52
-rw-r--r--tar.pngbin0 -> 679 bytes
-rw-r--r--tar.svg1039
-rw-r--r--torrent.pngbin0 -> 890 bytes
-rw-r--r--txt.pngbin0 -> 683 bytes
16 files changed, 2278 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b25c15b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*~
diff --git a/arch.png b/arch.png
new file mode 100644
index 0000000..55497b8
--- /dev/null
+++ b/arch.png
Binary files differ
diff --git a/dir.png b/dir.png
new file mode 100644
index 0000000..3da2ca9
--- /dev/null
+++ b/dir.png
Binary files differ
diff --git a/file.png b/file.png
new file mode 100644
index 0000000..222832a
--- /dev/null
+++ b/file.png
Binary files differ
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..95a8af1
--- /dev/null
+++ b/index.php
@@ -0,0 +1,123 @@
+<?php
+$repos_arch_project = [ 'core', 'extra', 'staging', 'testing', 'gnome-unstable', 'kde-unstable' ];
+$repos_arch_community = [ 'community', 'community-staging', 'community-testing',
+ 'multilib', 'multilib-staging', 'multilib-testing' ];
+$repos_para_project = [ 'libre', 'libre-testing',
+ 'libre-multilib', 'libre-multilib-testing' ];
+$repos_para_community = [ 'cross', 'java', 'kernels', 'nonprism', 'pcr' ];
+
+$assetdir = dirname($_SERVER["SCRIPT_NAME"]);
+$root = $_SERVER["DOCUMENT_ROOT"];
+//$root = "/srv/http/repo/public/main";
+$dirname = explode("?", $_SERVER["REQUEST_URI"], 2)[0];
+
+function classify($root, $dirname, $filename) {
+ global $repos_arch_project, $repos_arch_community, $repos_para_project, $repos_para_community;
+
+ if ($filename === '.') { return [ 'dir' ]; }
+ if ($filename === '..') { return [ 'dir', 'parent' ]; }
+
+ $parts = preg_split("|/+|", $dirname, -1, PREG_SPLIT_NO_EMPTY);
+ $dirname = implode('/', $parts);
+
+ $classes = array();
+ if (count($parts) == 0) {
+ // in the top-level
+ if (in_array($filename, $repos_arch_project )) { array_push($classes, 'repo', 'arch'); }
+ if (in_array($filename, $repos_para_project )) { array_push($classes, 'repo', 'para'); }
+ if (in_array($filename, $repos_arch_community)) { array_push($classes, 'repo', 'arch', 'community'); }
+ if (in_array($filename, $repos_para_community)) { array_push($classes, 'repo', 'para', 'community'); }
+ if ($filename[0] === '~' ) { array_push($classes, 'repo', 'para', 'community'); }
+ } elseif ($dirname == "pool" || $dirname == "sources") {
+ switch($filename) {
+ case "packages": array_push($classes, 'pool', 'arch'); break;
+ case "community": array_push($classes, 'pool', 'arch', 'community'); break;
+ case "parabola": array_push($classes, 'pool', 'para'); break;
+ }
+ }
+ if ($filename[0] === '.' || substr($filename, -1) === '~') { $classes[] = 'hidden'; }
+ if (is_link($root.'/'.$dirname.'/'.$filename)) { $classes[] = 'link'; }
+ if (is_dir($root.'/'.$dirname.'/'.$filename)) { $classes[] = 'dir'; }
+ if (is_file($root.'/'.$dirname.'/'.$filename)) { $classes[] = 'file'; }
+
+ if (preg_match("/\.pkg\.tar(\..z)?$/", $filename) == 1) { $classes[] = 'pkg'; }
+ if (preg_match("/\.tar(\..z|\.bz2)?$/", $filename) == 1) { $classes[] = 'tar'; }
+ $classes[] = pathinfo($filename, PATHINFO_EXTENSION);
+
+ return $classes;
+}
+?>
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8" />
+ <title>Parabola GNU/Linux-libre - Index of <?php echo htmlentities($dirname); ?></title>
+ <link rel="stylesheet" type="text/css" href="https://parabolagnulinux.org/static/archweb.3b36d2301f70.css" media="screen, projection" />
+ <link rel="stylesheet" type="text/css" href="<?php echo $assetdir."/style.css"; ?>" />
+ <link rel="icon" type="image/x-icon" href="https://parabolagnulinux.org/static/favicon.72ab042ac877.ico" />
+ <link rel="shortcut icon" type="image/x-icon" href="https://parabolagnulinux.org/static/favicon.72ab042ac877.ico" />
+ <link rel="apple-touch-icon" href="https://parabolagnulinux.org/static/logos/apple-touch-icon-57x57.6484c8e17e2f.png" />
+ <link rel="apple-touch-icon" sizes="72x72" href="https://parabolagnulinux.org/static/logos/apple-touch-icon-72x72.f60f1458fe1c.png" />
+ <link rel="apple-touch-icon" sizes="114x114" href="https://parabolagnulinux.org/static/logos/apple-touch-icon-114x114.e7845a2e4bab.png" />
+ <link rel="apple-touch-icon" sizes="144x144" href="https://parabolagnulinux.org/static/logos/apple-touch-icon-144x144.97a164b5f85c.png" />
+ <link rel="search" type="application/opensearchdescription+xml" href="https://parabolagnulinux.org/opensearch/packages/" title="Parabola GNU/Linux-libre Packages" />
+</head>
+<body>
+
+ <div id="archnavbar" class="anb-repo">
+ <div id="archnavbarlogo"><h1><a href="/" title="Return to the main page">Parabola</a></h1></div>
+ <div id="archnavbarmenu">
+ <ul id="archnavbarlist">
+ <li id="anb-home"><a href="https://parabolagnulinux.org" title="Parabola news, packages, projects and more">Home</a></li>
+ <li id="anb-packages"><a href="https://parabolagnulinux.org/packages/" title="Parabola Package Database">Packages</a></li>
+ <li id="anb-wiki"><a href="https://wiki.parabolagnulinux.org" title="Community documentation">Wiki</a></li>
+ <li id="anb-bugs"><a href="https://labs.parabola.nu" title="Issue Tracker">Bugs</a></li>
+ <li id="anb-projects"><a href="https://projects.parabolagnulinux.org" title="Our Code">Projects</a></li>
+ <li id="anb-download"><a href="https://parabolagnulinux.org/download" title="Get Parabola">Download</a></li>
+ </ul>
+ </div>
+ </div><!-- #archnavbar -->
+
+ <div id="content">
+
+ <div id="archdev-navbar"> </div>
+
+ <div class="box">
+ <h2>Index of <?php echo htmlentities($dirname); ?></h2>
+ <table><tbody>
+<?php
+ if ($dh = opendir($root.'/'.$dirname)) {
+ $filenames = array();
+ while (($filename = readdir($dh)) !== false) { $filenames[] = $filename; }
+ closedir($dh);
+ sort($filenames);
+ foreach ($filenames as $filename) {
+ if ($filename === '.') { continue; }
+ $classes = classify($root, $dirname, $filename);
+ echo "\t\t\t\t<tr class=\"".implode(' ', $classes)."\">";
+ if (is_link($root.'/'.$dirname.'/'.$filename)) {
+ echo "<td><a href=\"".htmlentities($filename)."\">".htmlentities($filename)."</a> -> ".htmlentities(readlink($root.'/'.$dirname.'/'.$filename))."</td>";
+ } else {
+ echo "<td><a href=\"".htmlentities($filename)."\">".htmlentities($filename)."</a></td>";
+ }
+
+ if ($filename == '..') {
+ echo '<td></td><td></td>';
+ } else {
+ echo "<td>".date("Y-m-d H:i", filemtime($root.'/'.$dirname.'/'.$filename))."</td>";
+ if (is_dir($root.'/'.$dirname.'/'.$filename)) {
+ echo "<td class=number>-</td>";
+ } else {
+ echo "<td class=number>".filesize($root.'/'.$dirname.'/'.$filename)."</td>";
+ }
+ echo "</tr>\n";
+ }
+ }
+ }
+?>
+ </tbody></table>
+ </div>
+
+ </div>
+</body>
+</html>
diff --git a/iso.png b/iso.png
new file mode 100644
index 0000000..612fc81
--- /dev/null
+++ b/iso.png
Binary files differ
diff --git a/para.png b/para.png
new file mode 100644
index 0000000..c67bbd6
--- /dev/null
+++ b/para.png
Binary files differ
diff --git a/parent.png b/parent.png
new file mode 100644
index 0000000..b3d9cef
--- /dev/null
+++ b/parent.png
Binary files differ
diff --git a/pkg.png b/pkg.png
new file mode 100644
index 0000000..ef02804
--- /dev/null
+++ b/pkg.png
Binary files differ
diff --git a/pkg.svg b/pkg.svg
new file mode 100644
index 0000000..6adbea2
--- /dev/null
+++ b/pkg.svg
@@ -0,0 +1,1063 @@
+<?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:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.5 r10040"
+ version="1.0"
+ sodipodi:docname="folder-tar.svg"
+ inkscape:output_extension="org.inkscape.output.svgz.inkscape"
+ inkscape:export-filename="/home/luke/icons/folder-tar.png"
+ inkscape:export-xdpi="11.25"
+ inkscape:export-ydpi="11.25">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 64 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="128 : 64 : 1"
+ inkscape:persp3d-origin="64 : 42.666667 : 1"
+ id="perspective412" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4858">
+ <stop
+ style="stop-color:#00bfea;stop-opacity:1;"
+ offset="0"
+ id="stop4860" />
+ <stop
+ style="stop-color:#00bfea;stop-opacity:0;"
+ offset="1"
+ id="stop4862" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4089">
+ <stop
+ style="stop-color:#dee1e5;stop-opacity:1;"
+ offset="0"
+ id="stop4091" />
+ <stop
+ style="stop-color:#fafafa;stop-opacity:1"
+ offset="1"
+ id="stop4093" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4059"
+ inkscape:collect="always">
+ <stop
+ id="stop4061"
+ offset="0"
+ style="stop-color:#e5edf8;stop-opacity:1" />
+ <stop
+ id="stop4063"
+ offset="1"
+ style="stop-color:#fafafa;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3953"
+ inkscape:collect="always">
+ <stop
+ id="stop3955"
+ offset="0"
+ style="stop-color:#e0e0e0;stop-opacity:1" />
+ <stop
+ id="stop3957"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3910">
+ <stop
+ style="stop-color:#eeeeee;stop-opacity:1;"
+ offset="0"
+ id="stop3912" />
+ <stop
+ style="stop-color:#fafafa;stop-opacity:1"
+ offset="1"
+ id="stop3914" />
+ </linearGradient>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath4018">
+ <rect
+ y="30.477533"
+ x="8"
+ height="71.191017"
+ width="112"
+ id="rect4020"
+ style="opacity:1;fill:url(#linearGradient4022);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3910"
+ id="linearGradient4022"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.9887641,0,2.7921313)"
+ x1="101.09873"
+ y1="31.740467"
+ x2="101.09873"
+ y2="95.845909" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient11720"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.038822,0,0,0.97490146,-2.4846081,2.2898583)"
+ x1="68.019264"
+ y1="50.058746"
+ x2="68.019264"
+ y2="119.35289" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient11725"
+ gradientUnits="userSpaceOnUse"
+ x1="101.09873"
+ y1="43.709396"
+ x2="101.09873"
+ y2="108.20206"
+ gradientTransform="matrix(1.0388569,0,0,1.0503004,-2.4848871,-6.1207177)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient11740"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.038822,0,0,0.9544031,-2.4846081,-3.4339357)"
+ x1="87.53772"
+ y1="86.377098"
+ x2="87.53772"
+ y2="-16.000978" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient11743"
+ gradientUnits="userSpaceOnUse"
+ x1="101.09873"
+ y1="32.7673"
+ x2="101.09873"
+ y2="84.340691"
+ gradientTransform="matrix(1.038822,0,0,1.0498434,-2.4846081,-6.1062639)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4059"
+ id="linearGradient11746"
+ gradientUnits="userSpaceOnUse"
+ x1="101.09873"
+ y1="31.740467"
+ x2="101.09873"
+ y2="95.845909"
+ gradientTransform="matrix(1.038822,0,0,1.0498434,-2.4846081,-6.1062639)" />
+ <linearGradient
+ id="linearGradient26907"
+ gradientUnits="userSpaceOnUse"
+ x1="-84.002403"
+ y1="-383.9971"
+ x2="-12.0029"
+ y2="-383.9971"
+ gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)">
+ <stop
+ offset="0"
+ style="stop-color:#0081ec;stop-opacity:1;"
+ id="stop26909" />
+ <stop
+ offset="1"
+ style="stop-color:#0057ae;stop-opacity:1;"
+ id="stop26911" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4117"
+ inkscape:collect="always">
+ <stop
+ id="stop4119"
+ offset="0"
+ style="stop-color:#0066ff;stop-opacity:1;" />
+ <stop
+ id="stop4121"
+ offset="1"
+ style="stop-color:#002049;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3442"
+ inkscape:collect="always">
+ <stop
+ id="stop3444"
+ offset="0"
+ style="stop-color:#a4c0e4;stop-opacity:1;" />
+ <stop
+ id="stop3446"
+ offset="1"
+ style="stop-color:#a4c0e4;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3535">
+ <stop
+ style="stop-color:#dce7f5;stop-opacity:1"
+ offset="0"
+ id="stop3537" />
+ <stop
+ style="stop-color:#dce7f5;stop-opacity:0"
+ offset="1"
+ id="stop3539" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3554"
+ inkscape:collect="always">
+ <stop
+ id="stop3556"
+ offset="0"
+ style="stop-color:#00438a;stop-opacity:1;" />
+ <stop
+ id="stop3558"
+ offset="1"
+ style="stop-color:#00438a;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3640"
+ inkscape:collect="always">
+ <stop
+ id="stop3642"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3644"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4016"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.038822,0,0,-0.97426708,-2.4846081,120.31151)"
+ x1="68.019264"
+ y1="47.688831"
+ x2="68.019264"
+ y2="102.47923" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3535"
+ id="linearGradient3977"
+ gradientUnits="userSpaceOnUse"
+ x1="65.490807"
+ y1="101.17589"
+ x2="54.427418"
+ y2="74.327278"
+ gradientTransform="matrix(1.0024187,0,0,1.0024187,1.8117664,-2.0437022)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3442"
+ id="linearGradient3980"
+ gradientUnits="userSpaceOnUse"
+ x1="57.477966"
+ y1="48.784237"
+ x2="71.069473"
+ y2="103.29678"
+ gradientTransform="matrix(1.0024187,0,0,1.0024187,1.8117664,-2.0437022)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4858"
+ id="radialGradient3985"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-0.62257145,0,154.73095)"
+ cx="36.596191"
+ cy="51.279228"
+ fx="36.596191"
+ fy="51.279228"
+ r="34.265625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3535"
+ id="linearGradient3987"
+ gradientUnits="userSpaceOnUse"
+ x1="41.246826"
+ y1="58.851654"
+ x2="38.737919"
+ y2="104.69202" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3554"
+ id="radialGradient3989"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92468512,0,0,0.78724011,2.682504,17.471741)"
+ cx="33.015652"
+ cy="97.619926"
+ fx="33.015652"
+ fy="97.619926"
+ r="27.015595" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient26907"
+ id="radialGradient3991"
+ gradientUnits="userSpaceOnUse"
+ cx="343.99899"
+ cy="92"
+ fx="351.2594"
+ fy="66.436157"
+ r="36" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3640"
+ id="radialGradient3993"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.457792,-4.14982e-8,-2.087256e-7,1.9108522,-121.47994,-83.798392)"
+ cx="341.08624"
+ cy="77.172691"
+ fx="341.84244"
+ fy="66.635597"
+ r="36" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4117"
+ id="linearGradient3995"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
+ x1="9.978035"
+ y1="-367.08105"
+ x2="-77.65287"
+ y2="-390.56168" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4205"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,-0.92732865,0.03315359,132.37215)"
+ x1="68.019264"
+ y1="47.688831"
+ x2="68.019264"
+ y2="102.47923" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4207"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.92793246,0.03315359,20.03658)"
+ x1="68.019264"
+ y1="50.058746"
+ x2="68.019264"
+ y2="119.35289" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient4209"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99977283,0,0,0.99969892,0.03288516,12.03121)"
+ x1="101.09873"
+ y1="43.709396"
+ x2="101.09873"
+ y2="108.20206" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4211"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.90842172,0.03315359,14.588548)"
+ x1="87.53772"
+ y1="86.377098"
+ x2="87.53772"
+ y2="-16.000978" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient4213"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.99926379,0.03315359,12.044968)"
+ x1="101.09873"
+ y1="32.7673"
+ x2="101.09873"
+ y2="84.340691" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4059"
+ id="linearGradient4215"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.99926379,0.03315359,12.044968)"
+ x1="101.09873"
+ y1="31.740467"
+ x2="101.09873"
+ y2="95.845909" />
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:collect="always"
+ id="filter4547"
+ x="-0.020830007"
+ width="1.04166"
+ y="-0.58324021"
+ height="2.1664803">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.48603352"
+ id="feGaussianBlur4549" />
+ </filter>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#XMLID_15_"
+ id="radialGradient12668"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.87993808,0,0,0.89562743,-57.04703,1023.9512)"
+ cx="7.5"
+ cy="8.3301001"
+ r="126.4133" />
+ <radialGradient
+ id="XMLID_15_"
+ cx="7.5"
+ cy="8.3301001"
+ r="126.4133"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ offset="0.2722"
+ style="stop-color:#DBC298"
+ id="stop4" />
+ <stop
+ offset="0.4545"
+ style="stop-color:#C7B08A"
+ id="stop6" />
+ <stop
+ offset="0.71829998"
+ style="stop-color:#b99c6f;stop-opacity:1;"
+ id="stop8" />
+ <stop
+ offset="0.88169998"
+ style="stop-color:#b09469;stop-opacity:1;"
+ id="stop10" />
+ <stop
+ offset="1"
+ style="stop-color:#a48a5f;stop-opacity:1;"
+ id="stop12-3-3" />
+ </radialGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#XMLID_17_"
+ id="linearGradient12670"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="0.25"
+ y1="13.2949"
+ x2="104.25"
+ y2="13.2949" />
+ <linearGradient
+ id="XMLID_17_"
+ gradientUnits="userSpaceOnUse"
+ x1="0.25"
+ y1="13.2949"
+ x2="104.25"
+ y2="13.2949">
+ <stop
+ offset="0"
+ style="stop-color:#8F6B32"
+ id="stop28-06" />
+ <stop
+ offset="0.5"
+ style="stop-color:#3e2e15;stop-opacity:1;"
+ id="stop30-4" />
+ <stop
+ offset="1"
+ style="stop-color:#8F6B32"
+ id="stop32-4" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3329"
+ id="linearGradient12672"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="45.35817"
+ y1="9.0646334"
+ x2="45.35817"
+ y2="25.815258" />
+ <linearGradient
+ id="linearGradient3329">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3331" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3333" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6524"
+ id="linearGradient12674"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="63.573593"
+ y1="16.737045"
+ x2="59.166992"
+ y2="24.58" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6524">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop6526" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop6528" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6534"
+ id="linearGradient12676"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="90.625519"
+ y1="3.1541069"
+ x2="62.901402"
+ y2="21.1523" />
+ <linearGradient
+ y2="21.1523"
+ x2="62.901402"
+ y1="4.5991001"
+ x1="91.572304"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6534">
+ <stop
+ id="stop6536"
+ style="stop-color:#AD9C80"
+ offset="0.0118" />
+ <stop
+ id="stop6538"
+ style="stop-color:#FFE6BC"
+ offset="0.02147562" />
+ <stop
+ id="stop6540"
+ style="stop-color:#C4B091"
+ offset="0.06798933" />
+ <stop
+ id="stop6542"
+ style="stop-color:#DEC8A4"
+ offset="0.11206073" />
+ <stop
+ id="stop6544"
+ style="stop-color:#B39E7C"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6548"
+ id="linearGradient12678"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="13.051652"
+ y1="2.4199617"
+ x2="50.6035"
+ y2="26.3501" />
+ <linearGradient
+ y2="26.3501"
+ x2="50.6035"
+ y1="4.1034999"
+ x1="12.0713"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6548">
+ <stop
+ id="stop6550"
+ style="stop-color:#AD9C80"
+ offset="0.0118" />
+ <stop
+ id="stop6552"
+ style="stop-color:#FFE6BC"
+ offset="0.04393823" />
+ <stop
+ id="stop6554"
+ style="stop-color:#C4B091"
+ offset="0.07207061" />
+ <stop
+ id="stop6556"
+ style="stop-color:#DEC8A4"
+ offset="0.1025845" />
+ <stop
+ id="stop6558"
+ style="stop-color:#B39E7C"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6524"
+ id="linearGradient12680"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7859256,0,0,1.6890336,-126.04679,957.32931)"
+ x1="53.408875"
+ y1="50.796875"
+ x2="73.5625"
+ y2="43.8125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6079"
+ id="radialGradient12682"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.40924612,0,0,0.24572911,-39.77811,1014.1236)"
+ cx="62.818913"
+ cy="20.84005"
+ fx="62.818913"
+ fy="20.84005"
+ r="16" />
+ <linearGradient
+ id="linearGradient6079"
+ inkscape:collect="always">
+ <stop
+ id="stop6081"
+ offset="0"
+ style="stop-color:#2e220f;stop-opacity:1;" />
+ <stop
+ id="stop6083"
+ offset="1"
+ style="stop-color:#2e220f;stop-opacity:0;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6109"
+ id="radialGradient12684"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.22210087,-0.01705765,0.04871105,0.57002493,-42.22843,1008.9915)"
+ cx="124.67217"
+ cy="21.19462"
+ fx="124.67217"
+ fy="21.19462"
+ r="16" />
+ <linearGradient
+ id="linearGradient6109"
+ inkscape:collect="always">
+ <stop
+ id="stop6111"
+ offset="0"
+ style="stop-color:#fbe3b9;stop-opacity:1;" />
+ <stop
+ id="stop6113"
+ offset="1"
+ style="stop-color:#fbe3b9;stop-opacity:0;" />
+ </linearGradient>
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:collect="always"
+ id="filter4513"
+ x="-0.045131683"
+ width="1.0902634"
+ y="-1.2636873"
+ height="3.5273743">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.0530726"
+ id="feGaussianBlur4515" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4716"
+ id="linearGradient4722"
+ x1="79.839294"
+ y1="13.3362"
+ x2="79.839294"
+ y2="27.853235"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.0087563,5.8199073)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4716">
+ <stop
+ style="stop-color:#102134;stop-opacity:1;"
+ offset="0"
+ id="stop4718" />
+ <stop
+ style="stop-color:#102134;stop-opacity:0;"
+ offset="1"
+ id="stop4720" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4751"
+ id="radialGradient4644"
+ cx="39.701351"
+ cy="28.221918"
+ fx="39.701351"
+ fy="28.221918"
+ r="57.906349"
+ gradientTransform="matrix(2.9137548,-0.10047429,0.02264152,0.65660366,-76.310235,9.4601573)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient4751"
+ inkscape:collect="always">
+ <stop
+ id="stop4753"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:0.6" />
+ <stop
+ id="stop4755"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4608"
+ id="linearGradient4614"
+ x1="3"
+ y1="968.26129"
+ x2="3"
+ y2="953.01678"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.0087563,-918.54228)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4608">
+ <stop
+ style="stop-color:#34608f;stop-opacity:1;"
+ offset="0"
+ id="stop4610" />
+ <stop
+ style="stop-color:#34608f;stop-opacity:0;"
+ offset="1"
+ id="stop4612" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4616"
+ id="linearGradient4622"
+ x1="124.01234"
+ y1="966.51019"
+ x2="124.01234"
+ y2="935.34326"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.8750293,0,0,1,-111.995,-918.54228)" />
+ <linearGradient
+ id="linearGradient4616">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4618" />
+ <stop
+ style="stop-color:#34608f;stop-opacity:0;"
+ offset="1"
+ id="stop4620" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4624"
+ id="linearGradient4630"
+ x1="55"
+ y1="1036.4132"
+ x2="55"
+ y2="1032.4822"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4624">
+ <stop
+ style="stop-color:#003d7b;stop-opacity:1;"
+ offset="0"
+ id="stop4626" />
+ <stop
+ style="stop-color:#003d7b;stop-opacity:0;"
+ offset="1"
+ id="stop4628" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4078"
+ id="linearGradient4584"
+ x1="79"
+ y1="924.36218"
+ x2="79"
+ y2="1052.3622"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.0087563,-918.54228)" />
+ <linearGradient
+ id="linearGradient4078">
+ <stop
+ id="stop4080"
+ offset="0"
+ style="stop-color:#aec7e7;stop-opacity:0;" />
+ <stop
+ style="stop-color:#abc5e6;stop-opacity:0.49803922;"
+ offset="0.04545457"
+ id="stop4588" />
+ <stop
+ style="stop-color:#d6e3f3;stop-opacity:1"
+ offset="0.13402523"
+ id="stop4586" />
+ <stop
+ id="stop4590"
+ offset="0.92923617"
+ style="stop-color:#80a7d9;stop-opacity:1" />
+ <stop
+ id="stop4082"
+ offset="1"
+ style="stop-color:#b5cce9;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4651"
+ id="linearGradient4657"
+ x1="7.4737163"
+ y1="945.36218"
+ x2="10"
+ y2="935.93396"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.8949166,0,0,1.8949166,-7.5709037,-1755.4419)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4651">
+ <stop
+ style="stop-color:#102134;stop-opacity:1;"
+ offset="0"
+ id="stop4653" />
+ <stop
+ style="stop-color:#102134;stop-opacity:0;"
+ offset="1"
+ id="stop4655" />
+ </linearGradient>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath3834">
+ <rect
+ style="opacity:0.6457142;fill:#155293;fill-opacity:1;stroke:none"
+ id="rect3836"
+ width="118.00004"
+ height="31.5"
+ x="4"
+ y="941.36218"
+ rx="4"
+ ry="4" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4651"
+ id="linearGradient4661"
+ gradientUnits="userSpaceOnUse"
+ x1="7.7416654"
+ y1="944.36218"
+ x2="10"
+ y2="935.93396"
+ gradientTransform="matrix(-1,0,0,1,128.00875,-911.54228)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4656"
+ id="linearGradient4582"
+ gradientUnits="userSpaceOnUse"
+ x1="12.5"
+ y1="987.36218"
+ x2="12.5"
+ y2="937.36218"
+ gradientTransform="translate(0.0087563,-918.54228)" />
+ <linearGradient
+ id="linearGradient4656">
+ <stop
+ id="stop4658"
+ offset="0"
+ style="stop-color:#1a5187;stop-opacity:1;" />
+ <stop
+ id="stop4660"
+ offset="1"
+ style="stop-color:#679ee0;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10000"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8284272"
+ inkscape:cx="106.76718"
+ inkscape:cy="1.1728904"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="128px"
+ height="128px"
+ showgrid="true"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ showborder="true"
+ inkscape:grid-points="true"
+ inkscape:window-width="1918"
+ inkscape:window-height="1031"
+ inkscape:window-x="0"
+ inkscape:window-y="16"
+ inkscape:snap-guide="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="false"
+ inkscape:snap-nodes="false"
+ inkscape:window-maximized="0">
+ <inkscape:grid
+ id="GridFromPre046Settings"
+ type="xygrid"
+ originx="0px"
+ originy="0px"
+ spacingx="4px"
+ spacingy="4px"
+ color="#0000ff"
+ empcolor="#0000ff"
+ opacity="0.2"
+ empopacity="0.4"
+ empspacing="2"
+ visible="true"
+ enabled="true"
+ dotted="false"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ position="0,0"
+ orientation="0,128"
+ id="guide3227" />
+ <sodipodi:guide
+ position="128,0"
+ orientation="-128,0"
+ id="guide3229" />
+ <sodipodi:guide
+ position="128,128"
+ orientation="0,-128"
+ id="guide3231" />
+ <sodipodi:guide
+ position="0,128"
+ orientation="128,0"
+ id="guide3233" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <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="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ style="display:inline;enable-background:new"
+ id="g8210"
+ transform="matrix(1.2193102,0,0,1.2000891,78.815702,-1211.6399)">
+ <rect
+ transform="matrix(1.6519235,0,0,1.5395601,89.71648,-439.04202)"
+ ry="1"
+ rx="1"
+ style="opacity:0.66857144;fill:#000000;fill-opacity:0.74717647;stroke:none;filter:url(#filter4547)"
+ id="rect4517"
+ width="56"
+ height="2"
+ x="-89.5"
+ y="1005.2485" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="polygon14"
+ d="m 34.37704,1045.7057 -0.25,0.063 -0.3125,64.0077 -91.79054,-0.076 0.0133,-64.0019 z"
+ style="fill:url(#radialGradient12668)" />
+ <path
+ style="fill:url(#linearGradient12670)"
+ d="m -11.6362,1046.5441 -46.32271,-0.8395 28.72899,-20.1466 35.18745,0 28.729,20.1466 -46.32273,0.8395 z"
+ id="polygon34"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient12672);fill-opacity:1"
+ d="m -11.6362,1046.5441 -46.32271,-0.8395 41.75725,-16.0295 4.78817,0 46.10002,16.0295 -46.32273,0.8395 z"
+ id="polygon6516"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ style="fill:url(#linearGradient12674);fill-opacity:1"
+ d="m -11.6362,1037.2417 31.93239,3.2316 14.39034,5.0509 -46.32273,-2.279 0,-6.0035 z"
+ id="path2427"
+ inkscape:connector-curvature="0" />
+ <path
+ id="polygon49"
+ d="m -11.6362,1022.146 31.93239,3.2315 14.39034,20.1467 -44.15135,-6.0529 z"
+ style="fill:url(#linearGradient12676)"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient12678)"
+ d="m -11.6362,1036.4891 c -4.60927,2.1938 -14.6808,4.9824 -46.32271,9.2173 l 14.39211,-20.3289 c 0,0 9.58874,-1.3555 12.23103,-1.8005 11.17545,-1.8821 16.96332,-4.5577 17.26853,-5.867 0.55445,0.3632 1.75381,3.7211 1.8882,6.7092 z"
+ id="polygon69"
+ sodipodi:nodetypes="cccscsc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ id="rect6520"
+ d="m -11.63593,1022.2515 19.08708,1.7947 7.1437,20.9017 -25.25671,-2.6127 z"
+ style="opacity:0.25941425;fill:url(#linearGradient12680);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path6065"
+ d="m -11.6362,1022.3373 2.17138,17.1543 39.74072,5.425 -39.53715,-5.6824 z"
+ style="fill:#e2cca7;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccscsc"
+ id="path6069"
+ d="m -11.6362,1036.4891 c -4.60927,2.1938 -14.6808,4.9824 -46.32271,9.2173 l 14.39211,-20.3289 c 0,0 9.58874,-1.3555 12.23103,-1.8005 11.17545,-1.8821 16.96332,-4.5577 17.26853,-5.867 0.55445,0.3632 1.75381,3.7211 1.8882,6.7092 z"
+ style="opacity:0.23012552;fill:url(#radialGradient12682);fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="csccccscccccc"
+ inkscape:connector-curvature="0"
+ id="path6087"
+ d="m -14.04604,1017.7057 c -0.30521,1.3092 -6.10511,3.9932 -17.28055,5.8753 -2.64229,0.445 -12.25924,1.8012 -12.25924,1.8012 l -14.37406,20.3278 c 0.0506,-0.01 0.0853,-0.036 0.13572,-0.043 l 14.10264,-19.8989 c 0,0 9.61694,-1.3133 12.25923,-1.7583 11.17545,-1.8821 17.12203,-5.1422 17.36326,-5.9663 0.55444,0.3632 1.63761,3.7929 1.77201,6.7811 l 0.54284,11.7507 c 0.0434,-0.02 0.0933,-0.066 0.13572,-0.086 l -0.54284,-12.0508 c -0.13441,-2.9882 -1.30029,-6.3698 -1.85473,-6.7331 z"
+ style="fill:url(#radialGradient12684);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#f4eddf;fill-opacity:1;stroke:none"
+ d="m -57.88999,1045.7783 45.38637,0.7789 45.59442,-0.185 -45.39086,-0.072 z"
+ id="path6123"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ transform="matrix(1.6460148,0,0,1.5395601,89.51853,-439.04202)"
+ y="1005.4485"
+ x="-89.5"
+ height="2"
+ width="56"
+ id="rect3731"
+ style="opacity:0.34857142;fill:#3e3e3e;fill-opacity:0.74717647;stroke:none;filter:url(#filter4513)" />
+ </g>
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="m 16,64 0,40 8,0 0,-16 c 0,0 -1.913719,0 4,0 5.913719,0 12,-5.81289 12,-12 0,-6.18711 -5.736425,-12 -12,-12 -6.263575,0 -4,0 -4,0 z m 8,8 c 0,0 1.88603,0 4,0 2.11397,0 4,1.72896 4,4 0,2.27104 -1.639029,4 -4,4 -2.360971,0 -4,0 -4,0 z"
+ id="path4319"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccczzzccczzzcc" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="m 48,104 0,-40 8,0 0,20 7.937555,-20 8.12489,0 L 64,84 l 8,20 -8,0 -8,-20 0,20 z"
+ id="path5092"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="m 104,80 c 0,0 0,-4.071668 0,4 0,8.071668 -2.07134,12 -8,12 -5.928659,0 -8,-4.026818 -8,-12 0,-7.973182 2.015066,-12 8,-12 5.98493,0 8,0 8,0 l 4,-8 c 0,0 -1.40751,0 -12,0 -10.592491,0 -16,6.774734 -16,20 0,13.225266 5.185787,20 16,20 10.81421,0 16,-6.808338 16,-20 0,-13.191662 0,-4 0,-4 z"
+ id="path5094"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="czzzzcczzzzcc" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="M 96,80.000001 96,88 l 12,0 0,-8 z"
+ id="path5096"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+</svg>
diff --git a/repo.png b/repo.png
new file mode 100644
index 0000000..5d0412f
--- /dev/null
+++ b/repo.png
Binary files differ
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..572a8fb
--- /dev/null
+++ b/style.css
@@ -0,0 +1,52 @@
+/* generic */
+
+td {
+ font: 1.2em monospace;
+ height: 24px;
+ vertical-align: middle;
+ padding-left: 4px;
+}
+
+td.number {
+ text-align: right;
+}
+
+td a {
+ margin-left: 20px;
+}
+
+tr:hover {
+ box-shadow: inset 0 0 0 1px #bcd;
+}
+
+td a:before {
+ width: 16px;
+ height: 16px;
+ margin-left: -20px;
+ margin-right: 4px;
+}
+
+/* inode */
+
+tr.hidden { /*opacity: 0.5;*/ display: none; }
+
+tr.dir a:after { content: "/"; }
+tr.dir a:before { content: url("dir.png"); }
+tr.dir.parent a:before { content: url("parent.png"); }
+
+tr.file a:before { content: url("file.png"); }
+
+/* domain */
+
+tr.dir.repo a:before { content: url("repo.png"); }
+tr.file.pkg.tar a:before { content: url("pkg.png"); }
+tr.file.iso a:before { content: url("iso.png"); }
+tr.file.tar a:before { content: url("tar.png"); }
+tr.file.txt a:before { content: url("txt.png"); }
+tr.file.torrent a:before { content: url("torrent.png"); }
+
+tr.arch td { background:#7fc3e5; }
+tr.para td { background:#9fa6e3; }
+tr.community {}
+
+
diff --git a/tar.png b/tar.png
new file mode 100644
index 0000000..e1634bd
--- /dev/null
+++ b/tar.png
Binary files differ
diff --git a/tar.svg b/tar.svg
new file mode 100644
index 0000000..5fde86e
--- /dev/null
+++ b/tar.svg
@@ -0,0 +1,1039 @@
+<?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:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.5 r10040"
+ version="1.0"
+ sodipodi:docname="pkg.svg"
+ inkscape:output_extension="org.inkscape.output.svgz.inkscape"
+ inkscape:export-filename="/home/luke/icons/folder-tar.png"
+ inkscape:export-xdpi="11.25"
+ inkscape:export-ydpi="11.25">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 64 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="128 : 64 : 1"
+ inkscape:persp3d-origin="64 : 42.666667 : 1"
+ id="perspective412" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4858">
+ <stop
+ style="stop-color:#00bfea;stop-opacity:1;"
+ offset="0"
+ id="stop4860" />
+ <stop
+ style="stop-color:#00bfea;stop-opacity:0;"
+ offset="1"
+ id="stop4862" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4089">
+ <stop
+ style="stop-color:#dee1e5;stop-opacity:1;"
+ offset="0"
+ id="stop4091" />
+ <stop
+ style="stop-color:#fafafa;stop-opacity:1"
+ offset="1"
+ id="stop4093" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4059"
+ inkscape:collect="always">
+ <stop
+ id="stop4061"
+ offset="0"
+ style="stop-color:#e5edf8;stop-opacity:1" />
+ <stop
+ id="stop4063"
+ offset="1"
+ style="stop-color:#fafafa;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3953"
+ inkscape:collect="always">
+ <stop
+ id="stop3955"
+ offset="0"
+ style="stop-color:#e0e0e0;stop-opacity:1" />
+ <stop
+ id="stop3957"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3910">
+ <stop
+ style="stop-color:#eeeeee;stop-opacity:1;"
+ offset="0"
+ id="stop3912" />
+ <stop
+ style="stop-color:#fafafa;stop-opacity:1"
+ offset="1"
+ id="stop3914" />
+ </linearGradient>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath4018">
+ <rect
+ y="30.477533"
+ x="8"
+ height="71.191017"
+ width="112"
+ id="rect4020"
+ style="opacity:1;fill:url(#linearGradient4022);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3910"
+ id="linearGradient4022"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.9887641,0,2.7921313)"
+ x1="101.09873"
+ y1="31.740467"
+ x2="101.09873"
+ y2="95.845909" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient11720"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.038822,0,0,0.97490146,-2.4846081,2.2898583)"
+ x1="68.019264"
+ y1="50.058746"
+ x2="68.019264"
+ y2="119.35289" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient11725"
+ gradientUnits="userSpaceOnUse"
+ x1="101.09873"
+ y1="43.709396"
+ x2="101.09873"
+ y2="108.20206"
+ gradientTransform="matrix(1.0388569,0,0,1.0503004,-2.4848871,-6.1207177)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient11740"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.038822,0,0,0.9544031,-2.4846081,-3.4339357)"
+ x1="87.53772"
+ y1="86.377098"
+ x2="87.53772"
+ y2="-16.000978" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient11743"
+ gradientUnits="userSpaceOnUse"
+ x1="101.09873"
+ y1="32.7673"
+ x2="101.09873"
+ y2="84.340691"
+ gradientTransform="matrix(1.038822,0,0,1.0498434,-2.4846081,-6.1062639)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4059"
+ id="linearGradient11746"
+ gradientUnits="userSpaceOnUse"
+ x1="101.09873"
+ y1="31.740467"
+ x2="101.09873"
+ y2="95.845909"
+ gradientTransform="matrix(1.038822,0,0,1.0498434,-2.4846081,-6.1062639)" />
+ <linearGradient
+ id="linearGradient26907"
+ gradientUnits="userSpaceOnUse"
+ x1="-84.002403"
+ y1="-383.9971"
+ x2="-12.0029"
+ y2="-383.9971"
+ gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)">
+ <stop
+ offset="0"
+ style="stop-color:#0081ec;stop-opacity:1;"
+ id="stop26909" />
+ <stop
+ offset="1"
+ style="stop-color:#0057ae;stop-opacity:1;"
+ id="stop26911" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4117"
+ inkscape:collect="always">
+ <stop
+ id="stop4119"
+ offset="0"
+ style="stop-color:#0066ff;stop-opacity:1;" />
+ <stop
+ id="stop4121"
+ offset="1"
+ style="stop-color:#002049;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3442"
+ inkscape:collect="always">
+ <stop
+ id="stop3444"
+ offset="0"
+ style="stop-color:#a4c0e4;stop-opacity:1;" />
+ <stop
+ id="stop3446"
+ offset="1"
+ style="stop-color:#a4c0e4;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3535">
+ <stop
+ style="stop-color:#dce7f5;stop-opacity:1"
+ offset="0"
+ id="stop3537" />
+ <stop
+ style="stop-color:#dce7f5;stop-opacity:0"
+ offset="1"
+ id="stop3539" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3554"
+ inkscape:collect="always">
+ <stop
+ id="stop3556"
+ offset="0"
+ style="stop-color:#00438a;stop-opacity:1;" />
+ <stop
+ id="stop3558"
+ offset="1"
+ style="stop-color:#00438a;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3640"
+ inkscape:collect="always">
+ <stop
+ id="stop3642"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3644"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4016"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.038822,0,0,-0.97426708,-2.4846081,120.31151)"
+ x1="68.019264"
+ y1="47.688831"
+ x2="68.019264"
+ y2="102.47923" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3535"
+ id="linearGradient3977"
+ gradientUnits="userSpaceOnUse"
+ x1="65.490807"
+ y1="101.17589"
+ x2="54.427418"
+ y2="74.327278"
+ gradientTransform="matrix(1.0024187,0,0,1.0024187,1.8117664,-2.0437022)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3442"
+ id="linearGradient3980"
+ gradientUnits="userSpaceOnUse"
+ x1="57.477966"
+ y1="48.784237"
+ x2="71.069473"
+ y2="103.29678"
+ gradientTransform="matrix(1.0024187,0,0,1.0024187,1.8117664,-2.0437022)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4858"
+ id="radialGradient3985"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-0.62257145,0,154.73095)"
+ cx="36.596191"
+ cy="51.279228"
+ fx="36.596191"
+ fy="51.279228"
+ r="34.265625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3535"
+ id="linearGradient3987"
+ gradientUnits="userSpaceOnUse"
+ x1="41.246826"
+ y1="58.851654"
+ x2="38.737919"
+ y2="104.69202" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3554"
+ id="radialGradient3989"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92468512,0,0,0.78724011,2.682504,17.471741)"
+ cx="33.015652"
+ cy="97.619926"
+ fx="33.015652"
+ fy="97.619926"
+ r="27.015595" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient26907"
+ id="radialGradient3991"
+ gradientUnits="userSpaceOnUse"
+ cx="343.99899"
+ cy="92"
+ fx="351.2594"
+ fy="66.436157"
+ r="36" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3640"
+ id="radialGradient3993"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.457792,-4.14982e-8,-2.087256e-7,1.9108522,-121.47994,-83.798392)"
+ cx="341.08624"
+ cy="77.172691"
+ fx="341.84244"
+ fy="66.635597"
+ r="36" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4117"
+ id="linearGradient3995"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1,-1,0,-39.9985,140.0029)"
+ x1="9.978035"
+ y1="-367.08105"
+ x2="-77.65287"
+ y2="-390.56168" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4205"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,-0.92732865,0.03315359,132.37215)"
+ x1="68.019264"
+ y1="47.688831"
+ x2="68.019264"
+ y2="102.47923" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4207"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.92793246,0.03315359,20.03658)"
+ x1="68.019264"
+ y1="50.058746"
+ x2="68.019264"
+ y2="119.35289" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient4209"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99977283,0,0,0.99969892,0.03288516,12.03121)"
+ x1="101.09873"
+ y1="43.709396"
+ x2="101.09873"
+ y2="108.20206" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3953"
+ id="linearGradient4211"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.90842172,0.03315359,14.588548)"
+ x1="87.53772"
+ y1="86.377098"
+ x2="87.53772"
+ y2="-16.000978" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4089"
+ id="linearGradient4213"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.99926379,0.03315359,12.044968)"
+ x1="101.09873"
+ y1="32.7673"
+ x2="101.09873"
+ y2="84.340691" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4059"
+ id="linearGradient4215"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99973916,0,0,0.99926379,0.03315359,12.044968)"
+ x1="101.09873"
+ y1="31.740467"
+ x2="101.09873"
+ y2="95.845909" />
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:collect="always"
+ id="filter4547"
+ x="-0.020830007"
+ width="1.04166"
+ y="-0.58324021"
+ height="2.1664803">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.48603352"
+ id="feGaussianBlur4549" />
+ </filter>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#XMLID_15_"
+ id="radialGradient12668"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.87993808,0,0,0.89562743,-57.04703,1023.9512)"
+ cx="7.5"
+ cy="8.3301001"
+ r="126.4133" />
+ <radialGradient
+ id="XMLID_15_"
+ cx="7.5"
+ cy="8.3301001"
+ r="126.4133"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ offset="0.2722"
+ style="stop-color:#DBC298"
+ id="stop4" />
+ <stop
+ offset="0.4545"
+ style="stop-color:#C7B08A"
+ id="stop6" />
+ <stop
+ offset="0.71829998"
+ style="stop-color:#b99c6f;stop-opacity:1;"
+ id="stop8" />
+ <stop
+ offset="0.88169998"
+ style="stop-color:#b09469;stop-opacity:1;"
+ id="stop10" />
+ <stop
+ offset="1"
+ style="stop-color:#a48a5f;stop-opacity:1;"
+ id="stop12-3-3" />
+ </radialGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#XMLID_17_"
+ id="linearGradient12670"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="0.25"
+ y1="13.2949"
+ x2="104.25"
+ y2="13.2949" />
+ <linearGradient
+ id="XMLID_17_"
+ gradientUnits="userSpaceOnUse"
+ x1="0.25"
+ y1="13.2949"
+ x2="104.25"
+ y2="13.2949">
+ <stop
+ offset="0"
+ style="stop-color:#8F6B32"
+ id="stop28-06" />
+ <stop
+ offset="0.5"
+ style="stop-color:#3e2e15;stop-opacity:1;"
+ id="stop30-4" />
+ <stop
+ offset="1"
+ style="stop-color:#8F6B32"
+ id="stop32-4" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3329"
+ id="linearGradient12672"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="45.35817"
+ y1="9.0646334"
+ x2="45.35817"
+ y2="25.815258" />
+ <linearGradient
+ id="linearGradient3329">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3331" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3333" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6524"
+ id="linearGradient12674"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="63.573593"
+ y1="16.737045"
+ x2="59.166992"
+ y2="24.58" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6524">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop6526" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop6528" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6534"
+ id="linearGradient12676"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="90.625519"
+ y1="3.1541069"
+ x2="62.901402"
+ y2="21.1523" />
+ <linearGradient
+ y2="21.1523"
+ x2="62.901402"
+ y1="4.5991001"
+ x1="91.572304"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6534">
+ <stop
+ id="stop6536"
+ style="stop-color:#AD9C80"
+ offset="0.0118" />
+ <stop
+ id="stop6538"
+ style="stop-color:#FFE6BC"
+ offset="0.02147562" />
+ <stop
+ id="stop6540"
+ style="stop-color:#C4B091"
+ offset="0.06798933" />
+ <stop
+ id="stop6542"
+ style="stop-color:#DEC8A4"
+ offset="0.11206073" />
+ <stop
+ id="stop6544"
+ style="stop-color:#B39E7C"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6548"
+ id="linearGradient12678"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.89082148,0,0,0.83944231,-58.18162,1024.8907)"
+ x1="13.051652"
+ y1="2.4199617"
+ x2="50.6035"
+ y2="26.3501" />
+ <linearGradient
+ y2="26.3501"
+ x2="50.6035"
+ y1="4.1034999"
+ x1="12.0713"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6548">
+ <stop
+ id="stop6550"
+ style="stop-color:#AD9C80"
+ offset="0.0118" />
+ <stop
+ id="stop6552"
+ style="stop-color:#FFE6BC"
+ offset="0.04393823" />
+ <stop
+ id="stop6554"
+ style="stop-color:#C4B091"
+ offset="0.07207061" />
+ <stop
+ id="stop6556"
+ style="stop-color:#DEC8A4"
+ offset="0.1025845" />
+ <stop
+ id="stop6558"
+ style="stop-color:#B39E7C"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6524"
+ id="linearGradient12680"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7859256,0,0,1.6890336,-126.04679,957.32931)"
+ x1="53.408875"
+ y1="50.796875"
+ x2="73.5625"
+ y2="43.8125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6079"
+ id="radialGradient12682"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.40924612,0,0,0.24572911,-39.77811,1014.1236)"
+ cx="62.818913"
+ cy="20.84005"
+ fx="62.818913"
+ fy="20.84005"
+ r="16" />
+ <linearGradient
+ id="linearGradient6079"
+ inkscape:collect="always">
+ <stop
+ id="stop6081"
+ offset="0"
+ style="stop-color:#2e220f;stop-opacity:1;" />
+ <stop
+ id="stop6083"
+ offset="1"
+ style="stop-color:#2e220f;stop-opacity:0;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6109"
+ id="radialGradient12684"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.22210087,-0.01705765,0.04871105,0.57002493,-42.22843,1008.9915)"
+ cx="124.67217"
+ cy="21.19462"
+ fx="124.67217"
+ fy="21.19462"
+ r="16" />
+ <linearGradient
+ id="linearGradient6109"
+ inkscape:collect="always">
+ <stop
+ id="stop6111"
+ offset="0"
+ style="stop-color:#fbe3b9;stop-opacity:1;" />
+ <stop
+ id="stop6113"
+ offset="1"
+ style="stop-color:#fbe3b9;stop-opacity:0;" />
+ </linearGradient>
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:collect="always"
+ id="filter4513"
+ x="-0.045131683"
+ width="1.0902634"
+ y="-1.2636873"
+ height="3.5273743">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.0530726"
+ id="feGaussianBlur4515" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4716"
+ id="linearGradient4722"
+ x1="79.839294"
+ y1="13.3362"
+ x2="79.839294"
+ y2="27.853235"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.0087563,5.8199073)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4716">
+ <stop
+ style="stop-color:#102134;stop-opacity:1;"
+ offset="0"
+ id="stop4718" />
+ <stop
+ style="stop-color:#102134;stop-opacity:0;"
+ offset="1"
+ id="stop4720" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4751"
+ id="radialGradient4644"
+ cx="39.701351"
+ cy="28.221918"
+ fx="39.701351"
+ fy="28.221918"
+ r="57.906349"
+ gradientTransform="matrix(2.9137548,-0.10047429,0.02264152,0.65660366,-76.310235,9.4601573)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient4751"
+ inkscape:collect="always">
+ <stop
+ id="stop4753"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:0.6" />
+ <stop
+ id="stop4755"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4608"
+ id="linearGradient4614"
+ x1="3"
+ y1="968.26129"
+ x2="3"
+ y2="953.01678"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.0087563,-918.54228)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4608">
+ <stop
+ style="stop-color:#34608f;stop-opacity:1;"
+ offset="0"
+ id="stop4610" />
+ <stop
+ style="stop-color:#34608f;stop-opacity:0;"
+ offset="1"
+ id="stop4612" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4616"
+ id="linearGradient4622"
+ x1="124.01234"
+ y1="966.51019"
+ x2="124.01234"
+ y2="935.34326"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.8750293,0,0,1,-111.995,-918.54228)" />
+ <linearGradient
+ id="linearGradient4616">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4618" />
+ <stop
+ style="stop-color:#34608f;stop-opacity:0;"
+ offset="1"
+ id="stop4620" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4624"
+ id="linearGradient4630"
+ x1="55"
+ y1="1036.4132"
+ x2="55"
+ y2="1032.4822"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4624">
+ <stop
+ style="stop-color:#003d7b;stop-opacity:1;"
+ offset="0"
+ id="stop4626" />
+ <stop
+ style="stop-color:#003d7b;stop-opacity:0;"
+ offset="1"
+ id="stop4628" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4078"
+ id="linearGradient4584"
+ x1="79"
+ y1="924.36218"
+ x2="79"
+ y2="1052.3622"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.0087563,-918.54228)" />
+ <linearGradient
+ id="linearGradient4078">
+ <stop
+ id="stop4080"
+ offset="0"
+ style="stop-color:#aec7e7;stop-opacity:0;" />
+ <stop
+ style="stop-color:#abc5e6;stop-opacity:0.49803922;"
+ offset="0.04545457"
+ id="stop4588" />
+ <stop
+ style="stop-color:#d6e3f3;stop-opacity:1"
+ offset="0.13402523"
+ id="stop4586" />
+ <stop
+ id="stop4590"
+ offset="0.92923617"
+ style="stop-color:#80a7d9;stop-opacity:1" />
+ <stop
+ id="stop4082"
+ offset="1"
+ style="stop-color:#b5cce9;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4651"
+ id="linearGradient4657"
+ x1="7.4737163"
+ y1="945.36218"
+ x2="10"
+ y2="935.93396"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.8949166,0,0,1.8949166,-7.5709037,-1755.4419)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4651">
+ <stop
+ style="stop-color:#102134;stop-opacity:1;"
+ offset="0"
+ id="stop4653" />
+ <stop
+ style="stop-color:#102134;stop-opacity:0;"
+ offset="1"
+ id="stop4655" />
+ </linearGradient>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath3834">
+ <rect
+ style="opacity:0.6457142;fill:#155293;fill-opacity:1;stroke:none"
+ id="rect3836"
+ width="118.00004"
+ height="31.5"
+ x="4"
+ y="941.36218"
+ rx="4"
+ ry="4" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4651"
+ id="linearGradient4661"
+ gradientUnits="userSpaceOnUse"
+ x1="7.7416654"
+ y1="944.36218"
+ x2="10"
+ y2="935.93396"
+ gradientTransform="matrix(-1,0,0,1,128.00875,-911.54228)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4656"
+ id="linearGradient4582"
+ gradientUnits="userSpaceOnUse"
+ x1="12.5"
+ y1="987.36218"
+ x2="12.5"
+ y2="937.36218"
+ gradientTransform="translate(0.0087563,-918.54228)" />
+ <linearGradient
+ id="linearGradient4656">
+ <stop
+ id="stop4658"
+ offset="0"
+ style="stop-color:#1a5187;stop-opacity:1;" />
+ <stop
+ id="stop4660"
+ offset="1"
+ style="stop-color:#679ee0;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10000"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8284272"
+ inkscape:cx="106.76718"
+ inkscape:cy="1.1728904"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="128px"
+ height="128px"
+ showgrid="true"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ showborder="true"
+ inkscape:grid-points="true"
+ inkscape:window-width="1918"
+ inkscape:window-height="1031"
+ inkscape:window-x="0"
+ inkscape:window-y="16"
+ inkscape:snap-guide="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="false"
+ inkscape:snap-nodes="false"
+ inkscape:window-maximized="0">
+ <inkscape:grid
+ id="GridFromPre046Settings"
+ type="xygrid"
+ originx="0px"
+ originy="0px"
+ spacingx="4px"
+ spacingy="4px"
+ color="#0000ff"
+ empcolor="#0000ff"
+ opacity="0.2"
+ empopacity="0.4"
+ empspacing="2"
+ visible="true"
+ enabled="true"
+ dotted="false"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ position="0,0"
+ orientation="0,128"
+ id="guide3227" />
+ <sodipodi:guide
+ position="128,0"
+ orientation="-128,0"
+ id="guide3229" />
+ <sodipodi:guide
+ position="128,128"
+ orientation="0,-128"
+ id="guide3231" />
+ <sodipodi:guide
+ position="0,128"
+ orientation="128,0"
+ id="guide3233" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <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="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ style="display:inline;enable-background:new"
+ id="g8210"
+ transform="matrix(1.2193102,0,0,1.2000891,78.815702,-1211.6399)">
+ <rect
+ transform="matrix(1.6519235,0,0,1.5395601,89.71648,-439.04202)"
+ ry="1"
+ rx="1"
+ style="opacity:0.66857144;fill:#000000;fill-opacity:0.74717647;stroke:none;filter:url(#filter4547)"
+ id="rect4517"
+ width="56"
+ height="2"
+ x="-89.5"
+ y="1005.2485" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="polygon14"
+ d="m 34.37704,1045.7057 -0.25,0.063 -0.3125,64.0077 -91.79054,-0.076 0.0133,-64.0019 z"
+ style="fill:url(#radialGradient12668)" />
+ <path
+ style="fill:url(#linearGradient12670)"
+ d="m -11.6362,1046.5441 -46.32271,-0.8395 28.72899,-20.1466 35.18745,0 28.729,20.1466 -46.32273,0.8395 z"
+ id="polygon34"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient12672);fill-opacity:1"
+ d="m -11.6362,1046.5441 -46.32271,-0.8395 41.75725,-16.0295 4.78817,0 46.10002,16.0295 -46.32273,0.8395 z"
+ id="polygon6516"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ style="fill:url(#linearGradient12674);fill-opacity:1"
+ d="m -11.6362,1037.2417 31.93239,3.2316 14.39034,5.0509 -46.32273,-2.279 0,-6.0035 z"
+ id="path2427"
+ inkscape:connector-curvature="0" />
+ <path
+ id="polygon49"
+ d="m -11.6362,1022.146 31.93239,3.2315 14.39034,20.1467 -44.15135,-6.0529 z"
+ style="fill:url(#linearGradient12676)"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient12678)"
+ d="m -11.6362,1036.4891 c -4.60927,2.1938 -14.6808,4.9824 -46.32271,9.2173 l 14.39211,-20.3289 c 0,0 9.58874,-1.3555 12.23103,-1.8005 11.17545,-1.8821 16.96332,-4.5577 17.26853,-5.867 0.55445,0.3632 1.75381,3.7211 1.8882,6.7092 z"
+ id="polygon69"
+ sodipodi:nodetypes="cccscsc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ id="rect6520"
+ d="m -11.63593,1022.2515 19.08708,1.7947 7.1437,20.9017 -25.25671,-2.6127 z"
+ style="opacity:0.25941425;fill:url(#linearGradient12680);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path6065"
+ d="m -11.6362,1022.3373 2.17138,17.1543 39.74072,5.425 -39.53715,-5.6824 z"
+ style="fill:#e2cca7;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccscsc"
+ id="path6069"
+ d="m -11.6362,1036.4891 c -4.60927,2.1938 -14.6808,4.9824 -46.32271,9.2173 l 14.39211,-20.3289 c 0,0 9.58874,-1.3555 12.23103,-1.8005 11.17545,-1.8821 16.96332,-4.5577 17.26853,-5.867 0.55445,0.3632 1.75381,3.7211 1.8882,6.7092 z"
+ style="opacity:0.23012552;fill:url(#radialGradient12682);fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="csccccscccccc"
+ inkscape:connector-curvature="0"
+ id="path6087"
+ d="m -14.04604,1017.7057 c -0.30521,1.3092 -6.10511,3.9932 -17.28055,5.8753 -2.64229,0.445 -12.25924,1.8012 -12.25924,1.8012 l -14.37406,20.3278 c 0.0506,-0.01 0.0853,-0.036 0.13572,-0.043 l 14.10264,-19.8989 c 0,0 9.61694,-1.3133 12.25923,-1.7583 11.17545,-1.8821 17.12203,-5.1422 17.36326,-5.9663 0.55444,0.3632 1.63761,3.7929 1.77201,6.7811 l 0.54284,11.7507 c 0.0434,-0.02 0.0933,-0.066 0.13572,-0.086 l -0.54284,-12.0508 c -0.13441,-2.9882 -1.30029,-6.3698 -1.85473,-6.7331 z"
+ style="fill:url(#radialGradient12684);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#f4eddf;fill-opacity:1;stroke:none"
+ d="m -57.88999,1045.7783 45.38637,0.7789 45.59442,-0.185 -45.39086,-0.072 z"
+ id="path6123"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ transform="matrix(1.6460148,0,0,1.5395601,89.51853,-439.04202)"
+ y="1005.4485"
+ x="-89.5"
+ height="2"
+ width="56"
+ id="rect3731"
+ style="opacity:0.34857142;fill:#3e3e3e;fill-opacity:0.74717647;stroke:none;filter:url(#filter4513)" />
+ </g>
+ </g>
+</svg>
diff --git a/torrent.png b/torrent.png
new file mode 100644
index 0000000..7165d1b
--- /dev/null
+++ b/torrent.png
Binary files differ
diff --git a/txt.png b/txt.png
new file mode 100644
index 0000000..01b07e8
--- /dev/null
+++ b/txt.png
Binary files differ