|
|
|
|
@ -2,6 +2,7 @@ import 'package:doctor_app_flutter/core/model/note/note_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/model/note/update_note_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/auth_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/patient_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/patient/progress_note_request.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
|
|
|
@ -42,9 +43,10 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
var _isInit = true;
|
|
|
|
|
bool isDischargedPatient = false;
|
|
|
|
|
AuthViewModel authProvider;
|
|
|
|
|
ProjectViewModel projectViewModel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getProgressNoteList(BuildContext context, PatientViewModel model, {bool isLocalBusy = false}) async {
|
|
|
|
|
getProgressNoteList(BuildContext context, PatientViewModel model,
|
|
|
|
|
{bool isLocalBusy = false}) async {
|
|
|
|
|
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
|
|
|
|
PatiantInformtion patient = routeArgs['patient'];
|
|
|
|
|
String token = await sharedPref.getString(TOKEN);
|
|
|
|
|
@ -59,7 +61,10 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
tokenID: token,
|
|
|
|
|
patientTypeID: patient.patientType,
|
|
|
|
|
languageID: 2);
|
|
|
|
|
model.getPatientProgressNote(progressNoteRequest.toJson(), isLocalBusy: isLocalBusy).then((c) {
|
|
|
|
|
model
|
|
|
|
|
.getPatientProgressNote(progressNoteRequest.toJson(),
|
|
|
|
|
isLocalBusy: isLocalBusy)
|
|
|
|
|
.then((c) {
|
|
|
|
|
notesList = model.patientProgressNoteList;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
@ -67,97 +72,124 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
authProvider = Provider.of(context);
|
|
|
|
|
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
|
|
|
|
projectViewModel = Provider.of(context);
|
|
|
|
|
final routeArgs = ModalRoute
|
|
|
|
|
.of(context)
|
|
|
|
|
.settings
|
|
|
|
|
.arguments as Map;
|
|
|
|
|
PatiantInformtion patient = routeArgs['patient'];
|
|
|
|
|
String arrivalType = routeArgs['arrivalType'];
|
|
|
|
|
if(routeArgs.containsKey('isDischargedPatient'))
|
|
|
|
|
isDischargedPatient = routeArgs['isDischargedPatient'];
|
|
|
|
|
if (routeArgs.containsKey('isDischargedPatient'))
|
|
|
|
|
isDischargedPatient = routeArgs['isDischargedPatient'];
|
|
|
|
|
return BaseView<PatientViewModel>(
|
|
|
|
|
onModelReady: (model) => getProgressNoteList(context, model),
|
|
|
|
|
builder: (_, model, w) => AppScaffold(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
|
// appBarTitle: TranslationBase.of(context).progressNote,
|
|
|
|
|
appBar: PatientProfileHeaderNewDesignAppBar(
|
|
|
|
|
patient, patient.patientType.toString() ?? '0', arrivalType,isInpatient: true,),
|
|
|
|
|
body: model.patientProgressNoteList == null || model.patientProgressNoteList.length == 0
|
|
|
|
|
? DrAppEmbeddedError(
|
|
|
|
|
error: TranslationBase.of(context).errorNoProgressNote)
|
|
|
|
|
: Container(
|
|
|
|
|
color: Colors.grey[200],
|
|
|
|
|
builder: (_, model, w) =>
|
|
|
|
|
AppScaffold(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
backgroundColor: Theme
|
|
|
|
|
.of(context)
|
|
|
|
|
.scaffoldBackgroundColor,
|
|
|
|
|
// appBarTitle: TranslationBase.of(context).progressNote,
|
|
|
|
|
appBar: PatientProfileHeaderNewDesignAppBar(
|
|
|
|
|
patient,
|
|
|
|
|
patient.patientType.toString() ?? '0',
|
|
|
|
|
arrivalType,
|
|
|
|
|
isInpatient: true,
|
|
|
|
|
),
|
|
|
|
|
body: model.patientProgressNoteList == null ||
|
|
|
|
|
model.patientProgressNoteList.length == 0
|
|
|
|
|
? DrAppEmbeddedError(
|
|
|
|
|
error: TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.errorNoProgressNote)
|
|
|
|
|
: Container(
|
|
|
|
|
color: Colors.grey[200],
|
|
|
|
|
child: Column(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
if(!isDischargedPatient)
|
|
|
|
|
AddNewOrder( onTap: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
MaterialPageRoute(
|
|
|
|
|
builder: (context) => UpdateNoteOrder(
|
|
|
|
|
patientModel: model,
|
|
|
|
|
patient: patient,
|
|
|
|
|
visitType: widget.visitType,
|
|
|
|
|
isUpdate: false,
|
|
|
|
|
)),
|
|
|
|
|
);
|
|
|
|
|
},label: widget.visitType ==3?'Add a New Order Sheet':'Create a New Progress Note',),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Container(
|
|
|
|
|
|
|
|
|
|
child: ListView.builder(
|
|
|
|
|
itemCount: model.patientProgressNoteList.length,
|
|
|
|
|
itemBuilder: (BuildContext ctxt, int index) {
|
|
|
|
|
return FractionallySizedBox(
|
|
|
|
|
widthFactor: 0.95,
|
|
|
|
|
child: CardWithBgWidget(
|
|
|
|
|
hasBorder: false,
|
|
|
|
|
bgColor: model.patientProgressNoteList[index]
|
|
|
|
|
.status ==
|
|
|
|
|
1 &&
|
|
|
|
|
authProvider.doctorProfile.doctorID !=
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdBy
|
|
|
|
|
? Color(0xFFCC9B14):model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.status ==
|
|
|
|
|
4?Colors.red.shade700
|
|
|
|
|
: model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.status ==
|
|
|
|
|
2?Colors.green[600]:Color(0xFFCC9B14),
|
|
|
|
|
widget: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
if (model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.status ==
|
|
|
|
|
1 &&
|
|
|
|
|
authProvider
|
|
|
|
|
.doctorProfile.doctorID !=
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdBy)
|
|
|
|
|
AppText(
|
|
|
|
|
'Pending',
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
color: Color(0xFFCC9B14),
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
if (!isDischargedPatient)
|
|
|
|
|
AddNewOrder(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
MaterialPageRoute(
|
|
|
|
|
builder: (context) =>
|
|
|
|
|
UpdateNoteOrder(
|
|
|
|
|
patientModel: model,
|
|
|
|
|
patient: patient,
|
|
|
|
|
visitType: widget.visitType,
|
|
|
|
|
isUpdate: false,
|
|
|
|
|
)),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
label: widget.visitType == 3
|
|
|
|
|
? TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.addNewOrderSheet
|
|
|
|
|
: TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.addProgressNote,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Container(
|
|
|
|
|
child: ListView.builder(
|
|
|
|
|
itemCount: model.patientProgressNoteList.length,
|
|
|
|
|
itemBuilder: (BuildContext ctxt, int index) {
|
|
|
|
|
return FractionallySizedBox(
|
|
|
|
|
widthFactor: 0.95,
|
|
|
|
|
child: CardWithBgWidget(
|
|
|
|
|
hasBorder: false,
|
|
|
|
|
bgColor: model.patientProgressNoteList[index]
|
|
|
|
|
.status ==
|
|
|
|
|
1 &&
|
|
|
|
|
authProvider.doctorProfile.doctorID !=
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdBy
|
|
|
|
|
? Color(0xFFCC9B14)
|
|
|
|
|
: model.patientProgressNoteList[index]
|
|
|
|
|
.status ==
|
|
|
|
|
4
|
|
|
|
|
? Colors.red.shade700
|
|
|
|
|
: model.patientProgressNoteList[index]
|
|
|
|
|
.status ==
|
|
|
|
|
2
|
|
|
|
|
? Colors.green[600]
|
|
|
|
|
: Color(0xFFCC9B14),
|
|
|
|
|
widget: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
if (model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.status ==
|
|
|
|
|
1 &&
|
|
|
|
|
authProvider
|
|
|
|
|
.doctorProfile.doctorID !=
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdBy)
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.notePending,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
color: Color(0xFFCC9B14),
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
if (model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.status ==
|
|
|
|
|
4)
|
|
|
|
|
AppText(
|
|
|
|
|
'Canceled',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.noteCanceled,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
color: Colors.red.shade700,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
@ -168,7 +200,9 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
.status ==
|
|
|
|
|
2)
|
|
|
|
|
AppText(
|
|
|
|
|
'Verified',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.noteVerified,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
color: Colors.green[600],
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
@ -229,7 +263,10 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
width: 2,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
'Update',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.update,
|
|
|
|
|
fontSize: 10,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
@ -309,7 +346,10 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
width: 2,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
'Verify',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.noteVerify,
|
|
|
|
|
fontSize: 10,
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
@ -325,22 +365,26 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
onTap: () async {
|
|
|
|
|
showMyDialog(
|
|
|
|
|
context: context,
|
|
|
|
|
actionName: "cancel",
|
|
|
|
|
actionName:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.cancel,
|
|
|
|
|
confirmFun: () async {
|
|
|
|
|
GifLoaderDialogUtils
|
|
|
|
|
.showMyDialog(
|
|
|
|
|
context,
|
|
|
|
|
);
|
|
|
|
|
UpdateNoteReqModel
|
|
|
|
|
reqModel =
|
|
|
|
|
UpdateNoteReqModel(
|
|
|
|
|
reqModel =
|
|
|
|
|
UpdateNoteReqModel(
|
|
|
|
|
admissionNo: int
|
|
|
|
|
.parse(patient
|
|
|
|
|
.admissionNo),
|
|
|
|
|
.admissionNo),
|
|
|
|
|
cancelledNote: true,
|
|
|
|
|
lineItemNo: model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
index]
|
|
|
|
|
.lineItemNo,
|
|
|
|
|
createdBy: model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
@ -398,7 +442,6 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
padding: EdgeInsets.all(6),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: 10,
|
|
|
|
|
)
|
|
|
|
|
@ -428,7 +471,10 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
'Created By: ',
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.createdBy,
|
|
|
|
|
fontSize: 10,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
@ -452,26 +498,34 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdOn !=
|
|
|
|
|
null
|
|
|
|
|
? DateUtils
|
|
|
|
|
.getDayMonthYearDateFormatted(
|
|
|
|
|
DateUtils
|
|
|
|
|
.getDateTimeFromServerFormat(
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdOn !=
|
|
|
|
|
null
|
|
|
|
|
? DateUtils.getDayMonthYearDateFormatted(
|
|
|
|
|
DateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdOn))
|
|
|
|
|
index]
|
|
|
|
|
.createdOn),
|
|
|
|
|
isArabic:
|
|
|
|
|
projectViewModel
|
|
|
|
|
.isArabic)
|
|
|
|
|
: DateUtils
|
|
|
|
|
.getDayMonthYearDateFormatted(
|
|
|
|
|
DateTime.now()),
|
|
|
|
|
.getDayMonthYearDateFormatted(
|
|
|
|
|
DateTime.now(),
|
|
|
|
|
isArabic:
|
|
|
|
|
projectViewModel
|
|
|
|
|
.isArabic),
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
model
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.patientProgressNoteList[
|
|
|
|
|
index]
|
|
|
|
|
.createdOn !=
|
|
|
|
|
null
|
|
|
|
|
? DateUtils.getHour(DateUtils
|
|
|
|
|
@ -508,21 +562,21 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
])
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 20,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 20,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
@ -541,38 +595,49 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
isShowAppBar: false,
|
|
|
|
|
body: Container(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
// SizedBox(height: 20,),
|
|
|
|
|
SizedBox(height: 10,),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
"Confirm", fontWeight: FontWeight.w600,
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.noteConfirm,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontSize: 16,),
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 10,),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
DividerWithSpacesAround(),
|
|
|
|
|
SizedBox(height: 12,),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 12,
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.all(20),
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
child: AppText(
|
|
|
|
|
'Are you sure you want $actionName this order?',
|
|
|
|
|
projectViewModel.isArabic?"هل أنت متأكد أنك تريد تنفيذ $actionName هذا الأمر؟":'Are you sure you want $actionName this order?',
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
SizedBox(height: 8,),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8,
|
|
|
|
|
),
|
|
|
|
|
DividerWithSpacesAround(),
|
|
|
|
|
FractionallySizedBox(
|
|
|
|
|
widthFactor: 0.75,
|
|
|
|
|
@ -581,22 +646,29 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
children: [
|
|
|
|
|
FlatButton(
|
|
|
|
|
child: AppText(
|
|
|
|
|
"Cancel", fontWeight: FontWeight.w600,
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.cancel,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontSize: 16,),//Text("Cancel"),
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
), //Text("Cancel"),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
}),
|
|
|
|
|
FlatButton(
|
|
|
|
|
child: AppText(
|
|
|
|
|
"Confirm", fontWeight: FontWeight.w600,
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.noteConfirm,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Colors.red.shade700,
|
|
|
|
|
fontSize: 16,), //Text("Confirm", ),
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
), //Text("Confirm", ),
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
await confirmFun();
|
|
|
|
|
await confirmFun();
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
@ -608,8 +680,4 @@ class _ProgressNoteState extends State<ProgressNoteScreen> {
|
|
|
|
|
),
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|