From 274cc7c817c7e91e2356edc61560ea2aa3e8d812 Mon Sep 17 00:00:00 2001 From: Edith Boles Date: Fri, 1 Oct 2021 08:15:14 -0700 Subject: [PATCH 1/7] Add funny ritual --- .../java/top/penowl/quidproquo/Events.java | 37 ++++++++++++------- .../top/penowl/quidproquo/QuidProQuo.java | 5 +-- .../quidproquo/rituals/FeedingRitual.java | 2 +- .../quidproquo/rituals/GetLuckyRitual.java | 29 +++++++++++++++ 4 files changed, 55 insertions(+), 18 deletions(-) create mode 100644 src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java diff --git a/src/main/java/top/penowl/quidproquo/Events.java b/src/main/java/top/penowl/quidproquo/Events.java index 2904ff7..cd8fb3e 100644 --- a/src/main/java/top/penowl/quidproquo/Events.java +++ b/src/main/java/top/penowl/quidproquo/Events.java @@ -14,6 +14,7 @@ import org.bukkit.ChatColor; import org.bukkit.Effect; import org.bukkit.Location; import org.bukkit.Material; +import org.bukkit.OfflinePlayer; import org.bukkit.Sound; import org.bukkit.block.Block; import org.bukkit.entity.EntityType; @@ -58,19 +59,23 @@ public final class Events implements Listener { } Collections.sort(uuids); - // if the player already has a target, pick the next one, otherwise pick the first - if (QuidProQuo.instance.targets.containsKey(playerUuid)) { - UUID current_target = QuidProQuo.instance.targets.get(playerUuid); - if (Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid)) == null) { + if (uuids.size() == 0) { + player.sendMessage(ChatColor.YELLOW + "No targets online!"); + } else { + // if the player already has a target, pick the next one, otherwise pick the first + if (QuidProQuo.instance.targets.containsKey(playerUuid)) { + UUID current_target = QuidProQuo.instance.targets.get(playerUuid); + if (Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid)) instanceof OfflinePlayer) { + QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); + } + QuidProQuo.instance.targets.put(playerUuid, uuids.get((uuids.indexOf(current_target) + 1) % uuids.size())); + } else { QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); } - QuidProQuo.instance.targets.put(playerUuid, uuids.get((uuids.indexOf(current_target) + 1) % uuids.size())); - } else { - QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); + player.sendMessage(ChatColor.YELLOW + "Switched target to " + Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid))); } // friendly message - player.sendMessage(ChatColor.YELLOW + "Switched target to " + Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid))); } else { @@ -182,13 +187,17 @@ public final class Events implements Listener { } Collections.sort(uuids); - if (!QuidProQuo.instance.targets.containsKey(playerUuid)) { - QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); + if (uuids.size() == 0) { + otherPlayer = null; + } else { + if (!QuidProQuo.instance.targets.containsKey(playerUuid)) { + QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); + } + if (Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid)) instanceof OfflinePlayer) { + QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); + } + otherPlayer = Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid)); } - if (Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid)) == null) { - QuidProQuo.instance.targets.put(playerUuid, uuids.get(0)); - } - otherPlayer = Bukkit.getPlayer(QuidProQuo.instance.targets.get(playerUuid)); // backfire check, if succeeds then the ritual gets reversed if(new Random().nextDouble() >= ritual.backfire) { diff --git a/src/main/java/top/penowl/quidproquo/QuidProQuo.java b/src/main/java/top/penowl/quidproquo/QuidProQuo.java index 9ac15de..c53ae5b 100644 --- a/src/main/java/top/penowl/quidproquo/QuidProQuo.java +++ b/src/main/java/top/penowl/quidproquo/QuidProQuo.java @@ -6,9 +6,7 @@ import java.util.UUID; import org.bukkit.event.HandlerList; import org.bukkit.plugin.java.JavaPlugin; -import top.penowl.quidproquo.rituals.FeedingRitual; -import top.penowl.quidproquo.rituals.HealRitual; -import top.penowl.quidproquo.rituals.WoolingRitual; +import top.penowl.quidproquo.rituals.*; public class QuidProQuo extends JavaPlugin { @@ -36,6 +34,7 @@ public class QuidProQuo extends JavaPlugin { rituals.add(new HealRitual()); rituals.add(new WoolingRitual()); rituals.add(new FeedingRitual()); + rituals.add(new GetLuckyRitual()); // run ritual setup scripts for (Ritual ritual : rituals) { diff --git a/src/main/java/top/penowl/quidproquo/rituals/FeedingRitual.java b/src/main/java/top/penowl/quidproquo/rituals/FeedingRitual.java index a403e23..08ec3a2 100644 --- a/src/main/java/top/penowl/quidproquo/rituals/FeedingRitual.java +++ b/src/main/java/top/penowl/quidproquo/rituals/FeedingRitual.java @@ -13,7 +13,7 @@ public class FeedingRitual extends Ritual { public void setup() { addSacrifice(EntityType.PIG, 1); addIngredient(Material.WOOD_SWORD, 1); - health = 4; + health = 1; name = "feeding"; } diff --git a/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java b/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java new file mode 100644 index 0000000..b5cd3f5 --- /dev/null +++ b/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java @@ -0,0 +1,29 @@ +package top.penowl.quidproquo.rituals; + +import org.bukkit.Location; +import org.bukkit.Material; +import org.bukkit.entity.Player; +import org.bukkit.inventory.ItemStack; + +import top.penowl.quidproquo.Ritual; + +public class GetLuckyRitual extends Ritual { + + @Override + public void setup() { + addIngredient(Material.GOLD_BLOCK, 3); + addIngredient(Material.TNT, 1); + health = 3; + name = "daring"; + } + + @Override + public void execute(Player caster, Player target, Location location) { + if (Math.random() < 0.5) { + location.getWorld().createExplosion(location, 100); + } else { + byproducts.add(new ItemStack(Material.GOLD_BLOCK, 16)); + } + } + +} From f3889c88c6f3a547e8617f0c928ffc8ec6a2fc79 Mon Sep 17 00:00:00 2001 From: Edith Boles Date: Fri, 1 Oct 2021 08:22:24 -0700 Subject: [PATCH 2/7] Make it even funnier --- .../java/top/penowl/quidproquo/rituals/GetLuckyRitual.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java b/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java index b5cd3f5..9a75979 100644 --- a/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java +++ b/src/main/java/top/penowl/quidproquo/rituals/GetLuckyRitual.java @@ -14,13 +14,14 @@ public class GetLuckyRitual extends Ritual { addIngredient(Material.GOLD_BLOCK, 3); addIngredient(Material.TNT, 1); health = 3; + lightning = true; name = "daring"; } @Override public void execute(Player caster, Player target, Location location) { if (Math.random() < 0.5) { - location.getWorld().createExplosion(location, 100); + location.getWorld().createExplosion(location, 100F); } else { byproducts.add(new ItemStack(Material.GOLD_BLOCK, 16)); } From b8f65402ce884321d666882ec67862cc661c3035 Mon Sep 17 00:00:00 2001 From: B1G-FUNGUS Date: Fri, 1 Oct 2021 15:32:12 -0700 Subject: [PATCH 3/7] sus amongus im a big coder now --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 87c5cc4..0844e35 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,5 @@ Just throw things on the altar and right click the gold block. ## Development New effects are really easy to add, just make a copy of `BlankRitual.java` inside of the `rituals` folder and then add in a combination of `addIngredient()`, `addSacrifice()` and other properties under `setup()`. Then write your own custom effect under `execute()`. Finally, go into the main class and register the ritual with the rest of the others. + +test commit (sus) From 5954cd0f976208d227c412a73f8a8a423a276d62 Mon Sep 17 00:00:00 2001 From: B1G-FUNGUS Date: Fri, 1 Oct 2021 15:51:55 -0700 Subject: [PATCH 4/7] SUS!!!!!!! when the ssh key is sus! --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 0844e35..d3a1654 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,24 @@ Just throw things on the altar and right click the gold block. New effects are really easy to add, just make a copy of `BlankRitual.java` inside of the `rituals` folder and then add in a combination of `addIngredient()`, `addSacrifice()` and other properties under `setup()`. Then write your own custom effect under `execute()`. Finally, go into the main class and register the ritual with the rest of the others. test commit (sus) +⠀⠀⠀⡯⡯⡾⠝⠘⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢊⠘⡮⣣⠪⠢⡑⡌ +⠀⠀⠀⠟⠝⠈⠀⠀⠀⠡⠀⠠⢈⠠⢐⢠⢂⢔⣐⢄⡂⢔⠀⡁⢉⠸⢨⢑⠕⡌ +⠀⠀⡀⠁⠀⠀⠀⡀⢂⠡⠈⡔⣕⢮⣳⢯⣿⣻⣟⣯⣯⢷⣫⣆⡂⠀⠀⢐⠑⡌ +⢀⠠⠐⠈⠀⢀⢂⠢⡂⠕⡁⣝⢮⣳⢽⡽⣾⣻⣿⣯⡯⣟⣞⢾⢜⢆⠀⡀⠀⠪ +⣬⠂⠀⠀⢀⢂⢪⠨⢂⠥⣺⡪⣗⢗⣽⢽⡯⣿⣽⣷⢿⡽⡾⡽⣝⢎⠀⠀⠀⢡ +⣿⠀⠀⠀⢂⠢⢂⢥⢱⡹⣪⢞⡵⣻⡪⡯⡯⣟⡾⣿⣻⡽⣯⡻⣪⠧⠑⠀⠁⢐ +⣿⠀⠀⠀⠢⢑⠠⠑⠕⡝⡎⡗⡝⡎⣞⢽⡹⣕⢯⢻⠹⡹⢚⠝⡷⡽⡨⠀⠀⢔ +⣿⡯⠀⢈⠈⢄⠂⠂⠐⠀⠌⠠⢑⠱⡱⡱⡑⢔⠁⠀⡀⠐⠐⠐⡡⡹⣪⠀⠀⢘ +⣿⣽⠀⡀⡊⠀⠐⠨⠈⡁⠂⢈⠠⡱⡽⣷⡑⠁⠠⠑⠀⢉⢇⣤⢘⣪⢽⠀⢌⢎ +⣿⢾⠀⢌⠌⠀⡁⠢⠂⠐⡀⠀⢀⢳⢽⣽⡺⣨⢄⣑⢉⢃⢭⡲⣕⡭⣹⠠⢐⢗ +⣿⡗⠀⠢⠡⡱⡸⣔⢵⢱⢸⠈⠀⡪⣳⣳⢹⢜⡵⣱⢱⡱⣳⡹⣵⣻⢔⢅⢬⡷ +⣷⡇⡂⠡⡑⢕⢕⠕⡑⠡⢂⢊⢐⢕⡝⡮⡧⡳⣝⢴⡐⣁⠃⡫⡒⣕⢏⡮⣷⡟ +⣷⣻⣅⠑⢌⠢⠁⢐⠠⠑⡐⠐⠌⡪⠮⡫⠪⡪⡪⣺⢸⠰⠡⠠⠐⢱⠨⡪⡪⡰ +⣯⢷⣟⣇⡂⡂⡌⡀⠀⠁⡂⠅⠂⠀⡑⡄⢇⠇⢝⡨⡠⡁⢐⠠⢀⢪⡐⡜⡪⡊ +⣿⢽⡾⢹⡄⠕⡅⢇⠂⠑⣴⡬⣬⣬⣆⢮⣦⣷⣵⣷⡗⢃⢮⠱⡸⢰⢱⢸⢨⢌ +⣯⢯⣟⠸⣳⡅⠜⠔⡌⡐⠈⠻⠟⣿⢿⣿⣿⠿⡻⣃⠢⣱⡳⡱⡩⢢⠣⡃⠢⠁ +⡯⣟⣞⡇⡿⣽⡪⡘⡰⠨⢐⢀⠢⢢⢄⢤⣰⠼⡾⢕⢕⡵⣝⠎⢌⢪⠪⡘⡌⠀ +⡯⣳⠯⠚⢊⠡⡂⢂⠨⠊⠔⡑⠬⡸⣘⢬⢪⣪⡺⡼⣕⢯⢞⢕⢝⠎⢻⢼⣀⠀ +⠁⡂⠔⡁⡢⠣⢀⠢⠀⠅⠱⡐⡱⡘⡔⡕⡕⣲⡹⣎⡮⡏⡑⢜⢼⡱⢩⣗⣯⣟ +⢀⢂⢑⠀⡂⡃⠅⠊⢄⢑⠠⠑⢕⢕⢝⢮⢺⢕⢟⢮⢊⢢⢱⢄⠃⣇⣞⢞⣞⢾ +⢀⠢⡑⡀⢂⢊⠠⠁⡂⡐⠀⠅⡈⠪⠪⠪⠣⠫⠑⡁⢔⠕⣜⣜⢦⡰⡎⡯⡾⡽ From 82fed09ae5a13e287cac774723bae0cd341a48d1 Mon Sep 17 00:00:00 2001 From: B1G-FUNGUS Date: Fri, 1 Oct 2021 15:53:41 -0700 Subject: [PATCH 5/7] sorry, markdown moment (this is a bitcoin miner) --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3a1654..6455102 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ Just throw things on the altar and right click the gold block. New effects are really easy to add, just make a copy of `BlankRitual.java` inside of the `rituals` folder and then add in a combination of `addIngredient()`, `addSacrifice()` and other properties under `setup()`. Then write your own custom effect under `execute()`. Finally, go into the main class and register the ritual with the rest of the others. test commit (sus) -⠀⠀⠀⡯⡯⡾⠝⠘⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢊⠘⡮⣣⠪⠢⡑⡌ + +```⠀⠀⠀⡯⡯⡾⠝⠘⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢊⠘⡮⣣⠪⠢⡑⡌ ⠀⠀⠀⠟⠝⠈⠀⠀⠀⠡⠀⠠⢈⠠⢐⢠⢂⢔⣐⢄⡂⢔⠀⡁⢉⠸⢨⢑⠕⡌ ⠀⠀⡀⠁⠀⠀⠀⡀⢂⠡⠈⡔⣕⢮⣳⢯⣿⣻⣟⣯⣯⢷⣫⣆⡂⠀⠀⢐⠑⡌ ⢀⠠⠐⠈⠀⢀⢂⠢⡂⠕⡁⣝⢮⣳⢽⡽⣾⣻⣿⣯⡯⣟⣞⢾⢜⢆⠀⡀⠀⠪ @@ -31,4 +32,4 @@ test commit (sus) ⡯⣳⠯⠚⢊⠡⡂⢂⠨⠊⠔⡑⠬⡸⣘⢬⢪⣪⡺⡼⣕⢯⢞⢕⢝⠎⢻⢼⣀⠀ ⠁⡂⠔⡁⡢⠣⢀⠢⠀⠅⠱⡐⡱⡘⡔⡕⡕⣲⡹⣎⡮⡏⡑⢜⢼⡱⢩⣗⣯⣟ ⢀⢂⢑⠀⡂⡃⠅⠊⢄⢑⠠⠑⢕⢕⢝⢮⢺⢕⢟⢮⢊⢢⢱⢄⠃⣇⣞⢞⣞⢾ -⢀⠢⡑⡀⢂⢊⠠⠁⡂⡐⠀⠅⡈⠪⠪⠪⠣⠫⠑⡁⢔⠕⣜⣜⢦⡰⡎⡯⡾⡽ +⢀⠢⡑⡀⢂⢊⠠⠁⡂⡐⠀⠅⡈⠪⠪⠪⠣⠫⠑⡁⢔⠕⣜⣜⢦⡰⡎⡯⡾⡽``` From 73f584186326c7a9f96e51356c0d1a729353db7c Mon Sep 17 00:00:00 2001 From: Edith Boles Date: Fri, 1 Oct 2021 15:56:52 -0700 Subject: [PATCH 6/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6455102..d0468e6 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,4 @@ test commit (sus) ⡯⣳⠯⠚⢊⠡⡂⢂⠨⠊⠔⡑⠬⡸⣘⢬⢪⣪⡺⡼⣕⢯⢞⢕⢝⠎⢻⢼⣀⠀ ⠁⡂⠔⡁⡢⠣⢀⠢⠀⠅⠱⡐⡱⡘⡔⡕⡕⣲⡹⣎⡮⡏⡑⢜⢼⡱⢩⣗⣯⣟ ⢀⢂⢑⠀⡂⡃⠅⠊⢄⢑⠠⠑⢕⢕⢝⢮⢺⢕⢟⢮⢊⢢⢱⢄⠃⣇⣞⢞⣞⢾ -⢀⠢⡑⡀⢂⢊⠠⠁⡂⡐⠀⠅⡈⠪⠪⠪⠣⠫⠑⡁⢔⠕⣜⣜⢦⡰⡎⡯⡾⡽``` +⢀⠢⡑⡀⢂⢊⠠⠁⡂⡐⠀⠅⡈⠪⠪⠪⠣⠫⠑⡁⢔⠕⣜⣜⢦⡰⡎⡯⡾⡽ From 8864d2b20c213f008d5de63fe2186f2dd549f59a Mon Sep 17 00:00:00 2001 From: B1G-FUNGUS Date: Fri, 1 Oct 2021 15:56:37 -0700 Subject: [PATCH 7/7] I have learned from my mistakes --- README.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/README.md b/README.md index d0468e6..87c5cc4 100644 --- a/README.md +++ b/README.md @@ -9,27 +9,3 @@ Just throw things on the altar and right click the gold block. ## Development New effects are really easy to add, just make a copy of `BlankRitual.java` inside of the `rituals` folder and then add in a combination of `addIngredient()`, `addSacrifice()` and other properties under `setup()`. Then write your own custom effect under `execute()`. Finally, go into the main class and register the ritual with the rest of the others. - -test commit (sus) - -```⠀⠀⠀⡯⡯⡾⠝⠘⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢊⠘⡮⣣⠪⠢⡑⡌ -⠀⠀⠀⠟⠝⠈⠀⠀⠀⠡⠀⠠⢈⠠⢐⢠⢂⢔⣐⢄⡂⢔⠀⡁⢉⠸⢨⢑⠕⡌ -⠀⠀⡀⠁⠀⠀⠀⡀⢂⠡⠈⡔⣕⢮⣳⢯⣿⣻⣟⣯⣯⢷⣫⣆⡂⠀⠀⢐⠑⡌ -⢀⠠⠐⠈⠀⢀⢂⠢⡂⠕⡁⣝⢮⣳⢽⡽⣾⣻⣿⣯⡯⣟⣞⢾⢜⢆⠀⡀⠀⠪ -⣬⠂⠀⠀⢀⢂⢪⠨⢂⠥⣺⡪⣗⢗⣽⢽⡯⣿⣽⣷⢿⡽⡾⡽⣝⢎⠀⠀⠀⢡ -⣿⠀⠀⠀⢂⠢⢂⢥⢱⡹⣪⢞⡵⣻⡪⡯⡯⣟⡾⣿⣻⡽⣯⡻⣪⠧⠑⠀⠁⢐ -⣿⠀⠀⠀⠢⢑⠠⠑⠕⡝⡎⡗⡝⡎⣞⢽⡹⣕⢯⢻⠹⡹⢚⠝⡷⡽⡨⠀⠀⢔ -⣿⡯⠀⢈⠈⢄⠂⠂⠐⠀⠌⠠⢑⠱⡱⡱⡑⢔⠁⠀⡀⠐⠐⠐⡡⡹⣪⠀⠀⢘ -⣿⣽⠀⡀⡊⠀⠐⠨⠈⡁⠂⢈⠠⡱⡽⣷⡑⠁⠠⠑⠀⢉⢇⣤⢘⣪⢽⠀⢌⢎ -⣿⢾⠀⢌⠌⠀⡁⠢⠂⠐⡀⠀⢀⢳⢽⣽⡺⣨⢄⣑⢉⢃⢭⡲⣕⡭⣹⠠⢐⢗ -⣿⡗⠀⠢⠡⡱⡸⣔⢵⢱⢸⠈⠀⡪⣳⣳⢹⢜⡵⣱⢱⡱⣳⡹⣵⣻⢔⢅⢬⡷ -⣷⡇⡂⠡⡑⢕⢕⠕⡑⠡⢂⢊⢐⢕⡝⡮⡧⡳⣝⢴⡐⣁⠃⡫⡒⣕⢏⡮⣷⡟ -⣷⣻⣅⠑⢌⠢⠁⢐⠠⠑⡐⠐⠌⡪⠮⡫⠪⡪⡪⣺⢸⠰⠡⠠⠐⢱⠨⡪⡪⡰ -⣯⢷⣟⣇⡂⡂⡌⡀⠀⠁⡂⠅⠂⠀⡑⡄⢇⠇⢝⡨⡠⡁⢐⠠⢀⢪⡐⡜⡪⡊ -⣿⢽⡾⢹⡄⠕⡅⢇⠂⠑⣴⡬⣬⣬⣆⢮⣦⣷⣵⣷⡗⢃⢮⠱⡸⢰⢱⢸⢨⢌ -⣯⢯⣟⠸⣳⡅⠜⠔⡌⡐⠈⠻⠟⣿⢿⣿⣿⠿⡻⣃⠢⣱⡳⡱⡩⢢⠣⡃⠢⠁ -⡯⣟⣞⡇⡿⣽⡪⡘⡰⠨⢐⢀⠢⢢⢄⢤⣰⠼⡾⢕⢕⡵⣝⠎⢌⢪⠪⡘⡌⠀ -⡯⣳⠯⠚⢊⠡⡂⢂⠨⠊⠔⡑⠬⡸⣘⢬⢪⣪⡺⡼⣕⢯⢞⢕⢝⠎⢻⢼⣀⠀ -⠁⡂⠔⡁⡢⠣⢀⠢⠀⠅⠱⡐⡱⡘⡔⡕⡕⣲⡹⣎⡮⡏⡑⢜⢼⡱⢩⣗⣯⣟ -⢀⢂⢑⠀⡂⡃⠅⠊⢄⢑⠠⠑⢕⢕⢝⢮⢺⢕⢟⢮⢊⢢⢱⢄⠃⣇⣞⢞⣞⢾ -⢀⠢⡑⡀⢂⢊⠠⠁⡂⡐⠀⠅⡈⠪⠪⠪⠣⠫⠑⡁⢔⠕⣜⣜⢦⡰⡎⡯⡾⡽