玩家账号找回功能

master
罗家炜 2025-08-30 20:29:56 +08:00
parent 78ad6edd44
commit cc5145bf59
65 changed files with 232 additions and 113 deletions

View File

@ -1,4 +1,3 @@
LoddyController = {}
local M = {}
@ -48,7 +47,6 @@ local function __ConntectGameServer(cmd,room, host, _data,callback)
end
callback(response)
end)
else
if ControllerManager.GameNetClinet == _game_client then
ControllerManager.GameNetClinet = nil
@ -215,7 +213,6 @@ function M:JoinRoom(room_id,callback,group_id,group_layer)
self:PublicJoinRoom(Protocol.WEB_JOIN_ROOM, room_id, callback, group_id, group_layer)
end
function M:ResetJionRoom(callback)
local _game = ControllerManager.GetController(GameController)
local o_room = DataManager.CurrenRoom
@ -359,7 +356,6 @@ function M:RequestRecordList(callback, roomid)
end)
end
function M:RequestPlayBack(_data, callback, game_info)
if game_info and ExtendHotupdate.CheckVersion(game_info) ~= ExtendHotupdate.VERSION_NORMAL then
ExtendHotupdate.UpdateGame(game_info, function()
@ -385,13 +381,10 @@ function M:RequestPlayBack(_data,callback,game_info)
else
callback(res.ReturnCode, nil)
end
end)
end
end
--获取手机验证码
function M:GetPhoneCode(phone, callback)
local _client = ControllerManager.WebClient
@ -402,7 +395,6 @@ function M:GetPhoneCode(phone,callback)
end)
end
function M:GetUserInfo(callback)
local _client = ControllerManager.WebClient
_client:send(Protocol.WEB_GET_USER_INFO, nil, function(res)
@ -435,3 +427,13 @@ function M:SetInvited(on, callback)
callback(res)
end)
end
--找回账号信息
function M:RetrievePassword(data, callback)
local _client = ControllerManager.WebClient
local _data = {}
_data.data = RSAHelper.Encrypt(json.encode(data))
_client:send(Protocol.WEB_BACK_PASSWORD, _data, function(res)
callback(res)
end)
end

View File

@ -31,6 +31,11 @@ local FilterGame = function(games)
end
local function __Login(cmd, _data, callBack)
if not UnityEngine.SystemInfo.deviceUniqueIdentifier or #UnityEngine.SystemInfo.deviceUniqueIdentifier < 6 then
ViewUtil.CloseModalWait()
ViewUtil.ErrorMsg(nil, "", "找不到您的设备信息,若无法登录请联系客服人员解决")
return
end
local _client = ControllerManager.WebClient
_client:send(cmd, _data, function(res)
if (res.ReturnCode == 0) then
@ -47,9 +52,9 @@ local function __Login(cmd, _data, callBack)
user.group_id = account["groupId"]
user.type = account["type"]
user.agent = account["mng"]
-- user.bind_pwd = account["bind_pwd"]
--默认设置为true
user.bind_pwd = true
user.bind_pwd = data["havePassword"]
--默认设置为false,false为进入强制输入密码
-- user.bind_pwd = false
user.real_info = account.real_info
user.phone = account.phone
@ -99,19 +104,24 @@ function M:PhonePasswordLogin(phone, password, callback)
__Login(Protocol.WEB_PHONE_PASSWORD_LOGIN, _data, callback)
end
function M:IdPasswordLogin2(uid, password, callback)
function M:IdPasswordLogin(uid, password, callback)
local _data = {}
local result, resultInfo = pcall(function(...)
_data.data = RSAHelper.Encrypt(json.encode({
id = tonumber(uid),
password = password,
deviceCode = UnityEngine.SystemInfo.deviceUniqueIdentifier
}))
print("lingmeng IdPasswordLogin", _data.data)
-- print("lingmeng IdPasswordLogin RSAHelper", RSAHelper.Decrypt(_data.data))
end)
if result then
__getCode(Protocol.WEB_ID_PASSWORD_LOGIN_2, _data, callback)
else
ViewUtil.CloseModalWait()
ViewUtil.ErrorMsg(nil, "", "您的个人信息太长,若无法登录请联系客服人员解决")
end
end
function M:IdPasswordLogin(uid, password, callback)
function M:IdPasswordLogin2(uid, password, callback)
local _data = {}
_data["id"] = tonumber(uid)
_data["password"] = password
@ -133,6 +143,7 @@ end
function M:Login(callback)
local user = DataManager.SelfUser
local _data = {}
local result = pcall(function(...)
_data.data = RSAHelper.Encrypt(json.encode({
acc = user.acc,
nick = user.nick_name,
@ -141,21 +152,27 @@ function M:Login(callback)
.head_url,
deviceCode = UnityEngine.SystemInfo.deviceUniqueIdentifier
}))
end)
if result then
__Login(Protocol.WEB_USER_LOGIN_2, _data, callback)
else
ViewUtil.CloseModalWait()
ViewUtil.ErrorMsg(nil, "", "您的个人信息太长,若无法登录请联系客服人员解决")
end
end
function M:QuickLogin2(session_id, callback)
function M:QuickLogin(session_id, callback)
local _data = {}
_data.data = RSAHelper.Encrypt(json.encode({
deviceCode = UnityEngine.SystemInfo.deviceUniqueIdentifier
}))
local _client = ControllerManager.WebClient
_client:setSession(session_id)
-- ControllerManager.GroupClient:setSession(session_id)
__Login(Protocol.WEB_QUICK_LOGIN_2, _data, callback)
end
function M:QuickLogin(session_id, callback)
--快速登入加密
function M:QuickLogin2(session_id, callback)
local _data = {}
_data["deviceCode"] = UnityEngine.SystemInfo.deviceUniqueIdentifier
local _client = ControllerManager.WebClient

View File

@ -51,7 +51,8 @@ Protocol = {
----index----
-- 获取公告
WEB_UPDATE_NOTICE = "index/get_notice",
--找回账号
WEB_BACK_PASSWORD = "acc/set_back_password",

View File

@ -2,6 +2,11 @@ local IDPasswordAlone = {}
local M = IDPasswordAlone
--黑体字提示
local Tips1 = { { "当前账号未设置密码,为了您的账号安全请设置密码", "若您为旧用户或者当前账号不属于你,点击左上角可以找回账号" }, { "请输入正确的账号和密码,若忘记请联系客服人员" } }
--红字提示
local Tips1 = { { "注:初始账号将强制要求设置密码" }, { "注:找回账号功能会删除现有账户,请勿随便使用" } }
function IDPasswordAlone.new(callback)
setmetatable(M, { __index = BaseWindow })
local self = setmetatable({}, { __index = M })
@ -16,12 +21,28 @@ end
function M:init(url)
BaseWindow.init(self, url)
local text_id = self._view:GetChild("tex_phone")
local tex_passwd = self._view:GetChild("tex_passwd")
text_id.text = DataManager.SelfUser.account_id
self._view:GetChild("tex_phone").text = DataManager.SelfUser.account_id
local ctr_retrieve = self._view:GetController('retrieve')
ctr_retrieve.onChanged:Set(function(context)
if ctr_retrieve.selectedIndex == 0 then
text_id.text = DataManager.SelfUser.account_id
tex_passwd.text = ""
else
text_id.text = ""
tex_passwd.text = ""
end
end)
local btn_ok = self._view:GetChild("btn_ok")
btn_ok.onClick:Set(function()
if ctr_retrieve.selectedIndex == 0 then
self:Bind()
else
self:Retrieve()
end
end)
end
@ -56,7 +77,7 @@ function M:Bind()
return
end
_data = {}
local _data = {}
ViewUtil.ShowModalWait(self._root_view, "正在提交...")
local loddyctr = ControllerManager.GetController(LoddyController)
@ -75,4 +96,29 @@ function M:Bind()
end)
end
--找回账号
function M:Retrieve()
local tex_phone = self._view:GetChild("tex_phone")
local text_id = tex_phone.text
local tex_passwd = self._view:GetChild("tex_passwd")
local password = tex_passwd.text
local _data = {}
ViewUtil.ShowModalWait(self._root_view, "正在提交...")
local loddyctr = ControllerManager.GetController(LoddyController)
_data.password = password
_data.id = tonumber(text_id)
loddyctr:RetrievePassword(_data, function(res)
ViewUtil.CloseModalWait()
if res.ReturnCode == 0 then
PlayerPrefs.DeleteKey('session_id')
Application.Quit()
else
ViewUtil.ErrorTip(res.ReturnCode, "找回账号失败,请联系客服人员")
end
end)
end
return M

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="100,20" extention="Button">
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
<displayList>
<loader id="n3_jg0y" name="icon" xy="0,0" size="100,20" fill="scale">
<relation target="" sidePair="width-width,height-height"/>
</loader>
</displayList>
<Button mode="Check"/>
</component>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -1,21 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="974,588">
<controller name="retrieve" pages="0,,1," selected="1"/>
<displayList>
<component id="n0_svin" name="n0" src="st2l7ijp" fileName="component/Win_BaseWindow_H698.xml" pkg="27vd145b" xy="0,0" size="974,588">
<Button icon="ui://2d9xdj6zhz877e2c"/>
<gearDisplay controller="retrieve" pages=""/>
<gearIcon controller="retrieve" pages="1" values="ui://2d9xdj6zjg0y7e2i" default="ui://2d9xdj6zjg0y7e2g"/>
<Button icon="ui://2d9xdj6zjg0y7e2i"/>
</component>
<component id="n1_svin" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="898,-17" visible="false" controller="style,0"/>
<component id="n2_svin" name="btn_ok" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="396,450">
<component id="n2_svin" name="btn_ok" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="359,444" size="256,108">
<Button icon="ui://2d9xdj6zab5pcj3"/>
</component>
<text id="n3_svin" name="n3" xy="228,171" size="164,42" group="n6_svin" font="Microsoft YaHei" fontSize="30" color="#2365bb" align="right" autoSize="none" bold="true" text="账号:"/>
<image id="n4_svin" name="n4" src="ab5p1f" fileName="font/images/btn_keyboard/hall_input_bg.png" pkg="27vd145b" xy="405,164" size="320,57" group="n6_svin"/>
<text id="n5_svin" name="tex_phone" xy="413,164" size="303,57" group="n6_svin" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" text="123456"/>
<group id="n6_svin" name="n6" xy="228,164" size="497,57" advanced="true"/>
<text id="n7_svin" name="n7" xy="255,314" size="133,42" group="n11_svin" font="Microsoft YaHei" fontSize="30" color="#2365bb" align="right" autoSize="none" bold="true" text="密码:"/>
<image id="n8_svin" name="n8" src="ab5p1f" fileName="font/images/btn_keyboard/hall_input_bg.png" pkg="27vd145b" xy="399,303" size="320,59" group="n10_svin"/>
<text id="n9_svin" name="tex_passwd" xy="408,303" size="302,57" group="n10_svin" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" text="" input="true" prompt="请输入密码" maxLength="15" keyboardType="1" password="true"/>
<group id="n10_svin" name="n10" xy="399,303" size="320,59" group="n11_svin"/>
<group id="n11_svin" name="passwd" xy="255,303" size="464,59"/>
<text id="n3_svin" name="n3" xy="138,144" size="164,49" group="n6_svin" font="Microsoft YaHei" fontSize="36" color="#aa3300" align="right" autoSize="none" bold="true" text="账号:"/>
<graph id="n12_jg0y" name="n12" xy="312,135" size="446,68" group="n6_svin" type="rect" lineSize="0" fillColor="#ffead398" corner="12"/>
<text id="n5_svin" name="tex_phone" xy="316,139" size="434,59" group="n6_svin" font="Microsoft YaHei" fontSize="34" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="" input="true" prompt="请输入账号">
<gearLook controller="retrieve" pages="0" values="1,0,0,0" default="1,0,0,1"/>
</text>
<group id="n6_svin" name="n6" xy="138,135" size="620,68" advanced="true"/>
<text id="n7_svin" name="n7" xy="169,236" size="133,49" group="n11_svin" font="Microsoft YaHei" fontSize="36" color="#aa3300" align="right" autoSize="none" bold="true" text="密码:"/>
<graph id="n13_jg0y" name="n13" xy="312,227" size="446,68" group="n10_svin" type="rect" lineSize="0" fillColor="#ffead398" corner="12"/>
<text id="n9_svin" name="tex_passwd" xy="316,231" size="435,61" group="n10_svin" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" text="" input="true" prompt="请输入密码" maxLength="15" keyboardType="1" password="true"/>
<group id="n10_svin" name="n10" xy="312,227" size="446,68" group="n11_svin"/>
<group id="n11_svin" name="passwd" xy="169,227" size="589,68"/>
<text id="n14_jg0y" name="text_tips1" xy="209,331" size="532,34" fontSize="24" text="请输入正确的账号和密码,若忘记请联系客服人员">
<gearText controller="retrieve" pages="0,1" values="当前账号未设置密码,为了您的账号安全请设置密码&#xA;若您为旧用户或者当前账号不属于你,点击左上角可以找回账号|请输入正确的账号和密码,若忘记请联系客服人员"/>
</text>
<text id="n15_jg0y" name="text_tips2" xy="210,378" size="400,26" fontSize="18" color="#ff2727" text="注:找回账号功能会删除现有账户,请勿随便使用">
<relation target="n14_jg0y" sidePair="top-bottom"/>
</text>
<component id="n17_jg0y" name="btn_retrieve" src="jg0y7e2k" fileName="component/user_info/btn_mul.xml" xy="43,73" size="60,78">
<Button checked="true" icon="ui://2d9xdj6zjg0y7e2j" selectedIcon="ui://2d9xdj6zjg0y7e2l" controller="retrieve" page="1"/>
</component>
</displayList>
</component>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="974,588">
<displayList>
<component id="n0_svin" name="n0" src="st2l7ijp" fileName="component/Win_BaseWindow_H698.xml" pkg="27vd145b" xy="0,0" size="974,588">
<Button icon="ui://2d9xdj6zjg0y7e2i"/>
</component>
<component id="n1_svin" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="898,-17" visible="false" controller="style,0"/>
<component id="n2_svin" name="btn_ok" src="ab5pcj5" fileName="component/user_info/btn_ok.xml" xy="359,434" size="256,108">
<Button icon="ui://2d9xdj6zab5pcj3"/>
</component>
<text id="n3_svin" name="n3" xy="138,144" size="164,49" group="n6_svin" font="Microsoft YaHei" fontSize="36" color="#aa3300" align="right" autoSize="none" bold="true" text="账号:"/>
<graph id="n12_jg0y" name="n12" xy="312,135" size="446,68" group="n6_svin" type="rect" lineSize="0" fillColor="#ffead398" corner="12"/>
<text id="n5_svin" name="tex_phone" xy="316,139" size="434,59" group="n6_svin" font="Microsoft YaHei" fontSize="34" color="#ffffff" vAlign="middle" autoSize="none" bold="true" singleLine="true" text="123456" input="true"/>
<group id="n6_svin" name="n6" xy="138,135" size="620,68" advanced="true"/>
<text id="n7_svin" name="n7" xy="169,236" size="133,49" group="n11_svin" font="Microsoft YaHei" fontSize="36" color="#aa3300" align="right" autoSize="none" bold="true" text="密码:"/>
<graph id="n13_jg0y" name="n13" xy="312,227" size="446,68" group="n10_svin" type="rect" lineSize="0" fillColor="#ffead398" corner="12"/>
<text id="n9_svin" name="tex_passwd" xy="316,231" size="435,61" group="n10_svin" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" text="" input="true" prompt="请输入密码" maxLength="15" keyboardType="1" password="true"/>
<group id="n10_svin" name="n10" xy="312,227" size="446,68" group="n11_svin"/>
<group id="n11_svin" name="passwd" xy="169,227" size="589,68"/>
<text id="n14_jg0y" name="n14" xy="209,331" size="556,34" fontSize="24" text="请输入正确的账号和密码,微信将绑定找回后的账号"/>
<text id="n15_jg0y" name="n15" xy="210,378" size="220,26" fontSize="18" color="#ff2727" text="注:忘记原账号请联系客服"/>
</displayList>
</component>

View File

@ -687,6 +687,12 @@
<image id="hz875k" name="luxiang.png" path="/images/new/"/>
<component id="hz877e2e" name="pop_notice(1).xml" path="/component/notice/"/>
<component id="svin7e2f" name="win_id_password_alone.xml" path="/component/user_info/" exported="true"/>
<image id="jg0y7e2g" name="xiugaimiam.png" path="/component/user_info/real/"/>
<component id="jg0y7e2h" name="win_retrieve_alone.xml" path="/component/user_info/" exported="true"/>
<image id="jg0y7e2i" name="zhaohuizhanghao.png" path="/component/user_info/real/"/>
<image id="jg0y7e2j" name="Group 923.png" path="/component/user_info/real/"/>
<component id="jg0y7e2k" name="btn_mul.xml" path="/component/user_info/"/>
<image id="jg0y7e2l" name="Group 924.png" path="/component/user_info/real/"/>
</resources>
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2">
<atlas name="默认" index="0"/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 805 KiB

After

Width:  |  Height:  |  Size: 942 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 876 KiB

After

Width:  |  Height:  |  Size: 875 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 875 KiB

After

Width:  |  Height:  |  Size: 876 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 KiB

After

Width:  |  Height:  |  Size: 874 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 872 KiB

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 878 KiB

After

Width:  |  Height:  |  Size: 880 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 872 KiB

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 872 KiB

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 878 KiB

After

Width:  |  Height:  |  Size: 873 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 876 KiB

After

Width:  |  Height:  |  Size: 877 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 872 KiB

After

Width:  |  Height:  |  Size: 870 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 467 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 KiB

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 874 KiB

After

Width:  |  Height:  |  Size: 878 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 878 KiB

After

Width:  |  Height:  |  Size: 880 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 879 KiB

After

Width:  |  Height:  |  Size: 881 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 874 KiB

After

Width:  |  Height:  |  Size: 873 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 871 KiB

After

Width:  |  Height:  |  Size: 873 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 881 KiB

After

Width:  |  Height:  |  Size: 874 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 876 KiB

After

Width:  |  Height:  |  Size: 878 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 871 KiB

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 871 KiB

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 462 KiB

After

Width:  |  Height:  |  Size: 462 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 876 KiB

After

Width:  |  Height:  |  Size: 875 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 880 KiB

After

Width:  |  Height:  |  Size: 875 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 KiB

After

Width:  |  Height:  |  Size: 874 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 467 KiB

After

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 465 KiB

After

Width:  |  Height:  |  Size: 464 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 476 KiB

After

Width:  |  Height:  |  Size: 474 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 910 KiB

After

Width:  |  Height:  |  Size: 914 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 684 KiB

After

Width:  |  Height:  |  Size: 688 KiB