diff --git a/Controllers/WebNew/BeritaController.cs b/Controllers/WebNew/BeritaController.cs index 71625eb..fbd1404 100644 --- a/Controllers/WebNew/BeritaController.cs +++ b/Controllers/WebNew/BeritaController.cs @@ -14,13 +14,13 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/Berita/GetBerita")] public IActionResult GetBerita() { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "berita.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "berita.json"); if (!System.IO.File.Exists(path)) return NotFound(); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } [HttpGet("/WebNew/Berita/Detail/")] @@ -33,7 +33,7 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/Berita/GetDetail/")] public IActionResult GetDetail(int id) { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "berita.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "berita.json"); if (!System.IO.File.Exists(path)) return NotFound(); @@ -60,9 +60,9 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/Berita/GetAll")] public IActionResult GetAll() { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "berita.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "berita.json"); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } } } \ No newline at end of file diff --git a/Controllers/WebNew/DetailItemController.cs b/Controllers/WebNew/DetailItemController.cs index 6b77c8c..165ceb6 100644 --- a/Controllers/WebNew/DetailItemController.cs +++ b/Controllers/WebNew/DetailItemController.cs @@ -14,13 +14,13 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/DetailItem/GetDetail/")] public IActionResult GetDetail(string kode) { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "detail-item.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "detail-item.json"); if (!System.IO.File.Exists(path)) return NotFound(); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } } } \ No newline at end of file diff --git a/Controllers/WebNew/GaleriController.cs b/Controllers/WebNew/GaleriController.cs index 634634e..9d8ef8b 100644 --- a/Controllers/WebNew/GaleriController.cs +++ b/Controllers/WebNew/GaleriController.cs @@ -13,13 +13,13 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/Galeri/GetAll")] public IActionResult GetAll() { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "galeri.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "galeri.json"); if (!System.IO.File.Exists(path)) return NotFound(); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } } } \ No newline at end of file diff --git a/Controllers/WebNew/HomeController.cs b/Controllers/WebNew/HomeController.cs index 0cba918..c71b1c2 100644 --- a/Controllers/WebNew/HomeController.cs +++ b/Controllers/WebNew/HomeController.cs @@ -67,35 +67,35 @@ namespace WebApplication2.Controllers.WebNew new BeritaViewModel { Judul = "Komitmen LLHD Terhadap Pemenuhan Permen LHK NO.23 TAHUN 2020", Deskripsi = "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta...", - Gambar = "/webnew/assets/image/foto/Berita komitmen llhd.png", + Gambar = "/webnew/assetsnew/image/foto/Berita komitmen llhd.png", Tanggal = new DateTime(2025,3,4), Slug = "berita-1" }, new BeritaViewModel { Judul = "Lorem Ipsum Judul", Deskripsi = "Isi berita...", - Gambar = "/webnew/assets/image/foto/1.jpeg", + Gambar = "/webnew/assetsnew/image/foto/1.jpeg", Tanggal = new DateTime(2025,3,4), Slug = "berita-2" }, new BeritaViewModel { Judul = "Lorem Ipsum Judul", Deskripsi = "Isi berita...", - Gambar = "/webnew/assets/image/foto/2.jpeg", + Gambar = "/webnew/assetsnew/image/foto/2.jpeg", Tanggal = new DateTime(2025,3,4), Slug = "berita-3" }, new BeritaViewModel { Judul = "Lorem Ipsum Judul", Deskripsi = "Isi berita...", - Gambar = "/webnew/assets/image/foto/3.jpeg", + Gambar = "/webnew/assetsnew/image/foto/3.jpeg", Tanggal = new DateTime(2025,3,4), Slug = "berita-4" }, new BeritaViewModel { Judul = "Lorem Ipsum Judul", Deskripsi = "Isi berita...", - Gambar = "/webnew/assets/image/foto/4.jpeg", + Gambar = "/webnew/assetsnew/image/foto/4.jpeg", Tanggal = new DateTime(2025,3,4), Slug = "berita-5" } diff --git a/Controllers/WebNew/LayananController.cs b/Controllers/WebNew/LayananController.cs index 009de87..1eddfe0 100644 --- a/Controllers/WebNew/LayananController.cs +++ b/Controllers/WebNew/LayananController.cs @@ -15,13 +15,13 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/Layanan/GetData")] public IActionResult GetData(string jenis) { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json/Layanan", $"{jenis}.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew/layanan", $"{jenis}.json"); if (!System.IO.File.Exists(path)) return NotFound(); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } } diff --git a/Controllers/WebNew/RegulasiController.cs b/Controllers/WebNew/RegulasiController.cs index fe2bf98..2c0b140 100644 --- a/Controllers/WebNew/RegulasiController.cs +++ b/Controllers/WebNew/RegulasiController.cs @@ -13,13 +13,13 @@ namespace WebApplication2.Controllers.WebNew [HttpGet("/WebNew/Regulasi/GetRegulasi")] public IActionResult GetRegulasi() { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "regulasi.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "regulasi.json"); if (!System.IO.File.Exists(path)) return NotFound(); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } } } \ No newline at end of file diff --git a/Controllers/WebNew/VideoController.cs b/Controllers/WebNew/VideoController.cs index 0de4b1b..9ad1f97 100644 --- a/Controllers/WebNew/VideoController.cs +++ b/Controllers/WebNew/VideoController.cs @@ -13,13 +13,13 @@ namespace WebApplication2.Controllers [HttpGet("/WebNew/Video/GetAll")] public IActionResult GetAll() { - var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "video.json"); + var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "video.json"); if (!System.IO.File.Exists(path)) return NotFound(); var json = System.IO.File.ReadAllText(path); - return Content(json, "application/json"); + return Content(json, "application/jsonnew"); } } } \ No newline at end of file diff --git a/Views/WebNew/Berita/Berita.cshtml b/Views/WebNew/Berita/Berita.cshtml index 2da642f..b003129 100644 --- a/Views/WebNew/Berita/Berita.cshtml +++ b/Views/WebNew/Berita/Berita.cshtml @@ -7,11 +7,11 @@ } @section Style { - + } @section Scripts { - + } @await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Hero.cshtml", "Berita") @await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml") diff --git a/Views/WebNew/Berita/DetailBerita.cshtml b/Views/WebNew/Berita/DetailBerita.cshtml index 188b530..54bfd14 100644 --- a/Views/WebNew/Berita/DetailBerita.cshtml +++ b/Views/WebNew/Berita/DetailBerita.cshtml @@ -3,12 +3,12 @@ } @section Style { - + } @section Scripts { - + } diff --git a/Views/WebNew/Faq.cshtml b/Views/WebNew/Faq.cshtml index 02f9d56..797ef6c 100644 --- a/Views/WebNew/Faq.cshtml +++ b/Views/WebNew/Faq.cshtml @@ -4,11 +4,11 @@ } @section Style { - + } @section Scripts { - + } diff --git a/Views/WebNew/FormReview.cshtml b/Views/WebNew/FormReview.cshtml index 5b35d8d..4520e91 100644 --- a/Views/WebNew/FormReview.cshtml +++ b/Views/WebNew/FormReview.cshtml @@ -19,11 +19,11 @@ } @section Style { - + } @section Scripts { - + } diff --git a/Views/WebNew/Galeri.cshtml b/Views/WebNew/Galeri.cshtml index aa2a16c..cf76cba 100644 --- a/Views/WebNew/Galeri.cshtml +++ b/Views/WebNew/Galeri.cshtml @@ -4,11 +4,11 @@ } @section Style { - + } @section Scripts { - + } diff --git a/Views/WebNew/Home/Index.cshtml b/Views/WebNew/Home/Index.cshtml index f0b99a3..f5233b2 100644 --- a/Views/WebNew/Home/Index.cshtml +++ b/Views/WebNew/Home/Index.cshtml @@ -5,7 +5,7 @@ @section Scripts { - + } @await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml") @@ -17,7 +17,7 @@
@@ -25,11 +25,11 @@

Laboratorium Lingkungan Hidup Daerah

@@ -38,7 +38,7 @@ Pemerintah Provinsi DKI Jakarta

- Lihat Layanan @@ -51,7 +51,7 @@
@@ -59,11 +59,11 @@

Laboratorium Lingkungan Hidup Daerah

@@ -72,7 +72,7 @@ Pemerintah Provinsi DKI Jakarta

- Lihat Layanan @@ -109,11 +109,11 @@
- +
-
+
- +
-
+
@@ -176,10 +176,10 @@
- +
-
+
@@ -238,11 +238,11 @@ Tentang LLHD

@@ -254,7 +254,7 @@

- LLHD telah terregistrasi dan menerapkan standar ISO/IEC 17025:2017 untuk menjamin keabsahan hasil uji serta pelayanan pelanggan. + LLHD telah teregistrasi oleh Kementerian Lingkungan Hidup (KLH) dan menerapkan standar ISO/IEC 17025:2017 untuk menjamin keabsahan hasil uji serta pelayanan pelanggan.

@@ -371,13 +371,13 @@
-
+
- +

Penyelia

@@ -399,13 +399,13 @@
-
+
- +

Pengenalan Mutu

@@ -428,13 +428,13 @@
-
+
- +

Pelayanan

@@ -452,13 +452,13 @@
-
+
- +

Analisis Pengujian Air dan Udara

@@ -479,13 +479,13 @@
-
+
- +

Penyelia

@@ -507,13 +507,13 @@
-
+
- +

Pengendalian Mutu

@@ -536,13 +536,13 @@
-
+
- +

Pelayanan

@@ -560,13 +560,13 @@
-
+
- +

Analisis Pengujian Air dan Udara

@@ -646,11 +646,11 @@
- - - - - + + + + +

@@ -671,11 +671,11 @@

- - - - - + + + + +

@@ -696,11 +696,11 @@

- - - - - + + + + +

@@ -721,11 +721,11 @@

- - - - - + + + + +

@@ -746,11 +746,11 @@

- - - - - + + + + +

@@ -771,11 +771,11 @@

- - - - - + + + + +

@@ -796,11 +796,11 @@

- - - - - + + + + +

diff --git a/Views/WebNew/Kontak.cshtml b/Views/WebNew/Kontak.cshtml index 06b8533..8c05761 100644 --- a/Views/WebNew/Kontak.cshtml +++ b/Views/WebNew/Kontak.cshtml @@ -4,7 +4,7 @@ } @section Style { - + } diff --git a/Views/WebNew/Layanan/DetailItem.cshtml b/Views/WebNew/Layanan/DetailItem.cshtml index f4f786a..8ad7a98 100644 --- a/Views/WebNew/Layanan/DetailItem.cshtml +++ b/Views/WebNew/Layanan/DetailItem.cshtml @@ -4,12 +4,12 @@ } @section Style { - + } @section Scripts { - + } @await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml") diff --git a/Views/WebNew/Layanan/DetailLayanan.cshtml b/Views/WebNew/Layanan/DetailLayanan.cshtml index d2560e3..b6f8f37 100644 --- a/Views/WebNew/Layanan/DetailLayanan.cshtml +++ b/Views/WebNew/Layanan/DetailLayanan.cshtml @@ -21,7 +21,7 @@

    - @@ -89,4 +89,4 @@ * Parameter yang tebal (bold) telah terakreditasi oleh KAN
    - + diff --git a/Views/WebNew/Layanan/Index.cshtml b/Views/WebNew/Layanan/Index.cshtml index a51ee7c..0f97b96 100644 --- a/Views/WebNew/Layanan/Index.cshtml +++ b/Views/WebNew/Layanan/Index.cshtml @@ -8,8 +8,8 @@ @section Style { - - + + }
    diff --git a/Views/WebNew/Layanan/Layanan.cshtml b/Views/WebNew/Layanan/Layanan.cshtml index 6146f03..e108c95 100644 --- a/Views/WebNew/Layanan/Layanan.cshtml +++ b/Views/WebNew/Layanan/Layanan.cshtml @@ -1,6 +1,6 @@  @section Scripts { - + } @@ -11,9 +11,9 @@
    Tahap Pengujian Sampel Laboratorium
    -
    - +
    +
    @@ -29,7 +29,7 @@
    @@ -54,7 +54,7 @@
    Pengujian Air
    - +

    Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian air yaitu: @@ -68,10 +68,10 @@

  • Air Perpipaan.
  • - + Lihat Harga
    - +
    @@ -81,7 +81,7 @@
    Pengujian Udara
    - +

    Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian udara yaitu: @@ -96,10 +96,10 @@

  • SPKU (stasiun pemantau kualitas udara)
  • - + Lihat Harga
    - +
    diff --git a/Views/WebNew/Regulasi.cshtml b/Views/WebNew/Regulasi.cshtml index 7eb5536..9d9f097 100644 --- a/Views/WebNew/Regulasi.cshtml +++ b/Views/WebNew/Regulasi.cshtml @@ -4,11 +4,11 @@ } @section Style { - + } @section Scripts { - + } diff --git a/Views/WebNew/Sertifikat.cshtml b/Views/WebNew/Sertifikat.cshtml index a55f35c..c15ef27 100644 --- a/Views/WebNew/Sertifikat.cshtml +++ b/Views/WebNew/Sertifikat.cshtml @@ -4,7 +4,7 @@ } @section Style { - + } @await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Hero.cshtml", "Sertifikat") @@ -19,9 +19,9 @@
    - +
    - +
    @@ -29,11 +29,11 @@
    - + Lihat Dokumen - + Unduh @@ -44,9 +44,9 @@
    - +
    - +
    @@ -54,11 +54,11 @@
    - + Lihat Dokumen - + Unduh @@ -70,9 +70,9 @@
    - +
    - +
    @@ -80,11 +80,11 @@
    - + Lihat Dokumen - + Unduh @@ -96,21 +96,21 @@
    - +
    - +
    -
    RList Parameter Terakreditasi
    +
    List Parameter Terakreditasi
    - + Lihat Dokumen - + Unduh diff --git a/Views/WebNew/Shared/Section/_Footer.cshtml b/Views/WebNew/Shared/Section/_Footer.cshtml index e55db0b..328dbeb 100644 --- a/Views/WebNew/Shared/Section/_Footer.cshtml +++ b/Views/WebNew/Shared/Section/_Footer.cshtml @@ -1,5 +1,5 @@
    + style="background-image: url(' /webnew/assetsnew/image/footer.png');">
    @@ -7,7 +7,7 @@

    @@ -26,9 +26,9 @@

    - \ No newline at end of file + \ No newline at end of file diff --git a/Views/WebNew/Shared/Section/_Hero.cshtml b/Views/WebNew/Shared/Section/_Hero.cshtml index 592ac7c..d403604 100644 --- a/Views/WebNew/Shared/Section/_Hero.cshtml +++ b/Views/WebNew/Shared/Section/_Hero.cshtml @@ -3,7 +3,7 @@
    - Hero Background diff --git a/Views/WebNew/Shared/_Layout.cshtml b/Views/WebNew/Shared/_Layout.cshtml index 102bcde..655c92d 100644 --- a/Views/WebNew/Shared/_Layout.cshtml +++ b/Views/WebNew/Shared/_Layout.cshtml @@ -6,16 +6,15 @@ @ViewData["Title"] - Laboratorium Lingkungan Hidup Jakarta - - - - - - + + + + + + - diff --git a/Views/WebNew/TentangKami.cshtml b/Views/WebNew/TentangKami.cshtml index 94768c4..8802e18 100644 --- a/Views/WebNew/TentangKami.cshtml +++ b/Views/WebNew/TentangKami.cshtml @@ -4,7 +4,7 @@ } @section Style { - + } @@ -15,35 +15,10 @@
    -
    - -

    Struktur Organisasi LLHD

    - -
    - -
    - -
    -
    - - - -
    -
    - -
    -
    - - - -
    -
    - -
    -
    -
    Value LLHD
    +

    Value LLHD

    +
    @@ -52,7 +27,7 @@
    - Integritas +
    Integritas

    Menjunjung tinggi kejujuran, objektivitas, dan etika pada setiap proses layanan

    @@ -61,7 +36,7 @@
    - Profesional +
    Profesional

    Didukung oleh SDM yang kompeten, berpengalaman, serta memberikan layanan cepat, responsif, dan berkualitas

    @@ -70,7 +45,7 @@
    - Akuntabel +
    Akuntabel

    Orientasi pada proses yang dapat dipertanggungjawabkan dan telusur sesuai dengan standar dan prosedur

    @@ -79,7 +54,7 @@
    - Berkelanjutan +
    Berkelanjutan

    Komitmen untuk menjaga kualitas lingkungan dan mutu layanan serta inovasi dan perbaikan

    @@ -87,5 +62,37 @@
    +
    + +

    Struktur Organisasi LLHD

    +
    + +
    + +
    + +
    + +
    +
    + + + +
    +
    + +
    +
    + + + +
    +
    + +
    + + +
    \ No newline at end of file diff --git a/Views/WebNew/Video.cshtml b/Views/WebNew/Video.cshtml index 626d41b..a8757d6 100644 --- a/Views/WebNew/Video.cshtml +++ b/Views/WebNew/Video.cshtml @@ -3,11 +3,11 @@ Layout = "~/Views/WebNew/Shared/_Layout.cshtml"; } @section Style { - + } @section Scripts { - + } diff --git a/wwwroot/webnew/assets/image/logo/logollhd.png b/wwwroot/webnew/assets/image/logo/logollhd.png deleted file mode 100644 index 1871941..0000000 Binary files a/wwwroot/webnew/assets/image/logo/logollhd.png and /dev/null differ diff --git a/wwwroot/webnew/assets/image/logo/logollhdbg.png b/wwwroot/webnew/assets/image/logo/logollhdbg.png deleted file mode 100644 index f496f8d..0000000 Binary files a/wwwroot/webnew/assets/image/logo/logollhdbg.png and /dev/null differ diff --git a/wwwroot/webnew/assets/image/tahappengujianllhd.png b/wwwroot/webnew/assets/image/tahappengujianllhd.png deleted file mode 100644 index 145da0a..0000000 Binary files a/wwwroot/webnew/assets/image/tahappengujianllhd.png and /dev/null differ diff --git a/wwwroot/webnew/assets/document/parameter-terakreditasi-kan.pdf b/wwwroot/webnew/assetslama/document/parameter-terakreditasi-kan.pdf similarity index 100% rename from wwwroot/webnew/assets/document/parameter-terakreditasi-kan.pdf rename to wwwroot/webnew/assetslama/document/parameter-terakreditasi-kan.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/pergub-no-57-tahun-2022.pdf b/wwwroot/webnew/assetslama/document/peraturan/pergub-no-57-tahun-2022.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/pergub-no-57-tahun-2022.pdf rename to wwwroot/webnew/assetslama/document/peraturan/pergub-no-57-tahun-2022.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/pergub-no-69-tahun-2013.pdf b/wwwroot/webnew/assetslama/document/peraturan/pergub-no-69-tahun-2013.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/pergub-no-69-tahun-2013.pdf rename to wwwroot/webnew/assetslama/document/peraturan/pergub-no-69-tahun-2013.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/permenlh-no-11-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/permenlh-no-11-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/permenlh-no-11-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/permenlh-no-11-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Peraturan/salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetslama/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Peraturan/salinan-pp-nomor-22-tahun-2021.pdf rename to wwwroot/webnew/assetslama/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf diff --git a/wwwroot/webnew/assets/document/Sertifikat/registrasi-labling-llhd.pdf b/wwwroot/webnew/assetslama/document/sertifikat/registrasi-labling-llhd.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Sertifikat/registrasi-labling-llhd.pdf rename to wwwroot/webnew/assetslama/document/sertifikat/registrasi-labling-llhd.pdf diff --git a/wwwroot/webnew/assets/document/Sertifikat/sertifikat-akreditasi-llhd.pdf b/wwwroot/webnew/assetslama/document/sertifikat/sertifikat-akreditasi-llhd.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Sertifikat/sertifikat-akreditasi-llhd.pdf rename to wwwroot/webnew/assetslama/document/sertifikat/sertifikat-akreditasi-llhd.pdf diff --git a/wwwroot/webnew/assets/document/Sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf b/wwwroot/webnew/assetslama/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf similarity index 100% rename from wwwroot/webnew/assets/document/Sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf rename to wwwroot/webnew/assetslama/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf diff --git a/wwwroot/webnew/assets/document/SOP/pembuatan-akun-pelanggan.pdf b/wwwroot/webnew/assetslama/document/sop/pembuatan-akun-pelanggan.pdf similarity index 100% rename from wwwroot/webnew/assets/document/SOP/pembuatan-akun-pelanggan.pdf rename to wwwroot/webnew/assetslama/document/sop/pembuatan-akun-pelanggan.pdf diff --git a/wwwroot/webnew/assets/document/SOP/penanganan-pengaduan-pelanggan.pdf b/wwwroot/webnew/assetslama/document/sop/penanganan-pengaduan-pelanggan.pdf similarity index 100% rename from wwwroot/webnew/assets/document/SOP/penanganan-pengaduan-pelanggan.pdf rename to wwwroot/webnew/assetslama/document/sop/penanganan-pengaduan-pelanggan.pdf diff --git a/wwwroot/webnew/assets/document/SOP/pengajuan-pengujian-contoh-uji-air.pdf b/wwwroot/webnew/assetslama/document/sop/pengajuan-pengujian-contoh-uji-air.pdf similarity index 100% rename from wwwroot/webnew/assets/document/SOP/pengajuan-pengujian-contoh-uji-air.pdf rename to wwwroot/webnew/assetslama/document/sop/pengajuan-pengujian-contoh-uji-air.pdf diff --git a/wwwroot/webnew/assets/document/SOP/tanggap-darurat.pdf b/wwwroot/webnew/assetslama/document/sop/tanggap-darurat.pdf similarity index 100% rename from wwwroot/webnew/assets/document/SOP/tanggap-darurat.pdf rename to wwwroot/webnew/assetslama/document/sop/tanggap-darurat.pdf diff --git a/wwwroot/webnew/assets/image/backgroundhero.png b/wwwroot/webnew/assetslama/image/backgroundhero.png similarity index 100% rename from wwwroot/webnew/assets/image/backgroundhero.png rename to wwwroot/webnew/assetslama/image/backgroundhero.png diff --git a/wwwroot/webnew/assets/image/footer.png b/wwwroot/webnew/assetslama/image/footer.png similarity index 100% rename from wwwroot/webnew/assets/image/footer.png rename to wwwroot/webnew/assetslama/image/footer.png diff --git a/wwwroot/webnew/assets/image/foto/1.jpeg b/wwwroot/webnew/assetslama/image/foto/1.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/1.jpeg rename to wwwroot/webnew/assetslama/image/foto/1.jpeg diff --git a/wwwroot/webnew/assets/image/foto/10.jpeg b/wwwroot/webnew/assetslama/image/foto/10.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/10.jpeg rename to wwwroot/webnew/assetslama/image/foto/10.jpeg diff --git a/wwwroot/webnew/assets/image/foto/11.jpeg b/wwwroot/webnew/assetslama/image/foto/11.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/11.jpeg rename to wwwroot/webnew/assetslama/image/foto/11.jpeg diff --git a/wwwroot/webnew/assets/image/foto/2.jpeg b/wwwroot/webnew/assetslama/image/foto/2.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/2.jpeg rename to wwwroot/webnew/assetslama/image/foto/2.jpeg diff --git a/wwwroot/webnew/assets/image/foto/3.jpeg b/wwwroot/webnew/assetslama/image/foto/3.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/3.jpeg rename to wwwroot/webnew/assetslama/image/foto/3.jpeg diff --git a/wwwroot/webnew/assets/image/foto/4.jpeg b/wwwroot/webnew/assetslama/image/foto/4.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/4.jpeg rename to wwwroot/webnew/assetslama/image/foto/4.jpeg diff --git a/wwwroot/webnew/assets/image/foto/5.jpeg b/wwwroot/webnew/assetslama/image/foto/5.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/5.jpeg rename to wwwroot/webnew/assetslama/image/foto/5.jpeg diff --git a/wwwroot/webnew/assets/image/foto/6.jpeg b/wwwroot/webnew/assetslama/image/foto/6.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/6.jpeg rename to wwwroot/webnew/assetslama/image/foto/6.jpeg diff --git a/wwwroot/webnew/assets/image/foto/7.jpeg b/wwwroot/webnew/assetslama/image/foto/7.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/7.jpeg rename to wwwroot/webnew/assetslama/image/foto/7.jpeg diff --git a/wwwroot/webnew/assets/image/foto/8.jpeg b/wwwroot/webnew/assetslama/image/foto/8.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/8.jpeg rename to wwwroot/webnew/assetslama/image/foto/8.jpeg diff --git a/wwwroot/webnew/assets/image/foto/9.jpeg b/wwwroot/webnew/assetslama/image/foto/9.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/9.jpeg rename to wwwroot/webnew/assetslama/image/foto/9.jpeg diff --git a/wwwroot/webnew/assets/image/foto/beritakomitmenllhd.png b/wwwroot/webnew/assetslama/image/foto/beritakomitmenllhd.png similarity index 100% rename from wwwroot/webnew/assets/image/foto/beritakomitmenllhd.png rename to wwwroot/webnew/assetslama/image/foto/beritakomitmenllhd.png diff --git a/wwwroot/webnew/assets/image/foto/gedungllhd.webp b/wwwroot/webnew/assetslama/image/foto/gedungllhd.webp similarity index 100% rename from wwwroot/webnew/assets/image/foto/gedungllhd.webp rename to wwwroot/webnew/assetslama/image/foto/gedungllhd.webp diff --git a/wwwroot/webnew/assets/image/foto/gedungnew.jpeg b/wwwroot/webnew/assetslama/image/foto/gedungnew.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/gedungnew.jpeg rename to wwwroot/webnew/assetslama/image/foto/gedungnew.jpeg diff --git a/wwwroot/webnew/assets/image/foto/llhd.jpeg b/wwwroot/webnew/assetslama/image/foto/llhd.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/llhd.jpeg rename to wwwroot/webnew/assetslama/image/foto/llhd.jpeg diff --git a/wwwroot/webnew/assets/image/foto/pengujianair.jpeg b/wwwroot/webnew/assetslama/image/foto/pengujianair.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/pengujianair.jpeg rename to wwwroot/webnew/assetslama/image/foto/pengujianair.jpeg diff --git a/wwwroot/webnew/assets/image/foto/pengujianudara.jpeg b/wwwroot/webnew/assetslama/image/foto/pengujianudara.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/pengujianudara.jpeg rename to wwwroot/webnew/assetslama/image/foto/pengujianudara.jpeg diff --git a/wwwroot/webnew/assets/image/foto/samplingair.jpeg b/wwwroot/webnew/assetslama/image/foto/samplingair.jpeg similarity index 100% rename from wwwroot/webnew/assets/image/foto/samplingair.jpeg rename to wwwroot/webnew/assetslama/image/foto/samplingair.jpeg diff --git a/wwwroot/webnew/assets/image/icon/arrow.png b/wwwroot/webnew/assetslama/image/icon/arrow.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/arrow.png rename to wwwroot/webnew/assetslama/image/icon/arrow.png diff --git a/wwwroot/webnew/assets/image/icon/download.png b/wwwroot/webnew/assetslama/image/icon/download.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/download.png rename to wwwroot/webnew/assetslama/image/icon/download.png diff --git a/wwwroot/webnew/assets/image/icon/eye.png b/wwwroot/webnew/assetslama/image/icon/eye.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/eye.png rename to wwwroot/webnew/assetslama/image/icon/eye.png diff --git a/wwwroot/webnew/assets/image/icon/icon briefcase.png b/wwwroot/webnew/assetslama/image/icon/icon briefcase.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon briefcase.png rename to wwwroot/webnew/assetslama/image/icon/icon briefcase.png diff --git a/wwwroot/webnew/assets/image/icon/icon check.png b/wwwroot/webnew/assetslama/image/icon/icon check.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon check.png rename to wwwroot/webnew/assetslama/image/icon/icon check.png diff --git a/wwwroot/webnew/assets/image/icon/icon clipboard.png b/wwwroot/webnew/assetslama/image/icon/icon clipboard.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon clipboard.png rename to wwwroot/webnew/assetslama/image/icon/icon clipboard.png diff --git a/wwwroot/webnew/assets/image/icon/icon handshake.png b/wwwroot/webnew/assetslama/image/icon/icon handshake.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon handshake.png rename to wwwroot/webnew/assetslama/image/icon/icon handshake.png diff --git a/wwwroot/webnew/assets/image/icon/icon lab.png b/wwwroot/webnew/assetslama/image/icon/icon lab.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon lab.png rename to wwwroot/webnew/assetslama/image/icon/icon lab.png diff --git a/wwwroot/webnew/assets/image/icon/icon recycle.png b/wwwroot/webnew/assetslama/image/icon/icon recycle.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon recycle.png rename to wwwroot/webnew/assetslama/image/icon/icon recycle.png diff --git a/wwwroot/webnew/assets/image/icon/icon shieldcheck.png b/wwwroot/webnew/assetslama/image/icon/icon shieldcheck.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon shieldcheck.png rename to wwwroot/webnew/assetslama/image/icon/icon shieldcheck.png diff --git a/wwwroot/webnew/assets/image/icon/icon user.png b/wwwroot/webnew/assetslama/image/icon/icon user.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/icon user.png rename to wwwroot/webnew/assetslama/image/icon/icon user.png diff --git a/wwwroot/webnew/assets/image/icon/star zero.png b/wwwroot/webnew/assetslama/image/icon/star zero.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/star zero.png rename to wwwroot/webnew/assetslama/image/icon/star zero.png diff --git a/wwwroot/webnew/assets/image/icon/star.png b/wwwroot/webnew/assetslama/image/icon/star.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/star.png rename to wwwroot/webnew/assetslama/image/icon/star.png diff --git a/wwwroot/webnew/assets/image/icon/starhalf.png b/wwwroot/webnew/assetslama/image/icon/starhalf.png similarity index 100% rename from wwwroot/webnew/assets/image/icon/starhalf.png rename to wwwroot/webnew/assetslama/image/icon/starhalf.png diff --git a/wwwroot/webnew/assets/image/logo/Icon logo.png b/wwwroot/webnew/assetslama/image/logo/Icon logo.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/Icon logo.png rename to wwwroot/webnew/assetslama/image/logo/Icon logo.png diff --git a/wwwroot/webnew/assets/image/logo/logodlh.png b/wwwroot/webnew/assetslama/image/logo/logodlh.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/logodlh.png rename to wwwroot/webnew/assetslama/image/logo/logodlh.png diff --git a/wwwroot/webnew/assets/image/logo/logokanllhd.png b/wwwroot/webnew/assetslama/image/logo/logokanllhd.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/logokanllhd.png rename to wwwroot/webnew/assetslama/image/logo/logokanllhd.png diff --git a/wwwroot/webnew/assetslama/image/logo/logollhd.png b/wwwroot/webnew/assetslama/image/logo/logollhd.png new file mode 100644 index 0000000..7c74a4e Binary files /dev/null and b/wwwroot/webnew/assetslama/image/logo/logollhd.png differ diff --git a/wwwroot/webnew/assetslama/image/logo/logollhdbg.png b/wwwroot/webnew/assetslama/image/logo/logollhdbg.png new file mode 100644 index 0000000..2d3fe60 Binary files /dev/null and b/wwwroot/webnew/assetslama/image/logo/logollhdbg.png differ diff --git a/wwwroot/webnew/assets/image/logo/logoregistrasiklhk.png b/wwwroot/webnew/assetslama/image/logo/logoregistrasiklhk.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/logoregistrasiklhk.png rename to wwwroot/webnew/assetslama/image/logo/logoregistrasiklhk.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/aeonmall.png b/wwwroot/webnew/assetslama/image/logo/mitra/aeonmall.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/aeonmall.png rename to wwwroot/webnew/assetslama/image/logo/mitra/aeonmall.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/Ascott.webp b/wwwroot/webnew/assetslama/image/logo/mitra/ascott.webp similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/Ascott.webp rename to wwwroot/webnew/assetslama/image/logo/mitra/ascott.webp diff --git a/wwwroot/webnew/assets/image/logo/mitra/astra.png b/wwwroot/webnew/assetslama/image/logo/mitra/astra.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/astra.png rename to wwwroot/webnew/assetslama/image/logo/mitra/astra.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/bca.png b/wwwroot/webnew/assetslama/image/logo/mitra/bca.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/bca.png rename to wwwroot/webnew/assetslama/image/logo/mitra/bca.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/biomedika.png b/wwwroot/webnew/assetslama/image/logo/mitra/biomedika.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/biomedika.png rename to wwwroot/webnew/assetslama/image/logo/mitra/biomedika.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/kalbe.png b/wwwroot/webnew/assetslama/image/logo/mitra/kalbe.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/kalbe.png rename to wwwroot/webnew/assetslama/image/logo/mitra/kalbe.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/khongguan.png b/wwwroot/webnew/assetslama/image/logo/mitra/khongguan.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/khongguan.png rename to wwwroot/webnew/assetslama/image/logo/mitra/khongguan.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/logorspp.png b/wwwroot/webnew/assetslama/image/logo/mitra/logorspp.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/logorspp.png rename to wwwroot/webnew/assetslama/image/logo/mitra/logorspp.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/lrt.png b/wwwroot/webnew/assetslama/image/logo/mitra/lrt.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/lrt.png rename to wwwroot/webnew/assetslama/image/logo/mitra/lrt.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/mayapada.png b/wwwroot/webnew/assetslama/image/logo/mitra/mayapada.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/mayapada.png rename to wwwroot/webnew/assetslama/image/logo/mitra/mayapada.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/mcdonals.png b/wwwroot/webnew/assetslama/image/logo/mitra/mcdonals.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/mcdonals.png rename to wwwroot/webnew/assetslama/image/logo/mitra/mcdonals.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/moi.png b/wwwroot/webnew/assetslama/image/logo/mitra/moi.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/moi.png rename to wwwroot/webnew/assetslama/image/logo/mitra/moi.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/mrt.png b/wwwroot/webnew/assetslama/image/logo/mitra/mrt.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/mrt.png rename to wwwroot/webnew/assetslama/image/logo/mitra/mrt.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/pakubuwono.png b/wwwroot/webnew/assetslama/image/logo/mitra/pakubuwono.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/pakubuwono.png rename to wwwroot/webnew/assetslama/image/logo/mitra/pakubuwono.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/paljaya.png b/wwwroot/webnew/assetslama/image/logo/mitra/paljaya.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/paljaya.png rename to wwwroot/webnew/assetslama/image/logo/mitra/paljaya.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/pramita.jpg b/wwwroot/webnew/assetslama/image/logo/mitra/pramita.jpg similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/pramita.jpg rename to wwwroot/webnew/assetslama/image/logo/mitra/pramita.jpg diff --git a/wwwroot/webnew/assets/image/logo/mitra/Prodia.jpg b/wwwroot/webnew/assetslama/image/logo/mitra/prodia.jpg similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/Prodia.jpg rename to wwwroot/webnew/assetslama/image/logo/mitra/prodia.jpg diff --git a/wwwroot/webnew/assets/image/logo/mitra/rscm.png b/wwwroot/webnew/assetslama/image/logo/mitra/rscm.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/rscm.png rename to wwwroot/webnew/assetslama/image/logo/mitra/rscm.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/Sarinah.png b/wwwroot/webnew/assetslama/image/logo/mitra/sarinah.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/Sarinah.png rename to wwwroot/webnew/assetslama/image/logo/mitra/sarinah.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/UT.png b/wwwroot/webnew/assetslama/image/logo/mitra/ut.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/UT.png rename to wwwroot/webnew/assetslama/image/logo/mitra/ut.png diff --git a/wwwroot/webnew/assets/image/logo/mitra/Yamaha.png b/wwwroot/webnew/assetslama/image/logo/mitra/yamaha.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/mitra/Yamaha.png rename to wwwroot/webnew/assetslama/image/logo/mitra/yamaha.png diff --git a/wwwroot/webnew/assets/image/logo/wilayahbebaskorupsi.png b/wwwroot/webnew/assetslama/image/logo/wilayahbebaskorupsi.png similarity index 100% rename from wwwroot/webnew/assets/image/logo/wilayahbebaskorupsi.png rename to wwwroot/webnew/assetslama/image/logo/wilayahbebaskorupsi.png diff --git a/wwwroot/webnew/assets/image/Sejarah.png b/wwwroot/webnew/assetslama/image/sejarah.png similarity index 100% rename from wwwroot/webnew/assets/image/Sejarah.png rename to wwwroot/webnew/assetslama/image/sejarah.png diff --git a/wwwroot/webnew/assets/image/strukturorganisasi.png b/wwwroot/webnew/assetslama/image/strukturorganisasi.png similarity index 100% rename from wwwroot/webnew/assets/image/strukturorganisasi.png rename to wwwroot/webnew/assetslama/image/strukturorganisasi.png diff --git a/wwwroot/webnew/assetslama/image/tahappengujianllhd.png b/wwwroot/webnew/assetslama/image/tahappengujianllhd.png new file mode 100644 index 0000000..e8f7946 Binary files /dev/null and b/wwwroot/webnew/assetslama/image/tahappengujianllhd.png differ diff --git a/wwwroot/webnew/assets/image/visimisi.png b/wwwroot/webnew/assetslama/image/visimisi.png similarity index 100% rename from wwwroot/webnew/assets/image/visimisi.png rename to wwwroot/webnew/assetslama/image/visimisi.png diff --git a/wwwroot/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf b/wwwroot/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf new file mode 100644 index 0000000..c634307 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..996b0ce Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf new file mode 100644 index 0000000..e12d083 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..4acf09b Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..3ab0a6a Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..3def398 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..c8db6ed Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..8bd4e03 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..08377c9 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..35a3252 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..4b20202 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..1a5a5e2 --- /dev/null +++ b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf @@ -0,0 +1,2562 @@ +%PDF-1.3 +% +1 0 obj +<< +/CreationDate (D:20210220015236+07'00') +>> +endobj +2 0 obj +<< +/Pages 3 0 R +/Type /Catalog +>> +endobj +4 0 obj +<< /Type /XObject /Subtype /Image /Name /Obj4 /Width 2544 /Height 3906 +/BitsPerComponent 1 /ColorSpace /DeviceGray +/Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 2544 >> /Length 25388 >> +stream +`ذ. 5natž'ޭM)J VT-Զ $& {x0{Zjw{`3nP厯o`Y ?|a;#mㇽd v?2CdL6 S[>{{w ^iO M"vv xiŰvۧ-p, aC428CpɎ\Nv(eNC.Bb7~!|0v9C@\ǛWn!l7Ax<`kov{ݿv8_VG ÿn.d#CaY/!NQ""U.wu\jzU}6E>$Yߦo־ɿPFqö/y׷a5zyV P cyX?yNg a~(èn2 i>Zl?6ߧD@5l~}einv=ګ ;7(uQ/1ƾׄ?mk#oMlWk]0obժ opˀCwmu8|?4÷_Wq [Ăv{᫷u!-p` 6 D"$3'#06"""BwɆ! BaꁰE? ko UwRXƟV -:6t>l'T0ak>2 4k)6aJjur$ ~YL=jH +Quã5 Z !ؤ^A 㤶 x]Pam$k;᧎v=U 8d X&kFy0ZC +Fg}[J_w[.]B~ ;Fb ^W IPAב*#VNoK[KC'S&KpUa>uUR2 .YdXD O}TjڢP\AJmuXz9GSwD|Om"# :!#!~UaiAO_~{ҿ!ENA`߇ +=?ia=?Cp +FYoȪȐw/~|?y' X[[ wy !^ 4xd=t i$αZga^Ca  eJtɖEwXwJW"G}7P0_Q_^~u߷ wBJT-ݷ{" ^~UU! U"C~~G_u}{oP?L4>ړz,{ ߫ F693avͅ$ԁ?"Zվ_j@A֯%d b 4 A4pa=Ł#ӆD< Þ\F0ASsB\0@0zdL 0l0 Amޫvw_Xa_[_m/ozm_ץ%_[Z_!S⸥ _}דWCOYIn澾dwq{zMkKտWnھK{I}5_am 6[6! ,4"g~  """|ZbDRIq!:eaA 66 =d! +bAȓ 'a|AaEv䰖Z <;ݪAA?"a Fmaaݪ2/0v Ś +P {݄ z7 z0!:z3׷ouhdm; +EPQHT$29 -@dӭco{ۦڂtH =.C"Zf⟚ME>@%; G6 i 0\!߷[A D1L&0A0#mXB׿0߾g}=nm0 0pe_?i>?y>h 잭0{c}zUݵA>^{x\߷WnxJvtu/m^X.)%^{-C ^^OOߓ4<)?o-c_~~_[% }&~L/<O}{r au/~ǿ +Oa}Gp "Gj/g/_߫' }} +7WnYJ|Kn:M{~_?MTm~z4Eom붾7}.O{$?_K_5߷kzd6i[k{}mu~Z06io__M5~؆ab ׅ.K}mx>C0hi@NW/鸈g醙PixK/^""!Umt6  aU~0{L&L&VZZ_DDDq߼ a b¶ëI"#AB 4|+ $ +IABa P{%a~1A7 $4q @a;bADJA}"#Ņ:P.3PB\B)ͽjaQ c 8a"Sa lP[ta `% ?AH@!UtmnH?~׽A  +BNRmiA,%0 a a,w6h4 .h3PoZI{A: s=_oIm&ߥ~ե}:NF>?ץWM+kJ_^B^/o_k¤%^Bku-t}W_~}:K%Wi%_ׯm/z_w_-\/[ZM[^iZ-Z_ _wIkA4/KoPEtiuZ ]Dڄn zI/|$!p $n kW-K؄ P 5CL>h4 aAޤA +L I b"$)b80mmQ X0"#LWeq j10Ƀp3Yl= B!%%"vAa;mIq7oXmwA?~ߺH=-;XI{w|~㏎[v{z_ozo~;i__ ߧh~Zkk0Ci5߸A``a;].8DDM! -1flZ3&BBA B7mA!2a t&X pݧ  dgd". d} {"@B cۃmGRh2ash9)r!r5mu:LkA dO"&~ID;Pa$=d9'!+!}zN2tll0h7<"NBB CAFnm mv2 ;E 4"FZ4K4nh{tD66@ >^;{iviwz3]Poۆ#xm_Eoot jk_{,ww]wuoKֺ}MXVZkCC߮u^3m{U{~u*u揈^%uo}t +K aAxB0J݆路j vT=BKjaxb[an&ADs 0VQp#Zbd%e/6 :4Fo y0j@dsahl$G7&).mu'i" %@_ RPC )8N'} 5Mm͇$6)/}} 6a8a"<ׄC8BiB@d*$+4=&o lL a6m; C;:i_z6@ >tu,0~naA&ޯޖ~ V궙2AG7ۯ~7A_=7>[~[_}'Eoo>~_Kt_~Koo}~=RYX'ޒOPߒ2w§_KkIߵ[X';_߹W~R,?⾻7K)<;mS߆ o~ޫM|jj??&s/]m]kݿo?uzoocݿK[]%}}_`p{}* a +=L `iXUIpE6A e^v>uH1A &4n* {l%^kDA!0 L'0n +=_눈21@ސaalRnU DDF /h NUiqAĸ  hSDM}\&&@"""dQ +#et@‚iyBTH,_Az^-[~[֖ۻz}# /k"&C!:KIޕoﶪVu& aaan_K}/|]wiGdp@{MSC[_OW3;z}|&i;-ێ>߯'+W륶?v{?R*_~Uuwip*o_ Z_{o r+ |/[=vǯ&]ƽ~l}lKo޿Wzr_TVzhtrVOXaWu}Z?y;a._u~x7&h`oMGm> 7[Mx7>]R-m'}A'߷C!U-]od߿Vն]Kﴟ]M-!& %t'տKIx_M6&`KaU]߿}7A ؤخ׶iS}/?yºAA0kk}}Oato&R`pZaŠ h30ݰҿ%ukޮ"$ Mh0vT+ v $[/]Rr^׈eOVAAAfvl$zVq!+h0 C6[`&K~.[_m-x0RlC !1A-^i{a-xN  x hRݜ ^KK &B bMD]0b"%)?,z,~?X_T_Ucw_;[ֽIoֻu?'Gxi}WaooV0K%_ܑ?M+VI}"c%_Df(^1䜈3'hM`rG}M='G_@Od K}oҾ: _6Ѭ0n~Oiu۶in~?oJo[oS^,b}Kn_m-aؤPMoVK aN)7{7]__|[A&zں[~a?00M4;pu}%DHR^A 4ea[VKo"""_0F0VI;U>-(LKbA`)SL[[XAP M4Mdk: ! ɐnM8LBl 0p<2 x4A dC 7x[slڨ-ɠ2[CNb +G!li2| +H`lNҁl6e[`E|EKf2 Љ#i F\ &P2A;pL^"L+s\Fԃ iVO[A 3eD4Qe8SYVa,J" AsrԿT7A#D}}+ {ޓᷭo-s}]{zy)#?7>zx9N0=+BJJ?" =ʬNe_@,m%6C=t6oI_ꃤ"ޡ^/OGdw@aKo}-/-46%F[=_ޯä7A}{Z\V;(R_^*7+䕧_/zrvFαR,߯NW_ICIwM-?o]t]kkJ]]'$}W"-x+(ւ߯^(B%4_0dh4Ӱ터_TtACO`+ ɨ!o!ڰ_߷k~$60o܃f^Ӈ"߷;XI%{~KUI0J+m-zM4^0a at؄""8P$a +*"'^ # ;3cv˙DNQ ,`3ˉ'S$f?d g.v[742-/-ז. `<-qvh a\l3l['k 3 ¯ɱ;h (nnrwy)"YP36KXT諾mżgb_IJn޹8{R_I{v6ۂ AZ K +"A aF ׿oT4KA `'Q#FF/ZKh , „‚!Ȝ#8-7` ko$Ș,qKa3 S :հa: AA0zM07i6 q&K?K޿u}?m 7%"@A~H`!V(L&lI"(~H9KMÓWCA( f_YVIG & `otEo~#D* "?KPȜBsIEzzޗ_QK/Kk}~au!݅iZyщI/&-kkڸU_k'Cذ}v _^kL'i Dp avn[m%d( - A0[>КAĜcAI0nJ_DDDA#b N״` a)u8; _] """"N98_IkFM9 &HU4d_k_|70d3QuݲO_k0dҘ*tA]_ +"O%ƣ_­?z]_v $_خ*K +vK1 u}T WDk?_@lG#k #-!AoyJ|><IkDmv-GNň-Q͙w@[3d^hg8 ؿ;#/lelR=o0 pNłjD$r3f`W p[hNc+8_ċW )Ek4 &D 85K;"' <2ڷpeXsM5a  8(߷2A䰕!цNeRxXviak7L}7ozoA߷?i{_//zMTI'v w~_ |U?at/ };ҧ/.w%$__%z ~OO,}+<g{OD?O#ߤo}7~&ѥL$Vǿ/Ko_Mm6}vI4L 0a=4ڄKiA)8}m} Am.b""}AA4+""S}ؤ %DE " ٢_# xmv xe5- `S0 `\'`Ys. a\d0[c._;[HirXHdQ?\`(-38-sbNL-'eq[ +]L\×es"v/l ;% 6O+6q)%f_"K  " Y N 0@!< Bs0aGhoA7al0465 ùz:MOPI_~IӖ;/}~-ߧK}}_Wj+֗o{{X'NQ{?XtoczoI>{տt+m[waگ=a{nl0 +[b[0 ." ""?! <` +$ܓ | x&$6. `\vh `^., ȸ?\%,?bp9nN"'` + -Ap[ϖ-._-el2"wC(fK +l_%6d/ 'ЉڬtGk?-$wZ߂aO$DwXW_O]% {gS4C(g3)H{P fgCd4\aa0(L-G!g;1xDY̆ 'DnArމNu„6 p},Mu݃ނo|0_]xaf@G߿[oh)O'&ou?o^}/vsUmu iޝa  &iC {a?bBi kS:!q * A.av+Oa:2P @lNC$vf@rڃu<H +v6ܒ#`f)|a 0_g4y[[ zZ\]&P a(d^;0/Px޿($FUƁeuk!co/:+`&{F^;L(AD0:'4<'Y+GutD7CѴ0A}?ҽoDn^>n׷Ir֘:&&x&~_M|0odCz^o^uzod'f܇{}Rcwڶ a6L0~1 [DH  O# EG/__-[il0i؅ p]% 8b6;[pq_(S`Hh;XI=jLA'ˈ-!@3, fs0[Y` + Z`q|- "v%e--%QK($eE. `lB; \l\a~" Zako P<`$}q 7: qI7'/k~r(_HqzMjRukޗ%/ҴK$_U\ҲE' + ! 4N; Z\H w`NЦKõa 1_ mDDA!"̄/TJm(zKav+ j؅ ' /__/׉T2>$ ưN{ fڔ rW-l'jYs. `Nq 3*Z +s. `bgl2Nrp[ 'ab.c9;-1l2f0e 6՗b@"Bv7Xᗰ؊Bvs+$lzd a$՞d2`?a3AB03> eI ۠q'oK;[ NdA~"l*lA% mA5Bp պDpɆ뤮Yw:?@oGQ]Mk$@__ZMi!#CE__O_oaSa$JO {LPAA0P[ABI!a{+!eKWK~-"߄i}-m&$+^Z/ $XIm/v LV VAi!& G@dk!l뗡glu8 ,gS'k +/L![ +\?NlRG6f#-Df>h l:el2/{#`vT a.klk. ;OnO_[l9PTfAOUN =C:v"bi-&__1WA$G3<)@ Ca vP͊f5l"DBa| \ I #:M= IۥNl0\奊# %z /!%Kz; ā㵿<e]?DzM{HP +0 rFx~F$h5NAOē>z%mB +M,'t l z-xKWIdInA,CoXo&m[ 蔋]ipZE}_oUCkBkwW>?_$>M_#턿u!#@+W/ߠH/7K/{ 9"'o3 _/#/Cm-%Nm=Uu| iXK'^`a= $]bI7KpA$ӆ '_ +l`ݐH`iM;O0a/0 ؖ 0^?a &֬& a>vDHAC h/p#/K}/׏vV$ 6Q,<I);3 +-_'bQ8d@aL"m[n["'| `a-`;(媬9pרBH H)Ok0 aؤ?4q@[ s_2CK %C+zd'Gp NDG^>oA}&_IW ئbF '003XClO<$DC 0Dj28@&[Dq Al0L m 8}%2$m0NLAo §z +G?VD_I+o}~dS _Z}C/-ON +|/$ [lR#WA=Vr_ AjJMu"m+6I5[ XY S +4 ؠA Q 53bMȘ ` /vDDAA 'v h80_H1GzoAw_'Iv-K %[iZ^}ba0X0L-; |q 2;t_aAZāȐ[\O"@rpf_\;Rё1 l?v!6e5N[6   xj9f4ā$ȭب-uZ˂5$HྼN-;/qs8al2NѠl3D!+;[@-_јLqF)0L‚gs?I@g Ww_!Gw_=L2 P0<3_Pа02H'+< BsfA<vi7HJd8R$?&Oz7ַOz%o|U^ k~&?~΁x//+>/[E@KIZ_w֗yGK{]^Z̄M5Nl*o@ *.-w"8xNK3a?ح""i8i!C_Ko![]~0Km"D$I6_̀1[ %pӆ+ppe˿/KvN>$VO aA6WmLH5t[NH×/$ rDm\?N-gDN -0_;fl62/ +lDNF` 2;Y3,̠5S. `NAl[2 a2-kd=B @STHRAZ?Cx Rf0t9o[DpL!Ǚ@R./  L O!PD0 +0>Šh<2*?Ci{4T-'A_a/n>h վ'm_ozzMܿ>?P:OCR>[|{+%o~ _Wܑ{/۵Q6~WȠ? *w ӾO ؠ Ŧ!ځoh6A݄@dj}o"T l Bk8JTԑZ__ҿm$vI:im߯ņ lURtm;]0 aa 80[A ; p /!_i/|\H vN>$vUCHfDo. aئ^. `Aئ"<8`AXi*_ϯoXbA1 pK4ʃ a|!݆(&6$ }:A/aCN ^J0Zgᡦ`!%dtXA KvHa/_턓ud}h/8bAA_ z xer^$d0{!d@-ï+56vL_YAs ;-h.,,-_N#0RO_\N2ෛ",lN7?D칝3`63A~Љ-/)V7Nɲi.o02_;-O幝wFQR&J +UO +wڒ iۯn>4h;}4~p s̃/`,~A-?MKoK.eO|> h"{?QNz%nץ&斟{>ߒ|ۿ})nC(?Pm0ni *i0M_bnz^dqDL["-^A{w^v$^BUү]?[h~_UOctm//Ja+aplW ' / K`׉U~+[hl".[@l1n@-~Yl +;TpȞ-82A4kF0!l?Љ[.-fl4vZf tb_3 A#gd`<LGDx"/Gc%!IPC8?^ED٠8|"څA0^ߧ܆: +jϑIxO0Pբ!ȡɐ`[X1DnP&3/:A&@$}4܂_l1 0jaBx4Go<*]A4oDŽ  8:Vנ _ W.77_QQ!6-<`oJ䚀Q=~o6r._d`'!$60I}vaM/ZB( ؠAA [KooMaӐÆa0i0Xo)gAW|Sq y&o""CAqGvJ~n~_N +Pv*m+tl4cq W0AZ_^AJlz x9mzz x&ͳQ xm6̌ -c6_l /;eE;g6 `܇DQBh.!r p]娦f ?vZH\sD &#-!q?Bd8-!ȾacVE#>vW0"vX`IgkȐg}y۟ta,wd6ld2+`yH44a<&N}/lI@& TAڢ aտ""CR?f2N_cIU_̆?.6K z_ba ح Kal0K_?f?ɵ;T@j5 ړ8 a'akر';ȸ-8 afv `GF[hXd)r<!\v ,._X-.3l=\DͰ xk.c2t_3*l5ёp t/#DImeJC)ANAI7_LG_ XK-}zXqkŪ҉&^.kƟ]&y -W" 2DI(*Txȡ\ *`$A#SXOx'>d| 5#` "QS/עC +XFJָMX: VDtmp@xN`&8@M(i/WH&tl"XUֵJF/.]WK}1OU_EK-Ly_J®\Ǜm[K:?p8DX]r<ǭo53㏍<-_Dٟ E!aU+L&bcr MU44SLB + 0 zDDD0`HDG_]2k^iw]k~"H?.K{tC[K,1_=_am=vҴ80AU&_ lPb`0_ Gu- ^@bāX`AlZ \Ar.vf#iQX avUafX\_ڐl'i2r' 73_;$ d._-av];-`?% +l2AB0 bIK"--AT|[Rd<o._DJBpgl O /i/10@iaN„'u`eω- +j $ x 5##: +EN p@bwaD^ HmAI7uE;}'ooIO~/o~A?=^WuUo]io}믶0ɈTA6IuM?a:0 a[mUTDCM1+zooC_,ja?ot $_RK{7$vuzI%@k^_T0[v+zJRJ[{l0JIun]MI% |0=8iT$\a6AwA7a!LPAWDA*""? _ +endstream +endobj +5 0 obj +<< /Length 6798 >> +stream +BT +3 Tr +0.00 Tc +/F3 12.5 Tf +1 0 0 1 133.68 557.28 Tm +<42414B5520> Tj +/F3 13.0 Tf +1 0 0 1 172.80 556.80 Tm +<4D55545520> Tj +/F3 12.5 Tf +1 0 0 1 214.32 556.56 Tm +<4B4152414B544552495354494B20> Tj +1 0 0 1 317.28 555.84 Tm +<4245524143554E20> Tj +1 0 0 1 382.56 555.12 Tm +<4D454C414C554920> Tj +/F3 12.0 Tf +1 0 0 1 441.84 554.64 Tm +<54434C50> Tj +/F3 12.5 Tf +1 0 0 1 171.60 542.64 Tm +<554E54554B20> Tj +/F3 12.0 Tf +1 0 0 1 219.60 542.40 Tm +<50454E45544150414E20> Tj +1 0 0 1 297.60 541.68 Tm +<4B415445474F524920> Tj +/F3 13.0 Tf +1 0 0 1 365.76 541.20 Tm +<4C494D42414820> Tj +/F3 13.5 Tf +1 0 0 1 419.04 540.72 Tm +<3833> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 282.96 763.68 Tm +<505245534944454E> Tj +/F3 12.0 Tf +1 0 0 1 247.20 751.20 Tm +<52455055424C214B20> Tj +/F3 11.5 Tf +1 0 0 1 312.72 750.96 Tm +<494E444F4E45532141> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 224.16 686.88 Tm +<4C414D504952414E20> Tj +/F3 12.5 Tf +1 0 0 1 291.12 686.40 Tm +<5849> Tj +/F3 12.0 Tf +1 0 0 1 224.16 670.08 Tm +<50455241545552414E20> Tj +/F3 12.5 Tf +1 0 0 1 303.36 669.36 Tm +<50454D4552494E54414820> Tj +1 0 0 1 389.76 668.64 Tm +<52455055424C494B20> Tj +1 0 0 1 456.96 668.16 Tm +<494E444F4E45534941> Tj +1 0 0 1 223.92 655.44 Tm +<4E4F4D4F5220> Tj +/F3 13.0 Tf +1 0 0 1 275.76 654.96 Tm +<323220> Tj +/F3 12.5 Tf +1 0 0 1 294.24 654.96 Tm +<544148554E20> Tj +/F3 12.0 Tf +1 0 0 1 341.76 654.48 Tm +<32303231> Tj +1 0 0 1 223.20 641.52 Tm +<54454E54414E47> Tj +1 0 0 1 223.92 627.36 Tm +<50454E59454C454E4747415241414E20> Tj +/F3 12.5 Tf +1 0 0 1 354.96 626.16 Tm +<5045524C494E44554E47414E20> Tj +/F3 12.0 Tf +1 0 0 1 458.64 625.44 Tm +<44414E> Tj +1 0 0 1 223.68 612.96 Tm +<50454E47454C4F4C41414E20> Tj +/F3 12.5 Tf +1 0 0 1 320.16 612.24 Tm +<4C494E474B554E47414E20> Tj +1 0 0 1 407.28 611.52 Tm +<4849445550> Tj +0.00 Tc +1 0 0 1 121.68 511.20 Tm +<5A415420> Tj +/F3 12.0 Tf +1 0 0 1 149.28 510.96 Tm +<50454E43454D4152> Tj +0.00 Tc +1 0 0 1 392.40 509.04 Tm +<54434C502D41> Tj +0.00 Tc +1 0 0 1 469.68 508.32 Tm +<54434C502D42> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 162.24 483.84 Tm +<53617475616E20> Tj +/F3 13.0 Tf +1 0 0 1 209.04 483.84 Tm +<28626572617420> Tj +/F3 12.5 Tf +1 0 0 1 246.96 483.36 Tm +<6B6572696E6729> Tj +0.00 Tc +/F3 14.5 Tf +1 0 0 1 395.76 482.40 Tm +<286D656C4C6C> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 473.04 481.68 Tm +<286D652F4C29> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 73.92 458.16 Tm +<504152414D4554455220> Tj +/F3 12.5 Tf +1 0 0 1 153.60 457.44 Tm +<57414A4942> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 264.00 435.60 Tm +<414E4F5247414E494B> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 72.96 416.40 Tm +<416E74696D6F6E692C20> Tj +/F3 11.5 Tf +1 0 0 1 134.64 415.92 Tm +<5362> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 418.08 413.52 Tm +<36> Tj +0.00 Tc +/F3 7.0 Tf +1 0 0 1 496.80 413.04 Tm +<31> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 72.96 395.76 Tm +<417273656E2C20> Tj +/F3 12.0 Tf +1 0 0 1 114.00 395.28 Tm +<4173> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 418.08 392.64 Tm +<33> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 489.60 392.16 Tm +<30> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 501.12 392.16 Tm +<35> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 73.44 375.12 Tm +<42617269756D2C20> Tj +/F3 12.5 Tf +1 0 0 1 124.80 374.64 Tm +<4261> Tj +0.00 Tc +/F3 15.5 Tf +1 0 0 1 410.40 372.00 Tm +<32746F> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 491.52 371.52 Tm +<3335> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 73.20 354.24 Tm +<426572696C69756D2C20> Tj +/F3 11.5 Tf +1 0 0 1 131.04 353.76 Tm +<4265> Tj +0.00 Tc +1 0 0 1 417.60 351.36 Tm +<34> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 489.36 350.64 Tm +<302C35> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.96 333.84 Tm +<426F726F6E2C20> Tj +/F3 12.0 Tf +1 0 0 1 115.68 333.36 Tm +<42> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 411.60 330.96 Tm +<313530> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 491.28 330.00 Tm +<3235> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.96 312.96 Tm +<4B61646D69756D2C20> Tj +/F3 12.0 Tf +1 0 0 1 137.52 312.48 Tm +<4364> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.60 310.08 Tm +<6F2C39> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 485.28 309.36 Tm +<302C20> Tj +1 0 0 1 498.24 309.36 Tm +<3135> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.72 289.20 Tm +<4B726F6D20> Tj +1 0 0 1 107.76 289.20 Tm +<76616C656E736920> Tj +1 0 0 1 152.64 288.48 Tm +<656E616D2C20> Tj +/F3 12.5 Tf +1 0 0 1 192.96 288.24 Tm +<4372362B> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 414.96 289.44 Tm +<3135> Tj +0.00 Tc +1 0 0 1 488.88 288.72 Tm +<32> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 496.80 286.80 Tm +<2C> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 500.40 288.48 Tm +<35> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 72.00 268.56 Tm +<54656D626167612C20> Tj +1 0 0 1 132.72 267.84 Tm +<4375> Tj +0.00 Tc +1 0 0 1 413.28 265.44 Tm +<3630> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 492.00 264.72 Tm +<3130> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.00 247.92 Tm +<54696D62616C2C20> Tj +/F3 11.5 Tf +1 0 0 1 120.24 247.44 Tm +<5062> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 417.12 244.56 Tm +<33> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 488.64 244.08 Tm +<302C35> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 72.48 227.04 Tm +<4D65726B7572692C20> Tj +/F3 12.0 Tf +1 0 0 1 126.72 226.32 Tm +<4867> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.36 223.68 Tm +<302C33> Tj +0.00 Tc +1 0 0 1 484.80 223.20 Tm +<302C3035> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.24 206.40 Tm +<4D6F6C696264656E756D2C20> Tj +/F3 12.0 Tf +1 0 0 1 152.88 205.68 Tm +<4D6F> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 413.04 203.28 Tm +<3231> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 488.40 202.80 Tm +<332C35> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.24 186.00 Tm +<4E696B656C2C20> Tj +/F3 12.0 Tf +1 0 0 1 109.20 185.76 Tm +<4E69> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 413.04 182.64 Tm +<3272> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 488.16 182.16 Tm +<33> Tj +0.00 Tc +1 0 0 1 499.68 181.92 Tm +<35> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 496.08 180.24 Tm +<74> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 72.00 165.12 Tm +<53656C656E69756D2C20> Tj +/F3 10.5 Tf +1 0 0 1 134.16 164.64 Tm +<5365> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 416.64 162.00 Tm +<33> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 488.16 161.28 Tm +<302C35> Tj +0.00 Tc +1 0 0 1 71.76 144.72 Tm +<506572616B2C20> Tj +/F3 12.0 Tf +1 0 0 1 111.84 144.24 Tm +<4167> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 412.56 141.60 Tm +<3430> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 493.92 140.64 Tm +<35> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 72.48 124.08 Tm +<5469627574796C74696E20> Tj +/F3 12.5 Tf +1 0 0 1 134.64 123.36 Tm +<6F78696465> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 410.64 120.72 Tm +<30> Tj +0.00 Tc +/F3 5.5 Tf +1 0 0 1 418.56 118.80 Tm +<29> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 421.68 120.72 Tm +<34> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 484.08 120.24 Tm +<6F2C3035> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 71.76 103.20 Tm +<53656E672C20> Tj +/F3 12.5 Tf +1 0 0 1 107.04 103.20 Tm +<5A6E> Tj +0.00 Tc +1 0 0 1 408.72 100.32 Tm +<333030> Tj +0.00 Tc +1 0 0 1 489.84 99.60 Tm +<3530> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 41.76 29.04 Tm +<534B20> Tj +/F3 11.5 Tf +1 0 0 1 65.04 29.28 Tm +<4E6F20> Tj +/F3 11.0 Tf +1 0 0 1 83.76 28.80 Tm +<30393730393220> Tj +/F3 11.5 Tf +1 0 0 1 125.28 28.56 Tm +<41> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 464.40 51.12 Tm +<414E494F4E20> Tj +/F3 13.0 Tf +1 0 0 1 508.80 50.64 Tm +<2E20> Tj +1 0 0 1 516.48 50.64 Tm +<2E20> Tj +/F3 6.0 Tf +1 0 0 1 524.16 50.64 Tm +<2E> Tj +ET + +endstream +endobj +6 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /Helvetica +/Encoding /WinAnsiEncoding +>> +endobj +7 0 obj +<< /Length 8 0 R >> +stream +BAKU MUTU KARAKTERISTIK BERACUN MELALUI TCLPUNTUK PENETAPAN KATEGORI LIMBAH 83 +PRESIDENREPUBL!K INDONES!A +LAMPIRAN XIPERATURAN PEMERINTAH REPUBLIK INDONESIANOMOR 22 TAHUN 2021TENTANGPENYELENGGARAAN PERLINDUNGAN DANPENGELOLAAN LINGKUNGAN HIDUP +ZAT PENCEMAR +TCLP-A +TCLP-B +Satuan (berat kering) +(melLl +(me/L) +PARAMETER WAJIB +ANORGANIK +Antimoni, Sb +6 +1 +Arsen, As +3 +0 +5 +Barium, Ba +2to +35 +Berilium, Be +4 +0,5 +Boron, B +150 +25 +Kadmium, Cd +o,9 +0, 15 +Krom valensi enam, Cr6+ +15 +2 +, +5 +Tembaga, Cu +60 +10 +Timbal, Pb +3 +0,5 +Merkuri, Hg +0,3 +0,05 +Molibdenum, Mo +21 +3,5 +Nikel, Ni +2r +3 +5 +t +Selenium, Se +3 +0,5 +Perak, Ag +40 +5 +Tibutyltin oxide +0 +) +4 +o,05 +Seng, Zn +300 +50 +SK No 097092 A +ANION . . . + +endstream +endobj +8 0 obj +675 +endobj +9 0 obj +<< /Length 27 >> +stream +% CANON_PFINF_TYPE0_TEXTON + +endstream +endobj +10 0 obj +<< /Length 44 >> +stream +q +610.56 0 0 937.44 0.00 0.00 cm +/Obj4 Do +Q + +endstream +endobj +11 0 obj +<< +/Type /Page +/MediaBox [ 0 0 610.56 937.44 ] +/Parent 3 0 R +/Resources << /Font << /F3 6 0 R >> +/XObject << /Obj4 4 0 R >> +/Subtype 7 0 R +/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> +/Contents [ 9 0 R 10 0 R 5 0 R ] +>> +endobj +3 0 obj +<< +/Kids [ 11 0 R ] +/Count 1 +/Type /Pages +>> +endobj +xref +0 12 +0000000000 65535 f +0000000015 00000 n +0000000078 00000 n +0000033872 00000 n +0000000131 00000 n +0000025749 00000 n +0000032599 00000 n +0000032702 00000 n +0000033431 00000 n +0000033451 00000 n +0000033528 00000 n +0000033623 00000 n +trailer +<< +/Size 12 +/Info 1 0 R +/Root 2 0 R +/ID [<11e1f0b02274d0a309e62ac4b1626db4><11e1f0b02274d0a309e62ac4b1626db4>] +>> +startxref +33937 +%%EOF +12 0 obj +<< /Type /XObject /Subtype /Image /Name /Obj12 /Width 2556 /Height 3912 +/BitsPerComponent 1 /ColorSpace /DeviceGray +/Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 2556 >> /Length 26956 >> +stream +U&k0kYc}y'ao^vU27AV(tA7܆,7o  ӰñnӷvCg[dwN0N5 {k_7L ia ۧm`7nC xm(`ò 0nNVWpSl0O|{ {uնw`v'z<0m#9] &?=Ӗ۾wAdX2y S"Bf2;;n셥 ;ö7waC9^ݦ(6ŷ߶yvko" +<6}15~Ul7`؋w1 Ǿ >Soo`~2q|OMX65^ {o_oav񆭿{uEN ws Q#dH>vQwd3;*j dZmt%C!ȭfV~, <\$XZan?^Z"1[xocB5 ECov6V/گF/\'tu +pӐG]m~tBW' +,6ݽީ0َ֛ץb"M]M}\C[akC[k$2;Ӊ!PߖXX>6l-0W_TAwZ@ݶ.oT?֘6R0aҭ&a:|& nӧ<0tn+%d]?~BЉLXVᰭ@{m± + ½A +½m$‡t4WmWKAakIvtVau ׵aqk lJp?tvv؃kBJoZ4 ou[עp;_^сWפ@IjףI'4צVIұUJe6J^_jɝPV㴷Ta;-` P?T oI%8jbѠ+} X OFFmn!zu.OA( pVKj>7១F_i0@wJNK=.H7%*ڠKoJ5 %T +?PKA $I&N%-eP@KP *A a Uːߠ!::T]aZvD%9oA~A?uBZ]PUu@:YH" &RCIYaHA%؈$Ҫ (I z-Ú)%_Z,ttDZ .9m*Qi_28 maAZ I) ƽV pB/ +:';uHPyծ 6T [JHHCPR J>gbM V.uiR@@0r7[ZI J_ %l5Jm |34Aa7 ) JApH$Ce` h @GAB ]SH'/&+ +$xCp8woAQ mXBtAm " ah m dh3 mCQZj0 +T f0]"qP b$2 s*P@SM  a: 6+ka%lYh0 @MM ÃI\4oJxH&n[`=rKN#X0d `2,a4nq(QNTDfv;4$0NeG[D9%o@s@$ A߄jNha.6G@v ~Ia@{Aw]ׇV$|C^N}^saxXpA-_ E޿aޝ?O7~_޷}/޿a8g]aE[ n7_JU~kb ûo>\;V2/' Wj߭n""8dp_uθwރ ["""!vv0[_g/i""-5VpttoV B L/4PDZ\$RXh~[00  =[ 7!!pB3LU1˒MDDH-(aZ&A  & )IQF72"[f\P,+1\|p4"'uEq6F`ܸ+ \ Dg$Y808vx3 ‘ +s)G[w芅hddA"90R +pïU 7m ګ$Cy5Ry( XCPR3. pOo"wD3 ce_IZOzOAO~Gp pDG~?~{zz iN;pEAd\aYowamz M($w?j-m$q}/4,~oO{~o[m_nkzMZIzimt^8$? nK/_*W}kIoQ:^IȌpK_$>OZA /~+*:,IҴ4?sKAx}{}k&?/]܃[Yuok{o{~޺_]]%U%-z_o^٠E[p X%zk}aan!궛~Zֽ0H= a0`w_aWlJV0~""""A a#K% 0 0 B*M@ 8DFW "$cl7/Prl^DDDؔ-1O"Al ܇^i#@YrvKZ_Љ6H3HFV"$2(X˙fqKu1DJ;Ud|ˇ.P2!dhDD{ɺ2Jِq/ f5L?B w_%Կ( +x8=7J?7k\='Ž*i~a%Uo["Du"<ɍ_Aa!6Ѕ M:G$GȈDpl& -31BL&`` ?UU$D8DŢX$5C +B'8)8OӆB{M 7pAL a C6)4-'Id[Io d[ ~' +a׿ޟ%a7< 8_h7]i7u 쇺 $:XL--.L L%bߵAT^DE}*ᲀ_?YPM_/ޭF]"'X__? _/z_z_M5__kIs_}u!nt__5.:v@*%Jp}a/ UEt" $هMxaXkڷ +Tg Dؐ^ Aƃ6$dGX4 v[!zK"z4a0`_q*_ 3 h0AvB8 'at_adֆpDDDlDDDDDfa0` ~aacDH~6 _u_j:D1x"kzH7_I.KZpϊzU[I}؅ڪ *>. %jUg []~F0U_@2;ZDk +`/ fPst?P#rx[.|x2 2DDk  +Xfgc$W-fP\ ^"W[8мI<3a +|DDZz0B :( D[ @`a}nmI7I,}4}'^o7zWz___^ZI7ilׯu]{ۭݺ[W +< 0Mk)0aӲI0 ""$2t' `d<~rgk@ f㴅zl ̸|DDf DKwdp3#K>.;Čѐص; ? dB\&v&+w 4B?'x%oh?$H6 Q,z%jMh -&z|np$7)UWVo~$-j^#a /I} )}uKIm_ _˽/c(6 k^Pj/Wj?^t7_}oޖj" ^MKфy /‚0T_IZ%=Q+j?U~} ^צ:OOA;^'HWJ7ZOkJ$뮽_O^Buu#utkupizKi:~$VinM-6a&I am&¶w0eb+ MJ^_0k;& A1LWܗAA / o_ā oHKۮ; ӵMa_ a Ab؅ d xal&! er*1K/!_3 fnn GWHAY"C$ +,""M!ќ —X.FN3c1"%Q_/` 6`+fNg +DDEq, G2Y2D]$R P!,G0\ hO]?7?NS @/[ ;)/wJMAIv.g&DF¨[+b |! /_K?v!T U;mb~I҃7=C~`?L懧o΢h3Yr}#  1TJZOt[=CK<2ZH?ǿK`Nm! `mO7kySJAC_# Kk up'_ +Otv}{BI@Dt}" vKl%'_{{_?%__!kou{;Kina7_tnl4/A8`ial'͵vU6$6$܈All0XA X[ {! +# ~!? 0 & ? 5`,8p`C"#Xڥ_޿_I/t# I f;3SAlA еrn""AlxGƲ]Q""MBp..\e75aK 2L^"""[!.pB"e쨍y.|2D; gxdDL#Ph:̳z ^4J\"VAK1|T/~Sg`qH꿑0. +.꿇wG8|D2v2GrkoK$[/CٛaLs!!>ޡ0D./6HDտL& 0x?[CU ]?:7Q?{ M"̜O__m \{KvW_M_y/Zȁ)o/um[K/h+ {i"턘?ވئl%0 دa~zI%mi*ڔ?`;cm$ӆl <A  + CA,`0B DDD\u_3  0EVjQdW,lc"nFrDH-"yw1"%^gϙ +炗aDDIl2AXi`S=?n/x ao8͙fLس8G'qX2" +B""&IW߿2! +EO2DPA7[搷dz-__D}ii?_ ký[ZVvZ_kKՉ %ᅮiG\2 :'0*AąϿK#(?޿Mt~Ià/̓IwI_d2_i]A _/HحalKXb m{]Il.a(a4 a4~lS!xA2!i '[ 3K_ֿ#l~-Gxv +C;8'K؈[g'͊-yў +\0q~""[3kp6f# 8"""[˂ 9p%v`g$el5ЕE0)DDD6_I!.Nop uKB%aJ% 4H 6 JD0I zAAcgӤޓhtմm_tIt-O$.dj) R0'>WWÆ]Zi G7ێwH "ڏ!t`~?aޓi}Z'І= #o g EtZ~i? .u_iI߬amo}ttH_Z ?]//m' w__i~7_~:&nK]A{ޭjZ]i7_{m+IND$}Pai $1LVJM14ZLS aa. op [4 a08Wom"{v7Vi۶_Aq=S0p´x AKa/0_&.GlUDD69DW5EugdWjj DzkB"M2xt3IDDa%`g+x̏rv| @DDJTW̏6;- Ø"DDH]҄*!0viA_\4NzaB #[AԒ]$٬/t=i_oJ+忧Dm~oޫ޶loMvzo_P!d~iE`\ءA?7dn5O鿄>ɂ~x;"W_C^_KIN{i~_ZM^6ct 6M 0^JYv)ڰ_ߤ0&+׶a60^ /b#2JAxξI_„Ha6˽7 4< )%mnAD! B_P_  Cm@?""Al4~;8ʏd0vЈAˌ$G̓vlRd36e\ a] e /-HelN"%0G#Lsa q+f.9 Cf80%@7$CA & 6omڪM}/Әw ҷ~鴾K/_Kt_Q׷_ZBi}j_}]0X鿿,Mcim?~ޫo_o޶vҶ^ -0 6k6 130A@0 -}'`Aqd͆DD5so:aWx rS=h`F DDKsqK0s&3S!j̃?}[A@a^D0L'(L Q,qh>+`I*A;!xISazWu^k<| |R]W̐ۓQғQ~괿5w/eX +~~SK_MKz[I;Jҽ%m}Ԅt +&Zv_AA85J Dj/KKA /a+n|5T VibXaᅆ+a8`㝬5_K/15bqi a3x49H. yB"@>46HDDDD̸A DѰ% DIp%!.\˳E&@8s06gq+3sb \B hDDL-H6dF$k +Ѥ:+2M[ `!LI "uAi`B4O'p4z H6', "X: MAj}tIHt +C 3d$HdiuiZ3ounfc<' d'0L d0@_IKKv"8 0Ba +aiZ_}H ܂^NjoDƉh?/'AzH>~~ľ__kkkKl+o[a8pȸa:jzI[ZMB=^a%^Zm_\6+z>K:KWܔw_Wۄ#$K+_~j5//^H?D%!/_|HMZ_[_}ں_l/?$_^Wiz+ zA&/i{iiuЦ $MAXkm|0 Z_WW[_apҊAA{kuu]}AimH"4ƺDںjMu ! '4Hz_|DDDAl%l4 6v+ba4a&_Naxb)b0|0AC h1 x80A D}uz]K_}i|G?PH-ajDk9 ghZʏYD@QJTDD"3L 6[pN_O%qlfp&c+geQ\q2..Lo+H)8@2Lɓ)0_a0@f@|P'L΢g@_MTOvCP4`L!$_aq ``aZ'aQ,WRl2$(OA7AoMz}0Ka7U"KZpȹ ]o^;i6кO_봺~>p~U_ZM=~E+׏d WAp+~鲜0/!# }ROD%m莙(E_K_O]ou/_#U/PznkNtvD$ ŠaN5wa4Ivv_T{"g 0cbb  A6?K۠$_ &C߱VbMÉ89ԑ%a`XA ;- I4_c LvL!DDs '91]/֗]z h!fj `Yd3'B|[H" nk!- FPC0O6R0CK0$""[:<6AAŒfa 4dDJgd('"A… ;iaLK +a" 3KP%o th K&o__=?!o΢H8DAkyٙ &<`A8CpR'?XAq  +j0[Z%4K[Q(aBh]&! A'4N( >h4p,0N6 ~$I׮kD1"}7_I!_޿QүM_#z:oVD__K _~~om/'W]mVҴzdw^Wv4 +IH0@e6QL0a5a[k)Xb b6 }~ &{ ^\&/2DCA@AmvVWaӆ B">_kv `3J093 O搹) !rTn]`g. aȹL bq$8S`JDex6`  472?3 +0At]j8 dř_ KEѮy,+]P A$&ק aC0 ?ya OA 0KD0a"XB/~&! A0__aoI"kzMm UI^zM}Sꗄ"K o$?O_}mK̵RC @K%{o/oj_2?!dḲ߮^K4i[ji*wn$u ؠAA +a0OKlBMA/,AˬXk +_ei|t h/#! BYB"$"z[b"Al'3$9[Neœr.m3#aKq#4˴6%f30&a ȆD;K`x㑼/+ʸg"m/B"[ِICqLHehDDJ/;XƯ+ P@@ɀaB #N@a Q|** ̔/ޗ^A\* ҽ/Di7KoDYS^~:faA0@N +F8LL&A,qVa"V4JWA7aq&`ȷI&&Ov,.tOW_އV?"z_|%Mɨ7W_%Kon~_}-΋]Won}inz_~eCI[T/A0m$ $a$m$$Hj&lH .~Xk؄keq a """8 %KAi酆!5:6fŸ nAi!3lOes̈𓈈j8'_ <pm6 *""%En d|Sx81DNճe̫g|8dSa B)~Z_ 2 vV 2!.'_"X+h<(L h 7V%n6iW'Im'2AA5(n(LaaD0[W P=?'WDX#JDzNo +a :Vi+I''_Ö́I___c_{MA߯aK~^k ~;7 ^@ono.'7}_[W_mI4kI 06) 0A&08`_M={LSě6NFL h0h4?M|DDDp`0AvI -m+K"">+a1 ] ~2n0_zm/uuKGo9Dg_D\!prPsq?\<""Al+H6- ׈ʌי5B[ec7d,!"#/ȗΦw9VI"!eȐ(<((NOT UN JdJm{P&?МjAH%?0A/%mpOj렃~c[ׯ&A6w_zmtk_r0yBV!&~ yPD"D2-s>]_ @fեK2Gh>(~C~^& `$A 6}a_-Iwq_oO%҆5])5}H%&K-Xwa}$_apuW/a _ o"HIi`z$H/J! QmD_8:AnC~z^ ]TO/I&ׇrv[_v0sl/l5] IiM ô ٹM; I~  ؠAAěb '~ʁa}SUL&d.k@I!DDDA"H!la=00;>"""": _gfL8' '/ׯZ_֕_zC5\' `fpE3MG rPB;0e;@Ͳc A[r ''2kop.9_lg͗.$0ё""%u<͔2 s. ag$d/;  f"A<$HvOX +Et0L' +07P8?xp $vӻe*̫/䰒z aB#YWtpL @CD~ Mߢ|A鴛A6)?{(@BǞ" CJoҿǮd0A $0!c”?q 0Pa +>ҿh=!!K^04F/'?Z7p@(v o_-&IM&%M:M~Kt^u|磻muKm[ ?A?{K/Uoy%$ JI_#gjc_]y $:v/~Z\&~J}Q߿D }Z/Kt+\]bIk>[W_vWMKjK[ ^+K_ +;I6II>AAa `QLPAfaJ +I/P_pM MȌҽ{kڷCgL-  xa>M-ᗽBaa(a&Km/"#!)a& XiXb 0kb#& x_AhYM]x[7Dr XF;rȵ8A H<ķI1630&n| ]c'@J ^"B⾑3C0͇101 e__"'2;'#  )(/(Y>T?d|8w"@B_ y٤Do;/o h A{k4tf:j@JqMY L2/ !9 H0Aҽ׬"8 !&<& z藹'-rB,^l)7IA;I7 A_K St`6$0A[_Z] +]Z_M I/nIn)G]$%?_}t%o&$Uw}{!k!.+~ M_~xaW'RKZYm}%u }VzIZN@caiPL0Xa+[  4A@b@) i~x* $lAWJ C0iv5B!Bba~G;% +a{,G +Oc;`o["ܜDDDk e} +vP?g< h"a Љnb3p&Ap\%DD뚈N ,Kps^_\/5E 62J""$+g3h _;f#apB""ik(2FE"`EP3 0 d1W"6_aWԌ ڠB&3ؾh.E~fG H7%"sa3"Dj!/_* aX gC8 +%Z0O00\K% ,"\^ ۤA7I4}`SӺMi?$%Ip+[{ !}pw]/IR#i]m~FV.L_K"< jC">IG>}+OQk_}{}?2I-/K!K/ixK^յDL!Ka~K_MPӆi+i6v_H>Aal0H 0aXA}~ +XbvA $@II_rJ0a0'};KISt0Zm*K#Z %ֻ 0؇NE^K/wA.v_H-l i"$Yg0)?ag.JȎ"""$Aθ"$ˁ43wo`RL3EF-|B=(8e h3`h;erU#_̋YC&/A,1`/((D ~(+dvAH]|**<7ׄ N낄Q>Oz%as#A>]ҽlas$ +D +$˒i%` ` F! +AAH2|%´aH6mr  S &Z] +VzWK[~`?_J\%5%Y?jj.?aC%'Ga%o"9,7~~^C!/jfPw`IV_H"Dpm-\ .O_]@A ؠ@ئ)0K?᭦4|%|C3@@ /iwDDDDG i~D`~!uK x/՗_[ #rYvu/ِL@U!ʲ)S@M0  K"%F0\)&`R8R0 +438\*ȞF"P!_Al/ArZ;#@Bl>0ppzAM<ȣK &lN3AP_z}\(_0+޿ oOs" /]٣@)GQrM%M0PAPhCDnz`0Z %= DEMoI_Ai7Bo@/[a:_"?K-&k>:$H蒌FAK΁o2 Ht(/~7_"KKK^d?lxA^{ ZDN.MVu_ W$VPM~$k_ ` 6 $l0I0_؅lPih DiyT(2vP0A I6""""" 5ia ;K8" !k_0/ ӆ!!/K#G `r[H[ j8*χd2i9X[ BunO<`.ˑDDIPE'A1 (RfA` B"w\[2p`#9oD„q\Z!a"< UL&0 +0[%0c̅<Ç|ʱ% ;A2 >eVo] X_DrRW/UoAoK̃?h0 )8D Q "Aar1$TgHN^(L B 0a<͈|CX@bD!D^"c$O_{_J}O? _܇o/jߥmCfjwm޺_mo]ktAA I4aÆ ptV5\/ؠ0bbM lCaFAIӆi&aXaWt_ _a6!pl&a0Aa0@Kp׈`D0ABaMxka{!ƒ""""8`C"" -jK_؈!fTawq}Kz@r3`?"Al0/"sn0d3.Fa0l""E\|3`h ;q^/ϲp#w2dR3!NPDl3PPO OUP_%a@PP68N iBM y٤T ?oD<&/At&oTo?yٙfBj]Adk?K࿄(L  KaaB#A04_ AlH4Ko{t2-oIO_'z%ޗ^ AitN_(A_K|_? ?DK Hz^^޾_K{׫,_om-E߄KuKRM;J-[n! AI6Xa$W~H&h0b `aհױK"" a2ӅN//m/""""; $ } S_K 5;3`{ b8!44( p_IHCmspC#]+D56GEDvz8E f."%k3@&2+铙4Љ[/@ &KY٥,h.7jt{%@pN ;xj;~Z AAArY ?o K?xD4OD%{jrɄނmUդ6습_ҽ[Vү{3&^A2AYJ5 2}'A}. pPAAaH05IƮG= B _ 0`ɆKc[[Kpp|2% ~I{ iH76'A5_~m]/8A%I~\?Io%oAQ!<_i.nKҿW /p_MOא}K)!_/i?n_]_J_ߥ/N/KrB=/ +~IЯRp][_ҽHm/xBAiنkfN+a$PA&A ؅lIba 'i>]zmowj +vIؓ#Jm$(v8C0a>IAm$IY c + %va_Q+ S $Kma[ bX8da8a c$_믎KKZ_qk a Yc  bòi\DDH-7DDY#AGCA?l.frM DKtigDDNk +\ˁ1DD,d7fNdD/dh6HCإYïdk|<&%X?+r̃ȡg!47t ]ObBZN\a +L`AHBD-Q'aBa??A1K7^`Ai6 7a=$tWIwO$%$:W?<WғW _"_`/# IK^O~UolzUizJNuu+9pMH%a.8 04+Ma_|LPAlPA 7 '5 MDDA"!"A𕄾v# %i;%gk`0 1 ;;2 +_8;`"C$p\ i aY;3Пp2)""AlDJYN!|K4˅9aXf +s`Sc<"%y#60DvdmFl CB"&Cq23`WنVY٦CQA4˿PT-YTR?d] UMah"(D(4 4Pj k5D /'e2h:aL`ib7_:L2gr;%n0u%ƽnV K|6 z%mJ_[}`z6H8@UUU=[Iئ!"΢6AFPWOWӫU>p<)4 @˳1  hAl,<0>8޿7/A/KK]rml/Zߠ[JSiA7  i4`M[ [VH&aĜ8A qz[ZKk0OBkC %j_`DCC^N} %[K"""""# a6LB0_ &b""aqu! +Mrf XC=vfpぬ\ ce<-cفL. (2 h>""""%pCn"[ʂ.H qܗ)3 $DD, vLGi#mJ4 ~ZOCMt7 qJ/^U% j}`p:^_%G_XaAO/`c_ܝm/~touA ]7d?nokk[otհvom-l'[ JFH2CMNi6 iI0lڶ6§ڧTA8a  `Snl0i˂a?Bة&7dA ؓA"C0q:lA8`4L ^w`00C;M"""#SSȡ" A:@zWM=BeA'Dtz^l$@xA+s.z t.+ $|>j%J[Yz[y "CKw""ַ~jވ{!FA 6W k]!K\׃/oKntÑ!l6mnd{}MZ{~dz{6[_}oodX}}п}DA|z~!{iwt._v﾿MOa[{Mի[b=u]]%v +O^GrwK̉F!m&҆b\DX&ACI[q PbPI.!  T!a  P +endstream +endobj +13 0 obj +<< /Length 7236 >> +stream +BT +3 Tr +0.00 Tc +/F3 10.5 Tf +1 0 0 1 276.48 752.64 Tm +<5052455320> Tj +/F3 11.5 Tf +1 0 0 1 308.88 752.16 Tm +<4944454E> Tj +/F3 12.5 Tf +1 0 0 1 240.48 740.16 Tm +<52455055424C494B20> Tj +/F3 12.0 Tf +1 0 0 1 306.24 739.44 Tm +<494E444F4E45534941> Tj +/F3 19.0 Tf +1 0 0 1 291.60 723.12 Tm +<2D322D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 123.36 692.64 Tm +<5A415420> Tj +/F3 12.0 Tf +1 0 0 1 150.72 692.64 Tm +<50454E43454D4152> Tj +0.00 Tc +1 0 0 1 394.08 691.92 Tm +<54434C502D41> Tj +0.00 Tc +1 0 0 1 471.36 691.68 Tm +<54434C502D42> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 164.16 665.76 Tm +<53617475616E20> Tj +/F3 12.5 Tf +1 0 0 1 210.96 666.00 Tm +<28626572617420> Tj +1 0 0 1 248.64 665.76 Tm +<6B6572696E6729> Tj +0.00 Tc +/F3 14.5 Tf +1 0 0 1 397.44 665.52 Tm +<286D736C4C6C> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 474.96 665.52 Tm +<28726E656C4C6C> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 283.44 638.88 Tm +<414E494F4E> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.84 615.60 Tm +<4B6C6F726964612C20> Tj +/F3 12.5 Tf +1 0 0 1 125.28 615.36 Tm +<436C2D> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 405.36 617.76 Tm +<3735303030> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 483.84 617.52 Tm +<3132353030> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.84 591.84 Tm +<5369616E69646120> Tj +1 0 0 1 123.84 592.08 Tm +<28746F74616C292C20> Tj +/F3 12.0 Tf +1 0 0 1 164.88 591.60 Tm +<434E2D> Tj +0.00 Tc +/F3 16.5 Tf +1 0 0 1 416.40 593.76 Tm +<326C> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 491.52 593.76 Tm +<332C35> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 75.84 568.08 Tm +<466C756F726964612C20> Tj +/F3 11.5 Tf +1 0 0 1 132.48 567.84 Tm +<462D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 412.56 570.24 Tm +<343530> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 493.68 569.76 Tm +<3735> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.60 544.32 Tm +<496F646964612C20> Tj +/F3 12.5 Tf +1 0 0 1 119.04 544.32 Tm +<492D> Tj +0.00 Tc +1 0 0 1 416.16 546.48 Tm +<3430> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 497.28 546.00 Tm +<35> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 75.84 520.32 Tm +<4E69747261742C20> Tj +/F3 12.0 Tf +1 0 0 1 116.88 520.32 Tm +<4E4F332D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 406.56 522.48 Tm +<3135303030> Tj +0.00 Tc +1 0 0 1 486.00 522.24 Tm +<32353030> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 75.60 495.60 Tm +<4E69747269742C20> Tj +/F3 12.0 Tf +1 0 0 1 113.52 495.60 Tm +<4E4F322D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 412.32 497.52 Tm +<393030> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 491.28 497.52 Tm +<313530> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 267.12 473.28 Tm +<4F5247414E494B> Tj +0.00 Tc +1 0 0 1 75.36 453.36 Tm +<42656E7A656E61> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 415.92 452.16 Tm +<33> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 487.68 451.92 Tm +<30> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 499.20 452.16 Tm +<35> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 75.36 432.72 Tm +<42656E7A6F286129706972656E61> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 402.48 431.52 Tm +<302C303034> Tj +0.00 Tc +1 0 0 1 476.64 431.28 Tm +<302C30303035> Tj +0.00 Tc +1 0 0 1 75.60 412.08 Tm +<4B6172626F6E20> Tj +/F3 13.5 Tf +1 0 0 1 121.92 411.84 Tm +<74657472616B6C6F72696461> Tj +0.00 Tc +/F3 6.5 Tf +1 0 0 1 411.60 411.12 Tm +<31> Tj +0.00 Tc +/F3 10.5 Tf +1 0 0 1 421.44 410.88 Tm +<32> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 487.68 410.88 Tm +<30> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 498.96 410.64 Tm +<32> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.60 391.20 Tm +<4B6C6F726F62656E7A656E61> Tj +0.00 Tc +/F3 15.0 Tf +1 0 0 1 409.92 390.24 Tm +<743230> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 491.04 390.00 Tm +<3135> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.36 370.32 Tm +<4B6C6F726F666F726D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.84 369.36 Tm +<3234> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 493.20 369.12 Tm +<33> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.36 349.68 Tm +<3220> Tj +/F3 12.5 Tf +1 0 0 1 86.64 349.68 Tm +<4B6C6F726F66656E6F6C> Tj +0.00 Tc +1 0 0 1 409.68 348.72 Tm +<313230> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 493.20 348.24 Tm +<35> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 75.36 328.80 Tm +<4B7265736F6C20> Tj +/F3 12.0 Tf +1 0 0 1 115.92 329.04 Tm +<28746F74616C29> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 408.00 327.84 Tm +<383030> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 487.20 327.60 Tm +<313030> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 75.36 308.40 Tm +<446920> Tj +/F3 12.0 Tf +1 0 0 1 92.40 308.40 Tm +<283220> Tj +/F3 13.5 Tf +1 0 0 1 106.80 308.16 Tm +<6574696C68656B73696C2920> Tj +/F3 14.0 Tf +1 0 0 1 167.28 307.92 Tm +<6674616C6174> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 409.92 307.20 Tm +<32> Tj +0.00 Tc +1 0 0 1 421.20 307.44 Tm +<34> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 487.44 306.96 Tm +<30> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 495.36 305.04 Tm +<2C> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 498.72 307.20 Tm +<34> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 76.80 287.52 Tm +<312C322D44696B6C6F726F62656E7A656E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 408.00 286.32 Tm +<333030> Tj +0.00 Tc +1 0 0 1 489.60 286.08 Tm +<3530> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 76.80 266.88 Tm +<312C342D44696B6C6F726F62656E7A656E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.60 265.92 Tm +<3930> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 491.04 265.68 Tm +<3135> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 76.80 246.24 Tm +<312C322D44696B6C6F726F6574616E61> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 413.28 245.28 Tm +<3135> Tj +0.00 Tc +1 0 0 1 487.44 245.04 Tm +<32> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 495.36 243.12 Tm +<2C> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 498.96 244.80 Tm +<35> Tj +0.00 Tc +/F3 9.5 Tf +1 0 0 1 76.80 225.60 Tm +<312C20> Tj +/F3 13.0 Tf +1 0 0 1 87.84 225.60 Tm +<312D44696B6C6F726F6574656E61> Tj +0.00 Tc +/F3 14.5 Tf +1 0 0 1 413.28 224.64 Tm +<7432> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 493.20 224.40 Tm +<33> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 76.80 205.20 Tm +<312D322D44696B6C6F726F6574656E61> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 413.28 204.24 Tm +<3135> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 487.44 204.00 Tm +<322C35> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.36 184.56 Tm +<44696B6C6F726F6D6574616E6120> Tj +1 0 0 1 165.84 184.56 Tm +<286D6574696C656E20> Tj +1 0 0 1 216.72 184.32 Tm +<6B6C6F7269646129> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 415.44 183.60 Tm +<36> Tj +0.00 Tc +/F3 7.0 Tf +1 0 0 1 494.40 183.36 Tm +<31> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.12 163.92 Tm +<322C342D44696B6C6F726F66656E6F6C> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.60 162.72 Tm +<3830> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 490.80 162.72 Tm +<3130> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 75.12 143.04 Tm +<322C342D44696E6974726F746F6C75656E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 405.84 141.84 Tm +<6F2C3532> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 479.76 141.84 Tm +<302C303635> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 75.12 122.40 Tm +<4574696C62656E7A656E61> Tj +0.00 Tc +1 0 0 1 411.60 121.44 Tm +<3930> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 490.80 121.20 Tm +<3135> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 75.12 101.76 Tm +<457468796C656E6520> Tj +/F3 13.0 Tf +1 0 0 1 129.12 101.52 Tm +<6469616D696E6520> Tj +1 0 0 1 179.52 101.28 Tm +<746574726120> Tj +/F3 12.5 Tf +1 0 0 1 210.00 101.28 Tm +<61636574696320> Tj +1 0 0 1 246.96 101.28 Tm +<6163696420> Tj +/F3 11.5 Tf +1 0 0 1 274.32 101.52 Tm +<284544544129> Tj +0.00 Tc +1 0 0 1 409.44 100.80 Tm +<313830> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 489.36 100.56 Tm +<3330> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.36 81.12 Tm +<466F726D616C646568696461> Tj +0.00 Tc +1 0 0 1 408.24 80.16 Tm +<323030> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 489.36 79.92 Tm +<3235> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 41.28 25.92 Tm +<534B20> Tj +/F3 11.5 Tf +1 0 0 1 64.56 25.92 Tm +<4E6F20> Tj +/F3 11.0 Tf +1 0 0 1 83.28 25.44 Tm +<30363534333620> Tj +/F3 11.5 Tf +1 0 0 1 124.56 25.20 Tm +<41> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 391.20 51.84 Tm +<48656B73616B6C6F726F627574616469656E6120> Tj +/F3 11.5 Tf +1 0 0 1 521.52 51.36 Tm +<2E2E2E> Tj +ET + +endstream +endobj +14 0 obj +<< /Length 15 0 R >> +stream +PRES IDENREPUBLIK INDONESIA-2- +ZAT PENCEMAR +TCLP-A +TCLP-B +Satuan (berat kering) +(mslLl +(rnelLl +ANION +Klorida, Cl- +75000 +12500 +Sianida (total), CN- +2l +3,5 +Fluorida, F- +450 +75 +Iodida, I- +40 +5 +Nitrat, NO3- +15000 +2500 +Nitrit, NO2- +900 +150 +ORGANIK +Benzena +3 +0 +5 +Benzo(a)pirena +0,004 +0,0005 +Karbon tetraklorida +1 +2 +0 +2 +Klorobenzena +t20 +15 +Kloroform +24 +3 +2 Klorofenol +120 +5 +Kresol (total) +800 +100 +Di (2 etilheksil) ftalat +2 +4 +0 +, +4 +1,2-Diklorobenzena +300 +50 +1,4-Diklorobenzena +90 +15 +1,2-Dikloroetana +15 +2 +, +5 +1, 1-Dikloroetena +t2 +3 +1-2-Dikloroetena +15 +2,5 +Diklorometana (metilen klorida) +6 +1 +2,4-Diklorofenol +80 +10 +2,4-Dinitrotoluena +o,52 +0,065 +Etilbenzena +90 +15 +Ethylene diamine tetra acetic acid (EDTA) +180 +30 +Formaldehida +200 +25 +SK No 065436 A +Heksaklorobutadiena ... + +endstream +endobj +15 0 obj +764 +endobj +16 0 obj +<< /Length 27 >> +stream +% CANON_PFINF_TYPE0_TEXTON + +endstream +endobj +17 0 obj +<< /Length 45 >> +stream +q +613.44 0 0 938.88 0.00 0.00 cm +/Obj12 Do +Q + +endstream +endobj +18 0 obj +<< +/Type /Page +/MediaBox [ 0 0 613.44 938.88 ] +/Parent 3 0 R +/Resources << /Font << /F3 6 0 R >> +/XObject << /Obj12 12 0 R >> +/Subtype 14 0 R +/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> +/Contents [ 16 0 R 17 0 R 13 0 R ] +>> +endobj +3 0 obj +<< +/Kids [ 11 0 R 18 0 R ] +/Count 2 +/Type /Pages +>> +endobj +xref +0 1 +0000000000 65535 f +3 1 +0000070080 00000 n +12 7 +0000034334 00000 n +0000061522 00000 n +0000068811 00000 n +0000069631 00000 n +0000069652 00000 n +0000069730 00000 n +0000069826 00000 n +trailer +<< +/Size 19 +/Info 1 0 R +/Root 2 0 R +/Prev 33937 +/ID [<11e1f0b02274d0a309e62ac4b1626db4><11e1f0b02274d0a309e62ac4b1626db4>] +>> +startxref +70152 +%%EOF +19 0 obj +<< /Type /XObject /Subtype /Image /Name /Obj19 /Width 2553 /Height 3909 +/BitsPerComponent 1 /ColorSpace /DeviceGray +/Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 2553 >> /Length 26912 >> +stream + fsH9k[ C]V ?A1SP +T49a`8ot݇-qF` 7n5ʐe ݭ/i|di$ꚷ/"Dd@oa tk nxn7d#]#X<0;p?]mݸS[tn 7WMn[pװ;4ŷ2yVQwtMn/KñIkXy:Z0duhwۇ 60nw|`۱waذwo ^nȃa<~?a` Tl>G/ |A>A.oz/z> 0:zЇ܆N mz]Wa~G +4qy 4as-c U`owQycwjwh==\h4 ~a ZŐAIePamv0]^-w[qq[MkS0m; >z/z#}۵ZXoU*a/[]6qW_+T|Ǻ{ko߻`{ؿ}]ـP=뇶{_jd6tV!fu һ]նVbChqvāᴜ2rak/B >Zag¾-` n\0KYX_]ꓴy vy :q{ +kp%v}HZ)+7 +oL7xP»V]D9h_pvV^^)p I.դf +K ixkׇ{r=<5Ҹi u! Z:m\#Gg!l+ukcfjA[(_S߯ xKO ?F6j :m-n[W[\VkKz&aRXXoT`Yk-P1I% uKAe 5QcH?J_6FONMbH?k PelI + t~ t`龼@g'jD" PvQd nD pJ= ia;:$MJ%X8u]WKARJtpM$gId5렼>H/vmpaQ"ώ^C鷄r~: PpV7'$]iZHpI +0RK*0HE*Ph6$A gt +K2Tҭ(/,zx%M.0ZCّU +d$H4֑ pTN7I PPm]tQmt**>o$H6J_geB !TAtvP0 t}6VTn֛Z `/KKAnEh{mRJXpIH*5PO sS\N)$zsʔ ;IB!n *t ] $|!&GDk !{B m'uBmihb6pXhᴃrТ6(0A qVC*abDlC p`GPh$7AJe xl. aX XaH6 @ly A0n& 7wH7-&Rn[a;``L),G-c%_2"C(21rvC+Dk~| }BF"/7o!FFCgt߇#W܌~]ow/ߜ˩7Fb6* Ԝ?auH9A‘UXoK/IaaR k_ c^/x""!G-B \䬆<[l."A3 bd|H JDYA1QOjG<9جNf`pfxFWA]C ޡ}wd~A U" E#}6{wۇ@w^}zސQw}zro臎M_TR5 +0[\|ߑ!aJ  am]w} m}}w~^\ս_8=T`zA~6%jf oUx.5[d[UuD\2+LVDDCv0P h4r#Le?pЈiDA- 7UP`X7nZ`B-;?ޭT0GܸdY.f_%B""@;od;dxl&(qsҢ""""@>ڦjz,W0S J +gDDD .GěF`m Mf.""drPk3XeafE)אQ7 !CdA-dӐ0Χ^{)͆F DsàJа@怅8h%g55##~Uh;AGA=mղA_~ 1tݺ 77" ]0pK[ﯾ h 2gw0A Rk}}&?p'v[﷥{Si7Ii>Om[^koumޟoO>]_wֿKWwi??ZKQU֓ߊ__%WMR/AOY?KbJ+O__w o! ^GRAIY0Ɋ ^KbKc?!!/_G)>mt޸%k~H*_nZl/KI}&_v۰X/ik00(') 6Mia-+Kzw݄ 00A~MT/)l*i߰`DDDHB^"  a=6!!I_ + AA_"3wpRS?_ds +5@k+=3, BO7x>A\7~!l,|̌gH^0@ypc6d3jP?-@tl0s8 afne_hfAd_n )Ly)B@wG /( )S@HNvYj4q}$M^(jaZ邏ߥ'Zz?BCD9B͈Sj@r4DE ?_up0`0Q3 + A ۾ Q,at4JB݂O(L 8 +Sqn`Mz[A1~ENl1`>qTK? &44I`6`G޴/ ZhOT l2>A & /Ni/O_ KuAM0NaW_GOU~wK괴Z+A#ܚ_ IW6PKޭۯoK_^/D_ /@GO%a_/ӷi/_5_K_k뮽_%/V_F'l0+Kmum"ZBQvaĘ` 0K`g> nBd6nDp1@ķqA0A aO(N~i&LIPi1RLA% W$ `"AaatxuA 5? 45DDDG]?צa:i |De`k_oQ_W[ _W/WZ'^Kᄫ.kg]}*KKI$ WaU# kl1 KF WDG@g 6 h k"9¿3ADH"nt?sԘ-X yqODI1gVOB:ܑg#f` Xfq;P"gt dgfq!rAABkUawӇPBY3c%54 +x@%DDaAƉO_ޓzADlM6h }+z}'I\#DuyH#_+f"<> h6O!$GQH=BC0 +fA?HQ?xah8K+j"7jMm'ഃzAm2aDA ߴ[z `ȶn' K}xKK5Nl'Ka/ǥo V[}!O1K_%:h& }/}z΁j*_}_׊_6? D J-ߚuAo67/mH?7 &Huk__Zu_jG[iia}7 maUz}M6I8pհöҶ҆a{l*m{umii| a 8A  %Ca4I=i]تaCvAA(aĆҿKmJ /x3A (0XaMa0vBjCaMJI"""""""$&p0B `@`BCb; % pM"""""#bb>M9ع 0-ZKK}kϟ@fn|#sHfi`{%e,N qE `܆#B"""%&n6GAX7l%MDJؼlgl\x3) Kw&Hș +& Q"' &!dUSh8|0AYeT||AxP@',x(M?¢\%ZMO&ǯ6`MK5˄?o!" 1 9LWW DŽ!?m_%/z`>-ߠ`ɟAd'2Zuzon$tN|4$l^_[K'$_nj] K&j޿A@/n_6____[HrEmtۯJ۰ֿudl0M;m+76{{uxAT0AQA@ئ6H aM4ᦿN->m*Vյ"˄Ba>il$ wa+K""""""# b6I  ʁp1W`. C*0T.q3"@*G4n-Af Ũ27 Ab1a m?ph+q+2g9Ј˳*(o4fq<~""'`;;H_"_wӃZ_ 4ts*+)76lA?uh5Mz l0iKnK:_mǽ$׾ծ?nz(/@D?IW KX ҿDt~_y_M_C.o{iZM]$_n ;JVVVJA ؠ ؿ_I  FK_BnA!j4""""" 3"8be@U#Gf\D29 -""@3\Vn Cnts +pG;""$P0V9h.˙'"M%?p&? 2l.Љ\,Y S>DD2V̏ȑ +FL$TdKА#d &äLu(ÇvJ3,%d5߂ +$'zDY WX__ ]K*_' 0N<o 0=Q ![ gXNs)gQHS3%K]%B% S x& &d 0 4@ ,/A.~ dFA.|Z#<&[PCDa0P[MB{H7m$ A]n8v 蟴O7D~㭄7M;-HoI$b_4>a4֗? }6TM8P> 'm&o,|u_'Nz_Kk_upIczz_"hɫ'$V}~y΁ү5aޗ/ CݿD%m/!.D ^ۯb, A?AK$XO?k듽[K$_C]ktk߯ڮu𝄓VWٺlMmmp|N_a[ub lP a(Ai ӳ $iM6R Ӵ%51N$&baA `ؠL ضA[]~!0 h0L 0ݲl+NA,Z&gqaB`L D݆00& """"("qDC=fB WW Xz.i%_^aWK` XxBue +3 AYIM!""@4cbH,21;> `e^'׈cCJn"$+"c.` ""Mn-"[B!?* /oA9ʡ2 >eoZJ A=h F00`}1a&`E?Ţ^"E&!{M= U?xO ?㮿?/WWz?AoDB_莟 H_4tT~Va %0Om8( @ؖa5a^_C2i"""8aX  O2r +dχ ا `OJD Y)DܭmA _ .hODgb#pE sxBvxr؇.e8.0IB:l B[ᛋ6}"[_w) &ZdB‚ =ࠠ8dỦMddja'KL+:nFO?A~mz&WPJT2@=zD3cP"q+2Zt&&N(L A z_%$ 簴JaD:Toh ނm0qh%$-&"^$2$7_[KIiKKz_MO_^? KZץt_$rJ8J]/y?ʁ"HS H@ /kHsu4״~~2SNԧykm_z}K zNva,Nmvl/am[_J 11ńI0ralPA Lq&0Aķiaa4MװM&Dfgm/J|0D! a0M2C5Wk3NKW/UG_d,stVv_ f^-th""$ Jf9:ce; F\Kȓ! +F (ͲDTg136TȮ$˙3?X2l$ɋA"XȸB,!v + aB /L ~?j;3i7%M󵅝@Q h +-2Ti7A}kAEÒG'JNމC/WO[H7aDׯʼn&*zh)IM:_pH-S@C^xL"2PA`0AD334uG(xB, 0 }]%נaE\O' DIE`GH6N~jҭ+I6{y$YuФl' ćIt?A{u!k_^k/$X^+$ߊl$ʀ_\6I`/Dytj< z_CKD,vI\}?>K.t/_"FE^ނ{{i}~Z_yNKCv\מ +I-Om[J}_${NӴ)PմVl-_R^1ڄpBpl4afiOtIm8M8"0A@bA/Ȯwv[T|"dIm/2" ah0 '-vVMDDDDDDDGbx %Ipz[~`p /^8`˽$I%_uiKKiC$ ƌ""@3<3 &ܑˡnmHK2  3Y""%XsmheCg-ֳ.DĽd[9 DDgӈ/N&/ +q`/#PXK$Sw;$󵰄!O8o H9 CkE͠z%onA IoIC/M D12쎄.0CTp"|3VfDii_O<&(L 0A0@KVCDA* 'Z( \K'= cDMaA6z ԛ_CK0I:^a?Yno7?x%_}WᘽS-&mk+}J\5ɨJ8^Q #x@_oo@1_]VrPG>֗ K/_$_{i~^_܇MJ mZ]ii_>m[]_D5lT0ŧ &Km&MK% p`0bbؠA IR am4a{!=WKII0B A &^|!NX]Ǧ0K8N#8R_ Wr- ?2 +g%2""$ 33k]Lo?a˳+3z~"$ܠ2l@`4 9_1""$ް&g-fvSʼ.p0\ C22|O'DNם_7/0|Bc*̊?߄  aBw}ߠz K:}mսLE5gȈ 07}z=àa0,x8tOZ%~7O AҼWV m&ȟkJ ~ׯW_󴰒x,.P&0_ iA7m9~nZ^נ{d?Km,W[joK<+ /Ha]KbbIc@ؽ/l+ /dn^L& ^} +V[iZDDATaj mI" +aa/q #C 5 k+""$ s.εDH= q3ܻ'̺DDHm99""""$""Q)K .28&q8%q+Πp4; B?v$2, +;Dۯ +N?Bh;䰖Z:A;4s n>FAw&v@iҿ<[DA7׼ͤ /W~S'ٲ>8΂̆<$̂1j_B`xA ypH0A@ d  BM5&a`„ pah="[D#ĉP%#dX@ H6 z O *I ɆCt M0t_Z] +Mi%\/IIē^KKIR]Z_Q/|B#x_~t N/__Ds"g/7~J>ߥ}/{m_oom}%m__KҶ :IZ_m"j4𒶕 %[ a? ؠa< &nm+7C ~ةX؄0bNlTlKva%D3 ,04_AOiȮB;K""""""jAa aR4,5m/""# Ű/+b<' /.?}}_!әl"$ Y2D%DH#/dL.f$*! BlQlb2p&Q`h6!?"$3yz6 he/++a lB"WXBp\ ?|DDL_\"bHD">(MUA*x8w2-a.;$󰨄 +s!K +8NaH}]T@otI:N琿;^M8G.t2HBe8^ (L abΆf]k5"+A0[ @z% Ţ\ȶM"FA>r KII6`o^ +]~_ą|%h_]{u_o.} _a/j ~!/K_>_^oA~+߿_/PF_M5OMmWo/'M~6a?]P@M4I҆Ol' [{aaaa(ذL q~K_~(h4!  +^_д"""!5aAia `1Zmvv W\!kb#`]KU: q""Al "@3 l4DD)?b\"6l/ +ix|e94#ܼDZ3C0Fݡ\9  + K$D +dB$I +ࠨ?'!@Aw֙ iImB* TO"}[M4E&zM׮I8f~A Q(@ȩ2`3RB A0@a0p(Ak`KމsD spd[@-&"m& ܂sA>knT4^ZOBi}l4Sa?ץ[_ //-?\W\+ j|Bp-~?P&n@1ACBg!cĄPIJ߯G?/ oE_k#WZ[k{Uw SUյWݧh;I?kP @cP0NNIInml'[iA &lPALTlC@ؿ:_~X[A`H[iuqhDDӂ#0` ?Km+m/` %!a% kb8a}Rk#XKux_GPٿ$  +DDH2YX:| EqervZЈnI427n)l9#ƺ-8 Fp5}Do:fy C\ ЈK D`/_h8?,m;y *qD"KxA >VJOz O u^IZ~63f:j R a2tf2o &0A0PZTAa0\D|"JD?dHAZM&v7}.0IoJVt?pKIg/&u}'?I7__}~?_%^+GKM_)BCW]/oC/?ߠ^oI$.%tu]/E=mm{_A}$SM6mva+9 ڤP~000Aa m&) l0OK &5A'"52u~,0M5I}"CUu` :B>0i|DDDGMد 0KbN˲O \DG_ jk) `e':o0A>1O\Hs9{T&"&G +Fx)3N^"M2.gE_ܬe 0pQM(E؞v12J  e& a /]?7]+^p]&bMDBR L6LIҦEL   + XTDJD<a4uH M`h?[zA6o`fZO&^m['f!:3P2@HȁZ]'IJ \(LP'aҿ}7KhCDn +? Al$Kh?I['mIdHz !=I!l'Va%T]tA۪./u/Iu脘_J$!\'KKK](7/;%LX#wߥ/}"zoz+[[izatn޿HK鄯I?ۭ/}.Ki鶗z]륤PIa 0NMmM[I? /ih4AlP@ؠ8`AڶZ m'K8a[J-vkDDDC 0azmVXAi6DDDFՆa&Ia&K&b[0 kV" '~; /㈈#$o6A A;;i?DDhr o;k?rt NΜ?ܿnZʰ`xf"%C11 , 9^"%ȸ̼H2\?qFdI᰼\ "'jQ"&#%b5iGAbB /蟵(A +K e|8|T*> *h$}zu~OiiRKK&NG<٠d!3֗G4p 0A dp!/U/KO_[7K'W~$z _۶_4J]{ +iimm$Aa0 A && %;_V =C#߄ "|(p ׆_5b _XO%$/I,qI_l!nCCfD*A<54[%2 dvsd_' +f4. DI43dm3bPiS͍×#L G";)f vY#p2B""d;A?i&e$LbA0AS ; iAÇh?EE%P/0D"VJ a24l*%DN_M pt 'طD]6Ҵ) .t#L.u_I  ¦lAk/#v… ~^AQ?~V aM!INatC׫>ž]7]}]|%|?bΠ_Z_m_N%O_/u޿7_^/AwotKエmmvH[֝}a0M4;I5l&_$h4 l0H qmI_COIvԢm{K"""O +N l4Mm$imDDDGaV-Y (&Ki aD105q ׬q}-KKiDž_ JDnXc r,w>9RpC=B P"""$ɠ\Sܛ: +e}IN `!h2/-B/g DDNc!46f""v&_6 + +G""Vv''2"A&c ^a8t!| ẇȣ5ZWH< +pv& Ij]KAKws ni" Q^u " D2DA"AD}?B``0MD蕆4GT $A d$A/'`:MoM?OI?U]~z  #O<~{?bx65 +o΁ 0|W{B_+??O7 -+ݿ_O!ija{m+Z׭";ӻJյ|.IlH of +7C uQ0 ě ئ6 [ d=V[K$6" 0A 0Aմ\%DDkAI hm\h SKa_0A ޿#'rv_f?8rܛNH-XBV!dDH-;~&泮<CPq×ˁ0)/ι!/-o^^6qKrX˲0843,؇Q6z D:;d?nM[%mh!d$EEvH6apۃi@>$zz6II ou][1Z`W~_,0~00 ?,87'77OQ>r'G+ҿKz[oJizK[ 80N $OM q AC<! "" 5/\`N$2A'2dWW#<5 "$ BAm5"%8C 0 +"$؜u`Ja-ˁ05M2ZdgXRl+gj#AKdDJcH;ZdE-ג +0`]B@;.D3*; `!vK;ᒒ$/7@*?.hpz & H6mAO'|/\I鴝'T y ZV6i7Ͱ "d<Md;؃6( ؆`Ai%izaW!cm(d,{(67DDDD0L%PGCam0i]$TK""""#+aaA.VMحb. [ 0Ip b`8`#ٕ8 ` /]IK_S̓!C<Z"Al6A47H Baf%s![ϋKrH3A?z(l)a&_< ` j@ ՟H%0W#xap&ML2G 2? 2#;%7[ 6 V+%‘Pػ{u@7pMEG}+mXxAKhtK%oo߾?AoA6 wJoIE?q}}_}'kz׭zD]u~yKJM a?QeX7o ooitKޛiKK]/K]/KJuuIX%xK iuSB!l$©8 a +BR!^7W + AB@ Dk뮗D0PP0U7iZ_ϡ&j]i ]~#[ %M!a)  -0\p8h0]/=29 CvƿDHd%j$2 s;8رɟD؎O9oy03LeWOoy,s?q(˳bdg@0%K"W)2s`m "[.3f'M"ܳ:JL20 ?'AY$?N̨VvPۄGo +JA_ނ [K'N{I-oIWkIbI/DCO.Km|C~i[ /ıH_ ~a/TOz$ _KK_Ai}.]įOm/`\H1l0Kk!~/p^">K?"6H vC~""C$l'f1ir"DH-r +2 ρ2Ж N +e +4oV_3\ l +aDKuc82J+g28}"_83f3\O"""g^$((/0 {_" +ػ@X!'KKD0 & /A V.h /m'@i :3omi7K  y 9՜ ZZNF…C Aj]][KD(5 VZto;h l$t`&i-/ +}7TOOm~hKޓ_?M_!"_TDY___/o߮Wn_~at_4K_IAi l;߭h6(&8^ &KT!"\{Poo" a0A MKMA;KlS %l0Nb+bp0\G ' /qkz/i׿ +nEf[5/[ ,ͳCpnG; B[6G1oDPϑJ 0)o""[r=xc\Ι6]V)Orf'N%VL_$((/ _`;?߿̨;`" 8 "XȘ< aW&7V%l7Al*f_ȡMٟ d6l@`.0S^~޾6L'( &0D!OO6%xah?V0AZ ޓ-&zz_?KIAuW/T |WK߇ 'u/oDN֗_@(oﮗ_믯~[JJ۫0]_^榿4TT2 imSI0a]n&4 Ba`0L &jH_""""#JmSm+t[KiZ![% 'k v+!pa; ) ]=u ֿ-/i@2&.HdHP)9eTfיsSg qrlS.́,2.f4GOЈ\ `\F!MkF JL0\@)}DJ?v? '>vD(JBgd_p@UO"%0_l"RIDAi\HόE L-]a `MdQP`0oDwDŢ|AI&_ Oa:OtN=?Pkv!<AH< WB_WMZү}/_W_pl.k `lXM[C FۯX &pv!DDDDD'I6HawV]+bA ak\p'\GK_i/şĆH5 Hd-g\h$!<³S/0m>d83?""["/P̸l:IDJ,((KY.|kDQ6{B[xןf' $\;I?&UYC&/D +& _< 'h7z%6;C/Zj๖BH z9)BtX@@9Z KXOf"3 c-Dp'L'82a %l!tzM7 ~}պH8? IdH_oAo/m^l/oJ^xAIz&W]q$J?? k 6 k` }+䡃}W Vd?Mlo_]WMa \8ijba 8a AmbIaWA@O""&DD!K# %1 2ca?}y0"C$=i!VEf4NAl7ܗ+f_3P2/#(/wDJ@\ˆp%/DJ`Ģ+gP.`S"3y!DD]2JFv? (LYa khDgAb%fKD_H6eY&Fi7ːPa <.t"C&DzMi6 (O? +<20AuD$>{Z%m "7z% &~뭥zI_A H7a ńK)t·KIȑIl2?}Uma=7._ KImMi{{~u K^˓QKKujU\?WBF*,7#wm]7׿ /"$꿻E[iwA/u[v_~ݥJKm}J"MMla{յ /i^6( 8a 'i+ %jKZu52ȏM6) l0A/ L&amaدAdmDDDD0@0#[&t"""#߶oa$[^  k >_;@+6/! +^/ s9џ#@PG qNfD`p%A}o%C`m 7Į 9+06Wȅ#A/D'_r@l ̧) > +"2;v 8`^@s #PH7 5o* +Pd@d$<< dpGl7vk:nh&rZY"#;#vAm~-nu5]|;[w{3n/4}yc_}}nnXzr]_|q_vWۭׄ׵z_T~[K^oս%qZ\U__}Ji7K9K Et?JrSi;>^t 9-k}۽GZ>u'~ohm'M/-AY}~?~{]V޿_{i{^O~ -~Jvi}8]0ߥ{AA06iI[ 00 ! 4ivL ߤa0A#pf^ +o""""""?<4܂A''|DDH܈YΙ-"$2A"&,b"C 3jt"W1Ǚs q! M""W32Dxd0m䜜q+p%aFOKrnl @čsVtN"75f٭L $CAN_Av*)(P?#pS a +,xDna?Mo@aX'Gȗ,@Y s3N oII0P(&ni6,,~}j^N:iZW pȶ:iӿ_OtWRsOu}KK_kaWmW/^_L=[zT0aat#0O /EӰmI%Kt a$C$R_V5kl0B ~lR 'V\G ' &"KKi r$k!\BAL "$2Cdf\7~Y263ٰ%s/Y8"[ΆG"W "qe3kS)%QS0Sbq"#6?248P/ iNS dKAaA}}faCxg):Tdal/N`(A0 H07>~ֈhF(MB (A? +i7h n47"@qr>X&ƭh+Epi6 *A~ A{ХӰ$ '4zۦzע<>ca_]%_=h(bׄm}2pҿl20?M_JM_0`0!-_WPG<:/wpmt~M0{_ݽtַi~Em]JCۿ -]/ImRc +V;V]i6i+kP0C 6!bv $iAVI}V)D ؠbA 0Ař aP#>[SB Z mD/ 0AAkvx-D#X5I;PG@t΢Az^4ӢTnAMSta7>_N,j_J%FzoJtQJת[ta߽-*]Z].!/=-'C*۰t{!WAmuU]3PZU/oKDF ->%@kI;}M^߿n\}w>t{_zoo2?{{{ ?u?-ք=v?뤚^ mi>ݴm*'O֕m[t*m#69;/ &n+W &M>/&E -|'t#@ +endstream +endobj +20 0 obj +<< /Length 7369 >> +stream +BT +3 Tr +0.00 Tc +/F3 10.5 Tf +1 0 0 1 275.76 752.88 Tm +<5052455320> Tj +/F3 11.5 Tf +1 0 0 1 308.16 752.64 Tm +<4944454E> Tj +/F3 12.5 Tf +1 0 0 1 239.76 740.64 Tm +<52455055424C494B20> Tj +/F3 11.0 Tf +1 0 0 1 305.52 739.92 Tm +<544E444F4E45534941> Tj +/F3 19.0 Tf +1 0 0 1 290.64 723.60 Tm +<2D332D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 122.40 693.36 Tm +<5A415420> Tj +/F3 12.0 Tf +1 0 0 1 150.00 693.36 Tm +<50454E43454D4152> Tj +0.00 Tc +1 0 0 1 393.12 692.88 Tm +<54434C502D41> Tj +0.00 Tc +1 0 0 1 470.16 692.64 Tm +<54434C502D42> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 162.96 666.24 Tm +<53617475616E20> Tj +/F3 12.5 Tf +1 0 0 1 210.00 666.72 Tm +<28626572617420> Tj +1 0 0 1 247.68 666.24 Tm +<6B6572696E6729> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 396.48 666.24 Tm +<286D652F4C29> Tj +0.00 Tc +/F3 14.5 Tf +1 0 0 1 473.76 666.00 Tm +<286D656C4C6C> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.88 639.84 Tm +<48656B73616B6C6F726F627574616469656E61> Tj +0.00 Tc +1 0 0 1 405.60 639.12 Tm +<6F2C3138> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 483.36 638.88 Tm +<30> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 491.28 636.96 Tm +<2C> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 494.64 638.88 Tm +<3033> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.88 618.96 Tm +<4D6574696C20> Tj +/F3 13.5 Tf +1 0 0 1 107.28 618.96 Tm +<6574696C20> Tj +/F3 13.0 Tf +1 0 0 1 129.12 618.96 Tm +<6B65746F6E> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 407.52 618.24 Tm +<383030> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 486.72 618.24 Tm +<313030> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 74.88 598.32 Tm +<4E6974726F62656E7A656E61> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 415.20 597.60 Tm +<38> Tj +0.00 Tc +/F3 7.0 Tf +1 0 0 1 494.16 597.36 Tm +<31> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 74.88 577.68 Tm +<46656E6F6C20> Tj +/F3 13.0 Tf +1 0 0 1 110.88 577.68 Tm +<28746F74616C2C20> Tj +1 0 0 1 147.84 577.44 Tm +<6E6F6E2D74657268616C6F67656E61736929> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.36 576.72 Tm +<3536> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 492.72 576.48 Tm +<37> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 75.12 556.80 Tm +<53746972656E61> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 414.96 555.84 Tm +<36> Tj +0.00 Tc +/F3 6.5 Tf +1 0 0 1 494.16 555.84 Tm +<31> Tj +0.00 Tc +/F3 9.5 Tf +1 0 0 1 76.32 536.16 Tm +<312C20> Tj +1 0 0 1 87.36 536.16 Tm +<312C20> Tj +/F3 13.0 Tf +1 0 0 1 98.64 535.92 Tm +<312C322D54657472616B6C6F726F6574616E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.12 535.20 Tm +<3430> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 492.48 534.96 Tm +<34> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 76.32 515.28 Tm +<312C312C322C322D54657472616B6C6F726F6574616E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 409.44 514.32 Tm +<352C32> Tj +0.00 Tc +1 0 0 1 483.12 514.32 Tm +<6F2C3635> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.16 494.88 Tm +<54657472616B6C6F726F6574656E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 411.36 493.92 Tm +<3230> Tj +0.00 Tc +1 0 0 1 486.96 493.68 Tm +<322C35> Tj +0.00 Tc +1 0 0 1 74.16 474.00 Tm +<546F6C75656E61> Tj +0.00 Tc +/F3 15.0 Tf +1 0 0 1 407.52 473.04 Tm +<32746F> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 488.88 473.04 Tm +<3335> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.16 453.60 Tm +<5472696B6C6F726F6220> Tj +/F3 12.0 Tf +1 0 0 1 128.64 453.36 Tm +<656E7A656E6120> Tj +1 0 0 1 173.04 453.36 Tm +<28746F74616C29> Tj +0.00 Tc +/F3 14.5 Tf +1 0 0 1 412.56 452.64 Tm +<7432> Tj +0.00 Tc +/F3 6.5 Tf +1 0 0 1 488.40 452.40 Tm +<31> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 498.24 452.40 Tm +<35> Tj +0.00 Tc +/F3 10.0 Tf +1 0 0 1 76.32 432.72 Tm +<312C3120> Tj +/F3 8.0 Tf +1 0 0 1 93.60 430.80 Tm +<2C20> Tj +/F3 13.0 Tf +1 0 0 1 98.40 432.72 Tm +<312D5472696B6C6F726F6574616E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 408.96 431.76 Tm +<313230> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 490.08 431.76 Tm +<3135> Tj +0.00 Tc +/F3 10.0 Tf +1 0 0 1 76.08 412.08 Tm +<312C3120> Tj +/F3 13.0 Tf +1 0 0 1 93.60 410.16 Tm +<2C322D5472696B6C6F726F6574616E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 408.96 411.36 Tm +<342C38> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 486.72 410.88 Tm +<30> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 497.76 410.88 Tm +<36> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 73.92 391.20 Tm +<5472696B6C6F726F6574656E61> Tj +0.00 Tc +/F3 10.5 Tf +1 0 0 1 414.96 390.24 Tm +<32> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 482.88 390.00 Tm +<6F2C3235> Tj +0.00 Tc +1 0 0 1 74.64 370.56 Tm +<322C342C532D54726C6B6C6F726F66656E6F6C> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 405.12 369.60 Tm +<31363030> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 485.28 369.36 Tm +<323030> Tj +0.00 Tc +1 0 0 1 74.64 349.92 Tm +<322C342C362D5472696B6C6F726F66656E6F6C> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 414.72 348.72 Tm +<38> Tj +0.00 Tc +/F3 6.5 Tf +1 0 0 1 493.92 348.72 Tm +<31> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 74.16 329.04 Tm +<56696E696C20> Tj +/F3 13.5 Tf +1 0 0 1 105.12 328.80 Tm +<6B6C6F72696461> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 409.44 327.84 Tm +<6F2C7232> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 482.88 327.60 Tm +<302C303135> Tj +0.00 Tc +1 0 0 1 74.64 308.40 Tm +<4B73696C656E6120> Tj +/F3 12.0 Tf +1 0 0 1 121.44 308.40 Tm +<28746F74616C29> Tj +0.00 Tc +1 0 0 1 412.80 307.44 Tm +<313530> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 492.48 307.20 Tm +<3235> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 266.16 287.28 Tm +<504553544953494441> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 73.92 267.12 Tm +<416C6472696E20> Tj +/F3 12.0 Tf +1 0 0 1 114.00 268.32 Tm +<2B20> Tj +/F3 13.5 Tf +1 0 0 1 124.80 266.88 Tm +<6469656C6472696E> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 401.52 265.92 Tm +<302C303039> Tj +0.00 Tc +1 0 0 1 475.44 265.68 Tm +<302C30303135> Tj +0.00 Tc +/F3 14.5 Tf +1 0 0 1 74.40 246.48 Tm +<4444542B4444442B444445> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 408.96 245.28 Tm +<30> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 416.88 243.36 Tm +<2C> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 420.48 245.28 Tm +<33> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 482.88 245.04 Tm +<302C3035> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.40 225.60 Tm +<322C342D44> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 414.48 224.64 Tm +<39> Tj +0.00 Tc +1 0 0 1 487.92 224.40 Tm +<312C35> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.40 205.44 Tm +<4B6C6F7264616E61> Tj +0.00 Tc +1 0 0 1 405.12 204.24 Tm +<6F2C3036> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 482.88 204.00 Tm +<302C3031> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.40 184.80 Tm +<48657074616B6C6F72> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 405.12 183.60 Tm +<6F2C7232> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 479.04 183.36 Tm +<302C303135> Tj +0.00 Tc +1 0 0 1 74.40 163.92 Tm +<4C696E64616E61> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 408.96 162.72 Tm +<30> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 416.88 160.80 Tm +<2C> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 420.24 162.72 Tm +<36> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 486.48 162.48 Tm +<30> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 494.40 160.56 Tm +<2C> Tj +0.00 Tc +/F3 7.0 Tf +1 0 0 1 499.20 162.48 Tm +<31> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 74.40 143.28 Tm +<4D65746F6B73696B6C6F72> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 414.48 142.08 Tm +<36> Tj +0.00 Tc +/F3 6.5 Tf +1 0 0 1 493.68 141.84 Tm +<31> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 74.40 122.88 Tm +<50656E74616B6C6F726F66656E6F6C> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 408.96 121.44 Tm +<32> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 416.88 119.52 Tm +<2C> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 420.48 121.44 Tm +<37> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 482.88 121.20 Tm +<302C3435> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 222.96 101.52 Tm +<504152414D4554455220> Tj +/F3 12.5 Tf +1 0 0 1 303.12 101.04 Tm +<54414D424148414E> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 74.40 81.36 Tm +<456E6472696E> Tj +0.00 Tc +/F3 15.5 Tf +1 0 0 1 405.12 80.16 Tm +<6F2C6C32> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 482.88 79.92 Tm +<6F2C6F32> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 42.00 26.88 Tm +<534B20> Tj +/F3 11.5 Tf +1 0 0 1 65.52 26.88 Tm +<4E6F20> Tj +/F3 10.5 Tf +1 0 0 1 83.76 26.40 Tm +<30362D7334333720> Tj +/F3 11.0 Tf +1 0 0 1 125.76 26.40 Tm +<41> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 398.16 54.00 Tm +<48656B73616B6C6F726F62656E7A656E61> Tj +ET + +endstream +endobj +21 0 obj +<< /Length 22 0 R >> +stream +PRES IDENREPUBLIK TNDONESIA-3- +ZAT PENCEMAR +TCLP-A +TCLP-B +Satuan (berat kering) +(me/L) +(melLl +Heksaklorobutadiena +o,18 +0 +, +03 +Metil etil keton +800 +100 +Nitrobenzena +8 +1 +Fenol (total, non-terhalogenasi) +56 +7 +Stirena +6 +1 +1, 1, 1,2-Tetrakloroetana +40 +4 +1,1,2,2-Tetrakloroetana +5,2 +o,65 +Tetrakloroetena +20 +2,5 +Toluena +2to +35 +Triklorob enzena (total) +t2 +1 +5 +1,1 , 1-Trikloroetana +120 +15 +1,1 ,2-Trikloroetana +4,8 +0 +6 +Trikloroetena +2 +o,25 +2,4,S-Trlklorofenol +1600 +200 +2,4,6-Triklorofenol +8 +1 +Vinil klorida +o,r2 +0,015 +Ksilena (total) +150 +25 +PESTISIDA +Aldrin + dieldrin +0,009 +0,0015 +DDT+DDD+DDE +0 +, +3 +0,05 +2,4-D +9 +1,5 +Klordana +o,06 +0,01 +Heptaklor +o,r2 +0,015 +Lindana +0 +, +6 +0 +, +1 +Metoksiklor +6 +1 +Pentaklorofenol +2 +, +7 +0,45 +PARAMETER TAMBAHAN +Endrin +o,l2 +o,o2 +SK No 06-s437 A +Heksaklorobenzena + +endstream +endobj +22 0 obj +781 +endobj +23 0 obj +<< /Length 27 >> +stream +% CANON_PFINF_TYPE0_TEXTON + +endstream +endobj +24 0 obj +<< /Length 45 >> +stream +q +612.72 0 0 938.16 0.00 0.00 cm +/Obj19 Do +Q + +endstream +endobj +25 0 obj +<< +/Type /Page +/MediaBox [ 0 0 612.72 938.16 ] +/Parent 3 0 R +/Resources << /Font << /F3 6 0 R >> +/XObject << /Obj19 19 0 R >> +/Subtype 21 0 R +/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> +/Contents [ 23 0 R 24 0 R 20 0 R ] +>> +endobj +3 0 obj +<< +/Kids [ 11 0 R 18 0 R 25 0 R ] +/Count 3 +/Type /Pages +>> +endobj +xref +0 1 +0000000000 65535 f +3 1 +0000106364 00000 n +19 7 +0000070512 00000 n +0000097656 00000 n +0000105078 00000 n +0000105915 00000 n +0000105936 00000 n +0000106014 00000 n +0000106110 00000 n +trailer +<< +/Size 26 +/Info 1 0 R +/Root 2 0 R +/Prev 70152 +/ID [<11e1f0b02274d0a309e62ac4b1626db4><11e1f0b02274d0a309e62ac4b1626db4>] +>> +startxref +106443 +%%EOF +26 0 obj +<< /Type /XObject /Subtype /Image /Name /Obj26 /Width 2544 /Height 3894 +/BitsPerComponent 1 /ColorSpace /DeviceGray +/Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 2544 >> /Length 25128 >> +stream +گN7l,5ýA7b;VO;5L}r*@J1 +KAAΨarCn( όl8Z b=@  Nizʝ8 ĔC=YHD# ;Se?S6wL?XQAņ/㰣Feon޻pr0@R'`5!0,#p\nA TKIaZ@Rq肣D3;K]@0 h+K j55) ְt d 酂Z8˪D45En|v)ԅk--#+ kP(T`(/atN8頶Z +o0K"#P%I*V@5 D,cJ:  3d $`6hoU?&K6fa+wj-piAS۬U"pDxH $!!$C+ DpA8alt%7b$3 E4aE@40ˈ ރ,0=%A+ G 0 + +fRR(Bm A-3A0zI n)0& ä RټcTʜt ᠑-qnP `4 ia%>>a*2~FFsFE&ܑ7w}W}w 5SM?xˆ"uR)@ɪo]a|?{쨾z|} \z; &P*DF""?>[Ge(jI9k#2%NuȈ&Nf``NZ.xdᲉ3 +a Mep.PaU v0Dk.FiȪ7?W#@dO]7|5хkiwL;^}}kߦw}[8}a_~~ȃ=%{ Ӈmthog*HrNw~  yᏵI(#'{o[wJ7$7[m]7׿ -r[e΢Z=[yr)ۿBېЋ0[N . 9Z'!1Ax#`0b +%DDDF"kDDct'_Z֋}z zUz^rب? ~[.CkX5ā3HIJc2 BSZH2D+H7.e [G d_&Q e$7pvp$3eNφHj3aF"vXa &2 'cAr/aNԳ0 p. ڈ2Csw\l2C0dџ HevC0E$>"EDlHh"v(3x2DP[W-%f#TBCІeɈ#iBu "27%oFB1s3)IPXm; l6 0(gXJ|;H pdX?$o>u6a_e-'"_X&wooKmw[cy?U|JKV%!?ksVENI:z/,/]zZ C O"/vcwa GnPOg{u[(D3ЇNC@ٰ>ЯtKKz HMQ|).W";#z0U%?v4|AdM,~IC^_[۶?_XWM/=OI'_v'{.wg4 /Ko'ߪZ -%uM5.a,%> ,3ypZ ~0B0vBL/Ko $""PO0+l-Z AiR7`A/EU?I!Q DDk zZ]}Zkaij إ Z0( ii.a}dcz XK PCN/%0# +DFlr#6 x%CY_%3 S12$ 4v( p_1ɸB3 83'aĀq@d1̻D1 $6E;+g d4q2C4;d'RFap0!d|H4- "t+~'@`4 1PA s Ak/i7 7Z%0[L(A `3A H? H7r'4OZ  'xKINr /H8FM#nwǥit;m' p& Db^1MN ~ d*:L6%kIv6 C&bi\IK*uH77oխ/w7o %|WJ&IMh?^y޿M0 oz΀n'?n}KD__z4D /^_o_^Mmkk^/6(w [ 5n_I,zMpmUm$A:pզA a0a a(a+ zIZWDp  )E1A[ -_A""  <0ЃI 4 DDAa5LlA?IxNA!=7 ?5OGҷmJ+]%m]a+l%Z_[jP{Xavi80[ .;d0v_ v\0O  D<6J/0$ԁo#sQ/<3 !Y#@ R ÙDN3@'cA\2BD"( DDĻ0 \;!3ˉ-cH)-ql2@&$4_,Ɍf!Nd!{[H2ɰ@ yHdu<]ng_ +Pe +w3 d{&F'A!*_? +<sp%/ODLa0 Ny.Mi@h40A@0A!IS ?i}+ =cI"8aBa2/-tȑIA7҅Ip[p^ +c^Sj'̐'z}pzo?T%T?D? _I\W`K6X/Mo6@J/.tD.}}w?n޽@D[_׵}vK+/ +n=Kw_ A;^A $+tJ_A/2Ha  a݄Dp |Dbr& V) 0_A"" !(=a6/ :1 0L'CCD~o{2a?l% 00m#د _RU@_<*^"mQ޹@l'cl70e̽-HdwXdIΣ + +(@s'3?C +aߋP"

    20?~4KuA7xh( I}7)/֓|%.?_}WGO_o%Kv'j0k_$Uaik_a0b(L/C<=q~" 3(}DI?w;Un,V_'_a I A_CQ2<#kC[ADD[Pkc'3NxR jڼdv. a'jȸ-; +G +\2Cl{ph." p 2@s';1# $D5xd c=-#BH/PS<~'|). DAH2gAXHf 3e J` ov,6x)ڷ#bO,aquw8FMB?CD(._0@7HQ,m"PPO*H hO%mzI^נ?6 oDvQJ% AKko?{%`@(K '?Π}< B0mgD+]]9DYi m_~>n|}xK_]ZM״]I 0H J[mmu~)4ł TC #@l^=2@d=Aj-DDG2uk"׮vio%_حZ`Ҷ;l4lW0¿h^@mKā^}/ $)՟۲nCc<r6]a|Dg-KgD"`d!}J\` H6 -ٟ;(l_'b`dѱfΡ diK;0!o3 f=;3 m.-+f^. |DՓH4ؙ ? l^dP cW[3 dɏJe_<͆H6DN ?x)-rCD&Ď ߄  ˂%,駡gbLׄO" +v][I~XKJ?mziڤoZ-[N=_]_[K-}K@XR8! (maf9d+2 /-uH=/Ġ~`i &Io$۠"9*LoanĈW`ߺ maGi|,/!X_O`߿$pM}fAP ,?6_~ҿO@Au)_ۯo*K_ !&}KYJoi]ڤa>]*MaXAH i-._=_E0էA^;KT/%=mj[ko/lBXaw285<$ +T+l`D#0[ mO22AA5K'k! xfU$eWJ^Tg$ Ev]NC$ +f9p DN#Ldrs6~"v_1 0'a +|L!NF"_MDK$~"v# 2[v `@JyE0P\2I(.\Rp=Dn(.C j(}/^1 p1v0LMQ"!zaT& @faQMWI- XqPPh2qB >6 x,K}XdKa`OOvt7п#Īz޺"ƿɨ(W`_n'?WD,k\R#^H/y^]^_붾톗i-lI]p}C6*6!r QN$0lCL'C aah5. ") ЃMTDi>^ b(0QC"Է UOk.t>\OJ0S[ +PdJdffK;O<()3a05 a}pB}B s PA$ixL"7z @<3znw@Dp a΁;-D$,qh0d20#3̆Ji; ~CDExAA@0 dA&~E XL*(A aMO!9]N46td>9 CDƉsBi2q!NB?u2T<}ԼW~AOxm … a +j ?/1:l&l-d'pOE T&a<a:Au|>_ai72$q'$0`xP(L R\/=(p_]}S '!? xvTp8b5D^%= y~:M Ļh?!  -Znσx7P#u4 Aa +jj?~#~/zow$KPP0h5M/x~'?J=oN} I%ma0U<3<)!Ȝc)~goo!o)D_$7Ap:%4J`c'u}W } /WJ^6t7\0A0@k!o~:"5/_/V'Ļh %pp012r6GD2 uKAz:_t;~`& +nY& d5_ֽ/_.57IOO_ivTh04"i / u;/!_`ůzozMQJ" O '"@aMlazaU/@ zsb'@ע,?bi + a+/CJ9_ {$zokMӟ:t? NA a6!akHI}/#p!cX0 e@]VV$_MAV +NZ.P\XT>Zia0E1 &MXa&a%zU7 ߄B U{15' +Md=MH"C0R V~n須!_uR`'N & %iz _׮I|q 4]1'0b{a=7 vz (uI*K`TO"!iA2G qa0?{z{}/KAxa-i :D0Agb`A,8hp{ +C].KЅDDDpwlI0@l]0ujakڪR a .z x 0b 6հ{ Éuׯ DD5+A LSTo}G]$]CMTDDC0aWJVѶiWb""F 6$܈08d!ՅB +Wb"FA }$0$Ūl[KS*WIDDC&a2 V7i:WYK^!.;~Ц+Xa&MVF  +⢙=&%Nm& +HAM1LWH:@A +0A_ӿIM Z; S %~;NK:W;.0R2a1-00Q C(tk vw&|k{Y8R6YT? +? + tSӃ%'  Aa!N_)S;zA\ Bx&fAyIdXȜM|"_¡a8<eXSFd~Pa ? 8!)TG;þ-'I'ᐜBE֘PB00D&1|b n+O& L`?qh„ 0A՞>)A.}um ܂u(aSPhwPSr__ֽ{NABsAذ"X 0A8@{&Z~Ү && $PA`!xDQLr-:.߽k­& %GGo  6 0_J.i?:L):PAd Aa` $!PO_:~WA4O#4 ((A 8wDs"g'%2-)8d/6hEVL0>fR@gDtk5?*ta:N!87;a0A! u]艟oWz݄6"A.>oߢG"gK _Wik{m +N0A?M%sP":~_ڔT?TU ~6#/Z zzuP {uZ__ "9I#P/~-IU;a}}u=}H/W_`ijW?K@(a.kH"p xm+_}{`I_` 셋!P !_fՅ?zp'4 0˰☆0A 8KXz *0$'׳Lwm1`AiaV𿫅Ik{@w`_GaaI ڮ__=~ @ -4`0_AZM/gErV"(o /a G ؆ě +^_upu߷"@DGQj'd,Za5`fI[_L?RH6"(AA8r')Um[ ~W_ a ӗN@eaO׵UU^q`. /b0Z ] + ZH a4 Dp؆ ;K'DA\ |2A p|3aTS %"" , dG ☶/0gm% A,+ ib""P#D0LSk0MK5ma,DDb Rq *<_yAҏ[Av$9(ЂdlfBh.fdW 0!2#LiN+$v'0wppPChIh2T ;u!2(CBa f#}vlpoUL!DHvz 7m2Ha!P"H|"}~Ch0#@aawxD /6szտoovAoay:1;{jNA0o٬*m60%?zm öp_KK;0IäXc{~\NKV{tKҳ0X?_%~M>.~}.8PR8}_{/_Ws߅Ka|OX?߇OP?C`ߚ: ~='im_=a`zǷ^"zM_ԗW /o5߷7^}--?oh7o -o^c9%amW\._߾ﺦ,70A .Z[K_.o^KoҸzg nl4~<x &Ƙ%`m}D#] 4]]֕DHٻX` +0Ai CK +@a ^P#{ LP@Cm$"", AP@ DAکz|DDAJ* lz_ׄCA# `8d'u'~]-^<0[0an>Ӳ [QMSDa '6NaI m0! 08a=$I;&CA 2/_I7xm m}[I]nIk^Kom&z[wMWWz_toﷷf7$_?_,w_m-M|T޿ߦ/߶.om}?um/j_Iީ---km&i?]ZVH0 ; 0Z؄  *tJXWa^Bm% )MW#gja&D DDD=bDH0PA`@sSC@+ډ:Aݫ +W+Bu}o/߃)tC 2D|3pAA DWzL aƄ.DPEc  fFF4!7e +<g)80'd?R \GmP +a ՞#~OxA"2qB `aP +NDhï{64K#ᧂIӥa7 @Yu:+,M DXdž_ӫռmpN=R_ӽ%ɸ9`Ɛ`_u_D%aa{* <7c5~B__KD A`VD_y@ 0ïK ~D,|0M@0R# . o;$xaD,l4\/Z׶*,DYP˂&Ei@ alZk m+[ imI; p`4 _%0ObbHvŦ +Jҿ`N4 + B lPL&F ~oո0D@v{ 8`cj1f ψ046A,N N""" !g.a;᧨w "@Bt$y@J}' #h) """#L&a9+XaEAWEaGܘsAqd(ȮCFp4B Rpg2 fSCwi;Wds8!tmGd~m] 27Іd2i+Kn; CaK?eEŚ[|-$prA*%Y ?ޮ&- I )8: eNa|߽~'ü,7%ᑹj`hJ + zZ~yOK&b!NKǿ4ۭþl @OO~ޝo~ j?>_=O^o~iܱ߶cKޕ+zu{{ ƿ~tzZO륯coIqo__ڏ?.~Ǯ_^WE׷ ޺WI?t/0t ?N+_WNo^azV{d< +Gǫo3{Ȯ* +~K} ヌ%Mbq\R'$M>]_W_tߪ]A ~WimOg/޽z[߯M#mxOׯ]۫/JYy)@0B+].[wmx@A4&޶uޗOPh`a꯷z_}Iqi7 & wmuҵ{p{DEU4$ 0`ڷo""""]  &jګEai@6^gk mxg bN 6!DDD0ӈ@Jˡ#A"{ R a?@` ’LJϐȶ SA +0768L/PD)&̨R۠{h4A 8a gaF~d#aӄGgAndh lK*: Oi7xwiwۖ~{~M3_ X^ ~W_Km|/ |B~nq_JI߅$~ WJ~z]~}?ooOO~o ^poޗD,o}K[o/]uIia}t[5ki])0I{nJ߿A ӆ 6׆g (Z ` )Wa2*_A0`= +U=mB R Aq# +gH4qNdhaC"᰼jdŐ1H!8' È,290`epDH7pވA\70l a^{$vJk]|c`x+QS ) Bp<3A@PHj%n+ fߐx`m'& aNR0A%=5(AAS΂!#O&B Sq5.^ݡC(A„1J!gR=FA-$00x( a3>|dU>%ڤd$-?qYw +`au`š"507Iv^ 'H:A&8>ua$v a$MiQ'4A6ޚ4m5H%lD5)0%;Aatl]!~K_T܌D^ICm} iYoҲnb)(@ضoI ۤB-Akm.&+dC#amR +FDm%Mm솇 ol%sozJETH a[ݷHFxnpTU 66I%mIj)# +mI'I joan%KKWwEU܇~ޚ DMd$[VIԁ +W؄AN4 sClT$P(Y+a+oI7 'nA+޶E]@tȥaf-OBm$71p/c][à.ӑ ^\5 av~$' \4֓mXoD᣺TEC}gz) S~Dޕ- =jW m]+iޖM]ۅ $7v7ZiYqbJpmT5Eo0 +~Q -}u $oqTjM(sFoA&m6m$&}(틙T +I%(3)1᭷ݶ0MנGE>/@J!5H\H;o*+ ` z0i*cDݾ&nmUmd#ǠA= ݧ;mH@#f'V;]nu/+BM +Cm՝>=/V\wﴶsRTSՓ_d(=pq{:}w omo bU03xz;,ͶJKAEv"Pvp6Y0 +ma{GS)݋b^(,Bc{с)KUA>dﰈ& HaL,f:oO' +@0.|ҿ_L6}G wh]+dc{{X!7X7 /U T,ɽ@_j0:nj ;Ҡ^MK.> =pɰUQexAҐ 릝˦CCK`\~չ6pZ0  0A>[ ݶ+N XuLȘ5|?p2 rq؉\ٕADŽZikI-W~xek;P2`uz\0Q Y,Pb_%b^AL&v_m ?X(;e` m}bu%'Zd2As6D^Dx"HhTjK_]>_ރ 5A⼗v7};T~Kl%]{]oUia7A/@ޞAtkMHtփڿ__|*M_aaA;ikKQ~vpVhN?{y=Gi6nI?ƾo`κz`w:}6k{ 'CEO?ARR _|Ӡ$cG;H>]i.ҽ 6Xv'N44;%{Pk)ӪS?i-TIUkDS:ovha&K,mtݤPI{o}HLanh5TUvt[}Fn$uK:TiS#jn$ +Z\=&$QҎ[I*ju.t%KۯzI. 1ä]Vo#I$G፻H$_ l$$np/om6i$TmI%] ; $v 0ڤ~al0Iud[aUl4C.UwMhI%!w`D68uTn UJAAuUvlTIYM=l;y(a$Epl0-ؤm؍a0&maO䓯m.aK "-IݶAaI$ Ww{aCD$om qTaװ.$ $]VhCʰ R40ݰ0 D$Ct+il6Ԕ!(AlA$= 5BI+nm202I$mWظPa!Y +@UaҥinD2Am +B!0 U:I0Jh'mT  I[vbI&_l6@)$_km5P6$P(a] l_#A MһhaۆHp6 +am`:H4^?aWZ (6^a`Pɼ\1&T!i] l4q VKt_ 6A@pA6÷mAئcK!B  PENVA8&:Kh͚d+ ֕- HVtãi1Ii*Mԧ AH p h$%\ HUW+gX04CI$UwA6vFĄV%AxmmÆDd2i-.a!G@AiKWota AGK}&d)VppKۡC I% 4AĹ@.:Q +ma!&́ &Ki8lH9H[I%n8a ;mDp bpK,MQ6餗ê M%A3\ A% X0$jmIp(RC$8TamH*J;%IRiII m4aK MI/m$$qSaC VQt{lRH0gulRKk0dApK$C>A'a U 3n*Um`\6I.mRA @* I{ IYƾ$zDlI.iRoqIaՐPCaIamK]W3b!=3Kz^ IJ8aAxJ6*ӷ)._a݂P翠H_=ؤ:)NJ h$DXhN J^E!$  a?l0y5ݶ%߆Xa'ti$Pb_TІ ׯKao{A ҾwE%60Avud> +stream +BT +3 Tr +0.00 Tc +/F3 10.5 Tf +1 0 0 1 284.16 758.40 Tm +<50524553494349454E> Tj +/F3 12.0 Tf +1 0 0 1 248.40 745.68 Tm +<52455055424C494B20> Tj +/F3 11.0 Tf +1 0 0 1 313.92 745.68 Tm +<494E444F4E455349412C> Tj +0.00 Tc +/F3 18.0 Tf +1 0 0 1 295.92 717.12 Tm +<2D342D> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 126.72 688.32 Tm +<5A415420> Tj +/F3 12.0 Tf +1 0 0 1 154.08 687.84 Tm +<50454E43454D4152> Tj +0.00 Tc +1 0 0 1 398.64 685.20 Tm +<54434C502D41> Tj +0.00 Tc +1 0 0 1 476.16 684.24 Tm +<54434C502D42> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 167.28 660.96 Tm +<53617475616E20> Tj +/F3 13.0 Tf +1 0 0 1 214.32 660.72 Tm +<28626572617420> Tj +/F3 12.5 Tf +1 0 0 1 252.24 660.00 Tm +<6B6572696E6729> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 401.52 658.56 Tm +<286D656C4C29> Tj +0.00 Tc +1 0 0 1 479.28 657.84 Tm +<286D656C4C29> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 78.24 635.04 Tm +<48656B73616B6C6F726F62656E7A656E61> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 414.48 631.20 Tm +<30> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 425.76 631.20 Tm +<38> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 422.40 629.28 Tm +<2C> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 488.64 630.24 Tm +<302C3133> Tj +0.00 Tc +1 0 0 1 78.48 614.16 Tm +<48656B73616B6C6F726F6574616E61> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 417.84 610.56 Tm +<3138> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 498.00 609.36 Tm +<33> Tj +0.00 Tc +/F3 13.5 Tf +1 0 0 1 78.00 593.52 Tm +<5069726964696E61> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 416.16 589.68 Tm +<3330> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 498.00 588.72 Tm +<35> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 77.04 572.40 Tm +<546F6B736166656E61> Tj +0.00 Tc +/F3 11.0 Tf +1 0 0 1 419.76 568.80 Tm +<33> Tj +0.00 Tc +/F3 12.0 Tf +1 0 0 1 492.00 567.84 Tm +<30> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 503.52 567.84 Tm +<35> Tj +0.00 Tc +/F3 7.5 Tf +1 0 0 1 499.92 565.92 Tm +<2C> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 77.52 551.76 Tm +<322C342C732D545020> Tj +/F3 12.0 Tf +1 0 0 1 131.28 551.52 Tm +<2853696C76657829> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 419.28 548.16 Tm +<36> Tj +0.00 Tc +/F3 7.0 Tf +1 0 0 1 498.96 547.44 Tm +<31> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 70.08 520.08 Tm +<4B65746572616E67616E3A> Tj +/F3 13.0 Tf +1 0 0 1 69.36 505.68 Tm +<416E616C6973697320> Tj +1 0 0 1 119.76 505.20 Tm +<746572686164617020> Tj +1 0 0 1 176.64 504.96 Tm +<706172616D6574657220> Tj +/F3 13.5 Tf +1 0 0 1 241.68 503.76 Tm +<74616D626168616E20> Tj +/F3 14.0 Tf +1 0 0 1 305.76 503.28 Tm +<64696C616B756B616E20> Tj +/F3 12.5 Tf +1 0 0 1 369.36 502.56 Tm +<73656361726120> Tj +/F3 13.5 Tf +1 0 0 1 411.36 502.08 Tm +<6C616E6773756E6720> Tj +/F3 12.0 Tf +1 0 0 1 470.16 498.72 Tm +<51747572706F736975656C> Tj +/F3 13.0 Tf +1 0 0 1 69.60 491.28 Tm +<746572686164617020> Tj +1 0 0 1 126.00 490.80 Tm +<4C696D62616820> Tj +1 0 0 1 174.00 490.80 Tm +<79616E6720> Tj +1 0 0 1 206.64 490.08 Tm +<6D656E67616E64756E6720> Tj +/F3 12.0 Tf +1 0 0 1 289.44 489.36 Tm +<7A617420> Tj +/F3 13.0 Tf +1 0 0 1 309.12 489.60 Tm +<70656E63656D617220> Tj +1 0 0 1 370.80 488.40 Tm +<64696D616B7375642E> Tj +0.00 Tc +/F3 12.5 Tf +1 0 0 1 325.68 446.64 Tm +<505245534944454E20> Tj +1 0 0 1 393.60 445.68 Tm +<52455055424C494B20> Tj +1 0 0 1 461.04 445.20 Tm +<494E444F4E455349412C> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 385.68 359.76 Tm +<4A4F4B4F20> Tj +/F3 12.5 Tf +1 0 0 1 425.28 359.52 Tm +<5749444F444F> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 97.68 334.32 Tm +<53616C696E616E20> Tj +1 0 0 1 146.40 334.08 Tm +<73657375616920> Tj +1 0 0 1 187.92 333.60 Tm +<64656E67616E20> Tj +1 0 0 1 235.20 333.12 Tm +<61736C696E7961> Tj +/F3 12.5 Tf +1 0 0 1 67.92 314.64 Tm +<4B454D454E54455249414E20> Tj +1 0 0 1 163.44 313.68 Tm +<53454B524554415249415420> Tj +/F3 12.0 Tf +1 0 0 1 254.64 312.96 Tm +<4E4547415241> Tj +/F3 12.5 Tf +1 0 0 1 118.08 300.00 Tm +<52455055424C494B20> Tj +1 0 0 1 185.52 299.52 Tm +<494E444F4E45534941> Tj +0.00 Tc +/F3 13.0 Tf +1 0 0 1 153.60 279.60 Tm +<506572756E64616E672D756E64616E67616E20> Tj +/F3 12.5 Tf +1 0 0 1 286.80 278.40 Tm +<64616E> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 171.36 265.20 Tm +<747261736920> Tj +/F3 13.5 Tf +1 0 0 1 202.08 264.96 Tm +<48756B756D2C> Tj +0.00 Tc +1 0 0 1 167.76 180.48 Tm +<76616E6E6120> Tj +/F3 13.0 Tf +1 0 0 1 208.56 180.00 Tm +<446A616D616E> Tj +0.00 Tc +/F3 14.0 Tf +1 0 0 1 423.12 402.24 Tm +<747464> Tj +0.00 Tc +1 0 0 1 46.32 19.44 Tm +<534B20> Tj +/F3 11.5 Tf +1 0 0 1 69.84 19.44 Tm +<4E6F20> Tj +1 0 0 1 88.08 19.20 Tm +<30393731313820> Tj +1 0 0 1 130.32 19.44 Tm +<41> Tj +0.00 Tc +/F3 8.0 Tf +1 0 0 1 102.48 181.20 Tm +<494B> Tj +0.00 Tc +/F3 11.5 Tf +1 0 0 1 60.96 228.24 Tm +<45> Tj +/F3 6.5 Tf +1 0 0 1 60.96 222.48 Tm +<744954> Tj +/F3 8.5 Tf +1 0 0 1 61.92 217.20 Tm +<2D2F2D> Tj +0.00 Tc +/F3 15.0 Tf +1 0 0 1 66.72 207.12 Tm +<2A> Tj +ET + +endstream +endobj +28 0 obj +<< /Length 29 0 R >> +stream +PRESICIENREPUBLIK INDONESIA, +-4- +ZAT PENCEMAR +TCLP-A +TCLP-B +Satuan (berat kering) +(melL) +(melL) +Heksaklorobenzena +0 +8 +, +0,13 +Heksakloroetana +18 +3 +Piridina +30 +5 +Toksafena +3 +0 +5 +, +2,4,s-TP (Silvex) +6 +1 +Keterangan:Analisis terhadap parameter tambahan dilakukan secara langsung Qturposiuelterhadap Limbah yang mengandung zat pencemar dimaksud. +PRESIDEN REPUBLIK INDONESIA, +JOKO WIDODO +Salinan sesuai dengan aslinyaKEMENTERIAN SEKRETARIAT NEGARAREPUBLIK INDONESIA +Perundang-undangan dan +trasi Hukum, +vanna Djaman +ttd +SK No 097118 A +IK +EtIT-/- +* + +endstream +endobj +29 0 obj +540 +endobj +30 0 obj +<< /Length 27 >> +stream +% CANON_PFINF_TYPE0_TEXTON + +endstream +endobj +31 0 obj +<< /Length 45 >> +stream +q +610.56 0 0 934.56 0.00 0.00 cm +/Obj26 Do +Q + +endstream +endobj +32 0 obj +<< +/Type /Page +/MediaBox [ 0 0 610.56 934.56 ] +/Parent 3 0 R +/Resources << /Font << /F3 6 0 R >> +/XObject << /Obj26 26 0 R >> +/Subtype 28 0 R +/ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] >> +/Contents [ 30 0 R 31 0 R 27 0 R ] +>> +endobj +3 0 obj +<< +/Kids [ 11 0 R 18 0 R 25 0 R 32 0 R ] +/Count 4 +/Type /Pages +>> +endobj +xref +0 1 +0000000000 65535 f +3 1 +0000137705 00000 n +26 7 +0000106804 00000 n +0000132164 00000 n +0000136660 00000 n +0000137256 00000 n +0000137277 00000 n +0000137355 00000 n +0000137451 00000 n +trailer +<< +/Size 33 +/Info 1 0 R +/Root 2 0 R +/Prev 106443 +/ID [<11e1f0b02274d0a309e62ac4b1626db4><11e1f0b02274d0a309e62ac4b1626db4>] +>> +startxref +137791 +%%EOF diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..1080797 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..4f6dd23 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..a1fecb8 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..fd664a3 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/pergub-no-57-tahun-2022.pdf b/wwwroot/webnew/assetsnew/document/peraturan/pergub-no-57-tahun-2022.pdf new file mode 100644 index 0000000..1a720e5 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/pergub-no-57-tahun-2022.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/pergub-no-69-tahun-2013.pdf b/wwwroot/webnew/assetsnew/document/peraturan/pergub-no-69-tahun-2013.pdf new file mode 100644 index 0000000..3f25bdf Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/pergub-no-69-tahun-2013.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/permenlh-no-11-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/permenlh-no-11-tahun-2021.pdf new file mode 100644 index 0000000..8ba655e Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/permenlh-no-11-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf b/wwwroot/webnew/assetsnew/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf new file mode 100644 index 0000000..c419be7 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf b/wwwroot/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf new file mode 100644 index 0000000..9ae7a3a Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sertifikat/sertifikat-akreditasi-llhd.pdf b/wwwroot/webnew/assetsnew/document/sertifikat/sertifikat-akreditasi-llhd.pdf new file mode 100644 index 0000000..a5f3110 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sertifikat/sertifikat-akreditasi-llhd.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf b/wwwroot/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf new file mode 100644 index 0000000..1923c33 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sop/pembuatan-akun-pelanggan.pdf b/wwwroot/webnew/assetsnew/document/sop/pembuatan-akun-pelanggan.pdf new file mode 100644 index 0000000..66562fc Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sop/pembuatan-akun-pelanggan.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sop/penanganan-pengaduan-pelanggan.pdf b/wwwroot/webnew/assetsnew/document/sop/penanganan-pengaduan-pelanggan.pdf new file mode 100644 index 0000000..032a6ff Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sop/penanganan-pengaduan-pelanggan.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sop/pengajuan-pengujian-contoh-uji-air.pdf b/wwwroot/webnew/assetsnew/document/sop/pengajuan-pengujian-contoh-uji-air.pdf new file mode 100644 index 0000000..c659a96 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sop/pengajuan-pengujian-contoh-uji-air.pdf differ diff --git a/wwwroot/webnew/assetsnew/document/sop/tanggap-darurat.pdf b/wwwroot/webnew/assetsnew/document/sop/tanggap-darurat.pdf new file mode 100644 index 0000000..81c36e3 Binary files /dev/null and b/wwwroot/webnew/assetsnew/document/sop/tanggap-darurat.pdf differ diff --git a/wwwroot/webnew/assetsnew/image/backgroundhero.png b/wwwroot/webnew/assetsnew/image/backgroundhero.png new file mode 100644 index 0000000..5535399 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/backgroundhero.png differ diff --git a/wwwroot/webnew/assetsnew/image/footer.png b/wwwroot/webnew/assetsnew/image/footer.png new file mode 100644 index 0000000..8c660d9 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/footer.png differ diff --git a/wwwroot/webnew/assetsnew/image/foto/1.jpeg b/wwwroot/webnew/assetsnew/image/foto/1.jpeg new file mode 100644 index 0000000..12ae699 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/1.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/10.jpeg b/wwwroot/webnew/assetsnew/image/foto/10.jpeg new file mode 100644 index 0000000..af1ace4 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/10.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/11.jpeg b/wwwroot/webnew/assetsnew/image/foto/11.jpeg new file mode 100644 index 0000000..9ef29f5 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/11.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/2.jpeg b/wwwroot/webnew/assetsnew/image/foto/2.jpeg new file mode 100644 index 0000000..db6a730 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/2.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/3.jpeg b/wwwroot/webnew/assetsnew/image/foto/3.jpeg new file mode 100644 index 0000000..23893d9 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/3.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/4.jpeg b/wwwroot/webnew/assetsnew/image/foto/4.jpeg new file mode 100644 index 0000000..17da40f Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/4.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/5.jpeg b/wwwroot/webnew/assetsnew/image/foto/5.jpeg new file mode 100644 index 0000000..0c83d37 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/5.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/6.jpeg b/wwwroot/webnew/assetsnew/image/foto/6.jpeg new file mode 100644 index 0000000..a3ff5bf Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/6.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/7.jpeg b/wwwroot/webnew/assetsnew/image/foto/7.jpeg new file mode 100644 index 0000000..cba243b Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/7.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/8.jpeg b/wwwroot/webnew/assetsnew/image/foto/8.jpeg new file mode 100644 index 0000000..68cb9d7 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/8.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/9.jpeg b/wwwroot/webnew/assetsnew/image/foto/9.jpeg new file mode 100644 index 0000000..b82e0ff Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/9.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/beritakomitmenllhd.png b/wwwroot/webnew/assetsnew/image/foto/beritakomitmenllhd.png new file mode 100644 index 0000000..6edb2cc Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/beritakomitmenllhd.png differ diff --git a/wwwroot/webnew/assetsnew/image/foto/gedungllhd.webp b/wwwroot/webnew/assetsnew/image/foto/gedungllhd.webp new file mode 100644 index 0000000..46938a2 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/gedungllhd.webp differ diff --git a/wwwroot/webnew/assetsnew/image/foto/gedungnew.jpeg b/wwwroot/webnew/assetsnew/image/foto/gedungnew.jpeg new file mode 100644 index 0000000..645bcb0 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/gedungnew.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/llhd.jpeg b/wwwroot/webnew/assetsnew/image/foto/llhd.jpeg new file mode 100644 index 0000000..36ff8c5 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/llhd.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/pengujianair.jpeg b/wwwroot/webnew/assetsnew/image/foto/pengujianair.jpeg new file mode 100644 index 0000000..1aeaf96 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/pengujianair.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/pengujianudara.jpeg b/wwwroot/webnew/assetsnew/image/foto/pengujianudara.jpeg new file mode 100644 index 0000000..fb50d9d Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/pengujianudara.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/foto/samplingair.jpeg b/wwwroot/webnew/assetsnew/image/foto/samplingair.jpeg new file mode 100644 index 0000000..1fdf237 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/foto/samplingair.jpeg differ diff --git a/wwwroot/webnew/assetsnew/image/icon/arrow.png b/wwwroot/webnew/assetsnew/image/icon/arrow.png new file mode 100644 index 0000000..b22c006 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/arrow.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/download.png b/wwwroot/webnew/assetsnew/image/icon/download.png new file mode 100644 index 0000000..0bc1353 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/download.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/eye.png b/wwwroot/webnew/assetsnew/image/icon/eye.png new file mode 100644 index 0000000..5690d99 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/eye.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon briefcase.png b/wwwroot/webnew/assetsnew/image/icon/icon briefcase.png new file mode 100644 index 0000000..d4cb8ae Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon briefcase.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon check.png b/wwwroot/webnew/assetsnew/image/icon/icon check.png new file mode 100644 index 0000000..bbcfcec Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon check.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon clipboard.png b/wwwroot/webnew/assetsnew/image/icon/icon clipboard.png new file mode 100644 index 0000000..178bd9f Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon clipboard.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon handshake.png b/wwwroot/webnew/assetsnew/image/icon/icon handshake.png new file mode 100644 index 0000000..6c1c078 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon handshake.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon lab.png b/wwwroot/webnew/assetsnew/image/icon/icon lab.png new file mode 100644 index 0000000..25894fe Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon lab.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon recycle.png b/wwwroot/webnew/assetsnew/image/icon/icon recycle.png new file mode 100644 index 0000000..bdad5ee Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon recycle.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon shieldcheck.png b/wwwroot/webnew/assetsnew/image/icon/icon shieldcheck.png new file mode 100644 index 0000000..44c5816 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon shieldcheck.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/icon user.png b/wwwroot/webnew/assetsnew/image/icon/icon user.png new file mode 100644 index 0000000..83c657e Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/icon user.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/star zero.png b/wwwroot/webnew/assetsnew/image/icon/star zero.png new file mode 100644 index 0000000..767da45 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/star zero.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/star.png b/wwwroot/webnew/assetsnew/image/icon/star.png new file mode 100644 index 0000000..635f2be Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/star.png differ diff --git a/wwwroot/webnew/assetsnew/image/icon/starhalf.png b/wwwroot/webnew/assetsnew/image/icon/starhalf.png new file mode 100644 index 0000000..dbf8173 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/icon/starhalf.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/Icon logo.png b/wwwroot/webnew/assetsnew/image/logo/Icon logo.png new file mode 100644 index 0000000..e4cf5b3 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/Icon logo.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/logodlh.png b/wwwroot/webnew/assetsnew/image/logo/logodlh.png new file mode 100644 index 0000000..92d77be Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/logodlh.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/logokanllhd.png b/wwwroot/webnew/assetsnew/image/logo/logokanllhd.png new file mode 100644 index 0000000..82ee50d Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/logokanllhd.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/logollhd.png b/wwwroot/webnew/assetsnew/image/logo/logollhd.png new file mode 100644 index 0000000..7c74a4e Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/logollhd.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/logollhdbg.png b/wwwroot/webnew/assetsnew/image/logo/logollhdbg.png new file mode 100644 index 0000000..2d3fe60 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/logollhdbg.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/logoregistrasiklhk.png b/wwwroot/webnew/assetsnew/image/logo/logoregistrasiklhk.png new file mode 100644 index 0000000..1285f33 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/logoregistrasiklhk.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/aeonmall.png b/wwwroot/webnew/assetsnew/image/logo/mitra/aeonmall.png new file mode 100644 index 0000000..2ef844d Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/aeonmall.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/ascott.webp b/wwwroot/webnew/assetsnew/image/logo/mitra/ascott.webp new file mode 100644 index 0000000..64b13ea Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/ascott.webp differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/astra.png b/wwwroot/webnew/assetsnew/image/logo/mitra/astra.png new file mode 100644 index 0000000..4c0cdaf Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/astra.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/bca.png b/wwwroot/webnew/assetsnew/image/logo/mitra/bca.png new file mode 100644 index 0000000..1eb3a8d Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/bca.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/biomedika.png b/wwwroot/webnew/assetsnew/image/logo/mitra/biomedika.png new file mode 100644 index 0000000..046cb71 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/biomedika.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/kalbe.png b/wwwroot/webnew/assetsnew/image/logo/mitra/kalbe.png new file mode 100644 index 0000000..72bbbb1 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/kalbe.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/khongguan.png b/wwwroot/webnew/assetsnew/image/logo/mitra/khongguan.png new file mode 100644 index 0000000..f9901dc Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/khongguan.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/logorspp.png b/wwwroot/webnew/assetsnew/image/logo/mitra/logorspp.png new file mode 100644 index 0000000..b4dc12c Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/logorspp.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/lrt.png b/wwwroot/webnew/assetsnew/image/logo/mitra/lrt.png new file mode 100644 index 0000000..d997dba Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/lrt.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/mayapada.png b/wwwroot/webnew/assetsnew/image/logo/mitra/mayapada.png new file mode 100644 index 0000000..03af802 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/mayapada.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/mcdonals.png b/wwwroot/webnew/assetsnew/image/logo/mitra/mcdonals.png new file mode 100644 index 0000000..651c729 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/mcdonals.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/moi.png b/wwwroot/webnew/assetsnew/image/logo/mitra/moi.png new file mode 100644 index 0000000..f91355d Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/moi.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/mrt.png b/wwwroot/webnew/assetsnew/image/logo/mitra/mrt.png new file mode 100644 index 0000000..06c0334 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/mrt.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/pakubuwono.png b/wwwroot/webnew/assetsnew/image/logo/mitra/pakubuwono.png new file mode 100644 index 0000000..d6c4e78 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/pakubuwono.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/paljaya.png b/wwwroot/webnew/assetsnew/image/logo/mitra/paljaya.png new file mode 100644 index 0000000..55493b9 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/paljaya.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/pramita.jpg b/wwwroot/webnew/assetsnew/image/logo/mitra/pramita.jpg new file mode 100644 index 0000000..d4c81ad Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/pramita.jpg differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/prodia.jpg b/wwwroot/webnew/assetsnew/image/logo/mitra/prodia.jpg new file mode 100644 index 0000000..fde4921 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/prodia.jpg differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/rscm.png b/wwwroot/webnew/assetsnew/image/logo/mitra/rscm.png new file mode 100644 index 0000000..a4adfc8 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/rscm.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/sarinah.png b/wwwroot/webnew/assetsnew/image/logo/mitra/sarinah.png new file mode 100644 index 0000000..2c58fd1 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/sarinah.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/ut.png b/wwwroot/webnew/assetsnew/image/logo/mitra/ut.png new file mode 100644 index 0000000..e698abc Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/ut.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/mitra/yamaha.png b/wwwroot/webnew/assetsnew/image/logo/mitra/yamaha.png new file mode 100644 index 0000000..142cd0b Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/mitra/yamaha.png differ diff --git a/wwwroot/webnew/assetsnew/image/logo/wilayahbebaskorupsi.png b/wwwroot/webnew/assetsnew/image/logo/wilayahbebaskorupsi.png new file mode 100644 index 0000000..49d6d58 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/logo/wilayahbebaskorupsi.png differ diff --git a/wwwroot/webnew/assetsnew/image/sejarah.png b/wwwroot/webnew/assetsnew/image/sejarah.png new file mode 100644 index 0000000..02e9034 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/sejarah.png differ diff --git a/wwwroot/webnew/assetsnew/image/strukturorganisasi.png b/wwwroot/webnew/assetsnew/image/strukturorganisasi.png new file mode 100644 index 0000000..a8541e6 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/strukturorganisasi.png differ diff --git a/wwwroot/webnew/assetsnew/image/tahappengujianllhd.png b/wwwroot/webnew/assetsnew/image/tahappengujianllhd.png new file mode 100644 index 0000000..e8f7946 Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/tahappengujianllhd.png differ diff --git a/wwwroot/webnew/assetsnew/image/visimisi.png b/wwwroot/webnew/assetsnew/image/visimisi.png new file mode 100644 index 0000000..64b8b1d Binary files /dev/null and b/wwwroot/webnew/assetsnew/image/visimisi.png differ diff --git a/wwwroot/webnew/css/Berita/Berita.css b/wwwroot/webnew/csslama/berita/berita.css similarity index 100% rename from wwwroot/webnew/css/Berita/Berita.css rename to wwwroot/webnew/csslama/berita/berita.css diff --git a/wwwroot/webnew/css/Berita/BeritaList.css b/wwwroot/webnew/csslama/berita/beritalist.css similarity index 100% rename from wwwroot/webnew/css/Berita/BeritaList.css rename to wwwroot/webnew/csslama/berita/beritalist.css diff --git a/wwwroot/webnew/css/Berita/DetailBerita.css b/wwwroot/webnew/csslama/berita/detailberita.css similarity index 100% rename from wwwroot/webnew/css/Berita/DetailBerita.css rename to wwwroot/webnew/csslama/berita/detailberita.css diff --git a/wwwroot/webnew/css/faq.css b/wwwroot/webnew/csslama/faq.css similarity index 100% rename from wwwroot/webnew/css/faq.css rename to wwwroot/webnew/csslama/faq.css diff --git a/wwwroot/webnew/css/Footer.css b/wwwroot/webnew/csslama/footer.css similarity index 100% rename from wwwroot/webnew/css/Footer.css rename to wwwroot/webnew/csslama/footer.css diff --git a/wwwroot/webnew/css/FormReview.css b/wwwroot/webnew/csslama/formreview.css similarity index 100% rename from wwwroot/webnew/css/FormReview.css rename to wwwroot/webnew/csslama/formreview.css diff --git a/wwwroot/webnew/css/Galeri.css b/wwwroot/webnew/csslama/galeri.css similarity index 100% rename from wwwroot/webnew/css/Galeri.css rename to wwwroot/webnew/csslama/galeri.css diff --git a/wwwroot/webnew/css/Header.css b/wwwroot/webnew/csslama/header.css similarity index 100% rename from wwwroot/webnew/css/Header.css rename to wwwroot/webnew/csslama/header.css diff --git a/wwwroot/webnew/css/helpdesk.css b/wwwroot/webnew/csslama/helpdesk.css similarity index 100% rename from wwwroot/webnew/css/helpdesk.css rename to wwwroot/webnew/csslama/helpdesk.css diff --git a/wwwroot/webnew/css/Hero.css b/wwwroot/webnew/csslama/hero.css similarity index 100% rename from wwwroot/webnew/css/Hero.css rename to wwwroot/webnew/csslama/hero.css diff --git a/wwwroot/webnew/css/Index.css b/wwwroot/webnew/csslama/index.css similarity index 91% rename from wwwroot/webnew/css/Index.css rename to wwwroot/webnew/csslama/index.css index 6cf12c5..4faabd4 100644 --- a/wwwroot/webnew/css/Index.css +++ b/wwwroot/webnew/csslama/index.css @@ -96,15 +96,30 @@ /*Layanan*/ +.service-card-link { + display: block; + text-decoration: none !important; + color: inherit; +} + + .service-card-link:hover, + .service-card-link:focus, + .service-card-link:active, + .service-card-link:visited { + text-decoration: none !important; + color: inherit; + } + .service-card { position: relative; height: 300px; border-radius: 20px; overflow: hidden; - color: white; + color: #fff; cursor: pointer; } + .service-bg { position: absolute; inset: 0; @@ -113,6 +128,7 @@ transition: transform 0.5s ease; } + .service-overlay { position: absolute; inset: 0; @@ -120,24 +136,63 @@ transition: 0.3s ease; } + .service-content { position: relative; z-index: 2; - padding: 20px; + padding: 24px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; + text-decoration: none !important; +} + + .service-content *, + .service-card * { + text-decoration: none !important; + } + +.top-content { + display: flex; + align-items: center; + gap: 16px; +} + +.icon { + width: 70px; + height: 70px; + background: #fff; + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; + flex-shrink: 0; +} + +.title { + font-size: 32px; + font-weight: 700; + color: #fff; + margin: 0; + text-decoration: none !important; } .service-list { opacity: 0; transform: translateY(10px); - transition: 0.3s ease; - font-size: 12px; + transition: all .3s ease; + font-size: 14px; + line-height: 1.7; margin-top: auto; } + .service-list p { + margin: 0; + color: #fff; + text-decoration: none !important; + } + .service-card:hover .service-bg { transform: scale(1.1); } diff --git a/wwwroot/webnew/css/Kontak.css b/wwwroot/webnew/csslama/kontak.css similarity index 100% rename from wwwroot/webnew/css/Kontak.css rename to wwwroot/webnew/csslama/kontak.css diff --git a/wwwroot/webnew/css/Layanan/DetailItem.css b/wwwroot/webnew/csslama/layanan/detailitem.css similarity index 100% rename from wwwroot/webnew/css/Layanan/DetailItem.css rename to wwwroot/webnew/csslama/layanan/detailitem.css diff --git a/wwwroot/webnew/css/Layanan/DetailLayanan.css b/wwwroot/webnew/csslama/layanan/detaillayanan.css similarity index 100% rename from wwwroot/webnew/css/Layanan/DetailLayanan.css rename to wwwroot/webnew/csslama/layanan/detaillayanan.css diff --git a/wwwroot/webnew/css/Layanan/Layanan.css b/wwwroot/webnew/csslama/layanan/layanan.css similarity index 100% rename from wwwroot/webnew/css/Layanan/Layanan.css rename to wwwroot/webnew/csslama/layanan/layanan.css diff --git a/wwwroot/webnew/css/Layout.css b/wwwroot/webnew/csslama/layout.css similarity index 100% rename from wwwroot/webnew/css/Layout.css rename to wwwroot/webnew/csslama/layout.css diff --git a/wwwroot/webnew/css/Regulasi.css b/wwwroot/webnew/csslama/regulasi.css similarity index 100% rename from wwwroot/webnew/css/Regulasi.css rename to wwwroot/webnew/csslama/regulasi.css diff --git a/wwwroot/webnew/css/Sertifikat.css b/wwwroot/webnew/csslama/sertifikat.css similarity index 100% rename from wwwroot/webnew/css/Sertifikat.css rename to wwwroot/webnew/csslama/sertifikat.css diff --git a/wwwroot/webnew/css/site.css b/wwwroot/webnew/csslama/site.css similarity index 100% rename from wwwroot/webnew/css/site.css rename to wwwroot/webnew/csslama/site.css diff --git a/wwwroot/webnew/css/TentangKami.css b/wwwroot/webnew/csslama/tentangkami.css similarity index 100% rename from wwwroot/webnew/css/TentangKami.css rename to wwwroot/webnew/csslama/tentangkami.css diff --git a/wwwroot/webnew/css/Video.css b/wwwroot/webnew/csslama/video.css similarity index 100% rename from wwwroot/webnew/css/Video.css rename to wwwroot/webnew/csslama/video.css diff --git a/wwwroot/webnew/cssnew/berita/berita.css b/wwwroot/webnew/cssnew/berita/berita.css new file mode 100644 index 0000000..21c574e --- /dev/null +++ b/wwwroot/webnew/cssnew/berita/berita.css @@ -0,0 +1,92 @@ +body { + background: #f5f7fa; +} + +.berita-page { + margin: auto; +} + +.hero { + background: linear-gradient(135deg, #3b82f6, #2563eb); + color: white; + padding: 50px; + border-radius: 16px; + text-align: center; + margin: 30px 0; +} + +.berita-page #search, +.berita-page #filterDate { + padding: 12px; + border-radius: 12px; + border: 1px solid #ddd; + transition: all .2s ease; +} + + .berita-page #search:focus, + .berita-page #filterDate:focus { + border-color: #3b82f6; + box-shadow: 0 0 0 3px rgba(59,130,246,.15); + } + +.berita-page .card { + background: white; + border: none; + border-radius: 16px; + overflow: hidden; + box-shadow: 0 4px 10px rgba(0,0,0,0.05); + transition: all .3s ease; +} + + .berita-page .card:hover { + transform: translateY(-5px); + box-shadow: 0 10px 24px rgba(0,0,0,.08); + } + +.berita-page .card-img-top { + width: 100%; + height: 250px; + object-fit: cover; +} + +.berita-page .card-body { + padding: 15px; + margin: auto; +} + +.berita-page small.text-muted { + font-size: 12px; + color: gray !important; +} + +.berita-page .card h6 { + font-size: 16px; + margin: 10px 0; + line-height: 1.5; +} + +.berita-page .card p { + font-size: 14px; + color: #555; +} + +.berita-page .card a { + color: #2563eb; + font-weight: bold; + text-decoration: none; +} + + .berita-page .card a:hover { + text-decoration: underline; + } + +@media (max-width: 768px) { + + .berita-page .card-img-top { + height: 220px; + } + + .berita-page .card-body { + padding: 14px; + } +} diff --git a/wwwroot/webnew/cssnew/berita/beritalist.css b/wwwroot/webnew/cssnew/berita/beritalist.css new file mode 100644 index 0000000..18e43b2 --- /dev/null +++ b/wwwroot/webnew/cssnew/berita/beritalist.css @@ -0,0 +1,118 @@ +/*body { + font-family: 'Segoe UI', sans-serif; + background: #f5f7fa; +} + +.container { + width: 90%; + margin: auto; +} + + +.hero { + background: linear-gradient(135deg, #3b82f6, #2563eb); + color: white; + padding: 50px; + border-radius: 16px; + text-align: center; + margin: 30px 0; +} + + +.filter { + display: flex; + gap: 20px; + margin-bottom: 30px; +} + + .filter input { + padding: 12px; + border-radius: 10px; + border: 1px solid #ddd; + flex: 1; + } + + +.berita-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 25px; +} + + +.card { + background: white; + border-radius: 16px; + overflow: hidden; + box-shadow: 0 4px 10px rgba(0,0,0,0.05); + transition: 0.3s; +} + + .card:hover { + transform: translateY(-5px); + } + + .card img { + width: 100%; + height: 300px; + object-fit: cover; + } + +.card-body { + padding: 15px; +} + +.date { + font-size: 12px; + color: gray; +} + +.card h3 { + font-size: 16px; + margin: 10px 0; +} + +.card p { + font-size: 14px; + color: #555; +} + +.card a { + color: #2563eb; + font-weight: bold; + text-decoration: none; +}*/ + +/* FOOTER */ +/*.footer { + background: #0f2a44; + color: white; + margin-top: 50px; + padding: 40px 0; +} + +.footer-container { + display: flex; + justify-content: space-between; + width: 90%; + margin: auto; +} + +.footer-menu h4 { + margin-bottom: 10px; +} + +.footer-menu ul { + list-style: none; + padding: 0; +} + +.footer-menu li { + margin-bottom: 8px; +} + +.copyright { + text-align: center; + margin-top: 20px; + font-size: 12px; +}*/ diff --git a/wwwroot/webnew/cssnew/berita/detailberita.css b/wwwroot/webnew/cssnew/berita/detailberita.css new file mode 100644 index 0000000..3b62414 --- /dev/null +++ b/wwwroot/webnew/cssnew/berita/detailberita.css @@ -0,0 +1,108 @@ +.slider { + position: relative; + border-radius: 16px; + overflow: hidden; + background: #f5f5f5; +} + + .slider img { + width: 100%; + height: 380px; + object-fit: cover; + display: block; + } + +#slider { + margin-top: 12px; + margin-bottom: 20px; +} + +.slider-btn { + position: absolute; + top: 50%; + transform: translateY(-50%); + background: rgba(0,0,0,0.4); + color: white; + border: none; + width: 36px; + height: 36px; + border-radius: 50%; + cursor: pointer; + font-size: 18px; + transition: 0.3s; +} + + .slider-btn:hover { + background: rgba(0,0,0,0.7); + } + +.prev { + left: 12px; +} + +.next { + right: 12px; +} + +#isi { + text-align: justify; + font-size: 15px; + color: #444; +} + +.sidebar-card { + border-radius: 16px; + padding: 16px; + background: #fff; +} + +.sidebar-item { + display: flex; + gap: 12px; + margin-bottom: 18px; + align-items: flex-start; +} + +.sidebar-card .sidebar-item img { + width: 70px; + height: 55px; + object-fit: cover; + margin-top: 10px; + border-radius: 10px; +} + +.sidebar-content { + flex: 1; +} + +.sidebar-date { + font-size: 12px; + color: #888; +} + +.sidebar-title { + font-size: 14px; + font-weight: 600; + line-height: 1.4; + margin: 4px 0; + color: #222; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + overflow: hidden; +} + +.sidebar-link { + font-size: 13px; + color: #0d6efd; + text-decoration: none; + font-weight: 500; +} + + .sidebar-link:hover { + text-decoration: underline; + } + +.sidebar-item:last-child { + margin-bottom: 0; +} \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/faq.css b/wwwroot/webnew/cssnew/faq.css new file mode 100644 index 0000000..9a4c61b --- /dev/null +++ b/wwwroot/webnew/cssnew/faq.css @@ -0,0 +1,147 @@ +body { + background-color: #f9f9f9; +} + +.faq-section { + padding: 50px 0; +} + +.faq-badge { + border: 1px solid #003588; + color: #003588; + padding: 6px 20px; + border-radius: 50px; + font-size: 14px; +} + +.faq-title { + color: #121B2B; + font-weight: 500; +} + +.faq-wrapper { + max-width: 900px; +} + +.faq-item { + background: #fff; + border-radius: 20px; + padding: 20px 25px; + margin-bottom: 20px; + text-align: left; + cursor: pointer; + transition: all 0.3s ease; +} + +.faq-header { + display: flex; + justify-content: space-between; + align-items: center; +} + + .faq-header h5 { + margin: 0; + font-size: 16px; + font-weight: 500; + } + +.faq-icon { + width: 40px; + height: 40px; + border: 1px solid #ccc; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + font-size: 22px; + transition: all 0.3s ease; +} + +.faq-body { + max-height: 0; + overflow: hidden; + transition: all 0.4s ease; + opacity: 0; +} + + .faq-body p { + margin-top: 15px; + color: #555; + font-size: 14px; + } + +.faq-item.active .faq-body { + max-height: 500px; + opacity: 1; +} + +.faq-item.active .faq-icon { + content: '−'; +} + +.list { + font-size: 14px; +} + +.faq-button { + border: 1px solid #fff; + color: #fff; + padding: 10px 25px; + border-radius: 50px; + text-decoration: none; + transition: 0.3s; +} + + .faq-button:hover { + background: #fff; + color: #0b2a45; + } + +.faq-btn-selengkapnya { + border: 1px solid white; + border-radius: 50px; + padding: 12px 30px; + color: white; + font-weight: 600; + transition: all 0.3s ease; + text-decoration: none; + display: inline-flex; + align-items: center; + gap: 10px; +} + + .faq-btn-selengkapnya:hover { + background-color: #1a202c; + color: white; + } + + +.faq-tab { + display: flex; + justify-content: center; + gap: 10px; + margin-bottom: 30px; +} + +.tab { + padding: 6px 16px; + border-radius: 20px; + border: 1px solid #e5e7eb; + background: #f3f4f6; + cursor: pointer; + font-size: 13px; +} + +.tab.active { + background: #ffffff; + box-shadow: 0 4px 10px rgba(0,0,0,0.05); +} + +/* PANE */ +.faq-pane { + display: none; +} + +.faq-pane.active { + display: block; +} diff --git a/wwwroot/webnew/cssnew/footer.css b/wwwroot/webnew/cssnew/footer.css new file mode 100644 index 0000000..e30ff31 --- /dev/null +++ b/wwwroot/webnew/cssnew/footer.css @@ -0,0 +1,60 @@ +.footer-section { + background-repeat: no-repeat; + background-position: center center; + background-size: cover; + min-height: 300px; + color: white; +} + +.footer-logo img { + height: 60px; + background: #fff; + padding: 8px 12px; + border-radius: 10px; +} + +.footer-title { + font-size: 16px; + font-weight: 600; + margin-bottom: 15px; +} + +.footer-links { + list-style: none; + padding: 0; +} + + .footer-links li { + margin-bottom: 10px; + color: #cbd5e1; + } + + .footer-links a { + color: #cbd5e1; + text-decoration: none; + transition: 0.3s; + } + + .footer-links a:hover { + color: #fff; + } + +.footer-bottom { + border-top: 1px solid rgba(255,255,255,0.2); + font-size: 14px; + color: #cbd5e1; +} + +.footer-section .container { + max-width: 1200px; +} + +@media (max-width: 768px) { + .footer-section { + text-align: center; + } + + .footer-logo { + justify-content: center; + } +} diff --git a/wwwroot/webnew/cssnew/formreview.css b/wwwroot/webnew/cssnew/formreview.css new file mode 100644 index 0000000..9f93efb --- /dev/null +++ b/wwwroot/webnew/cssnew/formreview.css @@ -0,0 +1,107 @@ +body { + background: #f0f2f5; +} +.survey-scale { + display: grid; + grid-template-columns: 130px 1fr 130px; + align-items: center; + gap: 10px; + margin-top: 10px; +} + +.scale-label { + font-size: 14px; + color: #555; +} + +.scale-options { + display: flex; + justify-content: space-between; + text-align: center; +} + +.scale-item { + display: flex; + flex-direction: column; + align-items: center; + cursor: pointer; +} + + .scale-item input { + display: none; + } + + .scale-item .number { + font-size: 14px; + margin-bottom: 5px; + } + + .scale-item .circle { + width: 22px; + height: 22px; + border-radius: 50%; + border: 2px solid #999; + transition: 0.2s; + } + + .scale-item input:checked + .circle { + border-color: #0d6efd; + background: radial-gradient(#0d6efd 40%, transparent 45%); + } + + .scale-item:hover .circle { + border-color: #0d6efd; + } + + +.form-card { + max-width: 800px; + border-radius: 16px; +} + +.question-card { + border-radius: 12px; + border: 1px solid #eee; + background: #fafafa; + transition: 0.2s; +} + + .question-card:hover { + background: #f5f9ff; + border-color: #dbeafe; + } + +@media (max-width: 576px) { + + .survey-scale { + display: flex; + flex-direction: column; + align-items: stretch; + gap: 8px; + } + + .scale-label { + display: flex; + justify-content: space-between; + font-size: 13px; + } + + .scale-options { + display: flex; + justify-content: space-between; + gap: 6px; + } + + .scale-item { + flex: 1; + } + + .scale-item .circle { + width: 28px; + height: 28px; + } + + .scale-item .number { + font-size: 12px; + } +} \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/galeri.css b/wwwroot/webnew/cssnew/galeri.css new file mode 100644 index 0000000..2bf1e8d --- /dev/null +++ b/wwwroot/webnew/cssnew/galeri.css @@ -0,0 +1,105 @@ +.galeri-card { + overflow: hidden; + border-radius: 20px; + transition: 0.3s; + cursor: pointer; +} + + .galeri-card img { + width: 100%; + height: 260px; + object-fit: cover; + border-radius: 20px; + transition: 0.3s; + } + + .galeri-card:hover img { + transform: scale(1.05); + } + +.lightbox { + display: none; + position: fixed; + z-index: 9999; + padding-top: 80px; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: rgba(0,0,0,0.85); + backdrop-filter: blur(6px); +} + +.lightbox-content { + display: block; + margin: auto; + max-width: 80%; + max-height: 80%; + border-radius: 12px; + animation: zoomIn 0.3s ease; +} + +.lightbox .close { + position: absolute; + top: 30px; + right: 40px; + color: #fff; + font-size: 32px; + cursor: pointer; +} + +@keyframes zoomIn { + from { + transform: scale(0.8); + opacity: 0; + } + + to { + transform: scale(1); + opacity: 1; + } +} + +.lightbox { + display: none; + position: fixed; + z-index: 999; + padding-top: 60px; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: rgba(0,0,0,0.85); +} + +.lightbox-content { + display: block; + margin: auto; + max-width: 80%; + border-radius: 10px; + margin-top: 50px; +} + +.lightbox-text { + text-align: center; + margin-top: 15px; +} + +#lightbox-title { + color: #fff; + font-weight: bold; +} + +#lightbox-description { + color: #ccc; + font-size: 14px; +} + +.lightbox .close { + position: absolute; + top: 20px; + right: 35px; + color: white; + font-size: 30px; + cursor: pointer; +} \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/header.css b/wwwroot/webnew/cssnew/header.css new file mode 100644 index 0000000..47ce711 --- /dev/null +++ b/wwwroot/webnew/cssnew/header.css @@ -0,0 +1,68 @@ + +.nav-underline { + position: relative; + display: inline-block; +} + + .nav-underline::after { + content: ""; + position: absolute; + left: 0; + bottom: -5px; + width: 0%; + height: 2px; + background: #0d6efd; + transition: width 0.3s ease; + } + + .nav-underline:hover::after, + .nav-underline.active::after { + width: 100%; + } + +.search-btn { + font-size: 18px; + color: #374151; + border: none; + background: transparent; + transition: all 0.2s ease; +} + + .search-btn:hover { + color: #3b82f6; + transform: scale(1.1); + } + +@media (min-width: 992px) { + .navbar .dropdown-menu { + display: block; + opacity: 0; + visibility: hidden; + transform: translateY(10px); + transition: all 0.3s ease; + } + + .navbar .dropdown:hover .dropdown-menu { + opacity: 1; + visibility: visible; + transform: translateY(0); + } +} + +.search-modal { + border-radius: 20px; + padding: 10px; +} + +.search-popup-input { + border-radius: 999px; + padding: 14px 20px; + font-size: 16px; + border: 1px solid #e5e7eb; + transition: 0.2s; +} + + .search-popup-input:focus { + border-color: #3b82f6; + box-shadow: 0 0 0 4px rgba(59,130,246,0.15); + } diff --git a/wwwroot/webnew/cssnew/helpdesk.css b/wwwroot/webnew/cssnew/helpdesk.css new file mode 100644 index 0000000..3579e32 --- /dev/null +++ b/wwwroot/webnew/cssnew/helpdesk.css @@ -0,0 +1,79 @@ + + +.helpdesk-floating { + position: fixed; + right: 24px; + bottom: 24px; + width: 65px; + height: 65px; + display: flex; + align-items: center; + justify-content: center; + background: #25D366; + color: #fff; + border-radius: 50%; + text-decoration: none; + z-index: 99999; + box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); + transition: all .3s ease; + padding: 0; + margin: 0; + line-height: 1; +} + + .helpdesk-floating:hover { + color: #fff; + transform: translateY(-3px) scale(1.05); + box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55); + } + + .helpdesk-floating i { + font-size: 34px; + line-height: 1; + } + + /* Pulse Animation */ + .helpdesk-floating::before { + content: ""; + position: absolute; + width: 65px; + height: 65px; + border-radius: 50%; + border: 2px solid rgba(37, 211, 102, 0.4); + animation: helpdeskPulse 2s infinite; + } + +@keyframes helpdeskPulse { + 0% { + transform: scale(1); + opacity: .8; + } + + 70% { + transform: scale(1.4); + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +/* Mobile */ +@media (max-width: 768px) { + .helpdesk-floating { + width: 58px; + height: 58px; + right: 16px; + bottom: 16px; + } + + .helpdesk-floating::before { + width: 58px; + height: 58px; + } + + .helpdesk-floating i { + font-size: 30px; + } +} diff --git a/wwwroot/webnew/cssnew/hero.css b/wwwroot/webnew/cssnew/hero.css new file mode 100644 index 0000000..a86c478 --- /dev/null +++ b/wwwroot/webnew/cssnew/hero.css @@ -0,0 +1,27 @@ +.hero-section { + padding: 40px 0; +} + +.hero-box { + border-radius: 20px; + padding: 60px 20px; + color: white; + position: relative; + overflow: hidden; + min-height: 250px; +} + +.hero-bg { + position: absolute; + inset: 0; + width: 100%; + height: 100%; + object-fit: cover; +} + +.hero-box h2 { + position: relative; + z-index: 1; + font-weight: 600; + font-size: 32px; +} diff --git a/wwwroot/webnew/cssnew/index.css b/wwwroot/webnew/cssnew/index.css new file mode 100644 index 0000000..4b27d57 --- /dev/null +++ b/wwwroot/webnew/cssnew/index.css @@ -0,0 +1,794 @@ +/* HERO */ +.hero-slider { + position: relative; + overflow: hidden; + border-radius: 20px; + margin: 20px; +} + +.hero-wrapper { + display: flex; + transition: transform 0.6s ease; +} + +.hero-slide { + min-width: 100%; + height: 500px; + display: flex; + align-items: center; + padding: 40px; + color: white; +} + +.hero-content h1 { + font-size: 32px; + font-weight: bold; +} + +.hero-content p { + margin: 10px 0 20px; + opacity: 0.9; +} + +.hero-content .btn { + background: white; + color: #2563eb; +} + +.hero-btn { + position: absolute; + top: 50%; + transform: translateY(-50%); + border: none; + background: rgba(255,255,255,0.2); + color: white; + font-size: 24px; + width: 40px; + height: 40px; + border-radius: 50%; + cursor: pointer; +} + + .hero-btn.prev { + left: 15px; + } + + .hero-btn.next { + right: 15px; + } + +.hero-dots { + position: absolute; + bottom: 15px; + width: 100%; + text-align: center; +} + + .hero-dots span { + display: inline-block; + width: 8px; + height: 8px; + margin: 0 4px; + background: rgba(255,255,255,0.5); + border-radius: 50%; + cursor: pointer; + } + + .hero-dots .active { + background: white; + } + +.hero-logo { + background: #ffffff; + padding: 5px 2px; + border-radius: 10px; + display: inline-flex; + align-items: center; + gap: 5px; + box-shadow: 0 6px 20px rgba(0,0,0,0.06); + +} + + .hero-logo img { + height: 30px; + margin-right: 10px; + } + +/*Layanan*/ + +.service-card-link { + display: block; + text-decoration: none !important; + color: inherit; +} + + .service-card-link:hover, + .service-card-link:focus, + .service-card-link:active, + .service-card-link:visited { + text-decoration: none !important; + color: inherit; + } + +.service-card { + position: relative; + height: 300px; + border-radius: 20px; + overflow: hidden; + color: #fff; + cursor: pointer; +} + + +.service-bg { + position: absolute; + inset: 0; + background-size: cover; + background-position: center; + transition: transform 0.5s ease; +} + + +.service-overlay { + position: absolute; + inset: 0; + background: rgba(0,0,0,0.4); + transition: 0.3s ease; +} + + +.service-content { + position: relative; + z-index: 2; + padding: 24px; + height: 100%; + display: flex; + flex-direction: column; + justify-content: space-between; + text-decoration: none !important; +} + + .service-content *, + .service-card * { + text-decoration: none !important; + } + +.top-content { + display: flex; + align-items: center; + gap: 16px; +} + +.icon { + width: 70px; + height: 70px; + background: #fff; + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; + flex-shrink: 0; +} + +.title { + font-size: 32px; + font-weight: 700; + color: #fff; + margin: 0; + text-decoration: none !important; +} + +.service-list { + opacity: 0; + transform: translateY(10px); + transition: all .3s ease; + font-size: 11px; + line-height: 1.7; + margin-top: auto; +} + + .service-list p { + margin: 0; + color: #fff; + text-decoration: none !important; + } + +.service-card:hover .service-bg { + transform: scale(1.1); +} + +.service-card:hover .service-overlay { + background: rgba(0,0,0,0.6); +} + +.service-card:hover .service-list { + opacity: 1; + transform: translateY(0); +} + +/*About*/ + +.about-video { + border-radius: 20px; + overflow: hidden; + background: black; +} + + .about-video iframe { + width: 100%; + height: 350px; + } + +.badge-about { + display: inline-block; + padding: 6px 14px; + border-radius: 999px; + border: 1px solid #3b82f6; + color: #3b82f6; + font-size: 12px; + margin-bottom: 10px; +} + +.about-logo img { + height: 30px; + margin-right: 10px; +} + +.about-item { + display: flex; + align-items: center; + gap: 10px; +} + + .about-item i { + width: 40px; + height: 40px; + background: #f1f5f9; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + } + +.section-about .btn { + border-radius: 999px; +} +/*Data Capaian*/ + +.section-capaian { + padding: 60px 0; + background-color: #EAF1FF; +} + +.capaian-header { + display: flex; + align-items: center; + text-align: center; + margin-bottom: 50px; + color: #718096; + font-size: 0.85rem; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 1px; +} + + .capaian-header hr { + flex-grow: 1; + border: none; + border-top: 1px solid #cbd5e0; + margin: 0 20px; + opacity: 0.5; + } + + +.card-body { + margin-left: 50px; + margin-right: 50px; +} + +.stat-number { + font-size: 4rem; + font-weight: 800; + color: #1a202c; + line-height: 1; + margin-bottom: 15px; +} + +.stat-desc { + color: #4a5568; + font-size: 0.9rem; + font-weight: 500; + line-height: 1.5; + max-width: 80%; + margin: 0 auto; +} + +.text-column { + display: flex; + align-items: baseline; + justify-content: center; + gap: 6px; +} + +/*Kompetensi Kami*/ + +.swiper { + padding: 20px; +} +.swiper-wrapper { + transition-timing-function: linear !important; +} +.swiper-slide { + width: 280px !important; +} + +.card-custom { + position: relative; + border-radius: 20px; + overflow: hidden; + cursor: pointer; +} + + .card-custom img { + width: 100%; + height: 350px; + object-fit: cover; + transition: 0.4s ease; + filter: brightness(0.7); + } + +.top-content { + position: absolute; + top: 20px; + left: 20px; + display: flex; + align-items: center; + gap: 12px; + color: white; +} + +.icon { + background: white; + color: white; + width: 50px; + height: 50px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + font-size: 18px; + box-shadow: 0 4px 10px rgba(0,0,0,0.3); +} + +.title { + margin: 0; + font-weight: 600; + font-size: 15px; + color: rgba(255,255,255,0.95); + text-shadow: 0 2px 6px rgba(0,0,0,0.5); +} + +.overlay { + position: absolute; + inset: 0; + padding: 20px; + z-index: 2; +} + +.overlay-hover { + position: absolute; + inset: 0; + background: rgba(0,0,0,0.75); + color: white; + padding: 20px; + display: flex; + flex-direction: column; + justify-content: center; + opacity: 0; + transform: translateY(20px); + transition: 0.4s ease; + z-index: 3; +} + + .overlay-hover ul { + padding-left: 18px; + font-size: 14px; + } + +.card-custom:hover img { + transform: scale(1.1); +} + +.card-custom:hover .overlay-hover { + opacity: 1; + transform: translateY(0); +} + +.card-custom:hover .overlay { + opacity: 0; +} + +.swiper-wrapper { + transition-timing-function: linear !important; +} + +/* pause */ +.mySwiper.pause .swiper-wrapper { + transition-property: none !important; +} +/*Infografis*/ + +.infographic-wrapper { + max-width: 900px; + margin: 0 auto; +} + +.infographic-img { + width: 100%; +} + +/*Tahapan Pengujian*/ + +.sticky-title { + position: sticky; + margin-top: 50px; +} + +.stepper { + position: relative; + padding-left: 30px; +} + + .stepper::before { + content: ""; + position: absolute; + left: 10px; + top: 0; + width: 2px; + height: 100%; + background: #ddd; + } + +.step { + position: relative; + margin-bottom: 50px; +} + +.step-dot { + position: absolute; + left: -2px; + width: 20px; + height: 20px; + background: #0d6efd; + border-radius: 50%; +} + +.step-content { + padding-left: 30px; +} + + .step-content h5 { + margin-bottom: 5px; + font-weight: 600; + } + + +.timeline-section { + padding: 80px 0; +} + +.timeline-left { + position: sticky; + top: 200px; +} + + .timeline-left h4 { + font-weight: 500; + color: #1b2b44; + } + +.timeline-wrapper { + background: white; + border-radius: 25px; + padding: 40px; +} + +.timeline-item { + display: flex; + gap: 25px; + position: relative; +} + +.timeline-line { + position: relative; + width: 40px; + flex-shrink: 0; +} + + .timeline-line::before { + content: ""; + position: absolute; + left: 50%; + top: 0; + width: 3px; + height: 100%; + background: #cbd5e1; + transform: translateX(-50%); + } + + .timeline-line span { + position: absolute; + left: 50%; + top: 0; + transform: translate(-50%, 0); + background: #1e5bd8; + color: #fff; + width: 40px; + height: 40px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + font-weight: 600; + z-index: 2; + } + +.timeline-content { + padding-bottom: 40px; +} + + .timeline-content h5 { + font-weight: 600; + margin-bottom: 10px; + } + + .timeline-content p { + color: #555; + line-height: 1.6; + } + +.timeline-item:last-child .timeline-line::before { + height: 0; +} + +/*Berita*/ +.featured-img { + width: 100%; + height: 320px; + object-fit: cover; + border-radius: 12px; +} + +.landing-item { + gap: 12px; +} + +.landing-img { + width: 90px; + height: 70px; + object-fit: cover; + border-radius: 10px; + flex-shrink: 0; +} + +.landing-title { + font-size: 14px; + font-weight: 600; + line-height: 1.4; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + overflow: hidden; +} + + +/*Mitra Kami*/ +.mitra { + overflow: hidden; +} + +.logo-slider { + display: flex; + flex-direction: column; + gap: 30px; +} + +.logo-track { + display: flex; + width: max-content; +} + +.logo-group { + display: flex; + gap: 60px; + margin-right: 60px; +} + + .logo-group img { + height: 40px; + object-fit: contain; + opacity: 0.8; + transition: 0.3s; + } + + .logo-group img:hover { + opacity: 1; + transform: scale(1.05); + } + +.move-right { + animation: scrollRight 50s linear infinite; +} + +.move-left { + animation: scrollLeft 50s linear infinite; +} + +@keyframes scrollRight { + from { + transform: translateX(-50%); + } + + to { + transform: translateX(0); + } +} + +@keyframes scrollLeft { + from { + transform: translateX(0); + } + + to { + transform: translateX(-50%); + } +} + +/*FAQ*/ + +/*.faq-section { + background-color: #0b2a4a; +}*/ + + + +/*Ulasan Pelanggan*/ +.testimonial-title { + font-weight: 600; + color: #1b2b44; +} + +.testimonial-card-wrapper { + display: flex; + gap: 50px; + margin-top: 30px; +} +.testimonial-card { + background: white; + border-radius: 20px; + padding: 25px; + height: 100%; +} + +.stars { + color: #1e5bd8; + font-size: 22px; + letter-spacing: 3px; +} + +.testimonial-text { + color: #4a5568; + font-size: 15px; + line-height: 1.6; +} + +.avatar { + width: 45px; + height: 45px; + border-radius: 50%; +} + +.name { + font-weight: 600; + color: #1b2b44; +} + +.company { + font-size: 14px; + color: #6b7280; +} + +.testimonial-scroll { + overflow-x: auto; + padding-bottom: 10px; +} + + .testimonial-scroll::-webkit-scrollbar { + display: none; + } + +.testimonial-card { + min-width: 320px; +} + +/*Video*/ + +.section-video { + width: 100%; + padding: 60px 0; +} + +.video-embed { + border-radius: 20px; + overflow: hidden; + box-shadow: 0 10px 30px rgba(0,0,0,0.08); +} + + .video-embed iframe { + width: 100%; + height: 260px; + display: block; + } + +.section-video .btn { + border-radius: 999px; + padding: 10px 26px; + font-weight: 500; + transition: 0.25s; +} + + .section-video .btn:hover { + background: #111827; + color: #fff; + } + +/*Galeri*/ + +.section-galeri { + background: #EAF1FF; + border-radius: 8px; +} + +.galeri-scroll { + display: flex; + gap: 20px; + overflow-x: auto; + padding-bottom: 10px; + scroll-behavior: smooth; +} + .galeri-scroll::-webkit-scrollbar { + height: 6px; + } + + .galeri-scroll::-webkit-scrollbar-thumb { + background: #d1d5db; + border-radius: 10px; + } + +.galeri-item { + min-width: 300px; + flex-shrink: 0; + scroll-snap-align: start; +} + + .galeri-item img { + width: 100%; + height: 220px; + object-fit: cover; + border-radius: 20px; + transition: 0.3s ease; + } + + .galeri-item:hover img { + transform: scale(1.05); + } + +.galeri-scroll { + scroll-snap-type: x mandatory; +} + +@media (max-width: 768px) { + .galeri-item { + min-width: 240px; + } +} \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/kontak.css b/wwwroot/webnew/cssnew/kontak.css new file mode 100644 index 0000000..a1fedf9 --- /dev/null +++ b/wwwroot/webnew/cssnew/kontak.css @@ -0,0 +1,70 @@ +.kontak-section { + padding: 60px 0; +} + + +.kontak-text { + font-size: 18px; + color: #121B2B; + margin-bottom: 20px; +} + +.map-wrapper { + width: 100%; + height: 350px; + border-radius: 16px; + overflow: hidden; + border: 1px solid #e5e7eb; +} + + .map-wrapper iframe { + width: 100%; + height: 100%; + border: 0; + } + +.kontak-card { + background: #ffffff; + border-radius: 16px; + padding: 25px; + border: 1px solid #e5e7eb; + transition: 0.25s; +} + + .kontak-card:hover { + transform: translateY(-4px); + box-shadow: 0 12px 24px rgba(0,0,0,0.06); + } + +.icon-circle { + width: 55px; + height: 55px; + background: #2563eb; + color: white; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + margin: 0 0 12px; +} + + .icon-circle i { + font-size: 20px; + } + +.kontak-card h6 { + margin-bottom: 6px; + font-size: 14px; +} + +.kontak-card p { + font-size: 13px; + color: #6b7280; + margin: 0; +} + +@media (max-width: 768px) { + .map-wrapper iframe { + height: 250px; + } +} diff --git a/wwwroot/webnew/cssnew/layanan/detailitem.css b/wwwroot/webnew/cssnew/layanan/detailitem.css new file mode 100644 index 0000000..4aac04d --- /dev/null +++ b/wwwroot/webnew/cssnew/layanan/detailitem.css @@ -0,0 +1,156 @@ + +body { + background: #f5f7fb; +} + +.page-title { + font-weight: 700; + font-size: 22px; + color: #111827; +} + +.info-card { + background: #ffffff; + border-radius: 16px; + padding: 20px; + border: 1px solid #e5e7eb; + box-shadow: 0 4px 15px rgba(0,0,0,0.04); + display: flex; + gap: 40px; + flex-wrap: wrap; +} + +.info-item { + display: flex; + flex-direction: column; +} + +.label { + font-size: 12px; + color: #6b7280; + margin-bottom: 4px; +} + +.value { + font-weight: 600; + font-size: 14px; + color: #111827; +} + +.table-card { + background: #ffffff; + border-radius: 16px; + padding: 20px; + border: 1px solid #e5e7eb; + box-shadow: 0 6px 20px rgba(0,0,0,0.04); +} + +.table-header { + display: flex; + justify-content: flex-end; + margin-bottom: 15px; +} + + .table-header input { + border: 1px solid #e5e7eb; + border-radius: 999px; + padding: 8px 14px; + font-size: 13px; + width: 220px; + } + + .table-header input:focus { + outline: none; + border-color: #2563eb; + } + +.custom-table { + width: 100%; + border-collapse: separate; + border-spacing: 0; +} + + .custom-table thead { + background: #f3f4f6; + } + + .custom-table th { + font-size: 12px; + font-weight: 600; + color: #374151; + padding: 10px; + border: none; + } + + .custom-table td { + font-size: 13px; + padding: 10px; + color: #4b5563; + border-top: 1px solid #f1f5f9; + } + + .custom-table tbody tr:nth-child(even) { + background: #fafafa; + } + + .custom-table tbody tr:hover { + background: #eef6ff; + } + +.total-row { + background: #f9fafb; + font-weight: 600; +} + + .total-row td { + border-top: 2px solid #e5e7eb; + } + +.back-wrapper { + display: flex; + justify-content: center; + margin-top: 40px; +} + +.btn-back { + display: inline-flex; + align-items: center; + gap: 8px; + padding: 10px 22px; + border-radius: 999px; + border: 1px solid #d1d5db; + background: #ffffff; + color: #374151; + text-decoration: none; + font-weight: 500; + transition: 0.2s; +} + + .btn-back:hover { + background: #f9fafb; + border-color: #9ca3af; + } + + .btn-back .arrow { + transition: 0.2s; + } + + .btn-back:hover .arrow { + transform: translateX(-3px); + } + +.btn-export { + background: #ffffff; + color: #2563eb; + border: 1px solid #2563eb; + border-radius: 999px; + padding: 6px 14px; + font-size: 13px; + margin-right: 10px; + cursor: pointer; +} + + .btn-export:hover { + background: #374151; + color: #ffffff; + } \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/layanan/detaillayanan.css b/wwwroot/webnew/cssnew/layanan/detaillayanan.css new file mode 100644 index 0000000..57398ad --- /dev/null +++ b/wwwroot/webnew/cssnew/layanan/detaillayanan.css @@ -0,0 +1,192 @@ + + +.container { + max-width: 1100px; +} + +.service-card { + background: #ffffff; + border-radius: 20px; + padding: 30px; + border: 1px solid #e5e7eb; + box-shadow: 0 8px 25px rgba(0,0,0,0.04); + height: 100%; +} + +#judul { + font-weight: 700; + font-size: 28px; + margin-bottom: 12px; + color: #111827; +} + +#deskripsi-singkat { + font-size: 14px; + color: #6b7280; + margin-bottom: 14px; + text-align: justify; +} + +#deskripsi { + padding-left: 18px; + color: #374151; + font-size: 14px; +} + + #deskripsi li { + margin-bottom: 6px; + } + +#gambar { + width: 100%; + max-height: 260px; + object-fit: cover; + border-radius: 16px; + box-shadow: 0 8px 20px rgba(0,0,0,0.06); +} + +.table-card { + background: #ffffff; + border-radius: 16px; + padding: 20px; + border: 1px solid #e5e7eb; + box-shadow: 0 6px 20px rgba(0,0,0,0.04); +} + +.table-header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 15px; +} + + .table-header h5 { + font-size: 14px; + font-weight: 600; + } + + .table-header input { + border: 1px solid #e5e7eb; + border-radius: 999px; + padding: 8px 14px; + font-size: 13px; + width: 220px; + transition: 0.2s; + } + + .table-header input:focus { + outline: none; + border-color: #2563eb; + box-shadow: 0 0 0 3px rgba(37,99,235,0.1); + } + +.custom-table { + margin: 0; + border-collapse: separate; + border-spacing: 0; +} + + .custom-table thead { + background: #f3f4f6; + } + + .custom-table thead th { + font-size: 12px; + font-weight: 600; + color: #374151; + padding: 10px; + border: none; + } + + .custom-table tbody td { + font-size: 13px; + padding: 10px; + color: #4b5563; + border-top: 1px solid #f1f5f9; + } + + .custom-table tbody tr:nth-child(even) { + background: #fafafa; + } + + .custom-table tbody tr:hover { + background: #eef6ff; + } + + .custom-table .btn { + border-radius: 999px; + font-size: 12px; + padding: 5px 12px; + } + +@media (max-width: 768px) { + .table-header { + flex-direction: column; + gap: 10px; + align-items: flex-start; + } + + .table-header input { + width: 100%; + } +} + +.btn-export { + background: #ffffff; + color: #2563eb; + border: 1px solid #2563eb; + border-radius: 999px; + padding: 6px 14px; + font-size: 13px; + margin-right: 10px; + cursor: pointer; +} + + .btn-export:hover { + background: #374151; + color: #ffffff; + } + +.pagination-wrapper { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 14px; + flex-wrap: wrap; + gap: 10px; +} + +.pagination-info { + font-size: 13px; + color: #6b7280; +} + +.pagination-controls { + display: flex; + gap: 6px; +} + +.page-btn { + padding: 6px 10px; + border-radius: 8px; + border: 1px solid #e5e7eb; + background: #fff; + cursor: pointer; + font-size: 13px; + min-width: 32px; +} + + .page-btn.active { + background: #2563eb; + color: #fff; + border-color: #2563eb; + } + + .page-btn:hover { + background: #f3f4f6; + } + + .page-btn.disabled { + opacity: 0.4; + pointer-events: none; + } \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/layanan/layanan.css b/wwwroot/webnew/cssnew/layanan/layanan.css new file mode 100644 index 0000000..a91b26b --- /dev/null +++ b/wwwroot/webnew/cssnew/layanan/layanan.css @@ -0,0 +1,120 @@ +.tahap-scroll-wrapper { + width: 100%; + overflow-x: auto; + overflow-y: hidden; + -webkit-overflow-scrolling: touch; + padding-bottom: 10px; +} + +.tahap-image { + width: 100%; + max-width: 1000px; + border-radius: 24px; + display: block; + margin: 0 auto; +} + +.mobile-hint { + font-size: 12px; + color: #6b7280; + margin-top: 10px; +} + +.tahap-image { + width: 100%; + max-width: 800px; + border-radius: 24px; +} + +.layanan-card { + background: #ffffff; + border-radius: 18px; + padding: 16px; + height: 100%; + display: flex; + flex-direction: column; + gap: 12px; + border: 1px solid #e5e7eb; + box-shadow: 0 2px 8px rgba(0,0,0,0.04); + transition: all 0.25s ease; +} + + .layanan-card:hover { + transform: translateY(-6px); + box-shadow: 0 12px 30px rgba(0,0,0,0.08); + } + + .layanan-card .title { + font-size: 18px; + font-weight: 600; + margin-bottom: 15px; + } + + .layanan-card .card-img { + width: 100%; + height: 180px; + object-fit: cover; + border-radius: 16px; + margin-bottom: 15px; + } + + .layanan-card .desc { + font-size: 14px; + color: #6b7280; + margin-bottom: 10px; + border-radius: 28px; + } + + .layanan-card ul { + padding-left: 18px; + margin-bottom: 20px; + } + + .layanan-card ul li { + font-size: 14px; + margin-bottom: 4px; + } + +.card-footer-custom { + display: flex; + justify-content: space-between; + align-items: center; + border: 1px solid #e5e7eb; + border-radius: 30px; + padding: 10px 12px; +} + +.arrow-btn { + width: 36px; + height: 36px; + border-radius: 50%; + border: 1px solid #e5e7eb; + display: flex; + align-items: center; + justify-content: center; + color: #2563eb; + font-size: 16px; + transition: 0.3s; +} + +.layanan-card:hover .arrow-btn { + background: #85AAF4; +} + + +@media (max-width: 768px) { + + .tahap-image { + width: 700px; + max-width: none; + } + + .tahap-scroll-wrapper::-webkit-scrollbar { + height: 6px; + } + + .tahap-scroll-wrapper::-webkit-scrollbar-thumb { + background: #cbd5e1; + border-radius: 20px; + } +} \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/layout.css b/wwwroot/webnew/cssnew/layout.css new file mode 100644 index 0000000..b10d3c8 --- /dev/null +++ b/wwwroot/webnew/cssnew/layout.css @@ -0,0 +1,45 @@ +a.navbar-brand { + white-space: normal; + text-align: center; + word-break: break-all; +} + +a { + color: #0077cc; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.nav-pills .nav-link.active, .nav-pills .show > .nav-link { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.border-top { + border-top: 1px solid #e5e5e5; +} +.border-bottom { + border-bottom: 1px solid #e5e5e5; +} + +.box-shadow { + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); +} + +button.accept-policy { + font-size: 1rem; + line-height: inherit; +} + +.footer { + position: absolute; + bottom: 0; + width: 100%; + white-space: nowrap; + line-height: 60px; +} diff --git a/wwwroot/webnew/cssnew/regulasi.css b/wwwroot/webnew/cssnew/regulasi.css new file mode 100644 index 0000000..0bf3a53 --- /dev/null +++ b/wwwroot/webnew/cssnew/regulasi.css @@ -0,0 +1,206 @@ +body { + background-color: #f9f9f9; +} + +.regulasi-tabs { + display: flex; + justify-content: center; + gap: 14px; + margin-bottom: 28px; +} + +.filter-btn { + min-width: 180px; + display: flex; + align-items: center; + justify-content: center; + gap: 10px; + border: 1px solid #e5e7eb; + border-radius: 18px; + padding: 14px 24px; + background: #ffffff; + color: #64748b; + font-weight: 600; + transition: all .25s ease; + box-shadow: 0 2px 8px rgba(0,0,0,.04); +} + + .filter-btn i { + font-size: 18px; + } + + .filter-btn:hover { + transform: translateY(-2px); + box-shadow: 0 8px 20px rgba(0,0,0,.08); + } + + .filter-btn.active { + background: linear-gradient(135deg,#2563eb,#3b82f6); + color: #fff; + border-color: transparent; + box-shadow: 0 10px 25px rgba(37,99,235,.25); + } + + .filter-btn.active i { + color: #fff; + } + +@media (max-width:768px) { + + .regulasi-tabs { + flex-direction: column; + align-items: center; + } + + .filter-btn { + width: 100%; + max-width: 300px; + } +} + + +#search, +#tahun { + border-radius: 14px; + border: 1px solid #e5e7eb; + padding: 10px 14px; + font-size: 14px; + transition: 0.2s; +} + + #search:focus, + #tahun:focus { + border-color: #3b82f6; + box-shadow: 0 0 0 3px rgba(59,130,246,0.15); + } + + +#list-regulasi .card { + border: none !important; + border-radius: 18px !important; + padding: 18px 20px !important; + background: #ffffff; + box-shadow: 0 4px 20px rgba(0,0,0,0.05); + transition: all 0.25s ease; +} + + #list-regulasi .card:hover { + transform: translateY(-4px); + box-shadow: 0 12px 30px rgba(0,0,0,0.08); + } + + +.file-icon { + background: #e8f0ff; + padding: 10px; + border-radius: 12px; +} + +#list-regulasi h6 { + font-weight: 600; + font-size: 15px; +} + +#list-regulasi small { + font-size: 13px; + color: #6b7280; +} + +#list-regulasi .btn-light { + border-radius: 20px; + background: #f3f4f6; + border: none; + font-size: 13px; + padding: 6px 14px; + transition: 0.2s; +} + + #list-regulasi .btn-light:hover { + background: #e5e7eb; + } + +#list-regulasi .btn-primary { + border-radius: 20px; + font-size: 13px; + padding: 6px 16px; + border: none; + background: #3b82f6; + color: #fff; + /* background: linear-gradient(135deg, #3b82f6, #2563eb);*/ + /* box-shadow: 0 6px 16px rgba(59,130,246,0.25);*/ +} + + #list-regulasi .btn-primary:hover { + opacity: 0.9; + } + +.lampiran-item { + display: flex; + justify-content: space-between; + align-items: center; + padding: 12px 16px; + border-radius: 12px; + background: #f8fafc; + margin-bottom: 10px; +} + + .lampiran-item span { + font-size: 14px; + font-weight: 500; + } + + .lampiran-item i { + margin-right: 8px; + } + +.btn-lampiran { + display: flex; + align-items: center; + gap: 6px; +} + + .btn-lampiran i { + transition: transform .25s ease; + } + + .btn-lampiran:not(.collapsed) i { + transform: rotate(180deg); + } + +.regulasi-toggle { + cursor: pointer; +} + + .regulasi-toggle:hover h6 { + color: #2563eb; + } + + .regulasi-toggle:hover .file-icon { + transform: scale(1.05); + } + +.file-icon { + transition: all .2s ease; +} + +@media (max-width: 768px) { + + .lampiran-list { + display: flex; + flex-direction: column; + gap: 12px; + } + + .lampiran-item { + width: 100%; + flex-direction: column; + align-items: flex-start; + gap: 12px; + } + + .lampiran-item .d-flex:last-child { + width: 100%; + justify-content: flex-end; + } +} + diff --git a/wwwroot/webnew/cssnew/sertifikat.css b/wwwroot/webnew/cssnew/sertifikat.css new file mode 100644 index 0000000..21dbbde --- /dev/null +++ b/wwwroot/webnew/cssnew/sertifikat.css @@ -0,0 +1,54 @@ + +.sertifikat-card { + background: #ffffff; + border-radius: 16px; + padding: 16px; + border: 1px solid #e5e7eb; +} + +.pdf-preview { + width: 100%; + height: 220px; + border-radius: 12px; + overflow: hidden; + border: 1px solid #e5e7eb; + margin-bottom: 10px; +} + + .pdf-preview iframe { + width: 100%; + height: 100%; + border: none; + } + +.sertifikat-card h6 { + font-size: 14px; + margin: 10px 0; +} + +.sertifikat-action { + display: flex; + gap: 10px; +} + +.btn-lihat { + flex: 1; + background: #f3f4f6; + border-radius: 8px; + padding: 8px; + font-size: 12px; + text-decoration: none; + color: #374151; + text-align: center; +} + +.btn-unduh { + flex: 1; + background: #2563eb; + color: white; + border-radius: 8px; + padding: 8px; + font-size: 12px; + text-decoration: none; + text-align: center; +} diff --git a/wwwroot/webnew/cssnew/site.css b/wwwroot/webnew/cssnew/site.css new file mode 100644 index 0000000..9511ca2 --- /dev/null +++ b/wwwroot/webnew/cssnew/site.css @@ -0,0 +1,35 @@ +html { + font-size: 14px; +} + +@media (min-width: 768px) { + html { + font-size: 16px; + } +} + +.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { + box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; +} + +html { + position: relative; + min-height: 100%; +} + +body { + margin-bottom: 60px; + font-family: 'Plus Jakarta Sans', sans-serif; +/* background-color: #EAF1FF;*/ + display: flex; + flex-direction: column; +} + +html, body { + height: 100%; +} + + +main { + flex: 1; +} \ No newline at end of file diff --git a/wwwroot/webnew/cssnew/tentangkami.css b/wwwroot/webnew/cssnew/tentangkami.css new file mode 100644 index 0000000..9ee1d81 --- /dev/null +++ b/wwwroot/webnew/cssnew/tentangkami.css @@ -0,0 +1,108 @@ + +.about-section { + padding: 0 50px; +} + +.about-card { + background: #1f4e79; + border-radius: 16px; + overflow: hidden; + color: white; + padding: 0; +} + +.organisasi-card { + border-radius: 16px; + overflow: hidden; + padding-bottom: 50px; +} + +.tentang-title { + text-align: center; + padding: 16px; + font-weight: 600; + margin: 0; +} + +.about-img { + width: 100%; + display: block; + border-radius: 16px; +} + +.value-section { + margin-top: 40px; + padding-top: 30px; + border-top: 1px solid #e5e7eb; + padding-bottom: 50px; +} + +.value-item { + display: flex; + gap: 10px; + flex-direction: column; + padding-bottom: 50px; + /* align-items: flex-start;*/ +} + + .value-item i { + font-size: 20px; + color: #1f4e79; + margin-top: 3px; + background: white; + padding: 8px; + border-radius: 100%; + } + + .value-item h6 { + margin: 0; + font-size: 14px; + } + + .value-item p { + font-size: 13px; + color: #6b7280; + margin: 2px 0 0; + } + + +.organisasi-card { + border-radius: 16px; + overflow: hidden; + padding-bottom: 50px; +} + +.organisasi-wrapper { + width: 100%; + overflow-x: auto; + overflow-y: hidden; + -webkit-overflow-scrolling: touch; + padding-bottom: 10px; +} + +.struktur-img { + width: 100%; + border-radius: 16px; + display: block; +} + +@media (max-width: 768px) { + + .about-section { + padding: 0 15px; + } + + .struktur-img { + width: 1000px; + max-width: none; + } + + .organisasi-wrapper::-webkit-scrollbar { + height: 6px; + } + + .organisasi-wrapper::-webkit-scrollbar-thumb { + background: #cbd5e1; + border-radius: 20px; + } +} diff --git a/wwwroot/webnew/cssnew/video.css b/wwwroot/webnew/cssnew/video.css new file mode 100644 index 0000000..533289d --- /dev/null +++ b/wwwroot/webnew/cssnew/video.css @@ -0,0 +1,109 @@ + +.video-card { + position: relative; + cursor: pointer; + overflow: hidden; + border-radius: 20px; + transition: 0.3s; +} + + .video-card img { + width: 100%; + height: 200px; + object-fit: cover; + border-radius: 20px; + transition: 0.3s; + } + + .video-card:hover { + transform: translateY(-5px); + } + + .video-card:hover img { + transform: scale(1.05); + } + +.video-overlay { + position: absolute; + inset: 0; + padding: 15px; + display: flex; + flex-direction: column; + justify-content: flex-start; + background: linear-gradient( to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100% ); +} + +.video-title { + color: #fff; + font-weight: 700; + font-size: 16px; + margin: 0; +} + +.video-subtitle { + color: #ddd; + font-size: 12px; + margin: 0; +} + +.play-btn { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 30px; + color: white; + background: rgba(255, 0, 0, 0.85); + border-radius: 50%; + padding: 12px 16px; +} + + +.video-modal { + display: none; + position: fixed; + z-index: 9999; + inset: 0; + background: rgba(0,0,0,0.85); + justify-content: center; + align-items: center; +} + +.video-content { + position: relative; + width: 80%; + max-width: 900px; +} + + .video-content iframe { + width: 100%; + height: 500px; + border-radius: 12px; + } + + +.close-btn { + position: absolute; + top: -35px; + right: 0; + font-size: 30px; + color: white; + cursor: pointer; +} + + +.youtube-wrapper { + position: relative; + width: 100%; + padding-bottom: 56.25%; /* 16:9 */ + overflow: hidden; + border-radius: 20px; +} + + .youtube-wrapper iframe { + position: absolute; + inset: 0; + width: 100%; + height: 100%; + border-radius: 20px; + } diff --git a/wwwroot/webnew/json/mitra.json b/wwwroot/webnew/json/mitra.json deleted file mode 100644 index 219ea8c..0000000 --- a/wwwroot/webnew/json/mitra.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "direction": "right", - "logos": [ - "/webnew/assets/image/logo/mitra/aeonmall.png", - "/webnew/assets/image/logo/mitra/ascott.webp", - "/webnew/assets/image/logo/mitra/astra.png", - "/webnew/assets/image/logo/mitra/pramita.jpg", - "/webnew/assets/image/logo/mitra/pakubuwono.png", - "/webnew/assets/image/logo/mitra/kalbe.png", - "/webnew/assets/image/logo/mitra/khongguan.png" - ] - }, - { - "direction": "left", - "logos": [ - "/webnew/assets/image/logo/mitra/paljaya.png", - "/webnew/assets/image/logo/mitra/biomedika.png", - "/webnew/assets/image/logo/mitra/logorspp.png", - "/webnew/assets/image/logo/mitra/lrt.png", - "/webnew/assets/image/logo/mitra/mayapada.png", - "/webnew/assets/image/logo/mitra/mcdonals.png", - "/webnew/assets/image/logo/mitra/moi.png" - ] - }, - { - "direction": "right", - "logos": [ - "/webnew/assets/image/logo/mitra/mrt.png", - "/webnew/assets/image/logo/mitra/prodia.jpg", - "/webnew/assets/image/logo/mitra/rscm.png", - "/webnew/assets/image/logo/mitra/sarinah.png", - "/webnew/assets/image/logo/mitra/ut.png", - "/webnew/assets/image/logo/mitra/yamaha.png", - "/webnew/assets/image/logo/mitra/bca.png" - ] - } -] \ No newline at end of file diff --git a/wwwroot/webnew/json/Layanan/air.json b/wwwroot/webnew/jsonlama/Layanan/air.json similarity index 96% rename from wwwroot/webnew/json/Layanan/air.json rename to wwwroot/webnew/jsonlama/Layanan/air.json index 8fe018f..f07d7f1 100644 --- a/wwwroot/webnew/json/Layanan/air.json +++ b/wwwroot/webnew/jsonlama/Layanan/air.json @@ -10,7 +10,7 @@ "Air Tanah, dan", "Air Perpipaan." ], - "gambar": "/webnew/assets/image/foto/pengujianair.jpeg", + "gambar": "/webnew/assetsnew/image/foto/1.jpeg", "table1": { "columns": [ "No", "Kode", "Output Hasil Uji", "Jenis Baku Mutu", "Tipe Pengujian", "Total Parameter", "Total Harga", "Aksi" ], diff --git a/wwwroot/webnew/json/Layanan/pcu.json b/wwwroot/webnew/jsonlama/Layanan/pcu.json similarity index 96% rename from wwwroot/webnew/json/Layanan/pcu.json rename to wwwroot/webnew/jsonlama/Layanan/pcu.json index 2a48438..7974147 100644 --- a/wwwroot/webnew/json/Layanan/pcu.json +++ b/wwwroot/webnew/jsonlama/Layanan/pcu.json @@ -4,7 +4,7 @@ "judulTable2": "Info Harga Per Parameter Air", "deskripsi-singkat": "Kegiatan laboratorium untuk memperoleh sampel air secara representatif dari sumber tertentu, seperti air permukaan, air tanah, air limbah, maupun air minum sesuai dengan standar dan prosedur yang berlaku oleh personel yang kompeten. Berdasarkan Permen LH No. 23 Tahun 2020, pengambilan contoh uji wajib dilakukan oleh laboratorium lingkungan sebagai bagian integral dari proses pengujian yang menentukan validitas, akurasi, ketertelusuran, ketidakberpihakan, serta menjamin keabsahan hasil uji laboratorium. Pengambilan contoh uji air di LLHD merupakan salah satu layanan yang telah terakreditasi oleh KAN. Beberapa pengujian laboratorium yang dapat dilakukan pada PCU air yaitu:", "deskripsi": [ "Air Limbah", "Air Tanah, maupun ", "Air Minum." ], - "gambar": "/webnew/assets/image/foto/samplingair.jpeg", + "gambar": "/webnew/assetsnew/image/foto/samplingair.jpeg", "table1": { "columns": [ "No", "Kode", "Output Hasil Uji", "Jenis Baku Mutu", "Tipe Pengujian", "Total Parameter", "Total Harga", "Aksi" ], diff --git a/wwwroot/webnew/json/Layanan/udara.json b/wwwroot/webnew/jsonlama/Layanan/udara.json similarity index 96% rename from wwwroot/webnew/json/Layanan/udara.json rename to wwwroot/webnew/jsonlama/Layanan/udara.json index 44c382a..69dd5c4 100644 --- a/wwwroot/webnew/json/Layanan/udara.json +++ b/wwwroot/webnew/jsonlama/Layanan/udara.json @@ -11,7 +11,7 @@ "Emisi Bergerak (kendaraan)", "SPKU (stasiun pemantau kualitas udara)" ], - "gambar": "/webnew/assets/image/foto/pengujianudara.jpeg", + "gambar": "/webnew/assetsnew/image/foto/pengujianudara.jpeg", "table1": { "columns": [ "Kode", "Output", "Jenis", "Tipe", "Total Parameter", "Total Harga", "Aksi" ], diff --git a/wwwroot/webnew/json/berita.json b/wwwroot/webnew/jsonlama/berita.json similarity index 87% rename from wwwroot/webnew/json/berita.json rename to wwwroot/webnew/jsonlama/berita.json index a84ad23..38bedbf 100644 --- a/wwwroot/webnew/json/berita.json +++ b/wwwroot/webnew/jsonlama/berita.json @@ -4,9 +4,9 @@ "judul": "Komitmen LLHD Terhadap Pemenuhan Permen LHK No.23 Tahun 2020", "tanggal": "2026-02-10", "gambar": [ - "/webnew/assets/image/foto/beritakomitmenllhd.png", - "/webnew/assets/image/foto/1.jpeg", - "/webnew/assets/image/foto/2.jpeg" + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/2.jpeg" ], "deskripsi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta dalam memenuhi standar regulasi laboratorium lingkungan.", "isi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta sebagai laboratorium lingkungan yang terdaftar di KLHK ditunjukkan pada upaya laboratorium dalam memenuhi Peraturan Menteri Lingkungan Hidup dan Kehutanan Republik Indonesia Nomor 23 Tahun 2020 tentang Laboratorium Lingkungan.\n\nDalam Lampiran II tentang Persyaratan Tambahan Laboratorium Lingkungan disebutkan bahwa 'Laboratorium Lingkungan harus melakukan sendiri pengambilan contoh uji parameter lingkungan'. Oleh karena itu, mulai tahun 2025 secara bertahap LLHD melakukan pengambilan contoh uji air pada beberapa pelanggannya, seperti RS Mata JEC Menteng, PT Gudang Garam, PT Yamaha Music, PT Frisian Flag Indonesia, RS MMC, PT Puri Arta Prima, dan lain sebagainya.\n\nLangkah ini merupakan bentuk keseriusan LLHD dalam menjamin kualitas data hasil pengujian, serta memastikan bahwa seluruh proses pengambilan dan pengujian sampel dilakukan sesuai dengan standar teknis dan regulasi yang berlaku.\n\nLLHD juga berkomitmen untuk terus meningkatkan kompetensi personel laboratorium, memperkuat sistem pelayanan yang terintegrasi, serta menjalin komunikasi yang baik dengan para pemangku kepentingan guna mendukung perlindungan lingkungan hidup." @@ -16,9 +16,9 @@ "judul": "Peningkatan Kualitas Pengujian Laboratorium Lingkungan", "tanggal": "2026-03-04", "gambar": [ - "/webnew/assets/image/foto/1.jpeg", - "/webnew/assets/image/foto/beritakomitmenllhd.png", - "/webnew/assets/image/foto/2.jpeg" + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/2.jpeg" ], "deskripsi": "Upaya peningkatan kualitas layanan pengujian laboratorium melalui pengembangan parameter dan teknologi.", "isi": "Laboratorium Lingkungan Hidup Daerah (LLHD) terus melakukan peningkatan kualitas layanan pengujian melalui pengembangan parameter uji serta penggunaan teknologi yang lebih modern dan terkalibrasi.\n\nDengan adanya peningkatan ini, LLHD mampu memberikan hasil pengujian yang lebih akurat, cepat, dan dapat dipertanggungjawabkan sesuai dengan standar nasional maupun internasional.\n\nSelain itu, peningkatan kualitas juga didukung oleh pelatihan sumber daya manusia secara berkala serta penerapan sistem manajemen mutu laboratorium yang ketat." @@ -28,9 +28,9 @@ "judul": "Pengembangan Layanan Pengujian Udara dan Kebisingan", "tanggal": "2026-03-04", "gambar": [ - "/webnew/assets/image/foto/2.jpeg", - "/webnew/assets/image/foto/1.jpeg", - "/webnew/assets/image/foto/beritakomitmenllhd.png" + "/webnew/assetsnew/image/foto/2.jpeg", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png" ], "deskripsi": "Layanan pengujian udara ambien, emisi, dan kebisingan semakin diperluas untuk mendukung pengendalian lingkungan.", "isi": "LLHD terus mengembangkan layanan pengujian udara, baik udara ambien maupun emisi dari berbagai sumber seperti industri dan kendaraan.\n\nSelain itu, layanan pengujian kebisingan lingkungan juga menjadi salah satu fokus utama dalam mendukung pengendalian pencemaran lingkungan.\n\nPengujian dilakukan menggunakan metode yang tervalidasi serta peralatan yang terkalibrasi guna memastikan keakuratan hasil." @@ -40,9 +40,9 @@ "judul": "Komitmen LLHD Terhadap Pemenuhan Permen LHK No.23 Tahun 2020", "tanggal": "2026-02-10", "gambar": [ - "/webnew/assets/image/foto/beritakomitmenllhd.png", - "/webnew/assets/image/foto/1.jpeg", - "/webnew/assets/image/foto/2.jpeg" + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/2.jpeg" ], "deskripsi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta dalam memenuhi standar regulasi laboratorium lingkungan.", "isi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta sebagai laboratorium lingkungan yang terdaftar di KLHK ditunjukkan pada upaya laboratorium dalam memenuhi Peraturan Menteri Lingkungan Hidup dan Kehutanan Republik Indonesia Nomor 23 Tahun 2020 tentang Laboratorium Lingkungan.\n\nDalam Lampiran II tentang Persyaratan Tambahan Laboratorium Lingkungan disebutkan bahwa 'Laboratorium Lingkungan harus melakukan sendiri pengambilan contoh uji parameter lingkungan'. Oleh karena itu, mulai tahun 2025 secara bertahap LLHD melakukan pengambilan contoh uji air pada beberapa pelanggannya, seperti RS Mata JEC Menteng, PT Gudang Garam, PT Yamaha Music, PT Frisian Flag Indonesia, RS MMC, PT Puri Arta Prima, dan lain sebagainya.\n\nLangkah ini merupakan bentuk keseriusan LLHD dalam menjamin kualitas data hasil pengujian, serta memastikan bahwa seluruh proses pengambilan dan pengujian sampel dilakukan sesuai dengan standar teknis dan regulasi yang berlaku.\n\nLLHD juga berkomitmen untuk terus meningkatkan kompetensi personel laboratorium, memperkuat sistem pelayanan yang terintegrasi, serta menjalin komunikasi yang baik dengan para pemangku kepentingan guna mendukung perlindungan lingkungan hidup." @@ -52,9 +52,9 @@ "judul": "Peningkatan Kualitas Pengujian Laboratorium Lingkungan", "tanggal": "2026-03-04", "gambar": [ - "/webnew/assets/image/foto/1.jpeg", - "/webnew/assets/image/foto/beritakomitmenllhd.png", - "/webnew/assets/image/foto/2.jpeg" + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/2.jpeg" ], "deskripsi": "Upaya peningkatan kualitas layanan pengujian laboratorium melalui pengembangan parameter dan teknologi.", "isi": "Laboratorium Lingkungan Hidup Daerah (LLHD) terus melakukan peningkatan kualitas layanan pengujian melalui pengembangan parameter uji serta penggunaan teknologi yang lebih modern dan terkalibrasi.\n\nDengan adanya peningkatan ini, LLHD mampu memberikan hasil pengujian yang lebih akurat, cepat, dan dapat dipertanggungjawabkan sesuai dengan standar nasional maupun internasional.\n\nSelain itu, peningkatan kualitas juga didukung oleh pelatihan sumber daya manusia secara berkala serta penerapan sistem manajemen mutu laboratorium yang ketat." @@ -64,9 +64,9 @@ "judul": "Pengembangan Layanan Pengujian Udara dan Kebisingan", "tanggal": "2026-03-04", "gambar": [ - "/webnew/assets/image/foto/2.jpeg", - "/webnew/assets/image/foto/1.jpeg", - "/webnew/assets/image/foto/beritakomitmenllhd.png" + "/webnew/assetsnew/image/foto/2.jpeg", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png" ], "deskripsi": "Layanan pengujian udara ambien, emisi, dan kebisingan semakin diperluas untuk mendukung pengendalian lingkungan.", "isi": "LLHD terus mengembangkan layanan pengujian udara, baik udara ambien maupun emisi dari berbagai sumber seperti industri dan kendaraan.\n\nSelain itu, layanan pengujian kebisingan lingkungan juga menjadi salah satu fokus utama dalam mendukung pengendalian pencemaran lingkungan.\n\nPengujian dilakukan menggunakan metode yang tervalidasi serta peralatan yang terkalibrasi guna memastikan keakuratan hasil." diff --git a/wwwroot/webnew/json/detail-item.json b/wwwroot/webnew/jsonlama/detail-item.json similarity index 100% rename from wwwroot/webnew/json/detail-item.json rename to wwwroot/webnew/jsonlama/detail-item.json diff --git a/wwwroot/webnew/json/galeri.json b/wwwroot/webnew/jsonlama/galeri.json similarity index 64% rename from wwwroot/webnew/json/galeri.json rename to wwwroot/webnew/jsonlama/galeri.json index 1d5f534..3f8b59f 100644 --- a/wwwroot/webnew/json/galeri.json +++ b/wwwroot/webnew/jsonlama/galeri.json @@ -3,36 +3,36 @@ "id": 1, "judul": "Deskripsi Foto 1", "deskripsi": "Deskripsi Foto 1", - "gambar": "/webnew/assets/image/foto/1.jpeg" + "gambar": "/webnew/assetsnew/image/foto/1.jpeg" }, { "id": 2, "judul": "Deskripsi Foto 2", "deskripsi": "Deskripsi Foto 2", - "gambar": "/webnew/assets/image/foto/2.jpeg" + "gambar": "/webnew/assetsnew/image/foto/2.jpeg" }, { "id": 3, "judul": "Deskripsi Foto 3", "deskripsi": "Deskripsi Foto 3", - "gambar": "/webnew/assets/image/foto/3.jpeg" + "gambar": "/webnew/assetsnew/image/foto/3.jpeg" }, { "id": 4, "judul": "Deskripsi Foto 4", "deskripsi": "Deskripsi Foto 4", - "gambar": "/webnew/assets/image/foto/4.jpeg" + "gambar": "/webnew/assetsnew/image/foto/4.jpeg" }, { "id": 5, "judul": "Deskripsi Foto 5", "deskripsi": "Deskripsi Foto 5", - "gambar": "/webnew/assets/image/foto/5.jpeg" + "gambar": "/webnew/assetsnew/image/foto/5.jpeg" }, { "id": 6, "judul": "Deskripsi Foto 6", "deskripsi": "Deskripsi Foto 6", - "gambar": "/webnew/assets/image/foto/6.jpeg" + "gambar": "/webnew/assetsnew/image/foto/6.jpeg" } ] \ No newline at end of file diff --git a/wwwroot/webnew/jsonlama/mitra.json b/wwwroot/webnew/jsonlama/mitra.json new file mode 100644 index 0000000..92d6e69 --- /dev/null +++ b/wwwroot/webnew/jsonlama/mitra.json @@ -0,0 +1,38 @@ +[ + { + "direction": "right", + "logos": [ + "/webnew/assetsnew/image/logo/mitra/aeonmall.png", + "/webnew/assetsnew/image/logo/mitra/ascott.webp", + "/webnew/assetsnew/image/logo/mitra/astra.png", + "/webnew/assetsnew/image/logo/mitra/pramita.jpg", + "/webnew/assetsnew/image/logo/mitra/pakubuwono.png", + "/webnew/assetsnew/image/logo/mitra/kalbe.png", + "/webnew/assetsnew/image/logo/mitra/khongguan.png" + ] + }, + { + "direction": "left", + "logos": [ + "/webnew/assetsnew/image/logo/mitra/paljaya.png", + "/webnew/assetsnew/image/logo/mitra/biomedika.png", + "/webnew/assetsnew/image/logo/mitra/logorspp.png", + "/webnew/assetsnew/image/logo/mitra/lrt.png", + "/webnew/assetsnew/image/logo/mitra/mayapada.png", + "/webnew/assetsnew/image/logo/mitra/mcdonals.png", + "/webnew/assetsnew/image/logo/mitra/moi.png" + ] + }, + { + "direction": "right", + "logos": [ + "/webnew/assetsnew/image/logo/mitra/mrt.png", + "/webnew/assetsnew/image/logo/mitra/prodia.jpg", + "/webnew/assetsnew/image/logo/mitra/rscm.png", + "/webnew/assetsnew/image/logo/mitra/sarinah.png", + "/webnew/assetsnew/image/logo/mitra/ut.png", + "/webnew/assetsnew/image/logo/mitra/yamaha.png", + "/webnew/assetsnew/image/logo/mitra/bca.png" + ] + } +] \ No newline at end of file diff --git a/wwwroot/webnew/json/regulasi.json b/wwwroot/webnew/jsonlama/regulasi.json similarity index 54% rename from wwwroot/webnew/json/regulasi.json rename to wwwroot/webnew/jsonlama/regulasi.json index e8bb862..e9cedc0 100644 --- a/wwwroot/webnew/json/regulasi.json +++ b/wwwroot/webnew/jsonlama/regulasi.json @@ -5,7 +5,7 @@ "kategori": "peraturan", "tanggal": "2025-02-27", "tahun": 2025, - "file": "/webnew/assets/document/peraturan/pergub-no-57-tahun-2022.pdf", + "file": "/webnew/assetsnew/document/peraturan/pergub-no-57-tahun-2022.pdf", "download": 200 }, { @@ -14,7 +14,7 @@ "kategori": "peraturan", "tanggal": "2026-01-10", "tahun": 2026, - "file": "/webnew/assets/document/peraturan/pergub-no-69-tahun-2013.pdf", + "file": "/webnew/assetsnew/document/peraturan/pergub-no-69-tahun-2013.pdf", "download": 120 }, { @@ -23,7 +23,7 @@ "kategori": "peraturan", "tanggal": "2025-02-27", "tahun": 2025, - "file": "/webnew/assets/document/peraturan/permenlh-no-11-tahun-2021.pdf", + "file": "/webnew/assetsnew/document/peraturan/permenlh-no-11-tahun-2021.pdf", "download": 200 }, { @@ -32,68 +32,68 @@ "kategori": "peraturan", "tanggal": "2026-01-10", "tahun": 2026, - "file": "/webnew/assets/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf", + "file": "/webnew/assetsnew/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf", "download": 120, "lampiran": [ { "judul": "Lampiran I PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran II PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-II-pp-nomor-22-ahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-II-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran III PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran IV PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran V PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran VI Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran VII Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran VIII Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran IX Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran X Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran XI Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran XII Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran XIII Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran XIV Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf" }, { "judul": "Lampiran XV Salinan PP Nomor 22 Tahun 2021", - "file": "/webnew/assets/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf" + "file": "/webnew/assetsnew/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf" } ] }, @@ -103,7 +103,7 @@ "kategori": "sop", "tanggal": "2026-03-01", "tahun": 2026, - "file": "/webnew/assets/document/sop/penanganan-pengaduan-pelanggan.pdf", + "file": "/webnew/assetsnew/document/sop/penanganan-pengaduan-pelanggan.pdf", "download": 90 }, { @@ -112,7 +112,7 @@ "kategori": "sop", "tanggal": "2026-03-01", "tahun": 2026, - "file": "/webnew/assets/document/sop/pengajuan-pengujian-contoh-uji-air.pdf", + "file": "/webnew/assetsnew/document/sop/pengajuan-pengujian-contoh-uji-air.pdf", "download": 90 }, { @@ -121,7 +121,7 @@ "kategori": "sop", "tanggal": "2025-08-15", "tahun": 2025, - "file": "/webnew/assets/document/sop/pembuatan-akun-pelanggan.pdf", + "file": "/webnew/assetsnew/document/sop/pembuatan-akun-pelanggan.pdf", "download": 70 }, { @@ -130,7 +130,7 @@ "kategori": "sop", "tanggal": "2025-08-15", "tahun": 2025, - "file": "/webnew/assets/document/sop/tanggap-darurat.pdf", + "file": "/webnew/assetsnew/document/sop/tanggap-darurat.pdf", "download": 70 } ] \ No newline at end of file diff --git a/wwwroot/webnew/json/video.json b/wwwroot/webnew/jsonlama/video.json similarity index 100% rename from wwwroot/webnew/json/video.json rename to wwwroot/webnew/jsonlama/video.json diff --git a/wwwroot/webnew/jsonnew/berita.json b/wwwroot/webnew/jsonnew/berita.json new file mode 100644 index 0000000..38bedbf --- /dev/null +++ b/wwwroot/webnew/jsonnew/berita.json @@ -0,0 +1,74 @@ +[ + { + "id": 1, + "judul": "Komitmen LLHD Terhadap Pemenuhan Permen LHK No.23 Tahun 2020", + "tanggal": "2026-02-10", + "gambar": [ + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/2.jpeg" + ], + "deskripsi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta dalam memenuhi standar regulasi laboratorium lingkungan.", + "isi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta sebagai laboratorium lingkungan yang terdaftar di KLHK ditunjukkan pada upaya laboratorium dalam memenuhi Peraturan Menteri Lingkungan Hidup dan Kehutanan Republik Indonesia Nomor 23 Tahun 2020 tentang Laboratorium Lingkungan.\n\nDalam Lampiran II tentang Persyaratan Tambahan Laboratorium Lingkungan disebutkan bahwa 'Laboratorium Lingkungan harus melakukan sendiri pengambilan contoh uji parameter lingkungan'. Oleh karena itu, mulai tahun 2025 secara bertahap LLHD melakukan pengambilan contoh uji air pada beberapa pelanggannya, seperti RS Mata JEC Menteng, PT Gudang Garam, PT Yamaha Music, PT Frisian Flag Indonesia, RS MMC, PT Puri Arta Prima, dan lain sebagainya.\n\nLangkah ini merupakan bentuk keseriusan LLHD dalam menjamin kualitas data hasil pengujian, serta memastikan bahwa seluruh proses pengambilan dan pengujian sampel dilakukan sesuai dengan standar teknis dan regulasi yang berlaku.\n\nLLHD juga berkomitmen untuk terus meningkatkan kompetensi personel laboratorium, memperkuat sistem pelayanan yang terintegrasi, serta menjalin komunikasi yang baik dengan para pemangku kepentingan guna mendukung perlindungan lingkungan hidup." + }, + { + "id": 2, + "judul": "Peningkatan Kualitas Pengujian Laboratorium Lingkungan", + "tanggal": "2026-03-04", + "gambar": [ + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/2.jpeg" + ], + "deskripsi": "Upaya peningkatan kualitas layanan pengujian laboratorium melalui pengembangan parameter dan teknologi.", + "isi": "Laboratorium Lingkungan Hidup Daerah (LLHD) terus melakukan peningkatan kualitas layanan pengujian melalui pengembangan parameter uji serta penggunaan teknologi yang lebih modern dan terkalibrasi.\n\nDengan adanya peningkatan ini, LLHD mampu memberikan hasil pengujian yang lebih akurat, cepat, dan dapat dipertanggungjawabkan sesuai dengan standar nasional maupun internasional.\n\nSelain itu, peningkatan kualitas juga didukung oleh pelatihan sumber daya manusia secara berkala serta penerapan sistem manajemen mutu laboratorium yang ketat." + }, + { + "id": 3, + "judul": "Pengembangan Layanan Pengujian Udara dan Kebisingan", + "tanggal": "2026-03-04", + "gambar": [ + "/webnew/assetsnew/image/foto/2.jpeg", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png" + ], + "deskripsi": "Layanan pengujian udara ambien, emisi, dan kebisingan semakin diperluas untuk mendukung pengendalian lingkungan.", + "isi": "LLHD terus mengembangkan layanan pengujian udara, baik udara ambien maupun emisi dari berbagai sumber seperti industri dan kendaraan.\n\nSelain itu, layanan pengujian kebisingan lingkungan juga menjadi salah satu fokus utama dalam mendukung pengendalian pencemaran lingkungan.\n\nPengujian dilakukan menggunakan metode yang tervalidasi serta peralatan yang terkalibrasi guna memastikan keakuratan hasil." + }, + { + "id": 4, + "judul": "Komitmen LLHD Terhadap Pemenuhan Permen LHK No.23 Tahun 2020", + "tanggal": "2026-02-10", + "gambar": [ + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/2.jpeg" + ], + "deskripsi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta dalam memenuhi standar regulasi laboratorium lingkungan.", + "isi": "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta sebagai laboratorium lingkungan yang terdaftar di KLHK ditunjukkan pada upaya laboratorium dalam memenuhi Peraturan Menteri Lingkungan Hidup dan Kehutanan Republik Indonesia Nomor 23 Tahun 2020 tentang Laboratorium Lingkungan.\n\nDalam Lampiran II tentang Persyaratan Tambahan Laboratorium Lingkungan disebutkan bahwa 'Laboratorium Lingkungan harus melakukan sendiri pengambilan contoh uji parameter lingkungan'. Oleh karena itu, mulai tahun 2025 secara bertahap LLHD melakukan pengambilan contoh uji air pada beberapa pelanggannya, seperti RS Mata JEC Menteng, PT Gudang Garam, PT Yamaha Music, PT Frisian Flag Indonesia, RS MMC, PT Puri Arta Prima, dan lain sebagainya.\n\nLangkah ini merupakan bentuk keseriusan LLHD dalam menjamin kualitas data hasil pengujian, serta memastikan bahwa seluruh proses pengambilan dan pengujian sampel dilakukan sesuai dengan standar teknis dan regulasi yang berlaku.\n\nLLHD juga berkomitmen untuk terus meningkatkan kompetensi personel laboratorium, memperkuat sistem pelayanan yang terintegrasi, serta menjalin komunikasi yang baik dengan para pemangku kepentingan guna mendukung perlindungan lingkungan hidup." + }, + { + "id": 5, + "judul": "Peningkatan Kualitas Pengujian Laboratorium Lingkungan", + "tanggal": "2026-03-04", + "gambar": [ + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png", + "/webnew/assetsnew/image/foto/2.jpeg" + ], + "deskripsi": "Upaya peningkatan kualitas layanan pengujian laboratorium melalui pengembangan parameter dan teknologi.", + "isi": "Laboratorium Lingkungan Hidup Daerah (LLHD) terus melakukan peningkatan kualitas layanan pengujian melalui pengembangan parameter uji serta penggunaan teknologi yang lebih modern dan terkalibrasi.\n\nDengan adanya peningkatan ini, LLHD mampu memberikan hasil pengujian yang lebih akurat, cepat, dan dapat dipertanggungjawabkan sesuai dengan standar nasional maupun internasional.\n\nSelain itu, peningkatan kualitas juga didukung oleh pelatihan sumber daya manusia secara berkala serta penerapan sistem manajemen mutu laboratorium yang ketat." + }, + { + "id": 6, + "judul": "Pengembangan Layanan Pengujian Udara dan Kebisingan", + "tanggal": "2026-03-04", + "gambar": [ + "/webnew/assetsnew/image/foto/2.jpeg", + "/webnew/assetsnew/image/foto/1.jpeg", + "/webnew/assetsnew/image/foto/beritakomitmenllhd.png" + ], + "deskripsi": "Layanan pengujian udara ambien, emisi, dan kebisingan semakin diperluas untuk mendukung pengendalian lingkungan.", + "isi": "LLHD terus mengembangkan layanan pengujian udara, baik udara ambien maupun emisi dari berbagai sumber seperti industri dan kendaraan.\n\nSelain itu, layanan pengujian kebisingan lingkungan juga menjadi salah satu fokus utama dalam mendukung pengendalian pencemaran lingkungan.\n\nPengujian dilakukan menggunakan metode yang tervalidasi serta peralatan yang terkalibrasi guna memastikan keakuratan hasil." + } +] \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/detail-item.json b/wwwroot/webnew/jsonnew/detail-item.json new file mode 100644 index 0000000..70c5cd2 --- /dev/null +++ b/wwwroot/webnew/jsonnew/detail-item.json @@ -0,0 +1,27 @@ +{ + "output": "LD - Domestik", + "jenis": "Kadar Maksimum", + + "table": { + "columns": [ "No", "Parameter", "Satuan", "Metode Parameter", "Nilai", "Biaya Uji" ], + "fields": [ "no", "parameter", "satuan", "metode", "nilai", "biaya" ], + "data": [ + { + "no": 1, + "parameter": "pH", + "satuan": "-", + "metode": "SNI 6989.11:2019", + "nilai": "6-9", + "biaya": 30000 + }, + { + "no": 2, + "parameter": "TSS", + "satuan": "mg/L", + "metode": "No.45/IKM", + "nilai": 30, + "biaya": 50000 + } + ] + } +} \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/galeri.json b/wwwroot/webnew/jsonnew/galeri.json new file mode 100644 index 0000000..3f8b59f --- /dev/null +++ b/wwwroot/webnew/jsonnew/galeri.json @@ -0,0 +1,38 @@ +[ + { + "id": 1, + "judul": "Deskripsi Foto 1", + "deskripsi": "Deskripsi Foto 1", + "gambar": "/webnew/assetsnew/image/foto/1.jpeg" + }, + { + "id": 2, + "judul": "Deskripsi Foto 2", + "deskripsi": "Deskripsi Foto 2", + "gambar": "/webnew/assetsnew/image/foto/2.jpeg" + }, + { + "id": 3, + "judul": "Deskripsi Foto 3", + "deskripsi": "Deskripsi Foto 3", + "gambar": "/webnew/assetsnew/image/foto/3.jpeg" + }, + { + "id": 4, + "judul": "Deskripsi Foto 4", + "deskripsi": "Deskripsi Foto 4", + "gambar": "/webnew/assetsnew/image/foto/4.jpeg" + }, + { + "id": 5, + "judul": "Deskripsi Foto 5", + "deskripsi": "Deskripsi Foto 5", + "gambar": "/webnew/assetsnew/image/foto/5.jpeg" + }, + { + "id": 6, + "judul": "Deskripsi Foto 6", + "deskripsi": "Deskripsi Foto 6", + "gambar": "/webnew/assetsnew/image/foto/6.jpeg" + } +] \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/layanan/air.json b/wwwroot/webnew/jsonnew/layanan/air.json new file mode 100644 index 0000000..f07d7f1 --- /dev/null +++ b/wwwroot/webnew/jsonnew/layanan/air.json @@ -0,0 +1,44 @@ +{ + "judul": "Pengujian Air", + "judulTable1": "Info Harga Baku Mutu Air", + "judulTable2": "Info Harga Per Parameter Air", + "deskripsi-singkat": "Kegiatan laboratorium untuk menganalisis dan menilai kualitas air berdasarkan parameter fisika, kimia, maupun mikrobiologi pada air minum, air limbah, maupun air tanah, yang dilakukan oleh tenaga profesional dengan metode tervalidasi serta peralatan terkalibrasi. Sebanyak 72 parameter air milik LLHD telah terakreditasi oleh KAN, dan jumlah tersebut akan terus bertambah seiring dengan pengembangan layanan dan peningkatan mutu laboratorium untuk mendukung pengambilan keputusan, pemenuhan regulasi, serta perlindungan lingkungan. Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian air yaitu:", + "deskripsi": [ + "Air Limbah", + "Air Sungai", + "Air Situ", + "Air Tanah, dan", + "Air Perpipaan." + ], + "gambar": "/webnew/assetsnew/image/foto/1.jpeg", + + "table1": { + "columns": [ "No", "Kode", "Output Hasil Uji", "Jenis Baku Mutu", "Tipe Pengujian", "Total Parameter", "Total Harga", "Aksi" ], + "fields": [ "No", "kode", "output", "jenis", "tipe", "parameter", "harga", "aksi" ], + "data": [ + { + "kode": "LD", + "output": "Domestik", + "jenis": "Kadar Maksimum", + "tipe": "Air Limbah", + "parameter": 7, + "harga": 755000, + "aksi": "detail" + } + ] + }, + + "table2": { + "columns": [ "Nama Parameter", "Satuan", "Biaya Uji", "Biaya Alat", "Jenis"], + "fields": [ "nama", "satuan", "biayaUji", "biayaAlat", "jenis" ], + "data": [ + { + "nama": "pH", + "satuan": "-", + "biayaUji": 30000, + "biayaAlat": 5000, + "jenis": "Fisik" + } + ] + } +} \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/layanan/pcu.json b/wwwroot/webnew/jsonnew/layanan/pcu.json new file mode 100644 index 0000000..7974147 --- /dev/null +++ b/wwwroot/webnew/jsonnew/layanan/pcu.json @@ -0,0 +1,38 @@ +{ + "judul": "Pengambilan Contoh Uji (PCU) Air", + "judulTable1": "Info Harga Baku Mutu Air", + "judulTable2": "Info Harga Per Parameter Air", + "deskripsi-singkat": "Kegiatan laboratorium untuk memperoleh sampel air secara representatif dari sumber tertentu, seperti air permukaan, air tanah, air limbah, maupun air minum sesuai dengan standar dan prosedur yang berlaku oleh personel yang kompeten. Berdasarkan Permen LH No. 23 Tahun 2020, pengambilan contoh uji wajib dilakukan oleh laboratorium lingkungan sebagai bagian integral dari proses pengujian yang menentukan validitas, akurasi, ketertelusuran, ketidakberpihakan, serta menjamin keabsahan hasil uji laboratorium. Pengambilan contoh uji air di LLHD merupakan salah satu layanan yang telah terakreditasi oleh KAN. Beberapa pengujian laboratorium yang dapat dilakukan pada PCU air yaitu:", + "deskripsi": [ "Air Limbah", "Air Tanah, maupun ", "Air Minum." ], + "gambar": "/webnew/assetsnew/image/foto/samplingair.jpeg", + + "table1": { + "columns": [ "No", "Kode", "Output Hasil Uji", "Jenis Baku Mutu", "Tipe Pengujian", "Total Parameter", "Total Harga", "Aksi" ], + "fields": [ "No", "kode", "output", "jenis", "tipe", "parameter", "harga", "aksi" ], + "data": [ + { + "kode": "LD", + "output": "Domestik", + "jenis": "Kadar Maksimum", + "tipe": "Air Limbah", + "parameter": 7, + "harga": 755000, + "aksi": "detail" + } + ] + }, + + "table2": { + "columns": [ "Nama Parameter", "Satuan", "Biaya Uji", "Biaya Alat", "Jenis" ], + "fields": [ "nama", "satuan", "biayaUji", "biayaAlat", "jenis"], + "data": [ + { + "nama": "pH", + "satuan": "-", + "biayaUji": 30000, + "biayaAlat": 5000, + "jenis": "Fisik" + } + ] + } +} \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/layanan/udara.json b/wwwroot/webnew/jsonnew/layanan/udara.json new file mode 100644 index 0000000..69dd5c4 --- /dev/null +++ b/wwwroot/webnew/jsonnew/layanan/udara.json @@ -0,0 +1,44 @@ +{ + "judul": "Pengujian Udara", + "judulTable1": "Info Harga Baku Mutu Udara", + "judulTable2": "Info Harga Per Parameter Udara", + "deskripsi-singkat": "Kegiatan laboratorium untuk mengetahui kualitas udara ambien maupun udara emisi dari suatu sumber, seperti industri, kendaraan, atau lingkungan kerja. Selain itu, pengujian udara juga melayani pengujian kualitas udara dalam ruang, kebisingan lingkungan, serta stasiun pemantau kualitas udara. Sebanyak 24 parameter udara milik LLHD telah terakreditasi oleh KAN, dan jumlah tersebut akan terus bertambah seiring dengan pengembangan layanan dan peningkatan mutu laboratorium. Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian udara, yaitu:", + "deskripsi": [ + "KUDR (kualitas udara dalam ruang)", + "Kebisingan lingkungan", + "Udara Ambien", + "Emisi Tidak Bergerak (cerobong)", + "Emisi Bergerak (kendaraan)", + "SPKU (stasiun pemantau kualitas udara)" + ], + "gambar": "/webnew/assetsnew/image/foto/pengujianudara.jpeg", + + "table1": { + "columns": [ "Kode", "Output", "Jenis", "Tipe", "Total Parameter", "Total Harga", "Aksi" ], + "fields": [ "kode", "output", "jenis", "tipe", "parameter", "harga", "aksi" ], + "data": [ + { + "kode": "LD", + "output": "Domestik", + "jenis": "Kadar Maksimum", + "tipe": "Air Limbah", + "parameter": 7, + "harga": 755000 + } + ] + }, + + "table2": { + "columns": [ "Nama", "Satuan", "Biaya Uji", "Biaya Alat", "Jenis" ], + "fields": [ "nama", "satuan", "biayaUji", "biayaAlat", "jenis" ], + "data": [ + { + "nama": "pH", + "satuan": "-", + "biayaUji": 30000, + "biayaAlat": 5000, + "jenis": "Fisik" + } + ] + } +} \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/mitra.json b/wwwroot/webnew/jsonnew/mitra.json new file mode 100644 index 0000000..92d6e69 --- /dev/null +++ b/wwwroot/webnew/jsonnew/mitra.json @@ -0,0 +1,38 @@ +[ + { + "direction": "right", + "logos": [ + "/webnew/assetsnew/image/logo/mitra/aeonmall.png", + "/webnew/assetsnew/image/logo/mitra/ascott.webp", + "/webnew/assetsnew/image/logo/mitra/astra.png", + "/webnew/assetsnew/image/logo/mitra/pramita.jpg", + "/webnew/assetsnew/image/logo/mitra/pakubuwono.png", + "/webnew/assetsnew/image/logo/mitra/kalbe.png", + "/webnew/assetsnew/image/logo/mitra/khongguan.png" + ] + }, + { + "direction": "left", + "logos": [ + "/webnew/assetsnew/image/logo/mitra/paljaya.png", + "/webnew/assetsnew/image/logo/mitra/biomedika.png", + "/webnew/assetsnew/image/logo/mitra/logorspp.png", + "/webnew/assetsnew/image/logo/mitra/lrt.png", + "/webnew/assetsnew/image/logo/mitra/mayapada.png", + "/webnew/assetsnew/image/logo/mitra/mcdonals.png", + "/webnew/assetsnew/image/logo/mitra/moi.png" + ] + }, + { + "direction": "right", + "logos": [ + "/webnew/assetsnew/image/logo/mitra/mrt.png", + "/webnew/assetsnew/image/logo/mitra/prodia.jpg", + "/webnew/assetsnew/image/logo/mitra/rscm.png", + "/webnew/assetsnew/image/logo/mitra/sarinah.png", + "/webnew/assetsnew/image/logo/mitra/ut.png", + "/webnew/assetsnew/image/logo/mitra/yamaha.png", + "/webnew/assetsnew/image/logo/mitra/bca.png" + ] + } +] \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/regulasi.json b/wwwroot/webnew/jsonnew/regulasi.json new file mode 100644 index 0000000..e9cedc0 --- /dev/null +++ b/wwwroot/webnew/jsonnew/regulasi.json @@ -0,0 +1,136 @@ +[ + { + "id": 1, + "judul": "PERGUB_NO._57_TAHUN_2022", + "kategori": "peraturan", + "tanggal": "2025-02-27", + "tahun": 2025, + "file": "/webnew/assetsnew/document/peraturan/pergub-no-57-tahun-2022.pdf", + "download": 200 + }, + { + "id": 2, + "judul": "PERGUB_NO_69_TAHUN_2013", + "kategori": "peraturan", + "tanggal": "2026-01-10", + "tahun": 2026, + "file": "/webnew/assetsnew/document/peraturan/pergub-no-69-tahun-2013.pdf", + "download": 120 + }, + { + "id": 3, + "judul": "PERMENLH NOMOR 11 TAHUN 2021", + "kategori": "peraturan", + "tanggal": "2025-02-27", + "tahun": 2025, + "file": "/webnew/assetsnew/document/peraturan/permenlh-no-11-tahun-2021.pdf", + "download": 200 + }, + { + "id": 4, + "judul": "Salinan PP Nomor 22 Tahun 2021", + "kategori": "peraturan", + "tanggal": "2026-01-10", + "tahun": 2026, + "file": "/webnew/assetsnew/document/peraturan/salinan-pp-nomor-22-tahun-2021.pdf", + "download": 120, + "lampiran": [ + { + "judul": "Lampiran I PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-I-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran II PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-II-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran III PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-III-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran IV PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-IV-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran V PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-V-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran VI Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-VI-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran VII Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-VII-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran VIII Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-VIII-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran IX Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-IX-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran X Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-X-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran XI Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-XI-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran XII Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-XII-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran XIII Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-XIII-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran XIV Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-XIV-salinan-pp-nomor-22-tahun-2021.pdf" + }, + { + "judul": "Lampiran XV Salinan PP Nomor 22 Tahun 2021", + "file": "/webnew/assetsnew/document/peraturan/lampiran-XV-salinan-pp-nomor-22-tahun-2021.pdf" + } + ] + }, + { + "id": 20, + "judul": "Penanganan Pengaduan Pelanggan", + "kategori": "sop", + "tanggal": "2026-03-01", + "tahun": 2026, + "file": "/webnew/assetsnew/document/sop/penanganan-pengaduan-pelanggan.pdf", + "download": 90 + }, + { + "id": 21, + "judul": "Pengajuan Pengujian Contoh Uji Air", + "kategori": "sop", + "tanggal": "2026-03-01", + "tahun": 2026, + "file": "/webnew/assetsnew/document/sop/pengajuan-pengujian-contoh-uji-air.pdf", + "download": 90 + }, + { + "id": 22, + "judul": "Pembuatan Akun Pelanggan", + "kategori": "sop", + "tanggal": "2025-08-15", + "tahun": 2025, + "file": "/webnew/assetsnew/document/sop/pembuatan-akun-pelanggan.pdf", + "download": 70 + }, + { + "id": 23, + "judul": "Tanggap Darurat", + "kategori": "sop", + "tanggal": "2025-08-15", + "tahun": 2025, + "file": "/webnew/assetsnew/document/sop/tanggap-darurat.pdf", + "download": 70 + } +] \ No newline at end of file diff --git a/wwwroot/webnew/jsonnew/video.json b/wwwroot/webnew/jsonnew/video.json new file mode 100644 index 0000000..f4bea89 --- /dev/null +++ b/wwwroot/webnew/jsonnew/video.json @@ -0,0 +1,14 @@ +[ + { + "id": 1, + "youtube": "PiZnr9hOOgs" + }, + { + "id": 2, + "youtube": "_YnE4zWMEnM" + }, + { + "id": 3, + "youtube": "UR1ue36yhM4" + } +] \ No newline at end of file diff --git a/wwwroot/webnew/pages/berita/berita.js b/wwwroot/webnew/pageslama/berita/berita.js similarity index 100% rename from wwwroot/webnew/pages/berita/berita.js rename to wwwroot/webnew/pageslama/berita/berita.js diff --git a/wwwroot/webnew/pages/berita/detail-berita.js b/wwwroot/webnew/pageslama/berita/detail-berita.js similarity index 100% rename from wwwroot/webnew/pages/berita/detail-berita.js rename to wwwroot/webnew/pageslama/berita/detail-berita.js diff --git a/wwwroot/webnew/pages/faq.js b/wwwroot/webnew/pageslama/faq.js similarity index 100% rename from wwwroot/webnew/pages/faq.js rename to wwwroot/webnew/pageslama/faq.js diff --git a/wwwroot/webnew/pages/form-review.js b/wwwroot/webnew/pageslama/form-review.js similarity index 100% rename from wwwroot/webnew/pages/form-review.js rename to wwwroot/webnew/pageslama/form-review.js diff --git a/wwwroot/webnew/pages/galeri.js b/wwwroot/webnew/pageslama/galeri.js similarity index 100% rename from wwwroot/webnew/pages/galeri.js rename to wwwroot/webnew/pageslama/galeri.js diff --git a/wwwroot/webnew/pages/header.js b/wwwroot/webnew/pageslama/header.js similarity index 100% rename from wwwroot/webnew/pages/header.js rename to wwwroot/webnew/pageslama/header.js diff --git a/wwwroot/webnew/pages/home/index.js b/wwwroot/webnew/pageslama/home/index.js similarity index 98% rename from wwwroot/webnew/pages/home/index.js rename to wwwroot/webnew/pageslama/home/index.js index 08130aa..d543cc6 100644 --- a/wwwroot/webnew/pages/home/index.js +++ b/wwwroot/webnew/pageslama/home/index.js @@ -129,11 +129,11 @@ gradientTeal.addColorStop(1, 'rgba(20, 184, 166, 0.02)'); new Chart(ctx, { type: 'line', data: { - labels: ['Tahun 2025', 'Tahun 2024', 'Tahun 2023', 'Tahun 2022'], + labels: ['Tahun 2022', 'Tahun 2023', 'Tahun 2024', 'Tahun 2025'], datasets: [ { label: 'Internal', - data: [1909, 1007, 1567, 1837], + data: [1837, 1567, 1007, 1909], borderColor: '#3b82f6', backgroundColor: gradientBlue, fill: true, @@ -147,7 +147,7 @@ new Chart(ctx, { }, { label: 'Eksternal', - data: [9078, 5828, 8069, 8554], + data: [8554, 8069, 5828, 9078], borderColor: '#14b8a6', backgroundColor: gradientTeal, fill: true, @@ -161,7 +161,7 @@ new Chart(ctx, { }, { label: 'Total', - data: [10987, 6835, 9636, 10391], + data: [10391, 9636, 6835, 10987], borderColor: '#9ca3af', backgroundColor: 'rgba(156, 163, 175, 0.1)', fill: true, diff --git a/wwwroot/webnew/pages/layanan/detail-item.js b/wwwroot/webnew/pageslama/layanan/detail-item.js similarity index 100% rename from wwwroot/webnew/pages/layanan/detail-item.js rename to wwwroot/webnew/pageslama/layanan/detail-item.js diff --git a/wwwroot/webnew/pages/layanan/detail-layanan.js b/wwwroot/webnew/pageslama/layanan/detail-layanan.js similarity index 100% rename from wwwroot/webnew/pages/layanan/detail-layanan.js rename to wwwroot/webnew/pageslama/layanan/detail-layanan.js diff --git a/wwwroot/webnew/pages/layanan/layanan.js b/wwwroot/webnew/pageslama/layanan/layanan.js similarity index 100% rename from wwwroot/webnew/pages/layanan/layanan.js rename to wwwroot/webnew/pageslama/layanan/layanan.js diff --git a/wwwroot/webnew/pages/regulasi.js b/wwwroot/webnew/pageslama/regulasi.js similarity index 100% rename from wwwroot/webnew/pages/regulasi.js rename to wwwroot/webnew/pageslama/regulasi.js diff --git a/wwwroot/webnew/pages/video.js b/wwwroot/webnew/pageslama/video.js similarity index 100% rename from wwwroot/webnew/pages/video.js rename to wwwroot/webnew/pageslama/video.js diff --git a/wwwroot/webnew/pagesnew/berita/berita.js b/wwwroot/webnew/pagesnew/berita/berita.js new file mode 100644 index 0000000..efc1542 --- /dev/null +++ b/wwwroot/webnew/pagesnew/berita/berita.js @@ -0,0 +1,70 @@ +function formatTanggal(dateStr) { + const date = new Date(dateStr); + return date.toLocaleDateString("en-US", { + year: "numeric", + month: "long", + day: "numeric" + }); +} + +function loadBerita() { + + fetch('/WebNew/Berita/GetBerita') + .then(res => res.json()) + .then(data => { + + renderBerita(data); + + document.getElementById("search").addEventListener("keyup", function () { + const keyword = this.value.toLowerCase(); + const filtered = data.filter(x => + x.judul.toLowerCase().includes(keyword) || + x.deskripsi.toLowerCase().includes(keyword) + ); + renderBerita(filtered); + }); + + document.getElementById("filterDate").addEventListener("change", function () { + const date = this.value; + const filtered = data.filter(x => x.tanggal === date); + renderBerita(filtered); + }); + + }); +} + +function renderBerita(list) { + + let html = ""; + + list.forEach(item => { + html += ` +

    +
    + + + +
    + ${formatTanggal(item.tanggal)} + +
    ${item.judul}
    + +

    + ${item.deskripsi} +

    + + + Baca Selengkapnya + +
    + +
    +
    + `; + }); + + document.getElementById("beritaList").innerHTML = html; +} + +document.addEventListener("DOMContentLoaded", loadBerita); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/berita/detail-berita.js b/wwwroot/webnew/pagesnew/berita/detail-berita.js new file mode 100644 index 0000000..f9e6e82 --- /dev/null +++ b/wwwroot/webnew/pagesnew/berita/detail-berita.js @@ -0,0 +1,116 @@ +function getQueryParam(name) { + return new URLSearchParams(window.location.search).get(name); +} + +function formatTanggal(dateStr) { + return new Date(dateStr).toLocaleDateString("id-ID", { + day: "numeric", + month: "long", + year: "numeric" + }); +} + +function loadDetail() { + + const id = getQueryParam("id"); + + fetch(`/WebNew/Berita/GetDetail?id=${id}`) + .then(res => { + if (!res.ok) throw new Error("Data tidak ditemukan"); + return res.json(); + }) + .then(data => { + + if (!data) { + document.getElementById("judul").innerText = "Data tidak ditemukan"; + return; + } + + document.getElementById("judul").innerText = data.judul || "-"; + document.getElementById("tanggal").innerText = formatTanggal(data.tanggal || ""); + + renderSlider(data.gambar); + + document.getElementById("isi").innerHTML = + (data.isi || "").replace(/\n/g, "
    "); + }) + .catch(err => { + console.error(err); + document.getElementById("judul").innerText = "Gagal load berita"; + }); +} + +function loadSidebar() { + + fetch('/WebNew/Berita/GetAll') + .then(res => res.json()) + .then(data => { + + let html = ""; + + data.slice(0, 4).forEach(item => { + + let gambar = Array.isArray(item.gambar) ? item.gambar[0] : item.gambar; + + html += ` + + `; + }); + + document.getElementById("sidebar").innerHTML = html; + }); +} + +let currentIndex = 0; +let sliderImages = []; + +function renderSlider(images) { + + if (!images || images.length === 0) return; + + sliderImages = images; + currentIndex = 0; + + const slider = document.getElementById("slider"); + + slider.innerHTML = ` + + + ${images.length > 1 ? ` + + + + ` : ""} + `; +} + +function nextSlide() { + currentIndex = (currentIndex + 1) % sliderImages.length; + document.getElementById("slide-img").src = sliderImages[currentIndex]; +} + +function prevSlide() { + currentIndex = (currentIndex - 1 + sliderImages.length) % sliderImages.length; + document.getElementById("slide-img").src = sliderImages[currentIndex]; +} + +document.addEventListener("DOMContentLoaded", function () { + loadDetail(); + loadSidebar(); +}); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/faq.js b/wwwroot/webnew/pagesnew/faq.js new file mode 100644 index 0000000..6314088 --- /dev/null +++ b/wwwroot/webnew/pagesnew/faq.js @@ -0,0 +1,35 @@ +const tabs = document.querySelectorAll(".tab"); +const panes = document.querySelectorAll(".faq-pane"); + +tabs.forEach(tab => { + tab.addEventListener("click", () => { + + tabs.forEach(t => t.classList.remove("active")); + tab.classList.add("active"); + + panes.forEach(p => p.classList.remove("active")); + + document.getElementById(tab.dataset.tab).classList.add("active"); + }); +}); + +const faqItems = document.querySelectorAll(".faq-item"); + +faqItems.forEach(item => { + const header = item.querySelector(".faq-header"); + + header.addEventListener("click", () => { + + faqItems.forEach(i => { + if (i !== item) { + i.classList.remove("active"); + i.querySelector(".faq-icon").innerText = "+"; + } + }); + + item.classList.toggle("active"); + + const icon = item.querySelector(".faq-icon"); + icon.innerText = item.classList.contains("active") ? "−" : "+"; + }); +}); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/form-review.js b/wwwroot/webnew/pagesnew/form-review.js new file mode 100644 index 0000000..2e30f58 --- /dev/null +++ b/wwwroot/webnew/pagesnew/form-review.js @@ -0,0 +1,100 @@ +document.addEventListener("DOMContentLoaded", function () { + + const form = document.getElementById("formUlasan"); + const pekerjaan = document.getElementById("pekerjaan"); + const pekerjaanLainnya = document.getElementById("pekerjaanLainnya"); + const successMsg = document.getElementById("successMsg"); + + pekerjaan.addEventListener("change", function () { + if (this.value === "lainnya") { + pekerjaanLainnya.classList.remove("d-none"); + } else { + pekerjaanLainnya.classList.add("d-none"); + pekerjaanLainnya.value = ""; + } + }); + + document.querySelectorAll("input, select, textarea").forEach(el => { + el.addEventListener("input", function () { + const container = this.closest(".mb-3, .mb-4"); + const errorMsg = container?.querySelector(".error-msg"); + + this.classList.remove("is-invalid"); + if (errorMsg) errorMsg.classList.add("d-none"); + }); + }); + + document.querySelectorAll("input[type=radio]").forEach(input => { + input.addEventListener("change", function () { + const card = this.closest(".question-card"); + const errorMsg = card.querySelector(".error-msg"); + + card.classList.remove("border", "border-danger"); + errorMsg.classList.add("d-none"); + }); + }); + + form.addEventListener("submit", function (e) { + e.preventDefault(); + + let isValid = true; + const penilaian = {}; + + ["gender", "usia", "pendidikan", "pekerjaan", "saran", "ulasan"].forEach(id => { + const el = document.getElementById(id); + const container = el.closest(".mb-3, .mb-4"); + const errorMsg = container.querySelector(".error-msg"); + + if (!el.value.trim()) { + isValid = false; + el.classList.add("is-invalid"); + errorMsg.classList.remove("d-none"); + } + }); + + if (pekerjaan.value === "lainnya" && !pekerjaanLainnya.value.trim()) { + isValid = false; + pekerjaanLainnya.classList.add("is-invalid"); + } + + document.querySelectorAll(".question-card").forEach(card => { + const checked = card.querySelector("input:checked"); + const errorMsg = card.querySelector(".error-msg"); + + if (!checked) { + isValid = false; + card.classList.add("border", "border-danger"); + errorMsg.classList.remove("d-none"); + } else { + const input = card.querySelector("input:checked"); + penilaian[input.name] = Number(input.value); + } + }); + + if (!isValid) return; + + const data = { + gender: document.getElementById("gender").value, + usia: Number(document.getElementById("usia").value), + pendidikan: document.getElementById("pendidikan").value, + pekerjaan: pekerjaan.value === "lainnya" + ? pekerjaanLainnya.value + : pekerjaan.value, + saran: document.getElementById("saran").value, + ulasan: document.getElementById("ulasan").value, + penilaian: penilaian + }; + + console.log("DATA FINAL:", data); + + form.reset(); + pekerjaanLainnya.classList.add("d-none"); + + successMsg.classList.remove("d-none"); + + setTimeout(() => { + successMsg.classList.add("d-none"); + }, 3000); + }); + +}); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/galeri.js b/wwwroot/webnew/pagesnew/galeri.js new file mode 100644 index 0000000..205d6c5 --- /dev/null +++ b/wwwroot/webnew/pagesnew/galeri.js @@ -0,0 +1,49 @@ +function loadGaleri() { + + fetch('/WebNew/Galeri/GetAll') + .then(res => res.json()) + .then(data => { + + let html = ""; + + data.forEach(item => { + html += ` +
    +
    + ${item.judul} +
    +
    + `; + }); + + document.getElementById("galeri-list").innerHTML = html; + + document.querySelectorAll(".galeri-img").forEach(img => { + img.addEventListener("click", function () { + + document.getElementById("lightbox").style.display = "block"; + document.getElementById("lightbox-img").src = this.src; + + document.getElementById("lightbox-title").innerText = this.dataset.judul; + document.getElementById("lightbox-description").innerText = this.dataset.deskripsi; + }); + }); + + }); + + document.querySelector(".lightbox .close").onclick = function () { + document.getElementById("lightbox").style.display = "none"; + }; + + document.getElementById("lightbox").onclick = function (e) { + if (e.target.id === "lightbox") { + this.style.display = "none"; + } + }; +} + +document.addEventListener("DOMContentLoaded", loadGaleri); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/header.js b/wwwroot/webnew/pagesnew/header.js new file mode 100644 index 0000000..ea696e3 --- /dev/null +++ b/wwwroot/webnew/pagesnew/header.js @@ -0,0 +1,70 @@ +let allData = []; + +async function loadSearchData() { + const regulasi = await fetch('/WebNew/Regulasi/GetRegulasi').then(r => r.json()); + const berita = await fetch('/WebNew/Berita/GetAll').then(r => r.json()); + + allData = [ + ...regulasi.map(x => ({ ...x, type: 'regulasi' })), + ...berita.map(x => ({ ...x, type: 'berita' })), + ]; +} + +function searchData(keyword) { + + keyword = keyword.toLowerCase(); + + const result = allData.filter(item => + item.judul.toLowerCase().includes(keyword) + ); + + renderResult(result); +} + +function renderResult(data) { + + let html = ""; + + if (data.length === 0) { + html = "

    Tidak ditemukan

    "; + } + + data.slice(0, 5).forEach(item => { + + let link = "#"; + + if (item.type === "berita") { + link = `/WebNew/Berita/Detail?id=${item.id}`; + } + + if (item.type === "regulasi") { + link = item.file; + } + + html += ` + + ${item.judul}
    + ${item.type} +
    + `; + }); + + document.getElementById("searchResult").innerHTML = html; +} + +document.addEventListener("DOMContentLoaded", () => { + + loadSearchData(); + + document.getElementById("searchInput").addEventListener("keyup", function () { + const keyword = this.value; + + if (keyword.length < 2) { + document.getElementById("searchResult").innerHTML = ""; + return; + } + + searchData(keyword); + }); + +}); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/home/index.js b/wwwroot/webnew/pagesnew/home/index.js new file mode 100644 index 0000000..793f3f6 --- /dev/null +++ b/wwwroot/webnew/pagesnew/home/index.js @@ -0,0 +1,395 @@ + +let currentSlide = 0; +let slides = document.querySelectorAll(".hero-slide"); +let wrapper = document.getElementById("hero-wrapper"); +let dotsContainer = document.getElementById("hero-dots"); + +function initSlider() { + slides = document.querySelectorAll(".hero-slide"); + + slides.forEach((_, i) => { + let dot = document.createElement("span"); + dot.onclick = () => goToSlide(i); + dotsContainer.appendChild(dot); + }); + + updateSlider(); +} + +function updateSlider() { + wrapper.style.transform = `translateX(-${currentSlide * 100}%)`; + + let dots = dotsContainer.querySelectorAll("span"); + dots.forEach(d => d.classList.remove("active")); + dots[currentSlide].classList.add("active"); +} + +function nextSlide() { + currentSlide = (currentSlide + 1) % slides.length; + updateSlider(); +} + +function prevSlide() { + currentSlide = (currentSlide - 1 + slides.length) % slides.length; + updateSlider(); +} + +function goToSlide(index) { + currentSlide = index; + updateSlider(); +} + + +setInterval(nextSlide, 6000); + +document.addEventListener("DOMContentLoaded", initSlider); + + +//kompetensi + +const swiper = new Swiper(".mySwiper", { + slidesPerView: 4, + spaceBetween: 20, + loop: true, + + speed: 5000, + + autoplay: { + delay: 0, + disableOnInteraction: false, + }, + + freeMode: true, + freeModeMomentum: false, + + breakpoints: { + 320: { slidesPerView: 1.2 }, + 576: { slidesPerView: 2 }, + 768: { slidesPerView: 3 }, + 1200: { slidesPerView: 4 } + } + + +}); + + +//data capaian + +document.addEventListener("DOMContentLoaded", function () { + + const counters = document.querySelectorAll('.counter'); + + const runCounter = (counter) => { + const target = +counter.getAttribute('data-target'); + let count = 0; + + const duration = 1500; + const stepTime = 16; + const totalSteps = duration / stepTime; + const increment = target / totalSteps; + + const update = () => { + count += increment; + + if (count < target) { + counter.innerText = Math.floor(count).toLocaleString(); + requestAnimationFrame(update); + } else { + counter.innerText = target.toLocaleString(); + } + }; + + update(); + }; + + const observer = new IntersectionObserver((entries, obs) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + runCounter(entry.target); + obs.unobserve(entry.target); + } + }); + }, { threshold: 0.5 }); + + counters.forEach(counter => observer.observe(counter)); + +}); + + +const ctx = document.getElementById('chartSampel').getContext('2d'); + +const gradientBlue = ctx.createLinearGradient(0, 0, 0, 350); +gradientBlue.addColorStop(0, 'rgba(59, 130, 246, 0.25)'); +gradientBlue.addColorStop(1, 'rgba(59, 130, 246, 0.02)'); + +const gradientTeal = ctx.createLinearGradient(0, 0, 0, 350); +gradientTeal.addColorStop(0, 'rgba(20, 184, 166, 0.25)'); +gradientTeal.addColorStop(1, 'rgba(20, 184, 166, 0.02)'); + +new Chart(ctx, { + type: 'line', + data: { + labels: ['Tahun 2022', 'Tahun 2023', 'Tahun 2024', 'Tahun 2025'], + datasets: [ + { + label: 'Internal', + data: [1837, 1567, 1007, 1909], + borderColor: '#3b82f6', + backgroundColor: gradientBlue, + fill: true, + tension: 0.5, + borderWidth: 2, + pointRadius: 0, + pointHoverRadius: 6, + pointBackgroundColor: '#fff', + pointBorderColor: '#3b82f6', + pointBorderWidth: 2 + }, + { + label: 'Eksternal', + data: [8554, 8069, 5828, 9078], + borderColor: '#14b8a6', + backgroundColor: gradientTeal, + fill: true, + tension: 0.5, + borderWidth: 2, + pointRadius: 0, + pointHoverRadius: 6, + pointBackgroundColor: '#fff', + pointBorderColor: '#14b8a6', + pointBorderWidth: 2 + }, + { + label: 'Total', + data: [10391, 9636, 6835, 10987], + borderColor: '#9ca3af', + backgroundColor: 'rgba(156, 163, 175, 0.1)', + fill: true, + tension: 0.5, + borderWidth: 2, + pointRadius: 0, + pointHoverRadius: 6, + pointBackgroundColor: '#fff', + pointBorderColor: '#9ca3af', + pointBorderWidth: 2 + } + ] + }, + options: { + responsive: true, + maintainAspectRatio: false, + + interaction: { + mode: 'index', + intersect: false + }, + + plugins: { + legend: { + position: 'top', + labels: { + usePointStyle: true, + pointStyle: 'circle', + padding: 20 + } + }, + + tooltip: { + backgroundColor: '#ffffff', + titleColor: '#000', + bodyColor: '#000', + borderColor: '#e5e7eb', + borderWidth: 1, + padding: 10, + displayColors: false, + callbacks: { + label: function (context) { + return context.dataset.label + ': ' + context.raw.toLocaleString(); + } + } + } + }, + + scales: { + x: { + grid: { + display: false + }, + ticks: { + color: '#9ca3af' + } + }, + y: { + beginAtZero: true, + grid: { + color: 'rgba(0,0,0,0.05)', + drawBorder: false + }, + ticks: { + color: '#9ca3af', + callback: function (value) { + return value.toLocaleString(); + } + } + } + } + } +}); + + +//mitra + +function loadLogo() { + fetch('/webnew/jsonnew/mitra.json') + .then(res => res.json()) + .then(data => { + + let html = ""; + + data.forEach(row => { + + html += ` +
    + ${renderGroup(row.logos)} + ${renderGroup(row.logos)} +
    + `; + }); + + document.querySelector(".logo-slider").innerHTML = html; + }); +} + +function renderGroup(logos) { + let group = '
    '; + + logos.forEach(src => { + group += ``; + }); + + group += '
    '; + return group; +} + +document.addEventListener("DOMContentLoaded", loadLogo); + + +//berita + +function formatTanggal(dateStr) { + return new Date(dateStr).toLocaleDateString("id-ID", { + day: "numeric", + month: "long", + year: "numeric" + }); +} + +function loadLandingBerita() { + fetch('/WebNew/Berita/GetAll') + .then(res => res.json()) + .then(data => { + + if (!data || data.length === 0) return; + + const featured = data[0]; + + document.getElementById("featured-berita").innerHTML = ` + + + ${formatTanggal(featured.tanggal)} + +
    ${featured.judul}
    + +

    + ${featured.deskripsi} +

    + + + Baca Selengkapnya + + `; + + let sidebarHTML = ""; + + data.slice(1, 5).forEach(item => { + sidebarHTML += ` +
    + +
    + ${formatTanggal(item.tanggal)} + +
    ${item.judul}
    + + + Baca Selengkapnya + +
    + + +
    + `; + + }); + + document.getElementById("sidebar-berita").innerHTML = sidebarHTML; + }); +} + +document.addEventListener("DOMContentLoaded", loadLandingBerita); + +function loadVideoPreview() { + + fetch('/WebNew/Video/GetAll') + .then(res => res.json()) + .then(data => { + + let html = ""; + + data.slice(0, 2).forEach(item => { + html += ` +
    + +
    + +
    + +
    + `; + }); + + document.getElementById("video-preview").innerHTML = html; + }); +} + +document.addEventListener("DOMContentLoaded", loadVideoPreview); + + +//galeri +function loadGaleriPreview() { + + fetch('/WebNew/Galeri/GetAll') + .then(res => res.json()) + .then(data => { + + let html = ""; + + data.forEach(item => { + + html += ` +
    + ${item.judul} +
    + `; + + }); + + document.getElementById("galeri-preview").innerHTML = html; + + }); +} + +document.addEventListener("DOMContentLoaded", loadGaleriPreview); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/layanan/detail-item.js b/wwwroot/webnew/pagesnew/layanan/detail-item.js new file mode 100644 index 0000000..33fe780 --- /dev/null +++ b/wwwroot/webnew/pagesnew/layanan/detail-item.js @@ -0,0 +1,123 @@ +function getQueryParam(name) { + return new URLSearchParams(window.location.search).get(name); +} + +function loadDetail() { + + const kode = getQueryParam("kode"); + + let total = 0; + let tbody = ""; + + fetch(`/WebNew/DetailItem/GetDetail?kode=${kode}`) + .then(res => { + if (!res.ok) throw new Error("Data tidak ditemukan"); + return res.json(); + }) + .then(data => { + + document.getElementById("output").innerText = data.output || "-"; + document.getElementById("jenis").innerText = data.jenis || "-"; + + let thead = ""; + (data.table.columns || []).forEach(col => { + thead += `${col}`; + }); + thead += ""; + document.getElementById("thead").innerHTML = thead; + + (data.table.data || []).forEach(row => { + + tbody += ""; + + (data.table.fields || []).forEach(field => { + + let value = row[field] ?? "-"; + + if (field.toLowerCase().includes("biaya")) { + let num = Number(value) || 0; + total += num; + value = "Rp " + num.toLocaleString(); + } + + tbody += `${value}`; + }); + + tbody += ""; + }); + + tbody += ` + + + Total + + + Rp ${total.toLocaleString()} + + + `; + + document.getElementById("tbody").innerHTML = tbody; + }) + .catch(err => { + console.error(err); + document.getElementById("tbody").innerHTML = + "Data tidak ditemukan"; + }); +} + +document.addEventListener("DOMContentLoaded", function () { + + loadDetail(); + + const search = document.getElementById("search"); + + if (search) { + search.addEventListener("keyup", function () { + const keyword = this.value.toLowerCase(); + const rows = document.querySelectorAll("#tbody tr"); + + rows.forEach(row => { + const text = row.innerText.toLowerCase(); + row.style.display = text.includes(keyword) ? "" : "none"; + }); + }); + } +}); + +function exportDetailExcel() { + + const table = document.querySelector(".custom-table"); + + if (!table) { + alert("Table tidak ditemukan"); + return; + } + + if (typeof XLSX === "undefined") { + alert("Library XLSX belum ter-load"); + return; + } + + const output = document.getElementById("output").innerText; + const jenis = document.getElementById("jenis").innerText; + + const tahun = new Date().getFullYear(); + + const fileName = `detail-${output}-${tahun}.xlsx` + .replace(/\s+/g, "-"); + + const wb = XLSX.utils.book_new(); + const ws = XLSX.utils.table_to_sheet(table); + + XLSX.utils.sheet_add_aoa(ws, [ + ["Rincian Analisis"], + [`Output: ${output}`], + [`Jenis: ${jenis}`], + [] + ], { origin: "A1" }); + + XLSX.utils.book_append_sheet(wb, ws, "Detail"); + + XLSX.writeFile(wb, fileName); +} \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/layanan/detail-layanan.js b/wwwroot/webnew/pagesnew/layanan/detail-layanan.js new file mode 100644 index 0000000..5e79711 --- /dev/null +++ b/wwwroot/webnew/pagesnew/layanan/detail-layanan.js @@ -0,0 +1,297 @@ +let currentPage = {}; +const rowsPerPage = 5; + +function getQueryParam(name) { + const urlParams = new URLSearchParams(window.location.search); + return urlParams.get(name); +} + +function changeService(btn, jenis) { + window.history.pushState({}, "", `/WebNew/layanan?jenis=${jenis}`); + + document.querySelectorAll('.service-btn').forEach(b => b.classList.remove('active')); + if (btn) btn.classList.add('active'); + + loadData(jenis); +} + +function loadData(jenis) { + + if (!jenis) jenis = "air"; + + document.getElementById("judul").innerText = "Loading..."; + + fetch(`/WebNew/layanan/GetData?jenis=${encodeURIComponent(jenis)}`) + .then(res => res.json()) + .then(data => { + + // Informasi layanan + document.getElementById("judul").innerText = + data.judul || "-"; + + document.getElementById("gambar").src = + data.gambar || ""; + + document.getElementById("deskripsi-singkat").innerText = + data["deskripsi-singkat"] || ""; + + // Deskripsi list + let desc = ""; + + (data.deskripsi || []).forEach(d => { + desc += `
  • ${d}
  • `; + }); + + document.getElementById("deskripsi").innerHTML = desc; + + + const judulTable1 = + document.getElementById("judul-table1"); + + const judulTable2 = + document.getElementById("judul-table2"); + + if (judulTable1) { + judulTable1.innerText = + data.judulTable1 || "Info Harga Baku Mutu"; + } + + if (judulTable2) { + judulTable2.innerText = + data.judulTable2 || "Info Harga Per Parameter"; + } + + renderTable("table1", data.table1); + renderTable("table2", data.table2); + + setupPagination("table1"); + setupPagination("table2"); + + }) + .catch(error => { + + console.error(error); + + document.getElementById("judul").innerText = + "Data tidak ditemukan"; + }); +} +document.addEventListener("DOMContentLoaded", function () { + + let jenis = getQueryParam("jenis") || "air"; + + loadData(jenis); + + document.querySelectorAll('.service-btn').forEach(btn => { + btn.classList.toggle('active', btn.dataset.jenis === jenis); + }); + + setupSearch("searchTable-harga", "table1"); + setupSearch("searchTable-parameter", "table2"); +}); + +function renderTable(tableId, tableData) { + + if (!tableData) return; + + let thead = ""; + (tableData.columns || []).forEach(col => { + thead += `${col}`; + }); + thead += ""; + + document.querySelector(`#${tableId} thead`).innerHTML = thead; + + let tbody = ""; + + (tableData.data || []).forEach(row => { + tbody += ""; + + (tableData.fields || []).forEach(field => { + let value = row[field] ?? "-"; + + if (typeof value === "number" && field.toLowerCase().includes("harga")) { + value = "Rp " + value.toLocaleString(); + } + + if (field === "aksi") { + value = ` + + Detail + + `; + } + + tbody += `${value}`; + }); + + tbody += ""; + }); + + document.querySelector(`#${tableId} tbody`).innerHTML = tbody; +} + +function setupPagination(tableId) { + + const rows = Array.from(document.querySelectorAll(`#${tableId} tbody tr`)) + .filter(row => row.style.display !== "none"); + + let container = document.getElementById(`pagination-${tableId}`); + + if (!container) { + container = document.createElement("div"); + container.id = `pagination-${tableId}`; + container.className = "pagination-wrapper"; + + document.querySelector(`#${tableId}`).parentElement.appendChild(container); + } + + const totalRows = rows.length; + const totalPages = Math.ceil(totalRows / rowsPerPage) || 1; + + let page = 1; + + function showPage(p) { + + page = p; + + rows.forEach((row, i) => { + row.style.display = + i >= (p - 1) * rowsPerPage && + i < p * rowsPerPage + ? "" + : "none"; + }); + + render(); + } + + function render() { + + container.innerHTML = ""; + + const start = totalRows === 0 + ? 0 + : (page - 1) * rowsPerPage + 1; + + const end = Math.min(page * rowsPerPage, totalRows); + + const info = document.createElement("div"); + info.className = "pagination-info"; + info.innerText = `Showing ${start}-${end} of ${totalRows}`; + + const controls = document.createElement("div"); + controls.className = "pagination-controls"; + + // Tombol Previous + const prev = document.createElement("button"); + prev.innerHTML = ''; + prev.className = "page-btn" + (page === 1 ? " disabled" : ""); + prev.disabled = page === 1; + prev.onclick = () => showPage(page - 1); + + controls.appendChild(prev); + + let pages = []; + + if (totalPages <= 5) { + pages = [...Array(totalPages).keys()].map(i => i + 1); + } else { + + pages = [1]; + + if (page > 3) + pages.push("..."); + + for ( + let i = Math.max(2, page - 1); + i <= Math.min(totalPages - 1, page + 1); + i++ + ) { + pages.push(i); + } + + if (page < totalPages - 2) + pages.push("..."); + + pages.push(totalPages); + } + + pages.forEach(p => { + + const btn = document.createElement("button"); + + if (p === "...") { + + btn.innerText = "..."; + btn.className = "page-btn disabled"; + btn.disabled = true; + + } else { + + btn.innerText = p; + btn.className = "page-btn" + (p === page ? " active" : ""); + btn.onclick = () => showPage(p); + + } + + controls.appendChild(btn); + }); + + // Tombol Next + const next = document.createElement("button"); + next.innerHTML = ''; + next.className = "page-btn" + (page === totalPages ? " disabled" : ""); + next.disabled = page === totalPages; + next.onclick = () => showPage(page + 1); + + controls.appendChild(next); + + container.appendChild(info); + container.appendChild(controls); + } + + showPage(1); +} + +function setupSearch(inputId, tableId) { + + const input = document.getElementById(inputId); + + input.addEventListener("keyup", function () { + const keyword = input.value.toLowerCase(); + const rows = document.querySelectorAll(`#${tableId} tbody tr`); + + rows.forEach(row => { + const text = row.innerText.toLowerCase(); + row.style.display = text.includes(keyword) ? "" : "none"; + }); + + setupPagination(tableId); + }); +} + +function exportTableToExcel(tableId) { + + const table = document.getElementById(tableId); + + if (!table || typeof XLSX === "undefined") { + alert("Export gagal"); + return; + } + + let jenis = getQueryParam("jenis") || "data"; + const tahun = new Date().getFullYear(); + + jenis = jenis.toLowerCase().replace(/\s+/g, "-"); + + const fileName = `${jenis}-${tableId}-${tahun}.xlsx`; + + const wb = XLSX.utils.book_new(); + const ws = XLSX.utils.table_to_sheet(table); + + XLSX.utils.book_append_sheet(wb, ws, "Data"); + + XLSX.writeFile(wb, fileName); +} \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/layanan/layanan.js b/wwwroot/webnew/pagesnew/layanan/layanan.js new file mode 100644 index 0000000..fce62e3 --- /dev/null +++ b/wwwroot/webnew/pagesnew/layanan/layanan.js @@ -0,0 +1,25 @@ +function getQueryParam(name) { + const urlParams = new URLSearchParams(window.location.search); + return urlParams.get(name); +} + +document.addEventListener("DOMContentLoaded", function () { + + const jenis = getQueryParam("jenis"); + + if (jenis) { + fetch(`/WebNew/layanan/GetData?jenis=${jenis}`) + .then(res => res.json()) + .then(data => { + + document.getElementById("content").innerHTML = ` +
    +

    ${data.judul}

    +
      + ${data.deskripsi.map(d => `
    • ${d}
    • `).join("")} +
    +
    + `; + }); + } +}); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/regulasi.js b/wwwroot/webnew/pagesnew/regulasi.js new file mode 100644 index 0000000..cd3c9ed --- /dev/null +++ b/wwwroot/webnew/pagesnew/regulasi.js @@ -0,0 +1,270 @@ +document.addEventListener("DOMContentLoaded", function () { + + let allData = []; + let filteredData = []; + let currentKategori = "peraturan"; + let currentPage = 1; + const perPage = 10; + + function formatTanggal(dateStr) { + return new Date(dateStr).toLocaleDateString("id-ID", { + day: "numeric", + month: "long", + year: "numeric" + }); + } + + function loadRegulasi() { + fetch('/WebNew/Regulasi/GetRegulasi') + .then(res => res.json()) + .then(data => { + allData = data; + filterData(); + }); + } + + function filterData() { + const keyword = document.getElementById("search").value.toLowerCase(); + const tahun = document.getElementById("tahun").value; + + filteredData = allData.filter(item => { + const kategori = (item.kategori || "").trim().toLowerCase(); + const judul = (item.judul || "").toLowerCase(); + + return ( + kategori === currentKategori && + judul.includes(keyword) && + (tahun === "" || item.tahun == tahun) + ); + }); + + currentPage = 1; + renderPagination(); + } + + function renderPagination() { + const start = (currentPage - 1) * perPage; + const end = start + perPage; + + const paginatedData = filteredData.slice(start, end); + + renderData(paginatedData); + renderPaginationControls(); + renderPaginationInfo(start, end); + } + + function renderData(data) { + + let html = ""; + + if (data.length === 0) { + html = ` +

    + Data tidak ditemukan +

    + `; + } + + data.forEach((item, index) => { + + let lampiranHtml = ""; + + if (item.lampiran && item.lampiran.length > 0) { + + item.lampiran.forEach(l => { + + lampiranHtml += ` +
    + + + + ${l.judul} + + + + +
    + `; + }); + } + + html += ` + +
    + +
    + +
    0 + ? `data-bs-toggle="collapse" + data-bs-target="#lampiran-${index}"` + : ""}> + +
    + +
    + +
    + +
    + ${item.judul} +
    + + + ${formatTanggal(item.tanggal)} + | + Diunduh ${item.download} kali + + +
    + +
    + +
    + + + + Lihat + + + + + + Unduh + + + + + ${item.lampiran?.length > 0 + ? ` + + ` + : "" + } + +
    + +
    + + ${item.lampiran?.length > 0 + ? ` +
    + + ${lampiranHtml} + +
    + ` + : "" + } + +
    + `; + }); + + document.getElementById("list-regulasi").innerHTML = html; + } + + function renderPaginationControls() { + + const totalPages = Math.ceil(filteredData.length / perPage); + + let html = ""; + + if (totalPages === 0) { + document.getElementById("pagination").innerHTML = ""; + return; + } + + html += ` + + `; + + for (let i = 1; i <= totalPages; i++) { + html += ` + + `; + } + + html += ` + + `; + + document.getElementById("pagination").innerHTML = html; + } + + function renderPaginationInfo(start, end) { + const total = filteredData.length; + + if (total === 0) { + document.getElementById("pagination-info").innerHTML = ""; + return; + } + + const from = start + 1; + const to = Math.min(end, total); + + document.getElementById("pagination-info").innerHTML = + `Showing ${from} - ${to} of ${total} data`; + } + + window.changePage = function (page) { + currentPage = page; + renderPagination(); + window.scrollTo({ top: 300, behavior: "smooth" }); + }; + + document.querySelectorAll(".filter-btn").forEach(btn => { + btn.addEventListener("click", function () { + document.querySelectorAll(".filter-btn").forEach(b => b.classList.remove("active")); + this.classList.add("active"); + currentKategori = this.dataset.kategori; + filterData(); + }); + }); + + document.getElementById("search").addEventListener("keyup", filterData); + document.getElementById("tahun").addEventListener("change", filterData); + + loadRegulasi(); + +}); \ No newline at end of file diff --git a/wwwroot/webnew/pagesnew/video.js b/wwwroot/webnew/pagesnew/video.js new file mode 100644 index 0000000..80dce60 --- /dev/null +++ b/wwwroot/webnew/pagesnew/video.js @@ -0,0 +1,40 @@ +function loadVideo() { + + fetch('/WebNew/Video/GetAll') + .then(res => res.json()) + .then(data => { + + let html = ""; + + data.forEach(item => { + html += ` +
    +
    + + 1
    +
    + `; + }); + + document.getElementById("video-list").innerHTML = html; + + }); +} + +function openVideo(url) { + document.getElementById("videoFrame").src = url; + document.getElementById("videoModal").style.display = "flex"; +} + +function closeVideo() { + document.getElementById("videoFrame").src = ""; + document.getElementById("videoModal").style.display = "none"; +} + +document.addEventListener("DOMContentLoaded", loadVideo); \ No newline at end of file