ode">
try {
Bimp.tempSelectBitmap.add(Integer.parseInt(id), mImageItem);
} catch (Exception e) {
e.printStackTrace();
}
adapter.update();
int index = msg.arg1;
ImageView iv = takeImageViewList.get(index);
iv.setImageBitmap(selectBitmap[index].getBitmap());
iv.setScaleType(ImageView.ScaleType.CENTER_CROP);
ConstraintLayout.LayoutParams lp = (ConstraintLayout.LayoutParams) iv.getLayoutParams();
lp.width = DensityUtil.dip2px(PrivateZhuangInfoActivity.this, 108);
lp.height = DensityUtil.dip2px(PrivateZhuangInfoActivity.this, 70);
iv.setLayoutParams(lp);
takeImageCameraList.get(index).setVisibility(View.GONE);
break;
case 2:
Toast.makeText(PrivateZhuangInfoActivity.this, "提交信息成功,感谢您的分享", Toast.LENGTH_SHORT).show();
@ -309,14 +323,10 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
pop.setContentView(view);
final RelativeLayout parent = (RelativeLayout) view.findViewById(R.id.parent);
Button bt1 = (Button) view
.findViewById(R.id.item_popupwindows_camera);
Button bt2 = (Button) view
.findViewById(R.id.item_popupwindows_Photo);
Button bt3 = (Button) view
.findViewById(R.id.item_popupwindows_cancel);
Button bt1 = (Button) view.findViewById(R.id.item_popupwindows_camera);
Button bt2 = (Button) view.findViewById(R.id.item_popupwindows_Photo);
Button bt3 = (Button) view.findViewById(R.id.item_popupwindows_cancel);
parent.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
@ -352,27 +362,28 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
}
});
noScrollgridview = (GridView) findViewById(R.id.noScrollgridview);
noScrollgridview.setSelector(new ColorDrawable(Color.TRANSPARENT));
adapter = new GridAdapter(this);
adapter.update();
noScrollgridview.setAdapter(adapter);
take_image_0 = findViewById(R.id.take_image_0);
take_image_1 = findViewById(R.id.take_image_1);
take_image_2 = findViewById(R.id.take_image_2);
noScrollgridview.setOnItemClickListener(new OnItemClickListener() {
take_image_0.setOnClickListener(this);
take_image_1.setOnClickListener(this);
take_image_2.setOnClickListener(this);
ImageView take_image_view_0 = findViewById(R.id.take_image_view_0);
ImageView take_image_view_1 = findViewById(R.id.take_image_view_1);
ImageView take_image_view_2 = findViewById(R.id.take_image_view_2);
takeImageViewList.add(take_image_view_0);
takeImageViewList.add(take_image_view_1);
takeImageViewList.add(take_image_view_2);
ImageView take_image_camera_0 = findViewById(R.id.take_image_camera_0);
ImageView take_image_camera_1 = findViewById(R.id.take_image_camera_1);
ImageView take_image_camera_2 = findViewById(R.id.take_image_camera_2);
takeImageCameraList.add(take_image_camera_0);
takeImageCameraList.add(take_image_camera_1);
takeImageCameraList.add(take_image_camera_2);
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
if (arg2 == Bimp.tempSelectBitmap.size()) {
permissionTask();
} else {
Intent intent = new Intent(PrivateZhuangInfoActivity.this,
GalleryPrivateActivity.class);
intent.putExtra("position", "1");
intent.putExtra("ID", arg2);
startActivity(intent);
}
}
});
}
/**
@ -424,17 +435,18 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
public void subscribe(ObservableEmitter<String> subscriber) {
try {
List<Uri> uriList = Matisse.obtainResult(data);
for (Uri uri: uriList) {
Bitmap bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(uri));
File file = FileUtils.from(PrivateZhuangInfoActivity.this, uri);
bitmap = FileUtils.rotateIfRequired(file, bitmap);
bitmap = imageZoom(bitmap);
ImageItem takePhoto = new ImageItem();
takePhoto.setBitmap(bitmap);
Bimp.tempSelectBitmap.add(takePhoto);
subscriber.onNext("");
}
Uri uri = uriList.get(0);
Bitmap bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(uri));
File file = FileUtils.from(PrivateZhuangInfoActivity.this, uri);
bitmap = FileUtils.rotateIfRequired(file, bitmap);
bitmap = imageZoom(bitmap);
ImageItem takePhoto = new ImageItem();
takePhoto.setBitmap(bitmap);
selectBitmap[selectIndex] = takePhoto;
subscriber.onNext("");
subscriber.onComplete();
} catch (Exception e) {
e.printStackTrace();
@ -448,7 +460,10 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
@Override
public void onComplete() {
insertDialog.dismiss();
adapter.update();
Message msg = new Message();
msg.arg1 = selectIndex;
msg.what = 1;
handler.sendMessage(msg);
}
@Override
@ -585,32 +600,40 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
rb_xia.setBackgroundResource(R.drawable.icon_xiaselected1105);
}
park = park_location;
new Thread(new Runnable() {
@Override
public void run() {
List<Pic> listPic = JsonUtils.parseToObjectList(pic, Pic.class);
Log.e("pic===size", listPic.size() + "");
for (int i = 0; i < listPic.size(); i++) {
try {
bitmap = Bimp.revitionImageSize(MainApplication.url + "/zhannew/uploadfile/" + listPic.get(i).getUrl(), 300);
if (bitmap != null) {
Message mes = new Message();
mes.obj = bitmap;
Log.e("bitmap===", bitmap + "");
mes.what = 1;
Bundle bundle = new Bundle();
bundle.putString("id", String.valueOf(i));
mes.setData(bundle);
handler.sendMessage(mes);
List<Pic> listPic = JsonUtils.parseToObjectList(pic, Pic.class);
for (int i = 0; i < listPic.size(); i++) {
String url = MainApplication.url + "/zhannew/uploadfile/" + listPic.get(i).getUrl();
int finalI = i;
Glide.with(this).load(url).listener(new RequestListener<Drawable>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
return false;
}
@Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
takeImageCameraList.get(finalI).setVisibility(View.GONE);
ImageView iv = takeImageViewList.get(finalI);
iv.setScaleType(ImageView.ScaleType.CENTER_CROP);
ConstraintLayout.LayoutParams lp = (ConstraintLayout.LayoutParams) iv.getLayoutParams();
lp.width = DensityUtil.dip2px(PrivateZhuangInfoActivity.this, 108);
lp.height = DensityUtil.dip2px(PrivateZhuangInfoActivity.this, 70);
iv.setLayoutParams(lp);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
BitmapDrawable drawable = (BitmapDrawable) iv.getDrawable();
Bitmap bitmap = drawable.getBitmap();
ImageItem takePhoto = new ImageItem();
takePhoto.setBitmap(bitmap);
selectBitmap[finalI] = takePhoto;
}
} catch (IOException e) {
e.printStackTrace();
}
}, 500);// 0.5秒后,执行
return false;
}
}
}).start();
}).into(takeImageViewList.get(i));
}
}
}
@ -642,6 +665,39 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.take_image_0:
selectIndex = 0;
if (selectBitmap[0] == null) {
permissionTask();
} else {
Intent intent = new Intent(PrivateZhuangInfoActivity.this, ShareTwoPictureActivity.class);
intent.putExtra("selectIndex", selectIndex);
intent.putExtra("from", "private_zhuang_info");
startActivity(intent);
}
break;
case R.id.take_image_1:
selectIndex = 1;
if (selectBitmap[1] == null) {
permissionTask();
} else {
Intent intent = new Intent(PrivateZhuangInfoActivity.this, ShareTwoPictureActivity.class);
intent.putExtra("selectIndex", selectIndex);
intent.putExtra("from", "private_zhuang_info");
startActivity(intent);
}
break;
case R.id.take_image_2:
selectIndex = 2;
if (selectBitmap[2] == null) {
permissionTask();
} else {
Intent intent = new Intent(PrivateZhuangInfoActivity.this, ShareTwoPictureActivity.class);
intent.putExtra("selectIndex", selectIndex);
intent.putExtra("from", "private_zhuang_info");
startActivity(intent);
}
break;
case R.id.ll_address:
Intent intent = new Intent(PrivateZhuangInfoActivity.this, PrivateZhuangMapActivity.class);
if (tag.equals("edit")) {
@ -730,7 +786,8 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
break;
case R.id.share_next:
if (et_share_address.getText().toString().equals("")) {
if (!checkPictureOk()) {
} else if (et_share_address.getText().toString().equals("")) {
Toast.makeText(this, "请选择充电站地址", Toast.LENGTH_SHORT).show();
} else if (zhanName.getText().toString().equals("")) {
Toast.makeText(this, "请填写名称", Toast.LENGTH_SHORT).show();
@ -748,8 +805,6 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
Toast.makeText(this, "请填写服务费", Toast.LENGTH_SHORT).show();
} else if (costWay.getText().toString().equals("")) {
Toast.makeText(this, "请选择支付方式", Toast.LENGTH_SHORT).show();
} else if (Bimp.tempSelectBitmap.size() == 0) {
Toast.makeText(this, "请上传图片", Toast.LENGTH_SHORT).show();
} else {
if (fastNum.getText().toString().equals("") && !slowNum.getText().toString().equals("")) {
fastNum.setText("0");
@ -813,6 +868,27 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
}
}
private boolean checkPictureOk() {
if (selectBitmap[0] == null) {
Toast.makeText(this, "请上传桩图片", Toast.LENGTH_SHORT).show();
return false;
}
if (selectBitmap[1] == null) {
Toast.makeText(this, "请上传车位图片", Toast.LENGTH_SHORT).show();
return false;
}
if (selectBitmap[2] == null) {
Toast.makeText(this, "请上桩全景图", Toast.LENGTH_SHORT).show();
return false;
}
return true;
}
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
@ -914,19 +990,18 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
String token = String.valueOf(updatetime);
Log.i("token---", token);
for (int i = 0; i < Bimp.tempSelectBitmap.size(); i++) {
try {
bm = imageZoom(Bimp.tempSelectBitmap.get(i).getBitmap());
file = bitmapToBase64(bm);
par.put("file" + (i + 1), file);
Log.i("file--------" + (i + 1), file);
par.put("filename" + (i + 1), "androidapp.jpg");
} catch (Exception e) {
e.printStackTrace();
for (int i = 0; i < selectBitmap.length; i++) {
if (selectBitmap[i] != null) {
try {
bm = imageZoom(selectBitmap[i].getBitmap());
file = bitmapToBase64(bm);
par.put("file" + (i + 1), file);
par.put("filename" + (i + 1), "androidapp.jpg");
} catch (Exception e) {
e.printStackTrace();
}
}
}
// String fast = fastNum
par.put("zhan_name", zhanName.getText().toString());
par.put("zhan_address", et_share_address.getText().toString());
@ -936,8 +1011,6 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
par.put("poi_jing", jing);
par.put("poi_wei", wei);
// Log.e("poi_jing",jing);
// Log.e("poi_wei",wei);
par.put("suit_car", suit_car2);
par.put("charge_cost", chargeCost.getText().toString());
par.put("charge_cost_way", costWay.getText().toString());
@ -957,11 +1030,7 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
}
try {
String u = UploadUtil.post(
MainApplication.url + "/zhannew/basic/web/index.php/applist/createpile",
par, null);
System.err.println(u);
// submit(u);
String u = UploadUtil.post(MainApplication.url + "/zhannew/basic/web/index.php/applist/createpile", par, null);
Message msg = new Message();
msg.obj = u;
msg.what = 2;
@ -1004,113 +1073,6 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
);
}
@SuppressLint("HandlerLeak")
public class GridAdapter extends BaseAdapter {
private LayoutInflater inflater;
private int selectedPosition = -1;
private boolean shape;
public boolean isShape() {
return shape;
}
public void setShape(boolean shape) {
this.shape = shape;
}
public GridAdapter(Context context) {
inflater = LayoutInflater.from(context);
}
public void update() {
loading();
}
public int getCount() {
if (Bimp.tempSelectBitmap.size() == 3) {
return 3;
}
return (Bimp.tempSelectBitmap.size() + 1);
}
public Object getItem(int arg0) {
return null;
}
public long getItemId(int arg0) {
return 0;
}
public void setSelectedPosition(int position) {
selectedPosition = position;
}
public int getSelectedPosition() {
return selectedPosition;
}
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder = null;
if (convertView == null) {
convertView = inflater.inflate(R.layout.item_published_grida,
parent, false);
holder = new ViewHolder();
holder.image = (ImageView) convertView
.findViewById(R.id.item_grida_image);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
if (position == Bimp.tempSelectBitmap.size()) {
holder.image.setImageBitmap(BitmapFactory.decodeResource(
getResources(), R.drawable.icon_defaultadd1105));
if (position == 3) {
holder.image.setVisibility(View.GONE);
}
} else {
holder.image.setImageBitmap(Bimp.tempSelectBitmap.get(position).getBitmap());
}
return convertView;
}
public class ViewHolder {
public ImageView image;
}
Handler handler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case 1:
adapter.notifyDataSetChanged();
break;
}
super.handleMessage(msg);
}
};
public void loading() {
new Thread(new Runnable() {
public void run() {
while (true) {
if (Bimp.max == Bimp.tempSelectBitmap.size()) {
Message message = new Message();
message.what = 1;
handler.sendMessage(message);
break;
} else {
Bimp.max += 1;
Message message = new Message();
message.what = 1;
handler.sendMessage(message);
}
}
}
}).start();
}
}
public String getString(String s) {
String path = null;
if (s == null)
@ -1122,7 +1084,6 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
}
protected void onRestart() {
adapter.update();
super.onRestart();
}
@ -1130,7 +1091,7 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
public void photo() {
if (hasSdcard()) {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);//���������
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(tempFile));
startActivityForResult(intent, PHOTO_REQUEST_CAMERA);
}
@ -1303,6 +1264,24 @@ public class PrivateZhuangInfoActivity extends Activity implements View.OnClickL
@Override
protected void onResume() {
super.onResume();
for (int i = 0; i < selectBitmap.length; i++) {
ImageItem imageItem = selectBitmap[i];
if (imageItem == null) {
takeImageCameraList.get(i).setVisibility(View.VISIBLE);
ImageView takeImageView = takeImageViewList.get(i);
takeImageView.setImageResource(Res.getDrawableID("private_point_pic_" + (i + 1)));
takeImageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
ConstraintLayout.LayoutParams lp = (ConstraintLayout.LayoutParams) takeImageView.getLayoutParams();
lp.width = ViewGroup.LayoutParams.WRAP_CONTENT;
lp.height = ViewGroup.LayoutParams.WRAP_CONTENT;
takeImageView.setLayoutParams(lp);
} else {
takeImageCameraList.get(i).setVisibility(View.GONE);
}
}
}
public Bitmap getHttpBitmap(String url) {
|
||
| 197 | 197 |
|
| 198 | 198 |
|
| 199 | 199 |
|
| 200 |
|
|
| 201 | 200 |
|
| 202 | 201 |
|
| 202 |
|
|
| 203 | 203 |
|
| 204 | 204 |
|
| 205 | 205 |
|
|
||
| 1 | 1 |
|
| 2 | 2 |
|
| 3 | 3 |
|
| 4 |
|
|
| 4 | 5 |
|
| 5 | 6 |
|
| 6 | 7 |
|
|
||
| 30 | 31 |
|
| 31 | 32 |
|
| 32 | 33 |
|
| 34 |
|
|
| 35 |
|
|
| 33 | 36 |
|
| 34 | 37 |
|
| 35 | 38 |
|
|
||
| 47 | 50 |
|
| 48 | 51 |
|
| 49 | 52 |
|
| 53 |
|
|
| 54 |
|
|
| 50 | 55 |
|
| 51 | 56 |
|
| 52 | 57 |
|
|
||
| 1169 | 1169 |
|
| 1170 | 1170 |
|
| 1171 | 1171 |
|
| 1172 |
|
|
| 1173 |
|
|
| 1174 |
|
|
| 1172 |
|
|
| 1173 |
|
|
| 1175 | 1174 |
|
| 1176 |
|
|
| 1177 |
|
|
| 1178 |
|
|
| 1179 |
|
|
| 1180 |
|
|
| 1181 |
|
|
| 1175 |
|
|
| 1176 |
|
|
| 1177 |
|
|
| 1178 |
|
|
| 1179 |
|
|
| 1180 |
|
|
| 1181 |
|
|
| 1182 |
|
|
| 1183 |
|
|
| 1184 |
|
|
| 1185 |
|
|
| 1186 |
|
|
| 1187 |
|
|
| 1188 |
|
|
| 1189 |
|
|
| 1190 |
|
|
| 1191 |
|
|
| 1192 |
|
|
| 1193 |
|
|
| 1194 |
|
|
| 1195 |
|
|
| 1196 |
|
|
| 1197 |
|
|
| 1198 |
|
|
| 1199 |
|
|
| 1200 |
|
|
| 1201 |
|
|
| 1202 |
|
|
| 1203 |
|
|
| 1204 |
|
|
| 1182 | 1205 |
|
| 1183 | 1206 |
|
| 1184 | 1207 |
|
| 1185 | 1208 |
|
| 1186 | 1209 |
|
| 1187 | 1210 |
|
| 1188 |
|
|
| 1189 | 1211 |
|
| 1190 | 1212 |
|
| 1191 | 1213 |
|
|
||
| 1300 | 1322 |
|
| 1301 | 1323 |
|
| 1302 | 1324 |
|
| 1325 |
|
|
| 1303 | 1326 |
|
| 1304 | 1327 |
|
| 1305 | 1328 |
|
|
||
| 1618 | 1641 |
|
| 1619 | 1642 |
|
| 1620 | 1643 |
|
| 1621 |
|
|
| 1644 |
|
|
| 1622 | 1645 |
|
| 1623 | 1646 |
|
| 1624 | 1647 |
|
|
||
| 1 | 1 |
|
| 2 | 2 |
|
| 3 |
|
|
| 4 |
|
|
| 3 | 5 |
|
| 4 | 6 |
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 | 7 |
|
| 9 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 |
|
|
| 16 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 | 17 |
|
| 18 | 18 |
|
| 19 | 19 |
|
|
||
| 40 | 40 |
|
| 41 | 41 |
|
| 42 | 42 |
|
| 43 |
|
|
| 44 | 43 |
|
| 44 |
|
|
| 45 | 45 |
|
| 46 |
|
|
| 47 | 46 |
|
| 48 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 | 49 |
|
| 50 | 50 |
|
| 51 | 51 |
|
| 52 | 52 |
|
| 53 | 53 |
|
| 54 | 54 |
|
| 55 |
|
|
| 55 |
|
|
| 56 | 56 |
|
| 57 | 57 |
|
| 58 | 58 |
|
| 59 | 59 |
|
| 60 | 60 |
|
| 61 |
|
|
| 62 | 61 |
|
| 62 |
|
|
| 63 | 63 |
|
| 64 |
|
|
| 64 | 65 |
|
| 65 | 66 |
|
| 66 | 67 |
|
| 67 |
|
|
| 68 |
|
|
| 68 |
|
|
| 69 |
|
|
| 69 | 70 |
|
| 70 |
|
|
| 71 | 71 |
|
| 72 | 72 |
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 77 | 76 |
|
| 78 | 77 |
|
| 79 |
|
|
| 80 | 78 |
|
| 81 | 79 |
|
| 82 | 80 |
|
| 83 | 81 |
|
| 84 | 82 |
|
| 85 |
|
|
| 86 | 83 |
|
| 84 |
|
|
| 87 | 85 |
|
| 88 | 86 |
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 87 |
|
|
| 95 | 88 |
|
| 96 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 97 | 94 |
|
| 98 | 95 |
|
| 99 | 96 |
|
| 100 | 97 |
|
| 101 | 98 |
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 | 99 |
|
| 106 |
|
|
| 107 | 100 |
|
| 101 |
|
|
| 108 | 102 |
|
| 109 | 103 |
|
| 110 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 111 | 108 |
|
| 112 | 109 |
|
| 113 | 110 |
|
| 114 | 111 |
|
| 115 | 112 |
|
| 116 | 113 |
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 114 |
|
|
| 121 | 115 |
|
| 122 | 116 |
|
| 123 | 117 |
|
| 124 | 118 |
|
| 125 | 119 |
|
| 126 | 120 |
|
| 127 |
|
|
| 128 |
|
|
| 121 |
|
|
| 129 | 122 |
|
| 130 | 123 |
|
| 131 |
|
|
| 132 | 124 |
|
| 125 |
|
|
| 133 | 126 |
|
| 134 | 127 |
|
| 135 | 128 |
|
| 136 | 129 |
|
| 137 |
|
|
| 138 |
|
|
| 130 |
|
|
| 131 |
|
|
| 139 | 132 |
|
| 140 | 133 |
|
| 141 | 134 |
|
| 142 | 135 |
|
| 143 | 136 |
|
| 144 |
|
|
| 145 |
|
|
| 137 |
|
|
| 138 |
|
|
| 146 | 139 |
|
| 147 | 140 |
|
| 148 | 141 |
|
|
||
| 150 | 143 |
|
| 151 | 144 |
|
| 152 | 145 |
|
| 153 |
|
|
| 154 |
|
|
| 146 |
|
|
| 155 | 147 |
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 162 | 154 |
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 155 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 179 | 183 |
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 184 |
|
|
| 189 | 185 |
|
| 190 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 191 | 238 |
|
| 192 | 239 |
|
| 193 | 240 |
|
|
||
| 204 | 251 |
|
| 205 | 252 |
|
| 206 | 253 |
|
| 207 |
|
|
| 208 |
|
|
| 254 |
|
|
| 209 | 255 |
|
| 210 | 256 |
|
| 211 |
|
|
| 212 |
|
|
| 257 |
|
|
| 258 |
|
|
| 259 |
|
|
| 213 | 260 |
|
| 214 | 261 |
|
| 215 | 262 |
|
|
||
| 223 | 270 |
|
| 224 | 271 |
|
| 225 | 272 |
|
| 273 |
|
|
| 226 | 274 |
|
| 227 | 275 |
|
| 228 |
|
|
| 229 | 276 |
|
| 230 |
|
|
| 231 | 277 |
|
| 232 | 278 |
|
| 279 |
|
|
| 233 | 280 |
|
| 234 | 281 |
|
| 235 | 282 |
|
|
||
| 252 | 299 |
|
| 253 | 300 |
|
| 254 | 301 |
|
| 302 |
|
|
| 255 | 303 |
|
| 256 | 304 |
|
| 257 |
|
|
| 258 |
|
|
| 305 |
|
|
| 306 |
|
|
| 307 |
|
|
| 259 | 308 |
|
| 260 | 309 |
|
| 310 |
|
|
| 261 | 311 |
|
| 262 |
|
|
| 263 |
|
|
| 264 |
|
|
| 265 |
|
|
| 312 |
|
|
| 266 | 313 |
|
| 267 | 314 |
|
| 268 | 315 |
|
| 269 | 316 |
|
| 270 | 317 |
|
| 318 |
|
|
| 319 |
|
|
| 320 |
|
|
| 271 | 321 |
|
| 272 | 322 |
|
| 273 | 323 |
|
| 274 |
|
|
| 275 |
|
|
| 276 |
|
|
| 277 |
|
|
| 324 |
|
|
| 278 | 325 |
|
| 279 | 326 |
|
| 280 | 327 |
|
|
||
| 282 | 329 |
|
| 283 | 330 |
|
| 284 | 331 |
|
| 332 |
|
|
| 333 |
|
|
| 334 |
|
|
| 335 |
|
|
| 336 |
|
|
| 337 |
|
|
| 338 |
|
|
| 285 | 339 |
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 286 | 343 |
|
| 287 | 344 |
|
| 345 |
|
|
| 288 | 346 |
|
| 289 |
|
|
| 290 |
|
|
| 291 |
|
|
| 292 |
|
|
| 293 |
|
|
| 294 | 347 |
|
| 295 | 348 |
|
| 296 |
|
|
| 297 |
|
|
| 298 |
|
|
| 299 |
|
|
| 300 |
|
|
| 301 |
|
|
| 302 |
|
|
| 349 |
|
|
| 303 | 350 |
|
| 304 | 351 |
|
| 305 | 352 |
|
|
||
| 317 | 364 |
|
| 318 | 365 |
|
| 319 | 366 |
|
| 367 |
|
|
| 320 | 368 |
|
| 321 | 369 |
|
| 322 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 | 370 |
|
| 329 |
|
|
| 371 |
|
|
| 330 | 372 |
|
| 331 |
|
|
| 373 |
|
|
| 374 |
|
|
| 375 |
|
|
| 376 |
|
|
| 377 |
|
|
| 378 |
|
|
| 332 | 379 |
|
| 333 | 380 |
|
| 381 |
|
|
| 334 | 382 |
|
| 335 | 383 |
|
| 336 |
|
|
| 337 |
|
|
| 338 |
|
|
| 339 |
|
|
| 340 | 384 |
|
| 341 |
|
|
| 385 |
|
|
| 342 | 386 |
|
| 343 |
|
|
| 387 |
|
|
| 388 |
|
|
| 389 |
|
|
| 390 |
|
|
| 344 | 391 |
|
| 345 | 392 |
|
| 346 | 393 |
|
| 347 | 394 |
|
| 348 | 395 |
|
| 349 |
|
|
| 350 |
|
|
| 351 |
|
|
| 352 |
|
|
| 353 | 396 |
|
| 354 |
|
|
| 397 |
|
|
| 398 |
|
|
| 399 |
|
|
| 400 |
|
|
| 401 |
|
|
| 355 | 402 |
|
| 356 | 403 |
|
| 357 | 404 |
|
|
||
| 359 | 406 |
|
| 360 | 407 |
|
| 361 | 408 |
|
| 362 |
|
|
| 363 |
|
|
| 409 |
|
|
| 364 | 410 |
|
| 365 | 411 |
|
| 366 | 412 |
|
|
||
| 368 | 414 |
|
| 369 | 415 |
|
| 370 | 416 |
|
| 371 |
|
|
| 372 |
|
|
| 417 |
|
|
| 373 | 418 |
|
| 374 | 419 |
|
| 375 | 420 |
|
|
||
| 386 | 431 |
|
| 387 | 432 |
|
| 388 | 433 |
|
| 434 |
|
|
| 389 | 435 |
|
| 390 | 436 |
|
| 391 |
|
|
| 392 |
|
|
| 393 |
|
|
| 394 | 437 |
|
| 395 |
|
|
| 396 | 438 |
|
| 439 |
|
|
| 397 | 440 |
|
| 398 |
|
|
| 399 | 441 |
|
| 400 |
|
|
| 442 |
|
|
| 443 |
|
|
| 444 |
|
|
| 445 |
|
|
| 401 | 446 |
|
| 402 | 447 |
|
| 448 |
|
|
| 403 | 449 |
|
| 404 | 450 |
|
| 405 |
|
|
| 406 |
|
|
| 407 |
|
|
| 408 |
|
|
| 409 | 451 |
|
| 452 |
|
|
| 410 | 453 |
|
| 411 |
|
|
| 454 |
|
|
| 455 |
|
|
| 456 |
|
|
| 457 |
|
|
| 412 | 458 |
|
| 459 |
|
|
| 413 | 460 |
|
| 414 | 461 |
|
| 415 |
|
|
| 462 |
|
|
| 416 | 463 |
|
| 417 |
|
|
| 418 | 464 |
|
| 419 |
|
|
| 465 |
|
|
| 420 | 466 |
|
| 421 |
|
|
| 467 |
|
|
| 422 | 468 |
|
| 423 | 469 |
|
| 424 | 470 |
|
| 425 | 471 |
|
| 426 | 472 |
|
| 473 |
|
|
| 474 |
|
|
| 475 |
|
|
| 476 |
|
|
| 427 | 477 |
|
| 428 |
|
|
| 429 | 478 |
|
| 430 | 479 |
|
| 431 | 480 |
|
| 432 | 481 |
|
| 482 |
|
|
| 433 | 483 |
|
| 434 | 484 |
|
| 435 | 485 |
|
| 436 |
|
|
| 437 |
|
|
| 438 |
|
|
| 439 |
|
|
| 440 |
|
|
| 486 |
|
|
| 441 | 487 |
|
| 442 | 488 |
|
| 489 |
|
|
| 443 | 490 |
|
| 444 | 491 |
|
| 445 |
|
|
| 446 |
|
|
| 447 | 492 |
|
| 493 |
|
|
| 448 | 494 |
|
| 449 | 495 |
|
| 450 |
|
|
| 496 |
|
|
| 451 | 497 |
|
| 452 | 498 |
|
| 453 | 499 |
|
| 454 | 500 |
|
| 455 | 501 |
|
| 502 |
|
|
| 503 |
|
|
| 504 |
|
|
| 505 |
|
|
| 456 | 506 |
|
| 457 |
|
|
| 458 | 507 |
|
| 459 | 508 |
|
| 460 | 509 |
|
| 461 | 510 |
|
| 511 |
|
|
| 462 | 512 |
|
| 463 | 513 |
|
| 464 | 514 |
|
| 465 |
|
|
| 466 |
|
|
| 467 |
|
|
| 468 |
|
|
| 469 |
|
|
| 515 |
|
|
| 470 | 516 |
|
| 471 | 517 |
|
| 472 | 518 |
|
|
||
| 488 | 534 |
|
| 489 | 535 |
|
| 490 | 536 |
|
| 491 |
|
|
| 492 |
|
|
| 537 |
|
|
| 538 |
|
|
| 493 | 539 |
|
| 494 | 540 |
|
| 495 | 541 |
|
| 496 | 542 |
|
| 497 |
|
|
| 498 |
|
|
| 543 |
|
|
| 499 | 544 |
|
| 500 | 545 |
|
| 501 |
|
|
| 502 |
|
|
| 546 |
|
|
| 547 |
|
|
| 548 |
|
|
| 503 | 549 |
|
| 504 | 550 |
|
| 505 | 551 |
|
|
||
| 514 | 560 |
|
| 515 | 561 |
|
| 516 | 562 |
|
| 517 |
|
|
| 518 | 563 |
|
| 564 |
|
|
| 519 | 565 |
|
| 520 | 566 |
|
| 521 | 567 |
|
| 522 |
|
|
| 523 | 568 |
|
| 569 |
|
|
| 524 | 570 |
|
| 525 | 571 |
|
| 526 | 572 |
|
| 527 | 573 |
|
| 528 | 574 |
|
| 529 | 575 |
|
| 530 |
|
|
| 531 | 576 |
|
| 577 |
|
|
| 532 | 578 |
|
| 533 | 579 |
|
| 534 | 580 |
|
|
||
| 543 | 589 |
|
| 544 | 590 |
|
| 545 | 591 |
|
| 592 |
|
|
| 546 | 593 |
|
| 547 | 594 |
|
| 548 |
|
|
| 549 |
|
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
| 550 | 598 |
|
| 551 | 599 |
|
| 600 |
|
|
| 552 | 601 |
|
| 553 |
|
|
| 554 |
|
|
| 555 |
|
|
| 556 |
|
|
| 602 |
|
|
| 557 | 603 |
|
| 558 | 604 |
|
| 559 | 605 |
|
| 560 | 606 |
|
| 561 |
|
|
| 562 |
|
|
| 563 |
|
|
| 564 | 607 |
|
| 608 |
|
|
| 565 | 609 |
|
| 566 |
|
|
| 610 |
|
|
| 611 |
|
|
| 612 |
|
|
| 567 | 613 |
|
| 568 | 614 |
|
| 569 | 615 |
|
| 570 | 616 |
|
| 571 |
|
|
| 572 | 617 |
|
| 573 | 618 |
|
| 619 |
|
|
| 620 |
|
|
| 621 |
|
|
| 622 |
|
|
| 623 |
|
|
| 574 | 624 |
|
| 575 | 625 |
|
| 626 |
|
|
| 627 |
|
|
| 576 | 628 |
|
| 577 | 629 |
|
| 578 | 630 |
|
| 579 |
|
|
| 580 |
|
|
| 581 |
|
|
| 582 |
|
|
| 583 |
|
|
| 584 |
|
|
| 585 |
|
|
| 631 |
|
|
| 586 | 632 |
|
| 587 | 633 |
|
| 588 | 634 |
|
|
||
| 590 | 636 |
|
| 591 | 637 |
|
| 592 | 638 |
|
| 593 |
|
|
| 639 |
|
|
| 594 | 640 |
|
| 595 | 641 |
|
| 596 | 642 |
|
| 597 | 643 |
|
| 598 |
|
|
| 599 |
|
|
| 644 |
|
|
| 645 |
|
|
| 600 | 646 |
|
| 601 | 647 |
|
| 602 | 648 |
|
| 603 | 649 |
|
| 604 |
|
|
| 605 |
|
|
| 650 |
|
|
| 606 | 651 |
|
| 607 | 652 |
|
| 653 |
|
|
| 608 | 654 |
|
| 609 |
|
|
| 655 |
|
|
| 610 | 656 |
|
| 611 | 657 |
|
| 612 | 658 |
|
|
||
| 621 | 667 |
|
| 622 | 668 |
|
| 623 | 669 |
|
| 624 |
|
|
| 625 | 670 |
|
| 671 |
|
|
| 626 | 672 |
|
| 627 | 673 |
|
| 628 | 674 |
|
| 629 |
|
|
| 630 | 675 |
|
| 676 |
|
|
| 631 | 677 |
|
| 632 | 678 |
|
| 633 | 679 |
|
| 634 | 680 |
|
| 635 | 681 |
|
| 636 | 682 |
|
| 637 |
|
|
| 638 | 683 |
|
| 684 |
|
|
| 639 | 685 |
|
| 640 | 686 |
|
| 641 | 687 |
|
|
||
| 643 | 689 |
|
| 644 | 690 |
|
| 645 | 691 |
|
| 646 |
|
|
| 647 |
|
|
| 648 | 692 |
|
| 649 | 693 |
|
| 650 | 694 |
|
|
||
| 652 | 696 |
|
| 653 | 697 |
|
| 654 | 698 |
|
| 699 |
|
|
| 655 | 700 |
|
| 656 | 701 |
|
| 657 |
|
|
| 658 |
|
|
| 659 |
|
|
| 660 | 702 |
|
| 661 |
|
|
| 662 | 703 |
|
| 704 |
|
|
| 663 | 705 |
|
| 664 |
|
|
| 665 | 706 |
|
| 666 |
|
|
| 707 |
|
|
| 708 |
|
|
| 709 |
|
|
| 710 |
|
|
| 667 | 711 |
|
| 668 | 712 |
|
| 713 |
|
|
| 669 | 714 |
|
| 670 | 715 |
|
| 671 |
|
|
| 672 |
|
|
| 673 |
|
|
| 674 |
|
|
| 675 | 716 |
|
| 717 |
|
|
| 676 | 718 |
|
| 677 |
|
|
| 719 |
|
|
| 720 |
|
|
| 721 |
|
|
| 678 | 722 |
|
| 679 | 723 |
|
| 680 | 724 |
|
| 681 | 725 |
|
| 682 | 726 |
|
| 683 | 727 |
|
| 728 |
|
|
| 729 |
|
|
| 730 |
|
|
| 684 | 731 |
|
| 685 | 732 |
|
| 686 |
|
|
| 687 |
|
|
| 688 | 733 |
|
| 689 |
|
|
| 690 |
|
|
| 691 |
|
|
| 734 |
|
|
| 692 | 735 |
|
| 693 |
|
|
| 694 |
|
|
| 695 |
|
|
| 736 |
|
|
| 737 |
|
|
| 738 |
|
|
| 739 |
|
|
| 696 | 740 |
|
| 697 | 741 |
|
| 742 |
|
|
| 698 | 743 |
|
| 699 | 744 |
|
| 700 |
|
|
| 701 |
|
|
| 702 |
|
|
| 703 |
|
|
| 745 |
|
|
| 704 | 746 |
|
| 705 |
|
|
| 747 |
|
|
| 748 |
|
|
| 749 |
|
|
| 706 | 750 |
|
| 707 | 751 |
|
| 708 | 752 |
|
|
||
| 725 | 769 |
|
| 726 | 770 |
|
| 727 | 771 |
|
| 728 |
|
|
| 729 |
|
|
| 772 |
|
|
| 773 |
|
|
| 730 | 774 |
|
| 731 | 775 |
|
| 732 | 776 |
|
| 733 | 777 |
|
| 734 |
|
|
| 735 |
|
|
| 778 |
|
|
| 736 | 779 |
|
| 737 | 780 |
|
| 738 |
|
|
| 739 |
|
|
| 781 |
|
|
| 782 |
|
|
| 783 |
|
|
| 740 | 784 |
|
| 741 | 785 |
|
| 742 | 786 |
|
|
||
| 751 | 795 |
|
| 752 | 796 |
|
| 753 | 797 |
|
| 754 |
|
|
| 755 | 798 |
|
| 799 |
|
|
| 756 | 800 |
|
| 757 | 801 |
|
| 758 | 802 |
|
| 759 |
|
|
| 760 | 803 |
|
| 804 |
|
|
| 761 | 805 |
|
| 762 | 806 |
|
| 763 | 807 |
|
| 764 | 808 |
|
| 765 | 809 |
|
| 766 | 810 |
|
| 767 |
|
|
| 768 | 811 |
|
| 812 |
|
|
| 769 | 813 |
|
| 770 | 814 |
|
| 771 | 815 |
|
|
||
| 779 | 823 |
|
| 780 | 824 |
|
| 781 | 825 |
|
| 826 |
|
|
| 782 | 827 |
|
| 783 | 828 |
|
| 784 |
|
|
| 785 |
|
|
| 829 |
|
|
| 830 |
|
|
| 831 |
|
|
| 786 | 832 |
|
| 787 | 833 |
|
| 834 |
|
|
| 788 | 835 |
|
| 789 |
|
|
| 790 |
|
|
| 791 |
|
|
| 792 |
|
|
| 836 |
|
|
| 793 | 837 |
|
| 794 | 838 |
|
| 839 |
|
|
| 795 | 840 |
|
| 796 | 841 |
|
| 797 |
|
|
| 798 |
|
|
| 799 |
|
|
| 800 |
|
|
| 801 | 842 |
|
| 843 |
|
|
| 802 | 844 |
|
| 803 |
|
|
| 845 |
|
|
| 846 |
|
|
| 847 |
|
|
| 804 | 848 |
|
| 805 | 849 |
|
| 806 | 850 |
|
| 807 | 851 |
|
| 808 | 852 |
|
| 809 |
|
|
| 810 |
|
|
| 811 |
|
|
| 812 |
|
|
| 813 | 853 |
|
| 814 |
|
|
| 854 |
|
|
| 855 |
|
|
| 856 |
|
|
| 857 |
|
|
| 858 |
|
|
| 815 | 859 |
|
| 816 | 860 |
|
| 817 | 861 |
|
|
||
| 819 | 863 |
|
| 820 | 864 |
|
| 821 | 865 |
|
| 822 |
|
|
| 823 |
|
|
| 866 |
|
|
| 824 | 867 |
|
| 825 | 868 |
|
| 826 | 869 |
|
|
||
| 828 | 871 |
|
| 829 | 872 |
|
| 830 | 873 |
|
| 831 |
|
|
| 832 |
|
|
| 874 |
|
|
| 833 | 875 |
|
| 834 | 876 |
|
| 835 | 877 |
|
|
||
| 838 | 880 |
|
| 839 | 881 |
|
| 840 | 882 |
|
| 841 |
|
|
| 883 |
|
|
| 842 | 884 |
|
| 843 | 885 |
|
| 844 | 886 |
|
|
||
| 849 | 891 |
|
| 850 | 892 |
|
| 851 | 893 |
|
| 852 |
|
|
| 853 | 894 |
|
| 854 | 895 |
|
| 855 | 896 |
|
| 897 |
|
|
| 856 | 898 |
|
| 857 | 899 |
|
| 858 | 900 |
|
| 859 |
|
|
| 901 |
|
|
| 860 | 902 |
|
| 861 | 903 |
|
| 862 | 904 |
|
| 863 | 905 |
|
| 864 | 906 |
|
| 907 |
|
|
| 908 |
|
|
| 909 |
|
|
| 865 | 910 |
|
| 866 | 911 |
|
| 912 |
|
|
| 913 |
|
|
| 867 | 914 |
|
| 868 | 915 |
|
| 869 | 916 |
|
| 870 |
|
|
| 871 |
|
|
| 872 |
|
|
| 873 |
|
|
| 874 |
|
|
| 875 |
|
|
| 917 |
|
|
| 876 | 918 |
|
| 877 | 919 |
|
| 878 | 920 |
|
| 879 | 921 |
|
| 880 | 922 |
|
| 923 |
|
|
| 881 | 924 |
|
| 882 |
|
|
| 883 |
|
|
| 925 |
|
|
| 884 | 926 |
|
| 885 | 927 |
|
| 886 | 928 |
|
| 887 | 929 |
|
| 888 | 930 |
|
| 889 |
|
|
| 931 |
|
|
| 932 |
|
|
| 933 |
|
|
| 890 | 934 |
|
| 935 |
|
|
| 891 | 936 |
|
| 937 |
|
|
| 938 |
|
|
| 892 | 939 |
|
| 893 | 940 |
|
| 894 | 941 |
|
| 895 |
|
|
| 896 |
|
|
| 897 |
|
|
| 898 |
|
|
| 899 |
|
|
| 900 | 942 |
|
| 901 |
|
|
| 943 |
|
|
| 902 | 944 |
|
| 903 | 945 |
|
| 904 | 946 |
|
| 905 | 947 |
|
| 906 | 948 |
|
| 907 | 949 |
|
| 908 |
|
|
| 950 |
|
|
| 909 | 951 |
|
| 910 | 952 |
|
| 911 | 953 |
|
| 912 | 954 |
|
| 913 | 955 |
|
| 914 |
|
|
| 956 |
|
|
| 915 | 957 |
|
| 958 |
|
|
| 916 | 959 |
|
| 917 |
|
|
| 918 | 960 |
|
| 961 |
|
|
| 919 | 962 |
|
| 920 |
|
|
| 921 | 963 |
|
| 922 | 964 |
|
| 923 | 965 |
|
|
||
| 925 | 967 |
|
| 926 | 968 |
|
| 927 | 969 |
|
| 928 |
|
|
| 970 |
|
|
| 929 | 971 |
|
| 930 | 972 |
|
| 931 | 973 |
|
| 932 | 974 |
|
| 933 | 975 |
|
| 934 |
|
|
| 935 |
|
|
| 936 |
|
|
| 937 |
|
|
| 938 |
|
|
| 939 |
|
|
| 940 |
|
|
| 941 |
|
|
| 942 |
|
|
| 943 |
|
|
| 944 |
|
|
| 945 |
|
|
| 946 |
|
|
| 947 |
|
|
| 948 |
|
|
| 949 |
|
|
| 950 |
|
|
| 951 |
|
|
| 952 |
|
|
| 953 |
|
|
| 954 |
|
|
| 955 |
|
|
| 956 |
|
|
| 957 |
|
|
| 958 |
|
|
| 959 |
|
|
| 960 |
|
|
| 961 |
|
|
| 962 |
|
|
| 963 |
|
|
| 964 |
|
|
| 965 |
|
|
| 966 |
|
|
| 967 |
|
|
| 968 |
|
|
| 969 |
|
|
| 970 |
|
|
| 971 |
|
|
| 972 |
|
|
| 973 |
|
|
| 974 |
|
|
| 975 |
|
|
| 976 |
|
|
| 977 |
|
|
| 978 |
|
|
| 979 |
|
|
| 980 |
|
|
| 981 |
|
|
| 982 |
|
|
| 983 |
|
|
| 984 |
|
|
| 985 |
|
|
| 986 |
|
|
| 987 |
|
|
| 988 | 976 |
|
| 989 |
|
|
| 990 | 977 |
|
| 991 | 978 |
|
| 992 | 979 |
|
|
||
| 994 | 981 |
|
| 995 | 982 |
|
| 996 | 983 |
|
| 997 |
|
|
| 998 | 984 |
|
| 985 |
|
|
| 999 | 986 |
|
| 1000 | 987 |
|
| 1001 | 988 |
|
| 1002 | 989 |
|
| 1003 | 990 |
|
| 1004 |
|
|
| 1005 |
|
|
| 1006 |
|
|
| 1007 | 991 |
|