From 763387808307c692c681da1417f0119220de3d9d Mon Sep 17 00:00:00 2001 From: Piyush Acharya Date: Wed, 28 Dec 2022 23:51:36 -0800 Subject: [PATCH] Add copyright headers and modify to 2023 --- .classpath | 11 +++++++++++ README.md | 4 ++-- src/main/java/DNAnalyzer/Main.java | 2 +- src/main/java/DNAnalyzer/core/DNAAnalysis.java | 2 +- src/main/java/DNAnalyzer/core/Properties.java | 3 ++- .../java/DNAnalyzer/data/aminoAcid/AminoAcid.java | 3 ++- .../DNAnalyzer/data/aminoAcid/AminoAcidFactory.java | 3 ++- .../DNAnalyzer/data/codon/CodonDataConstants.java | 3 ++- .../java/DNAnalyzer/data/codon/CodonDataUtils.java | 2 +- src/main/java/DNAnalyzer/data/codon/CodonFrame.java | 2 +- src/main/java/DNAnalyzer/ui/cli/CmdArgs.java | 3 ++- src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUI.java | 11 +++++++++++ .../ui/gui/DNAnalyzerGUIFXMLController.java | 11 +++++++++++ .../java/DNAnalyzer/utils/core/BasePairCounter.java | 3 ++- src/main/java/DNAnalyzer/utils/core/DNATools.java | 2 +- .../java/DNAnalyzer/utils/core/ReadingFrames.java | 2 +- src/main/java/DNAnalyzer/utils/core/Utils.java | 11 +++++++++++ .../DNAnalyzer/utils/protein/ProteinAnalysis.java | 2 +- .../java/DNAnalyzer/utils/protein/ProteinFinder.java | 2 +- src/main/java/DNAnalyzer/utils/traits/Traits.java | 11 +++++++++++ src/test/java/DNAnalyzer/CodonDataUtilsTest.java | 2 +- src/test/java/DNAnalyzer/DNAAnalysisTest.java | 11 +++++++++-- src/test/java/DNAnalyzer/MainTest.java | 10 +++++++++- src/test/java/DNAnalyzer/ProteinFinderTest.java | 11 +++++++++++ web/about/about.css | 11 +++++++++++ web/about/about.html | 11 +++++++++++ web/about/about.js | 12 +++++++++++- web/index.html | 11 +++++++++++ web/style.css | 11 +++++++++++ 29 files changed, 162 insertions(+), 21 deletions(-) diff --git a/.classpath b/.classpath index 7349a8e4..2be6ae65 100644 --- a/.classpath +++ b/.classpath @@ -1,3 +1,14 @@ + + diff --git a/README.md b/README.md index 48b7dd16..33dcd2c6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![DNAnalyzer Logo](https://user-images.githubusercontent.com/96280466/186224441-46dd2029-b9dc-4b3d-aad8-bfd1e1e62f2e.png) -

Copyright WakaTime Releases Repository Size Lines of Code Hits Counter +

Copyright WakaTime Releases Repository Size Lines of Code Hits Counter DeepSource

@@ -164,4 +164,4 @@ View our in-line citations in the [Citations](docs/citations.md) document. You are entirely responsible for the use of this application, including any and all activities that occur. While the DNAnalyzer Team strives to fix all major bugs that may be either reported by a user or discovered while debugging, they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. For further inquiries, please contact the following email address: `contact@dnanalyzer.live` -##### Copyright © 2022 Piyush Acharya and DNAnalyzer. This is an open source project. Some rights reserved. +##### Copyright © Piyush Acharya 2023. This is an open-source project with code available to inspect and modify. diff --git a/src/main/java/DNAnalyzer/Main.java b/src/main/java/DNAnalyzer/Main.java index 084db35b..10547c75 100644 --- a/src/main/java/DNAnalyzer/Main.java +++ b/src/main/java/DNAnalyzer/Main.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/core/DNAAnalysis.java b/src/main/java/DNAnalyzer/core/DNAAnalysis.java index d790d932..8f1355ad 100644 --- a/src/main/java/DNAnalyzer/core/DNAAnalysis.java +++ b/src/main/java/DNAnalyzer/core/DNAAnalysis.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/core/Properties.java b/src/main/java/DNAnalyzer/core/Properties.java index 0dd34c9a..79bfa754 100644 --- a/src/main/java/DNAnalyzer/core/Properties.java +++ b/src/main/java/DNAnalyzer/core/Properties.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. @@ -8,6 +8,7 @@ * * For further inquiries, please reach out to contact@dnanalyzer.live */ + package DNAnalyzer.core; import static DNAnalyzer.core.DNAAnalysis.countBasePairs; diff --git a/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcid.java b/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcid.java index 058dffed..97f6f07d 100644 --- a/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcid.java +++ b/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcid.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. @@ -8,6 +8,7 @@ * * For further inquiries, please contact reach out to contact@dnanalyzer.live */ + package DNAnalyzer.data.aminoAcid; import java.util.List; diff --git a/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcidFactory.java b/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcidFactory.java index dc8e1ecc..c0da7938 100644 --- a/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcidFactory.java +++ b/src/main/java/DNAnalyzer/data/aminoAcid/AminoAcidFactory.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. @@ -8,6 +8,7 @@ * * For further inquiries, please contact reach out to contact@dnanalyzer.live */ + package DNAnalyzer.data.aminoAcid; import java.util.Arrays; diff --git a/src/main/java/DNAnalyzer/data/codon/CodonDataConstants.java b/src/main/java/DNAnalyzer/data/codon/CodonDataConstants.java index 556aba82..7a3ac128 100644 --- a/src/main/java/DNAnalyzer/data/codon/CodonDataConstants.java +++ b/src/main/java/DNAnalyzer/data/codon/CodonDataConstants.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. @@ -8,6 +8,7 @@ * * For further inquiries, please reach out to contact@dnanalyzer.live */ + package DNAnalyzer.data.codon; import java.util.*; diff --git a/src/main/java/DNAnalyzer/data/codon/CodonDataUtils.java b/src/main/java/DNAnalyzer/data/codon/CodonDataUtils.java index afe88eb6..2871c7af 100644 --- a/src/main/java/DNAnalyzer/data/codon/CodonDataUtils.java +++ b/src/main/java/DNAnalyzer/data/codon/CodonDataUtils.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/data/codon/CodonFrame.java b/src/main/java/DNAnalyzer/data/codon/CodonFrame.java index af386d85..0fd60a96 100644 --- a/src/main/java/DNAnalyzer/data/codon/CodonFrame.java +++ b/src/main/java/DNAnalyzer/data/codon/CodonFrame.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/ui/cli/CmdArgs.java b/src/main/java/DNAnalyzer/ui/cli/CmdArgs.java index 7c4a4b5f..1f908a8b 100644 --- a/src/main/java/DNAnalyzer/ui/cli/CmdArgs.java +++ b/src/main/java/DNAnalyzer/ui/cli/CmdArgs.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. @@ -8,6 +8,7 @@ * * For further inquiries, please reach out to contact@dnanalyzer.live */ + package DNAnalyzer.ui.cli; import DNAnalyzer.Main; diff --git a/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUI.java b/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUI.java index 075db18c..17087947 100644 --- a/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUI.java +++ b/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUI.java @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + package DNAnalyzer.ui.gui; import javafx.application.Application; diff --git a/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUIFXMLController.java b/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUIFXMLController.java index aaaed943..80a139b3 100644 --- a/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUIFXMLController.java +++ b/src/main/java/DNAnalyzer/ui/gui/DNAnalyzerGUIFXMLController.java @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + package DNAnalyzer.ui.gui; import DNAnalyzer.core.DNAAnalysis; diff --git a/src/main/java/DNAnalyzer/utils/core/BasePairCounter.java b/src/main/java/DNAnalyzer/utils/core/BasePairCounter.java index 02f19874..4b4b49e2 100644 --- a/src/main/java/DNAnalyzer/utils/core/BasePairCounter.java +++ b/src/main/java/DNAnalyzer/utils/core/BasePairCounter.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. @@ -8,6 +8,7 @@ * * For further inquiries, please contact reach out to contact@dnanalyzer.live */ + package DNAnalyzer.utils.core; import java.util.Optional; diff --git a/src/main/java/DNAnalyzer/utils/core/DNATools.java b/src/main/java/DNAnalyzer/utils/core/DNATools.java index e75006d6..08dcaafa 100644 --- a/src/main/java/DNAnalyzer/utils/core/DNATools.java +++ b/src/main/java/DNAnalyzer/utils/core/DNATools.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/utils/core/ReadingFrames.java b/src/main/java/DNAnalyzer/utils/core/ReadingFrames.java index 3d572535..7374f288 100644 --- a/src/main/java/DNAnalyzer/utils/core/ReadingFrames.java +++ b/src/main/java/DNAnalyzer/utils/core/ReadingFrames.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/utils/core/Utils.java b/src/main/java/DNAnalyzer/utils/core/Utils.java index 05c96dac..16adb8a0 100644 --- a/src/main/java/DNAnalyzer/utils/core/Utils.java +++ b/src/main/java/DNAnalyzer/utils/core/Utils.java @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + package DNAnalyzer.utils.core; import java.io.File; diff --git a/src/main/java/DNAnalyzer/utils/protein/ProteinAnalysis.java b/src/main/java/DNAnalyzer/utils/protein/ProteinAnalysis.java index d8accc6e..c8314883 100644 --- a/src/main/java/DNAnalyzer/utils/protein/ProteinAnalysis.java +++ b/src/main/java/DNAnalyzer/utils/protein/ProteinAnalysis.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/utils/protein/ProteinFinder.java b/src/main/java/DNAnalyzer/utils/protein/ProteinFinder.java index 6db3298c..5a0ef97a 100644 --- a/src/main/java/DNAnalyzer/utils/protein/ProteinFinder.java +++ b/src/main/java/DNAnalyzer/utils/protein/ProteinFinder.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/main/java/DNAnalyzer/utils/traits/Traits.java b/src/main/java/DNAnalyzer/utils/traits/Traits.java index 577bc6f7..5f760f9b 100644 --- a/src/main/java/DNAnalyzer/utils/traits/Traits.java +++ b/src/main/java/DNAnalyzer/utils/traits/Traits.java @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + package DNAnalyzer.utils.traits; import java.util.HashMap; diff --git a/src/test/java/DNAnalyzer/CodonDataUtilsTest.java b/src/test/java/DNAnalyzer/CodonDataUtilsTest.java index c5688755..a1bf3d2a 100644 --- a/src/test/java/DNAnalyzer/CodonDataUtilsTest.java +++ b/src/test/java/DNAnalyzer/CodonDataUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright © 2022 DNAnalyzer. Some rights reserved. + * Copyright © 2023 DNAnalyzer. Some rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * You are entirely responsible for the use of this application, including any and all activities that occur. diff --git a/src/test/java/DNAnalyzer/DNAAnalysisTest.java b/src/test/java/DNAnalyzer/DNAAnalysisTest.java index c6308300..205264c0 100644 --- a/src/test/java/DNAnalyzer/DNAAnalysisTest.java +++ b/src/test/java/DNAnalyzer/DNAAnalysisTest.java @@ -1,7 +1,14 @@ /* - * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license - * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live */ + package DNAnalyzer; import java.io.IOException; diff --git a/src/test/java/DNAnalyzer/MainTest.java b/src/test/java/DNAnalyzer/MainTest.java index cc7d9482..73099512 100644 --- a/src/test/java/DNAnalyzer/MainTest.java +++ b/src/test/java/DNAnalyzer/MainTest.java @@ -1,6 +1,14 @@ /* - * This Java source file was generated by the Gradle 'init' task. + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live */ + package DNAnalyzer; import org.junit.jupiter.api.Test; diff --git a/src/test/java/DNAnalyzer/ProteinFinderTest.java b/src/test/java/DNAnalyzer/ProteinFinderTest.java index 4956a41a..2296ef5a 100644 --- a/src/test/java/DNAnalyzer/ProteinFinderTest.java +++ b/src/test/java/DNAnalyzer/ProteinFinderTest.java @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + package DNAnalyzer; import static org.junit.jupiter.api.Assertions.assertArrayEquals; diff --git a/web/about/about.css b/web/about/about.css index 734692da..11df1cd6 100644 --- a/web/about/about.css +++ b/web/about/about.css @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); * > * { diff --git a/web/about/about.html b/web/about/about.html index 5a832872..76456441 100644 --- a/web/about/about.html +++ b/web/about/about.html @@ -1,3 +1,14 @@ + + diff --git a/web/about/about.js b/web/about/about.js index 32e148b7..0015d9bf 100644 --- a/web/about/about.js +++ b/web/about/about.js @@ -1,4 +1,14 @@ -// select toggle button +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + const toggle = document.getElementById("mode"); toggle.addEventListener("click", () => { diff --git a/web/index.html b/web/index.html index c260609c..c744475c 100644 --- a/web/index.html +++ b/web/index.html @@ -1,3 +1,14 @@ + + diff --git a/web/style.css b/web/style.css index 99bb547d..c28c844d 100644 --- a/web/style.css +++ b/web/style.css @@ -1,3 +1,14 @@ +/* + * Copyright © 2023 DNAnalyzer. Some rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * You are entirely responsible for the use of this application, including any and all activities that occur. + * While DNAnalyzer strives to fix all major bugs that may be either reported by a user or discovered while debugging, + * they will not be held liable for any loss that the user may incur as a result of using this application, under any circumstances. + * + * For further inquiries, please reach out to contact@dnanalyzer.live + */ + @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); *>* {