|
1
|
1
|
package com.xgimi.gimicinema.activity;
|
|
2
|
2
|
|
|
|
3
|
+import android.app.AlertDialog;
|
|
|
4
|
+import android.content.Context;
|
|
|
5
|
+import android.content.DialogInterface;
|
|
|
6
|
+import android.content.Intent;
|
|
|
7
|
+import android.content.res.ColorStateList;
|
|
|
8
|
+import android.graphics.Bitmap;
|
|
3
|
9
|
import android.graphics.Rect;
|
|
|
10
|
+import android.graphics.drawable.BitmapDrawable;
|
|
4
|
11
|
import android.os.Bundle;
|
|
5
|
12
|
import android.support.v7.app.AppCompatActivity;
|
|
6
|
13
|
import android.support.v7.widget.GridLayoutManager;
|
|
7
|
14
|
import android.support.v7.widget.RecyclerView;
|
|
|
15
|
+import android.text.TextUtils;
|
|
8
|
16
|
import android.util.Log;
|
|
|
17
|
+import android.view.LayoutInflater;
|
|
9
|
18
|
import android.view.View;
|
|
|
19
|
+import android.view.ViewGroup;
|
|
|
20
|
+import android.widget.AdapterView;
|
|
|
21
|
+import android.widget.BaseAdapter;
|
|
|
22
|
+import android.widget.GridView;
|
|
|
23
|
+import android.widget.LinearLayout;
|
|
|
24
|
+import android.widget.PopupWindow;
|
|
|
25
|
+import android.widget.TextView;
|
|
10
|
26
|
import android.widget.Toast;
|
|
11
|
27
|
import com.adroplat.fist_switch.jni.Device;
|
|
12
|
28
|
import com.adroplat.fist_switch.jni.FistJni;
|
|
13
|
29
|
import com.adroplat.fist_switch.jni.SubDevice;
|
|
14
|
30
|
import com.adroplat.fist_switch.utils.protocol.one.FistProtocol;
|
|
|
31
|
+import com.gimi.common.cinema.utils.Utils;
|
|
15
|
32
|
import com.google.gson.Gson;
|
|
|
33
|
+import com.qnbar.smc.model.Group;
|
|
|
34
|
+import com.qnbar.smc.model.Groups;
|
|
16
|
35
|
import com.qnbar.switchcontrol.model.SwitchMessageEvent;
|
|
17
|
36
|
import com.xgimi.gimicinema.R;
|
|
18
|
37
|
import com.xgimi.gimicinema.adapter.DeviceListAdapter;
|
|
...
|
...
|
@@ -30,8 +49,12 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
30
|
49
|
protected void onCreate(Bundle savedInstanceState) {
|
|
31
|
50
|
super.onCreate(savedInstanceState);
|
|
32
|
51
|
setContentView(R.layout.activity_switch_control);
|
|
|
52
|
+ mContext = this;
|
|
|
53
|
+
|
|
33
|
54
|
EventBus.getDefault().register(this);
|
|
34
|
|
- //TODO save DeviceNum,SubDeviceNum
|
|
|
55
|
+ deviceStrKey = Utils.getString(mContext, "hub-key-str");
|
|
|
56
|
+ // save DeviceNum,SubDeviceNum
|
|
|
57
|
+ // 显示菜单指定所控制的HUB 及开关并保存
|
|
35
|
58
|
initList();
|
|
36
|
59
|
FistJni fistJni = FistJni.getInstance();
|
|
37
|
60
|
fistJni.startSdk();
|
|
...
|
...
|
@@ -79,9 +102,18 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
79
|
102
|
|
|
80
|
103
|
@Override
|
|
81
|
104
|
public void onMenuClick(View v, int position) {
|
|
82
|
|
- deviceStrKey = FistJni.getHubs().get(position).getDeviceStrKey();
|
|
83
|
|
- toast("重设控制口令");
|
|
84
|
|
- Log.d("menu", "reset control hub:" + deviceStrKey);
|
|
|
105
|
+ testDataHub();
|
|
|
106
|
+ initPopupWindow();
|
|
|
107
|
+ if (popupWindow != null) {
|
|
|
108
|
+ if (!popupWindow.isShowing()) {
|
|
|
109
|
+ popupWindow.showAsDropDown(v);
|
|
|
110
|
+ groupListAdapter.notifyDataSetChanged();
|
|
|
111
|
+ }
|
|
|
112
|
+ }
|
|
|
113
|
+ //控制当前主机,保存控制密码
|
|
|
114
|
+// deviceStrKey = FistJni.getHubs().get(position).getDeviceStrKey();
|
|
|
115
|
+// toast("重设控制口令");
|
|
|
116
|
+// Log.d("menu", "reset control hub:" + deviceStrKey);
|
|
85
|
117
|
}
|
|
86
|
118
|
});
|
|
87
|
119
|
hubRv.setAdapter(hubAdapter);
|
|
...
|
...
|
@@ -125,23 +157,14 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
125
|
157
|
|
|
126
|
158
|
@Override
|
|
127
|
159
|
public void onMenuClick(View v, int position) {
|
|
128
|
|
- Device device = null;
|
|
129
|
|
- for (Device deviceCur : FistJni.getHubs()) {
|
|
130
|
|
- if (deviceCur.getDeviceStrKey().equals(deviceStrKey)) {
|
|
131
|
|
- device = deviceCur;
|
|
|
160
|
+ testDataLights();
|
|
|
161
|
+ initPopupWindow();
|
|
|
162
|
+ if (popupWindow != null) {
|
|
|
163
|
+ if (!popupWindow.isShowing()) {
|
|
|
164
|
+ popupWindow.showAsDropDown(v);
|
|
|
165
|
+ groupListAdapter.notifyDataSetChanged();
|
|
132
|
166
|
}
|
|
133
|
167
|
}
|
|
134
|
|
- if (device == null) {
|
|
135
|
|
- toast("当前控制口令出错,请重新选择控制主机按menu设置");
|
|
136
|
|
- return;
|
|
137
|
|
- }
|
|
138
|
|
-
|
|
139
|
|
- ArrayList<SubDevice> subDevices = new ArrayList<>();
|
|
140
|
|
- subDevices.add(FistJni.getSubDevices().get(position));
|
|
141
|
|
- device.setSubDevices(subDevices);
|
|
142
|
|
- FistJni.getInstance().delSub(new Gson().toJson(device));
|
|
143
|
|
- FistJni.getSubDevices().clear();
|
|
144
|
|
- switchAdapter.notifyDataSetChanged();
|
|
145
|
168
|
}
|
|
146
|
169
|
});
|
|
147
|
170
|
switchRv.setAdapter(switchAdapter);
|
|
...
|
...
|
@@ -167,6 +190,43 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
167
|
190
|
fistJni.modifyPwd(new Gson().toJson(device), "123456");
|
|
168
|
191
|
}
|
|
169
|
192
|
|
|
|
193
|
+ private void showAlert() {
|
|
|
194
|
+ String promte = "配置信息不全请重新配置";
|
|
|
195
|
+ final String ssid = Utils.getString(this, "wifi-ssid");
|
|
|
196
|
+ final String pwd = Utils.getString(this, "wifi-ssid-pwd");
|
|
|
197
|
+ if (!TextUtils.isEmpty(ssid) && !TextUtils.isEmpty(pwd)) {
|
|
|
198
|
+ promte = "当前配置信息为:\n\nssid:" + ssid + "\n\npwd:" + pwd;
|
|
|
199
|
+ }
|
|
|
200
|
+
|
|
|
201
|
+ new AlertDialog.Builder(this)
|
|
|
202
|
+ .setTitle("确认")
|
|
|
203
|
+ .setMessage(promte)
|
|
|
204
|
+ .setPositiveButton("是", new DialogInterface.OnClickListener() {
|
|
|
205
|
+ @Override
|
|
|
206
|
+ public void onClick(DialogInterface dialog, int which) {
|
|
|
207
|
+ Device device = null;
|
|
|
208
|
+ for (Device deviceCur : FistJni.getHubs()) {
|
|
|
209
|
+ if (deviceCur.getDeviceStrKey().equals(deviceStrKey)) {
|
|
|
210
|
+ device = deviceCur;
|
|
|
211
|
+ }
|
|
|
212
|
+ }
|
|
|
213
|
+ if (device == null) {
|
|
|
214
|
+ toast("没有选中控制主机,请重新选择控制主机按menu设置");
|
|
|
215
|
+ return;
|
|
|
216
|
+ }
|
|
|
217
|
+ FistJni fistJni = FistJni.getInstance();
|
|
|
218
|
+ fistJni.getlinkRouter(new Gson().toJson(device), ssid, pwd);
|
|
|
219
|
+ }
|
|
|
220
|
+ })
|
|
|
221
|
+ .setNegativeButton("重新配置", new DialogInterface.OnClickListener() {
|
|
|
222
|
+ @Override
|
|
|
223
|
+ public void onClick(DialogInterface dialog, int which) {
|
|
|
224
|
+ startActivity(new Intent(SwitchControlActivity.this, ConfigWifiActivity.class));
|
|
|
225
|
+ }
|
|
|
226
|
+ })
|
|
|
227
|
+ .show();
|
|
|
228
|
+ }
|
|
|
229
|
+
|
|
170
|
230
|
public void getLinkStatus(View view) {
|
|
171
|
231
|
FistJni fistJni = FistJni.getInstance();
|
|
172
|
232
|
Device device = FistJni.getHubs().get(0);
|
|
...
|
...
|
@@ -174,10 +234,11 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
174
|
234
|
}
|
|
175
|
235
|
|
|
176
|
236
|
public void setLinkMsg(View view) {
|
|
177
|
|
- FistJni fistJni = FistJni.getInstance();
|
|
178
|
|
- Device device = FistJni.getHubs().get(0);
|
|
179
|
|
-// fistJni.getlinkRouter(new Gson().toJson(device),"Xiaomi123","88888888");
|
|
180
|
|
- fistJni.getlinkRouter(new Gson().toJson(device), "LEMOMOFFICE2.4G", "88888888");
|
|
|
237
|
+ showAlert();
|
|
|
238
|
+// FistJni fistJni = FistJni.getInstance();
|
|
|
239
|
+// Device device = FistJni.getHubs().get(0);
|
|
|
240
|
+//// fistJni.getlinkRouter(new Gson().toJson(device),"Xiaomi123","88888888");
|
|
|
241
|
+// fistJni.getlinkRouter(new Gson().toJson(device), "LEMOMOFFICE2.4G", "88888888");
|
|
181
|
242
|
}
|
|
182
|
243
|
|
|
183
|
244
|
public void scanHubs(View view) {
|
|
...
|
...
|
@@ -206,6 +267,14 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
206
|
267
|
case FistJni.DEVICE_HUBS_ONLINE_NOTIFY:
|
|
207
|
268
|
case FistProtocol.CommondType.CMD_TYPE_SEARCH_RESPONSE:
|
|
208
|
269
|
Log.d("qnbar_switch", switchMessageEvent.getMessage());
|
|
|
270
|
+ for (Device device : FistJni.getHubs()) {
|
|
|
271
|
+ if ("000000".equals(device.getDeviceStrKey())) {
|
|
|
272
|
+ FistJni.getHubs().clear();
|
|
|
273
|
+ FistJni fistJni = FistJni.getInstance();
|
|
|
274
|
+ fistJni.modifyPwd(new Gson().toJson(device), "123456");
|
|
|
275
|
+ return;
|
|
|
276
|
+ }
|
|
|
277
|
+ }
|
|
209
|
278
|
hubAdapter.notifyDataSetChanged();
|
|
210
|
279
|
break;
|
|
211
|
280
|
case FistJni.DEVICE_SWITCH_ONLINE_NOTIFY:
|
|
...
|
...
|
@@ -222,6 +291,11 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
222
|
291
|
Log.d("qnbar_switch", switchMessageEvent.getMessage());
|
|
223
|
292
|
toast("子设备有变动");
|
|
224
|
293
|
break;
|
|
|
294
|
+ case FistProtocol.CommondType.CMD_MODIFY_CTRL_PWD_RESPONSE:
|
|
|
295
|
+ searchLocalDevice();
|
|
|
296
|
+ Log.d("qnbar_switch", switchMessageEvent.getMessage());
|
|
|
297
|
+ toast("控制密码已重置");
|
|
|
298
|
+ break;
|
|
225
|
299
|
default:
|
|
226
|
300
|
Log.d("qnbar_switch", "default:" + switchMessageEvent.getMessage() + "," + switchMessageEvent.getEventId());
|
|
227
|
301
|
break;
|
|
...
|
...
|
@@ -229,7 +303,7 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
229
|
303
|
}
|
|
230
|
304
|
|
|
231
|
305
|
private void toast(String msg) {
|
|
232
|
|
- Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
|
|
|
306
|
+ Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
|
|
233
|
307
|
}
|
|
234
|
308
|
|
|
235
|
309
|
@Override
|
|
...
|
...
|
@@ -237,4 +311,202 @@ public class SwitchControlActivity extends AppCompatActivity { |
|
237
|
311
|
super.onDestroy();
|
|
238
|
312
|
EventBus.getDefault().unregister(this);
|
|
239
|
313
|
}
|
|
|
314
|
+
|
|
|
315
|
+
|
|
|
316
|
+ private PopupWindow popupWindow;
|
|
|
317
|
+ private Context mContext;
|
|
|
318
|
+ private GroupListAdapter groupListAdapter;
|
|
|
319
|
+ private LayoutInflater inflate;
|
|
|
320
|
+ private boolean isHubs;
|
|
|
321
|
+
|
|
|
322
|
+ private void initPopupWindow() {
|
|
|
323
|
+// testDataHub();
|
|
|
324
|
+ final View popupView = getLayoutInflater().inflate(R.layout.item_pop, null);
|
|
|
325
|
+
|
|
|
326
|
+ popupWindow = new PopupWindow(popupView, LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT, true);
|
|
|
327
|
+ popupWindow.setFocusable(true);
|
|
|
328
|
+ popupWindow.setOutsideTouchable(true);
|
|
|
329
|
+ popupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));
|
|
|
330
|
+ inflate = getLayoutInflater();
|
|
|
331
|
+ GridView listView = (GridView) popupView.findViewById(R.id.list_groups);
|
|
|
332
|
+ TextView title = (TextView) popupView.findViewById(R.id.txt_header_title);
|
|
|
333
|
+ if (isHubs) {
|
|
|
334
|
+ title.setText("设置HUB");
|
|
|
335
|
+ } else {
|
|
|
336
|
+ title.setText("设置开关");
|
|
|
337
|
+ }
|
|
|
338
|
+ listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
339
|
+ @Override
|
|
|
340
|
+ public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
|
|
341
|
+ if (isHubs) {
|
|
|
342
|
+ switch (position) {
|
|
|
343
|
+ case 0:
|
|
|
344
|
+ //get current click
|
|
|
345
|
+ //控制当前主机,保存控制密码
|
|
|
346
|
+ deviceStrKey = FistJni.getHubs().get((Integer) hubRv.getFocusedChild().getTag()).getDeviceStrKey();
|
|
|
347
|
+ String deviceNumStr = FistJni.getHubs().get(position).getStringDeviceNum();
|
|
|
348
|
+ Utils.saveString(mContext, "hub-num-str", deviceNumStr);
|
|
|
349
|
+ Utils.saveString(mContext, "hub-key-str", deviceStrKey);
|
|
|
350
|
+// toast("重设控制口令");
|
|
|
351
|
+ toast("系统记录当前控制主机设备号,重设控制口令");
|
|
|
352
|
+ Log.d("menu", "reset control hub:" + deviceStrKey);
|
|
|
353
|
+ break;
|
|
|
354
|
+ }
|
|
|
355
|
+ } else {
|
|
|
356
|
+ switch (position) {
|
|
|
357
|
+ case 0:
|
|
|
358
|
+ long subDeviceNum = FistJni.getSubDevices().get((Integer) switchRv.getFocusedChild().getTag()).getSubDeviceNum();
|
|
|
359
|
+ Utils.saveLong(mContext, "sub-device-str", subDeviceNum);
|
|
|
360
|
+ toast("系统记录当前开关设备号,在特定时间会进行开关");
|
|
|
361
|
+ break;
|
|
|
362
|
+ case 1:
|
|
|
363
|
+ Device device = null;
|
|
|
364
|
+ for (Device deviceCur : FistJni.getHubs()) {
|
|
|
365
|
+ if (deviceCur.getDeviceStrKey().equals(deviceStrKey)) {
|
|
|
366
|
+ device = deviceCur;
|
|
|
367
|
+ }
|
|
|
368
|
+ }
|
|
|
369
|
+ if (device == null) {
|
|
|
370
|
+ toast("些开关不属于当前控制主机,请重新选择控制主机按menu设置");
|
|
|
371
|
+ return;
|
|
|
372
|
+ }
|
|
|
373
|
+ ArrayList<SubDevice> subDevices = new ArrayList<>();
|
|
|
374
|
+ subDevices.add(FistJni.getSubDevices().get((Integer) switchRv.getFocusedChild().getTag()));
|
|
|
375
|
+ device.setSubDevices(subDevices);
|
|
|
376
|
+ FistJni.getInstance().delSub(new Gson().toJson(device));
|
|
|
377
|
+ FistJni.getSubDevices().clear();
|
|
|
378
|
+ switchAdapter.notifyDataSetChanged();
|
|
|
379
|
+
|
|
|
380
|
+ break;
|
|
|
381
|
+ }
|
|
|
382
|
+ if (popupWindow != null && popupWindow.isShowing()) {
|
|
|
383
|
+ popupWindow.dismiss();
|
|
|
384
|
+ }
|
|
|
385
|
+ }
|
|
|
386
|
+// Group group = groupListAdapter.getItem(position);
|
|
|
387
|
+// allocDeviceGroup(group);
|
|
|
388
|
+ }
|
|
|
389
|
+ });
|
|
|
390
|
+ groupListAdapter = new GroupListAdapter();
|
|
|
391
|
+ listView.setAdapter(groupListAdapter);
|
|
|
392
|
+ }
|
|
|
393
|
+
|
|
|
394
|
+ class GroupListAdapter extends BaseAdapter implements
|
|
|
395
|
+ View.OnClickListener, View.OnLongClickListener {
|
|
|
396
|
+
|
|
|
397
|
+ public GroupListAdapter() {
|
|
|
398
|
+
|
|
|
399
|
+ }
|
|
|
400
|
+
|
|
|
401
|
+ @Override
|
|
|
402
|
+ public boolean isEnabled(int position) {
|
|
|
403
|
+ return false;
|
|
|
404
|
+ }
|
|
|
405
|
+
|
|
|
406
|
+ @Override
|
|
|
407
|
+ public int getCount() {
|
|
|
408
|
+ return Groups.getInstance().size();
|
|
|
409
|
+ }
|
|
|
410
|
+
|
|
|
411
|
+ @Override
|
|
|
412
|
+ public Group getItem(int position) {
|
|
|
413
|
+ return Groups.getInstance().get(position);
|
|
|
414
|
+ }
|
|
|
415
|
+
|
|
|
416
|
+ @Override
|
|
|
417
|
+ public long getItemId(int position) {
|
|
|
418
|
+ return 0;
|
|
|
419
|
+ }
|
|
|
420
|
+
|
|
|
421
|
+ @Override
|
|
|
422
|
+ public View getView(int position, View convertView, ViewGroup parent) {
|
|
|
423
|
+ GroupItemHolder holder;
|
|
|
424
|
+ if (convertView == null) {
|
|
|
425
|
+ convertView = inflate.inflate(R.layout.group_item, null);
|
|
|
426
|
+ TextView txtName = (TextView) convertView
|
|
|
427
|
+ .findViewById(R.id.txt_name);
|
|
|
428
|
+ txtName.setOnLongClickListener(this);
|
|
|
429
|
+ holder = new GroupItemHolder();
|
|
|
430
|
+ holder.txtName = txtName;
|
|
|
431
|
+ convertView.setTag(holder);
|
|
|
432
|
+ } else {
|
|
|
433
|
+ holder = (GroupItemHolder) convertView.getTag();
|
|
|
434
|
+ }
|
|
|
435
|
+
|
|
|
436
|
+ Group group = getItem(position);
|
|
|
437
|
+ if (group != null) {
|
|
|
438
|
+ if (group.textColor == null)
|
|
|
439
|
+ group.textColor = mContext.getResources()
|
|
|
440
|
+ .getColorStateList(R.color.black);
|
|
|
441
|
+ holder.txtName.setText(group.name);
|
|
|
442
|
+ holder.txtName.setTag(group.meshAddress);
|
|
|
443
|
+
|
|
|
444
|
+ if (group.checked) {
|
|
|
445
|
+ ColorStateList color = mContext.getResources()
|
|
|
446
|
+ .getColorStateList(R.color.theme_positive_color);
|
|
|
447
|
+ holder.txtName.setTextColor(color);
|
|
|
448
|
+ } else {
|
|
|
449
|
+ ColorStateList color = mContext.getResources()
|
|
|
450
|
+ .getColorStateList(R.color.black);
|
|
|
451
|
+ holder.txtName.setTextColor(color);
|
|
|
452
|
+ }
|
|
|
453
|
+ }
|
|
|
454
|
+ return convertView;
|
|
|
455
|
+ }
|
|
|
456
|
+
|
|
|
457
|
+ @Override
|
|
|
458
|
+ public void onClick(View view) {
|
|
|
459
|
+ }
|
|
|
460
|
+
|
|
|
461
|
+ @Override
|
|
|
462
|
+ public boolean onLongClick(View v) {
|
|
|
463
|
+ return false;
|
|
|
464
|
+ }
|
|
|
465
|
+
|
|
|
466
|
+ public Group get(int groupAddress) {
|
|
|
467
|
+ return Groups.getInstance().getByMeshAddress(groupAddress);
|
|
|
468
|
+ }
|
|
|
469
|
+ }
|
|
|
470
|
+
|
|
|
471
|
+ static class GroupItemHolder {
|
|
|
472
|
+ public TextView txtName;
|
|
|
473
|
+ }
|
|
|
474
|
+
|
|
|
475
|
+ private void testDataHub() {
|
|
|
476
|
+ isHubs = true;
|
|
|
477
|
+
|
|
|
478
|
+ Groups.getInstance().clear();
|
|
|
479
|
+
|
|
|
480
|
+ Group living = new Group();
|
|
|
481
|
+ living.name = "控制当前主机";
|
|
|
482
|
+ living.meshAddress = 0x8001;
|
|
|
483
|
+ living.brightness = 100;
|
|
|
484
|
+ living.temperature = 100;
|
|
|
485
|
+ living.color = 0xFFFFFF;
|
|
|
486
|
+
|
|
|
487
|
+ Groups.getInstance().add(living);
|
|
|
488
|
+ }
|
|
|
489
|
+
|
|
|
490
|
+ private void testDataLights() {
|
|
|
491
|
+ isHubs = false;
|
|
|
492
|
+ Groups.getInstance().clear();
|
|
|
493
|
+
|
|
|
494
|
+ Group living = new Group();
|
|
|
495
|
+ living.name = "控制当前开关";
|
|
|
496
|
+ living.meshAddress = 0x8001;
|
|
|
497
|
+ living.brightness = 100;
|
|
|
498
|
+ living.temperature = 100;
|
|
|
499
|
+ living.color = 0xFFFFFF;
|
|
|
500
|
+
|
|
|
501
|
+ Group family = new Group();
|
|
|
502
|
+ family.name = "移除此开关";
|
|
|
503
|
+ family.meshAddress = 0x8002;
|
|
|
504
|
+ family.brightness = 100;
|
|
|
505
|
+ family.temperature = 100;
|
|
|
506
|
+ family.color = 0xFFFFFF;
|
|
|
507
|
+
|
|
|
508
|
+ Groups.getInstance().add(living);
|
|
|
509
|
+ Groups.getInstance().add(family);
|
|
|
510
|
+ }
|
|
|
511
|
+
|
|
240
|
512
|
} |
...
|
...
|
|