From c73d79841c21733915a0fcaf9d78ba5ca31d0898 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 9 Oct 2022 16:19:42 +0200 Subject: [PATCH] DevTest: More node textures to tell them apart --- games/devtest/mods/testnodes/drawtypes.lua | 4 +- games/devtest/mods/testnodes/meshes.lua | 8 +-- games/devtest/mods/testnodes/nodeboxes.lua | 12 ++--- games/devtest/mods/testnodes/param2.lua | 48 +++++++++--------- games/devtest/mods/testnodes/properties.lua | 12 ++--- .../mods/testnodes/textures/testnodes_1f.png | Bin 0 -> 153 bytes .../mods/testnodes/textures/testnodes_1fg.png | Bin 0 -> 108 bytes .../mods/testnodes/textures/testnodes_2f.png | Bin 0 -> 141 bytes .../mods/testnodes/textures/testnodes_2fg.png | Bin 0 -> 118 bytes .../mods/testnodes/textures/testnodes_3f.png | Bin 0 -> 158 bytes .../mods/testnodes/textures/testnodes_3fg.png | Bin 0 -> 114 bytes .../mods/testnodes/textures/testnodes_4f.png | Bin 0 -> 152 bytes .../mods/testnodes/textures/testnodes_4fg.png | Bin 0 -> 103 bytes .../mods/testnodes/textures/testnodes_5f.png | Bin 0 -> 156 bytes .../mods/testnodes/textures/testnodes_5fg.png | Bin 0 -> 109 bytes .../mods/testnodes/textures/testnodes_6f.png | Bin 0 -> 158 bytes .../mods/testnodes/textures/testnodes_6fg.png | Bin 0 -> 111 bytes .../textures/testnodes_mesh_stripes10.png | Bin 0 -> 84 bytes .../textures/testnodes_mesh_stripes5.png | Bin 0 -> 108 bytes .../textures/testnodes_mesh_stripes6.png | Bin 0 -> 86 bytes .../textures/testnodes_mesh_stripes7.png | Bin 0 -> 96 bytes .../textures/testnodes_mesh_stripes8.png | Bin 0 -> 86 bytes .../textures/testnodes_mesh_stripes9.png | Bin 0 -> 99 bytes .../textures/testnodes_node_falling_1.png | Bin 0 -> 126 bytes .../textures/testnodes_node_falling_2.png | Bin 0 -> 135 bytes .../textures/testnodes_node_falling_3.png | Bin 0 -> 125 bytes .../textures/testnodes_node_falling_4.png | Bin 0 -> 123 bytes .../textures/testnodes_node_falling_5.png | Bin 0 -> 123 bytes .../textures/testnodes_node_falling_6.png | Bin 0 -> 122 bytes 29 files changed, 42 insertions(+), 42 deletions(-) create mode 100644 games/devtest/mods/testnodes/textures/testnodes_1f.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_1fg.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_2f.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_2fg.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_3f.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_3fg.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_4f.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_4fg.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_5f.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_5fg.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_6f.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_6fg.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_mesh_stripes5.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_node_falling_1.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_node_falling_2.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_node_falling_3.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png create mode 100644 games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png diff --git a/games/devtest/mods/testnodes/drawtypes.lua b/games/devtest/mods/testnodes/drawtypes.lua index 0ad65f761..f354b4394 100644 --- a/games/devtest/mods/testnodes/drawtypes.lua +++ b/games/devtest/mods/testnodes/drawtypes.lua @@ -296,7 +296,7 @@ minetest.register_node("testnodes:mesh_degrotate", { paramtype = "light", paramtype2 = "degrotate", mesh = "testnodes_ocorner.obj", - tiles = { "testnodes_mesh_stripes2.png" }, + tiles = { "testnodes_mesh_stripes7.png" }, on_rightclick = rotate_on_rightclick, place_param2 = 10, -- 15° @@ -312,7 +312,7 @@ minetest.register_node("testnodes:mesh_colordegrotate", { paramtype2 = "colordegrotate", palette = "testnodes_palette_facedir.png", mesh = "testnodes_ocorner.obj", - tiles = { "testnodes_mesh_stripes3.png" }, + tiles = { "testnodes_mesh_stripes8.png" }, on_rightclick = rotate_on_rightclick, -- color index 1, 1 step (=15°) rotated diff --git a/games/devtest/mods/testnodes/meshes.lua b/games/devtest/mods/testnodes/meshes.lua index 924baea35..e55c3eafd 100644 --- a/games/devtest/mods/testnodes/meshes.lua +++ b/games/devtest/mods/testnodes/meshes.lua @@ -67,7 +67,7 @@ minetest.register_node("testnodes:mesh_4dir", { S("param2 = 4dir rotation (0..3)"), drawtype = "mesh", mesh = "testnodes_ocorner.obj", - tiles = {"testnodes_mesh_stripes.png"}, + tiles = {"testnodes_mesh_stripes5.png"}, paramtype = "light", paramtype2 = "4dir", collision_box = ocorner_cbox, @@ -80,7 +80,7 @@ minetest.register_node("testnodes:mesh_color4dir", { S("param2 = color + 4dir rotation (0..255)"), drawtype = "mesh", mesh = "testnodes_ocorner.obj", - tiles = {"testnodes_mesh_stripes3.png"}, + tiles = {"testnodes_mesh_stripes6.png"}, paramtype = "light", paramtype2 = "color4dir", palette = "testnodes_palette_4dir.png", @@ -95,7 +95,7 @@ minetest.register_node("testnodes:mesh_wallmounted", { S("param2 = wallmounted rotation (0..5)"), drawtype = "mesh", mesh = "testnodes_pyramid.obj", - tiles = {"testnodes_mesh_stripes2.png"}, + tiles = {"testnodes_mesh_stripes9.png"}, paramtype = "light", paramtype2 = "wallmounted", collision_box = tall_pyr_cbox, @@ -108,7 +108,7 @@ minetest.register_node("testnodes:mesh_colorwallmounted", { S("param2 = color + wallmounted rotation (0..5, 8..13, ...)"), drawtype = "mesh", mesh = "testnodes_pyramid.obj", - tiles = {"testnodes_mesh_stripes3.png"}, + tiles = {"testnodes_mesh_stripes10.png"}, paramtype = "light", paramtype2 = "colorwallmounted", palette = "testnodes_palette_wallmounted.png", diff --git a/games/devtest/mods/testnodes/nodeboxes.lua b/games/devtest/mods/testnodes/nodeboxes.lua index 720176efd..a1c1619af 100644 --- a/games/devtest/mods/testnodes/nodeboxes.lua +++ b/games/devtest/mods/testnodes/nodeboxes.lua @@ -120,12 +120,12 @@ minetest.register_node("testnodes:nodebox_connected_4dir", { S("Connects to neighbors").."\n".. S("param2 = 4dir rotation of textures (not of the nodebox!)"), tiles = { - "testnodes_1.png^[colorize:#FFFF00:127", - "testnodes_2.png^[colorize:#FFFF00:127", - "testnodes_3.png^[colorize:#FFFF00:127", - "testnodes_4.png^[colorize:#FFFF00:127", - "testnodes_5.png^[colorize:#FFFF00:127", - "testnodes_6.png^[colorize:#FFFF00:127", + "testnodes_1f.png", + "testnodes_2f.png", + "testnodes_3f.png", + "testnodes_4f.png", + "testnodes_5f.png", + "testnodes_6f.png", }, groups = {connected_nodebox=1, dig_immediate=3}, drawtype = "nodebox", diff --git a/games/devtest/mods/testnodes/param2.lua b/games/devtest/mods/testnodes/param2.lua index f216247cc..ffa390967 100644 --- a/games/devtest/mods/testnodes/param2.lua +++ b/games/devtest/mods/testnodes/param2.lua @@ -23,12 +23,12 @@ minetest.register_node("testnodes:4dir", { S("param2 = 4dir rotation (0..3)"), paramtype2 = "4dir", tiles = { - "testnodes_1.png^[colorize:#FFFF00:127", - "testnodes_2.png^[colorize:#FFFF00:127", - "testnodes_3.png^[colorize:#FFFF00:127", - "testnodes_4.png^[colorize:#FFFF00:127", - "testnodes_5.png^[colorize:#FFFF00:127", - "testnodes_6.png^[colorize:#FFFF00:127", + "testnodes_1f.png", + "testnodes_2f.png", + "testnodes_3f.png", + "testnodes_4f.png", + "testnodes_5f.png", + "testnodes_6f.png", }, groups = { dig_immediate = 3 }, @@ -60,12 +60,12 @@ minetest.register_node("testnodes:4dir_nodebox", { description = S("4dir Nodebox Test Node").."\n".. S("param2 = 4dir rotation (0..3)"), tiles = { - "testnodes_1.png^[colorize:#ffff00:127", - "testnodes_2.png^[colorize:#ffff00:127", - "testnodes_3.png^[colorize:#ffff00:127", - "testnodes_4.png^[colorize:#ffff00:127", - "testnodes_5.png^[colorize:#ffff00:127", - "testnodes_6.png^[colorize:#ffff00:127", + "testnodes_1f.png", + "testnodes_2f.png", + "testnodes_3f.png", + "testnodes_4f.png", + "testnodes_5f.png", + "testnodes_6f.png", }, drawtype = "nodebox", paramtype = "light", @@ -176,12 +176,12 @@ minetest.register_node("testnodes:color4dir", { paramtype2 = "color4dir", palette = "testnodes_palette_4dir.png", tiles = { - "testnodes_1g.png", - "testnodes_2g.png", - "testnodes_3g.png", - "testnodes_4g.png", - "testnodes_5g.png", - "testnodes_6g.png", + "testnodes_1fg.png", + "testnodes_2fg.png", + "testnodes_3fg.png", + "testnodes_4fg.png", + "testnodes_5fg.png", + "testnodes_6fg.png", }, groups = { dig_immediate = 3 }, @@ -191,12 +191,12 @@ minetest.register_node("testnodes:color4dir_nodebox", { description = S("Color 4dir Nodebox Test Node").."\n".. S("param2 = color + 4dir rotation (0..255)"), tiles = { - "testnodes_1g.png", - "testnodes_2g.png", - "testnodes_3g.png", - "testnodes_4g.png", - "testnodes_5g.png", - "testnodes_6g.png", + "testnodes_1fg.png", + "testnodes_2fg.png", + "testnodes_3fg.png", + "testnodes_4fg.png", + "testnodes_5fg.png", + "testnodes_6fg.png", }, drawtype = "nodebox", paramtype = "light", diff --git a/games/devtest/mods/testnodes/properties.lua b/games/devtest/mods/testnodes/properties.lua index b4d517962..4dabe21fc 100644 --- a/games/devtest/mods/testnodes/properties.lua +++ b/games/devtest/mods/testnodes/properties.lua @@ -19,12 +19,12 @@ minetest.register_node("testnodes:falling_facedir", { S("Falls down if no node below").."\n".. S("param2 = facedir rotation"), tiles = { - "testnodes_1.png^[brighten", - "testnodes_2.png^[brighten", - "testnodes_3.png^[brighten", - "testnodes_4.png^[brighten", - "testnodes_5.png^[brighten", - "testnodes_6.png^[brighten", + "testnodes_node_falling_1.png", + "testnodes_node_falling_2.png", + "testnodes_node_falling_3.png", + "testnodes_node_falling_4.png", + "testnodes_node_falling_5.png", + "testnodes_node_falling_6.png", }, paramtype2 = "facedir", groups = { falling_node = 1, dig_immediate = 3 }, diff --git a/games/devtest/mods/testnodes/textures/testnodes_1f.png b/games/devtest/mods/testnodes/textures/testnodes_1f.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a1b69e42cf8596aa29d9b41d4dbfd359248ca9 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|37#&FAr*|t3`}W@7(>4PfB)4* zX+hEoHZwD`2^ad=)^Mz2SjgyWx-3mZ`ofaJ$c~ka3#BwX9GI6ydv0iq;4LsYVWQx~ zX`HgrT_!8aA>+V2lLf~PGq?!o?(p=hQBlul=+4`CweW8Id7xbkp00i_>zopr0J8cp ASO5S3 literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_1fg.png b/games/devtest/mods/testnodes/textures/testnodes_1fg.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0beb032789800b428fc97c7da56392f187e611 GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|#-1*YAr*|t3haASr4&paTxSb+ zXylzC^usivOXymIfYQyjhYJ|}xfZxxa_~+QQRg*cU~utyCb?{5*)^bc22WQ%mvv4F FO#m+e9V`F< literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_2f.png b/games/devtest/mods/testnodes/textures/testnodes_2f.png new file mode 100644 index 0000000000000000000000000000000000000000..a26f840e3e35cc9e8a0593a131a641e02502a9b6 GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|A)YRdAr*|t3`}W@7(>4Pw=C{( zaX1>lo0F4Mam7(Y!6e}nBWt6IpY(+g<;|QK2c|6RWiy)Va^Z4I=wt3MCc$<&PJ@Q4 n{37bSKGF{!rQC8T`ozYtcwU`Zc=ha9p!p1*u6{1-oD!MW4D)mZzHj`$Wi3z} NgQu&X%Q~loCIED>A{_t# literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_3f.png b/games/devtest/mods/testnodes/textures/testnodes_3f.png new file mode 100644 index 0000000000000000000000000000000000000000..d007ee4457ab151a765be19ab6b251004af7c1f9 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|sh%#5Ar*{UCo!@e2;gx({^BqH zhSzJa-)PE{`UHx3v IIVCg!00fyj=l}o! literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_3fg.png b/games/devtest/mods/testnodes/textures/testnodes_3fg.png new file mode 100644 index 0000000000000000000000000000000000000000..01e4276b1b0ebc1728a4dd1a4732d60b8bdbc25d GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!D3?x-;bCrM;TYyi9E0BKs_N}4W%LpJ#-P6S} zq=GS-q3KsW&&T}|S+68keK)+)EHHsLHKh550;^z{gU|{whUq5+wx@>P_XTQU@O1Ta JS?83{1OU-nAAtY> literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_4f.png b/games/devtest/mods/testnodes/textures/testnodes_4f.png new file mode 100644 index 0000000000000000000000000000000000000000..7e444fd1143834387fd69a7cfab0b55994931a61 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|@t!V@Ar*{gCpEGiFc5HdKl%Uv zVZLuuqqp-2F4eryadYW+nI|u@HvW72d6)Bk9!7@0(eY79eK7$C|Q-*^C$%p731FPw)7(8>o}P)78&qol`;+09&LQ Ac>n+a literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_5f.png b/games/devtest/mods/testnodes/textures/testnodes_5f.png new file mode 100644 index 0000000000000000000000000000000000000000..a4162db571367f98346c0953c3070b6210d39102 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|$(}BbAr*{kCpEGiFc5Hd-+BMt z-w*o|t&6p6v=$3CKh?eVOp7;q?!5E4yAJWXxY!DJ{<*`*8dlYDEqoHMCWF*1YlWAS zc~|XZF7RS&xXv#9q-jlkfZN(kA7zopr E0M98lwEzGB literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_5fg.png b/games/devtest/mods/testnodes/textures/testnodes_5fg.png new file mode 100644 index 0000000000000000000000000000000000000000..f21acbb18f9fd4347155df54e197cc249146d498 GIT binary patch literal 109 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|CY~;iAr*|t3haASr4&pAuCRr+ zWir>D-q^9I@a5{pB>M!WT^S4R@J~_a^^tz?DCMRD8w10^oU>9|6(+NQ`WZZ3{an^L HB{Ts5f$JXR literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_6f.png b/games/devtest/mods/testnodes/textures/testnodes_6f.png new file mode 100644 index 0000000000000000000000000000000000000000..be3f695d58692bdea67011fd772f24b136647eb2 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|sh%#5Ar*{C3`}W@7(>3Unm?Ig z>!e1u0}edSjlciDw>1cqg@y8H9FY`%rh~_ZQ!1i$}9;qZ`Z+pn_uQ|0!?7>boFyt I=akR{0Ivrg{Qv*} literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d569a072a6741d278982a4937009bc9dedf4e3 GIT binary patch literal 84 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|(w;7kAr*|t3hXipQao|I|2x^7 fuU=j}PmLKUclYcb8-w)UKxGV`u6{1-oD!Mn{So<}{xV9D%(8z!*!Oz4>|!%wU}zG0DDf?G77I{2gQu&X%Q~lo FCIC%T9gP40 literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png new file mode 100644 index 0000000000000000000000000000000000000000..46c6e50198b1298407a8fff90fba65fe52658991 GIT binary patch literal 86 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|vYsxEAr*|t3hXipQWI7`w7=Mp i!mE6Ye{r1xGXq1O-**w;-%(OPg$$mqelF{r5}E+hCloCJ literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png new file mode 100644 index 0000000000000000000000000000000000000000..75b3bdd239cc83d5b98ceae482e74a81e47776ed GIT binary patch literal 96 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|>Ygr+Ar*|t3haN>r6#OC__S4d tVunE0f@lp(w*3l1yiU9&9I8eP4BQ9i@d#WxVGq>8;OXk;vd$@?2>`}#7ajlr literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png new file mode 100644 index 0000000000000000000000000000000000000000..4b1885983afd9136141f926019215f4c071089d5 GIT binary patch literal 86 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|vYsxEAr*|t3haN>r6#O?$Z#=X jLzcvk04ZKoBL;>%zwaW?iquSi3K=|I{an^LB{Ts5^~n_W literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png new file mode 100644 index 0000000000000000000000000000000000000000..9902be89efde8345f8a3be758a428606160a9afb GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|TAnVBAr*|t3hXwDLqQ%^MU|7^Pnb+XdZ*7tDnm{r-UW|FGnIp literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png new file mode 100644 index 0000000000000000000000000000000000000000..87fc2761245e3088151749f8cdab4a4a3c75ba65 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|PM$7~Ar*|tKm3&#GFPZdDVS8S z{8#U|U}|7s;Gps#hfT#Hf_c`70~rpiCzNiO9uQo{>m0=Va7LN}6T{Sr(|>rdFl6*B V^eR^o+Xys`!PC{xWt~$(695{!B3}Ri literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png new file mode 100644 index 0000000000000000000000000000000000000000..9a8ce2dc4ed6a79e08f6a005b915ba90e35ef156 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|PM$7~Ar*|tKm3&#GFPZdDVP}i z+3zcmnBl-=pvRPOoxz-EvUfUf%io5TjAwI9q}hC!c^+JHNc0hAY&dnoyGDhH;q}ff Vf4ujLegm4u;OXk;vd$@?2>=D*BQyX2 literal 0 HcmV?d00001 diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png new file mode 100644 index 0000000000000000000000000000000000000000..9ad2f5b86c2c917a9a8820e864d30ef163fcba44 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|j-D=#Ar*|tKm3&#GFPZdDVVg> z1*&#jFf~}fWFq)R>OtE<(+67^gJ=2he)-1y*HnQajCaaW6J|k%6+L^7xGOO*q{TD~ T_;$2|OlRbP0l+XkKHN_&q literal 0 HcmV?d00001