initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 53
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default
END

View File

@@ -0,0 +1,34 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/sf/sf_default
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
images
dir
css
dir

View File

@@ -0,0 +1,23 @@
K 25
svn:wc:ra_dav:version-url
V 57
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/css
END
ie.css
K 25
svn:wc:ra_dav:version-url
V 64
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/css/ie.css
END
screen.css
K 25
svn:wc:ra_dav:version-url
V 68
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/css/screen.css
END
pngfix.htc
K 25
svn:wc:ra_dav:version-url
V 68
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/css/pngfix.htc
END

View File

@@ -0,0 +1,130 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/sf/sf_default/css
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
ie.css
file
2010-07-31T05:41:33.000000Z
1917ca8ae8c9e2d4c36dcdae69ae6142
2009-05-28T02:14:48.119086Z
25
ben
58
screen.css
file
2010-07-31T05:41:33.000000Z
d0fcf286c72cd3b7af2777b761d169d5
2009-05-28T02:14:48.119086Z
25
ben
2818
pngfix.htc
file
2010-07-31T05:41:33.000000Z
60f19822413722497264489d3d1ada93
2009-05-28T02:14:48.119086Z
25
ben
2049

View File

@@ -0,0 +1,4 @@
img
{
behavior: url("/sf/sf_default/css/pngfix.htc");
}

View File

@@ -0,0 +1,86 @@
<public:component lightWeight="true">
<public:attach event="onpropertychange" onevent="propertyChanged()" />
<public:attach event="onbeforeprint" onevent="beforePrint()" for="window"/>
<public:attach event="onafterprint" onevent="afterPrint()" for="window"/>
<script>
/*
* PNG Behavior
*
* This script was created by Erik Arvidsson (http://webfx.eae.net/contact.html#erik)
* for WebFX (http://webfx.eae.net)
* Copyright 2002-2004
*
* For usage see license at http://webfx.eae.net/license.html
*
* Version: 1.02
* Created: 2001-??-?? First working version
* Updated: 2002-03-28 Fixed issue when starting with a non png image and
* switching between non png images
* 2003-01-06 Fixed RegExp to correctly work with IE 5.0x
* 2004-05-09 When printing revert to original
*
*/
var supported = /MSIE ((5\.5)|[6789])/.test(navigator.userAgent) &&
navigator.platform == "Win32";
var realSrc;
var blankSrc = "/sf/sf_default/images/trans.gif";
var isPrinting = false;
if (supported) fixImage();
function propertyChanged() {
if (!supported || isPrinting) return;
var pName = event.propertyName;
if (pName != "src") return;
// if not set to blank
if (!new RegExp(blankSrc).test(src))
fixImage();
};
function fixImage() {
// get src
var src = element.src;
// check for real change
if (src == realSrc && /\.png$/i.test(src)) {
element.src = blankSrc;
return;
}
if ( ! new RegExp(blankSrc).test(src)) {
// backup old src
realSrc = src;
}
// test for png
if (/\.png$/i.test(realSrc)) {
// set blank image
element.src = blankSrc;
// set filter
element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft." +
"AlphaImageLoader(src='" + src + "',sizingMethod='scale')";
}
else {
// remove filter
element.runtimeStyle.filter = "";
}
}
function beforePrint() {
isPrinting = true;
element.src = realSrc;
element.runtimeStyle.filter = "";
realSrc = null;
}
function afterPrint() {
isPrinting = false;
fixImage();
}
</script>
</public:component>

View File

@@ -0,0 +1,182 @@
body
{
font-family: "Trebuchet MS", Geneva, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
font-size: 80%;
background-image: url(../images/bg_body.jpg);
background-repeat: repeat-x;
background-color: #E4D7C5;
color: #81571F;
text-align: center;
}
img
{
border: none;
}
a
{
color: #81571F;
text-decoration: underline;
}
a:hover
{
color: #CC0000;
text-decoration: none;
}
code
{
font-size:120%;
}
.sfTContainer
{
position: relative;
text-align: left;
width: 515px;
margin: 0 auto;
padding: 0;
margin-top: 115px;
}
.sfTMessageContainer
{
padding: 5px;
margin-top: 25px;
float: left;
width: 515px;
}
.sfTMessage
{
background-image: url(../images/bg_sfTMessage.jpg);
background-repeat: repeat-x;
background-color: #E8DDCF;
border: 1px solid #FFFFFF;
border-bottom-color: #C2AB8C;
border-right-color: #C2AB8C;
}
.sfTAlert
{
background-image: url(../images/bg_sfTAlert.jpg);
background-repeat: repeat-x;
background-color: #F8E1D1;
border: 1px solid #FFFFFF;
border-bottom-color: #F0B17C;
border-right-color: #F0B17C;
}
.sfTLock
{
background-image: url(../images/bg_sfTLock.jpg);
background-repeat: repeat-x;
background-color: #DEE8F2;
border: 1px solid #FFFFFF;
border-bottom-color: #B1C4EC;
border-right-color: #B1C4EC;
}
.sfTMessageContainer .sfTMessageWrap
{
float: left;
width: 440px;
}
.sfTMessageContainer .sfTMessageWrap h1
{
color: #503512;
font-weight: normal;
font-size: 165%;
padding: 0;
margin: 0;
line-height: 100%;
padding-top: 5px;
}
.sfTMessageContainer .sfTMessageWrap h5
{
font-weight: normal;
font-size: 100%;
padding: 0;
margin: 0;
}
.sfTMessageContainer img.sfTMessageIcon
{
width: 48px;
height: 48px;
float: left;
margin-right: 12px;
margin-left: 5px;
}
.sfTMessageInfo
{
margin: 0;
padding: 0;
margin-top: 15px;
float: left;
width: 440px;
}
.sfTMessageInfo dt
{
font-weight: bolder;
font-size: 115%;
margin: 5px 0;
}
.sfTMessageInfo dd
{
margin: 0;
padding: 0;
}
.sfTIconList
{
margin: 0;
padding: 0;
list-style: none;
}
.sfTIconList li
{
clear: left;
line-height: 170%;
padding-left: 20px;
}
.sfTIconList li.sfTDatabaseMessage
{
background: url(../images/icons/db16.png) no-repeat top left;
}
.sfTIconList li.sfTColorMessage
{
background: url(../images/icons/colour16.png) no-repeat top left;
}
.sfTIconList li.sfTLinkMessage
{
background: url(../images/icons/linkOut16.png) no-repeat top left;
}
.sfTIconList li.sfTDirectoryMessage
{
background: url(../images/icons/folder16.png) no-repeat top left;
}
.sfTIconList li.sfTEditMessage
{
background: url(../images/icons/edit16.png) no-repeat top left;
}
.sfTIconList li.sfTReloadMessage
{
background: url(../images/icons/reload16.png) no-repeat top left;
}

View File

@@ -0,0 +1,4 @@
img
{
behavior: url("/sf/sf_default/css/pngfix.htc");
}

View File

@@ -0,0 +1,86 @@
<public:component lightWeight="true">
<public:attach event="onpropertychange" onevent="propertyChanged()" />
<public:attach event="onbeforeprint" onevent="beforePrint()" for="window"/>
<public:attach event="onafterprint" onevent="afterPrint()" for="window"/>
<script>
/*
* PNG Behavior
*
* This script was created by Erik Arvidsson (http://webfx.eae.net/contact.html#erik)
* for WebFX (http://webfx.eae.net)
* Copyright 2002-2004
*
* For usage see license at http://webfx.eae.net/license.html
*
* Version: 1.02
* Created: 2001-??-?? First working version
* Updated: 2002-03-28 Fixed issue when starting with a non png image and
* switching between non png images
* 2003-01-06 Fixed RegExp to correctly work with IE 5.0x
* 2004-05-09 When printing revert to original
*
*/
var supported = /MSIE ((5\.5)|[6789])/.test(navigator.userAgent) &&
navigator.platform == "Win32";
var realSrc;
var blankSrc = "/sf/sf_default/images/trans.gif";
var isPrinting = false;
if (supported) fixImage();
function propertyChanged() {
if (!supported || isPrinting) return;
var pName = event.propertyName;
if (pName != "src") return;
// if not set to blank
if (!new RegExp(blankSrc).test(src))
fixImage();
};
function fixImage() {
// get src
var src = element.src;
// check for real change
if (src == realSrc && /\.png$/i.test(src)) {
element.src = blankSrc;
return;
}
if ( ! new RegExp(blankSrc).test(src)) {
// backup old src
realSrc = src;
}
// test for png
if (/\.png$/i.test(realSrc)) {
// set blank image
element.src = blankSrc;
// set filter
element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft." +
"AlphaImageLoader(src='" + src + "',sizingMethod='scale')";
}
else {
// remove filter
element.runtimeStyle.filter = "";
}
}
function beforePrint() {
isPrinting = true;
element.src = realSrc;
element.runtimeStyle.filter = "";
realSrc = null;
}
function afterPrint() {
isPrinting = false;
fixImage();
}
</script>
</public:component>

View File

@@ -0,0 +1,182 @@
body
{
font-family: "Trebuchet MS", Geneva, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
font-size: 80%;
background-image: url(../images/bg_body.jpg);
background-repeat: repeat-x;
background-color: #E4D7C5;
color: #81571F;
text-align: center;
}
img
{
border: none;
}
a
{
color: #81571F;
text-decoration: underline;
}
a:hover
{
color: #CC0000;
text-decoration: none;
}
code
{
font-size:120%;
}
.sfTContainer
{
position: relative;
text-align: left;
width: 515px;
margin: 0 auto;
padding: 0;
margin-top: 115px;
}
.sfTMessageContainer
{
padding: 5px;
margin-top: 25px;
float: left;
width: 515px;
}
.sfTMessage
{
background-image: url(../images/bg_sfTMessage.jpg);
background-repeat: repeat-x;
background-color: #E8DDCF;
border: 1px solid #FFFFFF;
border-bottom-color: #C2AB8C;
border-right-color: #C2AB8C;
}
.sfTAlert
{
background-image: url(../images/bg_sfTAlert.jpg);
background-repeat: repeat-x;
background-color: #F8E1D1;
border: 1px solid #FFFFFF;
border-bottom-color: #F0B17C;
border-right-color: #F0B17C;
}
.sfTLock
{
background-image: url(../images/bg_sfTLock.jpg);
background-repeat: repeat-x;
background-color: #DEE8F2;
border: 1px solid #FFFFFF;
border-bottom-color: #B1C4EC;
border-right-color: #B1C4EC;
}
.sfTMessageContainer .sfTMessageWrap
{
float: left;
width: 440px;
}
.sfTMessageContainer .sfTMessageWrap h1
{
color: #503512;
font-weight: normal;
font-size: 165%;
padding: 0;
margin: 0;
line-height: 100%;
padding-top: 5px;
}
.sfTMessageContainer .sfTMessageWrap h5
{
font-weight: normal;
font-size: 100%;
padding: 0;
margin: 0;
}
.sfTMessageContainer img.sfTMessageIcon
{
width: 48px;
height: 48px;
float: left;
margin-right: 12px;
margin-left: 5px;
}
.sfTMessageInfo
{
margin: 0;
padding: 0;
margin-top: 15px;
float: left;
width: 440px;
}
.sfTMessageInfo dt
{
font-weight: bolder;
font-size: 115%;
margin: 5px 0;
}
.sfTMessageInfo dd
{
margin: 0;
padding: 0;
}
.sfTIconList
{
margin: 0;
padding: 0;
list-style: none;
}
.sfTIconList li
{
clear: left;
line-height: 170%;
padding-left: 20px;
}
.sfTIconList li.sfTDatabaseMessage
{
background: url(../images/icons/db16.png) no-repeat top left;
}
.sfTIconList li.sfTColorMessage
{
background: url(../images/icons/colour16.png) no-repeat top left;
}
.sfTIconList li.sfTLinkMessage
{
background: url(../images/icons/linkOut16.png) no-repeat top left;
}
.sfTIconList li.sfTDirectoryMessage
{
background: url(../images/icons/folder16.png) no-repeat top left;
}
.sfTIconList li.sfTEditMessage
{
background: url(../images/icons/edit16.png) no-repeat top left;
}
.sfTIconList li.sfTReloadMessage
{
background: url(../images/icons/reload16.png) no-repeat top left;
}

View File

@@ -0,0 +1,41 @@
K 25
svn:wc:ra_dav:version-url
V 60
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images
END
sfTLogo.png
K 25
svn:wc:ra_dav:version-url
V 72
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/sfTLogo.png
END
bg_body.jpg
K 25
svn:wc:ra_dav:version-url
V 72
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/bg_body.jpg
END
bg_sfTMessage.jpg
K 25
svn:wc:ra_dav:version-url
V 78
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/bg_sfTMessage.jpg
END
bg_sfTAlert.jpg
K 25
svn:wc:ra_dav:version-url
V 76
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/bg_sfTAlert.jpg
END
trans.gif
K 25
svn:wc:ra_dav:version-url
V 70
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/trans.gif
END
bg_sfTLock.jpg
K 25
svn:wc:ra_dav:version-url
V 75
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/bg_sfTLock.jpg
END

View File

@@ -0,0 +1,235 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/sf/sf_default/images
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
sfTLogo.png
file
2010-07-31T05:41:33.000000Z
3b15dee62bcd06b7407909d26364c6a9
2009-05-28T02:14:48.119086Z
25
ben
has-props
5139
bg_body.jpg
file
2010-07-31T05:41:33.000000Z
7210be19a72803d92dd6f19650e7e73f
2009-05-28T02:14:48.119086Z
25
ben
has-props
1636
bg_sfTMessage.jpg
file
2010-07-31T05:41:33.000000Z
3811c380b7016267d29eabe5a764aeba
2009-05-28T02:14:48.119086Z
25
ben
has-props
384
icons
dir
bg_sfTAlert.jpg
file
2010-07-31T05:41:33.000000Z
b9a296cfce3304665e3b32ee10d1f536
2009-05-28T02:14:48.119086Z
25
ben
has-props
324
trans.gif
file
2010-07-31T05:41:33.000000Z
a28564d520ad282c4b9352b8c32cc1d6
2009-05-28T02:14:48.119086Z
25
ben
has-props
63
bg_sfTLock.jpg
file
2010-07-31T05:41:33.000000Z
547b2a8bc5c0e78ef61b48583a0ec35f
2009-05-28T02:14:48.119086Z
25
ben
has-props
325

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

View File

@@ -0,0 +1,71 @@
K 25
svn:wc:ra_dav:version-url
V 66
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons
END
db16.png
K 25
svn:wc:ra_dav:version-url
V 75
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/db16.png
END
edit16.png
K 25
svn:wc:ra_dav:version-url
V 77
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/edit16.png
END
linkOut16.png
K 25
svn:wc:ra_dav:version-url
V 80
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/linkOut16.png
END
tools48.png
K 25
svn:wc:ra_dav:version-url
V 78
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/tools48.png
END
reload16.png
K 25
svn:wc:ra_dav:version-url
V 79
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/reload16.png
END
cancel48.png
K 25
svn:wc:ra_dav:version-url
V 79
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/cancel48.png
END
folder16.png
K 25
svn:wc:ra_dav:version-url
V 79
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/folder16.png
END
disabled48.png
K 25
svn:wc:ra_dav:version-url
V 81
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/disabled48.png
END
lock48.png
K 25
svn:wc:ra_dav:version-url
V 77
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/lock48.png
END
ok48.png
K 25
svn:wc:ra_dav:version-url
V 75
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/ok48.png
END
colour16.png
K 25
svn:wc:ra_dav:version-url
V 79
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/sf/sf_default/images/icons/colour16.png
END

View File

@@ -0,0 +1,402 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/sf/sf_default/images/icons
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
db16.png
file
2010-07-31T05:41:33.000000Z
48bd506b587a626509c17f5b48f16846
2009-05-28T02:14:48.119086Z
25
ben
has-props
661
edit16.png
file
2010-07-31T05:41:33.000000Z
885ac8681ca0855c6750063c57ae5ae1
2009-05-28T02:14:48.119086Z
25
ben
has-props
590
linkOut16.png
file
2010-07-31T05:41:33.000000Z
349e853951d88c90cd858357b13d56f0
2009-05-28T02:14:48.119086Z
25
ben
has-props
599
tools48.png
file
2010-07-31T05:41:33.000000Z
11b6330b8e145d28a5e56166d75b2fed
2009-05-28T02:14:48.119086Z
25
ben
has-props
4170
reload16.png
file
2010-07-31T05:41:33.000000Z
fc435fc73bce62af7a21d3737f942791
2009-05-28T02:14:48.119086Z
25
ben
has-props
761
cancel48.png
file
2010-07-31T05:41:33.000000Z
830e026da5499b283a6ac9e8e30f09ce
2009-05-28T02:14:48.119086Z
25
ben
has-props
3669
folder16.png
file
2010-07-31T05:41:33.000000Z
7af36113c5d0fd4a81bc9ce155c259b5
2009-05-28T02:14:48.119086Z
25
ben
has-props
623
disabled48.png
file
2010-07-31T05:41:33.000000Z
398efc314a33aa0d81a3980441922769
2009-05-28T02:14:48.119086Z
25
ben
has-props
4037
lock48.png
file
2010-07-31T05:41:33.000000Z
4de5f7680ad2742766aabddc0345f072
2009-05-28T02:14:48.119086Z
25
ben
has-props
2287
ok48.png
file
2010-07-31T05:41:33.000000Z
75811a4ddf2de574e209d547c14ba614
2009-05-28T02:14:48.119086Z
25
ben
has-props
3106
colour16.png
file
2010-07-31T05:41:33.000000Z
2e24d8b3cdecc688cae2b128e5084b36
2009-05-28T02:14:48.119086Z
25
ben
has-props
927

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

View File

@@ -0,0 +1,5 @@
K 13
svn:mime-type
V 24
application/octet-stream
END

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 927 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 927 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 B