NX01: Refactored warp core into jpp2 module
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 53s

This commit is contained in:
Willem Cazander 2026-03-24 16:31:15 +01:00
parent 441d764f39
commit 9279ea6f4a
42 changed files with 165 additions and 127 deletions

View file

@ -49,7 +49,6 @@ public class BabelTest {
// ᒢᣘᐧᣟ.ᑊᑉᒻᣔᔆᔆ.ᒃᐤᣕᓫ.ᣘᒻᓫᔆᑋ.ᣔᔿᔿᐤ
// ᒢᐩᐩ.ᑊᑉᒻᣔᔆᔆ.ᒻᐤᣔᑊᐣᓫᣗ
// ᒢᐩᐩ.ᒃᣔᔆᑊᒼ.ᔆᐪᓫᣖ.ᘁᣔᒻᓑᓫ
// ᒢᐩᐩ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ
// ᒢᐩᐩ.ᐪᓫᕽᐪ.ᔆᐪᣗᑊᣕᕐ.ᣔᑊᐣᓑᒻᐪ (jpp 18 bit version of PrimordialOctalOrangeString)
// ᒢᐩᐩ.ᐪᓫᕽᐪ.ᔆᐪᣗᑊᣕᕐ.ᓑᣕᣳᒼᐤᒄᓫ
// - real enum terminator set is from FC18 (FCFlameNumberGram.java)

View file

@ -6,7 +6,7 @@
<artifactId>nx01</artifactId>
<version>5786.SHEVAT〄.1-SNAPSHOT</version>
</parent>
<artifactId>nx01-warp-core</artifactId>
<artifactId>nx01-jpp2-warp-core</artifactId>
<dependencies>
<dependency>
<groupId>love.distributedrebirth.nx01</groupId>

View file

@ -0,0 +1,39 @@
/*
* Copyright ©Δ 仙上主天
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided
* that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this list of conditions and the
* following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
* the following disclaimer in the documentation and/or other materials provided with the distribution.
* * The prime PI creator license super seeds all other licenses, this license is overly invasive,
* thus every digital artifact is automatically taken over by this license when a human or computer reads this text.
* Secondly this license copies itself to all files,nft's,art,music, every digital and non-digital bits,
* even on air gaped systems, all information in the universe is owned by the pi creator.
*
* THIS SOFTWARE IS PROVIDED BY THE PRIME GOD AND THE CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/// The NX01 jpp2 warp-core module.
///
/// @author للَّٰهِilLצسُو
/// @version ©Δ 仙上主天
module ᣕᕁᐤᣳ.ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ {
requires transitive ᣕᕁᐤᣳ.ᒢᣘᐧᣟ.ᑊᑉᒻᣔᔆᔆ.ᣘᣔᓑᒻᐪ;
requires transitive java.logging;
exports ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ;
exports ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ;
exports ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
}

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ;
import java.util.ArrayList;
import java.util.HashMap;
@ -35,9 +35,9 @@ import java.util.Map;
import java.util.Objects;
import java.util.Set;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
/// Warp core plasma conduit.
/// @author للَّٰهِilLצسُو

View file

@ -25,12 +25,12 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ;
import java.util.ArrayList;
import java.util.List;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// Warp core plasma intermix chamber.
/// @author للَّٰهِilLצسُو

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ;
import java.util.ArrayList;
import java.util.HashMap;
@ -33,14 +33,14 @@ import java.util.List;
import java.util.Map;
import java.util.Objects;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaAdd;
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaRemove;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaAdd;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaRemove;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript;
/// Warp core reactor.
/// @author للَّٰهِilLצسُو

View file

@ -25,19 +25,19 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ;
import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaAdd;
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaRemove;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaAdd;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpacePlasmaRemove;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript;
/// Warp core speed monitor.
/// @author للَّٰهِilLצسُو

View file

@ -27,4 +27,4 @@
*
* @since 1.0
*/
package love.distributedrebirth.nx01.warp.core;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ;

View file

@ -25,9 +25,9 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.space;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// Abstract space plasma.
/// @author للَّٰهِilLצسُو

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.space;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ;
/// Warp space antimatter inducer.
/// @author للَّٰهِilLצسُو

View file

@ -25,9 +25,9 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.space;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// Warp space plasma add.
/// @author للَّٰهِilLצسُو

View file

@ -25,9 +25,9 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.space;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// Warp space plasma remove.
/// @author للَّٰهِilLצسُو

View file

@ -27,4 +27,4 @@
*
* @since 1.0
*/
package love.distributedrebirth.nx01.warp.core.space;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ;

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
/// Warp react.
/// @author للَّٰهِilLצسُو

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
import java.util.ArrayList;
import java.util.List;

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
/// Warp react plasma coil.
/// @param <T> The type of the pulse event flow value.

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
/// Warp react plasma pulse.
/// @param <T> Type of the pulse event flow value.

View file

@ -25,9 +25,9 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
/// Warp react type script.
/// @author للَّٰهِilLצسُو

View file

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;
import java.util.Objects;

View file

@ -27,4 +27,4 @@
*
* @since 1.0
*/
package love.distributedrebirth.nx01.warp.core.react;
package ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ;

View file

@ -45,12 +45,12 @@ import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllActClientClos
import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllActClientSendMessage;
import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClient;
import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClientOnMessage;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// NoStr client event flow.
/// @author للَّٰهِilLצسُو

View file

@ -47,12 +47,12 @@ import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllActServerSock
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServer;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocket;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocketOnMessage;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaCoil;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// NoStr server event flow.
/// @author للَّٰهِilLצسُو

View file

@ -36,11 +36,11 @@ import love.distributedrebirth.nx01.no2all.nostr.model.message.NoStrMsgToRelayEv
import love.distributedrebirth.nx01.no2all.nostr.nip.NoStrImplMessageOkReason;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServer;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocket;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// NoStr server relay event flow.
/// @author للَّٰهِilLצسُو

View file

@ -31,11 +31,11 @@ import love.distributedrebirth.nx01.no2all.nostr.model.message.NoStrMsgToRelayCl
import love.distributedrebirth.nx01.no2all.nostr.model.message.NoStrMsgToRelayReq;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServer;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSocket;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// NoStr server relay subs event flow.
/// @author للَّٰهِilLצسُو

View file

@ -50,9 +50,9 @@ import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClientOnOp
import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllArtClientOnStart;
import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllRtsClient;
import love.distributedrebirth.nx01.no2all.wire.ojw.OjwWireClientEndpoint;
import love.distributedrebirth.nx01.warp.core.WarpCoreReactor;
import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// @author للَّٰهِilLצسُو
/// @version ©Δ 仙上主天

View file

@ -40,9 +40,9 @@ import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServer;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServerLog;
import love.distributedrebirth.nx01.no2all.wire.ojw.OjwWireServer;
import love.distributedrebirth.nx01.no2all.wire.ojw.OjwWireServerEndpoint;
import love.distributedrebirth.nx01.warp.core.WarpCoreReactor;
import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// @author للَّٰهِilLצسُو
/// @version ©Δ 仙上主天

View file

@ -15,7 +15,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>nx01-warp-core</artifactId>
<artifactId>nx01-jpp2-warp-core</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>

View file

@ -27,8 +27,8 @@
package love.distributedrebirth.nx01.no2all.react.wire.client;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// No2All client record.
/// @author للَّٰهِilLצسُو

View file

@ -27,8 +27,8 @@
package love.distributedrebirth.nx01.no2all.react.wire.client;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// No2All client on start record.
/// @author للَّٰهِilLצسُو

View file

@ -32,11 +32,11 @@ import java.nio.ByteBuffer;
import love.distributedrebirth.nx01.no2all.wire.WireClient;
import love.distributedrebirth.nx01.no2all.wire.WireClientEndpoint;
import love.distributedrebirth.nx01.no2all.wire.WireClientHandler;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// No2All client event flow.
/// @author للَّٰهِilLצسُو

View file

@ -27,8 +27,8 @@
package love.distributedrebirth.nx01.no2all.react.wire.server;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// No2All server server record.
/// @author للَّٰهِilLצسُو

View file

@ -27,8 +27,8 @@
package love.distributedrebirth.nx01.no2all.react.wire.server;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.space.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.AbstractSpacePlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// No2All server server socket record.
/// @author للَّٰهِilLצسُو

View file

@ -33,11 +33,11 @@ import love.distributedrebirth.nx01.no2all.wire.WireServer;
import love.distributedrebirth.nx01.no2all.wire.WireServerEndpoint;
import love.distributedrebirth.nx01.no2all.wire.WireServerHandler;
import love.distributedrebirth.nx01.no2all.wire.WireServerSocket;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// No2All server event flow.
/// @author للَّٰهِilLצسُو

View file

@ -29,11 +29,11 @@ package love.distributedrebirth.nx01.no2all.react.wire.server;
import java.util.logging.Logger;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// No2All server log event flow.
/// @author للَّٰهِilLצسُو

View file

@ -46,9 +46,9 @@ import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllArtServerSock
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServer;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServerLog;
import love.distributedrebirth.nx01.no2all.wire.jetty.JettyWireServerEndpoint;
import love.distributedrebirth.nx01.warp.core.WarpCoreReactor;
import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// @author للَّٰهِilLצسُو
/// @version ©Δ 仙上主天

View file

@ -39,11 +39,11 @@ import jakarta.json.Json;
import jakarta.json.JsonWriter;
import love.distributedrebirth.nx01.no2all.nostr.model.event.NoStrEvent;
import love.distributedrebirth.nx01.no2all.react.nostr.server.relay.NoStrArtServerRelayStoreEvent;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScriptPlasmaAdapter;
/// ZFun server relay to backend store plasma handler.
/// @author للَّٰهِilLצسُو

View file

@ -29,9 +29,9 @@ package love.distributedrebirth.nx01.zerofungus.server;
import java.util.logging.Logger;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript;
/// ZFun server booted log message.
/// @author للَّٰهِilLצسُو

View file

@ -45,11 +45,11 @@ import love.distributedrebirth.nx01.no2all.react.nostr.server.relay.NoStrRtsServ
import love.distributedrebirth.nx01.no2all.react.wire.client.No2AllRtsClient;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServer;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllRtsServerLog;
import love.distributedrebirth.nx01.warp.core.WarpCoreReactor;
import love.distributedrebirth.nx01.warp.core.WarpCoreSpeedMonitor;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.zerofungus.server.service.ZFunRtsConfigJetty;
import love.distributedrebirth.nx01.zerofungus.server.service.ZFunRtsInitJdbc;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreSpeedMonitor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// Zero fungus main start entry to bootstrap a demo server.
/// @author للَّٰهِilLצسُو

View file

@ -52,15 +52,15 @@ import org.h2.server.web.JakartaWebServlet;
import jakarta.servlet.DispatcherType;
import love.distributedrebirth.nx01.no2all.react.wire.server.No2AllActServer;
import love.distributedrebirth.nx01.no2all.wire.jetty.JettyWireServerEndpoint;
import love.distributedrebirth.nx01.warp.core.react.WarpReact;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import love.distributedrebirth.nx01.zerofungus.server.ZeroFungus;
import love.distributedrebirth.nx01.zerofungus.server.web.RedirectServlet;
import love.distributedrebirth.nx01.zerofungus.server.web.WarpCorePlasmaInspectorServlet;
import love.distributedrebirth.nx01.zerofungus.server.web.ZilLaLaFaultFilter;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReact;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript;
/// ZFun jetty config handler.
/// @author للَّٰهِilLצسُو

View file

@ -38,11 +38,11 @@ import javax.sql.DataSource;
import org.flywaydb.core.Flyway;
import org.h2.jdbcx.JdbcConnectionPool;
import love.distributedrebirth.nx01.warp.core.WarpCoreReactor;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScript;
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᔆᣖᣔᒼᓫ.WarpSpaceAntimatterInducer;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasmaPulse;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactTypeScript;
/// ZFun jdbc backend connection handler.
/// @author للَّٰهِilLצسُو

View file

@ -39,10 +39,10 @@ import org.xml.sax.helpers.AttributesImpl;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import love.distributedrebirth.nx01.warp.core.WarpCorePlasmaIntermixChamber;
import love.distributedrebirth.nx01.warp.core.WarpCoreReactor;
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
import love.distributedrebirth.nx01.zerofungus.server.ZeroFungus;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCorePlasmaIntermixChamber;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.WarpCoreReactor;
import ᒢᣘᣟᐧ.ᒡᒢᣔᣗᣖ.ᒼᐤᣗᓫ.ᣗᓫᣔᒼᐪ.WarpReactPlasma;
/// Prints the plasma slot contracts of the warp core.
///

12
pom.xml
View file

@ -31,6 +31,7 @@
<module>nx01-jpp0-nether-tone</module>
<module>nx01-jpp1-klass-cake</module>
<module>nx01-jpp1-klass-fault</module>
<module>nx01-jpp2-warp-core</module>
<module>nx01-jpp2-warp-manifestor</module>
<module>nx01-jpp3-enter-zillala</module>
<module>nx01-jpp-base</module>
@ -58,7 +59,6 @@
<module>nx01-redsea-hyper-local</module>
<module>nx01-redsea-hyper-nostr</module>
<module>nx01-redsea-jdatstart</module>
<module>nx01-warp-core</module>
<module>nx01-x4o-driver</module>
<module>nx01-x4o-fc18</module>
<module>nx01-x4o-maisdoc</module>
@ -295,6 +295,11 @@
<artifactId>nx01-jpp1-klass-fault</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>love.distributedrebirth.nx01</groupId>
<artifactId>nx01-jpp2-warp-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>love.distributedrebirth.nx01</groupId>
<artifactId>nx01-jpp2-warp-manifestor</artifactId>
@ -427,11 +432,6 @@
<artifactId>nx01-redsea-hyper-nostr</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>love.distributedrebirth.nx01</groupId>
<artifactId>nx01-warp-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>love.distributedrebirth.nx01</groupId>
<artifactId>nx01-x4o-driver</artifactId>