mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
PDF + Bereit für Upload
This commit is contained in:
@@ -112,6 +112,14 @@ public class Briefecontroller : Controller {
|
||||
|
||||
model.Texts = texts;
|
||||
|
||||
if (System.IO.File.Exists("./wwwroot/pdf/HKB_" + id + ".pdf")) {
|
||||
model.PDFFilePath = "/pdf/HKB_" + id + ".pdf";
|
||||
}
|
||||
|
||||
if (System.IO.File.Exists("./wwwroot/pdf/HKB_" + model.MetaData.Meta.Sort.Year + ".pdf")) {
|
||||
model.YearPDFFilePath = "/pdf/HKB_" + model.MetaData.Meta.Sort.Year + ".pdf";
|
||||
}
|
||||
|
||||
// Return
|
||||
return View("~/Views/HKB/Dynamic/Briefe.cshtml", model);
|
||||
}
|
||||
|
||||
@@ -7,6 +7,10 @@ public class BriefeViewModel {
|
||||
public BriefeMetaViewModel MetaData { get; private set; }
|
||||
public string? DefaultCategory { get; set; }
|
||||
|
||||
public string? PDFFilePath { get; set; }
|
||||
|
||||
public string? YearPDFFilePath { get; set; }
|
||||
|
||||
private List<(string, string, string, string, string, string)>? _ParsedEdits;
|
||||
private List<(string, string, string, string, string)>? _ParsedHands;
|
||||
private List<(string Category, List<Text>)>? _Texts;
|
||||
|
||||
@@ -15,46 +15,79 @@
|
||||
<div class="ha-letterheadernav">
|
||||
<div class="md:hidden grow">
|
||||
<select id="ha-switchlettercategory">
|
||||
@foreach (var app in Model.Texts) {
|
||||
@if (app.Category != Model.DefaultCategory) { <option class="ha-tabbtn" autocomplete="off">@app.Category</option> }
|
||||
@foreach (var app in Model.Texts)
|
||||
{
|
||||
@if (app.Category != Model.DefaultCategory)
|
||||
{
|
||||
<option class="ha-tabbtn" autocomplete="off">@app.Category</option>
|
||||
}
|
||||
}
|
||||
@if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) {
|
||||
<option class="ha-tabbtn" autocomplete="off">@Model.DefaultCategory</option>
|
||||
@if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any())
|
||||
{
|
||||
<option class="ha-tabbtn" autocomplete="off">@Model.DefaultCategory</option>
|
||||
}
|
||||
</select>
|
||||
</div>
|
||||
<div class="ha-lettertabs !hidden md:!block">
|
||||
@foreach (var app in Model.Texts)
|
||||
{
|
||||
@if (app.Category != Model.DefaultCategory) { <a class="ha-tabbtn hidden md:inline-block">@app.Category</a> }
|
||||
@if (app.Category != Model.DefaultCategory)
|
||||
{
|
||||
<a class="ha-tabbtn hidden md:inline-block">@app.Category</a>
|
||||
}
|
||||
}
|
||||
@if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) {
|
||||
<a class="ha-tabbtn hidden md:inline-block">@Model.DefaultCategory</a>
|
||||
@if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any())
|
||||
{
|
||||
<a class="ha-tabbtn hidden md:inline-block">@Model.DefaultCategory</a>
|
||||
}
|
||||
<a >PDF</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@if (Model.PDFFilePath != null || Model.YearPDFFilePath != null)
|
||||
{
|
||||
<div class="self-end mr-4 hidden md:block mb-1 text-base">
|
||||
<span class="caps-petite">PDF:</span>
|
||||
|
||||
@if (Model.PDFFilePath != null)
|
||||
{
|
||||
|
||||
<a class="ml-1" href="@Model.PDFFilePath">
|
||||
<div class="inline-block bg-slate-100 hover:bg-slate-200 border px-1.5 rounded">Brief @Model.MetaData.Meta.Autopsic</div>
|
||||
</a>
|
||||
}
|
||||
|
||||
@if (Model.YearPDFFilePath != null)
|
||||
{
|
||||
<a class="ml-1 mr-2" href="@Model.YearPDFFilePath">
|
||||
<div class="inline-block bg-slate-100 hover:bg-slate-200 border px-1.5 rounded">Jahr @Model.MetaData.Meta.Sort.Year</div>
|
||||
</a>
|
||||
}
|
||||
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (Model.MetaData.Next != null || Model.MetaData.Prev != null)
|
||||
{
|
||||
<div class="ha-lettermetalinks">
|
||||
<div class="ha-lettermetalinks">
|
||||
@if (Model.MetaData.Prev != null)
|
||||
{
|
||||
<a href="@Model.MetaData.Prev.Value.Item2">
|
||||
<a href="@Model.MetaData.Prev.Value.Item2">
|
||||
@Model.MetaData.Prev.Value.Model.Meta.Autopsic ◀
|
||||
</a>
|
||||
</a>
|
||||
}
|
||||
|
||||
<div class="ha-hkb">
|
||||
HKB
|
||||
</div>
|
||||
<div class="ha-hkb">
|
||||
HKB
|
||||
</div>
|
||||
|
||||
@if (Model.MetaData.Next != null)
|
||||
{
|
||||
<a href="@Model.MetaData.Next.Value.Item2">
|
||||
▶ @Model.MetaData.Next.Value.Model.Meta.Autopsic
|
||||
</a>
|
||||
<a href="@Model.MetaData.Next.Value.Item2">
|
||||
▶ @Model.MetaData.Next.Value.Model.Meta.Autopsic
|
||||
</a>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
@@ -62,93 +95,109 @@
|
||||
<div class="ha-letterbody" id="ha-letterbody">
|
||||
@foreach (var app in Model.Texts)
|
||||
{
|
||||
@if (app.Category != Model.DefaultCategory) {
|
||||
<div class="ha-tab">
|
||||
@foreach (var text in app.Item2)
|
||||
{
|
||||
var mw = (text.MinWidth) ? "ha-minwidth" : "";
|
||||
<div class="ha-appcontainer ha-appcontainer-@text.Number @mw">
|
||||
@if (app.Item2.Count > 1 && !String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title) ) {
|
||||
<h3>@text.Title</h3>
|
||||
@if (app.Category != Model.DefaultCategory)
|
||||
{
|
||||
<div class="ha-tab">
|
||||
@foreach (var text in app.Item2)
|
||||
{
|
||||
var mw = (text.MinWidth) ? "ha-minwidth" : "";
|
||||
<div class="ha-appcontainer ha-appcontainer-@text.Number @mw">
|
||||
@if (app.Item2.Count > 1 && !String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title))
|
||||
{
|
||||
<h3>@text.Title</h3>
|
||||
}
|
||||
@if (!String.IsNullOrWhiteSpace(text.ParsedText))
|
||||
{
|
||||
@Html.Raw(text.ParsedText)
|
||||
}
|
||||
</div>
|
||||
}
|
||||
@if (!String.IsNullOrWhiteSpace(text.ParsedText)) { @Html.Raw(text.ParsedText) }
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
@if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) {
|
||||
<div class="ha-tab ha-defaulttab">
|
||||
@if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any())
|
||||
{
|
||||
<div class="ha-tab ha-defaulttab">
|
||||
@foreach (var text in Model.Texts.Where(x => x.Category == Model.DefaultCategory).First().Item2)
|
||||
{
|
||||
var mw = (text.MinWidth) ? "ha-minwidth" : "";
|
||||
<div class="ha-appcontainer ha-appcontainer-@text.Number @mw">
|
||||
@if (!String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title) ) {
|
||||
<h3>@text.Title</h3>
|
||||
}
|
||||
@if (!String.IsNullOrWhiteSpace(text.ParsedText)) { @Html.Raw(text.ParsedText) }
|
||||
</div>
|
||||
<div class="ha-appcontainer ha-appcontainer-@text.Number @mw">
|
||||
@if (!String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title))
|
||||
{
|
||||
<h3>@text.Title</h3>
|
||||
}
|
||||
@if (!String.IsNullOrWhiteSpace(text.ParsedText))
|
||||
{
|
||||
@Html.Raw(text.ParsedText)
|
||||
}
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (Model.ParsedHands != null && Model.ParsedHands.Any())
|
||||
{
|
||||
<div class="ha-hands ha-appcontainer">
|
||||
<div class="ha-hands ha-appcontainer">
|
||||
<h3>Zusätze fremder Hand</h3>
|
||||
<div class="ha-app">
|
||||
<div class="ha-handentries">
|
||||
<table>
|
||||
@foreach (var hand in Model.ParsedHands)
|
||||
{
|
||||
<tr class="ha-handentry">
|
||||
<td>
|
||||
<div class="ha-handfrom">@hand.ParsedStart</div>@if(!String.IsNullOrEmpty(hand.ParsedEnd)){<div class="ha-handto">–@hand.ParsedEnd</div>}
|
||||
</td>
|
||||
<td class="ha-handperson">@Html.Raw(@hand.Person)</td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
</div>
|
||||
<div class="ha-handentries">
|
||||
<table>
|
||||
@foreach (var hand in Model.ParsedHands)
|
||||
{
|
||||
<tr class="ha-handentry">
|
||||
<td>
|
||||
<div class="ha-handfrom">@hand.ParsedStart</div>@if (!String.IsNullOrEmpty(hand.ParsedEnd))
|
||||
{
|
||||
<div class="ha-handto">–@hand.ParsedEnd</div>
|
||||
}
|
||||
</td>
|
||||
<td class="ha-handperson">@Html.Raw(@hand.Person)</td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (Model.ParsedEdits != null)
|
||||
{
|
||||
<div class="ha-edits ha-appcontainer">
|
||||
<div class="ha-edits ha-appcontainer">
|
||||
<h3>Textkritische Anmerkungen</h3>
|
||||
<div class="ha-editsinfo">Der Brieftext wurde anhand der überlieferten Quellen (vgl. Provenienz) kritisch
|
||||
geprüft. Notwendige Korrekturen gegenüber dem in ZH gedruckten Text wurden vorgenommen und sind
|
||||
vollständig annotiert. Die in den beiden Auflagen von ZH angehängten Korrekturvorschläge werden
|
||||
vollständig aufgelistet, werden aber nur dann im Text realisiert, sofern diese anhand überlieferter
|
||||
Quellen verifiziert werden konnten.</div>
|
||||
geprüft. Notwendige Korrekturen gegenüber dem in ZH gedruckten Text wurden vorgenommen und sind
|
||||
vollständig annotiert. Die in den beiden Auflagen von ZH angehängten Korrekturvorschläge werden
|
||||
vollständig aufgelistet, werden aber nur dann im Text realisiert, sofern diese anhand überlieferter
|
||||
Quellen verifiziert werden konnten.</div>
|
||||
<div class="ha-app">
|
||||
<div class="ha-editentries">
|
||||
<table>
|
||||
@foreach (var edit in Model.ParsedEdits)
|
||||
{
|
||||
<tr>
|
||||
<td class="ha-editfromto">
|
||||
<div class="ha-editfrom">@edit.ParsedStart</div>@if(!String.IsNullOrEmpty(edit.ParsedEnd)){<div class="ha-editto">–@edit.ParsedEnd</div>}
|
||||
</td>
|
||||
<td class="ha-editreference">
|
||||
@if (!String.IsNullOrWhiteSpace(edit.Text) && !String.IsNullOrWhiteSpace(edit.Preview))
|
||||
{
|
||||
<span>
|
||||
@Html.Raw(@edit.Preview)]
|
||||
</span>
|
||||
}
|
||||
</td>
|
||||
<td class="ha-editreas">
|
||||
@Html.Raw(@edit.Text)
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
</div>
|
||||
<div class="ha-editentries">
|
||||
<table>
|
||||
@foreach (var edit in Model.ParsedEdits)
|
||||
{
|
||||
<tr>
|
||||
<td class="ha-editfromto">
|
||||
<div class="ha-editfrom">@edit.ParsedStart</div>@if (!String.IsNullOrEmpty(edit.ParsedEnd))
|
||||
{
|
||||
<div class="ha-editto">–@edit.ParsedEnd</div>
|
||||
}
|
||||
</td>
|
||||
<td class="ha-editreference">
|
||||
@if (!String.IsNullOrWhiteSpace(edit.Text) && !String.IsNullOrWhiteSpace(edit.Preview))
|
||||
{
|
||||
<span>
|
||||
@Html.Raw(@edit.Preview)]
|
||||
</span>
|
||||
}
|
||||
</td>
|
||||
<td class="ha-editreas">
|
||||
@Html.Raw(@edit.Text)
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
@@ -16,7 +16,7 @@
|
||||
Hirschgasse 2 <br>
|
||||
69120 Heidelberg <br>
|
||||
Telefon: 06221 7259277 <br>
|
||||
E-Mail: <a class="Emailhref" href="mailto:post@hamann-ausgabe">post@hamann-ausgabe</a>
|
||||
E-Mail: <a class="Emailhref" href="mailto:post@hamann-ausgabe.de">post@hamann-ausgabe.de</a>
|
||||
</div>
|
||||
<div class="grow shrink-0">
|
||||
Germanistisches Seminar der Universität Heidelberg <br>
|
||||
|
||||
File diff suppressed because one or more lines are too long
BIN
HaWeb/wwwroot/pdf/HKB_1.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_10.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_10.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_100.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_100.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_101.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_101.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_102.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_102.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_103.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_103.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_104.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_104.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_105.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_105.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_106.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_106.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_107.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_107.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_108.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_108.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_109.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_109.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_11.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_11.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_110.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_110.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_111.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_111.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_112.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_112.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_113.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_113.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_114.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_114.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_115.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_115.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_116.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_116.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_117.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_117.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_118.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_118.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_119.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_119.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_12.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_12.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_120.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_120.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_121.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_121.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_122.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_122.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_123.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_123.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_124.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_124.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_125.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_125.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_126.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_126.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_127.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_127.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_128.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_128.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_129.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_129.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_13.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_13.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_130.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_130.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_131.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_131.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_132.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_132.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_133.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_133.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_134.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_134.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_135.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_135.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_136.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_136.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_137.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_137.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_138.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_138.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_139.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_139.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_14.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_14.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_140.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_140.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_141.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_141.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_142.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_142.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_143.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_143.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_144.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_144.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_145.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_145.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_146.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_146.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_147.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_147.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_148.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_148.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_149.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_149.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_15.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_15.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_150.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_150.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_151.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_151.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_152.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_152.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_153.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_153.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_154.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_154.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_155.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_155.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_156.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_156.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_157.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_157.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_158.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_158.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_159.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_159.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_16.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_16.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_160.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_160.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_161.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_161.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_162.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_162.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_163.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_163.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_164.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_164.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_165.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_165.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_166.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_166.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_167.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_167.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_168.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_168.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_169.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_169.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_17.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_17.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_170.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_170.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_171.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_171.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_172.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_172.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_173.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_173.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_174.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_174.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_175.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_175.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1751.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1751.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1752.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1752.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1753.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1753.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1754.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1754.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1755.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1755.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1756.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1756.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1758.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1758.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1759.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1759.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_176.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_176.pdf
Normal file
Binary file not shown.
BIN
HaWeb/wwwroot/pdf/HKB_1760.pdf
Normal file
BIN
HaWeb/wwwroot/pdf/HKB_1760.pdf
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user