From 383de29f93f57166ca41f505bf90ad56b27576b3 Mon Sep 17 00:00:00 2001 From: Motschen Date: Mon, 22 Aug 2022 18:42:48 +0200 Subject: [PATCH] MidnightLib 0.6.0 - Centered Comments, Inactive Reset Buttons, Hidden Entries - Comments can now be centered via a property in the Annotation - Entries can now be completely hidden using the respective annotation (allows for things like config versions being saved) - Reset buttons now get deactivated when the value matches the default - The MidnightConfigOverview list is now sorted alphabetically - Make more fields publicly accessible - Ukrainian translation by @Altegar --- gradle.properties | 2 +- .../midnightdust/core/MidnightLibServer.java | 3 +- .../core/config/MidnightLibConfig.java | 4 +- .../screen/MidnightConfigOverviewScreen.java | 4 +- .../lib/config/MidnightConfig.java | 71 +++++++++++------- .../resources/assets/midnightlib/icon.png | Bin 4707 -> 2801 bytes 6 files changed, 52 insertions(+), 32 deletions(-) mode change 100755 => 100644 src/main/resources/assets/midnightlib/icon.png diff --git a/gradle.properties b/gradle.properties index f559447..0030767 100755 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.14.6 # Mod Properties - mod_version = 0.5.2 + mod_version = 0.6.0 maven_group = eu.midnightdust archives_base_name = midnightlib diff --git a/src/main/java/eu/midnightdust/core/MidnightLibServer.java b/src/main/java/eu/midnightdust/core/MidnightLibServer.java index c9e142c..966acb1 100755 --- a/src/main/java/eu/midnightdust/core/MidnightLibServer.java +++ b/src/main/java/eu/midnightdust/core/MidnightLibServer.java @@ -1,6 +1,5 @@ package eu.midnightdust.core; -import eu.midnightdust.core.config.MidnightLibConfig; import eu.midnightdust.lib.config.AutoCommand; import eu.midnightdust.lib.config.MidnightConfig; import net.fabricmc.api.DedicatedServerModInitializer; @@ -13,7 +12,7 @@ public class MidnightLibServer implements DedicatedServerModInitializer { public void onInitializeServer() { MidnightConfig.configClass.forEach((modid, config) -> { for (Field field : config.getFields()) { - if (field.isAnnotationPresent(MidnightConfig.Entry.class) && !field.isAnnotationPresent(MidnightConfig.Client.class)) + if (field.isAnnotationPresent(MidnightConfig.Entry.class) && !field.isAnnotationPresent(MidnightConfig.Client.class) && !field.isAnnotationPresent(MidnightConfig.Hidden.class)) new AutoCommand(field, modid).register(); } }); diff --git a/src/main/java/eu/midnightdust/core/config/MidnightLibConfig.java b/src/main/java/eu/midnightdust/core/config/MidnightLibConfig.java index 3bdb5dc..f9412a2 100755 --- a/src/main/java/eu/midnightdust/core/config/MidnightLibConfig.java +++ b/src/main/java/eu/midnightdust/core/config/MidnightLibConfig.java @@ -4,10 +4,10 @@ import eu.midnightdust.lib.config.MidnightConfig; import net.fabricmc.loader.api.FabricLoader; public class MidnightLibConfig extends MidnightConfig { - @Comment public static Comment midnightlib_description; + @Comment(centered = true) public static Comment midnightlib_description; @Entry // Enable or disable the MidnightConfig overview screen button public static ConfigButton config_screen_list = FabricLoader.getInstance().isModLoaded("modmenu") ? ConfigButton.MODMENU : ConfigButton.TRUE; - @Comment public static Comment midnighthats_description; + @Comment(centered = true) public static Comment midnighthats_description; @Entry // Enable or disable hats for contributors, friends and donors. public static boolean special_hats = true; diff --git a/src/main/java/eu/midnightdust/core/screen/MidnightConfigOverviewScreen.java b/src/main/java/eu/midnightdust/core/screen/MidnightConfigOverviewScreen.java index 8af1ec8..f583572 100755 --- a/src/main/java/eu/midnightdust/core/screen/MidnightConfigOverviewScreen.java +++ b/src/main/java/eu/midnightdust/core/screen/MidnightConfigOverviewScreen.java @@ -33,7 +33,9 @@ public class MidnightConfigOverviewScreen extends Screen { this.list = new MidnightOverviewListWidget(this.client, this.width, this.height, 32, this.height - 32, 25); if (this.client != null && this.client.world != null) this.list.setRenderBackground(false); this.addSelectableChild(this.list); - MidnightConfig.configClass.forEach((modid, configClass) -> { + List sortedMods = new ArrayList<>(MidnightConfig.configClass.keySet()); + Collections.sort(sortedMods); + sortedMods.forEach((modid) -> { if (!MidnightLibClient.hiddenMods.contains(modid)) { list.addButton(new ButtonWidget(this.width / 2 - 100, this.height - 28, 200, 20, Text.translatable(modid +".midnightconfig.title"), (button) -> Objects.requireNonNull(client).setScreen(MidnightConfig.getScreen(this,modid)))); diff --git a/src/main/java/eu/midnightdust/lib/config/MidnightConfig.java b/src/main/java/eu/midnightdust/lib/config/MidnightConfig.java index d128c3c..ed27167 100755 --- a/src/main/java/eu/midnightdust/lib/config/MidnightConfig.java +++ b/src/main/java/eu/midnightdust/lib/config/MidnightConfig.java @@ -40,7 +40,7 @@ import java.util.function.Function; import java.util.function.Predicate; import java.util.regex.Pattern; -/** MidnightConfig v2.1.0 by TeamMidnightDust & Motschen +/** MidnightConfig v2.2.0 by TeamMidnightDust & Motschen * Single class config library - feel free to copy! * * Based on https://github.com/Minenash/TinyConfig @@ -59,6 +59,7 @@ public abstract class MidnightConfig { Object widget; int width; int max; + boolean centered; Map.Entry error; Object defaultValue; Object value; @@ -81,8 +82,9 @@ public abstract class MidnightConfig { for (Field field : config.getFields()) { EntryInfo info = new EntryInfo(); - if ((field.isAnnotationPresent(Entry.class) || field.isAnnotationPresent(Comment.class)) && !field.isAnnotationPresent(Server.class)) + if ((field.isAnnotationPresent(Entry.class) || field.isAnnotationPresent(Comment.class)) && !field.isAnnotationPresent(Server.class) && !field.isAnnotationPresent(Hidden.class)) if (FabricLoader.getInstance().getEnvironmentType() == EnvType.CLIENT) initClient(modid, field, info); + if (field.isAnnotationPresent(Comment.class)) info.centered = field.getAnnotation(Comment.class).centered(); if (field.isAnnotationPresent(Entry.class)) try { info.defaultValue = field.get(null); @@ -96,8 +98,7 @@ public abstract class MidnightConfig { try { info.value = info.field.get(null); info.tempValue = info.value.toString(); - } catch (IllegalAccessException ignored) { - } + } catch (IllegalAccessException ignored) {} } } @Environment(EnvType.CLIENT) @@ -117,7 +118,7 @@ public abstract class MidnightConfig { info.max = e.max() == Double.MAX_VALUE ? Integer.MAX_VALUE : (int) e.max(); textField(info, String::length, null, Math.min(e.min(), 0), Math.max(e.max(), 1), true); } else if (type == boolean.class) { - Function func = value -> Text.literal((Boolean) value ? "True" : "False").formatted((Boolean) value ? Formatting.GREEN : Formatting.RED); + Function func = value -> Text.translatable((Boolean) value ? "gui.yes" : "gui.no").formatted((Boolean) value ? Formatting.GREEN : Formatting.RED); info.widget = new AbstractMap.SimpleEntry>(button -> { info.value = !(Boolean) info.value; button.setMessage(func.apply(info.value)); @@ -189,18 +190,18 @@ public abstract class MidnightConfig { return new MidnightConfigScreen(parent, modid); } @Environment(EnvType.CLIENT) - private static class MidnightConfigScreen extends Screen { + public static class MidnightConfigScreen extends Screen { protected MidnightConfigScreen(Screen parent, String modid) { super(Text.translatable(modid + ".midnightconfig." + "title")); this.parent = parent; this.modid = modid; this.translationPrefix = modid + ".midnightconfig."; } - private final String translationPrefix; - private final Screen parent; - private final String modid; - private MidnightConfigListWidget list; - private boolean reload = false; + public final String translationPrefix; + public final Screen parent; + public final String modid; + public MidnightConfigListWidget list; + public boolean reload = false; // Real Time config update // @Override @@ -209,8 +210,18 @@ public abstract class MidnightConfig { for (EntryInfo info : entries) { try {info.field.set(null, info.value);} catch (IllegalAccessException ignored) {} } + updateResetButtons(); } - private void loadValues() { + public void updateResetButtons() { + if (this.list != null) { + for (ButtonEntry entry : this.list.children()) { + if (entry.buttons != null && entry.buttons.size() > 1 && entry.buttons.get(1) instanceof ButtonWidget button) { + button.active = !Objects.equals(entry.info.value.toString(), entry.info.defaultValue.toString()); + } + } + } + } + public void loadValues() { try { gson.fromJson(Files.newBufferedReader(path), configClass.get(modid)); } catch (Exception e) { write(modid); } @@ -223,7 +234,7 @@ public abstract class MidnightConfig { } } @Override - protected void init() { + public void init() { super.init(); if (!reload) loadValues(); @@ -262,7 +273,7 @@ public abstract class MidnightConfig { if (info.widget instanceof Map.Entry) { Map.Entry> widget = (Map.Entry>) info.widget; if (info.field.getType().isEnum()) widget.setValue(value -> Text.translatable(translationPrefix + "enum." + info.field.getType().getSimpleName() + "." + info.value.toString())); - this.list.addButton(List.of(new ButtonWidget(width - 160, 0,150, 20, widget.getValue().apply(info.value), widget.getKey()),resetButton), name); + this.list.addButton(List.of(new ButtonWidget(width - 160, 0,150, 20, widget.getValue().apply(info.value), widget.getKey()),resetButton), name, info); } else if (info.field.getType() == List.class) { if (!reload) info.index = 0; TextFieldWidget widget = new TextFieldWidget(textRenderer, width - 160, 0, 150, 20, null); @@ -282,7 +293,7 @@ public abstract class MidnightConfig { Objects.requireNonNull(client).setScreen(this); list.setScrollAmount(scrollAmount); })); - this.list.addButton(List.of(widget, resetButton, cycleButton), name); + this.list.addButton(List.of(widget, resetButton, cycleButton), name, info); } else if (info.widget != null) { TextFieldWidget widget = new TextFieldWidget(textRenderer, width - 160, 0, 150, 20, null); widget.setMaxLength(info.width); @@ -295,13 +306,14 @@ public abstract class MidnightConfig { ButtonWidget colorButton = new ButtonWidget(width - 185, 0, 20, 20, Text.literal("⬛"), (button -> {})); try {colorButton.setMessage(Text.literal("⬛").setStyle(Style.EMPTY.withColor(Color.decode(info.tempValue).getRGB())));} catch (Exception ignored) {} info.colorButton = colorButton; - this.list.addButton(List.of(widget, colorButton, resetButton), name); + this.list.addButton(List.of(widget, colorButton, resetButton), name, info); } - else this.list.addButton(List.of(widget, resetButton), name); + else this.list.addButton(List.of(widget, resetButton), name, info); } else { - this.list.addButton(List.of(),name); + this.list.addButton(List.of(),name, info); } } + updateResetButtons(); } } @@ -344,8 +356,8 @@ public abstract class MidnightConfig { @Override public int getScrollbarPositionX() { return this.width -7; } - public void addButton(List buttons, Text text) { - this.addEntry(ButtonEntry.create(buttons, text)); + public void addButton(List buttons, Text text, EntryInfo info) { + this.addEntry(ButtonEntry.create(buttons, text, info)); } @Override public int getRowWidth() { return 10000; } @@ -362,22 +374,26 @@ public abstract class MidnightConfig { private static final TextRenderer textRenderer = MinecraftClient.getInstance().textRenderer; public final List buttons; private final Text text; + public final EntryInfo info; private final List children = new ArrayList<>(); public static final Map buttonsWithText = new HashMap<>(); - private ButtonEntry(List buttons, Text text) { + private ButtonEntry(List buttons, Text text, EntryInfo info) { if (!buttons.isEmpty()) buttonsWithText.put(buttons.get(0),text); this.buttons = buttons; this.text = text; + this.info = info; children.addAll(buttons); } - public static ButtonEntry create(List buttons, Text text) { - return new ButtonEntry(buttons, text); + public static ButtonEntry create(List buttons, Text text, EntryInfo info) { + return new ButtonEntry(buttons, text, info); } public void render(MatrixStack matrices, int index, int y, int x, int entryWidth, int entryHeight, int mouseX, int mouseY, boolean hovered, float tickDelta) { buttons.forEach(b -> { b.y = y; b.render(matrices, mouseX, mouseY, tickDelta); }); - if (text != null && (!text.getString().contains("spacer") || !buttons.isEmpty())) - DrawableHelper.drawTextWithShadow(matrices,textRenderer, text,12,y+5,0xFFFFFF); + if (text != null && (!text.getString().contains("spacer") || !buttons.isEmpty())) { + if (info.centered) textRenderer.drawWithShadow(matrices, text, MinecraftClient.getInstance().getWindow().getScaledWidth() / 2f - (textRenderer.getWidth(text) / 2f), y + 5, 0xFFFFFF); + else DrawableHelper.drawTextWithShadow(matrices, textRenderer, text, 12, y + 5, 0xFFFFFF); + } } public List children() {return children;} public List selectableChildren() {return children;} @@ -391,7 +407,10 @@ public abstract class MidnightConfig { } @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Client {} @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Server {} - @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Comment {} + @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Hidden {} + @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Comment { + boolean centered() default false; + } public static class HiddenAnnotationExclusionStrategy implements ExclusionStrategy { public boolean shouldSkipClass(Class clazz) { return false; } diff --git a/src/main/resources/assets/midnightlib/icon.png b/src/main/resources/assets/midnightlib/icon.png old mode 100755 new mode 100644 index ddc1a4936668d37eeb0b40db4b70b7b9b6f93bc2..d31b4c46823b2536b67007b68606f8b82c806a08 GIT binary patch literal 2801 zcmd5-dpOkDAD)>Q%ov2&+-aJy%(|3lv1VMRVbU~4xvX}EtlZWNa?3SJqS~yIOPQg_ zZ6dcs#$6>s2_d(p5O&-dmwsoT{qMKG|Ms8X`99~I&w0P+^SAo%BIz^tyWPNUIeWMmo|8mgtp#TyV76x)l zOG`m;?AWpYA}J~=0!UO;6p#ZOfEHkgiHTve*$WE`2m~TEHMOUwCnF;xIXRh3CRbHe z6&4oe<>dhoqyYY*p&`IOH8oXRTl?zOtCW-!-~O>5s{KzfRBsX%Sjv*mJz5vJ)~=NQXJ`Ldv(je?!EkvZQ2ZPV+BKV<E?B0GbTi##1o2XaYn&}+3VR`)b%gp@x zf}x$Ir9b<&&8+=Hd+)8U?QHROJNc{gf{yW#-pN%S`|X>smY17LJJajq{X^RyKMZcq zjZTi%56mo1404x0bZmQa`CAi<{Pk(U+9&?%@Y>g%nRWh9%TU+yE`Md4|8&IXTekxQ z0)Irb!cm=C`qLeq6rE*b=>;=~{qdO()TN;K`(~fqu1bGys3m(1J<~9^J9aem^ZnZO*JcK1va@&V#*Jk>-qJ`) zp_PVz=t^ma=`_eSc`eG~p;_KsX-rlz?O|5y$LPR3d#|*u@Z=LSI>PDx0~U<@gcii> z%tuJO`_j=vEUE%F@g(sqE9fQS91~rg*pw!o9?{b$6{6H9n+4g<4kPw zl99J0()G5!nYz9}Fo|N0cStH`VRF4MOPbDL(lsj_>Mfn{AwR{_5LPqLCbmHQajBJL zwf(D}M0iL3_d-z;FqtQ$KvhqhMV;I;?F~|eD`E!aPn}eEOd_2b6ymH!?n$`Z9kg)r zCcZ@8kdcyy5;Y_#<5uiGP%WKee-!yTzvU8e-8|+ydVJjQN(1x5eFZ&sT@9u}FR_eh zPtV76yKSVvG3lz~Ss6u`Ig5LlGm4#GLW1^S$CFxC#3h@t@5Fat`X_rF_vG`lfAVpa zpdT_Bw&_}@2J6G*ed62C-4(0T_ev4#L*z){n*Z>YmXnbvGs7L2A|5k)k<`22Mp{C@ zkCi+T{HZcwpFCTeLBhppYs9uK@GVH&&BTOw5~aPvbP?8`eElvhgc=u)Pa`Eb2U&d2 zeXXW+h3UM2Epwr1yMCH`3j1R1dA|~MSJMd3J7t-Afm?HH-S_31E4u9ny7oH9Cbh(y zeb9gP-1p4**UwK5a3UV1dRSAH1}R*=MlKxU0?qVcPsou+tWp=b(8I8Il|89HuJ+hg zTK*>ER%a`FaFbYQELv$}S+s2Hf^hA|w-iHE>rnyZ)N}~hpNH6Bw5RMBNpJ2uN;JO6 zIM7&Un0?QIu)hlSN?5%~!2CRPTKI%7Yr?c~Zhhi&=V`GB{W{?r8GG%#n{Iy2fxc(W z8b>ii17YSPveiL4p3OPrF*?4>?Sl}aSSt^ju5<+ovk{WF7041FMIZMJwwLapm7jXwV%dyklz%FQ?qKAt+6(Xr6^>Tz-Ct@mj>$eqAEB7()VFKANcr^A^5Qj77$FQFJc30c&s7ihSVS0(5 z(WTh!|1lD+i>jh}pVK&o;Jq!edY*Z(E^FZ1$%^$Mp+wvB<@Uc@}NNvirsT5qH zr9dLr81j|8i9{%ib)IfCkbO}Dk(hgU30ViR9ccPO;3le$_e2zJzGHZ(-A?-X@Bv9a z%L4N$ER41HZ0?Cc!#}hYPwOVGiD+IpFSFb2?F;QReYP2^g?q;xN8f7S)Qi{{zqwc` zse-%cUm$toNR!*8^OppN46kKfINd6nU#Z)yxh|z(Tox5tIhE6U^t&1ll`fuc&8HkEdoL+%6~^lnYe+^ z%Bw3|3gbcK-)I|sfE=42%$felT4k`-X!7U65S=e!VX*f0eYVU-4$6O51QQMat?P_?@Xmm zdYWxHT=Zlgwp+Nf-%MSaO+i)lF=Lu56A(wk?^Ldj8a>fqx|an|L(Yd-QJ*L_cU&8G zI80wYl)0f)GGHl!ojC5%ip2#c{qEx%x{L?%DV`&wY^0@!`1K59+t2nSG1 zR7FQ{Op&2u1FNg6k)e~5kO2&TN=i!q|NsC0|NsC0|NsARaB%|NsC0|NlBVIvX1sYHDh`ySw!C^eikav$M0TtgMBFg(M^- zgM))qR8-K=&{@o;c(-{0Sql$1h3LID5&|NadC00960|Nj2|4Gj%KLPCs;j9_432L}iB z_4SE~iOR~#1Ox>7`uZ_3F*`dumX?;z&dyL!P@$or#KgqByu3$8M-vkh+1c5De}As7 zuF%lXrTScU+SpS!{Zl zZ)TRTtuvfQasKXKtl*ziyt&c(tLOUW#Qy%n>(tNk^Zvo#?YzW)`|$4Zy4lmy{j&4q z>i72A>gdSI*0<>38`rkQG5W~O=Powd)$tCf~oPMh_%{E_eToO6Log1LY{_4V_)mwUOK z=j(ZvbM86M^VL^>U+@L{ga}bYKt3L-WDqJSD5&P3pg=&G)I-W!VM9TS9ltjLyqi_&yQq+qL z7E6;>tF5VlLsOH*Ag))K>Ld~%p~(XW5lYvTm-!@hrY^C6MO!maB3G%@YNN5T(r7fQ zRVsPOK#kTS?gA1%!Xbycz<<8Fibz+~TeJgmmAcYqcaQ5LZK2S}NGQ}6(T%(9{z|o~ zWI$`ER}cnm0J{^wKd+?HOH^vVeLON^mUZ_Hd4oL!LGMssx6C{e8Mpg^gw|58 z;7PC>a-fNSl=uzh7ymmnGqd#p}Jk2fGQN8C1}YCtRQsFNrO z1<^ruPsP_;YUFBLXPY??bT~cHxHNWrey((Sb{H@_T{<^^JSOc8dz=n$z})8ctK~I@ zu7gtm9beo49Vd>ly zvqwzLNj;7}v)fn##^^&e?12HOU!!lV6Khqrh^)st*5YFJ0ar`h+9QkjzWe$YdSlA)c4a!*tqTT)fN?uo!+!pF{_8y;N z4v49ls3Xwkmp66rcEy17Kd(zGw}JZObG6KYQ9BoR4ux#HWB~rBDU)=de6Lk{jL8Xq z8l+b52r>Xm{ERQK@|%eKirL)AXKH6F2m`c(&oC$wRO!L~iG1NOlQRqp6AbiKf*o8z z1o5}g1oj_-|38QFDT9!|#9(SH-@y#P0Lzti;*!C(A**zj$ti}V*1kyPfVfVX-4KZZ z@ahMQx`1psGIT*v0pAA-aQ8dn4NRUe9e4B-CGfX*0aze<04N~b!sHEqE#Y8j zZ~#1^YMULR1uC?v@ql%7Dt`o~My-Kyl~#e_XnO~M1=`Gx-eXK2(a_stwv~vtcL8(& zjDc$1P@X)1;|W7LHFiO|6^M$U0}OI|zhi8e$t#A(9R1J*b!Am)j!;y97NCxJJu^(6 zF_WnaAO@82zyhEHj^vv_`AeXhCM%_51w3q4C*e1fFeDtfmuqx4C&6Z*0I<>o_-mV}l`$1T+d%hJxW@ zz^OC>r;5Kv0)O737w7SGrT9Mm^7}J*ymX0vcM-egyJ8mK;LV%goySMc#NY<|Q;HZy zf|`y-zJOzcBRwYy0oT(ATrVU&aQO#%@hhHwDZI~po7x6IjaZ~`x&g_m#NzWwki0VbV51G<3$tdJ5QBT=`tJwagY*~;R|%l#5Kne>9S zwY4k+TuwS35jTLL(9{IeVb4;s2R=UCc)Ix+0`E_LmcZkG5AR-QCQ$2v$#E0w2Gk2% z`+8k~c0%ASeA*)Ix(I>0)QPUWC#|?h9Jt3S>)t*3AR+MR+O=ya^9hL~w_U4*Ks&Tc z3AhsIO(TG_q1J#^S^*$#cpg67Al_9$-0<`*PM=??AYO2lb=a#{>4O)!dbvd0@K(iX z;)d8Rb;AmO7E*XUfYHFGAq4n1AJz4FVn+d#0DPbXj&kBag1}Ki;L?ptS2%ItXeI(j z|0D#8CnqL}2Va?(n3$Y|#$%p7oSFLgNI<}sz-%NkG|41wfQ*J&Lh-`Oy$?p)Y=D{Y zMo1(g1j^y1*x2ShP969G02*iB;fKe}0vunhzI~8?1i1PeJZ~k=TlB$44>;KRh{w0g z`oD1c7u$V;Hx`mcIOBy-*d-yMP=JB3GUVOogm`}|$uq%FB?*Nr0qlVp<`B{1O(W1n zY+(4v;b9VOpo=8{gCTW8;h_Q6?7$1y;ZQ)_aJ<_p9X*l4*MO_+jXQX8WAy73E}gi< zxf;EH!MV6|hjVd5_#NPC><*r8#1PP4EH>)tYb6Adfk-vp9joPF6{Gmsb$aof#MRYh z&cv|xLF!^ZdvbP5{Sc^r6n;Iz>6V&Op49c+T9RXUf~c}S>_PfAj43C0DUeS zfm$mrStf>KvNizAWAla0Nn9ob*c<=BpZ{=~Nc$Tv)-E((z>9zWUQEu|)~+{`X#5+Q zqMf}=V*1aQ2?5%|^^Wc913N-ipr> zU?({&0XpeSBd|sZu=w%L#WRV|7jGsSuYhIiPF%L8b3&Y!E1Fd9{?Q}tN!%qWU~do& zUb~wz!i9V7TqC?orXMF4hz*>($2G!#_9G9IPo-KvGTQG}H6>oq;oVe87RjSojIef_ z7p!r;;PtEZY+kVOoT=S<{*+kY^L0-1Q8Vn{z@jz#W<=H~{h{F0F1%plB*zO*V%sO* zWFWBo^eoO2UM8m)57Sl%g1Bm)T&E%{L^bNx?&e((`0$ZK;M`KSIIzKx*SI%-nF*A3 zkE?MgVhM;~om^p2+0Eg}nHCnmBY~9*1i$`6JnDC1PFIMjUuYq2_-hLx@H=@Ay8j31 zoIm~`uWc=V;ps1Ii@a>zYDr>dGHhno%teWHVhBZ`1K299;Ccb8@Nc+onC1oNg()vs zyD7Yqa>MV1KN2rMn?FSw5vF{9z)82SQj4XyK!A~;+Y!w`U@?sVMFs+k*$4Hus+`!^8rw4xEMnZ}Q4MYXMm8K%$;$IEF;L|h`ZZr_J{ETf~ zCyg{DQ79!&$XO`Fg;En5fhRc}tUpX)a|@48)^De7ePll3X=@3Ox7VM4;OPau_wF4Y zpEED$J)97epK}HR4{V|uU;{C^Oeab>qIWun^UmxWH?V(5c1=?2<){PLuYyU*VN6I* znC&V{`lboh0R%(GTyrTG$4d8(W5;&@xCbH(gh;u1uH#7-C-@ zd~vpq%HJWIi)QkFbzmP1MaP7($>TY~WK1{~9>Vle#m*UZ#1IJs_egh-GaQ#zgaNO+h^h!r# z#Ro)eRNCutn8yd%g#2BnR%@WJ zp$p48{Ps?NT?C40LQqW87Kuc3x>f>RI$ASf9BOZDm10+kAr|p&aF>?6-aWZ{DF#>z10|q*xC|OR)i%@Dkx