diff --git a/HaWeb/Controllers/EditionController.cs b/HaWeb/Controllers/EditionController.cs index c41b609..500fa15 100644 --- a/HaWeb/Controllers/EditionController.cs +++ b/HaWeb/Controllers/EditionController.cs @@ -6,10 +6,6 @@ namespace HaWeb.Controllers; [Route("Edition/[action]")] public class EditionController : Controller { - [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] - public IActionResult Error() { - return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); - } public IActionResult Kontakt() { return View("~/Views/HKB/Static/Kontakt.cshtml"); } diff --git a/HaWeb/Controllers/HKWController.cs b/HaWeb/Controllers/HKWController.cs new file mode 100644 index 0000000..552d6a0 --- /dev/null +++ b/HaWeb/Controllers/HKWController.cs @@ -0,0 +1,32 @@ +namespace HaWeb.Controllers; +using System.Diagnostics; +using Microsoft.AspNetCore.Mvc; +using HaWeb.Models; + +[Route("HKW/")] +public class HKWController : Controller { + [Route("Start")] + public IActionResult Index() { + return View("~/Views/HKW/Static/Index.cshtml"); + } + + [Route("Erschienen/FliegenderBrief")] + public IActionResult FliegenderBrief() { + return View("~/Views/HKW/Static/FliegenderBrief.cshtml"); + } + + [Route("Geplant/Kreuzzuege")] + public IActionResult Kreuzzuege() { + return View("~/Views/HKW/Static/Kreuzzuege.cshtml"); + } + + [Route("Erschienen/SokratischeDenkwuerdigkeiten")] + public IActionResult SokratischeDenkwuerdigkeiten() { + return View("~/Views/HKW/Static/SokratischeDenkwuerdigkeiten.cshtml"); + } + + [Route("Uebersicht")] + public IActionResult Uebersicht() { + return View("~/Views/HKW/Static/Uebersicht.cshtml"); + } +} \ No newline at end of file diff --git a/HaWeb/Controllers/HomeController.cs b/HaWeb/Controllers/HomeController.cs index 38ac284..283eb35 100644 --- a/HaWeb/Controllers/HomeController.cs +++ b/HaWeb/Controllers/HomeController.cs @@ -8,7 +8,7 @@ public class HomeController : Controller { [Route("")] public IActionResult Index() { - return Redirect("/Suche"); + return View("~/Views/Index.cshtml"); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] diff --git a/HaWeb/HaWeb.csproj b/HaWeb/HaWeb.csproj index 49a3bcc..c7fb273 100644 --- a/HaWeb/HaWeb.csproj +++ b/HaWeb/HaWeb.csproj @@ -7,12 +7,12 @@ enable - + diff --git a/HaWeb/Properties/launchSettings.json b/HaWeb/Properties/launchSettings.json.old similarity index 96% rename from HaWeb/Properties/launchSettings.json rename to HaWeb/Properties/launchSettings.json.old index 40a877e..5f4460a 100644 --- a/HaWeb/Properties/launchSettings.json +++ b/HaWeb/Properties/launchSettings.json.old @@ -1,28 +1,28 @@ -{ - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:7668", - "sslPort": 44319 - } - }, - "profiles": { - "HaWeb": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "https://localhost:7092;http://localhost:5167", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - } - } -} +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:7668", + "sslPort": 44319 + } + }, + "profiles": { + "HaWeb": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7092;http://localhost:5167", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/HaWeb/Tailwind.csproj b/HaWeb/Tailwind.csproj.old similarity index 97% rename from HaWeb/Tailwind.csproj rename to HaWeb/Tailwind.csproj.old index 2daeb3b..aa4122b 100644 --- a/HaWeb/Tailwind.csproj +++ b/HaWeb/Tailwind.csproj.old @@ -1,30 +1,30 @@ - - - net6.0 - True - enable - enable - - - - - - - - - - - - - - - - - - - - - - - - + + + net6.0 + True + enable + enable + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HaWeb/Views/Admin/_ViewStart.cshtml b/HaWeb/Views/Admin/_ViewStart.cshtml index 19cc5f3..3ab79d0 100644 --- a/HaWeb/Views/Admin/_ViewStart.cshtml +++ b/HaWeb/Views/Admin/_ViewStart.cshtml @@ -1,3 +1,3 @@ @{ - Layout = "_LettersLayout"; + Layout = "_HKBLayout"; } diff --git a/HaWeb/Views/HKB/_ViewStart.cshtml b/HaWeb/Views/HKB/_ViewStart.cshtml index 19cc5f3..3ab79d0 100644 --- a/HaWeb/Views/HKB/_ViewStart.cshtml +++ b/HaWeb/Views/HKB/_ViewStart.cshtml @@ -1,3 +1,3 @@ @{ - Layout = "_LettersLayout"; + Layout = "_HKBLayout"; } diff --git a/HaWeb/Views/HKW/Static/FliegenderBrief.cshtml b/HaWeb/Views/HKW/Static/FliegenderBrief.cshtml new file mode 100644 index 0000000..074e8e2 --- /dev/null +++ b/HaWeb/Views/HKW/Static/FliegenderBrief.cshtml @@ -0,0 +1 @@ +Hello from FliegenderBrief! \ No newline at end of file diff --git a/HaWeb/Views/HKW/Static/Index.cshtml b/HaWeb/Views/HKW/Static/Index.cshtml new file mode 100644 index 0000000..ccdaa29 --- /dev/null +++ b/HaWeb/Views/HKW/Static/Index.cshtml @@ -0,0 +1 @@ +Hello from HKW Index! \ No newline at end of file diff --git a/HaWeb/Views/HKW/Static/Kreuzzuege.cshtml b/HaWeb/Views/HKW/Static/Kreuzzuege.cshtml new file mode 100644 index 0000000..a5ad29e --- /dev/null +++ b/HaWeb/Views/HKW/Static/Kreuzzuege.cshtml @@ -0,0 +1 @@ +Hello from Kreuzzuege! \ No newline at end of file diff --git a/HaWeb/Views/HKW/Static/SokratischeDenkwuerdigkeiten.cshtml b/HaWeb/Views/HKW/Static/SokratischeDenkwuerdigkeiten.cshtml new file mode 100644 index 0000000..da7c794 --- /dev/null +++ b/HaWeb/Views/HKW/Static/SokratischeDenkwuerdigkeiten.cshtml @@ -0,0 +1 @@ +Hello from SDW! \ No newline at end of file diff --git a/HaWeb/Views/HKW/Static/Uebersicht.cshtml b/HaWeb/Views/HKW/Static/Uebersicht.cshtml new file mode 100644 index 0000000..43361e1 --- /dev/null +++ b/HaWeb/Views/HKW/Static/Uebersicht.cshtml @@ -0,0 +1 @@ +Hello from Übersicht \ No newline at end of file diff --git a/HaWeb/Views/Index.cshtml b/HaWeb/Views/Index.cshtml new file mode 100644 index 0000000..05875c1 --- /dev/null +++ b/HaWeb/Views/Index.cshtml @@ -0,0 +1,53 @@ + + + + + + + @* TODO: Description für die Startseite *@ + + + HKB: @ViewData["Title"] + + + + + + + + + + + + + + + + + + + +
+
+ Menu + @* Placeholder Menu *@ +
+ @* Placeholder Main *@ + Hallo! +
+
+
+ @await Html.PartialAsync("/Views/Shared/_Footer.cshtml") +
+
+ + + + @await Html.PartialAsync("/Views/Shared/_Javascript.cshtml") + + + + diff --git a/HaWeb/Views/Shared/_LettersLayout.cshtml b/HaWeb/Views/Shared/_HKBLayout.cshtml similarity index 70% rename from HaWeb/Views/Shared/_LettersLayout.cshtml rename to HaWeb/Views/Shared/_HKBLayout.cshtml index 117344b..63db928 100644 --- a/HaWeb/Views/Shared/_LettersLayout.cshtml +++ b/HaWeb/Views/Shared/_HKBLayout.cshtml @@ -30,30 +30,27 @@
-
- @await Html.PartialAsync("/Views/Shared/_Menu.cshtml") - -
- @RenderBody() -
- -
-
- @await Html.PartialAsync("/Views/Shared/_Footer.cshtml") +
+ @await Html.PartialAsync("/Views/Shared/_HKBMenu.cshtml") +
+ @RenderBody() +
-
- - - @await Html.PartialAsync("/Views/Shared/_Javascript.cshtml") - - - - - - +
+ @await Html.PartialAsync("/Views/Shared/_Footer.cshtml") +
+
+ + + + + @RenderSection("Scripts", required: false) + + @await Html.PartialAsync("/Views/Shared/_Javascript.cshtml") + diff --git a/HaWeb/Views/Shared/_Menu.cshtml b/HaWeb/Views/Shared/_HKBMenu.cshtml similarity index 100% rename from HaWeb/Views/Shared/_Menu.cshtml rename to HaWeb/Views/Shared/_HKBMenu.cshtml diff --git a/HaWeb/Views/Shared/_HKWLayout.cshtml b/HaWeb/Views/Shared/_HKWLayout.cshtml new file mode 100644 index 0000000..1892231 --- /dev/null +++ b/HaWeb/Views/Shared/_HKWLayout.cshtml @@ -0,0 +1,56 @@ + + + + + + + + + HKB: @ViewData["Title"] + + + + + + + + + + + + + + + + + + + +
+
+ @await Html.PartialAsync("/Views/Shared/_HKWMenu.cshtml") +
+ @RenderBody() +
+
+
+ @await Html.PartialAsync("/Views/Shared/_Footer.cshtml") +
+
+ + + + + + + + @RenderSection("Scripts", required: false) + + @await Html.PartialAsync("/Views/Shared/_Javascript.cshtml") + + + + diff --git a/HaWeb/Views/Shared/_HKWMenu.cshtml b/HaWeb/Views/Shared/_HKWMenu.cshtml new file mode 100644 index 0000000..0058858 --- /dev/null +++ b/HaWeb/Views/Shared/_HKWMenu.cshtml @@ -0,0 +1,62 @@ +
+ +
\ No newline at end of file diff --git a/XML/Entwuerfe/Homepage Werke.pdf b/XML/Entwuerfe/Homepage Werke.pdf new file mode 100644 index 0000000..5c30cb1 Binary files /dev/null and b/XML/Entwuerfe/Homepage Werke.pdf differ diff --git a/XML/Entwuerfe/MicrosoftTeams-image.png b/XML/Entwuerfe/MicrosoftTeams-image.png new file mode 100644 index 0000000..b2555e0 Binary files /dev/null and b/XML/Entwuerfe/MicrosoftTeams-image.png differ diff --git a/XML/Entwuerfe/MicrosoftTeams-image2.jpg b/XML/Entwuerfe/MicrosoftTeams-image2.jpg new file mode 100644 index 0000000..6568a4a Binary files /dev/null and b/XML/Entwuerfe/MicrosoftTeams-image2.jpg differ diff --git a/XML/Entwuerfe/MicrosoftTeams-image3.jpg b/XML/Entwuerfe/MicrosoftTeams-image3.jpg new file mode 100644 index 0000000..7851214 Binary files /dev/null and b/XML/Entwuerfe/MicrosoftTeams-image3.jpg differ diff --git a/XML/Entwuerfe/MicrosoftTeams-image4.png b/XML/Entwuerfe/MicrosoftTeams-image4.png new file mode 100644 index 0000000..b2555e0 Binary files /dev/null and b/XML/Entwuerfe/MicrosoftTeams-image4.png differ diff --git a/XML/pdf/HKB_1.pdf b/XML/pdf/HKB_1.pdf deleted file mode 100644 index 250f541..0000000 Binary files a/XML/pdf/HKB_1.pdf and /dev/null differ diff --git a/XML/pdf/HKB_10.pdf b/XML/pdf/HKB_10.pdf deleted file mode 100644 index 322cc7e..0000000 Binary files a/XML/pdf/HKB_10.pdf and /dev/null differ diff --git a/XML/pdf/HKB_100.pdf b/XML/pdf/HKB_100.pdf deleted file mode 100644 index 0416560..0000000 Binary files a/XML/pdf/HKB_100.pdf and /dev/null differ diff --git a/XML/pdf/HKB_101.pdf b/XML/pdf/HKB_101.pdf deleted file mode 100644 index 2393cea..0000000 Binary files a/XML/pdf/HKB_101.pdf and /dev/null differ diff --git a/XML/pdf/HKB_102.pdf b/XML/pdf/HKB_102.pdf deleted file mode 100644 index 78ced5d..0000000 Binary files a/XML/pdf/HKB_102.pdf and /dev/null differ diff --git a/XML/pdf/HKB_103.pdf b/XML/pdf/HKB_103.pdf deleted file mode 100644 index d882244..0000000 Binary files a/XML/pdf/HKB_103.pdf and /dev/null differ diff --git a/XML/pdf/HKB_104.pdf b/XML/pdf/HKB_104.pdf deleted file mode 100644 index 9b29506..0000000 Binary files a/XML/pdf/HKB_104.pdf and /dev/null differ diff --git a/XML/pdf/HKB_105.pdf b/XML/pdf/HKB_105.pdf deleted file mode 100644 index 1c5518d..0000000 Binary files a/XML/pdf/HKB_105.pdf and /dev/null differ diff --git a/XML/pdf/HKB_106.pdf b/XML/pdf/HKB_106.pdf deleted file mode 100644 index 15b9a2c..0000000 Binary files a/XML/pdf/HKB_106.pdf and /dev/null differ diff --git a/XML/pdf/HKB_107.pdf b/XML/pdf/HKB_107.pdf deleted file mode 100644 index 977f431..0000000 Binary files a/XML/pdf/HKB_107.pdf and /dev/null differ diff --git a/XML/pdf/HKB_108.pdf b/XML/pdf/HKB_108.pdf deleted file mode 100644 index 3fff490..0000000 Binary files a/XML/pdf/HKB_108.pdf and /dev/null differ diff --git a/XML/pdf/HKB_109.pdf b/XML/pdf/HKB_109.pdf deleted file mode 100644 index 6c3d061..0000000 Binary files a/XML/pdf/HKB_109.pdf and /dev/null differ diff --git a/XML/pdf/HKB_11.pdf b/XML/pdf/HKB_11.pdf deleted file mode 100644 index c69848f..0000000 Binary files a/XML/pdf/HKB_11.pdf and /dev/null differ diff --git a/XML/pdf/HKB_110.pdf b/XML/pdf/HKB_110.pdf deleted file mode 100644 index 47b18bd..0000000 Binary files a/XML/pdf/HKB_110.pdf and /dev/null differ diff --git a/XML/pdf/HKB_111.pdf b/XML/pdf/HKB_111.pdf deleted file mode 100644 index d754158..0000000 Binary files a/XML/pdf/HKB_111.pdf and /dev/null differ diff --git a/XML/pdf/HKB_112.pdf b/XML/pdf/HKB_112.pdf deleted file mode 100644 index 83887bc..0000000 Binary files a/XML/pdf/HKB_112.pdf and /dev/null differ diff --git a/XML/pdf/HKB_113.pdf b/XML/pdf/HKB_113.pdf deleted file mode 100644 index 6a9afad..0000000 Binary files a/XML/pdf/HKB_113.pdf and /dev/null differ diff --git a/XML/pdf/HKB_114.pdf b/XML/pdf/HKB_114.pdf deleted file mode 100644 index 2c03afe..0000000 Binary files a/XML/pdf/HKB_114.pdf and /dev/null differ diff --git a/XML/pdf/HKB_115.pdf b/XML/pdf/HKB_115.pdf deleted file mode 100644 index db24cb9..0000000 Binary files a/XML/pdf/HKB_115.pdf and /dev/null differ diff --git a/XML/pdf/HKB_116.pdf b/XML/pdf/HKB_116.pdf deleted file mode 100644 index 9299e59..0000000 Binary files a/XML/pdf/HKB_116.pdf and /dev/null differ diff --git a/XML/pdf/HKB_117.pdf b/XML/pdf/HKB_117.pdf deleted file mode 100644 index 3f0608f..0000000 Binary files a/XML/pdf/HKB_117.pdf and /dev/null differ diff --git a/XML/pdf/HKB_118.pdf b/XML/pdf/HKB_118.pdf deleted file mode 100644 index 8e09861..0000000 Binary files a/XML/pdf/HKB_118.pdf and /dev/null differ diff --git a/XML/pdf/HKB_119.pdf b/XML/pdf/HKB_119.pdf deleted file mode 100644 index 591b3bd..0000000 Binary files a/XML/pdf/HKB_119.pdf and /dev/null differ diff --git a/XML/pdf/HKB_12.pdf b/XML/pdf/HKB_12.pdf deleted file mode 100644 index f202152..0000000 Binary files a/XML/pdf/HKB_12.pdf and /dev/null differ diff --git a/XML/pdf/HKB_120.pdf b/XML/pdf/HKB_120.pdf deleted file mode 100644 index 332db5c..0000000 Binary files a/XML/pdf/HKB_120.pdf and /dev/null differ diff --git a/XML/pdf/HKB_121.pdf b/XML/pdf/HKB_121.pdf deleted file mode 100644 index c834a7d..0000000 Binary files a/XML/pdf/HKB_121.pdf and /dev/null differ diff --git a/XML/pdf/HKB_122.pdf b/XML/pdf/HKB_122.pdf deleted file mode 100644 index ace812e..0000000 Binary files a/XML/pdf/HKB_122.pdf and /dev/null differ diff --git a/XML/pdf/HKB_123.pdf b/XML/pdf/HKB_123.pdf deleted file mode 100644 index a79bedf..0000000 Binary files a/XML/pdf/HKB_123.pdf and /dev/null differ diff --git a/XML/pdf/HKB_124.pdf b/XML/pdf/HKB_124.pdf deleted file mode 100644 index 49e3375..0000000 Binary files a/XML/pdf/HKB_124.pdf and /dev/null differ diff --git a/XML/pdf/HKB_125.pdf b/XML/pdf/HKB_125.pdf deleted file mode 100644 index 5c57065..0000000 Binary files a/XML/pdf/HKB_125.pdf and /dev/null differ diff --git a/XML/pdf/HKB_126.pdf b/XML/pdf/HKB_126.pdf deleted file mode 100644 index f1458b8..0000000 Binary files a/XML/pdf/HKB_126.pdf and /dev/null differ diff --git a/XML/pdf/HKB_127.pdf b/XML/pdf/HKB_127.pdf deleted file mode 100644 index 132842d..0000000 Binary files a/XML/pdf/HKB_127.pdf and /dev/null differ diff --git a/XML/pdf/HKB_128.pdf b/XML/pdf/HKB_128.pdf deleted file mode 100644 index 2402983..0000000 Binary files a/XML/pdf/HKB_128.pdf and /dev/null differ diff --git a/XML/pdf/HKB_129.pdf b/XML/pdf/HKB_129.pdf deleted file mode 100644 index 0fcf793..0000000 Binary files a/XML/pdf/HKB_129.pdf and /dev/null differ diff --git a/XML/pdf/HKB_13.pdf b/XML/pdf/HKB_13.pdf deleted file mode 100644 index ec5a634..0000000 Binary files a/XML/pdf/HKB_13.pdf and /dev/null differ diff --git a/XML/pdf/HKB_130.pdf b/XML/pdf/HKB_130.pdf deleted file mode 100644 index 9276677..0000000 Binary files a/XML/pdf/HKB_130.pdf and /dev/null differ diff --git a/XML/pdf/HKB_131.pdf b/XML/pdf/HKB_131.pdf deleted file mode 100644 index 5dde420..0000000 Binary files a/XML/pdf/HKB_131.pdf and /dev/null differ diff --git a/XML/pdf/HKB_132.pdf b/XML/pdf/HKB_132.pdf deleted file mode 100644 index f0ee7b1..0000000 Binary files a/XML/pdf/HKB_132.pdf and /dev/null differ diff --git a/XML/pdf/HKB_133.pdf b/XML/pdf/HKB_133.pdf deleted file mode 100644 index b34e323..0000000 Binary files a/XML/pdf/HKB_133.pdf and /dev/null differ diff --git a/XML/pdf/HKB_134.pdf b/XML/pdf/HKB_134.pdf deleted file mode 100644 index bc78271..0000000 Binary files a/XML/pdf/HKB_134.pdf and /dev/null differ diff --git a/XML/pdf/HKB_135.pdf b/XML/pdf/HKB_135.pdf deleted file mode 100644 index 24339b9..0000000 Binary files a/XML/pdf/HKB_135.pdf and /dev/null differ diff --git a/XML/pdf/HKB_136.pdf b/XML/pdf/HKB_136.pdf deleted file mode 100644 index d666dfa..0000000 Binary files a/XML/pdf/HKB_136.pdf and /dev/null differ diff --git a/XML/pdf/HKB_137.pdf b/XML/pdf/HKB_137.pdf deleted file mode 100644 index 17d43c6..0000000 Binary files a/XML/pdf/HKB_137.pdf and /dev/null differ diff --git a/XML/pdf/HKB_138.pdf b/XML/pdf/HKB_138.pdf deleted file mode 100644 index 76f2326..0000000 Binary files a/XML/pdf/HKB_138.pdf and /dev/null differ diff --git a/XML/pdf/HKB_139.pdf b/XML/pdf/HKB_139.pdf deleted file mode 100644 index 7bc20fd..0000000 Binary files a/XML/pdf/HKB_139.pdf and /dev/null differ diff --git a/XML/pdf/HKB_14.pdf b/XML/pdf/HKB_14.pdf deleted file mode 100644 index 1508da6..0000000 Binary files a/XML/pdf/HKB_14.pdf and /dev/null differ diff --git a/XML/pdf/HKB_140.pdf b/XML/pdf/HKB_140.pdf deleted file mode 100644 index 4572318..0000000 Binary files a/XML/pdf/HKB_140.pdf and /dev/null differ diff --git a/XML/pdf/HKB_141.pdf b/XML/pdf/HKB_141.pdf deleted file mode 100644 index e9d0105..0000000 Binary files a/XML/pdf/HKB_141.pdf and /dev/null differ diff --git a/XML/pdf/HKB_142.pdf b/XML/pdf/HKB_142.pdf deleted file mode 100644 index 72b3603..0000000 Binary files a/XML/pdf/HKB_142.pdf and /dev/null differ diff --git a/XML/pdf/HKB_143.pdf b/XML/pdf/HKB_143.pdf deleted file mode 100644 index 7c52af9..0000000 Binary files a/XML/pdf/HKB_143.pdf and /dev/null differ diff --git a/XML/pdf/HKB_144.pdf b/XML/pdf/HKB_144.pdf deleted file mode 100644 index c942c06..0000000 Binary files a/XML/pdf/HKB_144.pdf and /dev/null differ diff --git a/XML/pdf/HKB_145.pdf b/XML/pdf/HKB_145.pdf deleted file mode 100644 index 058c7aa..0000000 Binary files a/XML/pdf/HKB_145.pdf and /dev/null differ diff --git a/XML/pdf/HKB_146.pdf b/XML/pdf/HKB_146.pdf deleted file mode 100644 index bde27f2..0000000 Binary files a/XML/pdf/HKB_146.pdf and /dev/null differ diff --git a/XML/pdf/HKB_147.pdf b/XML/pdf/HKB_147.pdf deleted file mode 100644 index 683b0bd..0000000 Binary files a/XML/pdf/HKB_147.pdf and /dev/null differ diff --git a/XML/pdf/HKB_148.pdf b/XML/pdf/HKB_148.pdf deleted file mode 100644 index 7181b6f..0000000 Binary files a/XML/pdf/HKB_148.pdf and /dev/null differ diff --git a/XML/pdf/HKB_149.pdf b/XML/pdf/HKB_149.pdf deleted file mode 100644 index 51291b7..0000000 Binary files a/XML/pdf/HKB_149.pdf and /dev/null differ diff --git a/XML/pdf/HKB_15.pdf b/XML/pdf/HKB_15.pdf deleted file mode 100644 index c71cdeb..0000000 Binary files a/XML/pdf/HKB_15.pdf and /dev/null differ diff --git a/XML/pdf/HKB_150.pdf b/XML/pdf/HKB_150.pdf deleted file mode 100644 index 3f71c32..0000000 Binary files a/XML/pdf/HKB_150.pdf and /dev/null differ diff --git a/XML/pdf/HKB_151.pdf b/XML/pdf/HKB_151.pdf deleted file mode 100644 index 05e87a8..0000000 Binary files a/XML/pdf/HKB_151.pdf and /dev/null differ diff --git a/XML/pdf/HKB_152.pdf b/XML/pdf/HKB_152.pdf deleted file mode 100644 index bab03b0..0000000 Binary files a/XML/pdf/HKB_152.pdf and /dev/null differ diff --git a/XML/pdf/HKB_153.pdf b/XML/pdf/HKB_153.pdf deleted file mode 100644 index 87cce03..0000000 Binary files a/XML/pdf/HKB_153.pdf and /dev/null differ diff --git a/XML/pdf/HKB_154.pdf b/XML/pdf/HKB_154.pdf deleted file mode 100644 index a10961f..0000000 Binary files a/XML/pdf/HKB_154.pdf and /dev/null differ diff --git a/XML/pdf/HKB_155.pdf b/XML/pdf/HKB_155.pdf deleted file mode 100644 index 519c548..0000000 Binary files a/XML/pdf/HKB_155.pdf and /dev/null differ diff --git a/XML/pdf/HKB_156.pdf b/XML/pdf/HKB_156.pdf deleted file mode 100644 index 102ff1a..0000000 Binary files a/XML/pdf/HKB_156.pdf and /dev/null differ diff --git a/XML/pdf/HKB_157.pdf b/XML/pdf/HKB_157.pdf deleted file mode 100644 index 9a1b808..0000000 Binary files a/XML/pdf/HKB_157.pdf and /dev/null differ diff --git a/XML/pdf/HKB_158.pdf b/XML/pdf/HKB_158.pdf deleted file mode 100644 index 5f767c2..0000000 Binary files a/XML/pdf/HKB_158.pdf and /dev/null differ diff --git a/XML/pdf/HKB_159.pdf b/XML/pdf/HKB_159.pdf deleted file mode 100644 index 29a49f0..0000000 Binary files a/XML/pdf/HKB_159.pdf and /dev/null differ diff --git a/XML/pdf/HKB_16.pdf b/XML/pdf/HKB_16.pdf deleted file mode 100644 index 0b4ae3d..0000000 Binary files a/XML/pdf/HKB_16.pdf and /dev/null differ diff --git a/XML/pdf/HKB_160.pdf b/XML/pdf/HKB_160.pdf deleted file mode 100644 index 44142f5..0000000 Binary files a/XML/pdf/HKB_160.pdf and /dev/null differ diff --git a/XML/pdf/HKB_161.pdf b/XML/pdf/HKB_161.pdf deleted file mode 100644 index 3b9ec74..0000000 Binary files a/XML/pdf/HKB_161.pdf and /dev/null differ diff --git a/XML/pdf/HKB_162.pdf b/XML/pdf/HKB_162.pdf deleted file mode 100644 index 521b98d..0000000 Binary files a/XML/pdf/HKB_162.pdf and /dev/null differ diff --git a/XML/pdf/HKB_163.pdf b/XML/pdf/HKB_163.pdf deleted file mode 100644 index 524c95a..0000000 Binary files a/XML/pdf/HKB_163.pdf and /dev/null differ diff --git a/XML/pdf/HKB_164.pdf b/XML/pdf/HKB_164.pdf deleted file mode 100644 index 6ca62e9..0000000 Binary files a/XML/pdf/HKB_164.pdf and /dev/null differ diff --git a/XML/pdf/HKB_165.pdf b/XML/pdf/HKB_165.pdf deleted file mode 100644 index 916ebf1..0000000 Binary files a/XML/pdf/HKB_165.pdf and /dev/null differ diff --git a/XML/pdf/HKB_166.pdf b/XML/pdf/HKB_166.pdf deleted file mode 100644 index c54a2db..0000000 Binary files a/XML/pdf/HKB_166.pdf and /dev/null differ diff --git a/XML/pdf/HKB_167.pdf b/XML/pdf/HKB_167.pdf deleted file mode 100644 index f362d1b..0000000 Binary files a/XML/pdf/HKB_167.pdf and /dev/null differ diff --git a/XML/pdf/HKB_168.pdf b/XML/pdf/HKB_168.pdf deleted file mode 100644 index 8ef5202..0000000 Binary files a/XML/pdf/HKB_168.pdf and /dev/null differ diff --git a/XML/pdf/HKB_169.pdf b/XML/pdf/HKB_169.pdf deleted file mode 100644 index 1739270..0000000 Binary files a/XML/pdf/HKB_169.pdf and /dev/null differ diff --git a/XML/pdf/HKB_17.pdf b/XML/pdf/HKB_17.pdf deleted file mode 100644 index 651c839..0000000 Binary files a/XML/pdf/HKB_17.pdf and /dev/null differ diff --git a/XML/pdf/HKB_170.pdf b/XML/pdf/HKB_170.pdf deleted file mode 100644 index 9bdac8e..0000000 Binary files a/XML/pdf/HKB_170.pdf and /dev/null differ diff --git a/XML/pdf/HKB_171.pdf b/XML/pdf/HKB_171.pdf deleted file mode 100644 index b320fff..0000000 Binary files a/XML/pdf/HKB_171.pdf and /dev/null differ diff --git a/XML/pdf/HKB_172.pdf b/XML/pdf/HKB_172.pdf deleted file mode 100644 index 1cd281f..0000000 Binary files a/XML/pdf/HKB_172.pdf and /dev/null differ diff --git a/XML/pdf/HKB_173.pdf b/XML/pdf/HKB_173.pdf deleted file mode 100644 index 84271f2..0000000 Binary files a/XML/pdf/HKB_173.pdf and /dev/null differ diff --git a/XML/pdf/HKB_174.pdf b/XML/pdf/HKB_174.pdf deleted file mode 100644 index 7f1b5a6..0000000 Binary files a/XML/pdf/HKB_174.pdf and /dev/null differ diff --git a/XML/pdf/HKB_175.pdf b/XML/pdf/HKB_175.pdf deleted file mode 100644 index 8ce67b0..0000000 Binary files a/XML/pdf/HKB_175.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1751.pdf b/XML/pdf/HKB_1751.pdf deleted file mode 100644 index e6216d6..0000000 Binary files a/XML/pdf/HKB_1751.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1752.pdf b/XML/pdf/HKB_1752.pdf deleted file mode 100644 index 3a823a0..0000000 Binary files a/XML/pdf/HKB_1752.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1753.pdf b/XML/pdf/HKB_1753.pdf deleted file mode 100644 index 3dd6ee8..0000000 Binary files a/XML/pdf/HKB_1753.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1754.pdf b/XML/pdf/HKB_1754.pdf deleted file mode 100644 index f3a346d..0000000 Binary files a/XML/pdf/HKB_1754.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1755.pdf b/XML/pdf/HKB_1755.pdf deleted file mode 100644 index 6e72495..0000000 Binary files a/XML/pdf/HKB_1755.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1756.pdf b/XML/pdf/HKB_1756.pdf deleted file mode 100644 index 9c2d7d6..0000000 Binary files a/XML/pdf/HKB_1756.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1758.pdf b/XML/pdf/HKB_1758.pdf deleted file mode 100644 index 615717d..0000000 Binary files a/XML/pdf/HKB_1758.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1759.pdf b/XML/pdf/HKB_1759.pdf deleted file mode 100644 index 362ef8c..0000000 Binary files a/XML/pdf/HKB_1759.pdf and /dev/null differ diff --git a/XML/pdf/HKB_176.pdf b/XML/pdf/HKB_176.pdf deleted file mode 100644 index 5874d4b..0000000 Binary files a/XML/pdf/HKB_176.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1760.pdf b/XML/pdf/HKB_1760.pdf deleted file mode 100644 index 9edfd96..0000000 Binary files a/XML/pdf/HKB_1760.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1761.pdf b/XML/pdf/HKB_1761.pdf deleted file mode 100644 index decf3d4..0000000 Binary files a/XML/pdf/HKB_1761.pdf and /dev/null differ diff --git a/XML/pdf/HKB_1762.pdf b/XML/pdf/HKB_1762.pdf deleted file mode 100644 index baa76f1..0000000 Binary files a/XML/pdf/HKB_1762.pdf and /dev/null differ diff --git a/XML/pdf/HKB_177.pdf b/XML/pdf/HKB_177.pdf deleted file mode 100644 index a184145..0000000 Binary files a/XML/pdf/HKB_177.pdf and /dev/null differ diff --git a/XML/pdf/HKB_178.pdf b/XML/pdf/HKB_178.pdf deleted file mode 100644 index 370bdc5..0000000 Binary files a/XML/pdf/HKB_178.pdf and /dev/null differ diff --git a/XML/pdf/HKB_179.pdf b/XML/pdf/HKB_179.pdf deleted file mode 100644 index a0a6814..0000000 Binary files a/XML/pdf/HKB_179.pdf and /dev/null differ diff --git a/XML/pdf/HKB_18.pdf b/XML/pdf/HKB_18.pdf deleted file mode 100644 index 7cad12b..0000000 Binary files a/XML/pdf/HKB_18.pdf and /dev/null differ diff --git a/XML/pdf/HKB_180.pdf b/XML/pdf/HKB_180.pdf deleted file mode 100644 index 9981250..0000000 Binary files a/XML/pdf/HKB_180.pdf and /dev/null differ diff --git a/XML/pdf/HKB_181.pdf b/XML/pdf/HKB_181.pdf deleted file mode 100644 index 3d47cc9..0000000 Binary files a/XML/pdf/HKB_181.pdf and /dev/null differ diff --git a/XML/pdf/HKB_182.pdf b/XML/pdf/HKB_182.pdf deleted file mode 100644 index b9d4124..0000000 Binary files a/XML/pdf/HKB_182.pdf and /dev/null differ diff --git a/XML/pdf/HKB_183.pdf b/XML/pdf/HKB_183.pdf deleted file mode 100644 index 6b16218..0000000 Binary files a/XML/pdf/HKB_183.pdf and /dev/null differ diff --git a/XML/pdf/HKB_184.pdf b/XML/pdf/HKB_184.pdf deleted file mode 100644 index 520a4cd..0000000 Binary files a/XML/pdf/HKB_184.pdf and /dev/null differ diff --git a/XML/pdf/HKB_185.pdf b/XML/pdf/HKB_185.pdf deleted file mode 100644 index 660fa3a..0000000 Binary files a/XML/pdf/HKB_185.pdf and /dev/null differ diff --git a/XML/pdf/HKB_186.pdf b/XML/pdf/HKB_186.pdf deleted file mode 100644 index 8f56ae2..0000000 Binary files a/XML/pdf/HKB_186.pdf and /dev/null differ diff --git a/XML/pdf/HKB_187.pdf b/XML/pdf/HKB_187.pdf deleted file mode 100644 index 87cc462..0000000 Binary files a/XML/pdf/HKB_187.pdf and /dev/null differ diff --git a/XML/pdf/HKB_188.pdf b/XML/pdf/HKB_188.pdf deleted file mode 100644 index feaaf2e..0000000 Binary files a/XML/pdf/HKB_188.pdf and /dev/null differ diff --git a/XML/pdf/HKB_189.pdf b/XML/pdf/HKB_189.pdf deleted file mode 100644 index dff4924..0000000 Binary files a/XML/pdf/HKB_189.pdf and /dev/null differ diff --git a/XML/pdf/HKB_19.pdf b/XML/pdf/HKB_19.pdf deleted file mode 100644 index 2d2ef90..0000000 Binary files a/XML/pdf/HKB_19.pdf and /dev/null differ diff --git a/XML/pdf/HKB_190.pdf b/XML/pdf/HKB_190.pdf deleted file mode 100644 index 937164b..0000000 Binary files a/XML/pdf/HKB_190.pdf and /dev/null differ diff --git a/XML/pdf/HKB_190a.pdf b/XML/pdf/HKB_190a.pdf deleted file mode 100644 index 2e4a3de..0000000 Binary files a/XML/pdf/HKB_190a.pdf and /dev/null differ diff --git a/XML/pdf/HKB_191.pdf b/XML/pdf/HKB_191.pdf deleted file mode 100644 index 22624b0..0000000 Binary files a/XML/pdf/HKB_191.pdf and /dev/null differ diff --git a/XML/pdf/HKB_192.pdf b/XML/pdf/HKB_192.pdf deleted file mode 100644 index 344b351..0000000 Binary files a/XML/pdf/HKB_192.pdf and /dev/null differ diff --git a/XML/pdf/HKB_193.pdf b/XML/pdf/HKB_193.pdf deleted file mode 100644 index b029ec2..0000000 Binary files a/XML/pdf/HKB_193.pdf and /dev/null differ diff --git a/XML/pdf/HKB_194.pdf b/XML/pdf/HKB_194.pdf deleted file mode 100644 index 90c6407..0000000 Binary files a/XML/pdf/HKB_194.pdf and /dev/null differ diff --git a/XML/pdf/HKB_195.pdf b/XML/pdf/HKB_195.pdf deleted file mode 100644 index 151871f..0000000 Binary files a/XML/pdf/HKB_195.pdf and /dev/null differ diff --git a/XML/pdf/HKB_196.pdf b/XML/pdf/HKB_196.pdf deleted file mode 100644 index d361244..0000000 Binary files a/XML/pdf/HKB_196.pdf and /dev/null differ diff --git a/XML/pdf/HKB_197.pdf b/XML/pdf/HKB_197.pdf deleted file mode 100644 index 825e6e5..0000000 Binary files a/XML/pdf/HKB_197.pdf and /dev/null differ diff --git a/XML/pdf/HKB_198.pdf b/XML/pdf/HKB_198.pdf deleted file mode 100644 index da2ad08..0000000 Binary files a/XML/pdf/HKB_198.pdf and /dev/null differ diff --git a/XML/pdf/HKB_199.pdf b/XML/pdf/HKB_199.pdf deleted file mode 100644 index c479cb2..0000000 Binary files a/XML/pdf/HKB_199.pdf and /dev/null differ diff --git a/XML/pdf/HKB_2.pdf b/XML/pdf/HKB_2.pdf deleted file mode 100644 index 759009c..0000000 Binary files a/XML/pdf/HKB_2.pdf and /dev/null differ diff --git a/XML/pdf/HKB_20.pdf b/XML/pdf/HKB_20.pdf deleted file mode 100644 index dd52fb6..0000000 Binary files a/XML/pdf/HKB_20.pdf and /dev/null differ diff --git a/XML/pdf/HKB_200.pdf b/XML/pdf/HKB_200.pdf deleted file mode 100644 index bb75ad2..0000000 Binary files a/XML/pdf/HKB_200.pdf and /dev/null differ diff --git a/XML/pdf/HKB_201.pdf b/XML/pdf/HKB_201.pdf deleted file mode 100644 index def9c2e..0000000 Binary files a/XML/pdf/HKB_201.pdf and /dev/null differ diff --git a/XML/pdf/HKB_202.pdf b/XML/pdf/HKB_202.pdf deleted file mode 100644 index 87e2d2b..0000000 Binary files a/XML/pdf/HKB_202.pdf and /dev/null differ diff --git a/XML/pdf/HKB_203.pdf b/XML/pdf/HKB_203.pdf deleted file mode 100644 index ced3900..0000000 Binary files a/XML/pdf/HKB_203.pdf and /dev/null differ diff --git a/XML/pdf/HKB_204.pdf b/XML/pdf/HKB_204.pdf deleted file mode 100644 index a144f0a..0000000 Binary files a/XML/pdf/HKB_204.pdf and /dev/null differ diff --git a/XML/pdf/HKB_205.pdf b/XML/pdf/HKB_205.pdf deleted file mode 100644 index 54635ce..0000000 Binary files a/XML/pdf/HKB_205.pdf and /dev/null differ diff --git a/XML/pdf/HKB_206.pdf b/XML/pdf/HKB_206.pdf deleted file mode 100644 index 71b3dbe..0000000 Binary files a/XML/pdf/HKB_206.pdf and /dev/null differ diff --git a/XML/pdf/HKB_207.pdf b/XML/pdf/HKB_207.pdf deleted file mode 100644 index e99e3dd..0000000 Binary files a/XML/pdf/HKB_207.pdf and /dev/null differ diff --git a/XML/pdf/HKB_208.pdf b/XML/pdf/HKB_208.pdf deleted file mode 100644 index 3de13cb..0000000 Binary files a/XML/pdf/HKB_208.pdf and /dev/null differ diff --git a/XML/pdf/HKB_209.pdf b/XML/pdf/HKB_209.pdf deleted file mode 100644 index 84e7ec5..0000000 Binary files a/XML/pdf/HKB_209.pdf and /dev/null differ diff --git a/XML/pdf/HKB_21.pdf b/XML/pdf/HKB_21.pdf deleted file mode 100644 index 029abcc..0000000 Binary files a/XML/pdf/HKB_21.pdf and /dev/null differ diff --git a/XML/pdf/HKB_210.pdf b/XML/pdf/HKB_210.pdf deleted file mode 100644 index 09b9d7a..0000000 Binary files a/XML/pdf/HKB_210.pdf and /dev/null differ diff --git a/XML/pdf/HKB_211.pdf b/XML/pdf/HKB_211.pdf deleted file mode 100644 index f7b95a6..0000000 Binary files a/XML/pdf/HKB_211.pdf and /dev/null differ diff --git a/XML/pdf/HKB_212.pdf b/XML/pdf/HKB_212.pdf deleted file mode 100644 index 09870ba..0000000 Binary files a/XML/pdf/HKB_212.pdf and /dev/null differ diff --git a/XML/pdf/HKB_213.pdf b/XML/pdf/HKB_213.pdf deleted file mode 100644 index 4ff256a..0000000 Binary files a/XML/pdf/HKB_213.pdf and /dev/null differ diff --git a/XML/pdf/HKB_214.pdf b/XML/pdf/HKB_214.pdf deleted file mode 100644 index 4fbaa50..0000000 Binary files a/XML/pdf/HKB_214.pdf and /dev/null differ diff --git a/XML/pdf/HKB_215.pdf b/XML/pdf/HKB_215.pdf deleted file mode 100644 index 61ae619..0000000 Binary files a/XML/pdf/HKB_215.pdf and /dev/null differ diff --git a/XML/pdf/HKB_216.pdf b/XML/pdf/HKB_216.pdf deleted file mode 100644 index dfc0903..0000000 Binary files a/XML/pdf/HKB_216.pdf and /dev/null differ diff --git a/XML/pdf/HKB_217.pdf b/XML/pdf/HKB_217.pdf deleted file mode 100644 index 2b0e3f5..0000000 Binary files a/XML/pdf/HKB_217.pdf and /dev/null differ diff --git a/XML/pdf/HKB_218.pdf b/XML/pdf/HKB_218.pdf deleted file mode 100644 index 28fcd26..0000000 Binary files a/XML/pdf/HKB_218.pdf and /dev/null differ diff --git a/XML/pdf/HKB_219.pdf b/XML/pdf/HKB_219.pdf deleted file mode 100644 index 9aed8c5..0000000 Binary files a/XML/pdf/HKB_219.pdf and /dev/null differ diff --git a/XML/pdf/HKB_22.pdf b/XML/pdf/HKB_22.pdf deleted file mode 100644 index 74ef9ad..0000000 Binary files a/XML/pdf/HKB_22.pdf and /dev/null differ diff --git a/XML/pdf/HKB_220.pdf b/XML/pdf/HKB_220.pdf deleted file mode 100644 index 17f314e..0000000 Binary files a/XML/pdf/HKB_220.pdf and /dev/null differ diff --git a/XML/pdf/HKB_221.pdf b/XML/pdf/HKB_221.pdf deleted file mode 100644 index 99008ee..0000000 Binary files a/XML/pdf/HKB_221.pdf and /dev/null differ diff --git a/XML/pdf/HKB_222.pdf b/XML/pdf/HKB_222.pdf deleted file mode 100644 index 5399ae9..0000000 Binary files a/XML/pdf/HKB_222.pdf and /dev/null differ diff --git a/XML/pdf/HKB_223.pdf b/XML/pdf/HKB_223.pdf deleted file mode 100644 index dc4abd9..0000000 Binary files a/XML/pdf/HKB_223.pdf and /dev/null differ diff --git a/XML/pdf/HKB_224.pdf b/XML/pdf/HKB_224.pdf deleted file mode 100644 index ebe3cd9..0000000 Binary files a/XML/pdf/HKB_224.pdf and /dev/null differ diff --git a/XML/pdf/HKB_225.pdf b/XML/pdf/HKB_225.pdf deleted file mode 100644 index 2920884..0000000 Binary files a/XML/pdf/HKB_225.pdf and /dev/null differ diff --git a/XML/pdf/HKB_226.pdf b/XML/pdf/HKB_226.pdf deleted file mode 100644 index a97e2c8..0000000 Binary files a/XML/pdf/HKB_226.pdf and /dev/null differ diff --git a/XML/pdf/HKB_227.pdf b/XML/pdf/HKB_227.pdf deleted file mode 100644 index 2a28186..0000000 Binary files a/XML/pdf/HKB_227.pdf and /dev/null differ diff --git a/XML/pdf/HKB_228.pdf b/XML/pdf/HKB_228.pdf deleted file mode 100644 index b746b1a..0000000 Binary files a/XML/pdf/HKB_228.pdf and /dev/null differ diff --git a/XML/pdf/HKB_229.pdf b/XML/pdf/HKB_229.pdf deleted file mode 100644 index 0787730..0000000 Binary files a/XML/pdf/HKB_229.pdf and /dev/null differ diff --git a/XML/pdf/HKB_23.pdf b/XML/pdf/HKB_23.pdf deleted file mode 100644 index ca26de0..0000000 Binary files a/XML/pdf/HKB_23.pdf and /dev/null differ diff --git a/XML/pdf/HKB_230.pdf b/XML/pdf/HKB_230.pdf deleted file mode 100644 index 737b8d4..0000000 Binary files a/XML/pdf/HKB_230.pdf and /dev/null differ diff --git a/XML/pdf/HKB_231.pdf b/XML/pdf/HKB_231.pdf deleted file mode 100644 index c679f5e..0000000 Binary files a/XML/pdf/HKB_231.pdf and /dev/null differ diff --git a/XML/pdf/HKB_232.pdf b/XML/pdf/HKB_232.pdf deleted file mode 100644 index c6fe0d0..0000000 Binary files a/XML/pdf/HKB_232.pdf and /dev/null differ diff --git a/XML/pdf/HKB_233.pdf b/XML/pdf/HKB_233.pdf deleted file mode 100644 index 212e6ba..0000000 Binary files a/XML/pdf/HKB_233.pdf and /dev/null differ diff --git a/XML/pdf/HKB_234.pdf b/XML/pdf/HKB_234.pdf deleted file mode 100644 index a5e3aa3..0000000 Binary files a/XML/pdf/HKB_234.pdf and /dev/null differ diff --git a/XML/pdf/HKB_235.pdf b/XML/pdf/HKB_235.pdf deleted file mode 100644 index e81be7d..0000000 Binary files a/XML/pdf/HKB_235.pdf and /dev/null differ diff --git a/XML/pdf/HKB_236.pdf b/XML/pdf/HKB_236.pdf deleted file mode 100644 index 99ceb01..0000000 Binary files a/XML/pdf/HKB_236.pdf and /dev/null differ diff --git a/XML/pdf/HKB_237.pdf b/XML/pdf/HKB_237.pdf deleted file mode 100644 index 732d09c..0000000 Binary files a/XML/pdf/HKB_237.pdf and /dev/null differ diff --git a/XML/pdf/HKB_238.pdf b/XML/pdf/HKB_238.pdf deleted file mode 100644 index 7d0f98f..0000000 Binary files a/XML/pdf/HKB_238.pdf and /dev/null differ diff --git a/XML/pdf/HKB_239.pdf b/XML/pdf/HKB_239.pdf deleted file mode 100644 index 79851e1..0000000 Binary files a/XML/pdf/HKB_239.pdf and /dev/null differ diff --git a/XML/pdf/HKB_24.pdf b/XML/pdf/HKB_24.pdf deleted file mode 100644 index 4aa39b1..0000000 Binary files a/XML/pdf/HKB_24.pdf and /dev/null differ diff --git a/XML/pdf/HKB_25.pdf b/XML/pdf/HKB_25.pdf deleted file mode 100644 index cfd8086..0000000 Binary files a/XML/pdf/HKB_25.pdf and /dev/null differ diff --git a/XML/pdf/HKB_26.pdf b/XML/pdf/HKB_26.pdf deleted file mode 100644 index 57445d7..0000000 Binary files a/XML/pdf/HKB_26.pdf and /dev/null differ diff --git a/XML/pdf/HKB_27.pdf b/XML/pdf/HKB_27.pdf deleted file mode 100644 index 8f95b38..0000000 Binary files a/XML/pdf/HKB_27.pdf and /dev/null differ diff --git a/XML/pdf/HKB_28.pdf b/XML/pdf/HKB_28.pdf deleted file mode 100644 index 0db4989..0000000 Binary files a/XML/pdf/HKB_28.pdf and /dev/null differ diff --git a/XML/pdf/HKB_29.pdf b/XML/pdf/HKB_29.pdf deleted file mode 100644 index 12796e9..0000000 Binary files a/XML/pdf/HKB_29.pdf and /dev/null differ diff --git a/XML/pdf/HKB_3.pdf b/XML/pdf/HKB_3.pdf deleted file mode 100644 index c58ba37..0000000 Binary files a/XML/pdf/HKB_3.pdf and /dev/null differ diff --git a/XML/pdf/HKB_30.pdf b/XML/pdf/HKB_30.pdf deleted file mode 100644 index bbe3a5c..0000000 Binary files a/XML/pdf/HKB_30.pdf and /dev/null differ diff --git a/XML/pdf/HKB_31.pdf b/XML/pdf/HKB_31.pdf deleted file mode 100644 index ecfb758..0000000 Binary files a/XML/pdf/HKB_31.pdf and /dev/null differ diff --git a/XML/pdf/HKB_32.pdf b/XML/pdf/HKB_32.pdf deleted file mode 100644 index e1c5585..0000000 Binary files a/XML/pdf/HKB_32.pdf and /dev/null differ diff --git a/XML/pdf/HKB_33.pdf b/XML/pdf/HKB_33.pdf deleted file mode 100644 index 8766e17..0000000 Binary files a/XML/pdf/HKB_33.pdf and /dev/null differ diff --git a/XML/pdf/HKB_34.pdf b/XML/pdf/HKB_34.pdf deleted file mode 100644 index 2e894ba..0000000 Binary files a/XML/pdf/HKB_34.pdf and /dev/null differ diff --git a/XML/pdf/HKB_35.pdf b/XML/pdf/HKB_35.pdf deleted file mode 100644 index d246693..0000000 Binary files a/XML/pdf/HKB_35.pdf and /dev/null differ diff --git a/XML/pdf/HKB_36.pdf b/XML/pdf/HKB_36.pdf deleted file mode 100644 index 2b659d0..0000000 Binary files a/XML/pdf/HKB_36.pdf and /dev/null differ diff --git a/XML/pdf/HKB_37.pdf b/XML/pdf/HKB_37.pdf deleted file mode 100644 index f7eb439..0000000 Binary files a/XML/pdf/HKB_37.pdf and /dev/null differ diff --git a/XML/pdf/HKB_38.pdf b/XML/pdf/HKB_38.pdf deleted file mode 100644 index f951d65..0000000 Binary files a/XML/pdf/HKB_38.pdf and /dev/null differ diff --git a/XML/pdf/HKB_39.pdf b/XML/pdf/HKB_39.pdf deleted file mode 100644 index bb018dd..0000000 Binary files a/XML/pdf/HKB_39.pdf and /dev/null differ diff --git a/XML/pdf/HKB_4.pdf b/XML/pdf/HKB_4.pdf deleted file mode 100644 index 3f9128a..0000000 Binary files a/XML/pdf/HKB_4.pdf and /dev/null differ diff --git a/XML/pdf/HKB_40.pdf b/XML/pdf/HKB_40.pdf deleted file mode 100644 index 3068c04..0000000 Binary files a/XML/pdf/HKB_40.pdf and /dev/null differ diff --git a/XML/pdf/HKB_41.pdf b/XML/pdf/HKB_41.pdf deleted file mode 100644 index 11f79d1..0000000 Binary files a/XML/pdf/HKB_41.pdf and /dev/null differ diff --git a/XML/pdf/HKB_42.pdf b/XML/pdf/HKB_42.pdf deleted file mode 100644 index 6c1497b..0000000 Binary files a/XML/pdf/HKB_42.pdf and /dev/null differ diff --git a/XML/pdf/HKB_43.pdf b/XML/pdf/HKB_43.pdf deleted file mode 100644 index 7ace3c5..0000000 Binary files a/XML/pdf/HKB_43.pdf and /dev/null differ diff --git a/XML/pdf/HKB_44.pdf b/XML/pdf/HKB_44.pdf deleted file mode 100644 index a761946..0000000 Binary files a/XML/pdf/HKB_44.pdf and /dev/null differ diff --git a/XML/pdf/HKB_45.pdf b/XML/pdf/HKB_45.pdf deleted file mode 100644 index c4aeb9e..0000000 Binary files a/XML/pdf/HKB_45.pdf and /dev/null differ diff --git a/XML/pdf/HKB_46.pdf b/XML/pdf/HKB_46.pdf deleted file mode 100644 index 6165dd0..0000000 Binary files a/XML/pdf/HKB_46.pdf and /dev/null differ diff --git a/XML/pdf/HKB_47.pdf b/XML/pdf/HKB_47.pdf deleted file mode 100644 index 90c885f..0000000 Binary files a/XML/pdf/HKB_47.pdf and /dev/null differ diff --git a/XML/pdf/HKB_48.pdf b/XML/pdf/HKB_48.pdf deleted file mode 100644 index 20e3efc..0000000 Binary files a/XML/pdf/HKB_48.pdf and /dev/null differ diff --git a/XML/pdf/HKB_49.pdf b/XML/pdf/HKB_49.pdf deleted file mode 100644 index f13ca76..0000000 Binary files a/XML/pdf/HKB_49.pdf and /dev/null differ diff --git a/XML/pdf/HKB_5.pdf b/XML/pdf/HKB_5.pdf deleted file mode 100644 index 71f71bb..0000000 Binary files a/XML/pdf/HKB_5.pdf and /dev/null differ diff --git a/XML/pdf/HKB_50.pdf b/XML/pdf/HKB_50.pdf deleted file mode 100644 index fa59606..0000000 Binary files a/XML/pdf/HKB_50.pdf and /dev/null differ diff --git a/XML/pdf/HKB_51.pdf b/XML/pdf/HKB_51.pdf deleted file mode 100644 index 37551cc..0000000 Binary files a/XML/pdf/HKB_51.pdf and /dev/null differ diff --git a/XML/pdf/HKB_52.pdf b/XML/pdf/HKB_52.pdf deleted file mode 100644 index e43732e..0000000 Binary files a/XML/pdf/HKB_52.pdf and /dev/null differ diff --git a/XML/pdf/HKB_53.pdf b/XML/pdf/HKB_53.pdf deleted file mode 100644 index 47161c9..0000000 Binary files a/XML/pdf/HKB_53.pdf and /dev/null differ diff --git a/XML/pdf/HKB_54.pdf b/XML/pdf/HKB_54.pdf deleted file mode 100644 index d0feab6..0000000 Binary files a/XML/pdf/HKB_54.pdf and /dev/null differ diff --git a/XML/pdf/HKB_55.pdf b/XML/pdf/HKB_55.pdf deleted file mode 100644 index 49f386e..0000000 Binary files a/XML/pdf/HKB_55.pdf and /dev/null differ diff --git a/XML/pdf/HKB_56.pdf b/XML/pdf/HKB_56.pdf deleted file mode 100644 index 930ca9c..0000000 Binary files a/XML/pdf/HKB_56.pdf and /dev/null differ diff --git a/XML/pdf/HKB_57.pdf b/XML/pdf/HKB_57.pdf deleted file mode 100644 index 683f882..0000000 Binary files a/XML/pdf/HKB_57.pdf and /dev/null differ diff --git a/XML/pdf/HKB_58.pdf b/XML/pdf/HKB_58.pdf deleted file mode 100644 index 8f5b0d7..0000000 Binary files a/XML/pdf/HKB_58.pdf and /dev/null differ diff --git a/XML/pdf/HKB_59.pdf b/XML/pdf/HKB_59.pdf deleted file mode 100644 index b90af47..0000000 Binary files a/XML/pdf/HKB_59.pdf and /dev/null differ diff --git a/XML/pdf/HKB_6.pdf b/XML/pdf/HKB_6.pdf deleted file mode 100644 index cad0592..0000000 Binary files a/XML/pdf/HKB_6.pdf and /dev/null differ diff --git a/XML/pdf/HKB_60.pdf b/XML/pdf/HKB_60.pdf deleted file mode 100644 index 1fae439..0000000 Binary files a/XML/pdf/HKB_60.pdf and /dev/null differ diff --git a/XML/pdf/HKB_61.pdf b/XML/pdf/HKB_61.pdf deleted file mode 100644 index 4296985..0000000 Binary files a/XML/pdf/HKB_61.pdf and /dev/null differ diff --git a/XML/pdf/HKB_62.pdf b/XML/pdf/HKB_62.pdf deleted file mode 100644 index 1307a89..0000000 Binary files a/XML/pdf/HKB_62.pdf and /dev/null differ diff --git a/XML/pdf/HKB_63.pdf b/XML/pdf/HKB_63.pdf deleted file mode 100644 index d9a76d7..0000000 Binary files a/XML/pdf/HKB_63.pdf and /dev/null differ diff --git a/XML/pdf/HKB_64.pdf b/XML/pdf/HKB_64.pdf deleted file mode 100644 index 473150e..0000000 Binary files a/XML/pdf/HKB_64.pdf and /dev/null differ diff --git a/XML/pdf/HKB_65.pdf b/XML/pdf/HKB_65.pdf deleted file mode 100644 index b31df29..0000000 Binary files a/XML/pdf/HKB_65.pdf and /dev/null differ diff --git a/XML/pdf/HKB_66.pdf b/XML/pdf/HKB_66.pdf deleted file mode 100644 index dc8d8a8..0000000 Binary files a/XML/pdf/HKB_66.pdf and /dev/null differ diff --git a/XML/pdf/HKB_67.pdf b/XML/pdf/HKB_67.pdf deleted file mode 100644 index 4f472b2..0000000 Binary files a/XML/pdf/HKB_67.pdf and /dev/null differ diff --git a/XML/pdf/HKB_68.pdf b/XML/pdf/HKB_68.pdf deleted file mode 100644 index 92c37e8..0000000 Binary files a/XML/pdf/HKB_68.pdf and /dev/null differ diff --git a/XML/pdf/HKB_69.pdf b/XML/pdf/HKB_69.pdf deleted file mode 100644 index f406f02..0000000 Binary files a/XML/pdf/HKB_69.pdf and /dev/null differ diff --git a/XML/pdf/HKB_7.pdf b/XML/pdf/HKB_7.pdf deleted file mode 100644 index b457eb8..0000000 Binary files a/XML/pdf/HKB_7.pdf and /dev/null differ diff --git a/XML/pdf/HKB_70.pdf b/XML/pdf/HKB_70.pdf deleted file mode 100644 index cd8634f..0000000 Binary files a/XML/pdf/HKB_70.pdf and /dev/null differ diff --git a/XML/pdf/HKB_71.pdf b/XML/pdf/HKB_71.pdf deleted file mode 100644 index abaf5fb..0000000 Binary files a/XML/pdf/HKB_71.pdf and /dev/null differ diff --git a/XML/pdf/HKB_72.pdf b/XML/pdf/HKB_72.pdf deleted file mode 100644 index e92a14e..0000000 Binary files a/XML/pdf/HKB_72.pdf and /dev/null differ diff --git a/XML/pdf/HKB_73.pdf b/XML/pdf/HKB_73.pdf deleted file mode 100644 index bc9f9bc..0000000 Binary files a/XML/pdf/HKB_73.pdf and /dev/null differ diff --git a/XML/pdf/HKB_74.pdf b/XML/pdf/HKB_74.pdf deleted file mode 100644 index 9c69961..0000000 Binary files a/XML/pdf/HKB_74.pdf and /dev/null differ diff --git a/XML/pdf/HKB_75.pdf b/XML/pdf/HKB_75.pdf deleted file mode 100644 index c859e36..0000000 Binary files a/XML/pdf/HKB_75.pdf and /dev/null differ diff --git a/XML/pdf/HKB_76.pdf b/XML/pdf/HKB_76.pdf deleted file mode 100644 index 0f5f917..0000000 Binary files a/XML/pdf/HKB_76.pdf and /dev/null differ diff --git a/XML/pdf/HKB_77.pdf b/XML/pdf/HKB_77.pdf deleted file mode 100644 index da40617..0000000 Binary files a/XML/pdf/HKB_77.pdf and /dev/null differ diff --git a/XML/pdf/HKB_78.pdf b/XML/pdf/HKB_78.pdf deleted file mode 100644 index e534125..0000000 Binary files a/XML/pdf/HKB_78.pdf and /dev/null differ diff --git a/XML/pdf/HKB_79.pdf b/XML/pdf/HKB_79.pdf deleted file mode 100644 index bd732a8..0000000 Binary files a/XML/pdf/HKB_79.pdf and /dev/null differ diff --git a/XML/pdf/HKB_8.pdf b/XML/pdf/HKB_8.pdf deleted file mode 100644 index 85d6bba..0000000 Binary files a/XML/pdf/HKB_8.pdf and /dev/null differ diff --git a/XML/pdf/HKB_80.pdf b/XML/pdf/HKB_80.pdf deleted file mode 100644 index b0399d0..0000000 Binary files a/XML/pdf/HKB_80.pdf and /dev/null differ diff --git a/XML/pdf/HKB_81.pdf b/XML/pdf/HKB_81.pdf deleted file mode 100644 index 8f15f62..0000000 Binary files a/XML/pdf/HKB_81.pdf and /dev/null differ diff --git a/XML/pdf/HKB_82.pdf b/XML/pdf/HKB_82.pdf deleted file mode 100644 index 200f235..0000000 Binary files a/XML/pdf/HKB_82.pdf and /dev/null differ diff --git a/XML/pdf/HKB_83.pdf b/XML/pdf/HKB_83.pdf deleted file mode 100644 index 87e2756..0000000 Binary files a/XML/pdf/HKB_83.pdf and /dev/null differ diff --git a/XML/pdf/HKB_84.pdf b/XML/pdf/HKB_84.pdf deleted file mode 100644 index 7bcce8f..0000000 Binary files a/XML/pdf/HKB_84.pdf and /dev/null differ diff --git a/XML/pdf/HKB_85.pdf b/XML/pdf/HKB_85.pdf deleted file mode 100644 index deff19f..0000000 Binary files a/XML/pdf/HKB_85.pdf and /dev/null differ diff --git a/XML/pdf/HKB_86.pdf b/XML/pdf/HKB_86.pdf deleted file mode 100644 index dccfb80..0000000 Binary files a/XML/pdf/HKB_86.pdf and /dev/null differ diff --git a/XML/pdf/HKB_87.pdf b/XML/pdf/HKB_87.pdf deleted file mode 100644 index 5b58e76..0000000 Binary files a/XML/pdf/HKB_87.pdf and /dev/null differ diff --git a/XML/pdf/HKB_88.pdf b/XML/pdf/HKB_88.pdf deleted file mode 100644 index 166703d..0000000 Binary files a/XML/pdf/HKB_88.pdf and /dev/null differ diff --git a/XML/pdf/HKB_89.pdf b/XML/pdf/HKB_89.pdf deleted file mode 100644 index 32576f2..0000000 Binary files a/XML/pdf/HKB_89.pdf and /dev/null differ diff --git a/XML/pdf/HKB_9.pdf b/XML/pdf/HKB_9.pdf deleted file mode 100644 index 14d2174..0000000 Binary files a/XML/pdf/HKB_9.pdf and /dev/null differ diff --git a/XML/pdf/HKB_90.pdf b/XML/pdf/HKB_90.pdf deleted file mode 100644 index 4446780..0000000 Binary files a/XML/pdf/HKB_90.pdf and /dev/null differ diff --git a/XML/pdf/HKB_91.pdf b/XML/pdf/HKB_91.pdf deleted file mode 100644 index 1682175..0000000 Binary files a/XML/pdf/HKB_91.pdf and /dev/null differ diff --git a/XML/pdf/HKB_92.pdf b/XML/pdf/HKB_92.pdf deleted file mode 100644 index 2a85bc4..0000000 Binary files a/XML/pdf/HKB_92.pdf and /dev/null differ diff --git a/XML/pdf/HKB_93.pdf b/XML/pdf/HKB_93.pdf deleted file mode 100644 index 1e78157..0000000 Binary files a/XML/pdf/HKB_93.pdf and /dev/null differ diff --git a/XML/pdf/HKB_94.pdf b/XML/pdf/HKB_94.pdf deleted file mode 100644 index 9138e4e..0000000 Binary files a/XML/pdf/HKB_94.pdf and /dev/null differ diff --git a/XML/pdf/HKB_95.pdf b/XML/pdf/HKB_95.pdf deleted file mode 100644 index 67c2b99..0000000 Binary files a/XML/pdf/HKB_95.pdf and /dev/null differ diff --git a/XML/pdf/HKB_96.pdf b/XML/pdf/HKB_96.pdf deleted file mode 100644 index 5c79b4e..0000000 Binary files a/XML/pdf/HKB_96.pdf and /dev/null differ diff --git a/XML/pdf/HKB_97.pdf b/XML/pdf/HKB_97.pdf deleted file mode 100644 index f0ef83e..0000000 Binary files a/XML/pdf/HKB_97.pdf and /dev/null differ diff --git a/XML/pdf/HKB_98.pdf b/XML/pdf/HKB_98.pdf deleted file mode 100644 index f5240f8..0000000 Binary files a/XML/pdf/HKB_98.pdf and /dev/null differ diff --git a/XML/pdf/HKB_99.pdf b/XML/pdf/HKB_99.pdf deleted file mode 100644 index 0ef5b52..0000000 Binary files a/XML/pdf/HKB_99.pdf and /dev/null differ diff --git a/XML/pdf/HKB_Bibelstellen-Register.pdf b/XML/pdf/HKB_Bibelstellen-Register.pdf deleted file mode 100644 index dc1efc8..0000000 Binary files a/XML/pdf/HKB_Bibelstellen-Register.pdf and /dev/null differ diff --git a/XML/pdf/HKB_Forschungsbibliographie.pdf b/XML/pdf/HKB_Forschungsbibliographie.pdf deleted file mode 100644 index 20749dc..0000000 Binary files a/XML/pdf/HKB_Forschungsbibliographie.pdf and /dev/null differ diff --git a/XML/pdf/HKB_Register.pdf b/XML/pdf/HKB_Register.pdf deleted file mode 100644 index fbbea46..0000000 Binary files a/XML/pdf/HKB_Register.pdf and /dev/null differ