first commit

This commit is contained in:
2024-05-31 14:18:00 +07:00
commit 1f8ef5e17f
4029 changed files with 777987 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
<?php
include('../../koneksi.php');
$key=$_POST['key'];
if ($key=='simpan_pejabat') {
$id=$_POST['id'];
$pangkat=$_POST['pangkat'];
$data_pegawai_id=$_POST['data_pegawai_id'];
$aktif=$_POST['aktif'];
$userlogin=$_POST['userlogin'];
$password=$_POST['password'];
$imp4=$_POST['imp4'];
$cek_kepala=pg_query("SELECT id FROM data_kepala WHERE id='$id'");
$row_kepala = pg_fetch_row($cek_kepala);
if ($row_kepala[0] > 0) {
$upd_kepala = pg_query("UPDATE data_kepala SET
pangkat='$pangkat',
data_pegawai_id='$data_pegawai_id',
aktif='$aktif',
modified_at=NOW()
WHERE id='$id'");
$upd_user=pg_query("UPDATE data_user
SET nama='$userlogin',password='$password',data_pegawai_id='$data_pegawai_id',aktif='t',modified_at=NOW(),data_kepala_id='$id' WHERE id=(SELECT id FROM data_user WHERE data_kepala_id='$id')");
} else {
$ins_kepala = pg_query("INSERT into data_kepala (
pangkat,
data_pegawai_id,
aktif,
created_at,
modified_at
) values (
'$pangkat',
'$data_pegawai_id',
'$aktif',
NOW(),
NOW()
)
");
$idmax=pg_query("SELECT MAX(id) FROM data_kepala");
while($rmax=pg_fetch_array($idmax)) {$data_kepala_id=$rmax[0];}
$ins_user=pg_query("INSERT INTO data_user (nama,password,data_pegawai_id,jenis_user,aktif,created_at,modified_at,data_kepala_id) VALUES (
'$userlogin','$password','$data_pegawai_id','3','t',NOW(),NOW(),'$data_kepala_id')");
}
echo $pangkat;
} else
if ($key=='list_kepala') {
$id_ms_pegawai=$_POST['id_ms_pegawai'];
$list=pg_query("SELECT p.nipb,s.nama FROM data_pegawai p INNER JOIN jabatan_pegawai s ON (s.id=p.jabatan_pegawai_id) WHERE p.id='$id_ms_pegawai'");
while($rlist=pg_fetch_array($list)) {
$nipb=$rlist[0];
$jabatan=$rlist[1];
echo $nipb.'$%^'.$jabatan;
}
} else
if ($key=='delete_kepala') {
$id=$_POST['id'];
$del_kepala = pg_query("DELETE FROM data_kepala WHERE id='$id'");
} else
if ($key=='list_jabatan') {
$jabatan_pegawai_id=$_POST['jabatan_pegawai_id'];
$list=pg_query("SELECT p.nipb,p.nama FROM data_pegawai p INNER JOIN jabatan_pegawai s ON (s.id=p.jabatan_pegawai_id) WHERE s.id='$jabatan_pegawai_id'");
while($rlist=pg_fetch_array($list)) {
$nipb=$rlist[0];
$nama=$rlist[1];
echo $nipb.'$%^'.$nama;
}
}
?>

View File

@@ -0,0 +1,96 @@
<?php
$cek_data_user_id=$_POST['cek_data_user_id'];
$cek_jenis=$_POST['cek_jenis'];
?>
<input type="hidden" id="par_user_id" value="<?php echo $cek_data_user_id; ?>">
<input type="hidden" id="par_jenis" value="<?php echo $cek_jenis; ?>">
<div class="row">
<div class="col-lg-2">
<button type="button" id="btn_baru_pejabat" class="btn btn-danger btn-rounded waves-effect waves-light">
<i class="fa fa-plus m-r-5"></i> Pejabat
</button>
</div>
</div>
<br>
<div id="tabel_pejabat"></div>
<div id="modal_pejabat" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header no-border">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Add Pejabat</h4>
</div>
<div class="modal-body" id="modal_body_pejabat"></div>
<div class="modal-footer no-border">
<button type="button" class="btn btn-default waves-effect" data-dismiss="modal" id="keluar_pejabat">Keluar</button>
<button type="button" class="btn btn-primary waves-effect waves-light" id="simpan_pejabat">Simpan</button>
</div>
</div>
</div>
</div>
<script>
var par_user_id = $('#par_user_id').val();
var par_jenis = $('#par_jenis').val();
$('#tabel_pejabat').load("app/master/pejabat/tabel.php", {par_user_id:par_user_id, par_jenis:par_jenis});
$('#btn_baru_pejabat').click(function(){
var id = 0;
$('#modal_pejabat').modal('show');
$('#modal_body_pejabat').html("");
$.ajax({
type: "POST",
url: "app/master/pejabat/modal.php",
data: 'id='+id,
success: function(data){
$('#modal_body_pejabat').html(data);
$('#kategori').first().focus().selected();
}
});
});
$('#simpan_pejabat').click(function(){
var id = $('#id_ms_pejabat').val();
var pangkat = $('#pangkat').val();
var imp4 = $("#kepala_nama").val();
var z4 = $('#browsers1');
var val4 = $(z4).find('option[value="' + imp4 + '"]');
var data_pegawai_id = val4.attr('id_ms_pegawaiB');
var aktif = $('#kepala_aktif').val();
var userlogin = $('#userlogin').val();
var password = $('#password').val();
var key = 'simpan_pejabat';
$.ajax({
type: "POST",
url: "app/master/pejabat/crud.php",
data: 'id='+id
+'&pangkat='+pangkat
+'&data_pegawai_id='+data_pegawai_id
+'&aktif='+aktif
+'&userlogin='+userlogin
+'&password='+password
+'&key='+key,
success: function(data){
$('#modal_pejabat').modal('hide');
$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
alert('tersimpan..');
$('#tabel_pejabat').load("app/master/pejabat/tabel.php");
}
});
});
$("#modal_pejabat").on("hidden.bs.modal", function () {
$(this).off('hidden.bs.modal');
});
</script>

View File

@@ -0,0 +1,163 @@
<?php
include ('../../koneksi.php');
$id=$_POST['id'];
$data=pg_query("SELECT u.*,p.nama,p.nipb,s.nama,a.nama,a.password
FROM data_kepala u
INNER JOIN data_pegawai p ON (p.id=u.data_pegawai_id)
INNER JOIN jabatan_pegawai s ON (s.id=p.jabatan_pegawai_id)
LEFT OUTER JOIN data_user a ON (u.id=a.data_kepala_id)
WHERE u.id='$id'");
while($row=pg_fetch_array($data)) {
$id=$row['id'];
$pangkat=$row['pangkat'];
$data_pegawai_id=$row['data_pegawai_id'];
$aktif=$row['aktif'];
$nama=$row[8];
$nipb=$row[9];
$jabatan=$row[10];
$userlogin=$row[11];
$password=$row[12];
}
?>
<form role="form">
<div class="form-group">
<label for="exampleInputEmail1">Jabatan</label>
<input type="text" list="browsers2" name="browser2" class="form-control" id="kepala_jabatan" value="<?php echo $jabatan; ?>">
<datalist id="browsers2">
<?php
$userpeg=pg_query("SELECT nama,id FROM jabatan_pegawai
ORDER BY nama ASC");
while($rows=pg_fetch_assoc($userpeg)) {
?>
<option id_ms_pegawaiC="<?php echo($rows['id']);?>" value="<?php echo $rows['nama']; ?>">
<?php
}
?>
</datalist>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Nama Pejabat</label>
<input type="hidden" value="<?php echo $id; ?>" id="id_ms_pejabat">
<input type="text" class="form-control" list="browsers1" name="browser1" id="kepala_nama" value="<?php echo $nama; ?>" disabled>
<datalist id="browsers1">
<?php
$userpeg=pg_query("SELECT nama,id FROM data_pegawai WHERE aktif='t'
ORDER BY nama ASC");
while($rows=pg_fetch_assoc($userpeg)) {
?>
<option id_ms_pegawaiB="<?php echo($rows['id']);?>" value="<?php echo $rows['nama']; ?>">
<?php
}
?>
</datalist>
</div>
<div class="form-group">
<label for="exampleInputEmail1">NIP</label>
<input type="email" class="form-control" id="nip" value="<?php echo $nipb; ?>" disabled>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Pangkat</label>
<input type="text" class="form-control" value="<?php echo $pangkat; ?>" id="pangkat" >
</div>
<div class="form-group">
<label for="exampleInputEmail1">Aktif</label>
<select class="form-control" id="kepala_aktif">
<option></option>
<option <?php if ($aktif=='t') {echo "selected";} ?> value="1">AKTIF</option>
<option <?php if ($aktif=='f') {echo "selected";} ?> value="0">OFF</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputEmail1">User Login</label>
<input type="text" class="form-control" value="<?php echo $userlogin; ?>" id="userlogin" >
</div>
<div class="form-group">
<label for="exampleInputEmail1">Password</label>
<input type="text" class="form-control" value="<?php echo $password; ?>" id="password" >
</div>
</form>
<script>
$("#kepala_jabatan").change(function(){
var imp5 = $("#kepala_jabatan").val();
var z5 = $('#browsers2');
var val5 = $(z5).find('option[value="' + imp5 + '"]');
var a = val5.attr('id_ms_pegawaiC');
var key = "list_jabatan";
if (!a) {
alert('Jabatan tidak terdaftar..');
$('#nip').val('');
$('#kepala_nama').val('');
$('#pangkat').prop('disabled',true);
$('#kepala_jabatan').val('');
$('#kepala_jabatan').first().focus().selected();
} else {
$.ajax({
type: "POST",
url: "app/master/pejabat/crud.php",
data: 'jabatan_pegawai_id='+a
+'&key='+key,
success: function(data){
var chars = data.split('$%^');
$('#nip').val(chars[0]);
$('#kepala_nama').val(chars[1]);
$('#pangkat').prop('disabled',false);
$('#pangkat').first().focus().selected();
}
});
}
});
$("#kepala_aktif").focusin(function(){
var imp5 = $("#kepala_jabatan").val();
var z5 = $('#browsers2');
var val5 = $(z5).find('option[value="' + imp5 + '"]');
var a = val5.attr('id_ms_pegawaiC');
if (!a) {
$('#kepala_jabatan').first().focus().selected();
}
});
$("#kepala_nama").change(function(){
var imp4 = $("#kepala_nama").val();
var z4 = $('#browsers1');
var val4 = $(z4).find('option[value="' + imp4 + '"]');
var a = val4.attr('id_ms_pegawaiB');
var key = "list_kepala";
if (!a) {
alert('Pegawai tidak terdaftar..');
$('#nip').val('');
$('#kepala_jabatan').val('');
$('#pangkat').prop('disabled',true);
$('#kepala_nama').first().focus().selected();
} else {
$.ajax({
type: "POST",
url: "app/master/pejabat/crud.php",
data: 'id_ms_pegawai='+a
+'&key='+key,
success: function(data){
var chars = data.split('$%^');
$('#nip').val(chars[0]);
$('#kepala_jabatan').val(chars[1]);
$('#pangkat').prop('disabled',false);
$('#pangkat').first().focus().selected();
}
});
}
});
</script>

View File

@@ -0,0 +1,63 @@
<?php
include("../../koneksi.php");
$data_kepala_id=$_POST['id'];
?>
<div class="body">
<form id="fr_ssn_dok" name="fr_ssn_dok" class="form-horizontal" method="post" onsubmit="return false;" enctype="multipart/form-data">
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<input type="hidden" id="data_kepala_id" name="data_kepala_id" value="<?php echo $_POST['id'];?>">
<center><img id='blah1_dok' class='thumbnail img-responsive' src='app/master/pejabat/paraf/no-avatar.png' /></center>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<input type="file" name='file_dok' id="file_dok" accept="image/*" class="filestyle" onchange="loadFile(event)" data-input="false" data-buttonname="btn-primary" style="display:none;">
<button type="button" class="btn btn-block btn-primary" id="input_foto_dokumen" name="input_foto_dokumen" style="display:none"><i class="fa fa-folder-open" style="font-size:15px;"></i>&nbsp;&nbsp;&nbsp;Input Paraf</button>
</div>
<div class="col-lg-12">
<input type='submit' value='Simpan' style="margin-bottom:-40px;" id="simpan_dokumen" class="btn btn-block btn--md btn-danger waves-effect waves-light"/>
</div>
</div>
</form>
</div>
<script>
$('#simpan_dokumen').hide();
$('#blah1_dok').click(function(){
$('#file_dok').trigger('click');
});
/*$("button[name='input_foto_dokumen']").click(function(){
$('#file_dok').trigger('click');
});*/
var loadFile = function(event) {
var output = document.getElementById('blah1_dok');
output.src = URL.createObjectURL(event.target.files[0]);
$('#simpan_dokumen').show();
};
$("#fr_ssn_dok").on('submit',(function(e) {
e.preventDefault();
$.ajax({
url: "app/master/pejabat/upload_dok.php",
type: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData:false,
success: function(data)
{
alert("Foto Tersimpan..");
$('#modal_dok').modal('hide');
$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
$('#tabel_pejabat').load("app/master/pejabat/tabel.php");
}
});
}));
</script>

View File

@@ -0,0 +1,108 @@
<?php
include("../../koneksi.php");
$cek_data_user_id=$_POST['cek_data_user_id'];
//$d=pg_query("SELECT u.data_kepala_id,p.jabatan_pegawai_id FROM data_user u INNER JOIN data_pegawai p ON (p.id=u.data_pegawai_id) WHERE u.id='$cek_data_user_id'");
$d=pg_query("SELECT id,jabatan_pegawai_id FROM data_user WHERE id='$cek_data_user_id'");
while($r=pg_fetch_array($d)) {
//$data_kepala_id=$r[0];
$data_user_id=$r[0];
$jabatan_pegawai_id=$r[1];
}
//$e=pg_query("SELECT paraf FROM data_kepala WHERE id='$data_kepala_id'");
$e=pg_query("SELECT paraf FROM data_user WHERE id='$cek_data_user_id'");
while($p=pg_fetch_array($e)) {
$paraf=$p[0];
}
?>
<style>
.row-centered {
text-align:center;
}
.col-centered {
display:inline-block;
float:none;
/* reset the text-align */
text-align:left;
/* inline-block space fix */
margin-right:-4px;
}
</style>
<div class="row row-centered">
<div class="col-lg-4 col-centered ">
<h4><center>Klik gambar untuk load file scan paraf<center></h4>
<br>
<form id="fr_ssn_dok" name="fr_ssn_dok" class="form-horizontal" method="post" onsubmit="return false;" enctype="multipart/form-data">
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<input type="hidden" id="data_user_id" name="data_user_id" value="<?php echo $data_user_id;?>">
<input type="hidden" id="jabatan_pegawai_id" name="jabatan_pegawai_id" value="<?php echo $jabatan_pegawai_id;?>">
<center>
<?php
if ((empty($paraf)) || ($paraf=="") || ($paraf==null)) {
?>
<img id='blah1_dok' class='thumbnail img-responsive' src='app/master/pejabat/paraf/no-avatar.png' />
<?php
} else {
?>
<img id='blah1_dok' class='thumbnail img-responsive' src='app/master/pejabat/paraf/<?php echo $paraf; ?>' />
<?php
}
?>
</center>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<input type="file" name='file_dok' id="file_dok" accept="image/*" class="filestyle" onchange="loadFile(event)" data-input="false" data-buttonname="btn-primary" style="display:none;">
<button type="button" class="btn btn-block btn-primary" id="input_foto_dokumen" name="input_foto_dokumen" style="display:none"><i class="fa fa-folder-open" style="font-size:15px;"></i>&nbsp;&nbsp;&nbsp;Input Paraf</button>
</div>
<div class="col-lg-12">
<input type='submit' value='Simpan' id="simpan_dokumen" class="btn btn-block btn--md btn-danger waves-effect waves-light"/>
</div>
</div>
</form>
</div>
</div>
<script>
$('#simpan_dokumen').hide();
$('#blah1_dok').click(function(){
$('#file_dok').trigger('click');
});
/*$("button[name='input_foto_dokumen']").click(function(){
$('#file_dok').trigger('click');
});*/
var loadFile = function(event) {
var output = document.getElementById('blah1_dok');
output.src = URL.createObjectURL(event.target.files[0]);
$('#simpan_dokumen').show();
};
$("#fr_ssn_dok").on('submit',(function(e) {
e.preventDefault();
$.ajax({
url: "app/master/pejabat/upload_dok.php",
type: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData:false,
success: function(data)
{
alert("Foto Tersimpan..");
$('#modal_dok').modal('hide');
$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
//$('#tabel_pejabat').load("app/master/pejabat/tabel.php");
}
});
}));
</script>

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 MiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

Binary file not shown.

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Some files were not shown because too many files have changed in this diff Show More