├── LICENSE ├── README.md ├── database └── sql.sql ├── documentations └── .DS_Store ├── programs ├── admin_dashboard │ ├── .next │ │ ├── .DS_Store │ │ ├── build-manifest.json │ │ ├── cache │ │ │ ├── .tsbuildinfo │ │ │ ├── next-server.js.nft.json │ │ │ └── webpack │ │ │ │ ├── client-development-fallback │ │ │ │ ├── 0.pack │ │ │ │ ├── 1.pack │ │ │ │ ├── 2.pack │ │ │ │ ├── 3.pack │ │ │ │ ├── index.pack │ │ │ │ └── index.pack.old │ │ │ │ ├── client-development │ │ │ │ ├── 0.pack │ │ │ │ ├── 1.pack │ │ │ │ ├── 10.pack │ │ │ │ ├── 11.pack │ │ │ │ ├── 12.pack │ │ │ │ ├── 13.pack │ │ │ │ ├── 14.pack │ │ │ │ ├── 15.pack │ │ │ │ ├── 16.pack │ │ │ │ ├── 17.pack │ │ │ │ ├── 18.pack │ │ │ │ ├── 19.pack │ │ │ │ ├── 2.pack │ │ │ │ ├── 20.pack │ │ │ │ ├── 21.pack │ │ │ │ ├── 22.pack │ │ │ │ ├── 23.pack │ │ │ │ ├── 24.pack │ │ │ │ ├── 25.pack │ │ │ │ ├── 26.pack │ │ │ │ ├── 27.pack │ │ │ │ ├── 28.pack │ │ │ │ ├── 29.pack │ │ │ │ ├── 3.pack │ │ │ │ ├── 30.pack │ │ │ │ ├── 4.pack │ │ │ │ ├── 5.pack │ │ │ │ ├── 6.pack │ │ │ │ ├── 7.pack │ │ │ │ ├── 8.pack │ │ │ │ ├── 9.pack │ │ │ │ ├── index.pack │ │ │ │ └── index.pack.old │ │ │ │ ├── client-production │ │ │ │ ├── 0.pack │ │ │ │ └── index.pack │ │ │ │ ├── server-development │ │ │ │ ├── 0.pack │ │ │ │ ├── 1.pack │ │ │ │ ├── 10.pack │ │ │ │ ├── 11.pack │ │ │ │ ├── 12.pack │ │ │ │ ├── 13.pack │ │ │ │ ├── 14.pack │ │ │ │ ├── 15.pack │ │ │ │ ├── 16.pack │ │ │ │ ├── 17.pack │ │ │ │ ├── 18.pack │ │ │ │ ├── 19.pack │ │ │ │ ├── 2.pack │ │ │ │ ├── 20.pack │ │ │ │ ├── 21.pack │ │ │ │ ├── 22.pack │ │ │ │ ├── 23.pack │ │ │ │ ├── 24.pack │ │ │ │ ├── 25.pack │ │ │ │ ├── 26.pack │ │ │ │ ├── 27.pack │ │ │ │ ├── 3.pack │ │ │ │ ├── 4.pack │ │ │ │ ├── 5.pack │ │ │ │ ├── 6.pack │ │ │ │ ├── 7.pack │ │ │ │ ├── 8.pack │ │ │ │ ├── 9.pack │ │ │ │ ├── index.pack │ │ │ │ └── index.pack.old │ │ │ │ └── server-production │ │ │ │ ├── 0.pack │ │ │ │ └── index.pack │ │ ├── react-loadable-manifest.json │ │ ├── server │ │ │ ├── middleware-manifest.json │ │ │ ├── pages-manifest.json │ │ │ ├── pages │ │ │ │ ├── _app.js │ │ │ │ ├── _document.js │ │ │ │ ├── _error.js │ │ │ │ ├── admin.js │ │ │ │ ├── admin │ │ │ │ │ └── new.js │ │ │ │ ├── gps-adapter.js │ │ │ │ ├── index.js │ │ │ │ ├── owner.js │ │ │ │ ├── vehicle-type.js │ │ │ │ ├── vehicle.js │ │ │ │ └── vehicle │ │ │ │ │ └── detail │ │ │ │ │ └── [parameter_id].js │ │ │ └── webpack-runtime.js │ │ ├── static │ │ │ ├── .DS_Store │ │ │ ├── chunks │ │ │ │ ├── amp.js │ │ │ │ ├── main.js │ │ │ │ ├── pages │ │ │ │ │ ├── _app.js │ │ │ │ │ ├── _error.js │ │ │ │ │ ├── admin.js │ │ │ │ │ ├── admin │ │ │ │ │ │ └── new.js │ │ │ │ │ ├── gps-adapter.js │ │ │ │ │ ├── gps-adapter │ │ │ │ │ │ └── new.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── owner.js │ │ │ │ │ ├── owner │ │ │ │ │ │ └── new.js │ │ │ │ │ ├── vehicle-type.js │ │ │ │ │ ├── vehicle-type │ │ │ │ │ │ └── new.js │ │ │ │ │ ├── vehicle.js │ │ │ │ │ └── vehicle │ │ │ │ │ │ ├── detail │ │ │ │ │ │ └── [parameter_id].js │ │ │ │ │ │ └── new.js │ │ │ │ ├── polyfills.js │ │ │ │ ├── react-refresh.js │ │ │ │ └── webpack.js │ │ │ ├── development │ │ │ │ ├── _buildManifest.js │ │ │ │ ├── _middlewareManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ └── webpack │ │ │ │ ├── 04e1910d70794da6.webpack.hot-update.json │ │ │ │ ├── 060b25078218fe3d.webpack.hot-update.json │ │ │ │ ├── 068655c8a8b2894c.webpack.hot-update.json │ │ │ │ ├── 08f6bb7c5ca60ab2.webpack.hot-update.json │ │ │ │ ├── 0ec231136da2766f.webpack.hot-update.json │ │ │ │ ├── 0fc8fcd708275109.webpack.hot-update.json │ │ │ │ ├── 1426833fcdf940d5.webpack.hot-update.json │ │ │ │ ├── 152db2126c54d031.webpack.hot-update.json │ │ │ │ ├── 17b25eddf2e20d1b.webpack.hot-update.json │ │ │ │ ├── 19a5b15f9cd10e7b.webpack.hot-update.json │ │ │ │ ├── 1d53f2cd98a6f4a8.webpack.hot-update.json │ │ │ │ ├── 1f67a3b3c6b748cd.webpack.hot-update.json │ │ │ │ ├── 28a8cbb76ab42ad4.webpack.hot-update.json │ │ │ │ ├── 2a6eca283024fe49.webpack.hot-update.json │ │ │ │ ├── 3685d8eeefc7b0e6.webpack.hot-update.json │ │ │ │ ├── 375a2fcd92f69fb3.webpack.hot-update.json │ │ │ │ ├── 3af98c9c96c5f86c.webpack.hot-update.json │ │ │ │ ├── 3b8a202f46efd960.webpack.hot-update.json │ │ │ │ ├── 3bf120944120ad19.webpack.hot-update.json │ │ │ │ ├── 3c45a1a0b6818774.webpack.hot-update.json │ │ │ │ ├── 3cb2ae41ade0b0a5.webpack.hot-update.json │ │ │ │ ├── 3d0c0a0137f8bbd1.webpack.hot-update.json │ │ │ │ ├── 3dbd36428d18d594.webpack.hot-update.json │ │ │ │ ├── 413e81b76962aee4.webpack.hot-update.json │ │ │ │ ├── 41836e93ae133b6c.webpack.hot-update.json │ │ │ │ ├── 41edaefa8a11678d.webpack.hot-update.json │ │ │ │ ├── 483d6bd86fdf7a87.webpack.hot-update.json │ │ │ │ ├── 4969df5a0f1d006d.webpack.hot-update.json │ │ │ │ ├── 4c7d4086c3088a8d.webpack.hot-update.json │ │ │ │ ├── 4ee3ad7f85665463.webpack.hot-update.json │ │ │ │ ├── 519483d42e52c493.webpack.hot-update.json │ │ │ │ ├── 5728cf6507f56142.webpack.hot-update.json │ │ │ │ ├── 5dfc7794602b4a3f.webpack.hot-update.json │ │ │ │ ├── 5f728fa27a60112a.webpack.hot-update.json │ │ │ │ ├── 613d57a9290e7a11.webpack.hot-update.json │ │ │ │ ├── 65e59d3bb50a07d6.webpack.hot-update.json │ │ │ │ ├── 6929d4472055c754.webpack.hot-update.json │ │ │ │ ├── 6b9c28d635869606.webpack.hot-update.json │ │ │ │ ├── 6f7173d43a4eb18f.webpack.hot-update.json │ │ │ │ ├── 72caaf21cae8f7fc.webpack.hot-update.json │ │ │ │ ├── 7b471b1d1f5063bf.webpack.hot-update.json │ │ │ │ ├── 7bcaf19da05c37ae.webpack.hot-update.json │ │ │ │ ├── 7c49763727dffb56.webpack.hot-update.json │ │ │ │ ├── 7e4ac40a24473bcb.webpack.hot-update.json │ │ │ │ ├── 811eb3eef9bc9709.webpack.hot-update.json │ │ │ │ ├── 8710e06f82016aab.webpack.hot-update.json │ │ │ │ ├── 8a52b5a02c07dfce.webpack.hot-update.json │ │ │ │ ├── 9b76274025fbfde9.webpack.hot-update.json │ │ │ │ ├── 9c5fc63f87c45fcc.webpack.hot-update.json │ │ │ │ ├── 9c71d227eec80fc2.webpack.hot-update.json │ │ │ │ ├── 9e69d71d796fca90.webpack.hot-update.json │ │ │ │ ├── a4a1379abbaa36e1.webpack.hot-update.json │ │ │ │ ├── a826e37f01bbf780.webpack.hot-update.json │ │ │ │ ├── aa4e27e828ba0e62.webpack.hot-update.json │ │ │ │ ├── ab708250b4fcbb58.webpack.hot-update.json │ │ │ │ ├── ad50fe37e5ba1ac3.webpack.hot-update.json │ │ │ │ ├── ae093f0244d352ad.webpack.hot-update.json │ │ │ │ ├── ae09a28f190885f7.webpack.hot-update.json │ │ │ │ ├── ae72310cefccec80.webpack.hot-update.json │ │ │ │ ├── af8b1b90df69ff18.webpack.hot-update.json │ │ │ │ ├── b0bd88858cd327fd.webpack.hot-update.json │ │ │ │ ├── b27c21548789ed6f.webpack.hot-update.json │ │ │ │ ├── ba7b780f527dbc50.webpack.hot-update.json │ │ │ │ ├── bf701f60467fddf2.webpack.hot-update.json │ │ │ │ ├── c294f3a66705ef2e.webpack.hot-update.json │ │ │ │ ├── c2b403f56144b438.webpack.hot-update.json │ │ │ │ ├── c7c0f3dc6a032049.webpack.hot-update.json │ │ │ │ ├── c92fc322fc45a23a.webpack.hot-update.json │ │ │ │ ├── c9d38c99943d5900.webpack.hot-update.json │ │ │ │ ├── cc0a9a70d62d8415.webpack.hot-update.json │ │ │ │ ├── d1a75d1d75fb242a.webpack.hot-update.json │ │ │ │ ├── d478fae7cd830682.webpack.hot-update.json │ │ │ │ ├── d70fcc5da29f987b.webpack.hot-update.json │ │ │ │ ├── d84e983690e1ea77.webpack.hot-update.json │ │ │ │ ├── d969cf8ae4356b88.webpack.hot-update.json │ │ │ │ ├── de1f79e3797371ca.webpack.hot-update.json │ │ │ │ ├── dfa3eb34e75d13ab.webpack.hot-update.json │ │ │ │ ├── dfd86ebe9c081d2f.webpack.hot-update.json │ │ │ │ ├── e54102fb6effe716.webpack.hot-update.json │ │ │ │ ├── e5b932454b64dfff.webpack.hot-update.json │ │ │ │ ├── e68a38ce6dc583a8.webpack.hot-update.json │ │ │ │ ├── e7ba07b0a9287c6e.webpack.hot-update.json │ │ │ │ ├── e96aa1826b4b4c3a.webpack.hot-update.json │ │ │ │ ├── ef67ef4fd5b02a7b.webpack.hot-update.json │ │ │ │ ├── f043688152107eb0.webpack.hot-update.json │ │ │ │ ├── f048c7d80eedd770.webpack.hot-update.json │ │ │ │ ├── fa0d722b1ccaaa3c.webpack.hot-update.json │ │ │ │ ├── faa8e4ff89b9cfce.webpack.hot-update.json │ │ │ │ ├── fca26efeaf5a9411.webpack.hot-update.json │ │ │ │ ├── fe6ae1d388f7e966.webpack.hot-update.json │ │ │ │ ├── ff3aae71533798df.webpack.hot-update.json │ │ │ │ ├── pages │ │ │ │ ├── _app.fa0d722b1ccaaa3c.hot-update.js │ │ │ │ └── vehicle │ │ │ │ │ └── detail │ │ │ │ │ ├── [parameter_id].0fc8fcd708275109.hot-update.js │ │ │ │ │ ├── [parameter_id].19a5b15f9cd10e7b.hot-update.js │ │ │ │ │ ├── [parameter_id].ab708250b4fcbb58.hot-update.js │ │ │ │ │ ├── [parameter_id].ad50fe37e5ba1ac3.hot-update.js │ │ │ │ │ └── [parameter_id].e96aa1826b4b4c3a.hot-update.js │ │ │ │ ├── webpack.04e1910d70794da6.hot-update.js │ │ │ │ ├── webpack.060b25078218fe3d.hot-update.js │ │ │ │ ├── webpack.068655c8a8b2894c.hot-update.js │ │ │ │ ├── webpack.08f6bb7c5ca60ab2.hot-update.js │ │ │ │ ├── webpack.0ec231136da2766f.hot-update.js │ │ │ │ ├── webpack.0fc8fcd708275109.hot-update.js │ │ │ │ ├── webpack.1426833fcdf940d5.hot-update.js │ │ │ │ ├── webpack.152db2126c54d031.hot-update.js │ │ │ │ ├── webpack.17b25eddf2e20d1b.hot-update.js │ │ │ │ ├── webpack.19a5b15f9cd10e7b.hot-update.js │ │ │ │ ├── webpack.1d53f2cd98a6f4a8.hot-update.js │ │ │ │ ├── webpack.1f67a3b3c6b748cd.hot-update.js │ │ │ │ ├── webpack.28a8cbb76ab42ad4.hot-update.js │ │ │ │ ├── webpack.2a6eca283024fe49.hot-update.js │ │ │ │ ├── webpack.3685d8eeefc7b0e6.hot-update.js │ │ │ │ ├── webpack.375a2fcd92f69fb3.hot-update.js │ │ │ │ ├── webpack.3af98c9c96c5f86c.hot-update.js │ │ │ │ ├── webpack.3b8a202f46efd960.hot-update.js │ │ │ │ ├── webpack.3bf120944120ad19.hot-update.js │ │ │ │ ├── webpack.3c45a1a0b6818774.hot-update.js │ │ │ │ ├── webpack.3cb2ae41ade0b0a5.hot-update.js │ │ │ │ ├── webpack.3d0c0a0137f8bbd1.hot-update.js │ │ │ │ ├── webpack.3dbd36428d18d594.hot-update.js │ │ │ │ ├── webpack.413e81b76962aee4.hot-update.js │ │ │ │ ├── webpack.41836e93ae133b6c.hot-update.js │ │ │ │ ├── webpack.41edaefa8a11678d.hot-update.js │ │ │ │ ├── webpack.483d6bd86fdf7a87.hot-update.js │ │ │ │ ├── webpack.4969df5a0f1d006d.hot-update.js │ │ │ │ ├── webpack.4c7d4086c3088a8d.hot-update.js │ │ │ │ ├── webpack.4ee3ad7f85665463.hot-update.js │ │ │ │ ├── webpack.519483d42e52c493.hot-update.js │ │ │ │ ├── webpack.5728cf6507f56142.hot-update.js │ │ │ │ ├── webpack.5dfc7794602b4a3f.hot-update.js │ │ │ │ ├── webpack.5f728fa27a60112a.hot-update.js │ │ │ │ ├── webpack.613d57a9290e7a11.hot-update.js │ │ │ │ ├── webpack.65e59d3bb50a07d6.hot-update.js │ │ │ │ ├── webpack.6929d4472055c754.hot-update.js │ │ │ │ ├── webpack.6b9c28d635869606.hot-update.js │ │ │ │ ├── webpack.6f7173d43a4eb18f.hot-update.js │ │ │ │ ├── webpack.72caaf21cae8f7fc.hot-update.js │ │ │ │ ├── webpack.7b471b1d1f5063bf.hot-update.js │ │ │ │ ├── webpack.7bcaf19da05c37ae.hot-update.js │ │ │ │ ├── webpack.7c49763727dffb56.hot-update.js │ │ │ │ ├── webpack.7e4ac40a24473bcb.hot-update.js │ │ │ │ ├── webpack.811eb3eef9bc9709.hot-update.js │ │ │ │ ├── webpack.8710e06f82016aab.hot-update.js │ │ │ │ ├── webpack.8a52b5a02c07dfce.hot-update.js │ │ │ │ ├── webpack.9b76274025fbfde9.hot-update.js │ │ │ │ ├── webpack.9c5fc63f87c45fcc.hot-update.js │ │ │ │ ├── webpack.9c71d227eec80fc2.hot-update.js │ │ │ │ ├── webpack.9e69d71d796fca90.hot-update.js │ │ │ │ ├── webpack.a4a1379abbaa36e1.hot-update.js │ │ │ │ ├── webpack.a826e37f01bbf780.hot-update.js │ │ │ │ ├── webpack.aa4e27e828ba0e62.hot-update.js │ │ │ │ ├── webpack.ab708250b4fcbb58.hot-update.js │ │ │ │ ├── webpack.ad50fe37e5ba1ac3.hot-update.js │ │ │ │ ├── webpack.ae093f0244d352ad.hot-update.js │ │ │ │ ├── webpack.ae09a28f190885f7.hot-update.js │ │ │ │ ├── webpack.ae72310cefccec80.hot-update.js │ │ │ │ ├── webpack.af8b1b90df69ff18.hot-update.js │ │ │ │ ├── webpack.b0bd88858cd327fd.hot-update.js │ │ │ │ ├── webpack.b27c21548789ed6f.hot-update.js │ │ │ │ ├── webpack.ba7b780f527dbc50.hot-update.js │ │ │ │ ├── webpack.bf701f60467fddf2.hot-update.js │ │ │ │ ├── webpack.c294f3a66705ef2e.hot-update.js │ │ │ │ ├── webpack.c2b403f56144b438.hot-update.js │ │ │ │ ├── webpack.c7c0f3dc6a032049.hot-update.js │ │ │ │ ├── webpack.c92fc322fc45a23a.hot-update.js │ │ │ │ ├── webpack.c9d38c99943d5900.hot-update.js │ │ │ │ ├── webpack.cc0a9a70d62d8415.hot-update.js │ │ │ │ ├── webpack.d1a75d1d75fb242a.hot-update.js │ │ │ │ ├── webpack.d478fae7cd830682.hot-update.js │ │ │ │ ├── webpack.d70fcc5da29f987b.hot-update.js │ │ │ │ ├── webpack.d84e983690e1ea77.hot-update.js │ │ │ │ ├── webpack.d969cf8ae4356b88.hot-update.js │ │ │ │ ├── webpack.de1f79e3797371ca.hot-update.js │ │ │ │ ├── webpack.dfa3eb34e75d13ab.hot-update.js │ │ │ │ ├── webpack.dfd86ebe9c081d2f.hot-update.js │ │ │ │ ├── webpack.e54102fb6effe716.hot-update.js │ │ │ │ ├── webpack.e5b932454b64dfff.hot-update.js │ │ │ │ ├── webpack.e68a38ce6dc583a8.hot-update.js │ │ │ │ ├── webpack.e7ba07b0a9287c6e.hot-update.js │ │ │ │ ├── webpack.e96aa1826b4b4c3a.hot-update.js │ │ │ │ ├── webpack.ef67ef4fd5b02a7b.hot-update.js │ │ │ │ ├── webpack.f043688152107eb0.hot-update.js │ │ │ │ ├── webpack.f048c7d80eedd770.hot-update.js │ │ │ │ ├── webpack.fa0d722b1ccaaa3c.hot-update.js │ │ │ │ ├── webpack.faa8e4ff89b9cfce.hot-update.js │ │ │ │ ├── webpack.fca26efeaf5a9411.hot-update.js │ │ │ │ ├── webpack.fe6ae1d388f7e966.hot-update.js │ │ │ │ └── webpack.ff3aae71533798df.hot-update.js │ │ └── trace │ ├── README.md │ ├── classes │ │ └── chunkarray.tsx │ ├── components │ │ ├── authorization.js │ │ ├── cookie.js │ │ ├── header │ │ │ └── index.tsx │ │ ├── hydrationpagination.js │ │ ├── layouts │ │ │ ├── dashboardlayout.tsx │ │ │ └── mainlayout.tsx │ │ └── pagination.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── .DS_Store │ │ ├── 404.tsx │ │ ├── 500.tsx │ │ ├── _app.tsx │ │ ├── admin │ │ │ ├── detail │ │ │ │ └── [parameter_id] │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── new.js │ │ ├── api │ │ │ └── hello.ts │ │ ├── gps-adapter │ │ │ ├── detail │ │ │ │ └── [parameter_id] │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── new.js │ │ ├── index.js │ │ ├── owner │ │ │ ├── detail │ │ │ │ └── [parameter_id] │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── new.js │ │ ├── test │ │ │ └── index.tsx │ │ ├── vehicle-type │ │ │ ├── detail │ │ │ │ └── [parameter_id] │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── new.js │ │ └── vehicle │ │ │ ├── detail │ │ │ └── [parameter_id] │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── new.js │ ├── public │ │ ├── .DS_Store │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── DancingScript-Regular.ttf │ │ │ └── DarkerGrotesque-Regular.ttf │ │ ├── health.html │ │ ├── media │ │ │ ├── DancingScript-Regular.db610923.ttf │ │ │ ├── DarkerGrotesque-Regular.6d4ef8de.ttf │ │ │ ├── akn.png │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── logo.17eb467f.svg │ │ │ └── logo.svg │ │ └── vercel.svg │ ├── src │ │ └── aws-exports.js │ ├── styles │ │ ├── DashboardLayout.module.css │ │ ├── MainLayout.module.css │ │ ├── PrivacyPolicy.module.css │ │ ├── css │ │ │ └── Calendar.less │ │ ├── globals.css │ │ ├── index.module.css │ │ └── vehicle.module.css │ └── tsconfig.json └── api │ ├── .DS_Store │ ├── .env │ ├── README.md │ ├── api-server.js │ ├── app │ ├── .DS_Store │ ├── config │ │ └── lib.config.js │ ├── controllers │ │ ├── .DS_Store │ │ ├── admin │ │ │ ├── admin.controller.js │ │ │ ├── authorization.controller.js │ │ │ ├── gpsadapter.controller.js │ │ │ ├── owner.controller.js │ │ │ ├── vehicle.controller.js │ │ │ └── vehicletype.controller.js │ │ └── vehicle │ │ │ ├── authorization.controller.js │ │ │ └── tracking.controller.js │ ├── functions │ │ ├── authmiddleware.function.js │ │ ├── dateformat.functions.js │ │ └── generatekey.functions.js │ ├── models │ │ ├── admin.model.js │ │ ├── admintoken.model.js │ │ ├── devicelocation.model.js │ │ ├── gpsadapter.model.js │ │ ├── owner.model.js │ │ ├── sqlAdapter.js │ │ ├── vehicle.model.js │ │ └── vehicletype.model.js │ └── routes │ │ ├── .DS_Store │ │ ├── admin-api │ │ ├── admin.routes.js │ │ ├── authorization.routes.js │ │ ├── gpsadapter.routes.js │ │ ├── owner.routes.js │ │ ├── vehicle.routes.js │ │ └── vehicletype.routes.js │ │ ├── index.routes.js │ │ └── vehicle-api │ │ ├── tracking.routes.js │ │ └── vehicleauthorization.routes.js │ └── package.json └── resource ├── cloud-archie.png ├── dashboard-api-flow.png ├── data-flow-sequence.png ├── data-model.png ├── erd.png ├── symbol-description.png └── vehicle-api-flow.png /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Aung Kyaw Nyunt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /database/sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/database/sql.sql -------------------------------------------------------------------------------- /documentations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/documentations/.DS_Store -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/.DS_Store -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/build-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "polyfillFiles": [ 3 | "static/chunks/polyfills.js" 4 | ], 5 | "devFiles": [ 6 | "static/chunks/react-refresh.js" 7 | ], 8 | "ampDevFiles": [ 9 | "static/chunks/webpack.js", 10 | "static/chunks/amp.js" 11 | ], 12 | "lowPriorityFiles": [ 13 | "static/development/_buildManifest.js", 14 | "static/development/_ssgManifest.js", 15 | "static/development/_middlewareManifest.js" 16 | ], 17 | "pages": { 18 | "/_app": [ 19 | "static/chunks/webpack.js", 20 | "static/chunks/main.js", 21 | "static/chunks/pages/_app.js" 22 | ], 23 | "/_error": [ 24 | "static/chunks/webpack.js", 25 | "static/chunks/main.js", 26 | "static/chunks/pages/_error.js" 27 | ], 28 | "/admin": [ 29 | "static/chunks/webpack.js", 30 | "static/chunks/main.js", 31 | "static/chunks/pages/admin.js" 32 | ], 33 | "/owner": [ 34 | "static/chunks/webpack.js", 35 | "static/chunks/main.js", 36 | "static/chunks/pages/owner.js" 37 | ], 38 | "/vehicle/detail/[parameter_id]": [ 39 | "static/chunks/webpack.js", 40 | "static/chunks/main.js", 41 | "static/chunks/pages/vehicle/detail/[parameter_id].js" 42 | ] 43 | }, 44 | "ampFirstPages": [] 45 | } -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development-fallback/0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development-fallback/0.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development-fallback/1.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development-fallback/1.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development-fallback/2.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development-fallback/2.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development-fallback/3.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development-fallback/3.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development-fallback/index.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development-fallback/index.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development-fallback/index.pack.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development-fallback/index.pack.old -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/0.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/1.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/1.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/10.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/10.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/11.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/11.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/12.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/12.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/13.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/13.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/14.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/14.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/15.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/15.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/16.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/16.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/17.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/17.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/18.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/18.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/19.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/19.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/2.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/2.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/20.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/20.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/21.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/21.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/22.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/22.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/23.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/23.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/24.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/24.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/25.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/25.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/26.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/26.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/27.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/27.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/28.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/28.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/29.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/29.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/3.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/3.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/30.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/30.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/4.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/4.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/5.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/5.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/6.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/6.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/7.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/7.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/8.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/8.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/9.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/9.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/index.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/index.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-development/index.pack.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-development/index.pack.old -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-production/0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-production/0.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/client-production/index.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/client-production/index.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/0.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/1.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/1.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/10.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/10.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/11.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/11.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/12.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/12.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/13.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/13.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/14.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/14.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/15.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/15.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/16.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/16.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/17.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/17.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/18.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/18.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/19.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/19.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/2.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/2.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/20.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/20.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/21.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/21.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/22.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/22.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/23.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/23.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/24.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/24.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/25.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/25.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/26.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/26.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/27.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/27.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/3.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/3.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/4.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/4.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/5.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/5.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/6.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/6.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/7.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/7.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/8.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/8.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/9.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/9.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/index.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/index.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-development/index.pack.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-development/index.pack.old -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-production/0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-production/0.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/cache/webpack/server-production/index.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/cache/webpack/server-production/index.pack -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/react-loadable-manifest.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/server/middleware-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "sortedMiddleware": [], 3 | "clientInfo": [], 4 | "middleware": {}, 5 | "version": 1 6 | } -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/server/pages-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/_app": "pages/_app.js", 3 | "/_error": "pages/_error.js", 4 | "/_document": "pages/_document.js", 5 | "/owner": "pages/owner.js", 6 | "/admin": "pages/admin.js" 7 | } -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/.next/static/.DS_Store -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/development/_buildManifest.js: -------------------------------------------------------------------------------- 1 | self.__BUILD_MANIFEST = {__rewrites:{beforeFiles:[],afterFiles:[],fallback:[]},"/_error":["static\u002Fchunks\u002Fpages\u002F_error.js"],"/admin":["static\u002Fchunks\u002Fpages\u002Fadmin.js"],"/owner":["static\u002Fchunks\u002Fpages\u002Fowner.js"],"/vehicle/detail/[parameter_id]":["static\u002Fchunks\u002Fpages\u002Fvehicle\u002Fdetail\u002F[parameter_id].js"],sortedPages:["\u002F_app","\u002F_error","\u002Fadmin","\u002Fowner","\u002Fvehicle\u002Fdetail\u002F[parameter_id]"]};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB() -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/development/_middlewareManifest.js: -------------------------------------------------------------------------------- 1 | self.__MIDDLEWARE_MANIFEST=[];self.__MIDDLEWARE_MANIFEST_CB&&self.__MIDDLEWARE_MANIFEST_CB() -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/development/_ssgManifest.js: -------------------------------------------------------------------------------- 1 | self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB() -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/04e1910d70794da6.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/060b25078218fe3d.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin","pages/vehicle","pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Findex.js!","./pages/admin/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/068655c8a8b2894c.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/08f6bb7c5ca60ab2.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/0ec231136da2766f.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/0fc8fcd708275109.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["pages/vehicle/detail/[parameter_id]","webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/1426833fcdf940d5.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/152db2126c54d031.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/17b25eddf2e20d1b.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/19a5b15f9cd10e7b.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["pages/vehicle/detail/[parameter_id]","webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/1d53f2cd98a6f4a8.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter","pages/gps-adapter/new","pages/owner"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/1f67a3b3c6b748cd.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/28a8cbb76ab42ad4.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/2a6eca283024fe49.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Fnew.js!","./pages/admin/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3685d8eeefc7b0e6.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/375a2fcd92f69fb3.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3af98c9c96c5f86c.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3b8a202f46efd960.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3bf120944120ad19.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3c45a1a0b6818774.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3cb2ae41ade0b0a5.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3d0c0a0137f8bbd1.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner","pages/owner/new","pages/index","pages/vehicle"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js","./components/cookie.js","./components/layouts/mainlayout.tsx","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/MainLayout.module.css","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/index.module.css","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Findex.js!","./pages/index.js","./styles/MainLayout.module.css","./styles/index.module.css","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/3dbd36428d18d594.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/413e81b76962aee4.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle/new","pages/index"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Fnew.js!","./pages/vehicle/new.js","./components/cookie.js","./components/layouts/mainlayout.tsx","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/MainLayout.module.css","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/index.module.css","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Findex.js!","./pages/index.js","./styles/MainLayout.module.css","./styles/index.module.css"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/41836e93ae133b6c.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/41edaefa8a11678d.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/483d6bd86fdf7a87.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/4969df5a0f1d006d.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/4c7d4086c3088a8d.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Fnew.js!","./pages/vehicle/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/4ee3ad7f85665463.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/519483d42e52c493.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/5728cf6507f56142.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/5dfc7794602b4a3f.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/5f728fa27a60112a.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner","pages/owner/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/613d57a9290e7a11.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/65e59d3bb50a07d6.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type","pages/vehicle-type/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Fnew.js!","./pages/vehicle-type/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/6929d4472055c754.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/6b9c28d635869606.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/6f7173d43a4eb18f.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner/new","pages/owner"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/72caaf21cae8f7fc.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/7b471b1d1f5063bf.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/7bcaf19da05c37ae.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/7c49763727dffb56.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner","pages/owner/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Findex.js!","./pages/owner/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/7e4ac40a24473bcb.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/811eb3eef9bc9709.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/8710e06f82016aab.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/8a52b5a02c07dfce.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/9b76274025fbfde9.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/9c5fc63f87c45fcc.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin","pages/vehicle","pages/vehicle-type/new","pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Findex.js!","./pages/admin/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Fnew.js!","./pages/vehicle-type/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/9c71d227eec80fc2.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter/new","pages/vehicle-type/new","pages/vehicle-type","pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Fnew.js!","./pages/vehicle-type/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/9e69d71d796fca90.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle","pages/gps-adapter","pages/vehicle-type","pages/gps-adapter/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/a4a1379abbaa36e1.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Findex.js!","./pages/admin/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/a826e37f01bbf780.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/aa4e27e828ba0e62.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ab708250b4fcbb58.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["pages/vehicle/detail/[parameter_id]","webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ad50fe37e5ba1ac3.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["pages/vehicle/detail/[parameter_id]","webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ae093f0244d352ad.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ae09a28f190885f7.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter/new","pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ae72310cefccec80.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/af8b1b90df69ff18.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/b0bd88858cd327fd.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Findex.js!","./pages/admin/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/b27c21548789ed6f.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Findex.js!","./pages/admin/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ba7b780f527dbc50.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/bf701f60467fddf2.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/c294f3a66705ef2e.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle/new","pages/vehicle"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Fnew.js!","./pages/vehicle/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Findex.js!","./pages/vehicle/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/c2b403f56144b438.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle/detail/[parameter_id]"],"m":["./components/hydrationpagination.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle%2Fdetail%2F%5Bparameter_id%5D&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle%2Fdetail%2F%5Bparameter_id%5D%2Findex.js!","./node_modules/next/script.js","./pages/vehicle/detail/[parameter_id]/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/c7c0f3dc6a032049.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/c92fc322fc45a23a.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/c9d38c99943d5900.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Fnew.js!","./pages/vehicle-type/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/cc0a9a70d62d8415.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/index"],"m":["./components/cookie.js","./components/layouts/mainlayout.tsx","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/MainLayout.module.css","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/index.module.css","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Findex.js!","./pages/index.js","./styles/MainLayout.module.css","./styles/index.module.css"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/d1a75d1d75fb242a.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/owner/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fowner%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fowner%2Fnew.js!","./pages/owner/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/d478fae7cd830682.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Fnew.js!","./pages/admin/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/d70fcc5da29f987b.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter/new","pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Fnew.js!","./pages/gps-adapter/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/d84e983690e1ea77.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/index"],"m":["./components/cookie.js","./components/layouts/mainlayout.tsx","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/MainLayout.module.css","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/index.module.css","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Findex.js!","./pages/index.js","./styles/MainLayout.module.css","./styles/index.module.css"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/d969cf8ae4356b88.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/index"],"m":["./components/cookie.js","./components/layouts/mainlayout.tsx","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/MainLayout.module.css","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[4].use[2]!./styles/index.module.css","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2F&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Findex.js!","./pages/index.js","./styles/MainLayout.module.css","./styles/index.module.css"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/de1f79e3797371ca.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/dfa3eb34e75d13ab.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/dfd86ebe9c081d2f.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/e54102fb6effe716.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Fnew.js!","./pages/admin/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/e5b932454b64dfff.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/e68a38ce6dc583a8.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/e7ba07b0a9287c6e.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/e96aa1826b4b4c3a.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["pages/vehicle/detail/[parameter_id]","webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ef67ef4fd5b02a7b.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/f043688152107eb0.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/gps-adapter"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fgps-adapter&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fgps-adapter%2Findex.js!","./pages/gps-adapter/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/f048c7d80eedd770.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/admin/new","pages/admin"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Fnew.js!","./pages/admin/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fadmin&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fadmin%2Findex.js!","./pages/admin/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/fa0d722b1ccaaa3c.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["pages/_app","webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/faa8e4ff89b9cfce.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/fca26efeaf5a9411.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type/new"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Fnew.js!","./pages/vehicle-type/new.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/fe6ae1d388f7e966.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":[],"m":[]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/ff3aae71533798df.webpack.hot-update.json: -------------------------------------------------------------------------------- 1 | {"c":["webpack"],"r":["pages/vehicle-type/new","pages/vehicle-type"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type%2Fnew&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Fnew.js!","./pages/vehicle-type/new.js","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?page=%2Fvehicle-type&absolutePagePath=%2FUsers%2Fakn%2FWork%2FIOT%2FVehicleTrackingSystem%2Fprograms%2Fadmin_dashboard%2Fpages%2Fvehicle-type%2Findex.js!","./pages/vehicle-type/index.js"]} -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.04e1910d70794da6.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "b0bd88858cd327fd"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.060b25078218fe3d.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "e68a38ce6dc583a8"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.068655c8a8b2894c.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "d84e983690e1ea77"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.08f6bb7c5ca60ab2.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3685d8eeefc7b0e6"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.0ec231136da2766f.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "a4a1379abbaa36e1"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.0fc8fcd708275109.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "19a5b15f9cd10e7b"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.1426833fcdf940d5.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "375a2fcd92f69fb3"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.152db2126c54d031.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "dfa3eb34e75d13ab"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.17b25eddf2e20d1b.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ae09a28f190885f7"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.19a5b15f9cd10e7b.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "fa0d722b1ccaaa3c"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.1d53f2cd98a6f4a8.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "d1a75d1d75fb242a"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.1f67a3b3c6b748cd.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3cb2ae41ade0b0a5"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.28a8cbb76ab42ad4.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "08f6bb7c5ca60ab2"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.2a6eca283024fe49.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "cc0a9a70d62d8415"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3685d8eeefc7b0e6.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "4ee3ad7f85665463"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.375a2fcd92f69fb3.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "fca26efeaf5a9411"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3af98c9c96c5f86c.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "d70fcc5da29f987b"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3b8a202f46efd960.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "9c5fc63f87c45fcc"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3bf120944120ad19.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "152db2126c54d031"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3c45a1a0b6818774.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "2a6eca283024fe49"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3cb2ae41ade0b0a5.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "6f7173d43a4eb18f"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3d0c0a0137f8bbd1.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ae72310cefccec80"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.3dbd36428d18d594.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "4c7d4086c3088a8d"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.413e81b76962aee4.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "1426833fcdf940d5"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.41836e93ae133b6c.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ef67ef4fd5b02a7b"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.41edaefa8a11678d.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "04e1910d70794da6"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.483d6bd86fdf7a87.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "28a8cbb76ab42ad4"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.4969df5a0f1d006d.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "72caaf21cae8f7fc"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.4c7d4086c3088a8d.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "089aa7a36ab3f4d3"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.4ee3ad7f85665463.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "8a52b5a02c07dfce"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.519483d42e52c493.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "413e81b76962aee4"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.5728cf6507f56142.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "aa4e27e828ba0e62"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.5dfc7794602b4a3f.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "c294f3a66705ef2e"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.5f728fa27a60112a.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3bf120944120ad19"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.613d57a9290e7a11.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "5f728fa27a60112a"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.65e59d3bb50a07d6.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "483d6bd86fdf7a87"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.6929d4472055c754.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "c2b403f56144b438"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.6b9c28d635869606.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "7c49763727dffb56"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.6f7173d43a4eb18f.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ba7b780f527dbc50"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.72caaf21cae8f7fc.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ae093f0244d352ad"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.7b471b1d1f5063bf.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "e5b932454b64dfff"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.7bcaf19da05c37ae.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "6929d4472055c754"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.7c49763727dffb56.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "b27c21548789ed6f"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.7e4ac40a24473bcb.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "0ec231136da2766f"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.811eb3eef9bc9709.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "f043688152107eb0"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.8710e06f82016aab.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "d969cf8ae4356b88"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.8a52b5a02c07dfce.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "c92fc322fc45a23a"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.9b76274025fbfde9.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "7e4ac40a24473bcb"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ /* webpack/runtime/compat */ 18 | /******/ 19 | /******/ 20 | /******/ // noop fns to prevent runtime errors during initialization 21 | /******/ if (typeof self !== "undefined") { 22 | /******/ self.$RefreshReg$ = function () {}; 23 | /******/ self.$RefreshSig$ = function () { 24 | /******/ return function (type) { 25 | /******/ return type; 26 | /******/ }; 27 | /******/ }; 28 | /******/ } 29 | /******/ 30 | /******/ } 31 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.9c5fc63f87c45fcc.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "17b25eddf2e20d1b"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.9c71d227eec80fc2.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3dbd36428d18d594"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.9e69d71d796fca90.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "6b9c28d635869606"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.a4a1379abbaa36e1.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "519483d42e52c493"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.a826e37f01bbf780.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "de1f79e3797371ca"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.aa4e27e828ba0e62.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "fe6ae1d388f7e966"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ab708250b4fcbb58.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "7bcaf19da05c37ae"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ad50fe37e5ba1ac3.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ab708250b4fcbb58"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ae093f0244d352ad.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "dfd86ebe9c081d2f"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ae09a28f190885f7.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "5728cf6507f56142"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ae72310cefccec80.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "e7ba07b0a9287c6e"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.af8b1b90df69ff18.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "1f67a3b3c6b748cd"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.b0bd88858cd327fd.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "d478fae7cd830682"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.b27c21548789ed6f.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3c45a1a0b6818774"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ba7b780f527dbc50.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "9c71d227eec80fc2"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.bf701f60467fddf2.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "9e69d71d796fca90"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.c294f3a66705ef2e.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "faa8e4ff89b9cfce"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.c2b403f56144b438.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "811eb3eef9bc9709"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.c7c0f3dc6a032049.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "c9d38c99943d5900"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.c92fc322fc45a23a.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3af98c9c96c5f86c"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.c9d38c99943d5900.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "bf701f60467fddf2"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.cc0a9a70d62d8415.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "af8b1b90df69ff18"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.d1a75d1d75fb242a.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "e54102fb6effe716"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.d478fae7cd830682.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "e96aa1826b4b4c3a"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.d70fcc5da29f987b.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "7b471b1d1f5063bf"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.d84e983690e1ea77.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "c7c0f3dc6a032049"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.d969cf8ae4356b88.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "5dfc7794602b4a3f"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.de1f79e3797371ca.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ff3aae71533798df"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.dfa3eb34e75d13ab.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "f048c7d80eedd770"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.dfd86ebe9c081d2f.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "41edaefa8a11678d"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.e54102fb6effe716.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "41836e93ae133b6c"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.e5b932454b64dfff.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3b8a202f46efd960"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.e68a38ce6dc583a8.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "613d57a9290e7a11"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.e7ba07b0a9287c6e.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "a826e37f01bbf780"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.e96aa1826b4b4c3a.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "0fc8fcd708275109"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ef67ef4fd5b02a7b.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "060b25078218fe3d"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.f043688152107eb0.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "8710e06f82016aab"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.f048c7d80eedd770.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "068655c8a8b2894c"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.fa0d722b1ccaaa3c.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "ad50fe37e5ba1ac3"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.faa8e4ff89b9cfce.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "65e59d3bb50a07d6"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.fca26efeaf5a9411.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "4969df5a0f1d006d"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.fe6ae1d388f7e966.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "3d0c0a0137f8bbd1"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/.next/static/webpack/webpack.ff3aae71533798df.hot-update.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* 3 | * ATTENTION: An "eval-source-map" devtool has been used. 4 | * This devtool is neither made for production nor for readable output files. 5 | * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. 6 | * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) 7 | * or disable the default devtool with "devtool: false". 8 | * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). 9 | */ 10 | self["webpackHotUpdate_N_E"]("webpack",{}, 11 | /******/ function(__webpack_require__) { // webpackRuntimeModules 12 | /******/ /* webpack/runtime/getFullHash */ 13 | /******/ !function() { 14 | /******/ __webpack_require__.h = function() { return "1d53f2cd98a6f4a8"; } 15 | /******/ }(); 16 | /******/ 17 | /******/ } 18 | ); -------------------------------------------------------------------------------- /programs/admin_dashboard/README.md: -------------------------------------------------------------------------------- 1 | # Vehicle Tracking System API 2 | You have to run API app first, then run this frontend app. 3 | ## Installation 4 | ``` 5 | npm install 6 | ``` 7 | # .env 8 | ``` 9 | #public 10 | NEXT_PUBLIC_AppDomain=http://localhost:3000/ 11 | NEXT_PUBLIC_ApiDomain=http://localhost:3003/admin-api/ 12 | ``` 13 | ## Run the program 14 | ``` 15 | npm start 16 | ``` 17 | after app stared, you can visit to [localhost:3003](http://localhost:3003) 18 | ## Login information for Testing 19 | Email : hello@akn.com 20 | password : hellopassword 21 | -------------------------------------------------------------------------------- /programs/admin_dashboard/classes/chunkarray.tsx: -------------------------------------------------------------------------------- 1 | function chunkArray(arr=[], len=0) { 2 | var chunks = [], i = 0, n = arr.length; 3 | while (i < n) { 4 | chunks.push(arr.slice(i, i += len)); 5 | } 6 | return chunks; 7 | } 8 | 9 | export{ 10 | chunkArray 11 | } -------------------------------------------------------------------------------- /programs/admin_dashboard/components/authorization.js: -------------------------------------------------------------------------------- 1 | 2 | export default class Authorization{ 3 | getCookie(cname) { 4 | console.log(cname); 5 | let name = cname + "="; 6 | let decodedCookie = decodeURIComponent(document.cookie); 7 | let ca = decodedCookie.split(';'); 8 | for(let i = 0; i 13 | {props.title?props.title:"Vehicle Tracking System : Admin Dashboard"} 14 | 15 | 16 | 17 | 18 | 19 | 25 | 26 | 27 | 28 | ) 29 | } 30 | -------------------------------------------------------------------------------- /programs/admin_dashboard/components/layouts/mainlayout.tsx: -------------------------------------------------------------------------------- 1 | 2 | import React, { useEffect, useRef } from "react" 3 | 4 | import Script from 'next/script' 5 | import Link from 'next/link' 6 | 7 | import getConfig from 'next/config'; 8 | const { publicRuntimeConfig } = getConfig(); 9 | 10 | import styles from './../../styles/MainLayout.module.css' 11 | //import styles from '../styles/MainLayout.module.css' 12 | 13 | 14 | 15 | import Header from '../header'; 16 | 17 | 18 | let APP_DOMAIN = publicRuntimeConfig.NEXT_PUBLIC_AppDomain; 19 | 20 | interface IProps { 21 | head: string; 22 | 23 | } 24 | 25 | interface IMainLayout { 26 | children: React.ReactNode; 27 | head:React.ReactNode; 28 | title:string; 29 | } 30 | 31 | export default function MainLayout({ children, ...props }:IMainLayout) { 32 | 33 | return ( 34 | <> 35 | { 36 | props.head? 37 | props.head: 38 |
39 | } 40 | 41 | 42 | 43 | {/* Start Body */ } 44 |
45 | {children} 46 |
47 | {/* END Body */ } 48 | 49 | 50 | )//end return 51 | }//send class 52 | -------------------------------------------------------------------------------- /programs/admin_dashboard/next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /programs/admin_dashboard/next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | // const nextConfig = { 3 | // reactStrictMode: true, 4 | // NEXT_PUBLIC_AppDomain: process.env.NEXT_PUBLIC_AppDomain, 5 | // NEXT_PUBLIC_ApiDomain: process.env.NEXT_PUBLIC_ApiDomain, 6 | // NEXT_PUBLIC_ImageDomain: process.env.NEXT_PUBLIC_ImageDomain 7 | // } 8 | module.exports = { 9 | // async redirects() { 10 | // return [ 11 | // { 12 | // source: '/ads.txt', 13 | // destination: 'https://srv.adstxtmanager.com/29571/aungkyawnyunt.com', 14 | // permanent: true, 15 | // }, 16 | // ] 17 | // }, 18 | compilerOptions: { 19 | noImplicitReturns: true, 20 | noImplicitAny: false, 21 | }, 22 | serverRuntimeConfig: { 23 | // Will only be available on the server side 24 | NEXT_PUBLIC_AppDomain: process.env.NEXT_PUBLIC_AppDomain, 25 | NEXT_PUBLIC_ApiDomain: process.env.NEXT_PUBLIC_ApiDomain, 26 | NEXT_PUBLIC_ImageDomain: process.env.NEXT_PUBLIC_ImageDomain 27 | }, 28 | publicRuntimeConfig: { 29 | NEXT_PUBLIC_AppDomain: process.env.NEXT_PUBLIC_AppDomain, 30 | NEXT_PUBLIC_ApiDomain: process.env.NEXT_PUBLIC_ApiDomain, 31 | staticFolder: '/static', 32 | } 33 | } 34 | 35 | //module.exports = nextConfig; 36 | -------------------------------------------------------------------------------- /programs/admin_dashboard/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjsfrontend", 3 | "private": true, 4 | "scripts": { 5 | "dev": "next dev", 6 | "build": "next build", 7 | "start": "next start", 8 | "lint": "next lint" 9 | }, 10 | "dependencies": { 11 | "next": "12.0.10", 12 | "postscribe": "^2.0.8", 13 | "react": "17.0.2", 14 | "react-dom": "17.0.2", 15 | "react-gist": "^1.2.4", 16 | "sweetalert2": "^11.4.4" 17 | }, 18 | "devDependencies": { 19 | "@types/node": "17.0.17", 20 | "@types/react": "17.0.39", 21 | "eslint": "8.8.0", 22 | "eslint-config-next": "12.0.10", 23 | "typescript": "4.5.5" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /programs/admin_dashboard/pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/pages/.DS_Store -------------------------------------------------------------------------------- /programs/admin_dashboard/pages/404.tsx: -------------------------------------------------------------------------------- 1 | import MainLayout from '../components/layouts/mainlayout' 2 | import Header from '../components/header'; 3 | 4 | export default function Custom404() { 5 | return( 6 | 12 | } 13 | > 14 | Page Not Found. 15 | 16 | ); 17 | } -------------------------------------------------------------------------------- /programs/admin_dashboard/pages/500.tsx: -------------------------------------------------------------------------------- 1 | import MainLayout from '../components/layouts/mainlayout' 2 | import Header from '../components/header'; 3 | export default function Custom500() { 4 | return( 5 | 11 | } 12 | > 13 | There is something went wrong.
Please Try Again! 14 |
15 | ); 16 | } -------------------------------------------------------------------------------- /programs/admin_dashboard/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css' 2 | import type { AppProps } from 'next/app' 3 | 4 | function MyApp({ Component, pageProps }: AppProps) { 5 | return 6 | } 7 | 8 | export default MyApp 9 | -------------------------------------------------------------------------------- /programs/admin_dashboard/pages/api/hello.ts: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | import type { NextApiRequest, NextApiResponse } from 'next' 3 | 4 | type Data = { 5 | name: string 6 | } 7 | 8 | export default function handler( 9 | req: NextApiRequest, 10 | res: NextApiResponse 11 | ) { 12 | res.status(200).json({ name: 'John Doe' }) 13 | } 14 | -------------------------------------------------------------------------------- /programs/admin_dashboard/pages/test/index.tsx: -------------------------------------------------------------------------------- 1 | import type { NextPage } from 'next'; 2 | 3 | 4 | 5 | import MainLayout from '../../components/layouts/mainlayout' 6 | import Header from '../../components/header'; 7 | 8 | const Home: NextPage = () => { 9 | return ( 10 | } 12 | > 13 | 14 | 15 |
hello babe
16 |
hello babe
17 |
hello babe
18 |
hello babe
19 |
hello babe
20 |
hello babe
21 | 22 |
23 | ) 24 | } 25 | 26 | export default Home 27 | -------------------------------------------------------------------------------- /programs/admin_dashboard/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/.DS_Store -------------------------------------------------------------------------------- /programs/admin_dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/favicon.ico -------------------------------------------------------------------------------- /programs/admin_dashboard/public/fonts/DancingScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/fonts/DancingScript-Regular.ttf -------------------------------------------------------------------------------- /programs/admin_dashboard/public/fonts/DarkerGrotesque-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/fonts/DarkerGrotesque-Regular.ttf -------------------------------------------------------------------------------- /programs/admin_dashboard/public/health.html: -------------------------------------------------------------------------------- 1 | i'm healthy -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/DancingScript-Regular.db610923.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/media/DancingScript-Regular.db610923.ttf -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/DarkerGrotesque-Regular.6d4ef8de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/media/DarkerGrotesque-Regular.6d4ef8de.ttf -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/akn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/media/akn.png -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/media/bg1.png -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/admin_dashboard/public/media/bg2.png -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/logo.17eb467f.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /programs/admin_dashboard/public/media/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /programs/admin_dashboard/public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /programs/admin_dashboard/src/aws-exports.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | // WARNING: DO NOT EDIT. This file is automatically generated by AWS Amplify. It will be overwritten. 3 | 4 | const awsmobile = { 5 | "aws_project_region": "ap-southeast-1" 6 | }; 7 | 8 | 9 | export default awsmobile; 10 | -------------------------------------------------------------------------------- /programs/admin_dashboard/styles/MainLayout.module.css: -------------------------------------------------------------------------------- 1 | .mainContainer{ 2 | width:100% !important; 3 | height:100vh !important; 4 | display:flex; 5 | flex-direction:column; 6 | background: #7eb1e0; 7 | background: #F0F5F9; 8 | } 9 | -------------------------------------------------------------------------------- /programs/admin_dashboard/styles/PrivacyPolicy.module.css: -------------------------------------------------------------------------------- 1 | .mainContainer{ 2 | display:flex; 3 | flex-direction:column; 4 | width: 100%; 5 | justify-content:center; 6 | align-items:center; 7 | background-color:#2A2A32; 8 | background-attachment: fixed !important; 9 | 10 | } 11 | .mainContainerInner{ 12 | display:flex; 13 | flex-direction:column; 14 | width: 80%; 15 | justify-content:flex-start; 16 | align-items:flex-start; 17 | background-attachment: fixed !important; 18 | 19 | color:silver; 20 | } 21 | .mainContainerInner h1{ 22 | color:#ffffff !important; 23 | } 24 | .mainContainerInner h2{ 25 | color:#ffffff !important; 26 | } 27 | .mainContainerInner h3{ 28 | color:#ffffff !important; 29 | } 30 | .mainContainerInner h4{ 31 | color:#ffffff !important; 32 | } 33 | 34 | .mainContainerInner li{ 35 | line-height: 28px !important; 36 | 37 | } 38 | 39 | .pTag{ 40 | font-size:16px; 41 | font-family: "Helvetica Neue,Helvetica,Arial,sans-serif"; 42 | line-height: 28px; 43 | color:silver; 44 | } 45 | .pTag ul li{ 46 | font-size:16px; 47 | font-family: "Helvetica Neue,Helvetica,Arial,sans-serif"; 48 | line-height: 28px; 49 | color:silver; 50 | } 51 | 52 | .aTag{ 53 | color:#01A0C7; 54 | } 55 | 56 | .bTag{ 57 | color:#ffffff; 58 | font-size:17px; 59 | } 60 | -------------------------------------------------------------------------------- /programs/admin_dashboard/styles/index.module.css: -------------------------------------------------------------------------------- 1 | .mainContainer{ 2 | display:flex; 3 | flex-direction:column; 4 | width: 100%; 5 | height:100%; 6 | justify-content:center; 7 | align-items:center; 8 | 9 | } 10 | 11 | .loginContainer{ 12 | display:flex; 13 | flex-direction:column; 14 | width: 380px; 15 | justify-content:center; 16 | align-items:center; 17 | background-color:#386692; 18 | background-color:#56A0B8; 19 | border-radius: 5px; 20 | overflow:hidden; 21 | padding-top:30px; 22 | padding-bottom:30px; 23 | 24 | -webkit-box-shadow: 1px 1px 20px 3px rgba(129,149,170,0.67); 25 | box-shadow: 1px 1px 20px 3px rgb(129,149,170,0.67); 26 | } 27 | .row{ 28 | display:flex; 29 | flex-direction:column; 30 | width: 100% !important; 31 | justify-content:center; 32 | align-items:center; 33 | margin-bottom: 5px; 34 | } 35 | .textBox{ 36 | 37 | width: 90% !important; 38 | justify-content:center; 39 | align-items:center; 40 | border-radius : 6px; 41 | border:1px solid gray; 42 | padding: 10px 10px; 43 | margin-top:15px; 44 | margin-bottom:20px; 45 | } 46 | 47 | .btnSubmit{ 48 | background-color:#56a0b8; 49 | font-family: Cuprum; 50 | font-size: 16px; 51 | color: #fff; 52 | cursor: pointer; 53 | padding: 5px 10px; 54 | border:1px solid #ffffff; 55 | border-radius: 5px; 56 | margin-left: 0; 57 | width:30%; 58 | flex-direction: row; 59 | text-decoration: none; 60 | margin-top:10px; 61 | } 62 | .caption{ 63 | font-size:20px; 64 | margin-bottom:20px; 65 | 66 | } 67 | -------------------------------------------------------------------------------- /programs/admin_dashboard/styles/vehicle.module.css: -------------------------------------------------------------------------------- 1 | .mainContainer{ 2 | display:flex; 3 | flex-direction:column; 4 | width: 95%; 5 | height:100%; 6 | justify-content:center; 7 | align-items:center; 8 | background: #F0F5F9; 9 | overflow:auto; 10 | 11 | } 12 | .mainInnerContainer{ 13 | display:flex; 14 | flex-direction:column; 15 | width: 95%; 16 | height:100%; 17 | justify-content:flex-start; 18 | align-items:center; 19 | overflow:auto; 20 | margin-top:5px; 21 | 22 | } 23 | .searchContainer{ 24 | display:flex; 25 | flex-direction:column; 26 | width: 100%; 27 | height:10%; 28 | justify-content:center; 29 | align-items:center; 30 | 31 | } 32 | .paginationContainer{ 33 | display:flex; 34 | flex-direction:row; 35 | width: 100%; 36 | justify-content:flex-start; 37 | align-items:center; 38 | padding:0px !important; 39 | 40 | } 41 | .InnerPagination{ 42 | width:100%; 43 | display:flex; 44 | } 45 | .tableContainer{ 46 | display:flex; 47 | flex-direction:column; 48 | width: 100%; 49 | justify-content:flex-start; 50 | align-items:flex-start; 51 | background: #ffffff; 52 | margin-top:5px; 53 | margin-bottom:5px; 54 | } 55 | -------------------------------------------------------------------------------- /programs/admin_dashboard/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true 17 | }, 18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 19 | "exclude": ["node_modules"] 20 | } 21 | -------------------------------------------------------------------------------- /programs/api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/api/.DS_Store -------------------------------------------------------------------------------- /programs/api/.env: -------------------------------------------------------------------------------- 1 | SVR_PORT=3003 2 | SVR_IP="0.0.0.0" 3 | DB_HOST=localhost 4 | DB_PORT=3306 5 | DB_USER=haha 6 | DB_PASSWORD=aknakn0091 7 | DB_NAME=vehicle_tracking_system 8 | ALLOW_FROM=http://localhost:3000 -------------------------------------------------------------------------------- /programs/api/README.md: -------------------------------------------------------------------------------- 1 | # Vehicle Tracking System API 2 | ## Installation 3 | ``` 4 | npm install 5 | ``` 6 | # .env 7 | modify database information in .env as the following sample information. 8 | ``` 9 | SVR_PORT=3003 10 | SVR_IP="0.0.0.0" 11 | DB_HOST=localhost 12 | DB_PORT=3306 13 | DB_USER=akn 14 | DB_PASSWORD=passwordofdb 15 | DB_NAME=vehicle_tracking_system 16 | ALLOW_FROM=http://localhost:3000 17 | ``` 18 | **ALLOW_FROM** is for admin dashboard application 19 | ## Import database 20 | we have to import our database from this file **../.../database/VehicleTrackingSystem.sql** to our mysql database. 21 | ## Run the program 22 | ``` 23 | npm start 24 | ``` 25 | ## Testing 26 | I have attached **Vehicle Tracking System.postman_collection.json** in **../../postman** directory. 27 | Import this file to postman. and make a test. -------------------------------------------------------------------------------- /programs/api/api-server.js: -------------------------------------------------------------------------------- 1 | require('dotenv').config(); 2 | const express = require("express"); 3 | const cors = require("cors"); 4 | const config = require('./app/config/lib.config.js'); 5 | 6 | express.application.prefix = express.Router.prefix = function (path, configure) { 7 | var router = express.Router(); 8 | this.use(path, router); 9 | configure(router); 10 | return router; 11 | }; 12 | 13 | const app = express(); 14 | var corsOptions = { 15 | origin: config.Origin.allowFrom 16 | }; 17 | app.use(cors(corsOptions)); 18 | // Parse URL-encoded bodies (as sent by HTML forms) 19 | 20 | app.use( 21 | express.urlencoded({ 22 | extended: true 23 | }) 24 | ) 25 | 26 | app.use(express.json()) 27 | 28 | 29 | // simple route 30 | app.post("/test", function(req,res) { 31 | console.log(req.body); 32 | res.json({ message:req.body}); 33 | }); 34 | 35 | // simple route 36 | app.get("/", (req, res) => { 37 | res.json({ message: "Welcome to Vehicle Tracking Admin API." }); 38 | }); 39 | //require("./app/routes/authorization.routes.js")(app); 40 | 41 | 42 | 43 | 44 | require("./app/routes/index.routes.js")(app); 45 | // set port, listen for requests 46 | const PORT = process.env.SVR_PORT || 8080; 47 | app.listen(PORT, () => { 48 | console.log(`Server is running on port ${PORT}.`); 49 | }); -------------------------------------------------------------------------------- /programs/api/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/api/app/.DS_Store -------------------------------------------------------------------------------- /programs/api/app/config/lib.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 3 | Database:{ 4 | HOST: process.env.DB_HOST, 5 | PORT: process.env.DB_PORT, 6 | USER: process.env.DB_USER, 7 | PASSWORD: process.env.DB_PASSWORD, 8 | DB: process.env.DB_NAME 9 | }, 10 | Secret:{ 11 | admin:"ijowerdsfoirowe29&*IJHUT*IBJFUTeedifsdf**TT%$$#YJjsdjfwiedjUIJWWeri20039838jaskdfj1qqdfmvhfu", 12 | vehicle:"80709&*IJHUT*234asdLOJ**Tasdf3asdfPLLKfwiedjUasdf0woeio2938lskdfwi2fu0ni2odkcdeadfDWD#DDDE" 13 | }, 14 | Origin:{ 15 | allowFrom:process.env.ALLOW_FROM 16 | } 17 | 18 | }; -------------------------------------------------------------------------------- /programs/api/app/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/api/app/controllers/.DS_Store -------------------------------------------------------------------------------- /programs/api/app/functions/authmiddleware.function.js: -------------------------------------------------------------------------------- 1 | var jwt = require('jsonwebtoken'); 2 | var config = require('../config/lib.config'); 3 | 4 | function AdminAuthMiddleWare(req, res, next) { 5 | res.header("Access-Control-Allow-Origin", "http://localhost:3000"); // update to match the domain you will make the request from 6 | res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); 7 | var token = req.headers['x-access-token']; 8 | if (!token) 9 | return res.status(403).send({ code:403,status: 'failed!', error:[{"msg":'No token provided.'}] }); 10 | 11 | jwt.verify(token, config.Secret.admin, function(err, auth) { 12 | if (err) 13 | return res.status(403).send({ code:403,status: 'failed!', error:[{"msg":'Failed to authenticate token.'}] }); 14 | 15 | // if everything good, save to request for use in other routes 16 | //console.log(req.authType); 17 | if (auth.authType!='admin') 18 | return res.status(403).send({ code:403,status: 'failed!', error:[{"msg":'Failed to authenticate admin token.'}] }); 19 | req.authType = auth.authType; 20 | req.authId = auth.authId; 21 | next(); 22 | }); 23 | } 24 | function VehicleAuthMiddleWare(req, res, next) { 25 | var token = req.headers['x-access-token']; 26 | if (!token) 27 | return res.status(403).send({ code:403,status: 'failed!', error:[{"msg":'No token provided.'}] }); 28 | console.log(config.Secret.vehicle); 29 | jwt.verify(token, config.Secret.vehicle, function(err, auth) { 30 | if (err) 31 | return res.status(403).send({ code:403,status: 'failed!', error:[{"msg":'Failed to authenticate token.'}] }); 32 | 33 | if (auth.authType!='vehicle') 34 | return res.status(403).send({ code:403,status: 'failed!', error:[{"msg":'Failed to authenticate vehicle token.'}] }); 35 | 36 | // if everything good, save to request for use in other routes 37 | req.authType = auth.authType; 38 | req.authId = auth.authId; 39 | next(); 40 | }); 41 | } 42 | 43 | module.exports = {AdminAuthMiddleWare,VehicleAuthMiddleWare}; -------------------------------------------------------------------------------- /programs/api/app/functions/generatekey.functions.js: -------------------------------------------------------------------------------- 1 | function generateKey(length) { 2 | var result = ''; 3 | var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; 4 | var charactersLength = characters.length; 5 | for ( var i = 0; i < length; i++ ) { 6 | result += characters.charAt(Math.floor(Math.random() * 7 | charactersLength)); 8 | } 9 | return result; 10 | } 11 | 12 | module.exports = generateKey; -------------------------------------------------------------------------------- /programs/api/app/models/admintoken.model.js: -------------------------------------------------------------------------------- 1 | const SqlAdapter = require("./sqlAdapter.js"); 2 | 3 | 4 | class AdminToken extends SqlAdapter{ 5 | constructor() { 6 | super(); 7 | this.tableName = "AdminToken"; 8 | } 9 | 10 | 11 | async create(newRecord){ 12 | // call the function of the parent class 13 | return this.insertData(this.tableName,newRecord); 14 | } // end async function 15 | 16 | findByToken = (_token) => { 17 | return new Promise(resolve => { 18 | 19 | this.sql.query(`SELECT * FROM ${this.tableName} WHERE model = '${_token}' AND deleted_at IS NULL`, (err, res) => { 20 | if (err) { 21 | resolve(null); 22 | return; 23 | } 24 | if (res.length) { 25 | resolve(res[0]); 26 | 27 | return; 28 | } 29 | else{ 30 | resolve(null); 31 | return; 32 | } 33 | }); 34 | 35 | }); 36 | 37 | 38 | }//end function 39 | 40 | }//end class 41 | 42 | module.exports = AdminToken; -------------------------------------------------------------------------------- /programs/api/app/models/gpsadapter.model.js: -------------------------------------------------------------------------------- 1 | const SqlAdapter = require("./sqlAdapter.js"); 2 | 3 | 4 | class GpsAdapter extends SqlAdapter{ 5 | constructor() { 6 | super(); 7 | this.tableName = "GpsAdapter"; 8 | } 9 | 10 | 11 | async create(newRecord){ 12 | // call the function of the parent class 13 | //newRecord.created_by = 8; 14 | return this.insertData(this.tableName,newRecord); 15 | } // end async function 16 | 17 | findByModel = (model) => { 18 | return new Promise(resolve => { 19 | 20 | this.sql.query(`SELECT * FROM ${this.tableName} WHERE model = '${model}'`, (err, res) => { 21 | if (err) { 22 | resolve(null); 23 | return; 24 | } 25 | if (res.length) { 26 | resolve(res[0]); 27 | 28 | return; 29 | } 30 | else{ 31 | resolve(null); 32 | return; 33 | } 34 | }); 35 | 36 | }); 37 | 38 | 39 | }//end function 40 | 41 | async getListByPagination(row_count=10,page_at=1){ 42 | //row_count => total records per page. 43 | //page_at must start from 1; 44 | // call the function of the parent class 45 | return this.paginate(` 46 | SELECT ga.*,ad.name admin_name 47 | FROM GpsAdapter ga 48 | JOIN Admin ad ON ad.id = ga.created_by 49 | WHERE 50 | ga.deleted_at IS NULL 51 | ORDER BY ga.id DESC 52 | `,row_count,page_at); 53 | } // end async function 54 | 55 | async getDetailById(id){ 56 | //row_count => total records per page. 57 | //page_at must start from 1; 58 | // call the function of the parent class 59 | return this.getRecordByQuery(`SELECT * FROM ${this.tableName} WHERE id=${id} AND deleted_at IS NULL`); 60 | } // end async function 61 | }//end class 62 | 63 | module.exports = GpsAdapter; -------------------------------------------------------------------------------- /programs/api/app/models/owner.model.js: -------------------------------------------------------------------------------- 1 | const SqlAdapter = require("./sqlAdapter.js"); 2 | 3 | 4 | class Owner extends SqlAdapter{ 5 | constructor() { 6 | super(); 7 | this.tableName = "Owner"; 8 | } 9 | 10 | 11 | async create(newRecord){ 12 | // call the function of the parent class 13 | // newRecord.registered_by = 8; 14 | return this.insertData(this.tableName,newRecord); 15 | } // end async function 16 | 17 | findByName = (name) => { 18 | return new Promise(resolve => { 19 | 20 | this.sql.query(`SELECT * FROM ${this.tableName} WHERE name = '${name}'`, (err, res) => { 21 | if (err) { 22 | resolve(null); 23 | return; 24 | } 25 | if (res.length) { 26 | resolve(res[0]); 27 | 28 | return; 29 | } 30 | else{ 31 | resolve(null); 32 | return; 33 | } 34 | }); 35 | 36 | }); 37 | 38 | 39 | }//end function 40 | 41 | async getListByPagination(row_count=10,page_at=1){ 42 | //row_count => total records per page. 43 | //page_at must start from 1; 44 | // call the function of the parent class 45 | return this.paginate(` 46 | SELECT ow.*,ad.name admin_name 47 | FROM Owner ow 48 | JOIN Admin ad ON ad.id = ow.registered_by 49 | WHERE 50 | ow.deleted_at IS NULL 51 | ORDER BY ow.id DESC 52 | `,row_count,page_at); 53 | } // end async function 54 | 55 | async getDetailById(id){ 56 | //row_count => total records per page. 57 | //page_at must start from 1; 58 | // call the function of the parent class 59 | return this.getRecordByQuery(`SELECT * FROM ${this.tableName} WHERE id=${id} AND deleted_at IS NULL`); 60 | } // end async function 61 | }//end class 62 | 63 | module.exports = Owner; -------------------------------------------------------------------------------- /programs/api/app/models/vehicletype.model.js: -------------------------------------------------------------------------------- 1 | const SqlAdapter = require("./sqlAdapter.js"); 2 | 3 | 4 | class VehicleType extends SqlAdapter{ 5 | constructor() { 6 | super(); 7 | this.tableName = "VehicleType"; 8 | } 9 | 10 | 11 | async create(newRecord){ 12 | // call the function of the parent class 13 | //newRecord.created_by = 8; 14 | return this.insertData("VehicleType",newRecord); 15 | } // end async function 16 | 17 | findByName = (name) => { 18 | return new Promise(resolve => { 19 | 20 | this.sql.query(`SELECT * FROM ${this.tableName} WHERE name = '${name}'`, (err, res) => { 21 | if (err) { 22 | resolve(null); 23 | return; 24 | } 25 | if (res.length) { 26 | resolve(res[0]); 27 | 28 | return; 29 | } 30 | else{ 31 | resolve(null); 32 | return; 33 | } 34 | }); 35 | 36 | }); 37 | 38 | 39 | }//end function 40 | 41 | async getListByPagination(row_count=10,page_at=1){ 42 | //row_count => total records per page. 43 | //page_at must start from 1; 44 | // call the function of the parent class 45 | return this.paginate(` 46 | SELECT vt.*,ad.name admin_name 47 | FROM VehicleType vt 48 | JOIN Admin ad ON ad.id = vt.created_by 49 | WHERE 50 | vt.deleted_at IS NULL 51 | ORDER BY vt.id DESC 52 | `,row_count,page_at); 53 | } // end async function 54 | 55 | async getDetailById(id){ 56 | //row_count => total records per page. 57 | //page_at must start from 1; 58 | // call the function of the parent class 59 | return this.getRecordByQuery(`SELECT * FROM ${this.tableName} WHERE id=${id} AND deleted_at IS NULL`); 60 | } // end async function 61 | }//end class 62 | 63 | module.exports = VehicleType; -------------------------------------------------------------------------------- /programs/api/app/routes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/programs/api/app/routes/.DS_Store -------------------------------------------------------------------------------- /programs/api/app/routes/admin-api/admin.routes.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = (app,prefix,authMiddleWare) => { 3 | const adminController = require("../../controllers/admin/admin.controller.js"); 4 | app.prefix(`/${prefix}/admin`, function (vehicle) { 5 | vehicle.route('/').post(authMiddleWare,adminController.index); //other route 6 | vehicle.route('/create').post(authMiddleWare,adminController.create); // other route 7 | vehicle.route('/getdetail/:id').post(authMiddleWare,adminController.getDetail); // other route 8 | vehicle.route('/update/:id').get(authMiddleWare,adminController.update); // other route 9 | }); 10 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/admin-api/authorization.routes.js: -------------------------------------------------------------------------------- 1 | module.exports = (app,prefix,authMiddleWare) => { 2 | const Controller = require("../../controllers/admin/authorization.controller.js"); 3 | app.prefix(`/${prefix}/authorization`, function (route) { 4 | route.route('/login').post(Controller.login); //other route 5 | 6 | }); 7 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/admin-api/gpsadapter.routes.js: -------------------------------------------------------------------------------- 1 | module.exports = (app,prefix,authMiddleWare) => { 2 | const Controller = require("../../controllers/admin/gpsAdapter.controller.js"); 3 | app.prefix(`/${prefix}/gpsAdapter`, function (route) { 4 | route.route('/').post(authMiddleWare,Controller.index); //other route 5 | route.route('/create').post(authMiddleWare,Controller.create); // other route 6 | route.route('/getdetail/:id').post(authMiddleWare,Controller.getDetail); // other route 7 | }); 8 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/admin-api/owner.routes.js: -------------------------------------------------------------------------------- 1 | module.exports = (app,prefix,authMiddleWare) => { 2 | const ownerController = require("../../controllers/admin/owner.controller.js"); 3 | app.prefix(`/${prefix}/owner`, function (owner) { 4 | owner.route('/').post(authMiddleWare,ownerController.index); //other route 5 | owner.route('/create').post(authMiddleWare,ownerController.create); // other route 6 | owner.route('/getdetail/:id').post(authMiddleWare,ownerController.getDetail); // other route 7 | }); 8 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/admin-api/vehicle.routes.js: -------------------------------------------------------------------------------- 1 | module.exports = (app,prefix,authMiddleWare) => { 2 | const Controller = require("../../controllers/admin/vehicle.controller.js"); 3 | app.prefix(`/${prefix}/vehicle`, function (route) { 4 | route.route('/').post(authMiddleWare,Controller.index); //other route 5 | route.route('/register').post(authMiddleWare,Controller.register); // other route 6 | route.route('/getdetail/:id').post(authMiddleWare,Controller.getDetail); // other route 7 | route.route('/getfilter').post(authMiddleWare,Controller.getFilter); 8 | }); 9 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/admin-api/vehicletype.routes.js: -------------------------------------------------------------------------------- 1 | module.exports = (app,prefix,authMiddleWare) => { 2 | const vehicletypeController = require("../../controllers/admin/vehicletype.controller.js"); 3 | app.prefix(`/${prefix}/vehicletype`, function (vehicleType) { 4 | vehicleType.route('/').post(authMiddleWare,vehicletypeController.index); //other route 5 | vehicleType.route('/create').post(authMiddleWare,vehicletypeController.create); // other route 6 | vehicleType.route('/getdetail/:id').post(authMiddleWare,vehicletypeController.getDetail); // other route 7 | }); 8 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/index.routes.js: -------------------------------------------------------------------------------- 1 | const {AdminAuthMiddleWare,VehicleAuthMiddleWare} = require('../functions/authmiddleware.function.js'); 2 | module.exports = app => { 3 | var router = require("express").Router(); 4 | let routePrefix = "admin-api"; 5 | //start Admin Routes 6 | require("./admin-api/authorization.routes.js")(app,routePrefix,AdminAuthMiddleWare); 7 | 8 | require("./admin-api/admin.routes.js")(app,routePrefix,AdminAuthMiddleWare); 9 | require("./admin-api/vehicle.routes.js")(app,routePrefix,AdminAuthMiddleWare); 10 | require("./admin-api/vehicletype.routes.js")(app,routePrefix,AdminAuthMiddleWare); 11 | require("./admin-api/owner.routes.js")(app,routePrefix,AdminAuthMiddleWare); 12 | require("./admin-api/gpsadapter.routes.js")(app,routePrefix,AdminAuthMiddleWare); 13 | //end Admin Routes 14 | 15 | //start Vehicle Tracking Routes 16 | routePrefix = "vehicle-api"; 17 | require("./vehicle-api/vehicleauthorization.routes.js")(app,routePrefix,VehicleAuthMiddleWare); 18 | require("./vehicle-api/tracking.routes.js")(app,routePrefix,VehicleAuthMiddleWare); 19 | 20 | //end Vehicle Tracking Routes 21 | 22 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/vehicle-api/tracking.routes.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = (app,prefix,authMiddleWare) => { 3 | const Controller = require("../../controllers/vehicle/tracking.controller.js"); 4 | app.prefix(`/${prefix}/submit-location`, function (route) { 5 | route.route('/').post(authMiddleWare,Controller.submitLocation); //other route 6 | }); 7 | }; -------------------------------------------------------------------------------- /programs/api/app/routes/vehicle-api/vehicleauthorization.routes.js: -------------------------------------------------------------------------------- 1 | module.exports = (app,prefix,authMiddleWare) => { 2 | const Controller = require("../../controllers/vehicle/authorization.controller.js"); 3 | app.prefix(`/${prefix}/authorization`, function (route) { 4 | route.route('/login').post(Controller.login); //other route 5 | 6 | }); 7 | }; -------------------------------------------------------------------------------- /programs/api/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "back-office-backend-service", 3 | "version": "1.0.0", 4 | "description": "api for the admin backed service", 5 | "main": "api-server.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": " node api-server.js" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "cors": "^2.8.5", 14 | "crypto": "^1.0.1", 15 | "dotenv": "^16.0.0", 16 | "express": "^4.17.3", 17 | "jsonwebtoken": "^8.5.1", 18 | "mysql": "^2.18.1" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /resource/cloud-archie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/cloud-archie.png -------------------------------------------------------------------------------- /resource/dashboard-api-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/dashboard-api-flow.png -------------------------------------------------------------------------------- /resource/data-flow-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/data-flow-sequence.png -------------------------------------------------------------------------------- /resource/data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/data-model.png -------------------------------------------------------------------------------- /resource/erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/erd.png -------------------------------------------------------------------------------- /resource/symbol-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/symbol-description.png -------------------------------------------------------------------------------- /resource/vehicle-api-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloakn/VehicleTrackingSystem-FullStack/1b0e7e775bb7ae245c34c649cf74cf7792ce8c6d/resource/vehicle-api-flow.png --------------------------------------------------------------------------------