studentenportal / deploy

:ship: The studentenportal.ch deployment
https://studentenportal.ch
0 stars 0 forks source link

775-permissions für alte Files #26

Closed The-Compiler closed 3 years ago

The-Compiler commented 3 years ago

Es scheint, als ob einige alte Files (~2012-2015 und die Imports aus dem alten Studentenportal) die Berechtigungen 775 (-rwxrwxr-x) statt 644 (-rw-r--r--) haben. Spricht was dagegen, die noch entsprechend zu korrigieren?

root@vshsr01:/home/studentenportal/media/documents# find . -type f | wc -l          
4080
root@vshsr01:/home/studentenportal/media/documents# find . -type f -perm 644 | wc -l
1362
root@vshsr01:/home/studentenportal/media/documents# find . -type f -perm 775 | wc -l
2718

Vorschlag:

root@vshsr01:/home/studentenportal/media/documents# find . -type f -perm 775 -exec chmod -v 644 {} +
The-Compiler commented 3 years ago

Ähnlich siehts auch bei den Verzeichnissen aus:

root@vshsr01:/home/studentenportal/media/documents# find . -type d | wc -l           
285
root@vshsr01:/home/studentenportal/media/documents# find . -type d -perm 755 | wc -l
116
root@vshsr01:/home/studentenportal/media/documents# find . -type d -perm 775 | wc -l
169

da würde ich also ebenfalls vorschlagen:

root@vshsr01:/home/studentenportal/media/documents# find . -type d -perm 775 -exec chmod -v 755 {} +
The-Compiler commented 3 years ago

Hmm, Moment, die unterschiedlichen Berechtigungen würden dann vermutlich #23 erklären. Eigentlich müssten die Verzeichnisse wohl doch 775-Berechtigungen haben, weil sie vom User studentenportal erstellt werden, aber mittels sendfile danach der nginx-Container da rein schreiben sollte.

Dann also wohl die Berechtigungen auf 775 setzen und den Code entsprechend anpassen, dass er das für neue Module ebenfalls tut - was meint ihr?

dbrgn commented 3 years ago

Klingt gut!

The-Compiler commented 3 years ago

Gut, done. Habe für die Verzeichnisse nun doch 755 gesetzt, weil das Hochladen trotzdem funktioniert so. Solange das läuft und sich niemand beschwert bin ich für so wenig Berechtigungen wie nötig :slightly_smiling_face:

Logs:

``` mode of './galabau3/2012-12-30_11-51-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './galabau3/2012-12-30_11-51-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp2/2012-12-30_12-01-48.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp2/2013-05-03_13-48-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp2/2013-05-03_13-48-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-08-20_15-35-31.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2015-09-21_22-09-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-09-24_11-33-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2015-08-11_11-34-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-08-18_17-19-20.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-08-18_17-19-30.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-07-15_15-35-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-08-20_15-35-08.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-07-15_15-50-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-09-24_11-33-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2015-08-11_11-34-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2015-09-21_22-09-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-08-20_15-34-50.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys2/2013-07-15_15-50-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lagest1/2013-05-03_13-46-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lagest1/2013-05-03_13-46-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrechm/2012-09-09_21-18-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrechm/2012-08-06_14-28-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrechm/2012-09-09_21-18-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad1/2014-07-23_23-30-34.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad1/2015-09-21_22-06-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad1/2015-09-21_22-06-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-08-05_13-54-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-03-18_23-43-10.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-04-26_12-44-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-08-08_08-43-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-07-31_17-45-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2012-11-13_12-00-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2012-10-04_23-54-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-08-08_08-43-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2i/2013-03-18_23-43-10.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2013-07-15_15-59-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-25_09-40-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-12_12-17-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-25_19-38-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2015-10-08_14-04-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-25_09-40-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2012-08-30_14-44-51.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-12_12-17-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-25_15-38-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2013-07-15_15-59-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2012-07-31_10-44-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2012-11-05_12-52-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-25_15-38-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2013-09-24_18-25-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2012-07-31_14-03-23.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2012-07-31_10-44-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2012-11-05_12-52-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2015-10-08_14-04-37.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2014-08-25_19-38-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2015-10-08_14-12-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2015-10-08_14-12-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vss/2013-09-24_18-25-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt4/2013-07-12_15-12-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt4/2013-07-12_15-12-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cad_m1/2015-01-17_12-21-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cad_m1/2015-01-17_12-21-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq2/2013-01-29_16-35-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq2/2013-01-29_16-35-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './encom/2014-01-16_15-15-08.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './encom/2014-01-18_15-49-50.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './encom/2014-01-18_15-49-50.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './leistel/2013-01-18_11-15-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './leistel/2013-01-18_11-15-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tecbec/2013-08-25_13-07-52.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tecbec/2013-08-25_13-07-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tecbec/2013-08-19_23-22-18.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tsm_advtherm/2013-10-16_09-35-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tsm_advtherm/2013-10-16_09-35-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './englscience/2013-01-20_23-34-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './englscience/2013-01-20_23-34-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wi1/2014-01-31_12-29-00.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wi1/2013-01-17_10-34-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wi1/2013-01-17_10-34-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm2/2015-08-31_15-43-46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm2/2015-08-31_15-43-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './linalg/2015-01-27_20-49-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './linalg/2015-01-27_20-49-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp1/2012-10-11_13-57-56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp1/2012-07-25_11-15-10.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp1/2012-07-25_11-13-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp1/2012-10-11_13-57-56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp1/2012-07-25_11-13-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lp1/2012-07-25_11-15-10.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-37-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-01-12_09-16-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-34-22.mmap' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-35-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-01-12_09-16-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2014-08-12_08-07-45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-37-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2014-08-12_08-08-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-35-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-36-15.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2014-08-12_08-08-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-38-12.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-35-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-35-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-38-12.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2015-09-07_09-36-15.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seanbau/2014-08-12_08-07-45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './baustoff1/2015-02-26_15-45-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './baustoff1/2015-02-26_15-45-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fp3/2013-08-24_21-11-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fp3/2014-01-13_12-01-53.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fp3/2013-08-24_21-11-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matwiss/2014-01-26_11-39-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matwiss/2014-01-26_11-39-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nat2/2013-09-11_16-47-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nat2/2013-09-11_16-47-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2015-02-23_10-14-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-11_09-39-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-13_14-19-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2015-01-17_11-02-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-11_09-39-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-07-10_14-11-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2013-01-03_11-50-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2015-01-17_11-02-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-14_20-51-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-06-29_20-37-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2013-02-21_11-19-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2013-01-03_11-50-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-14_20-51-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-04_12-56-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-09_18-21-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-07-10_14-11-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-14_20-51-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-13_14-19-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-09_18-21-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-06-29_20-37-59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2013-02-21_11-19-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-14_20-51-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2015-02-23_10-14-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intte/2014-01-04_12-56-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure1/2013-01-05_13-31-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure1/2013-01-05_13-31-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lgest1/2013-05-03_13-47-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lgest1/2013-05-03_13-47-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lgest1/2012-12-30_11-53-30.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-42-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-43-35.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-46-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-44-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-46-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-44-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-44-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-44-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-41-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-43-35.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-41-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matt1eu/2012-12-17_11-42-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-20_21-39-10.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-28_18-38-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-03-29_21-21-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-09-15_18-42-15.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_10-31-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_14-49-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_15-51-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-28_12-11-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-22_12-45-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-26_15-09-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-09-29_18-48-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-27_17-45-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-29_16-39-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_12-26-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-22_12-45-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-20_11-09-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-11-26_10-46-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-03-29_21-21-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-18_19-43-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-29_16-39-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-18_19-43-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_14-49-52.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-27_17-45-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-09-29_18-48-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-09-29_22-15-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_14-01-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-28_12-11-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-10-23_11-08-35.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_14-01-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-11-26_10-46-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-20_10-31-59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-20_10-31-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-26_15-09-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-09-29_22-15-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-29_12-05-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-29_12-05-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_10-31-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-08-28_18-38-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_15-51-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2014-10-23_11-08-35.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-20_11-09-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './parprog/2015-08-19_12-26-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-58-36.mdp' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-07-23_11-38-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-46-47.2015' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-48-12.xlsx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-46-27.2015' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-44-49.xls' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-07-23_11-38-46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-48-22.xls' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './eq1/2015-04-12_20-44-06.xls' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st4fp2/2013-05-03_13-49-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st4fp2/2013-05-03_13-49-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './englhtw/2014-02-24_22-11-38.xlsx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autospr/2015-08-03_14-24-45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autospr/2015-08-03_14-24-45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autospr/2015-08-03_14-26-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autospr/2015-08-03_14-26-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './em/2012-10-11_13-49-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './em/2012-10-11_13-49-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro1/2014-02-10_11-22-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro1/2014-01-29_09-53-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro1/2014-02-10_11-22-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro1/2014-01-29_09-53-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro1/2013-08-06_19-57-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro1/2013-08-06_19-57-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './galab3/2013-05-03_13-44-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './galab3/2013-05-03_13-44-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elmag/2013-01-31_14-12-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elmag/2013-01-31_14-12-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-02-12_23-03-49.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-01-31_13-15-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-01-28_17-02-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-04-11_11-32-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-12-19_16-05-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-01-15_16-38-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-01-19_18-25-56.v2p' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-09-11_16-40-35.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2015-01-27_09-38-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2012-12-21_11-43-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-01-21_11-18-01.tns' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-01-21_14-37-43.tns' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-09-11_16-40-35.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2015-01-27_09-38-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2012-12-21_11-43-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-04-11_11-32-46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-12-19_16-05-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2014-01-15_16-38-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './icth/2013-01-31_13-15-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sicherkz/2012-06-13_09-53-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sicherkz/2012-06-13_09-54-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sicherkz/2012-06-13_09-54-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sicherkz/2012-06-13_09-53-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt1/2013-09-09_15-06-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt1/2013-09-09_15-06-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dmi/2014-12-23_14-49-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dmi/2014-12-23_14-49-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './info0/2014-06-17_00-47-35.svg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_19-46-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-09-15_19-57-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_00-43-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_19-45-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2013-07-15_16-07-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-09-15_19-57-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_19-46-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2013-09-24_18-24-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_00-45-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-12_23-16-25.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_19-45-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_00-45-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-12_23-16-25.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2013-07-15_16-07-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2013-09-24_18-24-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sms/2015-01-13_00-43-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1i/2012-10-04_23-00-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1i/2012-11-13_11-58-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1i/2015-09-15_18-34-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1i/2015-09-15_18-34-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1i/2012-11-13_11-58-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk3/2013-05-01_20-40-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk3/2013-03-20_14-03-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk3/2013-05-01_20-40-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk3/2013-03-20_14-03-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-11-26_10-53-39.pub' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-10-06_17-18-39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-11-26_13-09-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2015-10-11_22-39-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-09-27_16-09-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-11-06_08-30-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-07-17_09-20-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2013-09-24_11-35-56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-01-26_14-38-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2013-07-15_15-53-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-11-06_08-30-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-01-26_14-38-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2013-08-23_13-20-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-01-22_15-10-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2013-07-15_15-53-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2013-08-23_13-20-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2015-10-11_22-39-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2013-09-24_11-35-56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-11-26_10-52-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-07-17_09-20-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-11-26_10-52-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-11-26_13-09-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2015-11-02_08-41-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2015-11-02_08-41-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-09-27_16-09-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2014-01-22_15-10-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-10-06_17-18-39.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs2/2012-10-06_17-17-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './exev/2015-07-15_17-12-07.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './exev/2015-07-20_09-38-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './exev/2015-08-14_20-38-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './exev/2015-08-14_20-38-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './exev/2015-07-20_09-38-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo2/2013-09-11_16-40-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo2/2013-09-11_16-40-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-36-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-34-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_18-11-52.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-26-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-24-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-32-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-33-35.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-34-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-31-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-33-35.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-36-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-32-37.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-36-59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_18-11-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-24-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-26-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-31-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2m/2015-08-17_17-36-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gk/2012-08-08_11-50-51.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gk/2012-08-01_16-14-04.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gk/2012-08-01_13-34-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gk/2012-08-01_13-34-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gk/2012-08-01_13-24-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gk/2012-08-01_13-24-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './kons1eu/2015-01-11_23-15-39.xlsx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './kons1eu/2015-01-11_23-27-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './kons1eu/2015-01-11_23-29-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './kons1eu/2015-01-11_23-27-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './kons1eu/2015-01-11_23-29-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './kons1eu/2015-01-11_23-09-46.xlsx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt4/2013-09-11_16-36-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt4/2012-08-16_12-27-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt4/2013-09-11_16-36-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt4/2012-08-16_12-27-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fuvar/2014-10-30_11-54-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fuvar/2014-10-30_11-54-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fuvar/2013-09-11_16-42-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './fuvar/2013-09-11_16-42-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2012-04-26_16-28-15.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2012-04-26_16-16-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2013-08-30_15-05-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2013-08-30_15-05-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2012-10-09_10-38-50.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2012-10-09_10-38-50.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pnprog/2012-04-26_16-28-15.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './gp/2012-12-30_12-16-56.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lawi/2015-01-23_15-27-40.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lawi/2012-12-30_12-03-36.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lawi/2012-12-30_12-06-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lawi/2012-12-30_12-05-47.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lawi/2012-12-30_12-06-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lawi/2012-12-30_12-07-39.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-01-14_11-23-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-01-14_11-23-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2015-09-15_18-39-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2015-09-15_18-39-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-08-21_11-38-21.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-08-20_20-46-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-07-15_16-01-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-09-24_11-36-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-09-24_11-36-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-08-21_11-38-43.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi1/2013-07-15_16-01-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mikroelsys1/2014-01-28_09-49-45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mikroelsys1/2014-01-28_09-49-45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2015-02-23_10-17-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-09-07_14-14-39.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-26_20-29-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-26_20-24-39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-02_16-57-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-02_16-53-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-02_16-57-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-26_20-29-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2015-02-23_10-17-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2013-08-25_18-22-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-09-04_23-42-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2013-08-25_18-22-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-26_20-23-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-01-26_20-23-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mste/2014-09-04_23-42-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './diffglm/2012-08-06_14-25-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './diffglm/2012-08-06_14-25-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './galab1/2013-01-07_09-07-10.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './galab1/2013-01-07_09-07-10.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog1/2013-01-17_21-24-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog1/2013-01-17_21-24-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog1/2014-09-11_16-41-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog1/2014-09-11_16-41-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-30_20-22-39.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-29_19-52-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-10-22_10-45-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-29_19-52-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-10-22_10-45-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-29_19-52-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-29_19-51-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-10-11_13-52-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-10-22_10-52-46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-29_19-52-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-29_19-51-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-10-22_10-52-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-08-30_20-22-39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk2/2012-10-11_13-52-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek3/2012-12-30_11-55-53.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek3/2012-12-30_11-55-30.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek3/2012-12-30_11-56-32.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek3/2012-12-30_11-59-27.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ooprog/2012-09-17_14-43-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ooprog/2012-09-17_14-43-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ooprog/2014-08-30_20-38-47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ooprog/2014-08-30_20-38-47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './proggrum/2013-01-02_17-03-08.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './proggrum/2013-01-07_12-39-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './proggrum/2013-01-07_12-39-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt2/2015-05-29_20-28-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt2/2014-10-30_11-47-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt2/2014-10-30_11-47-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt2/2015-05-29_20-28-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt2/2015-05-29_20-30-27.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intsi2/2012-08-31_10-54-37.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './intsi2/2012-08-31_10-54-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './Analysis2.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2014-01-28_22-04-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2014-01-31_21-46-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-32-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-32-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-31-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2013-10-25_10-35-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-10.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-32-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2013-09-09_15-13-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2013-09-09_15-13-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2013-11-19_10-52-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-10.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-31-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2014-01-28_22-05-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2014-01-29_09-52-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2014-01-31_21-46-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-32-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2013-11-23_14-15-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-33-47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-32-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wrstat/2015-01-29_11-32-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2013-10-16_11-50-50.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2014-12-23_14-35-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2014-12-23_14-35-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2014-12-23_14-35-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2014-01-22_16-07-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2014-01-22_16-07-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi2/2014-12-23_14-35-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_10-08-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-09-06_09-00-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2013-02-12_14-37-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-12-27_14-36-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-01-12_14-14-35.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-06-30_14-13-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-09-11_16-43-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-01-12_15-30-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-06-30_14-13-04.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-08-20_21-36-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_10-08-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-09-06_08-56-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-06-30_14-13-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-01-11_19-12-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-38-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-13_21-44-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2013-02-12_14-37-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-09-06_09-00-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-14_15-35-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-01-12_14-14-35.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-10-01_21-35-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-38-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-08-20_21-36-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-09-06_09-03-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-07-27_12-07-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-13_15-40-41.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-14_15-35-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-28-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-28-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-06-30_14-13-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-07-27_12-07-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-27-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-01-12_15-30-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-08-27_11-07-24.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-31-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-09-06_09-03-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-12-27_14-36-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-10-01_21-35-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-09-11_16-43-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2015-01-11_19-12-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-38-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2012-09-06_08-56-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2014-01-10_16-38-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './prog3/2013-02-12_14-31-35.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an3b/2012-06-13_09-49-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seltec/2012-10-11_13-50-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seltec/2013-08-24_11-33-54.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './seltec/2012-10-11_13-50-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2013-01-31_17-14-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2013-01-31_23-41-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2014-02-10_11-38-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2014-02-10_11-38-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2013-01-31_14-10-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2013-01-31_17-14-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt3/2013-01-31_23-41-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2012-09-17_14-35-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-29_13-13-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2015-07-21_11-39-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-29_14-43-12.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-07_19-16-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2012-09-17_14-35-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-29_13-28-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-29_14-43-12.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2015-07-21_11-39-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-29_04-44-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt2/2013-08-29_13-28-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-30-59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-31-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin2/2012-03-24_20-30-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './Analysis-Theoriesammlung.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt2/2013-09-11_16-49-47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt2/2012-08-21_14-01-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt2/2013-09-11_16-49-47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './regt2/2012-08-21_14-01-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-01_13-35-24.2pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-22_15-48-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-01_13-27-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2013-08-30_15-15-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-07-24_10-55-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-09-29_10-03-46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-22_15-48-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2015-01-27_09-41-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-01_13-27-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2015-08-13_12-16-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2015-01-27_09-41-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2015-08-13_12-16-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-07-24_10-55-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-09-29_10-03-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-01_13-34-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2014-08-01_13-34-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apf/2013-08-30_15-15-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wed1/2015-09-25_09-29-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './wed1/2015-09-25_09-29-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cad_m2/2015-11-20_19-18-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cad_m2/2015-11-20_19-18-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cad_m2/2015-11-20_19-35-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cad_m2/2015-11-20_19-35-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2012-11-06_08-27-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2012-11-06_08-27-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2014-09-29_10-11-52.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2014-09-29_10-11-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2014-07-28_11-20-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2012-09-28_13-03-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2012-09-28_13-03-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se3/2014-07-28_11-20-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-33-50.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-33-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-33-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-34-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-33-50.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-33-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-34-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-33-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-34-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-34-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-34-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-34-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cldinf/2015-09-15_19-37-13.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sigsys1/2014-10-30_11-51-12.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sigsys1/2014-10-30_11-51-12.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sigsys1/2013-09-09_15-09-55.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sigsys1/2013-09-09_15-09-55.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './oo/2015-09-25_09-30-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './oo/2015-09-25_09-30-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1e/2013-01-22_10-22-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1e/2013-01-22_10-21-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an1e/2013-01-22_10-22-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn1/2012-12-21_11-41-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn1/2012-12-21_11-41-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2014-09-29_10-04-47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2013-02-20_12-41-20.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2013-07-15_16-05-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2015-08-16_17-53-38.pptx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2013-02-20_12-41-20.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2013-07-15_16-05-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2014-09-29_10-04-47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ai/2013-05-06_10-23-46.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ftp_enviplan/2014-07-10_16-22-16.mm' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st6fp4/2014-01-13_12-05-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st6fp4/2014-01-13_12-04-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st6fp4/2014-01-13_12-04-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st6fp4/2014-01-13_12-05-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ftp_partdiff/2013-10-16_09-40-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ftp_partdiff/2013-10-16_09-40-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './konstr1/2012-06-13_09-57-10.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './konstr1/2012-06-13_09-57-10.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tfd1mi/2013-01-18_22-29-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tfd1mi/2013-01-18_22-29-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1eu/2012-10-17_13-57-39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1eu/2012-10-17_13-57-39.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap2/2012-07-27_15-42-04.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap2/2012-07-27_15-42-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap2/2012-04-30_16-23-13.anki' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './proggru/2014-01-16_13-54-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './proggru/2014-01-16_13-54-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './urbdes2/2013-08-24_21-00-30.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './urbdes2/2012-12-30_12-09-46.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './urbdes2/2012-12-30_12-08-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './urbdes2/2012-12-30_12-08-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './komfou/2014-10-30_11-53-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './komfou/2014-10-30_11-53-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-57-47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-20-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-20-50.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-20-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-57-47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-19-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-06-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-19-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-58-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-59-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-18-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-19-04.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-20-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-18-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-59-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-59-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-20-50.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-58-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-06-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-19-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_13-59-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './apparch/2014-12-23_14-20-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2013-01-22_16-53-37.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2015-02-23_10-18-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2014-01-07_12-29-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2014-01-22_12-04-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2014-01-07_12-29-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2014-01-22_12-03-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2014-01-22_12-03-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2013-01-22_16-53-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2014-01-22_12-04-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmqm/2015-02-23_10-18-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1/2015-02-20_20-34-57.xps' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1/2012-04-23_21-33-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1/2015-02-20_20-30-28.xps' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1/2014-01-28_09-04-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1/2012-04-23_21-33-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chem1/2014-01-28_09-04-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './reing/2015-01-14_16-05-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './reing/2015-01-14_16-05-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './reing/2012-12-29_20-31-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './reing/2012-12-29_20-31-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt1/2012-08-21_09-01-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt1/2012-08-21_09-01-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-26_16-06-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-04-01_16-42-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-16_17-12-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-04-02_18-50-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-08_18-54-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-09-09_15-34-04.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2012-12-26_11-48-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-07_13-41-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-04-02_18-50-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-09-09_15-34-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-10_10-15-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-10_10-15-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-27_23-32-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-27_23-32-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elo1/2013-01-07_13-27-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ooad/2013-09-09_14-56-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ooad/2013-09-09_14-56-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2014-08-22_04-37-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-08-30_12-27-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-08-29_19-33-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2014-08-22_04-36-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-08-30_02-08-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-09-24_11-38-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-09-24_11-38-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2014-08-24_11-07-56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-08-31_20-40-45.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-12-20_16-45-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-08-29_22-49-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2014-08-22_04-36-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2014-08-24_11-07-56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-12-20_16-45-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2014-08-22_04-37-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsys/2013-08-29_19-32-56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2b/2012-06-13_10-01-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2b/2012-06-13_10-01-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './galab4/2012-12-30_12-15-30.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_477.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_424.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_154.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_560.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_169.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_735.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_238.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_319.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_436.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_211.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_755.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_901.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_194.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_441.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_404.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_221.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_264.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_152.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_883.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_648.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_592.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_754.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_69.sxw' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_106.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_658.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_204.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_380.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_264.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_102.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_198.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_246.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_249.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_728.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_415.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_91.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_98.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_61.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_12.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_898.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_135.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_150.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_178.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_822.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_275.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_250.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_87.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_506.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_262.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_6.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_843.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_447.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_494.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_197.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_166.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_317.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_100.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_273.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_95.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_292.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_21.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_236.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_739.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_329.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_649.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_342.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_435.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_200.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_599.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_22.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_737.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_38.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_156.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_548.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_683.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_352.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_251.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_112.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_732.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_851.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_758.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_616.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_277.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_753.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_284.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_220.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_291.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_233.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_572.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_232.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_195.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_205.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_150.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_853.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_187.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_700.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_757.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_262.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_365.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_774.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_266.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_295.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_220.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_467.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_688.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_831.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_764.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_157.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_382.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_339.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_82.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_355.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_284.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_153.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_117.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_541.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_254.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_830.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_548.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_653.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_375.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_290.php' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_321.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_736.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_166.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_141.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_836.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_839.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_567.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_246.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_850.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_128.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_771.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_639.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_506.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_7.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_827.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_55.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_19.ace' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_338.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_891.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_189.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_8.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_28.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_99.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_40.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_701.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_493.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_437.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_829.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_479.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_209.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_595.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_529.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_449.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_202.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_887.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_637.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_201.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_36.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_291.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_502.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_104.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_665.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_164.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_169.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_440.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_624.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_866.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_266.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_3.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_155.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_325.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_182.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_555.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_168.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_10.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_480.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_64.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_20.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_867.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_696.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_263.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_274.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_154.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_514.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_770.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_884.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_170.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_827.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_157.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_447.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_254.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_858.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_231.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_2.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_514.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_276.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_300.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_218.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_639.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_76.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_144.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_183.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_318.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_194.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_18.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_371.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_275.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_190.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_189.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_15.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_410.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_606.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_65.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_894.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_376.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_178.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_184.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_242.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_60.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_245.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_731.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_122.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_145.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_479.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_94.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_664.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_91.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_180.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_891.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_240.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_62.jpg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_229.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_178.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_100.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_636.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_242.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_73.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_232.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_129.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_373.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_116.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_202.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_214.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_580.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_261.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_146.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_574.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_85.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_263.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_201.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_110.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_700.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_231.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_271.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_318.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_461.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_590.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_193.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_881.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_220.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_744.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_262.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_439.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_336.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_156.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_286.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_652.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_171.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_149.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_249.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_478.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_194.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_467.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_375.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_279.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_559.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_64.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_365.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_690.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_570.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_668.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_660.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_109.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_103.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_613.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_455.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_204.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_152.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_111.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_777.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_855.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_250.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_136.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_885.pptx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_457.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_637.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_757.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_449.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_171.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_189.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_735.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_405.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_272.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_563.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_10.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_251.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_5.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_635.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_208.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_199.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_241.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_269.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_670.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_857.odt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_476.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_237.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_219.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_626.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_768.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_500.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_179.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_297.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_247.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_614.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_278.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_148.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_31.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_74.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_446.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_107.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_354.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_51.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_227.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_396.tex' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_859.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_121.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_86.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_689.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_66.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_666.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_704.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_216.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_629.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_69.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_2.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_662.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_192.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_651.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_263.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_754.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_145.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_350.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_386.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_151.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_183.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_491.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_377.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_487.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_190.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_181.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_84.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_204.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_844.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_192.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_546.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_568.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_377.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_787.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_751.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_155.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_265.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_248.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_70.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_897.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_694.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_565.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_780.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_337.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_181.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_513.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_376.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_351.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_83.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_92.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_287.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_188.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_13.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_705.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_906.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_775.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_331.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_422.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_306.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_542.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_216.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_880.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_20.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_600.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_345.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_253.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_80.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_826.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_196.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_215.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_263.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_109.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_35.xls' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_24.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_108.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_498.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_492.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_872.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_719.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_405.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_123.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_353.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_152.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_256.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_101.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_32.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_435.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_402.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_900.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_154.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_37.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_223.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_187.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_73.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_477.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_888.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_734.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_249.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_153.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_889.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_20.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_625.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_3.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_191.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_44.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_682.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_454.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_127.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_570.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_118.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_452.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_490.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_281.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_242.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_222.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_303.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_662.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_226.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_343.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_198.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_282.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_854.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_585.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_30.tif' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_221.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_258.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_108.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_486.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_210.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_656.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_235.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_72.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_185.rar' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_3.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_491.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_182.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_668.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_884.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_85.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_412.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_205.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_828.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_25.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_181.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_368.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_687.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_897.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_182.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_640.odt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_131.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_169.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_183.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_239.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_369.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_314.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_646.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_50.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_463.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_847.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_139.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_406.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_267.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_270.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_460.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_372.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_89.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_736.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_688.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_249.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_893.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_339.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_644.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_628.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_181.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_482.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_788.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_239.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_269.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_686.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_599.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_64.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_740.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_281.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_431.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_233.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_561.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_193.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_115.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_113.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_892.89p' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_474.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_495.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_196.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_554.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_39.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_211.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_560.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_75.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_295.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_146.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_129.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_216.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_166.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_760.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_22.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_592.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_501.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_487.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_335.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_191.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_252.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_580.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_250.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_373.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_168.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_279.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_415.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_673.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_47.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_788.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_457.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_224.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_588.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_399.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_268.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_182.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_132.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_635.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_151.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_594.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_774.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_536.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_223.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_341.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_695.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_657.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_2.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_129.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_264.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_571.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_257.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_267.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_684.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_205.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_167.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_268.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_252.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_773.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_566.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_629.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_590.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_839.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_633.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_749.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_199.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_431.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_63.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_654.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_329.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_778.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_648.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_877.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_174.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_862.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_97.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_175.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_14.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_417.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_731.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_139.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_321.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_19.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_333.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_556.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_120.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_880.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_91.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_209.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_274.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_539.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_756.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_798.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_232.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_852.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_89.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_314.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_85.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_180.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_482.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_334.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_905.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_834.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_274.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_261.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_864.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_503.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_379.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_424.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_348.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_875.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_882.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_486.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_481.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_594.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_567.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_278.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_61.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_18.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_238.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_216.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_215.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_71.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_227.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_75.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_208.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_835.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_223.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_80.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_97.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_468.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_710.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_190.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_130.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_96.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_260.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_186.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_756.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_341.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_218.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_257.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_208.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_471.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_589.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_60.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_436.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_876.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_66.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_697.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_265.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_905.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_464.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_11.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_568.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_34.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_6.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_666.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_269.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_185.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_476.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_243.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_61.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_374.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_237.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_223.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_230.92P' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_598.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_212.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_179.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_175.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_775.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_349.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_724.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_627.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_628.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_374.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_849.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_48.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_217.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_769.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_707.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_502.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_596.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_94.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_852.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_262.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_184.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_210.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_861.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_704.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_260.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_542.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_330.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_443.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_589.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_207.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_219.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_908.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_162.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_749.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_299.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_229.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_24.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_400.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_228.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_270.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_576.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_66.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_307.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_207.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_176.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_203.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_121.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_498.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_448.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_141.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_463.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_1.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_518.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_197.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_456.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_106.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_202.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_163.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_273.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_84.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_195.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_296.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_823.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_188.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_608.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_101.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_840.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_685.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_581.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_284.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_215.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_571.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_539.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_741.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_206.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_686.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_743.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_76.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_227.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_406.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_69.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_853.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_174.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_492.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_169.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_271.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_613.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_573.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_454.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_255.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_167.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_903.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_237.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_206.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_830.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_664.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_766.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_287.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_289.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_584.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_87.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_114.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_699.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_597.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_388.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_122.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_193.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_86.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_556.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_228.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_174.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_459.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_642.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_899.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_219.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_93.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_488.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_480.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_614.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_286.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_322.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_820.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_660.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_540.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_578.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_102.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_288.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_107.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_221.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_674.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_612.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_99.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_326.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_367.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_12.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_659.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_392.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_412.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_212.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_672.one' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_163.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_127.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_494.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_655.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_865.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_684.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_732.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_547.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_68.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_228.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_547.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_144.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_422.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_767.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_579.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_75.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_472.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_582.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_562.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_88.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_11.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_702.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_174.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_577.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_342.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_137.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_23.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_828.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_577.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_234.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_551.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_337.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_797.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_777.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_168.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_709.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_253.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_402.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_481.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_739.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_157.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_737.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_558.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_119.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_204.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_709.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_333.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_272.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_163.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_489.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_63.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_115.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_450.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_98.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_654.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_123.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_305.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_320.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_696.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_258.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_868.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_369.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_647.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_554.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_65.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_651.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_650.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_882.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_876.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_776.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_446.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_667.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_404.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_150.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_234.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_268.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_767.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_669.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_886.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_226.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_248.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_703.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_177.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_84.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_741.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_213.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_235.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_728.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_608.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_143.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_667.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_225.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_529.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_219.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_15.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_176.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_869.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_469.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_500.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_336.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_701.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_489.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_681.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_191.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_231.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_863.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_241.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_889.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_685.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_490.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_649.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_165.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_248.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_110.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_149.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_233.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_100.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_860.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_192.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_698.rar' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_165.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_157.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_211.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_55.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_468.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_99.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_217.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_627.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_112.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_62.jpg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_575.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_394.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_285.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_27.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_742.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_558.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_197.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_200.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_395.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_796.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_573.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_4.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_824.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_126.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_252.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_111.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_699.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_509.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_112.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_868.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_553.odt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_602.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_368.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_473.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_387.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_224.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_452.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_472.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_228.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_83.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_77.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_458.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_134.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_557.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_572.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_825.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_74.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_645.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_16.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_161.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_210.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_112.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_461.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_596.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_32.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_4.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_549.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_189.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_235.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_282.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_153.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_253.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_782.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_509.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_697.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_343.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_115.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_68.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_113.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_158.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_104.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_663.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_738.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_214.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_872.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_145.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_866.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_485.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_483.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_335.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_212.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_692.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_551.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_100.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_46.sxw' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_165.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_273.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_102.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_127.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_198.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_3.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_733.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_611.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_878.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_272.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_217.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_499.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_72.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_605.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_358.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_229.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_142.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_278.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_861.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_153.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_854.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_297.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_499.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_156.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_94.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_561.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_125.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_874.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_239.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_473.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_759.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_694.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_552.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_334.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_733.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_199.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_197.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_142.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_501.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_214.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_575.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_156.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_359.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_418.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_763.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_372.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_870.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_673.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_634.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_410.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_702.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_597.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_681.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_625.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_60.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_246.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_888.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_82.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_459.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_695.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_111.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_759.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_907.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_708.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_902.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_95.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_218.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_320.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_578.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_465.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_440.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_17.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_564.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_130.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_641.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_167.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_95.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_782.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_248.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_50.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_563.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_441.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_904.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_98.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_133.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_224.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_780.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_208.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_52.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_744.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_456.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_460.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_710.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_33.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_646.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_48.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_478.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_147.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_877.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_245.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_617.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_612.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_488.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_111.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_200.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_829.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_13.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_765.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_450.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_357.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_507.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_35.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_484.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_771.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_136.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_633.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_401.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_128.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_645.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_761.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_540.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_97.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_175.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_659.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_395.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_250.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_636.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_67.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_196.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_513.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_234.rar' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_707.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_643.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_36.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_582.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_886.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_751.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_20.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_101.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_52.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_117.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_298.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_63.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_860.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_4.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_768.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_901.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_574.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_166.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_703.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_740.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_258.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_195.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_171.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_781.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_602.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_485.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_103.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_291.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_124.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_162.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_653.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_743.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_289.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_545.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_642.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_591.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_241.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_168.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_164.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_586.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_439.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_593.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_252.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_837.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_283.mnb' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_17.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_367.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_172.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_285.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_301.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_330.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_397.xls' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_845.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_859.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_324.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_848.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_345.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_283.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_557.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_285.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_94.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_610.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_565.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_105.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_45.jpg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_347.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_598.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_682.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_147.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_692.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_116.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_581.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_119.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_443.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_306.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_132.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_503.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_822.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_656.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_231.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_579.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_278.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_96.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_564.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_297.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_879.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_773.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_186.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_838.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_706.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_241.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_734.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_842.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_135.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_593.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_268.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_137.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_221.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_550.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_120.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_183.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_781.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_38.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_865.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_753.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_173.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_770.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_586.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_647.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_471.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_655.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_845.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_253.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_474.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_254.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_455.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_201.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_99.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_131.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_562.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_591.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_338.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_879.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_129.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_690.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_380.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_437.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_462.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_190.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_400.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_493.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_150.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_164.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_883.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_307.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_902.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_638.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_179.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_203.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_453.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_871.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_144.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_186.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_873.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_315.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_191.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_276.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_650.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_604.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_315.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_42.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_742.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_418.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_626.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_624.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_324.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_229.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_114.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_706.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_288.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_25.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_275.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_60.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_242.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_600.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_849.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_851.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_165.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_171.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_484.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_611.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_752.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_401.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_908.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_858.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_73.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_215.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_322.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_533.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_632.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_254.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_340.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_319.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_841.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_65.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_284.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_55.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_173.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_665.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_708.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_595.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_683.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_778.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_766.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_233.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_831.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_881.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_356.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_227.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_643.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_331.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_856.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_846.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_218.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_864.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_340.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_269.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_907.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_243.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_755.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_658.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_761.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_267.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_67.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_202.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_555.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_483.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_176.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_185.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_170.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_824.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_495.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_841.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_177.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_379.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_762.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_161.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_93.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_878.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_855.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_787.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_143.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_758.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_772.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_195.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_417.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_544.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_641.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_113.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_399.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_825.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_105.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_158.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_896.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_671.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_5.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_705.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_448.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_906.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_772.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_92.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_137.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_546.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_186.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_92.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_176.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_184.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_584.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_220.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_663.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_66.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_78.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_769.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_776.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_738.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_576.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_867.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_114.ppt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_118.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_585.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_236.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_205.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_225.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_821.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_687.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_634.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_748.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_51.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_113.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_559.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_148.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_823.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_847.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_133.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_9.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_610.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_719.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_33.doc' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_896.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_175.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_193.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_371.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_102.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_764.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/pr_84.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_224.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_453.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_863.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './import/zf_199.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt1/2013-01-31_10-36-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dt1/2013-01-31_10-36-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2014-10-30_11-43-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2014-02-10_11-26-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2014-02-10_11-26-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2013-08-06_19-55-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2013-08-06_19-55-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2014-10-30_11-43-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2015-06-18_08-33-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig1/2015-06-18_08-33-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mokomap/2012-10-27_11-43-04.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mokomap/2015-09-21_02-08-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mokomap/2014-10-23_10-55-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mokomap/2014-10-23_10-55-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mokomap/2015-09-21_02-08-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2014-09-18_13-09-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2013-08-28_19-24-45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2015-08-21_14-41-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2013-08-28_19-24-45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2015-08-21_14-41-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2014-09-18_13-09-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2014-06-29_20-31-39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2014-06-29_20-30-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2013-08-28_18-29-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2013-08-28_18-29-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2014-06-29_20-30-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ad/2014-06-29_20-31-39.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_11-31-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2013-08-27_16-35-50.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-10-23_11-17-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-13_12-53-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_15-04-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-13_21-04-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-15_10-28-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_11-31-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-54-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_15-04-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-52-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2012-08-27_08-57-28.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-15_10-28-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2013-08-27_16-53-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-45-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2012-10-27_11-44-13.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-45-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-15_10-34-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-13_21-04-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-15_10-34-52.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2012-07-30_09-23-30.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-54-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-10-23_11-17-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-13_21-02-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2013-08-27_16-53-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-13_12-53-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-13_21-02-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-26-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2012-07-30_09-23-03.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-26-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint2/2014-08-12_14-52-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './linalg.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './el4/2012-12-24_13-29-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys1/2015-01-27_09-41-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys1/2013-04-11_11-19-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys1/2013-04-11_11-19-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bsys1/2015-01-27_09-41-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-24_21-49-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-27_12-43-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-18_12-44-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-27_12-41-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-24_21-49-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-27_12-41-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-23_11-37-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-27_12-43-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-23_11-32-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-09-29_22-15-47.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-09-29_22-15-47.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-23_11-32-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-27_13-20-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-23_11-37-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-27_13-20-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './infsi3/2014-08-18_12-44-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2013-08-10_21-06-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2013-08-10_21-06-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2013-09-03_15-01-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2013-09-03_15-01-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2013-08-08_10-19-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2012-07-15_15-06-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './an2e/2012-07-15_15-06-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './el2/2012-12-24_13-11-15.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './el2/2012-07-15_15-10-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './el2/2012-07-15_15-10-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ensys/2013-08-25_13-40-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ensys/2013-08-21_15-54-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ensys/2013-08-25_13-40-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autot3/2015-09-07_09-44-35.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autot3/2015-09-07_09-42-51.jpg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autot3/2015-09-07_09-41-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './autot3/2015-09-07_09-41-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-16-45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-18-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2012-05-29_18-40-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2012-05-16_16-40-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-19-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-19-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-18-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2012-05-29_18-40-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2012-05-16_16-40-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-16-45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-18-39.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nap/2015-09-22_08-18-39.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './baustat2/2012-06-13_09-51-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './baustat2/2012-06-13_09-51-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './inno3/2013-01-20_11-35-17.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './inno3/2013-01-20_11-31-55.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mikroelsys2/2014-09-09_09-03-30.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mikroelsys2/2014-09-09_09-03-30.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint1/2013-11-11_10-23-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint1/2013-08-30_12-50-02.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint1/2013-08-30_12-50-02.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint1/2013-11-11_10-23-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint1/2014-06-30_14-30-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './uint1/2014-06-30_14-30-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-07-21_11-46-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-11-20_19-51-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-07-21_11-46-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-01-26_19-35-43.xps' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-09-16_21-04-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-09-16_20-57-59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-11-20_19-51-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-01-26_19-17-36.xps' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2012-04-23_21-35-35.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-07-18_19-15-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-09-16_21-04-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2012-04-23_21-35-35.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-01-26_19-37-52.xps' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-07-18_19-15-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-09-16_20-57-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vekgm/2015-01-26_19-11-53.xps' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2013-02-13_21-51-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2013-01-22_16-40-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2013-02-13_21-51-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2013-01-22_16-40-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2014-01-31_12-17-32.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2013-06-11_23-59-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2013-06-11_23-59-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2012-11-06_18-11-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math1i/2012-12-27_17-32-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2015-11-20_19-26-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2015-07-16_09-42-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2013-01-10_14-53-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2015-11-20_19-26-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2015-07-16_09-42-37.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2013-01-10_14-53-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2015-08-04_14-35-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2013-01-10_14-51-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2015-08-04_14-35-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './matecm1/2013-01-10_14-51-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2012-07-30_09-11-56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2014-06-29_20-27-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2014-06-29_20-27-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2015-08-19_14-58-25.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2015-08-19_14-59-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2015-08-19_14-58-25.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2012-04-25_11-08-31.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2013-08-30_17-54-42.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2013-08-29_10-06-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2013-08-29_10-09-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2013-08-29_10-09-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2012-07-30_09-11-56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './math2i/2015-08-19_14-59-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './embsw1/2014-02-17_23-15-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './embsw1/2014-02-10_11-32-25.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './embsw1/2014-02-10_11-32-25.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './embsw1/2014-02-17_23-15-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './mek2/2014-02-06_11-49-29.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ws_dst/2013-09-09_15-16-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ws_dst/2013-09-09_15-16-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2013-08-30_12-37-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2012-04-05_00-40-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2015-01-18_12-49-55.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2012-04-05_00-40-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2013-08-30_12-37-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2015-01-18_12-49-55.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se1/2014-06-30_14-24-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './viskom3/2014-01-14_11-23-57.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './viskom3/2012-12-30_12-12-20.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './viskom3/2014-01-14_11-23-57.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './viskom3/2013-05-03_13-50-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './viskom3/2013-05-03_13-50-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './viskom3/2012-12-30_12-12-20.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph1mech/2012-07-30_09-18-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph1mech/2012-07-30_09-18-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_11-01-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_11-00-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_11-34-08.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_11-34-08.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-09-16_21-11-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_10-59-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-09-16_21-11-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_10-59-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_10-59-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_11-01-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_11-00-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './plmgr/2015-08-06_10-59-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-10-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-14-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-14-29.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-14-29.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-14-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-14-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-10-04.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-10-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-10-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-15-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-15-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-14-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-15-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bure2/2013-08-08_17-15-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-09-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-14-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-09-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-14-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-10-25.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-10-25.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-11-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './loek1/2013-01-07_09-11-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-14_11-10-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-14_11-10-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-09-29_22-16-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-12_19-42-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-12_22-39-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-09-29_22-16-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-14_10-57-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2015-01-27_09-42-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-12_22-39-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-12_19-42-34.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-12_19-44-07.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-14_10-57-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2014-08-12_19-44-07.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cloud/2015-01-27_09-42-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './baustoff2/2012-06-13_09-52-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './baustoff2/2012-06-13_09-52-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st3fp1/2012-10-15_20-24-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './st3fp1/2012-10-15_20-24-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './inttra/2013-09-09_14-49-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './inttra/2013-09-09_14-49-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cm_corpcom/2014-07-10_16-20-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cm_corpcom/2014-07-10_16-20-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cm_corpcom/2014-07-10_16-18-13.mm' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ital1/2014-09-04_14-06-51.apkg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2012-07-13_17-25-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2014-08-12_12-04-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2012-07-13_17-23-46.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2012-07-13_17-25-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2012-07-25_10-25-20.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2014-08-12_12-04-42.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2012-07-13_17-23-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './vwltg/2012-07-25_10-25-20.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph2hat/2012-06-13_09-59-36.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph2hat/2012-06-13_10-00-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph2hat/2012-06-13_09-59-36.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph2hat/2012-06-13_10-00-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph2hat/2012-06-13_09-59-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph2hat/2012-06-13_09-59-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './zf_437.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph3swo/2012-08-06_14-23-15.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph3swo/2012-08-06_14-23-15.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph3swo/2013-09-09_15-01-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph3swo/2013-09-09_15-01-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lap/2013-08-24_21-12-45.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './lap/2013-08-24_21-12-45.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tsm_cfd/2013-10-10_15-03-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './tsm_cfd/2013-10-10_15-03-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sigsys2/2013-09-11_16-52-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './sigsys2/2013-09-11_16-52-37.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2015-08-15_17-33-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2013-10-25_10-33-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2013-05-06_15-39-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2015-08-15_17-33-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-06-29_20-36-28.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-07-18_10-59-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2013-10-25_10-33-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-02-17_10-11-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-02-17_10-11-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2015-08-03_18-16-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-06-29_20-36-28.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-09-18_13-02-54.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-09-18_13-02-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2015-08-03_18-16-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2014-07-18_10-59-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './cn2/2013-05-06_15-39-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap1/2014-01-19_16-08-12.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap1/2014-01-19_10-52-37.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap1/2014-01-19_16-06-30.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap1/2014-01-19_16-04-48.txt' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap1/2014-01-19_11-53-38.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './jap1/2012-03-23_00-42-23.jpg' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro2/2014-09-09_09-01-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digpro2/2014-09-09_09-01-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2015-09-25_09-32-24.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-07-13_17-18-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2015-11-05_14-08-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-56-55.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-01-10_09-53-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2015-07-14_08-26-06.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-57-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_09-51-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-56-38.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-30-12.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-06-30_14-20-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2015-07-14_08-26-06.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-30-12.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-57-40.PDF' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-11-06_08-31-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-24_18-56-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-10-06_17-22-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-07-13_17-18-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2015-09-25_09-32-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-10-01_21-38-27.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-10-06_17-22-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-09-27_16-00-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-10-27_11-41-05.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-11-06_08-31-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-01-10_09-53-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-06-30_14-20-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2013-08-30_12-36-03.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-09-11_16-37-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-10-01_21-38-27.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2015-11-05_14-08-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-09-11_16-39-09.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2013-08-30_12-36-03.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_09-51-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2014-09-11_16-37-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-24_18-56-53.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './dbs1/2012-08-03_08-57-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nat1/2014-10-30_11-49-22.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nat1/2013-09-09_14-53-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nat1/2013-09-09_14-53-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './nat1/2014-10-30_11-49-22.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compt2/2012-08-13_13-11-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compt2/2012-08-13_13-11-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-08-21_15-31-21.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-29_11-54-58.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-08-19_14-37-51.anki' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-29_11-57-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-11-26_10-47-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-29_11-58-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-55-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2015-09-29_13-34-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2015-09-29_13-34-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-29_11-58-32.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2013-09-24_18-22-49.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-08-17_23-23-48.anki' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-13_17-20-56.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-09-27_12-50-51.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-08-18_11-04-46.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-29_11-57-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-55-53.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-57-31.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-08-21_15-31-21.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-56-37.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-11-26_10-47-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-13_17-20-56.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2013-09-24_18-22-49.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-55-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-29_11-54-58.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-08-20_14-24-47.anki' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-59-57.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2014-01-22_14-26-28.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-09-27_12-50-51.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './se2/2012-07-26_09-55-32.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmsw_eng/2012-08-02_12-44-59.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmsw_eng/2014-01-29_09-51-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmsw_eng/2014-01-29_09-51-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pmsw_eng/2012-08-02_12-44-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2014-08-13_13-55-31.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2012-08-14_10-12-17.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2014-08-13_13-55-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2012-08-14_10-12-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2012-08-14_10-12-17.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2012-08-14_10-13-33.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2012-08-14_10-12-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './digsig2/2012-08-14_10-13-33.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-07-17_09-43-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-09-24_11-32-23.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-53-46.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-54-06.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-11-05_12-53-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-08-16_13-01-15.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-53-05.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-11-05_12-53-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-08-08_16-37-12.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-53-56.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-53-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-07-17_09-40-46.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2014-08-11_11-11-55.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-08-16_11-54-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2014-08-11_11-11-55.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-07-17_09-41-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-08-08_16-37-12.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-09-24_11-32-23.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-53-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2013-08-16_13-01-15.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './bskon/2012-08-03_08-53-29.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-11_03-01-54.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-11_02-12-25.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2015-08-24_10-22-43.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-12_00-26-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-03_08-50-58.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-03_08-50-07.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-11-08_09-36-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2014-02-18_11-32-14.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-02_14-51-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-03_08-50-23.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2015-08-24_10-22-43.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-11-08_09-36-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-12_00-38-48.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-02_14-03-42.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2014-02-18_11-26-19.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2014-02-18_11-26-19.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-02_14-04-44.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2014-12-28_19-13-06.docx' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-11_02-15-24.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2014-02-18_11-32-14.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-09_16-07-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2013-08-12_00-38-48.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ph4_i/2012-08-03_08-50-42.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ftp_physics/2015-02-05_10-04-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './ftp_physics/2015-02-05_10-04-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk1/2012-10-22_10-41-38.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk1/2013-08-22_15-06-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk1/2013-08-22_15-06-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk1/2012-10-22_10-38-18.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk1/2012-10-22_10-38-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './pk1/2012-10-22_10-41-38.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-07_12-57-37.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_16-45-59.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-24_11-33-44.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_15-44-00.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2015-02-23_10-12-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-04-11_11-27-54.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-04-11_11-29-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2015-09-15_19-32-09.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_22-17-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-09_00-03-01.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-07_11-45-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-24_11-33-44.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-04-11_11-29-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_17-32-31.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-16_20-26-04.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-09_00-03-01.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2015-09-15_19-31-13.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2015-02-23_10-12-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-04-11_11-27-35.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-09-08_23-34-55.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_20-33-18.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2015-09-15_19-32-09.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_17-56-34.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2015-09-15_19-31-13.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './compb/2013-01-15_15-44-00.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './linalg.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './techm3/2013-08-09_07-50-41.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './techm3/2013-08-09_07-50-41.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-30-16.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-29-52.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-29-40.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-29-40.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-28-40.zip' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-29-52.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-30-26.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-30-16.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-30-05.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-30-05.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './chin1/2012-03-24_20-30-26.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt3/2013-09-09_14-40-11.pdf.png' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) mode of './elt3/2013-09-09_14-40-11.pdf' changed from 0775 (rwxrwxr-x) to 0644 (rw-r--r--) ```
```` mode of '.' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './galabau3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './lp2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './bsys2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './lagest1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './wrechm' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ad1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an2i' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './vss' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './regt4' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cad_m1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './eq2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './encom' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './leistel' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './tecbec' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './tsm_advtherm' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './englscience' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './wi1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './matecm2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './linalg' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './lp1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './seanbau' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './baustoff1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './fp3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './matwiss' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './nat2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './intte' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './bure1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './lgest1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './matt1eu' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './parprog' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './eq1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './st4fp2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './englhtw' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './autospr' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './em' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './digpro1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './galab3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elmag' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './icth' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './sicherkz' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './regt1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './dmi' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './info0' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './sms' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an1i' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './pk3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './dbs2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './exev' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elo2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an2m' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './gk' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './kons1eu' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elt4' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './fuvar' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './pnprog' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './gp' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './lawi' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './infsi1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './mikroelsys1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './mste' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './diffglm' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './galab1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './prog1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './pk2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './loek3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ooprog' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './proggrum' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elt2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './intsi2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './wrstat' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './infsi2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './prog3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an3b' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './seltec' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './regt3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './dt2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './chin2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './regt2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './apf' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './wed1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cad_m2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './se3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cldinf' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './sigsys1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './oo' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an1e' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cn1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ai' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ftp_enviplan' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './st6fp4' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ftp_partdiff' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './konstr1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './tfd1mi' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './chem1eu' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './jap2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './proggru' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './urbdes2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './komfou' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './apparch' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './pmqm' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './chem1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './reing' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elt1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elo1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ooad' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './infsys' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an2b' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './galab4' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './import' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './dt1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './digsig1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './mokomap' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ad' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './uint2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './el4' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './bsys1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './infsi3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './an2e' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './el2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ensys' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './autot3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './nap' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './baustat2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './inno3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './mikroelsys2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './uint1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './vekgm' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './math1i' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './matecm1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './math2i' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './embsw1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './mek2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ws_dst' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './se1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './viskom3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ph1mech' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './plmgr' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './bure2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './loek1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cloud' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './baustoff2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './st3fp1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './inttra' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cm_corpcom' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ital1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './vwltg' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ph2hat' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ph3swo' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './lap' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './tsm_cfd' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './sigsys2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './cn2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './jap1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './digpro2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './dbs1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './nat1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './compt2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './se2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './pmsw_eng' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './digsig2' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './bskon' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ph4_i' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './ftp_physics' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './pk1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './compb' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './techm3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './chin1' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) mode of './elt3' changed from 0775 (rwxrwxr-x) to 0755 (rwxr-xr-x) ```