wyh 2023-12-07
Merge branch 'master' of http://dudgusw@vcs.iten.co.kr:9999/hylee/mjon_git
@b0f34774ec8538649232f306a371a25878dc016d
src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java
--- src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java
+++ src/main/java/itn/let/cop/bbs/web/EgovBBSManageController.java
@@ -1628,6 +1628,16 @@
 			return "redirect:/web/user/login/login.do";
 		}
 		
+		/**
+		 * 회원 정지된 상태이면 1:1 등록 화면으로 이동되지 않도록 처리
+		 * */
+		boolean mberSttus = userManageService.selectUserStatusInfo(userId);
+		
+		if(!mberSttus) {
+			return "redirect:/web/uat/uia/actionLogout.do";
+		}
+		
+		
 		MberManageVO mberManageVO = new MberManageVO();
 		mberManageVO.setMberId(user.getId());
 		
src/main/java/itn/let/fax/admin/service/FaxStatVO.java
--- src/main/java/itn/let/fax/admin/service/FaxStatVO.java
+++ src/main/java/itn/let/fax/admin/service/FaxStatVO.java
@@ -25,6 +25,9 @@
 	private int statEndDate;                 //통계 종료일
 	private int statStandardDate;            //통계 where 기준
 	
+	private int succPageCnt;				//팩스 성공 페이지 수
+	private int failPageCnt;				//팩스 실패 페이지 수
+	
 	public String getReqDate() {
 		return reqDate;
 	}
@@ -115,5 +118,17 @@
 	public void setStatStandardDate(int statStandardDate) {
 		this.statStandardDate = statStandardDate;
 	}
+	public int getSuccPageCnt() {
+		return succPageCnt;
+	}
+	public void setSuccPageCnt(int succPageCnt) {
+		this.succPageCnt = succPageCnt;
+	}
+	public int getFailPageCnt() {
+		return failPageCnt;
+	}
+	public void setFailPageCnt(int failPageCnt) {
+		this.failPageCnt = failPageCnt;
+	}
 	
 }
src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java
--- src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java
+++ src/main/java/itn/let/fax/admin/service/impl/FaxAdmServiceImpl.java
@@ -26,7 +26,6 @@
 import itn.let.fax.admin.service.FaxStatVO;
 import itn.let.fax.user.service.FaxGroupDataVO;
 import itn.let.fax.user.service.impl.FaxDAO;
-import itn.let.mjo.msg.service.MjonMsgVO;
 import itn.let.mjo.msgdata.service.impl.MjonMsgDataDAO;
 import itn.let.mjo.pay.service.impl.MjonPayDAO;
 import itn.let.module.base.PriceAndPoint;
@@ -128,7 +127,8 @@
 		
 		faxStatVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
 		faxStatVO.setLastIndex(paginationInfo.getLastRecordIndex());
-		faxStatVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
+		//faxStatVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
+		faxStatVO.setRecordCountPerPage(1000);
 		
 		// 최초 접근 시 오늘 날짜의 통계를 보여준다
 		SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
@@ -212,12 +212,16 @@
 			double succFaxCost = 0;
 			double failFaxCost = 0;
 			double succFaxRate = 0;
+			int succPageCnt = 0;
+			int failPageCnt = 0;
 			
 			for(FaxStatVO tmpVO : list) {
 				succFaxCnt += tmpVO.getSuccFaxCnt();
 				failFaxCnt += tmpVO.getFailFaxCnt();
 				succFaxCost += Double.parseDouble(tmpVO.getSuccFaxCost());
 				failFaxCost += Double.parseDouble(tmpVO.getFailFaxCost());
+				succPageCnt += tmpVO.getSuccPageCnt();
+				failPageCnt += tmpVO.getFailPageCnt();
 			}
 			
 			if(succFaxCnt + succFaxCnt != 0) {
@@ -236,6 +240,8 @@
 			faxStatVO.setSuccFaxCost(dcf.format(succFaxCost));
 			faxStatVO.setFailFaxCost(dcf.format(failFaxCost));
 			faxStatVO.setSuccFaxRate(Double.toString(succFaxRate));
+			faxStatVO.setSuccPageCnt(succPageCnt);
+			faxStatVO.setFailPageCnt(failPageCnt);
 			
 			List<FaxStatVO> totalSumList = new ArrayList<FaxStatVO>();
 			totalSumList.add(faxStatVO);
src/main/java/itn/let/fax/admin/web/FaxAdmController.java
--- src/main/java/itn/let/fax/admin/web/FaxAdmController.java
+++ src/main/java/itn/let/fax/admin/web/FaxAdmController.java
@@ -324,6 +324,7 @@
     	return "/uss/ion/fax/faxAdmSendStatistics";
     }
     
+    
     // 팩스 금일 발송통계 갱신
  	@RequestMapping(value = "/uss/ion/msg/insertFaxCountStatTodayAjax.do")
  	public ResponseEntity<StatusResponse> insertFaxCountStatTodayAjax(FaxStatVO faxStatVO) throws Exception {
src/main/java/itn/let/fax/user/web/FaxRestController.java
--- src/main/java/itn/let/fax/user/web/FaxRestController.java
+++ src/main/java/itn/let/fax/user/web/FaxRestController.java
@@ -6,6 +6,7 @@
 
 import javax.annotation.Resource;
 import javax.imageio.ImageIO;
+import javax.servlet.http.HttpServletRequest;
 
 import org.apache.commons.lang3.StringUtils;
 import org.apache.pdfbox.pdmodel.PDDocument;
@@ -29,6 +30,7 @@
 import itn.let.fax.user.service.FaxService;
 import itn.let.fax.user.service.FaxTranVO;
 import itn.let.mail.service.StatusResponse;
+import itn.let.uss.umt.service.EgovUserManageService;
 
 /**
  * 
@@ -49,6 +51,10 @@
 
 	@Resource(name = "faxService")
 	private FaxService faxService;
+	
+	/** userManageService */
+	@Resource(name = "userManageService")
+	private EgovUserManageService userManageService;
 	
 	private static final Logger logger = LoggerFactory.getLogger(FaxRestController.class);
 	
@@ -124,7 +130,7 @@
 	 * @throws Exception 
 	 */
 	@RequestMapping(value= {"/web/mjon/fax/sendData.do"})
-	public ResponseEntity<StatusResponse> sendData(FaxTranVO faxTranVO) throws Exception{
+	public ResponseEntity<StatusResponse> sendData(FaxTranVO faxTranVO, HttpServletRequest request) throws Exception{
 		//로그인 권한정보 불러오기
 		LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
 		String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId());
@@ -132,6 +138,16 @@
 		// 로그인 안되어있음 return
 		if(StringUtils.isEmpty(userId)) return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "로그인 후 이용해 주세요", LocalDateTime.now()));
 		
+		/**
+		 * 회원 정지된 상태이면 팩스 발송이되지 않도록 처리
+		 * */
+		boolean mberSttus = userManageService.selectUserStatusInfo(userId);
+		
+		if(!mberSttus) {
+			request.getSession().invalidate();
+			return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "현재 고객님께서는 문자온 서비스 이용이 정지된 상태로 팩스를 발송하실 수 없습니다. 이용정지 해제를 원하시면 고객센터로 연락주시기 바랍니다.", LocalDateTime.now()));
+		}
+		
 		try {
 			return ResponseEntity.ok().body(faxService.sendData(faxTranVO, userId));
 //			return ResponseEntity.ok().body(new StatusResponse(HttpStatus.BAD_REQUEST, "임시 성공.", LocalDateTime.now()));
src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java
--- src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java
+++ src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkController.java
@@ -23,6 +23,7 @@
 import itn.let.kakao.kakaoComm.kakaoApi.KakaoApiProfileCategory;
 import itn.let.kakao.kakaoComm.kakaoApi.service.KakaoApiService;
 import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService;
+import itn.let.uss.umt.service.EgovUserManageService;
 
 @Controller
 public class KakaoAlimTalkController {
@@ -35,6 +36,10 @@
 	
 	@Resource(name = "kakaoAlimTalkService")
 	private KakaoAlimTalkService kakaoAlimTalkService;
+	
+	/** userManageService */
+	@Resource(name = "userManageService")
+	private EgovUserManageService userManageService;
 	
 	/** EgovMessageSource */
 	@Resource(name="egovMessageSource")
@@ -58,6 +63,16 @@
 		}
 		model.addAttribute("loginVO", loginVO);
 		
+		/**
+		 * 회원 정지된 상태이면 알림톡  설정화면으로 이동되지 않도록 처리
+		 * */
+		boolean mberSttus = userManageService.selectUserStatusInfo(userId);
+		
+		if(!mberSttus) {
+			return "redirect:/web/uat/uia/actionLogout.do";
+		}
+		
+		
 		KakaoVO kakaoVO = new KakaoVO();
 		kakaoVO.setUserId(userId);
 		kakaoVO.setCategoryDepth("1");
src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java
--- src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java
+++ src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkSendController.java
@@ -15,6 +15,7 @@
 import java.util.stream.Collectors;
 
 import javax.annotation.Resource;
+import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
 import org.apache.poi.ss.usermodel.Cell;
@@ -50,7 +51,6 @@
 import itn.let.kakao.kakaoComm.kakaoApi.service.KakaoApiService;
 import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService;
 import itn.let.mjo.mjocommon.MjonCommon;
-import itn.let.mjo.msg.service.MjonMsgVO;
 import itn.let.mjo.msgdata.service.MjonMsgDataService;
 import itn.let.mjo.msgdata.service.MjonMsgDataVO;
 import itn.let.mjo.msgdata.service.MjonMsgReturnVO;
@@ -473,6 +473,7 @@
 //	@ResponseBody
 	public ModelAndView kakaoAlimTalkMsgSendAjax(
 //			@RequestBody KakaoVO kakaoVO
+			HttpServletRequest request,
 			@ModelAttribute("kakaoVO")  KakaoVO kakaoVO
 		) throws Exception {
 		ModelAndView modelAndView = new ModelAndView();		
@@ -492,6 +493,24 @@
 				modelAndView.addObject("result", "loginFail");
 				return modelAndView;
 			}else {
+				
+        		/**
+        		 * 회원 정지된 상태이면 알림톡 발송이 안되도록 처리함
+        		 * 현재 로그인 세션도 만료 처리함
+        		 * */
+        		boolean mberSttus = userManageService.selectUserStatusInfo(userId);
+        		
+        		if(!mberSttus) {
+        			
+        			modelAndView.addObject("message", "현재 고객님께서는 문자온 서비스 이용이 정지된 상태로 알림톡을 발송하실 수 없습니다. 이용정지 해제를 원하시면 고객센터로 연락주시기 바랍니다.");
+        			modelAndView.addObject("result", "authFail");
+        			
+        			request.getSession().invalidate();
+        			
+        			return modelAndView;
+        			
+        		}
+        		
 /** 카카오톡 전송 기본 설정 -------------------------------------------*/
 				kakaoVO.setSendType("AT");
 				kakaoVO.setMsgType("8");
src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java
--- src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java
+++ src/main/java/itn/let/kakao/user/kakaoAt/web/KakaoAlimTalkTemplateController.java
@@ -39,6 +39,7 @@
 import itn.let.mjo.symbol.service.MjonSymbolService;
 import itn.let.mjo.symbol.service.MjonSymbolVO;
 import itn.let.uss.ion.cnt.service.CntManageVO;
+import itn.let.uss.umt.service.EgovUserManageService;
 
 @Controller
 public class KakaoAlimTalkTemplateController {
@@ -51,6 +52,10 @@
 	
 	@Resource(name = "kakaoAlimTalkService")
 	private KakaoAlimTalkService kakaoAlimTalkService;
+	
+	/** userManageService */
+	@Resource(name = "userManageService")
+	private EgovUserManageService userManageService;
 	
 	/** EgovMessageSource */
 	@Resource(name="egovMessageSource")
@@ -101,6 +106,15 @@
 		}
 		model.addAttribute("loginVO", loginVO);
 		
+		/**
+		 * 회원 정지된 상태이면 알림톡  템플릿 등록 화면으로 이동되지 않도록 처리
+		 * */
+		boolean mberSttus = userManageService.selectUserStatusInfo(userId);
+		
+		if(!mberSttus) {
+			return "redirect:/web/uat/uia/actionLogout.do";
+		}
+		
 		KakaoVO kakaoVO = new KakaoVO();
 		kakaoVO.setUserId(userId);
 		kakaoVO.setCategoryDepth("1");
src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java
--- src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java
+++ src/main/java/itn/let/kakao/user/stepInfo/web/KakaoStepInfoController.java
@@ -26,6 +26,7 @@
 import itn.let.cop.bbs.service.BoardVO;
 import itn.let.cop.bbs.service.EgovBBSAttributeManageService;
 import itn.let.cop.bbs.service.EgovBBSManageService;
+import itn.let.uss.umt.service.EgovUserManageService;
 
 @Controller
 public class KakaoStepInfoController {
@@ -42,6 +43,10 @@
 	
 	@Resource(name = "EgovFileMngService")
 	private EgovFileMngService fileService;
+	
+	/** userManageService */
+	@Resource(name = "userManageService")
+	private EgovUserManageService userManageService;
 	
 
 	/**
@@ -64,6 +69,15 @@
 		}
 		model.addAttribute("loginVO", loginVO);
 		
+		/**
+		 * 회원 정지된 상태이면 알림톡  사용안내 화면으로 이동되지 않도록 처리
+		 * */
+		boolean mberSttus = userManageService.selectUserStatusInfo(userId);
+		
+		if(!mberSttus) {
+			return "redirect:/web/uat/uia/actionLogout.do";
+		}
+		
 		BoardMasterVO bmVO = new BoardMasterVO();
 		PaginationInfo paginationInfo = new PaginationInfo();
 		Map<String, Object> map = new HashMap<String, Object>();
src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java
--- src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java
+++ src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateService.java
@@ -13,4 +13,7 @@
 	
 	// 선거문자 후보자 삭제 처리
 	public int deleteCandidateDataInfo(MjonCandidateVO mjonCandidateVO) throws Exception;
+	
+	// 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기
+	public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception;
 }
src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java
--- src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java
+++ src/main/java/itn/let/mjo/msgcampain/service/MjonCandidateVO.java
@@ -21,7 +21,8 @@
 	private String lastUpdusrId;
 	
 	private String dataType;
-	
+	private String emailFullStr;
+	private String regidentNoFullStr;
 	
 	public int getCandidateId() {
 		return candidateId;
@@ -120,10 +121,18 @@
 	public void setDataType(String dataType) {
 		this.dataType = dataType;
 	}
-	
-	
-	
-	
-	
+	public String getEmailFullStr() {
+		return emailFullStr;
+	}
+	public void setEmailFullStr(String emailFullStr) {
+		this.emailFullStr = emailFullStr;
+	}
+	public String getRegidentNoFullStr() {
+		return regidentNoFullStr;
+	}
+	public void setRegidentNoFullStr(String regidentNoFullStr) {
+		this.regidentNoFullStr = regidentNoFullStr;
+	}
+
 	
 }
src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java
--- src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java
+++ src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateDAO.java
@@ -27,4 +27,10 @@
 		
 		return update("mjonCandidateDAO.deleteCandidateDataInfo", mjonCandidateVO);
 	}	
+	
+	// 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기
+	public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception{
+		
+		return update("mjonCandidateDAO.updateTaxBillMemberInfo", mjonCandidateVO);
+	}
 }
src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java
--- src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java
+++ src/main/java/itn/let/mjo/msgcampain/service/impl/MjonCandidateServiceImpl.java
@@ -33,4 +33,9 @@
 		
 		return mjonCandidateDAO.deleteCandidateDataInfo(mjonCandidateVO);
 	}
+	
+	// 선거문자 후보자 등록/수정시 회원정보 테이블 세금계산서 정보 수정해주기
+	public int updateTaxBillMemberInfo(MjonCandidateVO mjonCandidateVO) throws Exception{
+		return mjonCandidateDAO.updateTaxBillMemberInfo(mjonCandidateVO);
+	}
 }
src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java
--- src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java
+++ src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java
@@ -570,6 +570,7 @@
 		model.addAttribute("resultPhoList", resultPhoList);
 		paginationInfo.setTotalRecordCount( resultPhoList.size()> 0 ? ((Long)((EgovMap)resultPhoList.get(0)).get("totCnt")).intValue() : 0);
 		model.addAttribute("paginationInfo", paginationInfo);
+		model.addAttribute("mberManageVO", mberManageVO);
 		
 		return "web/msgcampain/MsgDataSMLView";
 	}
@@ -598,65 +599,97 @@
 		LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
     	String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId());
     	
-    	if(userId.equals("")) {
+    	try {
     		
-    		modelAndView.addObject("result", "loginFail");
-    		modelAndView.addObject("message", "로그인이 필요합니다.");
-    		return modelAndView;
+    		if(userId.equals("")) {
+        		
+        		modelAndView.addObject("result", "loginFail");
+        		modelAndView.addObject("message", "로그인이 필요합니다.");
+        		return modelAndView;
+        		
+        	}else {
+        		
+        		mjonCandidateVO.setMberId(userId);
+        		
+        	}
     		
-    	}else {
+        	MjonVOParamXssValues XssParam = new MjonVOParamXssValues();
+        	
+        	int XssCnt = XssParam.buildUri(mjonCandidateVO);
+        	
+        	if(XssCnt > 0) {
+        		
+        		modelAndView.addObject("result", "fail");
+        		modelAndView.addObject("message", "후보자 등록 정보에 잘못된 문자열이 있습니다.");
+        		return modelAndView;
+        		
+        	}
+        	
+    		int resultCnt = 0;
+    		String dataType = mjonCandidateVO.getDataType();
     		
-    		mjonCandidateVO.setMberId(userId);
+    		//주민번호 앞, 뒷 자리 암호화 처리하기
+    		String regidentNo1 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo1());
+    		String regidentNo2 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo2());
     		
-    	}
-		
-    	MjonVOParamXssValues XssParam = new MjonVOParamXssValues();
-    	
-    	int XssCnt = XssParam.buildUri(mjonCandidateVO);
-    	
-    	if(XssCnt > 0) {
+    		mjonCandidateVO.setRegidentNo1(regidentNo1);
+    		mjonCandidateVO.setRegidentNo2(regidentNo2);
     		
-    		modelAndView.addObject("result", "fail");
-    		modelAndView.addObject("message", "후보자 등록 정보에 잘못된 문자열이 있습니다.");
-    		return modelAndView;
+    		if(dataType.equals("Upt")) {
+    			
+    			resultCnt = mjonCandidateService.updateCandidateDataInfo(mjonCandidateVO);
+    			
+    		}else {
+    			
+    			resultCnt = mjonCandidateService.insertCandidateDataInfo(mjonCandidateVO);
+    			
+    		}
     		
-    	}
-    	
-		int resultCnt = 0;
-		String dataType = mjonCandidateVO.getDataType();
-		
-		//주민번호 앞, 뒷 자리 암호화 처리하기
-		String regidentNo1 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo1());
-		String regidentNo2 = egovCryptoUtil.encrypt(mjonCandidateVO.getRegidentNo2());
-		
-		mjonCandidateVO.setRegidentNo1(regidentNo1);
-		mjonCandidateVO.setRegidentNo2(regidentNo2);
-		
-		if(dataType.equals("Upt")) {
+    		/*
+    		 * 20231122 우영두 수정
+    		 * 후보자 등록/수정시 후보자 정보에 대한 세금계산서 정보가 등록되어야 함. 
+    		 * 선거문자를 이용하는 개인 회원은 세금계산서를 후보자에 대한 것을 신청하기 때문에 회원정보의 세금계산서 정보를 업데이트 하도록 함.
+    		 * 
+    		 * */
+    		if(resultCnt > 0) {
+    			
+    			//후보자 담당자 이메일 주소 합쳐주기
+    			mjonCandidateVO.setEmailFullStr(mjonCandidateVO.getEmail() + "@" + mjonCandidateVO.getEmailDomain());
+    			
+    			// 주민번호 복호화 하기
+    			regidentNo1 = egovCryptoUtil.decrypt(mjonCandidateVO.getRegidentNo1());
+    	    	regidentNo2 = egovCryptoUtil.decrypt(mjonCandidateVO.getRegidentNo2());
+    	    	
+    	    	mjonCandidateVO.setRegidentNoFullStr(regidentNo1+regidentNo2);
+    			
+    			mjonCandidateService.updateTaxBillMemberInfo(mjonCandidateVO);
+    			
+    		}
+    		
+    		if(resultCnt > 0 && dataType.equals("Upt")) {
+    			
+    			modelAndView.addObject("result", "success");
+    			modelAndView.addObject("message", "후보자 정보의 수정이 완료되었습니다.");
+    			
+    		}else if(resultCnt > 0 && dataType.equals("Reg")) {
+    			
+    			modelAndView.addObject("result", "success");
+    			modelAndView.addObject("message", "후보자 등록이 완료되었습니다.");
+    			
+    		}else {
+    			
+    			modelAndView.addObject("result", "fail");
+    			modelAndView.addObject("message", "후보자 등록에 오류가 발생하였습니다.");
+    			
+    		}
 			
-			resultCnt = mjonCandidateService.updateCandidateDataInfo(mjonCandidateVO);
-			
-		}else {
-			
-			resultCnt = mjonCandidateService.insertCandidateDataInfo(mjonCandidateVO);
-			
-		}
-		
-		
-		if(resultCnt > 0 && dataType.equals("Upt")) {
-			
-			modelAndView.addObject("result", "success");
-			modelAndView.addObject("message", "후보자 정보의 수정이 완료되었습니다.");
-			
-		}else if(resultCnt > 0 && dataType.equals("Reg")) {
-			
-			modelAndView.addObject("result", "success");
-			modelAndView.addObject("message", "후보자 등록이 완료되었습니다.");
-			
-		}else {
+		} catch (Exception e) {
+			System.out.println("insertCandidateDataInfoAjax Controller Error!!! " + e);
 			
 			modelAndView.addObject("result", "fail");
 			modelAndView.addObject("message", "후보자 등록에 오류가 발생하였습니다.");
+			
+			return modelAndView;
 			
 		}
 		
@@ -686,40 +719,47 @@
 		LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
     	String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId());
     	
-    	if(userId.equals("")) {
+    	try {
+			
+    		if(userId.equals("")) {
+        		
+        		modelAndView.addObject("result", "loginFail");
+        		modelAndView.addObject("message", "로그인이 필요합니다.");
+        		return modelAndView;
+        		
+        	}else {
+        		
+        		mjonCandidateVO.setMberId(userId);
+        		
+        	}
     		
-    		modelAndView.addObject("result", "loginFail");
-    		modelAndView.addObject("message", "로그인이 필요합니다.");
-    		return modelAndView;
+        	MjonVOParamXssValues XssParam = new MjonVOParamXssValues();
+        	
+        	int XssCnt = XssParam.buildUri(mjonCandidateVO);
+        	
+    		int resultCnt = 0;
     		
-    	}else {
+    			resultCnt = mjonCandidateService.deleteCandidateDataInfo(mjonCandidateVO);
+    			
+    		if(resultCnt > 0 ) {
+    			
+    			modelAndView.addObject("result", "success");
+    			modelAndView.addObject("message", "후보자 정보의 삭제 완료되었습니다.");
+    			
+    			
+    		}else {
+    			
+    			modelAndView.addObject("result", "fail");
+    			modelAndView.addObject("message", "후보자 삭제에 오류가 발생하였습니다.");
+    			
+    		}
     		
-    		mjonCandidateVO.setMberId(userId);
-    		
-    	}
-		
-    	MjonVOParamXssValues XssParam = new MjonVOParamXssValues();
-    	
-    	int XssCnt = XssParam.buildUri(mjonCandidateVO);
-    	
-    	
-		int resultCnt = 0;
-		
-			
-			resultCnt = mjonCandidateService.deleteCandidateDataInfo(mjonCandidateVO);
-			
-		
-		
-		if(resultCnt > 0 ) {
-			
-			modelAndView.addObject("result", "success");
-			modelAndView.addObject("message", "후보자 정보의 삭제 완료되었습니다.");
-			
-			
-		}else {
+		} catch (Exception e) {
+			System.out.println("deleteCandidateDataInfoAjax Controller Error!!! " + e);
 			
 			modelAndView.addObject("result", "fail");
 			modelAndView.addObject("message", "후보자 삭제에 오류가 발생하였습니다.");
+			return modelAndView;
 			
 		}
 		
src/main/java/itn/let/mjo/pay/web/MjonPayController.java
--- src/main/java/itn/let/mjo/pay/web/MjonPayController.java
+++ src/main/java/itn/let/mjo/pay/web/MjonPayController.java
@@ -3425,10 +3425,77 @@
 		LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
 		String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId());
 		
-    	mberManageVO.setUniqId(userId);
-    	mberManageService.updateTaxbill(mberManageVO);
-    	
-    	redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("success.common.update"));
+		if(userId.equals("")) {
+			
+			redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("fail.common.login"));
+			return "redirect:/web/member/pay/BillPub.do";
+			
+		}
+		
+		try {
+			
+			//세금계산서 정보 수정해주기
+			mberManageVO.setUniqId(userId);
+	    	mberManageService.updateTaxbill(mberManageVO);
+	    	
+	    	/*
+	    	 * 20231122 우영두 기능 추가
+	    	 * 개인회원인 경우 
+	    	 * 세금계산서 타입이 개인인 경우
+	    	 * 후보자 정보가 있는지 확인하여 후보자 정보가 있다면 세금계산서 정보와 일치하도록 변경된 정보를 후보자 정보도 수정해준다.
+	    	 * */
+			String mberId = loginVO.getId();
+			String taxCNm = mberManageVO.getTaxCNm();
+			
+	    	MberManageVO tmpMberManageVO = mjonMsgDataService.selectMberManageInfo(mberId);
+	    	String dept = tmpMberManageVO.getDept();
+	    	
+	    	if(dept.equals("p") && taxCNm != null && taxCNm.length() > 0) {
+	    		
+	    		MjonCandidateVO mjonCandidateVO = mjonCandidateService.selectCandidateDataInfo(mberId);
+	    		String candidateNm = mjonCandidateVO.getCandidateNm();
+	    		if(candidateNm != null && candidateNm.length() > 0) {
+	    			
+	    			MjonCandidateVO updtCandidateVO = new MjonCandidateVO();
+	    			
+	    			//이메일 정보 아이디/도메인 정보 분리
+	    			String email = mberManageVO.getTaxMngEmail().split("@")[0];
+	    			String emailDomain = mberManageVO.getTaxMngEmail().split("@")[1];
+	    			
+	    			/*
+	    			 * 주민번호 앞, 뒷 자리 암호화 처리하기
+	    			 * 세금계산서에서 주민번호는 별도로 암/복호화 처리를 안하고 저장함
+	    			 * 기본 가비아 암호화 솔루션 처리로 안한것 같음, 후보자 정보 쪽에서는 전자정부 프레임워크의 암/복호화 적용하여 저장함.
+	    			 * 
+	    			 * */
+	        		String regidentNo1 = egovCryptoUtil.encrypt(mberManageVO.getTaxCIhidNum().substring(0, 6));
+	        		String regidentNo2 = egovCryptoUtil.encrypt(mberManageVO.getTaxCIhidNum().substring(6, 13));
+	        		
+	        		updtCandidateVO.setMberId(mberId);
+	        		updtCandidateVO.setCandidateNm(taxCNm); 
+	        		updtCandidateVO.setRegidentNo1(regidentNo1);
+	        		updtCandidateVO.setRegidentNo2(regidentNo2);
+	        		updtCandidateVO.setCandidateAddr(mberManageVO.getTaxCAddr());
+	        		updtCandidateVO.setManagerNm(mberManageVO.getTaxMngNm());
+	        		updtCandidateVO.setPhoneNo(mberManageVO.getTaxMngPhoneNum());
+	        		updtCandidateVO.setEmail(email);
+	        		updtCandidateVO.setEmailDomain(emailDomain);
+	        		updtCandidateVO.setLastUpdusrId(mberId);
+	        		
+	        		int resultCnt = mjonCandidateService.updateCandidateDataInfo(updtCandidateVO);
+	    			
+	    		}
+	    		
+	    	}
+	    	
+	    	redirectAttributes.addFlashAttribute("message", egovMessageSource.getMessage("success.common.update"));
+			
+		} catch (Exception e) {
+			System.out.println("updateTaxbill Controller Error!!! " + e);
+			
+			redirectAttributes.addFlashAttribute("message", "세금계산서 정보 수정 중 오류가 발생하였습니다.");
+	    	return "redirect:/web/member/pay/BillPub.do";
+		}
     	
     	return "redirect:/web/member/pay/BillPub.do";
 	}
src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java
--- src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java
+++ src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgDAO.java
@@ -356,4 +356,17 @@
 		
 		return update("MjonReservMsgDAO.updateReserveTimeBizMsgSeqListByMsgSeq", mjonResvMsgVO);
 	}
+	
+	/**
+	* @Method Name : selectMjonMsgGroupDataByGroupId
+	* @작성일 : 2023. 11. 23.
+	* @작성자 :  우영두
+	* @Method 설명 : 문자발송 그룹 데이터 테이블 데이터 조회 , 예약취소시 문자발송 정보 조회를 위해 사용
+	* 예약취소시 전송사별 발송테이블의 데이터 삭제는 완료되었으나, mj_msg_data 테이블의 Deadlock 상황으로 오류 발생시 처리를 위해서 사용
+	*/
+	public MjonResvMsgVO selectMjonMsgGroupDataChkByGroupId(MjonResvMsgVO mjonResvMsgVO) {
+		
+		return (MjonResvMsgVO) select("MjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId", mjonResvMsgVO);
+	}
+	
 }
src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java
--- src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java
+++ src/main/java/itn/let/mjo/reservmsg/service/impl/MjonReservMsgServiceImpl.java
@@ -85,6 +85,9 @@
 		int result = 0;
 		
 		try {
+			System.out.println("================= 예약 취소 처리 시작============================");
+			System.out.println("================= 메세지 그룹 아이디============================" + mjonResvMsgVO.getMsgGroupId());
+			
 			
 			String agentCode = mjonResvMsgVO.getAgentCode();	//전송사 코드번호
 			String msgType = mjonResvMsgVO.getMsgType();		//문자 종류 - 4:단문, 6:장문
@@ -102,72 +105,58 @@
 			
 			mjonResvMsgVO.setUserDataList(userDataList);
 			
-			int ihResult = 0;
-			int imoResult = 0;
+			//int ihResult = 0;
+			//int imoResult = 0;
 			int bizResult = 0;
 			int jjResult = 0;
 			int ivtResult = 0;
-			int FHSmsResult = 0;
-			int FHMmsResult = 0;
+			//int FHSmsResult = 0;
+			//int FHMmsResult = 0;
 			int jjB01Result = 0;
 			int jjB02Result = 0;
 			
 			//아이하트 예약취소 삭제
-			ihResult = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO);
+			//ihResult = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO);
 			
 			//현대퓨처넷 단문예약취소 삭제
-			FHSmsResult = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO);
+			//FHSmsResult = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO);
 
 			//현대퓨처넷 장문/그림 문예약취소 삭제
-			FHMmsResult = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO);
+			//FHMmsResult = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO);
 			
 			//아이엠오 예약취소 삭제
-			imoResult = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO);
+			//imoResult = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO);
 			
 			//비트뿌리오 예약취소 삭제
 			bizResult = mjonReservMsgDAO.deleteBizMsgSeqListByMsgSeq(mjonResvMsgVO);
+			System.out.println("============================== 다우기술 예약 취소 건수 ::: "+bizResult);
 			
 			//제이제이 예약취소 삭제
 			jjResult = mjonReservMsgDAO.deleteJJMsgSeqListByMsgSeq(mjonResvMsgVO);
+			System.out.println("============================== 제이제이 예약 취소 건수 ::: "+jjResult);
 			
 			//인비토 예약취소 삭제
 			ivtResult = mjonReservMsgDAO.deleteIVTMsgSeqListByMsgSeq(mjonResvMsgVO);
+			System.out.println("============================== 인비토 예약 취소 건수 ::: "+ivtResult);
 			
 			//제이제이 B01 예약취소 삭제
 			jjB01Result = mjonReservMsgDAO.deleteJJB01MsgSeqListByMsgSeq(mjonResvMsgVO);
+			System.out.println("============================== 제이제이 B01 예약 취소 건수 ::: "+jjB01Result);
 			
 			//제이제이 B02 예약취소 삭제
 			jjB02Result = mjonReservMsgDAO.deleteJJB02MsgSeqListByMsgSeq(mjonResvMsgVO);
+			System.out.println("============================== 제이제이 B02 예약 취소 건수 ::: "+jjB02Result);
 			
 			//삭제 결과 합산
-			result = ihResult + FHSmsResult + FHMmsResult + imoResult + bizResult +jjResult + ivtResult + jjB01Result + jjB02Result;
+			//result = ihResult + FHSmsResult + FHMmsResult + imoResult + bizResult +jjResult + ivtResult + jjB01Result + jjB02Result;
+			result = bizResult +jjResult + ivtResult + jjB01Result + jjB02Result;
+			System.out.println("============================== 총 예약 취소 건수 ::: "+result);
 			
-			//각 전송사별 문자 발송 테이블에서 데이터 삭제 처리
-			/*if(agentCode.equals("01")) { //아이하트 메세지 삭제
-				
-				result = mjonReservMsgDAO.deleteIHeartMsgSeqListByMsgSeq(mjonResvMsgVO);
-				
-			}else if(agentCode.equals("02")) { //현대퓨쳐넷 메세지 삭제
-				
-				if(msgType.equals("4")) { //단문 삭제
-					
-					result = mjonReservMsgDAO.deleteHFNSmsMsgSeqListByMsgSeq(mjonResvMsgVO);
-					
-				}else { //장문, 그림 삭제
-					
-					result = mjonReservMsgDAO.deleteHFNMmsMsgSeqListByMsgSeq(mjonResvMsgVO);
-					
-				}
-				
-			}else { //아이엠오 메세지 삭제
-				
-				result = mjonReservMsgDAO.deleteIMOMsgSeqListByMsgSeq(mjonResvMsgVO);
-				
-			}*/
 			
 			//예약 취소 환불 처리
 			if(result > 0) {
 				
+				System.out.println("========================예약취소 상태값 변경 및 환불 처리============================");
 				//mj_msg_data 테이블 예약 취소 값 수정
 				mjonReservMsgDAO.updateResvMsgCancelDataFlag(mjonResvMsgVO);
 				
@@ -252,6 +241,102 @@
 					
 				}
 				
+			}else if(result == 0){
+				
+				//문자 발송 그룹 테이블의 데이터에 예약 취소가 되었는지 조회
+				MjonResvMsgVO tmpMjonResvMsgVO = mjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId(mjonResvMsgVO);
+				String reserveCYn = tmpMjonResvMsgVO.getReserveCYn();
+				
+				if(reserveCYn.equals("N")) {
+					
+					result = Integer.parseInt(tmpMjonResvMsgVO.getMsgGroupCnt());
+					
+					System.out.println("========================예약취소 상태값 변경 및 환불 처리============================");
+					//mj_msg_data 테이블 예약 취소 값 수정
+					mjonReservMsgDAO.updateResvMsgCancelDataFlag(mjonResvMsgVO);
+					
+					//mj_msg_group_data 테이블 예약 취소 값 수정
+					mjonReservMsgDAO.updateResvMsgCancelGroupFlag(mjonResvMsgVO);
+					
+					MjonMsgVO mjonMsgVO = mjonReservMsgDAO.selectMjonMsgGroupData(mjonResvMsgVO);
+					
+					//문자 발송 캐시 차감 해주기
+					MjonPayVO mjonPayVO = new MjonPayVO(); 
+					
+					mjonPayVO.setCashId(idgenMjonCashId.getNextStringId());
+					mjonPayVO.setUserId(mjonMsgVO.getUserId());
+					mjonPayVO.setCash(Float.parseFloat(mjonMsgVO.getTotPrice()));
+					mjonPayVO.setFrstRegisterId(mjonMsgVO.getUserId());
+					mjonPayVO.setMemo("예약문자 취소 " + result + "건  환불");
+					mjonPayVO.setMsgGroupId(mjonMsgVO.getMsgGroupId());
+					
+					mjonPayDAO.insertCash(mjonPayVO); //캐시 환불 
+					mjonPayDAO.updateMemberCash(mjonPayVO); //회원정보 업데이트
+					
+					String eventYn = mjonMsgVO.getEventYn();
+					
+					if(eventYn.equals("Y")) {//이벤트 단가로 발송한 문자인 경우에만 이벤트 환불 처리해줌
+						
+						//이벤트 회원의 경우 이벤트 캐시도 환불 처리해줌.
+						MjonEventVO mjonEventVO = new MjonEventVO();
+						mjonEventVO.setMberId(mjonMsgVO.getUserId());
+						MjonEventVO eventMberInfo = mjonEventDAO.selectEventMsgMberDefaultInfo(mjonEventVO);
+						
+						float eventRemainCash = 0;
+						boolean compareEndDate = false;
+						
+						if(eventMberInfo != null) {
+							
+							String eventEndDate = eventMberInfo.getEventEndDate(); //이벤트 종료 일자
+							String eventStatus = eventMberInfo.getEventStatus();	//이벤트 진행 상태
+							
+							
+							/**
+							 * MJUtil.getCompareDate()
+							 * 현재 날짜와 파라미터 전달 날짜를 비교
+							 * 전달날짜를 지난경우 False를 리턴함.
+							 * 현재날짜 이전 혹은 같은 날짜면 True를 리턴함.
+							 * 
+							 * */
+							
+							if(eventStatus.equals("Y") || eventStatus.equals("E")) {//현재 이벤트를 진행 중이거나, 종료 된경우 환불 처리해줌
+								
+								if(eventEndDate != null) {//이벤트 종료일이 지나지 않은 회원만 환불 처리해줌.
+									compareEndDate = MJUtil.getCompareDate(eventEndDate);
+									eventRemainCash = (float) eventMberInfo.getEventRemainCash();
+									
+									
+									if(compareEndDate) {//현재 시간이 이벤트 종료일이 지나지 않았다면
+									
+										float totEventRemainCash = eventRemainCash + Float.parseFloat(mjonMsgVO.getTotPrice()); //남은 이벤트 캐시 금액에 환불해줄 캐시 금액을 더해준다.
+										
+										//이벤트 상태값을 종료로 변경한다.
+										mjonEventVO.setEventInfoId(eventMberInfo.getEventInfoId());
+										
+										if(eventStatus.equals("E")) {//이벤트가 종료 된 상태에서 예약 취소를 진행하는 경우 이벤트 종료에서 진행으로 변경 후 캐시 환불 처리
+										
+											mjonEventVO.setEventStatus("Y");
+											mjonEventVO.setEventMemo("예약문자 취소로 인한 환물 및 종료되었던 이벤트 진행으로 변경");
+											
+										}else {//진행중인 경우 기존 상태값 그대로 적용해준다.
+											
+											mjonEventVO.setEventStatus(eventStatus);
+											
+										}
+										
+										mjonEventVO.setEventRemainCash(totEventRemainCash);
+										mjonEventDAO.updateEventEndStatus(mjonEventVO);
+										
+									}
+								}
+								
+							}
+							
+						}
+						
+					}
+				}
+				
 				
 			}
 			
src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java
--- src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java
+++ src/main/java/itn/let/mjo/reservmsg/web/MjonReservMsgController.java
@@ -513,7 +513,7 @@
 			
 		}else {
 			
-			modelAndView.addObject("message", "예약 발송 처리가 실패 되었습니다.");
+			modelAndView.addObject("message", "예약 발송 취소 처리가 실패 되었습니다. 잠시 후 다시 시도해 주세요.");
 			modelAndView.addObject("result", "fail");
 			
 		}
src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java
--- src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java
+++ src/main/java/itn/let/uat/uia/service/impl/EgovMberManageServiceImpl.java
@@ -584,4 +584,23 @@
 		mberManageDAO.insertCertInfoLog(certVO);
 		
 	}
+	
+	@Override
+	//기업회원 기업정보 변경신청 취소 처리
+	public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception{
+		
+		int resultCnt = 0;
+		
+		try {
+			
+			resultCnt = mberManageDAO.updateCmpUserInfoCancel(mberManageVO);
+			
+		} catch (Exception e) {
+			System.out.println("updateCmpUserInfoCancel Service Imple Error!!!" + e);
+		}
+		
+		return resultCnt;
+	}
+	
+	
 }
(No newline at end of file)
src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java
--- src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java
+++ src/main/java/itn/let/uat/uia/service/impl/MberManageDAO.java
@@ -313,4 +313,20 @@
 		return (List<String>) list("mberManageDAO.selectMemberLoginIpList", mberId);
 	}
 	
+	//기업회원 기업정보 변경신청 취소 처리
+	public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception{
+		
+		int resultCnt = 0;
+		
+		try {
+			
+			resultCnt = update("mberManageDAO.updateCmpUserInfoCancel", mberManageVO);
+			
+		} catch (Exception e) {
+			System.out.println("updateCmpUserInfoCancel DAO Error!!!" + e);
+		}
+		
+		return resultCnt;
+	}
+	
 }
(No newline at end of file)
src/main/java/itn/let/uat/uia/web/EgovMypageController.java
--- src/main/java/itn/let/uat/uia/web/EgovMypageController.java
+++ src/main/java/itn/let/uat/uia/web/EgovMypageController.java
@@ -988,6 +988,50 @@
 		} 
 		return modelAndView;
 	}
+	
+	
+	/**
+	 * 마이페이지 기업정보 변경 취소 처리
+	 */
+	@RequestMapping(value="/web/user/updateCmpUserInfoCancelAjax.do")
+	public ModelAndView updateCmpUserInfoCancelAjax(@ModelAttribute MberManageVO mberManageVO
+			, HttpServletRequest request
+			, HttpServletResponse response) throws Exception {
+		ModelAndView modelAndView = new ModelAndView();
+		modelAndView.setViewName("jsonView");
+		
+		LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
+		
+		if(loginVO == null) {
+			
+			modelAndView.addObject("result", "loginFail");
+			
+			return modelAndView;
+		}
+		
+		try {
+			
+			//취소 회원 아이디 셋팅
+			mberManageVO.setLastUpdusrId(loginVO.getId());
+			
+			//기업회원 변경 취소 Update 처리 hstType = 05, hstSttus = 04로 변경 
+			mberManageService.updateCmpUserInfoCancel(mberManageVO);
+			
+			modelAndView.addObject("result", "success");
+			
+		} catch (Exception e) {
+			
+			System.out.println("updateCmpUserInfoCancelAjax Controller Error!!!! " + e); 
+			
+			modelAndView.addObject("message", "기업회원 정보변경 취소요청 처리 중 오류가 발생하였습니다.");
+			modelAndView.addObject("result", "fail");
+			return modelAndView;
+		}
+		
+		return modelAndView; 
+	}
+	
+	
 /*	*//**
 	 * 마이페이지 기업정보 변경
 	 *//*
src/main/java/itn/let/uss/umt/service/EgovMberManageService.java
--- src/main/java/itn/let/uss/umt/service/EgovMberManageService.java
+++ src/main/java/itn/let/uss/umt/service/EgovMberManageService.java
@@ -238,4 +238,7 @@
 	
 	// 이용정지회원 금일, 금년 잔액 합계
 	public MberManageVO selectMberStopCashSum(MberManageVO mberManageVO) throws Exception;	
+	
+	//기업회원 기업정보 변경신청 취소 처리
+	public int updateCmpUserInfoCancel(MberManageVO mberManageVO) throws Exception;
 }
(No newline at end of file)
src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml
--- src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml
+++ src/main/resources/egovframework/spring/com/context-scheduling-sym-log-lgm.xml
@@ -92,35 +92,34 @@
 
 
 	<!-- 3-1 -->
-	<!-- 문자전송순위통계집계  -->
-	<bean id="SttstMsgRankBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
+	<!-- 문자전송순위통계집계  20231124 사용하지 않는 통계자료로 판단되어 사용 중단 처리 -->
+	<!-- <bean id="SttstMsgRankBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
 		<property name="targetObject" ref="sttstMsgScheduling" />
 		<property name="targetMethod" value="mjSttstMsgRankSmmmary" />
 		<property name="concurrent" value="false" />
-	</bean>
+	</bean> -->
 
-	<bean id="SttstMsgRankBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
+	<!-- <bean id="SttstMsgRankBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
 		<property name="jobDetail" ref="SttstMsgRankBean" />		
-	<!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 -->
+	매시간 43분 47초 마다 일별 문자 발송 데이터 집계
 	   	<property name="cronExpression" value="47 53 0-3,5-23 * * ?" />
-<!-- 	   	<property name="cronExpression" value="8 * * * * ?" /> -->
-	</bean>
+	
+	</bean> -->
 
 
 	<!-- 3-2 -->
-	<!-- 문자전송순위통계집계(하루한번) -->
-	<bean id="SttstMsgRankDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
+	<!-- 문자전송순위통계집계(하루한번)  20231124 사용하지 않는 통계자료로 판단되어 사용 중단 처리 -->
+	<!-- <bean id="SttstMsgRankDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
 		<property name="targetObject" ref="sttstMsgScheduling" />
 		<property name="targetMethod" value="mjSttstMsgRankDaySmmmary" />
 		<property name="concurrent" value="false" />
-	</bean>
+	</bean> -->
 
-	<bean id="SttstMsgRankDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
+	<!-- <bean id="SttstMsgRankDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
 		<property name="jobDetail" ref="SttstMsgRankDayBean" />		
-	<!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 -->
+	매시간 43분 47초 마다 일별 문자 발송 데이터 집계
 	   	<property name="cronExpression" value="47 30 4 * * ?" />
-<!-- 	   	<property name="cronExpression" value="8 * * * * ?" /> -->
-	</bean>
+	</bean> -->
 
 
 	<!-- 14 -->
@@ -151,8 +150,8 @@
 				<ref bean="sysLogTrigger" /><!-- 시스템 로그 요약  -->
 				<ref bean="SttstMsgBeanTrigger" /><!-- 문자발송일별통계집계  -->
 				<ref bean="SttstMsgDayBeanTrigger" /><!-- 문자발송일별통계집계(매일한번)  -->
-				<ref bean="SttstMsgRankBeanTrigger" /><!-- 문자전송순위통계집계  -->
-				<ref bean="SttstMsgRankDayBeanTrigger" /><!-- 문자전송순위통계집계(매일한번)  -->
+				<!-- <ref bean="SttstMsgRankBeanTrigger" /> --><!-- 문자전송순위통계집계  -->
+				<!-- <ref bean="SttstMsgRankDayBeanTrigger" /> --><!-- 문자전송순위통계집계(매일한번)  -->
 
 				<!-- mj_msg_data 백업  -->
 				<ref bean="MjMsgDataBackupBeanTrigger" />
src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml
--- src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/fax/Fax_SQL_Mysql.xml
@@ -525,6 +525,8 @@
 		              SUCC_FAX_USER_COST,
 		              FAIL_FAX_COST,
 		              SUCC_FAX_RATE,
+		              SUCC_PAGE_CNT,
+		              FAIL_PAGE_CNT,
 		              REG_DATE
 		       )
 		SELECT b.reqDate,
@@ -535,6 +537,8 @@
 		       b.succFaxUserCost,
 		       b.failFaxCost,
 		       b.succFaxRate,
+		       b.succPageCnt,
+        	   b.failPageCnt,
 		       b.regDate
 		FROM   ( SELECT  a.reqDate                                                                                                                                                                                                        AS reqDate,
 		                '06'                                                                                                                                                                                                        AS AGENT_CODE,
@@ -544,7 +548,9 @@
 		                SUM( IF(a.Result          = 'SENT', 1, 0)  *a.faxUserCost)                                                                                                                                                                                                        AS succFaxUserCost,
 		                SUM(IF(a.Result           = 'FAIL', 1, 0)  *a.faxCost)                                                                                                                                                                                                        AS failFaxCost,
 		                IF(ROUND((SUM(IF(a.Result = 'SENT', 1, 0)) / IF(SUM(IF(a.Result <> '0', 1, 0)) = 0 , 1 , SUM(IF(a.Result <> '0', 1, 0)))) * 100) IS NOT NULL, ROUND((SUM(IF(a.Result = 'SENT', 1, 0)) / IF(SUM(IF(a.Result <> '0', 1, 0)) = 0 , 1, SUM(IF(a.Result <> '0', 1, 0)))) * 100), 0) AS succFaxRate,
-		                NOW()                                                                                                                                                                                                        AS regDate
+		                NOW()                                                                                                                                                                                                        AS regDate,
+		       			SUM(IF(a.Result          = 'SENT', 1, 0)  *a.resPage) AS succPageCnt,
+                 		SUM(IF(a.Result          = 'FAIL', 1, 0)  *a.resPage) AS failPageCnt
 		       FROM     (SELECT a.*,
 		                        b.EACH_PRICE AS faxUserCost
 		                FROM    mj_fax_summary_view a
@@ -575,6 +581,8 @@
 		       SUCC_FAX_USER_COST            = b.succFaxUserCost,
 		       FAIL_FAX_COST                 = b.failFaxCost,
 		       SUCC_FAX_RATE                 = b.succFaxRate,
+		       SUCC_PAGE_CNT				 = b.succPageCnt,
+		       FAIL_PAGE_CNT				 = b.failPageCnt,
 		       REG_DATE                      = now()
 	</update>
 	
@@ -584,7 +592,9 @@
 		         a.FAIL_FAX_CNT 	AS failFaxCnt,
 		         a.SUCC_FAX_COST 	AS succFaxCost,
 		         a.FAIL_FAX_COST 	AS failFaxCost,
-		         a.SUCC_FAX_RATE 	AS succFaxRate
+		         a.SUCC_FAX_RATE 	AS succFaxRate,
+		         a.SUCC_PAGE_CNT 	AS succPageCnt,
+		         a.FAIL_PAGE_CNT	AS failPageCnt
 		FROM     mj_fax_stat a
 		WHERE    
 				1=1
src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgCampainData_SQL_mysql.xml
@@ -37,7 +37,6 @@
 		              REGIDENT_NO2,
 		              CANDIDATE_ADDR,
 		              MANAGER_NM,
-		              OFFICE,
 		              PHONE_NO,
 		              EMAIL,
 		              EMAIL_DOMAIN,
@@ -54,7 +53,6 @@
 		              #regidentNo2#,
 		              #candidateAddr#,
 		              #managerNm#,
-		              #office#,
 		              #phoneNo#,
 		              #email#,
 		              #emailDomain#,
@@ -75,7 +73,6 @@
 		       REGIDENT_NO2    = #regidentNo2#,
 		       CANDIDATE_ADDR  = #candidateAddr#,
 		       MANAGER_NM      = #managerNm#,
-		       OFFICE          = #office#,
 		       PHONE_NO        = #phoneNo#,
 		       EMAIL           = #email#,
 		       EMAIL_DOMAIN    = #emailDomain#,
@@ -90,6 +87,19 @@
 		WHERE MBER_ID = #mberId#
 	</delete>
 	
+	<update id="mjonCandidateDAO.updateTaxBillMemberInfo" parameterClass="mjonCandidateVO">
+		
+		UPDATE LETTNGNRLMBER SET 
+			TAX_MNG_EMAIL = #emailFullStr#,
+			TAX_MNG_NM = #managerNm#,
+			TAX_MNG_PHONENUM = #phoneNo#,
+			TAX_C_NM = #candidateNm#,
+			TAX_C_IHIDNUM = #regidentNoFullStr#,
+			TAX_C_ADDR = #candidateAddr#
+		WHERE MBER_ID = #mberId#
+	
+	</update>
+	
 </sqlMap>  
 
 
src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgResv_SQL_mysql.xml
@@ -938,6 +938,27 @@
 	
 	</update>
 	
+	<select id="MjonReservMsgDAO.selectMjonMsgGroupDataChkByGroupId" parameterClass="mjonMsgResvVO" resultClass="mjonMsgResvVO">
+		
+		SELECT MSG_GROUP_ID AS msgGroupId,
+		       USER_ID AS userId,
+		       MSG_GROUP_CNT AS msgGroupCnt,
+		       EACH_PRICE AS eachPrice,
+		       TOT_PRICE AS totPrice,
+		       RESERVE_YN AS reserveYn,
+		       RESERVE_C_YN AS reserveCYn,
+		       BEF_CASH AS befCash,
+		       BEF_POINT AS befPoint,
+		       CANCELDATE AS canceldate,
+		       EVENT_YN AS eventYn
+		FROM   MJ_MSG_GROUP_DATA A
+		WHERE  A.USER_ID = #userId#
+		AND A.RESERVE_YN = 'Y'
+		AND A.DEL_FLAG = 'N'
+		AND A.MSG_GROUP_ID = #msgGroupId#
+	
+	</select>
+	
 </sqlMap>  
 
 
src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml
--- src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/uss/umt/EgovMberManage_SQL_Mysql.xml
@@ -1964,4 +1964,15 @@
 		WHERE	LOGIN_ID = #mberId#
 		AND		LOGIN_YN = 'Y'
     </select>    
+    
+    <update id="mberManageDAO.updateCmpUserInfoCancel" parameterClass="mberVO">
+    	
+    	UPDATE LETTNGNRLMBER_CMPHST SET 
+		HST_TYPE = '05'
+		,HST_STTUS = '04'
+		,LAST_UPDUSR_ID = #lastUpdusrId#
+		,LAST_UPDT_PNTTM = NOW()
+		WHERE CMPHST_ID = #cmpHstId#
+    
+    </update>
 </sqlMap>
src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
--- src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
+++ src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
@@ -3295,7 +3295,7 @@
 												
 												<%-- B선 회원 선결제 버튼 처리 --%>
 												<c:if test="${mberManageVO.blineCode ne 'N'}">
-													<button type="button" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
+													<button type="button" class="thinfill" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
 												</c:if>
 											</th>
 											<td>
@@ -3683,7 +3683,7 @@
 												
 												<%-- B선 회원 선결제 버튼 처리 --%>
 												<c:if test="${mberManageVO.blineCode ne 'N'}">
-													<button type="button" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
+													<button type="button" class="thinfill" onclick="fnUserPrePayDataListPopup('${mberManageVO.mberId}'); return false">선결제</button>
 												</c:if>
 											</th>
 											<td>
src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/fax/faxAdmSendStatistics.jsp
@@ -43,33 +43,33 @@
 		fnCalChange("<c:out value='${searchVO.searchDateType}' />");
 	});
 
-// 	function fnCalChange(type) {
-// 		if(type == 'day') {
-// 			$(".calendar_box").show();
-// 			$(".line").show();
-// 			$("#searchYear").hide();
-// 			$("#searchMonth").hide();
-// 			$("#searchQuarter").hide();
-// 		} else if(type == 'month') {
-// 			$(".calendar_box").hide();
-// 			$(".line").hide();
-// 			$("#searchYear").show();
-// 			$("#searchMonth").show();
-// 			$("#searchQuarter").hide();
-// 		} else if(type == 'quarter') {
-// 			$(".calendar_box").hide();
-// 			$(".line").hide();
-// 			$("#searchYear").show();
-// 			$("#searchMonth").hide();
-// 			$("#searchQuarter").show();
-// 		} else if(type == 'year') {
-// 			$(".calendar_box").hide();
-// 			$(".line").hide();
-// 			$("#searchYear").show();
-// 			$("#searchMonth").hide();
-// 			$("#searchQuarter").hide();
-// 		}
-// 	}
+ 	function fnCalChange(type) {
+ 		if(type == 'day') {
+ 			$(".calendar_box").show();
+ 			$(".line").show();
+ 			$("#searchYear").hide();
+ 			$("#searchMonth").hide();
+ 			$("#searchQuarter").hide();
+ 		} else if(type == 'month') {
+ 			$(".calendar_box").hide();
+ 			$(".line").hide();
+ 			$("#searchYear").show();
+ 			$("#searchMonth").show();
+ 			$("#searchQuarter").hide();
+ 		} else if(type == 'quarter') {
+ 			$(".calendar_box").hide();
+ 			$(".line").hide();
+ 			$("#searchYear").show();
+ 			$("#searchMonth").hide();
+ 			$("#searchQuarter").show();
+ 		} else if(type == 'year') {
+ 			$(".calendar_box").hide();
+ 			$(".line").hide();
+ 			$("#searchYear").show();
+ 			$("#searchMonth").hide();
+ 			$("#searchQuarter").hide();
+ 		}
+ 	}
 	
 	function fn_list_search() {
 		var form = document.listForm;
@@ -202,7 +202,6 @@
 			</div>
 			<div class="listTop" style="font-weight: normal; vertical-align:bottom;">
 				(부가세 별도)
-				(30분 단위 업데이트)
 				&nbsp;
 				<input type="button" style="cursor: pointer; height: 30px;" onclick="setTodayUpdate();" value="Today Update">
 			</div>
@@ -210,7 +209,7 @@
 				<table class="tbType1">
 					<colgroup>
 						<col style="width:4%;">
-						<col style="width:3%;">
+						<col style="width:5%;">
 						<col style="width:auto;">
 					</colgroup>
 					<thead>
@@ -228,9 +227,9 @@
 						<c:forEach items="${statList}" var="list">
 							<tr>
 								<td rowspan="2" style="border-right:2px solid #e6e6e6;"><ec:code codeId="ITN019" code="${list.agentCode}" /></td>
-								<td style="border-right:2px solid #e6e6e6;">건</td>
-								<td><c:out value="${list.succFaxCnt}"/></td>
-								<td><c:out value="${list.failFaxCnt}"/></td>
+								<td style="border-right:2px solid #e6e6e6;">건(매)</td>
+								<td><c:out value="${list.succFaxCnt}"/>(<c:out value="${list.succPageCnt}"/>)</td>
+								<td><c:out value="${list.failFaxCnt}"/>(<c:out value="${list.failPageCnt}"/>)</td>
 								<td><c:out value="${list.succFaxRate}"/>%</td>
 							</tr>
 							<tr>
src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp
--- src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/kakao/msgdata/at/KakaoAlimtalkMsgDataView.jsp
@@ -686,6 +686,11 @@
 							alert(returnData.message);
 							return false;
 							
+						}else if('authFail' == returnData.result){
+							
+							alert(returnData.message);
+							location.reload();
+							
 						} else if(status == 'success'){
 							
 							var kakaoSendCnt = returnData.resultSts;
src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp
--- src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataSMLView.jsp
@@ -2839,6 +2839,13 @@
 	
 }
 
+function fn_mberDeptChk(){
+	
+	alert("선거문자는 개인 회원만 이용 가능합니다.");
+	return false;
+	
+}
+
 
 function goToCustom(){
 	var form = document.goToCustomForm;
@@ -3254,11 +3261,9 @@
 				<input type="hidden" id="dataType" name="dataType" value="Reg"/>
 			
 				<div class="layer_in">
-	                <p class="adr_pop_title">선거문자는 반드시 <span class="c_002c9a">후보자 등록</span>을 하셔야만 이용 가능합니다.</p>
+	                <p class="adr_pop_title">선거문자는 반드시 <span class="c_002c9a">후보자 등록</span>을 하셔야만 이용 가능합니다. <br/>입력하신 내용은 세금계산서 발행을 위한 정보로만 사용됩니다.</p>
 					<div class="candidate_table">
 	                    <p>후보자</p>
-	                    
-	                    
 	                    <table>
 	                        <caption>후보자 등록을 위한 성명, 주민등록번호, 주소를 입력하는 표</caption>
 	                        <colgroup>
@@ -3309,13 +3314,13 @@
 	                                    <input type="text" id="managerNm" name="managerNm" value="<c:out value='${mjonCandidateVO.managerNm}'/>" placeholder="담당자 성명 입력" onfocus="this.placeholder=''" onblur="this.placeholder='담당자 성명 입력'" class="inputLight">
 	                                </td>
 	                            </tr>
-	                            <tr>
+	                            <%-- <tr>
 	                                <th scope="row">직위</th>
 	                                <td>
 	                                    <label for="office" class="label"></label>
 	                                    <input type="text" id="office" name="office" value="<c:out value='${mjonCandidateVO.office}'/>" placeholder="직위 입력" onfocus="this.placeholder=''" onblur="this.placeholder='직위 입력'" class="inputLight">
 	                                </td>
-	                            </tr>
+	                            </tr> --%>
 	                            <tr>
 	                                <th scope="row">휴대폰</th>
 	                                <td>
@@ -3589,7 +3594,7 @@
 				<ul class="info_list">
 		    		<li>- 90byte 초과 시, 자동으로 장문으로 전환됩니다.  장문 문자는 최대 2,000byte까지만 작성할 수 있습니다.</li>
 		    		<li>- 그림문자 1건당 최대 3장까지 이미지 첨부 가능  [권장 사이즈 : <strong>640 x 960</strong>픽셀 / 최대용량 : <strong>10MB</strong> 이내]</li>
-		    		<li>- 광고성 메시지는 <span>반드시 아래 유의사항을 사전 확인</span> 후 발송해 주시기 바랍니다.</li>
+		    		<li>- 선거문자는 반드시 발송규정을 사전 확인 후 발송해 주시기 바랍니다.</li>
 		    	</ul>
 				<!-- 이용방법/혜택 -->
 				<div class="cdpop_cont current" id="listTab2_1">
@@ -3827,6 +3832,9 @@
 	        	<c:choose>
 	        		<c:when test="${empty LoginVO}">
 						<button type="button" class="btnType" onclick="javascript:fn_candidateLoginChk(); return false;"><i class="election_btn1"></i>후보자 등록</button>	        		
+	        		</c:when>
+	        		<c:when test="${not empty mberManageVO && mberManageVO.dept eq 'c'}">
+	        			<button type="button" class="btnType" onclick="javascript:fn_mberDeptChk(); return false;"><i class="election_btn1"></i>후보자 등록</button>
 	        		</c:when>
 	        		<c:otherwise>
 	        			<button type="button" class="btnType" data-tooltip="candidate_popup01"><i class="election_btn1"></i>후보자 등록</button>	
@@ -4284,6 +4292,10 @@
              		            <input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/>
      		            		<label for="divideCnt">건씩</label>
              		            <select class="selType1" id="divideTime" name="divideTime">
+             		                <option value="1">01분</option>
+		        		            <option value="2">02분</option>
+		        		            <option value="3">03분</option>
+		        		            <option value="4">04분</option>
              		                <option value="5">05분</option>
              		                <option value="10">10분</option>
              		                <option value="15">15분</option>
src/main/webapp/WEB-INF/jsp/web/msgcampain/excel/MsgExcelDataSMLView.jsp
--- src/main/webapp/WEB-INF/jsp/web/msgcampain/excel/MsgExcelDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgcampain/excel/MsgExcelDataSMLView.jsp
@@ -3777,6 +3777,10 @@
      		            <input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/>
      		            <label for="divideCnt">건씩</label>
      		            <select class="selType1" id="divideTime" name="divideTime">
+     		            	<option value="1">01분</option>
+		        		    <option value="2">02분</option>
+		        		    <option value="3">03분</option>
+		        		    <option value="4">04분</option>
      		                <option value="5">05분</option>
      		                <option value="10">10분</option>
      		                <option value="15">15분</option>
src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataSMLView.jsp
--- src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataSMLView.jsp
@@ -4082,8 +4082,12 @@
              		            <input type="checkbox" id="divideChk" name="divideChk">
              		            <label for="divideChk">분할전송</label>
              		            <input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/>
-             		            <label for="divideCnt">건씩</label> <!-- 2023 10 13 수정 --> 
+             		            <label for="divideCnt">건씩</label> <!-- 2023 11 17 수정 --> 
              		            <select class="selType1" id="divideTime" name="divideTime">
+             		                <option value="1">01분</option>
+             		                <option value="2">02분</option>
+             		                <option value="3">03분</option>
+             		                <option value="4">04분</option>
              		                <option value="5">05분</option>
              		                <option value="10">10분</option>
              		                <option value="15">15분</option>
src/main/webapp/WEB-INF/jsp/web/msgdata/excel/MsgExcelDataSMLView.jsp
--- src/main/webapp/WEB-INF/jsp/web/msgdata/excel/MsgExcelDataSMLView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgdata/excel/MsgExcelDataSMLView.jsp
@@ -3535,6 +3535,10 @@
      		            <input type="text" class="dividType1" id="divideCnt" name="divideCnt" value="20" onkeypress='return checkNumber(event)' maxlength="4"/>
      		            <label for="divideCnt">건씩</label>
      		            <select class="selType1" id="divideTime" name="divideTime">
+     		            	<option value="1">01분</option>
+        		            <option value="2">02분</option>
+        		            <option value="3">03분</option>
+        		            <option value="4">04분</option>
      		                <option value="5">05분</option>
      		                <option value="10">10분</option>
      		                <option value="15">15분</option>
src/main/webapp/WEB-INF/jsp/web/reservedmsg/ReservedMsgView.jsp
--- src/main/webapp/WEB-INF/jsp/web/reservedmsg/ReservedMsgView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/reservedmsg/ReservedMsgView.jsp
@@ -622,8 +622,7 @@
 								</c:if>
 							</div>
 						</div>
-						
-						
+					</div>
                 <div class="excel_middle">
                     <div class="select_btnWrap clearfix">
                         <div class="btn_left">
src/main/webapp/WEB-INF/jsp/web/user/kisaReport.jsp
--- src/main/webapp/WEB-INF/jsp/web/user/kisaReport.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/kisaReport.jsp
@@ -379,7 +379,7 @@
 			<div class="kisa_info">
 				고객님께서 발송하신 문자가 <strong>정보통신법 제50조에 위반되어 한국인터넷진흥원(KISA)에 신고 접수</strong>되었습니다.<br>아래 신고내역을 확인하신 후 소명자료 제출과 서명을 완료해주시기 바랍니다.
 				<p>※ 광고문자 규정 위반 시 최대 1년 이하의 징역 또는 3,000만원 이하의 과태료 부과(해당 발신번호 사용불가)</p>
-				<button type="button" class="btnType btnType11" data-tooltip="popup01">광고법령보기</button>
+				<button type="button" class="btnType btnType11" data-tooltip="kisa_popup">광고법령보기</button>
 			</div>
 			<form id="searchForm" name="searchForm" method="post">
                 <input type="hidden" id="pageIndex" name="pageIndex" value="1"/>
@@ -545,10 +545,10 @@
 		
 		<!-- 광고법령보기팝업 -->
 		<div class="tooltip-wrap">
-			<div class="popup-com popup01 kisa_popup" tabindex="0" data-tooltip-con="popup01" data-focus="popup01" data-focus-prev="popup01-close">
+			<div class="popup-com kisa_popup" tabindex="0" data-tooltip-con="kisa_popup" data-focus="kisa_popup" data-focus-prev="kisa_popup-close">
 				<div class="popup_heading">
 					<p>KISA 신고 대상 관련 법안</p>
-					<button type="button" class="tooltip-close" data-focus="popup01-close">
+					<button type="button" class="tooltip-close" data-focus="kisa_popup-close">
 						<img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기">
 					</button>
 				</div>
@@ -592,7 +592,7 @@
 					</dl>
 				</div>
 				<div class="popup_btn_wrap2">
-					<button type="button" class="tooltip-close" data-focus="popup01-close" data-focus-next="popup01">닫기</button>                      
+					<button type="button" class="tooltip-close" data-focus="kisa_popup-close" data-focus-next="kisa_popup">닫기</button>                      
 	           </div>
 			</div>
 		</div>
src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp
--- src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/mberCompanyInfoChange.jsp
@@ -395,11 +395,13 @@
 
 	var form = document.updateCmpUserInfoForm;
 
-	 if($("#atFileBasicWrite").val() == ''){
+	if($("#atFileBasicWrite").val() == ''){
 		alert("사업자등록증을 첨부해주세요.")
 		return false;
 	}
 
+	form.bizNo.value = $("#bizNo").val().replaceAll('-','');
+	
 	if(doubleSubmitFlag3){
 		alert("이미 재등록하셨습니다.");
 		return false;
@@ -435,6 +437,39 @@
 	}
 	
 }
+
+
+//기업정보 변경 재등록 취소 처리 
+function updateCmpUserReCancel(cmpHstId){
+	
+	if(!confirm("기업회원 변경을 취소하시겠습니까?")){
+		return false;
+	}
+	
+	$.ajax({
+		type : 'POST'
+		,url : "<c:url value='/web/user/updateCmpUserInfoCancelAjax.do'/>"
+		,async:false
+		,data : {"cmpHstId":cmpHstId}
+		,dataType:'json'
+		,success : function(returnData, status){
+			if(returnData.result == "success") {
+				alert("기업회원 정보변경 재등록 취소 요청이 처리되었습니다.");
+				 location.href='/web/user/mberInfoIndex.do'; //마이페이지로 이동
+			} else{
+				alert(returnData.message);
+				return;
+			}
+		}
+		,error : function(request , status, error){
+			alert("기업회원 정보변경 취소요청 처리 중 오류가 발생하였습니다.");
+			console.log("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
+		}
+	});
+	
+}
+
+
 //파일다운로드
 function fn_egov_downFile(atchFileId, fileSn){
 	window.open("<c:url value='/cmm/fms/FileDown.do?atchFileId="+atchFileId+"&fileSn="+fileSn+"'/>");
@@ -495,8 +530,6 @@
 
     <input type="hidden" name="taxMngEmail" id="taxMngEmail" />
 
-
-
 				<div id="passwordCheckPage" style="display: block;">
 					<!-- 비밀번호 확인 -->
 					<div class="heading">
@@ -534,7 +567,6 @@
 					</div>
 					<!--// 비밀번호 확인 -->
 				</div>
-
 
 				<div id="userInfoPage" style="display: none;">
 					<!-- 회원정보 변경 -->
@@ -696,9 +728,19 @@
 								</div>
 								<p class="poe_noti">이메일 및 마케팅 수신 동의 변경은 심사 없이 바로 적용 가능합니다.</p>
 								<div class="mem_btnWrap2 justify">
+									<%-- <c:choose>
+										<c:when test="${cmpPhoneChangeManageVO.hstSttus eq '03'}">
+											<button type="button" class="mem_btn3" onclick="updateUserInfo()" >재등록</button>
+											<button type="button" class="mem_btn3" onclick="updateUserInfoCancel()" >기업회원 변경 취소</button>
+										</c:when>
+										<c:otherwise>
+											<button type="button" class="mem_btn3" onclick="updateUserInfo()" >변경</button>
+										</c:otherwise>
+									</c:choose> --%>
+								
 									<button type="button" class="mem_btn3" onclick="updateUserInfo()" >
 										<c:if test="${cmpPhoneChangeManageVO.hstSttus eq '03'}">
-											재등록
+											
 										</c:if>
 										<c:if test="${cmpPhoneChangeManageVO.hstSttus ne '03'}">
 											변경
@@ -780,10 +822,10 @@
                   </div>
                 </c:when>
                 <c:when test="${cmpInfoChangeManageVO.hstSttus eq '03'}"><!-- 기업정보 변경 반려상태 -->
-                  <input type="hidden" name="bizType" value="${cmpInfoChangeManageVO.bizType}"/>
+                  <%-- <input type="hidden" name="bizType" value="${cmpInfoChangeManageVO.bizType}"/>
                   <input type="hidden" name="mberNm" value="${cmpInfoChangeManageVO.mberNm}"/>
                   <input type="hidden" name="ceoNm" value="${cmpInfoChangeManageVO.ceoNm}"/>
-                  <input type="hidden" name="bizNo" value="${cmpInfoChangeManageVO.bizNo}"/>
+                  <input type="hidden" name="bizNo" value="${cmpInfoChangeManageVO.bizNo}"/> --%>
                   <input type="hidden" name="zip" value="${cmpInfoChangeManageVO.zip}"/>
                   <input type="hidden" name="adres" value="${cmpInfoChangeManageVO.adres}"/>
                   <input type="hidden" name="detailAdres" value="${cmpInfoChangeManageVO.detailAdres}"/>
@@ -801,19 +843,22 @@
                     <div class="input_list_item">
                       <div class="input_left">기업유형</div>
                       <div class="input_right">
-                        <ec:code codeId="ITN033" code="${cmpInfoChangeManageVO.bizType}" />
+                      	<ec:radio name="bizType" id="" codeId="ITN033" selectedValue="${cmpInfoChangeManageVO.bizType}"  />
+                        <%-- <ec:code codeId="ITN033" code="${cmpInfoChangeManageVO.bizType}" /> --%>
                       </div>
                     </div>
                     <div class="input_list_item">
                       <div class="input_left">회사명</div>
                       <div class="input_right">
-                        <c:out value='${cmpInfoChangeManageVO.mberNm}'/>
+                      	<input type="text" class="list_inputType1" name="mberNm" value="${cmpInfoChangeManageVO.mberNm}"/>
+                        <%-- <c:out value='${cmpInfoChangeManageVO.mberNm}'/> --%>
                       </div>
                     </div>
                     <div class="input_list_item">
                       <div class="input_left">대표</div>
                       <div class="input_right">
-                        <c:out value='${cmpInfoChangeManageVO.ceoNm}'/>
+                      	<input type="text" class="list_inputType1" name="ceoNm" value="${cmpInfoChangeManageVO.ceoNm}"/>
+                        <%-- <c:out value='${cmpInfoChangeManageVO.ceoNm}'/> --%>
                       </div>
                     </div>
                     <div class="input_list_item">
@@ -827,7 +872,12 @@
                       <div class="input_left">사업자등록번호</div>
                       <div class="input_right">
                         <label for="" class="label">사업자등록번호 입력</label>
-                        <c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 0, 3)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 3, 5)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 5, 10)}'/>
+                        <%-- <input type="text" class="list_inputType1" name="bizNo" value="${cmpInfoChangeManageVO.bizNo}"/> --%>
+                        <input type="text" class="list_inputType1" name="bizNo" id="bizNo" maxlength="12" value="${fn:substring(cmpInfoChangeManageVO.bizNo, 0, 3)}-${fn:substring(cmpInfoChangeManageVO.bizNo, 3, 5)}-${fn:substring(cmpInfoChangeManageVO.bizNo, 5, 10)}"/>
+                        <%-- <c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 0, 3)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 3, 5)}'/>-<c:out value='${fn:substring(cmpInfoChangeManageVO.bizNo, 5, 10)}'/> --%>
+                      	<div class="list_btn_wrap">
+                          <button type="button" onclick="bizNoCheck(); return false;">사업자등록번호 확인</button>
+                        </div>
                       </div>
                     </div>
                     <div class="input_list_item">
@@ -872,8 +922,9 @@
 	                    </div>
                     </c:if>
                                       
-                    <div class="mem_btnWrap2 justify">
-                      <button type="button" class="mem_btn3" onclick="updateCmpUserRe()" >재등록</button>
+                    <div class="mem_btnWrap3 justify">
+                      <button type="button" class="mem_btn5" onclick="updateCmpUserRe();" >재등록</button>
+                      <button type="button" class="mem_btn4" onclick="updateCmpUserReCancel('<c:out value="${cmpInfoChangeManageVO.cmpHstId}"/>');" >재등록 취소</button>
                     </div>
                   </div>
                  </div>
src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp
--- src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/mberSecession.jsp
@@ -115,7 +115,7 @@
 					본인 확인 후 <span class="c_002c9a fwMd">회원탈퇴 신청이 가능</span>합니다.
 				</p>
 				<div class="self_identfy_wrap">
-					<div class="self_identfy1">
+					<%-- <div class="self_identfy1">
 						<div class="table_cell">
 							<p>등록한 휴대폰 번호로 SMS 인증</p>
 							<span>회원정보에 등록한 휴대폰 번호로 SMS 인증</span>
@@ -132,7 +132,7 @@
 								<button type="button" class="indenfy_btn" onclick="ARSCodeCheck()">확인</button>
 							</div>
 						</div>
-					</div>
+					</div> --%>
 					<div class="self_identfy2">
 						<div class="table_cell">
 							<p>본인 명의 휴대폰 번호로 본인인증</p>
src/main/webapp/publish/css/content.css
--- src/main/webapp/publish/css/content.css
+++ src/main/webapp/publish/css/content.css
@@ -18,6 +18,13 @@
 .tRight {text-align: right !important;}
 .tLeft {text-align: left !important;}
 
+.btn_blue.fill{background:#002c9a;color:#fff;}
+.btn_gray.fill{background:#6a6c72;color:#fff;}
+.btn_yellow.fill{background:#fbc72b;color:#222;}
+
+.btn_blue.border{border:1px solid #002c9a;color:#002c9a;}
+.btn_gray.border{border:1px solid #6a6c72;color:#666;}
+
 .w100 {width: 100%;}
 .h100 {height: 100%;}
 
@@ -587,6 +594,33 @@
 .sub .heading i.election_btn1 {background-image: url(/publish/images/content/candidate_img.png); width: 25px; height: 22px; margin: 0 3px 0px 0;}
 .sub .heading i.election_btn2 {background-image: url(/publish/images/content/receipt_icon.png); width: 18px; height: 19px; margin: 0 3px 2px 0;}
 .sub .heading i.election_btn3 {background-image: url(/publish/images/content/print_icon2.png); width: 20px; height: 19px; margin: 0 3px 2px 0;}
+
+/* 2023/12/01 선거문자 - 20건문자(수동문자)전송 추가 */
+.sub .election .receipt_number_table_wrap .listType{height:346px;}
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody{height:calc(100% - 38px);}
+.sub .election .receipt_number_table_wrap .receipt_number_table thead tr,.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr{border-top:0;}
+.sub .election .receipt_number_table_wrap .receipt_number_table th,.sub .election .receipt_number_table_wrap .receipt_number_table td{position:relative;}
+.sub .election .receipt_number_table_wrap .receipt_number_table th::after,.sub .election .receipt_number_table_wrap .receipt_number_table td::after{position:absolute;content:"";width:1px;height:16px;background:#d4d4d4;right:0;top:50%;transform:translateY(-50%);}
+.sub .election .receipt_number_table_wrap .receipt_number_table th:last-child::after,.sub .election .receipt_number_table_wrap .receipt_number_table td:last-child::after{display:none;}
+.sub .election .receipt_number_table_wrap .receipt_number_table{width:100%;text-align:center;table-layout:fixed;}
+.sub .election .receipt_number_table_wrap .receipt_number_table thead tr{border-bottom:1px solid #a2a2a2;}
+.sub .election .receipt_number_table_wrap .receipt_number_table thead tr th{height:38px;text-align:center;background:#e8e8e8;}
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td{height:29px;background:transparent;border:0;border-bottom:1px solid #e5e6e7;padding:0 3px;}
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td input{width:60px;}
+.sub .election .receipt_number_table_wrap .receipt_number_table tbody tr td label{display:inline-block;width:calc(100% - 64px);}
+.sub .election .receipt_number_table_wrap .put_right .receipt_info{width:calc(100% - 10px);height:calc(100% - 143px);background:#f2f2f2;margin:10px 0 0 10px;padding:10px;border-radius:5px;box-sizing:border-box;}
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dt{font-size:15px;font-weight:500;margin:0 0 8px 0;}
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dd{font-size:14px;text-align:right;background:#fff;margin:0 0 8px 0;padding:3px 6px;border-radius:5px;}
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dd:last-child{margin:0 0 0 0;}
+.sub .election .receipt_number_table_wrap .put_right .receipt_info dd b{font-size:16px;font-weight:500;}
+.sub .election .list_bottom{display:flex;width:74%;align-items:center;justify-content:space-between;padding:0 0 10px 0;}
+.sub .election .list_bottom .pagination{display:inline-flex;width:auto;margin:0;justify-content:flex-start;}
+.sub .election .list_bottom .pagination button{height:32px;}
+.sub .election .list_bottom .list_bottom_right{float:none;display:inline-flex;justify-content:flex-end;}
+.sub .election .list_bottom .list_bottom_right button{height:32px;padding:0 13px;font-weight:400 !important;}
+.sub .election .list_bottom .list_bottom_right>button{margin:0 4px 0 0;}
+.sub .election .list_bottom .list_bottom_right .btn_yellow{display:inline-flex;align-items:center;padding:0 10px;}
+.sub .election .list_bottom .list_bottom_right .btn_yellow i.qmMark{background:url(/publish/images/content/qmIcon_black.png) no-repeat center;margin:0 0 0 2px;}
 
 /* send_bottom */ 
 .send_bottom {position: relative;margin: 60px 0 0 0;}
@@ -1994,6 +2028,12 @@
 
 	/*발송결과_select버튼*/
 	.select_btnWrap .btn_right .search .send_text{width: 170px;}
+	
+	/* 선거문자 */
+	.election .tType1 tbody tr td.putText .receipt_number_table_wrap .put_right{max-width:170px;}
+	.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{font-size:14px;letter-spacing:-1px;}
+	.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_gray.fill{padding:0 5px;}
+	.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right .btn_yellow.fill{padding:0 3px;} 
 }
 
 @media only screen and (max-width:1480px){
@@ -2090,6 +2130,11 @@
 	/*발송결과_select버튼*/
 	.rev_admin_cont .select_btnWrap .btn_right .select_all_btn{width: 143px;}
 	.rev_admin_cont .select_btnWrap .btn_right .select_btn{width: 105px;}
+	
+	/* 선거문자 */
+	.sub .election .list_bottom{width:72.5%;}
+	.sub .election .receipt_number_table_wrap+.list_bottom .list_bottom_right button{letter-spacing:-1.4px;}
+	.sub .election .list_bottom .pagination button{width:30px;height:30px;}
 }
 
 @media only screen and (max-width:1380px){
src/main/webapp/publish/css/mem.css
--- src/main/webapp/publish/css/mem.css
+++ src/main/webapp/publish/css/mem.css
@@ -590,8 +590,8 @@
 
 
 /* ȸ��Ż�� */
-.self_identfy_wrap {display: flex; justify-content: space-between;}
-.self_identfy_wrap>div {width: calc(100%/2 - 15px); height: 390px; border: 3px solid #dddddd; border-radius: 5px; display: table; text-align: center;}
+.self_identfy_wrap {display: flex; justify-content: center;}
+.self_identfy_wrap>div {width: 64%; height: 390px; border: 3px solid #dddddd; border-radius: 5px; display: table; text-align: center;}
 .self_identfy_wrap p {font-size: 24px; font-weight: 500;}
 .self_identfy_wrap span {font-size: 17px; font-weight: 300; color: #555; margin: 12px 0 22px 0; display: inline-block; line-height: 1.5;}
 .self_identfy_wrap .indenfy_btn {width: 325px; height: 50px; border-radius: 5px; background-color: #002c9a; color: #fff; font-size: 18px;}
src/main/webapp/publish/guide_2022.html
--- src/main/webapp/publish/guide_2022.html
+++ src/main/webapp/publish/guide_2022.html
@@ -18,6 +18,7 @@
     <!-- <p>***<span class="font1"> (컨텐츠)</span> : 반복적으로 사용 안함</p>
     <p>***<span class="font2"> (보드)</span> : 반복적으로 사용</p> -->
     <ul class="page">
+    	<li><a href="/publish/sub_election_2023.html">sub_election_2023.html</a>선거문자</li>
         <li><a href="/publish/publish_text/send_text.html">send_text.html</a>문자보내기</li>
         <li><a href="/publish/publish_text/text_send.html">text_send.html</a>문자발송</li>
         <li><a href="/publish/publish_text/multi_text.html">multi_text.html</a>단체문자</li>
 
src/main/webapp/publish/images/content/qmIcon_black.png (Binary) (added)
+++ src/main/webapp/publish/images/content/qmIcon_black.png
Binary file is not shown
src/main/webapp/publish/js/content.js
--- src/main/webapp/publish/js/content.js
+++ src/main/webapp/publish/js/content.js
@@ -379,7 +379,14 @@
 // 		  LayerPopup.removeClass("active");
 // 		}
 // 	  });
-
+	 
+	 //선거문자 1명씩 선택 ? 호버 시 팝업
+	 $(".btn_check_one .qmMark").mouseover(function(){
+		$(this).parents(".btnType").next(".send_hover_cont").addClass("on");
+	})
+	$(".btn_check_one .qmMark").mouseleave(function(){
+		$(this).parents(".btnType").next(".send_hover_cont").removeClass("on");
+  	})
 
 	//문자발송 오류검사 ? 호버 시 팝업
 	$(".test_qm").mouseover(function(){
 
src/main/webapp/publish/js/publish.js (added)
+++ src/main/webapp/publish/js/publish.js
@@ -0,0 +1,37 @@
+
+// 마우스 길게 누르는 function
+var onlongclick = function ($target, time, callback) {
+  $($target).on("mousedown", function () {
+    const timer = setTimeout(callback, time);
+    $($target).on("mouseup", function () {
+      clearTimeout(timer);
+    });
+  });
+}
+
+
+var publishCommon = {
+  count: 0,
+  longMousePressCheck: function (checkTarget, checkTime) {
+    // checkTarget → 체크박스([name='']) / checkTime → 몇초 간격으로 체크 될지
+    var checkLength = checkTarget.length; // 체크박스 몇개인지
+    var cnt = 0; // 몇개 체크됐는지
+    var checkEvent = setInterval(function () {
+      if (this.count == 0) {} 
+      else if (cnt >= checkLength) {
+        clearInterval(checkEvent); // 자동체크 끝.
+      }
+      $(checkTarget[cnt]).prop('checked', true); // 체크박스 체크.
+      cnt++;
+    }, checkTime);
+  },
+  clickCheck: function (checkTarget) {
+    // 한번 클릭 했을 때 체크, checkTarget → 체크박스([name=''])
+    if (checkTarget.length < this.count) {
+      // 체크 다하면 더이상 작동 x.
+      return false;
+    }
+    $(checkTarget[this.count]).prop('checked', true); // 체크박스 체크
+    this.count++;
+  }
+}
src/main/webapp/publish/publish_adv/adv_template_v1_230918.html
--- src/main/webapp/publish/publish_adv/adv_template_v1_230918.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_230918.html
@@ -10,7 +10,7 @@
   <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
   <meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <meta property="og:type" content="website">
-  <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온">
+  <meta property="og:title" content="단체문자 - 문자온">
   <meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
 
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_10.html (added)
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_10.html
@@ -0,0 +1,491 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>홍보문자 예시 모음 - 문자온</title>
+
+  <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
+  <meta name="description" content="홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.">
+  <meta property="og:type" content="website">
+  <meta property="og:title" content="홍보문자 예시 모음 - 문자온">
+  <meta property="og:description" content="홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.">
+  <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
+  <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
+  <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png">
+  <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png">
+  <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png">
+  <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png">
+  <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png">
+  <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png">
+  <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png">
+  <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png">
+  <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png">
+  <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png">
+  <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png">
+  <link rel="manifest" href="/publish/images/favicon/manifest.json">
+
+  <link rel="stylesheet" href="/publish/publish_adv/css/reset.css">
+  <link rel="stylesheet" href="/publish/publish_adv/css/style.css">
+  <link rel="stylesheet" href="/publish/css/font.css">
+
+  <script src="/publish/js/jquery-3.5.0.js"></script>
+  <script>
+    function topBtn() {
+      $("html").scrollTop("0");
+    }
+  </script>
+</head>
+
+<body>
+  <div class="template_v1_content content_ten">
+    <button type="button" class="top_btn" onclick="topBtn()" style="z-index: 2;">▲<br>TOP</button>
+    <header>
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr">
+          <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1>
+        </a>
+      </div>
+    </header>
+    <div class="visual">
+      <div class="inner">
+        <p class="keyword">keyword</p>
+        <h2>홍보문자 예시 모음</h2>
+        <p class="sub_text obituary_te">홍보는 널리 알린다는 의미로 일반적으로 기업, 단체 등 조직체가 커뮤니케이션 활동을 통하여 계획이나 업적 등의 정보를 전달하고 공유하는 활동을 뜻합니다. 이러한 활동은 기업의 홍보 담당자뿐만 아니라 카페, 미용실, 뷰티숍, 쇼핑몰, 부동산, 골프연습장, 학원, 학교, 세무사사무소 등에서도 유용하게 활용될 수 있는데요. 뿐만 아니라 모임이나 행사 개최 홍보도 가능합니다. 그렇다면 각각의 홍보 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.</p>
+      </div>
+    </div>
+    <div class="index">
+      <div class="inner">
+        <p>목&ensp;차</p>
+        <nav>
+          <ul style="text-align: center;display: inline-block; width: auto;">
+            <li><a href="#section01">모임·행사 홍보문자 예시</a></li>
+            <li><a href="#section02">개업 홍보문자 예시</a></li>
+            <li><a href="#section03">기타 홍보문자 예시</a></li>
+          </ul>
+        </nav>
+      </div>
+    </div>
+    <section class="section section01" id="section01">
+      <div class="inner obituary_inner">
+        <h3>모임·행사 홍보문자 예시</h3>
+        <div class="short">
+          <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">모임·행사 홍보문자</p>
+                      </div>
+                      <div class="inner_text">
+                        ○월 ○일 ○○시 연합회 월례회<br> 장소: ○○○식당 전체 모임으로 많은 참석 바랍니다. <br> -총무-
+                        <p class="date">PM 3:45</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_01"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+                        ○○동기회 임원모임결과, 동기모임 일자확정 X월XX일(장소추후통보) <br> -총무-
+                      <p class="date">PM 5:30</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+                        [XX초교 71회 동창회 알림] 일시:0월20일<br>장소:역삼동 행운식당 <br> -동창회장-
+                      <p class="date">PM 8:55</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+                        오늘은 전체 송년회가 있는 날입니다!<br>일 마무리 잘하시고 이따 ○시에 뵙도록 하겠습니다!
+                      <p class="date">PM 2:15</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+                        동문산악회 X월산 공지 - XX산(XX위치) 인원파악 후 연락 요망 <br> - XX산악회 총무
+                        <p class="date">PM 2:15</p> 
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="long">
+          <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">모임·행사 홍보문자</p>
+                      </div>
+                      <div class="inner_text">
+                        [동창회 정기모임]<br>
+						            우정이란 친구를 딛고 내가 높아지는 것이 아니라 친구가 나 자신을 딛게 하여 친구를 높이는 것이다. 그것은 둘이 함께 높아지는 일이기도 하다.
+						            어려웠던 한해가 지나가고 어느덧 희망찬 봄이 찾아왔습니다. 우리도 모여서 옛이야기 하며 우정을 나눕시다.<br> 
+						            언제:<br>
+						            어디서:<br>
+						            회시:<br>
+                        회장 ○○○ 010-1234-5678<br>
+                        총무 ○○○ 010-1234-5678
+                        <p class="date">PM 1:10</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_01"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          ○○산악회 등산안내<br>
+						          출발일시 : □년 □월 □일(아침 □시 □분)<br>
+						          출발장소 : ***************** 앞  ★★관광버스<br>
+						          산행지 :<br>
+						          회  비 :  ○○○○○ 원<br>
+						          등산코스 :<br>
+						          산행시간 : 약 ○시간<br>
+						          준비물 :<br>
+						          회측제공 :<br>
+						          특 징 :<br>
+                      <p class="date">AM 8:45</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          안녕하세요.<br>
+						          20OO 문자온의 날 운영사무국입니다.<br>
+						          오는 OO월OO일(O) OO:OO, 서울 ●●호텔에서 20OO 문자온의 날 행사를 개최하오니 부디 참석하시어 자리를 빛내주시길 부탁드립니다.<br><br>
+						          감사합니다.<br>
+                      <p class="date">PM 5:35</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          화창한 봄을 맞이하여 ○○동문회에서 춘계체육대회를 개최합니다.<br><br>
+						          가족의 달을 맞이하여 가족들과 함께 참석하시어, 좋은 추억 남기시길 바랍니다.<br><br>
+						          일시 :<br>
+						          장소 :<br>
+						          문의 :<br>
+                      <p class="date">AM 9:43</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">모임·행사 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          OO상인회 월 정기 회의를 아래와 같이 개최합니다.<br><br>  
+						          - 일시:  ◆월 ◆◆일(◆요일) 오후 5시<br> 
+						          - 장소: 상인회 사무실<br><br> 
+						          회원 여러분의 적극적인 참여와 협조를 부탁드립니다.<br>
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="drawing">
+          <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p>
+          <img src="./img/template_v1_manuscript_10_section01_img01.png" alt="">
+        </div>
+      </div>
+    </section>
+
+    <section class="section section02" id="section02">
+      <div class="inner obituary_inner">
+        <h3>개업 홍보문자 예시</h3>
+
+        <div class="long">
+          <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">개업 홍보문자</p>
+                      </div>
+                      <div class="inner_text">
+                       		안녕하세요. ○○○입니다.<br>   
+						 	○일 ○○을 개업해 인사 올립니다.<br>
+                                                 많은 응원과 격려 부탁드립니다.<br>
+						  	시간 나실 때 방문해주시면 큰 힘이 될 것 같습니다.<br><br>    
+						       감사합니다.
+                        <p class="date">PM 1:10</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_03"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">개업 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          ★개업인사 드립니다.★<br>
+						          귀댁에 평안과 행복이 함께 하시길 기원합니다.<br>
+						          다름이 아니오라 "○○○○"을 개업하여 운영하게 되었습니다.<br>
+						          많이 찾아주셔서 많은 격려와 앞날의 복을 기원해주시면 많은 도움이 될것입니다.<br>
+						          상호 :<br>
+						          주소 :<br>
+						          전화 :<br>
+						          주차 :<br>
+						          - ○○○ 올림-
+                      <p class="date">AM 8:45</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">개업 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          개업인사<br>
+						          제가 이번에 회사를 개업하게되어 문자 드립니다.<br>
+						          참석하시어 격려의 말씀 부탁드립니다.<br><br>
+						          일시 :<br>
+						          장소 :<br>
+						          상호 :<br><br>
+                      ○○○ 드림
+                      <p class="date">PM 5:55</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">개업 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          안녕하세요.<br>
+						          ○○○○○○ 개업 인사드립니다.<br>
+						          현 사업자분께서 ○월 ○일까지 영업하며,<br>
+						          ○○일 개업식을 할 예정이오니<br>
+						          많은 관심과 응원 부탁드립니다. 감사합니다.<br><br>
+						          ○○○ 올림
+                      <p class="date">AM 9:43</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">개업 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          **오픈안내문자**<br>
+						          ○○시 ○○동에 ○○○○을 오픈하게 되어 인사드립니다.<br> 
+						          많은 관심과 성원 부탁드립니다.<br><br>
+						          개업일 :<br>
+						          주소 :<br>
+						          전화 :<br><br>
+                      축하 화환, 화분 등은 정중히 사양합니다.<br><br>
+                      ○○○ 배상<br> 
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div> 
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="drawing">
+          <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p>
+          <img src="./img/template_v1_manuscript_10_section02_img01.png" alt="">
+        </div>
+      </div>
+    </section>
+    <section class="section section03" id="section03">
+      <div class="inner obituary_inner">
+        <h3>기타 홍보문자 예시</h3>
+
+        <div class="long">
+          <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">기타 홍보문자</p>
+                      </div>
+                      <div class="inner_text">
+                        안녕하세요. ○○○입니다.<br>   
+						            이번 ○월 ○일 ○요일, ○○○에서 개최되는 이벤트가 있습니다.<br>    
+						            참여만 하셔도 다양한 상품을 드리며 누구나 참여하실 수 있으니 많은 관심 부탁드립니다!<br><br>   
+						            □ 장소 :<br>   
+						            □ 일정 : <br>   
+						            □ 상세 안내 URL :
+                        <p class="date">PM 1:10</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_03"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">기타 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          안녕하세요, 날씨가 많이 추워졌습니다.<br>
+						          항상 몸 관리 잘 하시고 건승하시길 빕니다.<br><br>
+						          이번에 SNS 계정을 새로 개설하여 홍보 겸 안부차 연락 드립니다.<br>
+						          SNS :<br><br>
+						          많은 이용 및 문의 부탁드립니다.<br>
+						          감사합니다.
+                      <p class="date">AM 8:45</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">기타 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          안녕하세요. ○○○입니다.<br>
+						          이전에 안내드린 ○○○○ 프로그램을 ○월 ○일부터 ○회 진행합니다.<br>
+						          매주 ○요일 00:00~00:00(○시간), ○월 ○○일까지 진행예정입니다.<br>
+						          많이 참석하실 수 있도록 홍보 부탁드립니다.<br><br>
+						          감사합니다.<br>
+                      <p class="date">PM 5:55</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">기타 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						          안녕하세요, 기자님.<br>
+						          ○○○○○ 홍보 담당자 ○○○입니다.<br>
+						          ○○○○○는 지난 □□일, 신기술을 홍보할 수 있는 세계 박람회에 참여했다고 □□일 밝혔습니다.<br>
+						          관련하여 참고하실 수 있도록 메일로 보도자료를 전달드렸으니 긍정적인 검토 부탁드립니다.<br>
+						          좋은 하루 보내시기 바랍니다.<br><br>
+						          감사합니다.<br>
+                      □□□ 드림
+                      <p class="date">AM 9:43</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">기타 홍보문자</p>
+                    </div>
+                    <div class="inner_text">
+						                 안녕하세요. ○○대 대학일자리플러스센터입니다.<br>
+						          □□년 □□시 상반기 일자리박람회 개최 예정으로 안내드립니다.<br><br> 
+						          ■ 행사개요<br>
+						          ○ 일 시 :<br>
+						          ○ 장 소 :<br>
+						          ○ 행사규모 :<br>
+						          ○ 준 비 물 :<br>
+                      			  ■ 행사내용<br>
+                                                           많은 참여 부탁드립니다. 감사합니다.
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div> 
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="drawing">
+          <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p>
+          <img src="./img/template_v1_manuscript_10_section03_img01.png" alt="">
+        </div>
+      </div>
+    </section>
+
+    <div class="btn_wrap">
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do">홍보문자 보내기</a>
+      </div>
+    </div>
+  </div>
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_11.html (added)
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_11.html
@@ -0,0 +1,147 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>단체문자사이트에서 문자 보내기 - 문자온</title>
+
+  <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
+  <meta name="description" content="컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다.">
+  <meta property="og:type" content="website">
+  <meta property="og:title" content="단체문자사이트에서 문자 보내기 - 문자온">
+  <meta property="og:description" content="컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다.">
+  <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
+  <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
+  <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png">
+  <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png">
+  <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png">
+  <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png">
+  <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png">
+  <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png">
+  <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png">
+  <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png">
+  <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png">
+  <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png">
+  <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png">
+  <link rel="manifest" href="/publish/images/favicon/manifest.json">
+
+  <link rel="stylesheet" href="/publish/publish_adv/css/reset.css">
+  <link rel="stylesheet" href="/publish/publish_adv/css/style.css">
+  <link rel="stylesheet" href="/publish/css/font.css">
+
+  <script src="/publish/js/jquery-3.5.0.js"></script>
+  <script>
+    function topBtn() {
+      $("html").scrollTop("0");
+    }
+  </script>
+</head>
+
+<body>
+  <div class="template_v1_content content_eleven">
+    <button type="button" class="top_btn" onclick="topBtn()">▲<br>TOP</button>
+    <header>
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr">
+          <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1>
+        </a>
+      </div>
+    </header>
+    <div class="visual">
+      <div class="inner">
+        <p class="keyword">keyword</p>
+        <h2>단체문자사이트에서 문자 보내기</h2>
+      </div>
+    </div>
+    <div class="index">
+      <div class="inner">
+        <p>목&ensp;차</p>
+        <nav>
+          <ul>
+            <li><a href="#section01">단체문자사이트</a></li>
+            <li><a href="#section02">단체문자 보내기 방법</a></li>
+          </ul>
+        </nav>
+      </div>
+    </div>
+    <section class="section section01" id="section01">
+      <div class="inner">
+        <h3>단체문자사이트</h3>
+        <p class="text">
+            컴퓨터 인터넷을 통해 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 사이트를 말합니다.
+        </p>
+        <img src="/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png" alt="">
+      </div>
+    </section>
+    
+    <section class="section section02 con_add" id="section02">
+      <div class="inner">
+        <h3>단체문자 보내기 방법</h3>
+        <div>
+          <p class="text">1. 문자사이트에서 단체문자를 보내기 위해서는 먼저 본인에게 맞는 문자사이트를 찾으셔야 합니다.</p>
+          <p class="small_text">- 일단 “문자온”으로 검색해볼게요. 아래 로고를 클릭하셔도 됩니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png" alt="">
+          <a href="https://www.munjaon.co.kr">
+            <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png" alt="" style="width: auto; margin-top: -25px; display: inline;">
+          </a>
+        </div>
+        <div>
+          <p class="text">2. 회원가입을 진행해주세요. 개인회원 및 기업회원 가입이 가능하며 기업회원의 경우 사업자등록증과 재직증명서(사업자등록증 상의 대표자가 아닌 경우)가 필요합니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png" alt="">
+        </div>
+        <div>
+          <p class="text">3. 로그인을 진행해주세요.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png" alt="">
+        </div>
+        <div>
+          <p class="text">4. [마이페이지] > [발신번호 관리] 메뉴로 이동하시어 문자발송에 사용할 발신번호를 등록해주세요.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png" alt="" style="margin-bottom: 25px;">
+          <p class="small_text">- 발신번호의 명의를 증빙하는 방법은 휴대폰 번호의 경우 휴대폰인증 또는 통신서비스이용증명원 제출로 확인되며, 일반번호의 경우 통신서비스이용증명원으로 확인됩니다. 통신서비스이용증명원은 등록하실 발신번호를 제공하는 통신사에 발급을 요청하세요~</p>
+          <p class="small_text">- 명의가 본인(개인회원) 또는 본인이 대표로 있는 회사(기업회원)가 아닐 경우 필수제출 서류가 상이하며 아래 이미지를 참고하시어 제출하시면 됩니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png" alt="" style="margin-top: 25px; margin-bottom: 25px;">
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png" alt="">
+          <p class="small_text" style="margin: -35px 0 60px 0;">- 본인 명의에 경우 휴대폰인증을 통해 간편하게 등록 가능하시며, 그 외 서류제출이 필요한 경우 5분 이내로 발신번호 심사가 완료되므로 편하게 사용 가능합니다.</p>
+        </div>
+        <div>
+          <p class="text">5. 사용하실 만큼의 요금을 충전해주세요. 문자온은 다양한 결제방식을 제공하므로 편리하게 충전하실 수 있습니다.</p>
+          <p class="small_text">- 최소 5,000원 이상 충전 가능하며 결제 시 부가세 10%가 제외되어 충전됩니다.(문자 발송시에는 부가세가 차감되지 않습니다.)</p>
+          <p class="small_text">- [결제관리] 메뉴를 통해 세금계산서, 현금영수증 등 다양한 증빙서류를 요청하실 수 있습니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png" alt="">
+        </div>
+        <div>
+          <p class="text">6. [문자발송] 메뉴로 이동하시어 등록하신 발신번호를 선택하신 후 문자내용을 입력합니다.</p>
+          <p class="small_text">- 단문/장문/그림 문자를 발송할 수 있으며 문자종류는 입력내용에 따라 자동으로 선택됩니다.</p>
+          <p class="small_text">- 단문은 90byte(띄어쓰기 없는 한글 45자)까지이며 장문은 2,000byte(띄어쓰기 없는 한글 1,000자)까지입니다. 그림문자는 장문 + 이미지(3장까지)입니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png" alt="">
+          <p class="small_text">- 문자분류를 “광고”로 선택할 경우 080무료수신거부 번호를 별도의 절차 없이 무료로 문자내용에 자동으로 입력처리합니다.(수신자로부터 080수신거부 요청 발생 시 문자온에서 자동으로 수신거부 처리하므로 안심하고 사용 가능합니다.)</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png" alt="">
+        </div>
+        <div>
+          <p class="text">7. 받는사람 입력 후 발송하기 클릭</p>
+          <p class="small_text">- 주소록, 엑셀, 최근 전송내역 등을 통해 받는사람을 선택할 수 있습니다.</p>
+          <p class="small_text">- 엑셀 파일 내용을 복사 붙여넣기 하여 입력할 수 있습니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png" alt="">
+        </div>
+        <div>
+          <p class="text">8. [발송결과] 메뉴로 이동하시면 문자의 발송 결과를 확인할 수 있습니다.</p>
+          <p class="small_text">- 발송실패된 건은 보유잔액으로 반환됩니다.</p>
+          <img src="/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png" alt="">
+        </div>
+        <div>
+          <p class="text">9. 이외에도 무료 주소록 입력대행, 카톡 및 팩스 발송, 선거문자, 그림문자 맞춤제작, 편리한 주소록 관리 등을 제공하고 있습니다.</p>
+        </div>
+      </div>
+    </section>
+
+    <div class="btn_wrap">
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr">단체문자사이트</a>
+      </div>
+    </div>
+  </div>
+
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_3.html
@@ -10,7 +10,7 @@
   <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
   <meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <meta property="og:type" content="website">
-  <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온">
+  <meta property="og:title" content="대량문자 - 문자온">
   <meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_4.html
@@ -10,7 +10,7 @@
   <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
   <meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <meta property="og:type" content="website">
-  <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온">
+  <meta property="og:title" content="컴퓨터문자보내기 - 문자온">
   <meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_5.html
@@ -10,7 +10,7 @@
   <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
   <meta name="description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <meta property="og:type" content="website">
-  <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온">
+  <meta property="og:title" content="인터넷문자 - 문자온">
   <meta property="og:description" content="요즘 시대에는 경조사, 알림, 안부인사, 홍보 등 여러 가지 상황에서 단체에게 내용을 전달해야 하는 경우가 많습니다.">
   <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_6.html
@@ -10,7 +10,7 @@
   <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
   <meta name="description" content="나에게는 절대로 오지 않을 일이면 좋겠지만 살다보면 여러 가지 이유로 가족 중에 누군가를 가슴아프게 떠나보내야 할 때가 옵니다. 또는 그러한 누군가의 아픔을 위로해야 할 때도 있을 것입니다. 부고를 알리고 위로하고 답례를 할 때는 경황이 없음을 서로 이해하고 전화보다는 문자메시지를 통해 내용을 전달하시는데요. 어떤 내용으로 보낼지 막막하신 분들을 위해 상황에 맞는 다양한 예시를 안내해드립니다.">
   <meta property="og:type" content="website">
-  <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온">
+  <meta property="og:title" content="부고문자 예시 모음 - 문자온">
   <meta property="og:description" content="나에게는 절대로 오지 않을 일이면 좋겠지만 살다보면 여러 가지 이유로 가족 중에 누군가를 가슴아프게 떠나보내야 할 때가 옵니다. 또는 그러한 누군가의 아픔을 위로해야 할 때도 있을 것입니다. 부고를 알리고 위로하고 답례를 할 때는 경황이 없음을 서로 이해하고 전화보다는 문자메시지를 통해 내용을 전달하시는데요. 어떤 내용으로 보낼지 막막하신 분들을 위해 상황에 맞는 다양한 예시를 안내해드립니다.">
   <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html
--- src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_7.html
@@ -10,7 +10,7 @@
   <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
   <meta name="description" content="경사와 조사를 합한 뜻인 경조사는 경사스러운 일과 불행한 일을 뜻합니다. 옛날처럼 경조사 때 품앗이까지 이루어지지는 않지만 결혼, 부고, 회갑, 고희 등의 경조사 시에 축하 또는 위로의 인사를 나누어 기쁨은 두배로, 슬픔은 반으로 만드는 것이 우리의 미덕이라고 할 수 있습니다. 그렇다면 각각의 경조사 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.">
   <meta property="og:type" content="website">
-  <meta property="og:title" content="단체문자 발송하는 방법 총정리 - 문자온">
+  <meta property="og:title" content="경조사 문자 인사말 예시 모음 조문 결혼 고희 등 - 문자온">
   <meta property="og:description" content="경사와 조사를 합한 뜻인 경조사는 경사스러운 일과 불행한 일을 뜻합니다. 옛날처럼 경조사 때 품앗이까지 이루어지지는 않지만 결혼, 부고, 회갑, 고희 등의 경조사 시에 축하 또는 위로의 인사를 나누어 기쁨은 두배로, 슬픔은 반으로 만드는 것이 우리의 미덕이라고 할 수 있습니다. 그렇다면 각각의 경조사 목적에 맞는 문자 내용을 작성하려면 어떻게 해야할까요? 고민하고 계시는 여러분들을 위해 문자온이 다양한 예시를 보여드리도록 하겠습니다.">
   <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
   <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
 
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_8.html (added)
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_8.html
@@ -0,0 +1,697 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>결혼 축하 메시지, 청첩창 문구, 답례 문자 - 문자온</title>
+
+  <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
+  <meta name="description" content="살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다.">
+  <meta property="og:type" content="website">
+  <meta property="og:title" content="결혼 축하 메시지, 청첩창 문구, 답례 문자 - 문자온">
+  <meta property="og:description" content="살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다.">
+  <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
+  <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
+  <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png">
+  <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png">
+  <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png">
+  <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png">
+  <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png">
+  <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png">
+  <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png">
+  <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png">
+  <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png">
+  <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png">
+  <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png">
+  <link rel="manifest" href="/publish/images/favicon/manifest.json">
+
+  <link rel="stylesheet" href="/publish/publish_adv/css/reset.css">
+  <link rel="stylesheet" href="/publish/publish_adv/css/style.css">
+  <link rel="stylesheet" href="/publish/css/font.css">
+
+  <script src="/publish/js/jquery-3.5.0.js"></script>
+  <script>
+    function topBtn() {
+      $("html").scrollTop("0");
+    }
+  </script>
+</head>
+
+<body>
+  <div class="template_v1_content">
+    <button type="button" class="top_btn" onclick="topBtn()" style="z-index: 2;">▲<br>TOP</button>
+    <header>
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr">
+          <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1>
+        </a>
+      </div>
+    </header>
+    <div class="visual">
+      <div class="inner">
+        <p class="keyword">keyword</p>
+        <h2>결혼 축하 메시지, 청첩창 문구, 답례 문자</h2>
+        <p class="sub_text obituary_te">살아가는 동안 최고로 기쁘면서도 가장 성대한 축하를 받는 행사는 무엇일까요? 기쁜 일은 여러 가지 있겠지만 주인공이 되는 자리는 아무래도 “결혼”일 것입니다. 가족, 친지, 친구, 동료 등 알만한 지인들은 총출동하여 함께 축복하는 자리! 축복이 큰 자리이니 만큼 청첩장, 축하메시지, 답례인사까지 신경써야 할 문구들이 많은데요. 문자온이 아래 예시들을 제공해드리오니 마음껏 활용하시길 바랍니다.</p>
+      </div>
+    </div>
+    <div class="index">
+      <div class="inner">
+        <p>목&ensp;차</p>
+        <nav>
+          <ul style="text-align: center;display: inline-block; width: auto;">
+            <li><a href="#section01">결혼 축하 메시지 예시</a></li>
+            <li><a href="#section02">청첩장 문구 예시</a></li>
+            <li><a href="#section03">결혼 답례 문자 예시</a></li>
+          </ul>
+        </nav>
+      </div>
+    </div>
+    <section class="section section01" id="section01">
+      <div class="inner obituary_inner">
+        <h3>결혼 축하 메시지 예시</h3>
+        <div class="short">
+          <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">결혼 축하 메시지</p>
+                      </div>
+                      <div class="inner_text">
+                        	세상에서 제일 행복한 부부가 되길 바래~
+                        <p class="date">PM 3:45</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_01"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+                      	알콩달콩 신혼살림 잘 꾸려가~ 결혼 축하해!
+                      <p class="date">PM 5:30</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+                      	결혼 축하드립니다. 행복이 가득하시길 바랍니다.
+                      <p class="date">PM 8:55</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+                      	검은머리 파뿌리! 될 때까지 행복하세요~
+                      <p class="date">PM 2:15</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+                      	두 사람의 앞날에 늘 행복이 가득하기를 기원합니다.
+                      <p class="date">PM 6:48</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="long">
+          <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p>
+          <ul class="obituary" style="margin: 0 0 -200px 0;">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">결혼 축하 메시지</p>
+                      </div>
+                      <div class="inner_text">
+							두 사람이 사랑으로 만나 마침내 그 사랑의 결실을 맺으시게 된 것에 진심으로 축하 말씀 드립니다.
+                        <p class="date">PM 1:10</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_01"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+						결혼을 진심으로 축하드립니다.<br> 
+						두 분의 뜻깊은 출발을 축복드리며~<br> 
+						두 분에게 평안과 행복이 항상 함께 하시기를 기원합니다. 
+                      <p class="date">AM 8:45</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+						오랜 기다림 속에 둘이 진실로 한마음이 되는 것을 모두 지켜본 사람으로써 무척 감격스럽다.<br> 
+						항상 서로 아껴주고 이해하며 행복하기를 바래~
+                      <p class="date">PM 5:35</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+						두사람<br>
+						이제 두 사람은 비를 맞지 않으리라.<br>
+						서로가 서로에게 지붕이 되어 줄테니까.<br>					
+						이제 두 사람은 춥지 않으리라.<br>
+						서로가 서로에게 따뜻함이 되어 줄테니까.<br>						
+						이제 두 사람은 더 이상 외롭지 않으리라.<br>
+						서로가 서로에게 동행이 될테니까.<br>						
+						이제 두 사람은 두 개의 몸이지만<br>
+						두 사람 앞에는 오직<br>
+						하나의 인생만이 있으리라. <br>						
+						이제 그대들의 집으로 들어가라.<br>
+						함께 있는 날들 속으로 들어가라.<br>
+						이 대지 위에서 그대들은 <br>
+						오랫동안 행복하리라.
+                      <p class="date">AM 9:43</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+						결혼을 진심으로 축하드려요.<br>
+						하루씩 하루씩 시간이 가면 갈수록 서로 사랑이 깊어지는 가정이 되시길 바래요.
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+                            <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 축하 메시지</p>
+                    </div>
+                    <div class="inner_text">
+						너와 나의 어린시절...<br>
+						함께 뛰놀던<br>
+						그때가<br>
+						엊그제 같은데...<br>
+						어느덧 성인이 되어...<br>
+						사랑의 결실을 맺는구나<br>
+						결혼 진심으로 축하해!
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              
+          </ul>
+        </div>
+
+      </div>
+    </section>
+
+    <section class="section section02" id="section02">
+      <div class="inner obituary_inner">
+        <h3>청첩장 문구 예시</h3>
+		<div class="short">
+          <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">청첩장 문구</p>
+                      </div>
+                      <div class="inner_text">
+                        	♧결혼청첩장♧ <br>
+							○○○♡○○○<br>
+							저희 결혼을 축복해주세요^^<br>
+							○월 ○일 ○시<br>
+							○○○○웨딩홀
+                        <p class="date">PM 3:45</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_01"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문구</p>
+                    </div>
+                    <div class="inner_text">
+                      	드디어 저희 결혼합니다<br>
+						축하해주세요<br>
+						○월○일○시<br>
+						○○○○예식장<br>
+						행복하게살겠습니다
+                      <p class="date">PM 5:30</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문구</p>
+                    </div>
+                    <div class="inner_text">
+                      	○○○의 혼사를 축~축하♡<br>
+						○월○일(토)오후○시<br>
+						○○○○○웨딩홀○층<br>
+						많은축하바랍니다
+                      <p class="date">PM 8:55</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문구</p>
+                    </div>
+                    <div class="inner_text">
+                      	..+:☆:+:☆:+..<br>
+						우ㄹl결혼ㅎH요。<br>
+						축하ㅎH주서l요。<br>
+						'+:☆:+:☆:+'
+                      <p class="date">PM 2:15</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문구</p>
+                    </div>
+                    <div class="inner_text">
+                      	나 드디어 결혼날짜잡았어! 0월0일 0시. 집근처에서참석해줄꺼지!^^꼭와서꼭축하해줘!
+                      <p class="date">PM 6:48</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="long">
+          <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">청첩장 문자</p>
+                      </div>
+                      <div class="inner_text">
+							부모님은 하늘로부터 받은 최고의 선물이고, <br>
+							부부는 자신이 선택한 최고의 보물 이라고 합니다.<br>
+							서로가 서로에게 최고의 보물이라고 믿는 저희 두사람 드디어 하나되어 한 가정을 이루고자 합니다.<br>
+							부디 참석하시어 기쁨의 자리를 축복으로 더욱 빛내 주시기 바랍니다. 
+                        <p class="date">PM 1:10</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_03"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문자</p>
+                    </div>
+                    <div class="inner_text">
+						안녕하세요. ○○○ 입니다.<br>
+						예전, 아주 작은 인연이 저희를 연인으로 만들었고<br>
+						오늘, 그 인연으로 저희가 하나가 됩니다.<br>
+						작은 사랑으로 하나의 커다란 열매를 맺고<br>
+						이제 또 다른 모습으로 사랑하고자 하는 두 사람,<br>
+						오셔서 지켜봐 주시고 축하해 주십시오.<br>
+						늘 그 인연을 생각하며 살겠습니다.<br> 						
+						언제:<br>
+						어디서:<br>
+                      <p class="date">AM 8:45</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문자</p>
+                    </div>
+                    <div class="inner_text">
+						하얀 눈처럼 순수한 영혼을 가진 사랑을 찾았습니다. <br>
+						여러 어른과 친지를 모신 자리에서 웃음도 눈물도 서로의 보이지 않는 작은 부분도 영원히 함께 공유할 수 있는 동반자라 맹세하며 사랑의 예를 맺고자 합니다. <br>
+						그 동안 아껴주신 것처럼 저희들의 새 출발에도 참석하시어 축복해 주시면 평생 잊을 수 없는 기쁨이 되겠습니다.<br> 
+                      <p class="date">PM 5:55</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문자</p>
+                    </div>
+                    <div class="inner_text">
+						개나리 꽃길에서 시작된 저희의 사랑이 이제 결실을 이루려 합니다. <br>
+						코스모스 향기가 그윽한 푸르른 이 가을! <br>
+						새로운 출발을 위한 저희의 맹세에 초대하오니 오셔서 축복해 주시면 큰 기쁨이겠습니다.
+                      <p class="date">AM 9:43</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문자</p>
+                    </div>
+                    <div class="inner_text">
+						안녕하세요?<br>
+						믿음으로 함께하고 사랑으로 하나되는 저희 결혼식에 소중한 분들을 모시고자 합니다.<br>
+						바쁘시더라도 귀한 시간내어 소중한 걸음 하시어 기쁜 마음으로 축복해주시면 감사하겠습니다.<br>
+						- ○○○ 배상 - <br>						
+						일시 : ○○월 ○○일 (○) ○○시<br>
+						장소 : 서울 웨딩홀<br>
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div> 
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문자</p>
+                    </div>
+                    <div class="inner_text">
+						예전, 아주 작은 인연이 저희를 연인으로 만들었고 그 인연으로 저희 하나가 됩니다.<br>
+						곱게 다듬어지지 못한 질그릇처럼 아직은 많이도 부족하지만 늘 그 인연을 생각하며 살겠습니다.<br>
+						오셔서 지켜봐주시고 축하해 주십시오.<br>
+						살기 좋은 집처럼 포근한 남편이 되겠습니다.<br>
+						몸에 맞는 옷처럼 편안한 아내가 되겠습니다.<br>
+						이제 저희 두 사람 부부라는 이름으로 두 발이 하나 되어 즐거움을 나누고 어려움을 이겨내는 삶을 꾸리겠습니다.<br>						
+						희망의 첫발을 내딛는 우리 둘 기쁨으로 곱해지고 행복으로 나눠지는 사랑의 축제에  지혜와 사랑으로 한껏 보듬어주실 고마운 분들과 함께 하고 싶습니다.
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div> 
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">청첩장 문자</p>
+                    </div>
+                    <div class="inner_text">
+						하얀 눈처럼 순수한 영혼을 가진 사랑을 찾았습니다. <br>
+						여러 어른과 친지를 모신 자리에서 웃음도 눈물도 서로의 보이지 않는 작은 부분도 영원히 함께 공유할 수 있는 동반자라 맹세하며 사랑의 예를 맺고자 합니다. <br>
+						그 동안 아껴주신 것처럼 저희들의 새 출발에도 참석하시어 축복해 주시면 평생 잊을 수 없는 기쁨이 되겠습니다.
+                      <p class="date">PM 5:15</p>
+                    </div>
+                </div> 
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="drawing">
+          <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p>
+          <img src="./img/template_v1_manuscript_8_section02_img.png" alt="">
+        </div>
+      </div>
+    </section>
+
+    <section class="section section03" id="section03">
+      <div class="inner obituary_inner">
+        <h3>결혼 답례 문자 예시</h3>
+		<div class="short">
+          <p class="text bold" style="margin: 0 0 8px 0;">[단문]</p>
+          <ul class="obituary">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">결혼 답례 문자</p>
+                      </div>
+                      <div class="inner_text">
+                        	더운 날씨에도 불구하고 저희 결혼식에 찾아 주셔서 매우 감사드립니다.<br>
+							큰 힘이 되었습니다.
+                        <p class="date">PM 3:45</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_01"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+                      	저희 결혼식에 바쁘신중에도 참석해주셔서 기뻤습니다. 진심으로 감사드립니다. 잘살겠습니다.^^
+                      <p class="date">PM 5:30</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+                      	금번 저희 혼사에바쁘심에도 불구하고 참석해 주시어 진심으로 감사의 말씀을드립니다
+                      <p class="date">PM 8:55</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+                      	금번 저희 자혼사에 베푸신 후의에 감사드리며 좋은 일만 있길 기원합니다 <br>
+						○○○ 배상
+                      <p class="date">PM 2:15</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+                      	저희 아들 결혼을 축하해주신 ○○회원님들께 깊이 감사드립니다.<br>
+						- ○○○배상
+                      <p class="date">PM 6:48</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+                      	저희집 혼사에 참석하시어 자리를 빛내주셔서 감사합니다. 건강과행복을 기원합니다.
+                      <p class="date">PM 6:48</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>
+
+        <div class="line"></div>
+
+        <div class="long">
+          <p class="text bold" style="margin: 0 0 8px 0;">[장문]</p>
+          <ul class="obituary" style="margin:0 0 -200px 0;">
+              <li>
+                  <div class="wrap">
+                      <div class="title">
+                          <p class="text">결혼 답례 문자</p>
+                      </div>
+                      <div class="inner_text">
+							신랑 알콩이, 신부 달콩이 입니다.<br>
+							바쁘신중에도 저희 결혼식에 참석해주셔서 저희 두사람 행복한 결혼식 무사히 마쳤습니다.<br>
+							진심으로 감사드립니다.<br>
+							믿음져버리지 않도록 열심히 노력하면서 잘 살겠습니다.<br>
+							앞으로도 많은 관심과 사랑 부탁드립니다.<br>							
+							늘 건강하시고, 가정에 행복가득하시길 기원합니다.<br>
+							곧 찾아뵙고 정식으로 인사드리겠습니다.
+                        <p class="date">AM 8:10</p>
+                      </div>
+                  </div>
+                  
+                  <div class="people_02"></div>
+                  <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+							안녕하세요.<br>
+							저희 결혼식 때 바쁘신 중에도 잊지않고 찾아주셔서 감사합니다.<br>
+							따뜻한 격려와 축하속에서 행복하게 결혼식 올렸습니다.<br>
+							고마움 오래오래 간직하겠습니다.<br>
+							앞으로도  많은 조언과 사랑 부탁드립니다. ^^<br>
+							가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다.
+                      <p class="date">AM 10:30</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+							안녕하세요.<br>
+							저희 결혼식 때 바쁘신 중에도 잊지않고 찾아주셔서 감사합니다.<br>
+							따뜻한 격려와 축하속에서 행복하게 결혼식 올렸습니다.<br>
+							고마움 오래오래 간직하겠습니다.<br>
+							앞으로도  많은 조언과 사랑 부탁드립니다. ^^<br>
+							가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다.
+                      <p class="date">PM 2:20</p>
+                    </div>
+                </div>
+                <div class="people_03"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+							감사의 말씀을 드립니다. <br>
+							저희 아들 혼례시 공사간 바쁘심에도 불구하고 많은 축하와 후의를 베풀어 주신 여러분께 진심으로 감사드립니다. <br>						
+							당일 황망 중이라 제대로 챙기지 못하여 결례된 점은 없었는지, 식사는 소홀한 점이 없었는지 걱정이 앞섭니다. <br>					
+							찾아 뵙고 감사의 인사를 드림이 도리이오나 우선 서면으로 대신함을 해량하여 주시기 바랍니다.						
+							앞으로 귀댁의 대소사에 연락하여 주시면 빠짐없이 참석하도록 하겠습니다. <br>						
+							그리고 내내 뜻하신 일들이 잘 성취되시고 가정에 행복과 건강이 함께 하시길 기원하며 감사의 인사를 드립니다. 	<br>					
+							혼주 ㅇㅇㅇ, ㅇㅇㅇ 올림 
+                      <p class="date">PM 7:33</p>
+                    </div>
+                </div>
+                <div class="people_01"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+              <li class="second_line move_line">
+                <div class="wrap">
+                    <div class="title">
+                        <p class="text">결혼 답례 문자</p>
+                    </div>
+                    <div class="inner_text">
+							항상 귀댁에 평안과 만복을 기원합니다. <br>
+							아뢰올 말씀은 지난번 결혼식 때에 바쁘심에도 불구하시고 참석해 주시어 무사히 혼례를 마치게 하여 주신데 대하여 진심으로 감사를 드립니다. <br>
+							찾아 뵙고 인사드리는 것이 도리이나 우선 문자로 대신하옴을 송구스럽게 생각하오며 내내 건강하시고 하시는 사업이 일익 번창하시기를 기원합니다. 
+							감사합니다.
+                      <p class="date">PM 9:50</p>
+                    </div>
+                </div>
+                <div class="people_02"></div>
+                <div class="speech_bubble"></div> 
+              </li>
+          </ul>
+        </div>        
+        
+        <div class="line"></div>
+
+        <div class="drawing">
+          <p class="text bold" style="margin: 0 0 8px 0;">[그림문자]</p>
+          <img src="./img/template_v1_manuscript_8_section02_img.png" alt="">
+        </div>
+                
+      </div>
+     
+    </section>
+        
+    
+    <div class="btn_wrap">
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do"> 결혼 문자 보내기</a>
+      </div>
+    </div>
+  </div>
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_9.html (added)
+++ src/main/webapp/publish/publish_adv/adv_template_v1_manuscript_9.html
@@ -0,0 +1,109 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>웹문자 사이트 - 문자온</title>
+
+  <meta name="Keywords" content="문자전송, 문자발송, SMS, LMS, MMS, 문자보내기, 단체문자, 단체문자전송, 단체문자발송,단체문자사이트,문자사이트, 대량문자">
+  <meta name="description" content="갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다.">
+  <meta property="og:type" content="website">
+  <meta property="og:title" content="웹문자 사이트 - 문자온">
+  <meta property="og:description" content="갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다.">
+  <link rel="apple-touch-icon" sizes="57x57" href="/publish/images/favicon/apple-icon-57x57.png">
+  <link rel="apple-touch-icon" sizes="60x60" href="/publish/images/favicon/apple-icon-60x60.png">
+  <link rel="apple-touch-icon" sizes="72x72" href="/publish/images/favicon/apple-icon-72x72.png">
+  <link rel="apple-touch-icon" sizes="76x76" href="/publish/images/favicon/apple-icon-76x76.png">
+  <link rel="apple-touch-icon" sizes="114x114" href="/publish/images/favicon/apple-icon-114x114.png">
+  <link rel="apple-touch-icon" sizes="120x120" href="/publish/images/favicon/apple-icon-120x120.png">
+  <link rel="apple-touch-icon" sizes="144x144" href="/publish/images/favicon/apple-icon-144x144.png">
+  <link rel="apple-touch-icon" sizes="152x152" href="/publish/images/favicon/apple-icon-152x152.png">
+  <link rel="apple-touch-icon" sizes="180x180" href="/publish/images/favicon/apple-icon-180x180.png">
+  <link rel="icon" type="image/png" sizes="192x192" href="/publish/images/favicon/android-icon-192x192.png">
+  <link rel="icon" type="image/png" sizes="32x32" href="/publish/images/favicon/favicon-32x32.png">
+  <link rel="icon" type="image/png" sizes="96x96" href="/publish/images/favicon/favicon-96x96.png">
+  <link rel="icon" type="image/png" sizes="16x16" href="/publish/images/favicon/favicon-16x16.png">
+  <link rel="manifest" href="/publish/images/favicon/manifest.json">
+
+  <link rel="stylesheet" href="/publish/publish_adv/css/reset.css">
+  <link rel="stylesheet" href="/publish/publish_adv/css/style.css">
+  <link rel="stylesheet" href="/publish/css/font.css">
+
+  <script src="/publish/js/jquery-3.5.0.js"></script>
+  <script>
+    function topBtn() {
+      $("html").scrollTop("0");
+    }
+  </script>
+</head>
+
+<body>
+  <div class="template_v1_content">
+    <button type="button" class="top_btn" onclick="topBtn()">▲<br>TOP</button>
+    <header>
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr">
+          <h1><img src="/publish/publish_adv/img/template_v1_header_logo.png" alt=""></h1>
+        </a>
+      </div>
+    </header>
+    <div class="visual">
+      <div class="inner">
+        <p class="keyword">keyword</p>
+        <h2>웹문자 사이트</h2>
+      </div>
+    </div>
+    <div class="index">
+      <div class="inner">
+        <p>목&ensp;차</p>
+        <nav>
+          <ul>
+            <li><a href="#section01">웹문자 사이트란?</a></li>
+            <li><a href="#section02">웹문자 사이트를 쓰는 이유</a></li>
+            <li><a href="#section03">웹문자 사이트 이용 시 장점</a></li>
+          </ul>
+        </nav>
+      </div>
+    </div>
+    <section class="section section01" id="section01">
+      <div class="inner">
+        <h3>웹문자 사이트란?</h3>
+        <p class="text">
+            갤럭시나 아이폰 등 핸드폰(휴대폰)으로 문자를 발송하는 것이 아닌 대량으로 단체에게 문자를 보내기 편하게 서비스를 제공하는 문자 발송 사이트를 말합니다.
+        </p>
+        <img src="/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png" alt="">
+      </div>
+    </section>
+    <section class="section section02" id="section02">
+      <div class="inner">
+        <h3>웹문자 사이트를 쓰는 이유</h3>
+        <p class="text">
+            홍보, 경조사, 선거 등등 많은 분들이 갤럭시나 아이폰 등 가지고 있는 스마트폰을 사용하지 않고 왜 웹문자 사이트를 이용하여 문자메시지를 보내는 걸까요? 우리가 사용하는 이동통신사는 단체문자 동보 전송 가능 수량이라는게 있어서 1회 최대 수량은 100건(통신사마다 상이함)에 불과합니다. 또한 무료문자 제한 기준이라는게 있어서 해당 기준을 넘어갈 경우 단문 메시지 기준으로 건당 약 50원이 부과됩니다. 따라서, 대량으로 단체문자를 보내실 경우에는 문자발송 전용 사이트를 이용하시는 것이 결과적으로 저렴하고 편리한 것입니다.<br><br>
+        </p>
+        <p class="text">- 휴대폰 무료문자 발송 제한사항은 아래 링크를 통해 확인하실 수 있습니다.</p>
+        <p class="send_limit_btn"><a href="https://www.munjaon.co.kr/publish/publish_adv/send_group_text.html#limit">휴대폰 무료문자 발송 제한사항 바로가기</a></p>
+      </div>
+    </section>
+    <section class="section section03" id="section03">
+      <div class="inner">
+        <h3>웹문자 사이트 이용 시 장점</h3>
+        <p class="text" style="margin: 0 0 10px 0;">1. 홍보/광고 문자 발송 시 정보통신망법에 따른 광고성 문자 전송규정에 따른 문구를 자동으로 삽입할 수 있다.</p>
+        <p class="text" style="margin: 0 0 10px 0;">2. 홍보/광고 문자 발송 시 080무료수신거부 번호를 무료로 제공받을 수 있고 수신자의 수신거부 발생 시 자동적으로 수신거부 처리를 대행해준다.</p>
+        <p class="text" style="margin: 0 0 10px 0;">3. 주소록 관리를 통해 편리하게 수신자 목록을 관리할 수 있으며 주소록 입력을 대행하는 서비스를 제공한다.</p>
+        <p class="text" style="margin: 0 0 10px 0;">4. 간단한 절차를 통해 제한 없이 문자를 동시 발송할 수 있다.</p>
+        <p class="text" style="margin: 0 0 10px 0;">5. 문자메시지 동시 발송 시 이름, 금액, 일자 등 수신자마다 다른 내용을 발송하는 특정문자 치환 기능을 무료로 이용할 수 있다.</p>
+      </div>
+    </section>
+
+    <div class="btn_wrap">
+      <div class="inner">
+        <a href="https://www.munjaon.co.kr">웹문자</a>
+      </div>
+    </div>
+  </div>
+
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/publish_adv/css/style.css
--- src/main/webapp/publish/publish_adv/css/style.css
+++ src/main/webapp/publish/publish_adv/css/style.css
@@ -289,6 +289,15 @@
 
 /*템플릿1_6부고문자추가_공통_끝*/
 
+/*템플릿1_9웹문자 사이트*/
+.send_limit_btn{margin: 10px 0 0 0;}
+.send_limit_btn a{margin: 0 0 0 11px; font-size: 18px; font-weight: 500; text-decoration: underline; color: #3c33ab;}
+
+/*템플릿1_11문자 사이트*/
+.con_add .text{font-weight: 400; font-size: 20px;}
+.con_add .small_text{text-indent: -9px; margin: 6px 0 0 10px; font-size: 16px; line-height: 1.3; color: #5b5b5b;}
+.con_add .inner img{margin: 15px auto 60px auto; display: block;}
+
 /*미디어쿼리 시작*/
 /*미디어쿼리_1340px*/
 @media screen and (max-width:1340px) {
@@ -860,6 +869,8 @@
     .multi-text-wrap #galaxy .con .step-03{margin-left: 24%;}
     .multi-text-wrap #galaxy .con .step-05{margin-left: 24%;}
     .multi-text-wrap #galaxy .con .text-04 p{width: 112%; margin-left: -12%;}
+    /*템플릿1_10홍보문자추가*/
+    .content_ten .long .obituary .wrap{height: 415px;}
 }
 
 /*미디어쿼리_710px*/
@@ -869,6 +880,8 @@
     
     /*템플릿1_6부고문자추가*/
     .template_v1_content .long .obituary .wrap{height: 390px;}
+     /*템플릿1_10홍보문자추가*/
+    .content_ten .long .obituary .wrap{height: 415px;}
 }
 
 /*미디어쿼리_690px*/
@@ -890,6 +903,10 @@
     .multi-text-wrap #galaxy .con .step-03{margin-left: 22%;}
     .multi-text-wrap #galaxy .con .step-05{margin-left: 22%;}
     .multi-text-wrap #galaxy .con .text-04 p{width: 101%; margin-left: -1%;}
+    
+    /*템플릿1_11문자 사이트*/
+    .content_eleven .visual .inner h2{font-size: 40px;}
+    .con_add .text{font-size: 18px;}
 }
 
 /*미디어쿼리_640px*/
@@ -915,6 +932,8 @@
     .template_v1_content .visual .inner .obituary_te{font-size: 17px; line-height: 1.4;}
     .template_v1_content .long .obituary .wrap{height: 420px;}
     .template_v1_content .obituary{margin: 20px 0 0 0;}
+    /*템플릿1_10홍보문자추가*/
+    .content_ten .long .obituary .wrap{height: 450px;}
 }
 
 /*미디어쿼리_600px*/
@@ -1257,6 +1276,12 @@
     
     /*메인화면 이동 버튼*/
     .multi-text-wrap .bt-button a{background-color: #002c9a; border-radius: 10px; font-size: 18px; color: #fff; padding: 15px 50px;}
+    
+     /*템플릿1_9웹문자 사이트*/
+    .send_limit_btn a{margin: 0;}
+    
+     /*템플릿1_11문자 사이트*/
+    .content_eleven .visual .inner h2{font-size: 30px;}
 }
 
 /*미디워쿼리_320px*/
@@ -1302,6 +1327,9 @@
 
     /*템플릿1_6부고문자추가*/
     .template_v1_content .long .obituary .wrap{height: 430px;}
+    /*템플릿1_10홍보문자추가*/
+    .content_ten .long .obituary .wrap{height: 500px;}
+    .content_ten .obituary .title .text{font-size: 19px;}
 }
 
 /*미디어쿼리_280px*/
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section01_img01.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section01_img01.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section02_img01.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section02_img01.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section03_img01.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_10_section03_img01.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section01_img01.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img01.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img02.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img03.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img04.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img05.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img06.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img07.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img08.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img09.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img10.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_img11.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_11_section02_logo.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section02_img.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section02_img.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section03_img.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_8_section03_img.png
Binary file is not shown
 
src/main/webapp/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png (Binary) (added)
+++ src/main/webapp/publish/publish_adv/img/template_v1_manuscript_9_section01_img01.png
Binary file is not shown
 
src/main/webapp/publish/sub_election_2023.html (added)
+++ src/main/webapp/publish/sub_election_2023.html
@@ -0,0 +1,3171 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+	<meta charset="UTF-8">
+	<meta http-equiv="X-UA-Compatible" content="IE=edge">
+	<title>문자온_선거전송</title>
+
+	<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
+	<link rel="stylesheet" href="/publish/css/reset.css">
+	<link rel="stylesheet" href="/publish/css/jquery.mCustomScrollbar.css">
+	<link rel="stylesheet" href="/publish/css/common.css">
+	<link rel="stylesheet" href="/publish/css/button.css">
+	<link rel="stylesheet" href="/publish/css/content.css">
+	<link rel="stylesheet" href="/publish/css/font.css">
+	<link rel="stylesheet" href="/publish/css/popupLayer.css">
+
+	<script src="/publish/js/jquery-3.5.0.js"></script>
+	<script src="/publish/js/jquery.mCustomScrollbar.concat.min.js"></script>
+	<script src="/publish/js/common.js"></script>
+	<script src="/publish/js/content.js"></script>
+	<script src="/publish/js/popup.js"></script>
+	<script src="/publish/js/popupLayer.js"></script>
+	<script src="/publish/js/publish.js"></script>
+
+
+	<!-- 외부 script / css -->
+	<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
+	<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
+
+	<script>
+		$(document).ready(function () {
+			$(".receipt_number_table tbody").selectable({
+				selecting: function (event, ui) {
+					$(ui.selecting).find("input[type='checkbox']").attr("checked", "checked");
+				},
+				selected: function (event, ui) {
+					if ($(ui.selected).find("input[type='checkbox']").attr("checked") == true) {
+						$(ui.selected).find("input[type='checkbox']").removeAttr("checked");
+					} else {
+						$(ui.selected).find("input[type='checkbox']").attr("checked", "checked");
+					}
+				},
+				unselecting: function (event, ui) {
+					$(ui.unselecting).find("input[type='checkbox']").removeAttr("checked");
+				},
+				unselected: function (event, ui) {
+					$(ui.unselected).find("input[type='checkbox']").removeAttr("checked");
+				},
+				filter: "td"
+			});
+
+			$(".receipt_number_table tbody tr.ui-selectee").removeClass("ui-selectee");
+
+			onlongclick(".btn_check_one", 1000, function () {
+				var checkbox = $('[name=receipt_number_check]');
+				publishCommon.longMousePressCheck(checkbox, 10);
+			});
+
+			$(".btn_check_one").click(function(){
+				var checkbox = $('[name=receipt_number_check]');
+				publishCommon.clickCheck(checkbox);
+			});
+
+		});
+	</script>
+
+</head>
+
+<body>
+
+	<div class="mask"></div>
+
+	<!--  전송내역 팝업 -->
+	<div class="tooltip-wrap">
+		<div class="popup-com history_layer popup03" tabindex="0" data-tooltip-con="popup03" data-focus="popup03" data-focus-prev="popup03-close">
+			<div class="popup_heading">
+				<p><span>전송내역</p>
+				<button type="button" class="tooltip-close" data-focus="popup02-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
+			</div>
+			<div class="layer_in">
+				<!-- tab button -->
+				<ul class="tabType6">
+					<li class="tab active"><button type="button" onclick="TabType(this,'1');">최근 전송내역</button></li>
+					<li class="tab"><button type="button" onclick="TabType(this,'2');">자주보내는 번호</button></li>
+				</ul>
+				<!--// tab button -->
+				<!-- 최근 전송내역 -->
+				<div class="history_cont current hascont">
+					<div class="histroy_trans" id="latestMsgArea">
+						<ul>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+						</ul>
+					</div>
+					<div class="popup_btn_wrap2 hisroy_btn">
+						<button type="button">선택추가</button>
+						<button type="button">선택취소</button>
+					</div>
+				</div>
+				<!--// 최근 전송내역 -->
+				<!-- 자주보내는 번호 -->
+				<div class="history_cont hascont">
+					<div class="histroy_trans" id="bookMarkMsgArea">
+						<ul>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+							<li>
+								<input type="checkbox" id="">
+								<label for="" class="label">최근 전송내역</label>
+								<p>010-1234-5678</p>
+								<button type="button"><img src="/publish/images/popup/close3.png" alt="전화번호 삭제"></button>
+							</li>
+						</ul>
+					</div>
+					<div class="popup_btn_wrap2 hisroy_btn">
+						<button type="button">선택추가</button>
+						<button type="button">선택취소</button>
+					</div>
+				</div>
+				<!--// 자주보내는 번호  -->
+			</div>
+		</div>
+	</div>
+	<!--// 전송내역 팝업 -->
+
+	<!-- 엑셀 불러오기 -->
+	<div class="tooltip-wrap">
+		<div class="popup-com import_layer popup02" tabindex="0" data-tooltip-con="popup02" data-focus="popup02" data-focus-prev="popup02-close">
+			<div class="popup_heading">
+				<p><span>엑셀</span> 불러오기</p>
+				<button type="button" class="tooltip-close" data-focus="popup02-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
+			</div>
+			<div class="layer_in">
+				<!-- 엑셀파일 불러오기 -->
+				<div class="hascont">
+					<div class="titBox">
+						<p>- 최대 2만 건까지 등록할 수 있습니다.</p>
+						<p>- [엑셀 불러오기]시 문서의 A, B, C, D열을 불러옵니다.(지원하는 파일 형식 : xls, xlsx)</p>
+						<p>- 이름 : 20byte, [*1*] [*2*] : 100byte까지 입력 가능합니다.</p>
+						<p>- 휴대폰 항목은 숫자, 하이픈(-)만 인식하며, 번호 앞에 0이 생략되어도 정상 등록됩니다.
+						</p>
+						<button type="button" class="excel_btn"><i></i>샘플파일 다운로드</button>
+					</div>
+					<div class="attachedFile">
+						<label for="" class="attachedFile_label">첨부파일</label>
+						<input type="text" readonly>
+						<button type="button" class="btnType btnType6">찾아보기</button>
+						<p><span class="vMiddle">*</span> 첨부된 파일은 <span class="c_e40000">[추가]버튼을 클릭</span>하셔야 받는 사람에 등록됩니다.</p>
+					</div>
+				</div>
+				<!--// 엑셀파일 불러오기 -->
+				<div class="popup_btn_wrap2">
+					<button type="button">추가</button>
+					<button type="button" class="tooltip-close" data-focus="popup02-close" data-focus-next="popup02">닫기</button>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--// 엑셀 불러오기 -->
+
+	<!-- 주소록 불러오기 -->
+	<div class="tooltip-wrap">
+		<div class="popup-com import_layer popup06" tabindex="0" data-tooltip-con="popup06" data-focus="popup06" data-focus-prev="popup06-close" style="width: 1000px">
+			<div class="popup_heading">
+				<p><span>주소록 불러오기</p>
+				<button type="button" class="tooltip-close" data-focus="popup06-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
+			</div>
+			<div class="layer_in">
+				<div class="titBox">
+					<p>- 주소록 수정 및 변경은 <span>[주소록 관리]</span>에서만 가능합니다.</p>
+					<button type="button" class="adr_admin">주소록 관리</button>
+				</div>
+				<div class="adr_wrap">
+					<div class="adr_pop_left">
+						<div class="adr_left_search">
+							<label for="" class="label">그룹명 검색</label>
+							<input type="text" placeholder="그룹명 검색" onfocus="this.placeholder=''" onblur="this.placeholder='그룹명 검색'" class="inputLight">
+							<button type="button"><img src="/publish/images/popup/search.png" alt="검색"></button>
+						</div>
+						<div class="adr_pop_box">
+							<div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">전체[<span>50</span>명]</p>
+								</div>
+							</div>
+							<div class="adr_pop_list">
+								<div class="adr_cb_wrap2 active">
+									<p><img src="/publish/images/content/open_folder2.png" alt="폴더 열림">그룹미지정[<span>10</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호가 맞나요? 확실한가요?[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">직장[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">자주보내는 번호[<span>20</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p>
+								</div>
+								<div class="adr_cb_wrap2">
+									<p><img src="/publish/images/content/close_folder2.png" alt="폴더 닫힘">친구[<span>100</span>명]</p>
+								</div>
+							</div>
+						</div>
+						<div class="popup_btn">
+							<button type="button" class="btnType">선택 그룹 추가</button>
+						</div>
+					</div>
+					<div class="adr_pop_right">
+						<div class="clearfix">
+							<div class="btnWrap_last">
+								<label for="" class="label">카테고리 선택</label>
+								<select id="" class="selType2">
+									<option>전체</option>
+								</select>
+								<label for="" class="label">검색어 입력</label>
+								<input type="text" placeholder="검색어를 입력하세요" onfocus="this.placeholder=''" onblur="this.placeholder='검색어를 입력하세요'">
+								<button type="button" class="btnType btnType17">검색</button>
+							</div>
+							<!-- table -->
+							<div class="adr_excel adr_pop_list2">
+								<!-- thead -->
+								<div class="adr_hd">
+									<div>
+										<label for="" class="label">전체 선택</label>
+										<input type="checkbox">
+									</div>
+									<div>
+										그룹명
+										<div class="sort_wrap">
+											<button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button>
+											<button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button>
+										</div>
+									</div>
+									<div>
+										이름
+										<div class="sort_wrap">
+											<button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button>
+											<button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button>
+										</div>
+									</div>
+									<div>
+										휴대폰번호
+										<div class="sort_wrap">
+											<button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button>
+											<button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button>
+										</div>
+									</div>
+									<div>[*1*]</div>
+									<div>[*2*]</div>
+									<div>[*3*]</div>
+									<div>[*4*]</div>
+								</div>
+								<!-- tbody -->
+								<div class="adr_bd_wrap">
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+									<div class="adr_bd">
+										<div>
+											<label for="" class="label">한 줄 선택</label>
+											<input type="checkbox">
+										</div>
+										<div>가족</div>
+										<div>홍길동</div>
+										<div>010-1234-5678</div>
+										<div>변수1</div>
+										<div>변수2</div>
+										<div>변수3</div>
+										<div>변수4</div>
+									</div>
+								</div>
+							</div>
+							<!--// table -->
+						</div>
+						<div class="popup_btn_wrap2">
+							<button type="button">추가</button>
+							<button type="button" class="tooltip-close" data-focus="popup06-close" data-focus-next="popup06">닫기</button>
+						</div>
+					</div>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--// 주소록 불러오기 -->
+
+	<!--광고문자 관련법규 안내 팝업  -->
+	<div class="tooltip-wrap">
+		<div class="popup-com ad_layer adpopup01" tabindex="0" data-tooltip-con="adpopup01" data-focus="adpopup01" data-focus-prev="adpopup01-close" style="width: 795px">
+			<div class="popup_heading">
+				<p>광고문자 관련법규 안내</p>
+				<button type="button" class="tooltip-close" data-focus="adpopup01-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
+			</div>
+			<div class="layer_in">
+				<div class="list_tab_wrap2 type5">
+					<!-- tab button -->
+					<ul class="list_tab">
+						<li class="tab active"><button type="button" onclick="listTab2(this,'1');">광고문자 전송규정 안내</button></li>
+						<li class="tab"><button type="button" onclick="listTab2(this,'2');">광고문자 수신동의 안내</button></li>
+					</ul>
+					<!--// tab button -->
+				</div>
+				<!-- 광고문자 전송규정 안내 -->
+				<div class="adpop_cont current" id="listTab2_1">
+					<div class="adpop1_top">
+						<div>
+							<p>의무사항</p>
+							<div>
+								<p>메시지 시작 부분에 (광고) 문구 표기<span>(광/고), (광 고), [광고], (00광고) 등과 같이 변칙
+										표기 금지</span></p>
+								<p>업체명, 연락처, 무료거부 표기<span>“업체명”이 기재될 경우 연락처 및 무료거부 표기가
+										없더라도 100% 광고문자로 간주</span></p>
+								<p>광고문자 전송시간<span>오전 8시부터 오후 9시까지만 전송 가능<br>
+										※ 오후 9시 이후에는 광고문자 전송 불가</span></p>
+							</div>
+						</div>
+					</div>
+					<div class="adpop1_middle">
+						<p>2015년 5월부터 광고전송에 대한 (광고)표시 의무가 본격 시행되었습니다.<br>
+							자세한 관련 법규 관련 사항은 아래 한국인터넷진흥원(KISA)에서 제공하는 안내서를 참고하시기 바랍니다.</p>
+						<button type="button">불법스팸방지 안내서 5차 개정판</button>
+						<span>* 출처 : KISA 한국인터넷진흥원</span>
+					</div>
+					<div class="adpop1_bottom">
+						<p>광고문자의 범위는 어디서부터 어디까지인가요?</p>
+						<div>
+							<div>
+								<p>영리목적의 광고성 정보 범위</p>
+								<p>· 영업을 하는 자가 고객에게 보내는 정보는 원칙적으로 모두 광고성 정보로 간주<br>
+									· 주된 정보가 광고성 정보가 아니더라도 부수적으로 광고성 정보가 포함되어 있다면 광고성 정보로 분류
+								</p>
+							</div>
+							<div>
+								<p>광고성 정보의 예외</p>
+								<p>· 구매한 재화 또는 서비스에 대한 보증, 제품 리콜, 안전 또는 보안 관련 정보<br>
+									· 고객의 요청에 의해 발송되는 1회성 정보<br>
+									· 수신자가 금전적 대가를 지불하고 신청한 정보
+								</p>
+							</div>
+							<div class="adpop1_bottom_in">
+								<p>‘영리목적의 광고성 정보’의 적용범위</p>
+								<div>
+									<span>법률</span>
+									<div>
+										<p>제50조(영리목적의 광고성 정보 전송 제한)</p>
+										<p>① 누구든지 전자적 전송매체를 이용하여 영리목적의 광고성 정보를 전송하려면 그 수신자의 명시적인 사전 동의를 받아야한다. 다만, 다음 각 호의 어느 하나에 해당하는 경우에는 사전동의를 받지 아니한다.<br>
+											1. 재화 등의 거래관계를 통하여 수신자로부터 직접 연락처를 수집한 자가 대통령령으로 정한 기간 이내에 자신이 처리하고 수신자와 거래한 것과 동종의 재화 등에 대한 영리목적의 광고성 정보를 전송 하려는 경우<br>
+											2. “방문판매 등에 관한 법률”에 따른 전화권유판매자가 육성으로 수신자에게 개인정보의 수집출처를 고지하고 전화권유를 하는 경우</p>
+									</div>
+								</div>
+								<div>
+									<span>시행령</span>
+									<div>
+										<p>제61조(영리목적의 광고성 정보 전송기준)</p>
+										<p>① 법 제50조제1항제1호에서 “대통령령으로 정한 기간”이란 해당 재화 등의 거래가 종료된 날부터 6개월을 말한다.</p>
+									</div>
+								</div>
+								<div class="adpop1_bottom_req">
+									<p>누구든지 전자적 전송매체를 이용해 영리목적의 광고성 정보를 전송하는 경우<br>
+										정보통신망법 제50조에서 정한 의무를 준수하여야 함</p>
+								</div>
+							</div>
+						</div>
+					</div>
+				</div>
+				<!--// 광고문자 전송규정 안내 -->
+
+				<!-- 광고문자 수신동의 안내 -->
+				<div class="adpop_cont adpop2" id="listTab2_2">
+					<div class="adpop1_top">
+						<div>
+							<p>의무사항</p>
+							<span class="info">수신동의 여부를 받은날로부터 2년마다 재고지하여야 함</span>
+							<div>
+								<p>전송자 명칭<span>메시지 시작부분에 표기</span></p>
+								<p>날짜, 동의 사실<span>수신동의 날짜 및 수신에 동의한 사실을 입력</span></p>
+								<p>무료거부번호 표기<span>수신동의에 대한 유지 또는 철회 의사 표시</span></p>
+							</div>
+						</div>
+					</div>
+					<div class="adpop1_bottom">
+						<div class="adpop1_bottom_in">
+							<p>수신동의 여부 확인</p>
+							<div>
+								<span>법률</span>
+								<div>
+									<p>제50조(영리목적의 광고성 정보 전송 제한)</p>
+									<p>⑧ 제1항 또는 제3항에 따라 수신동의를 받은 자는 대통령령으로 정하는 바에 따라 정기적으로 광고성 정보 수신자의 수신동의 여부를 확인하여야 한다.<p>
+								</div>
+							</div>
+							<div>
+								<span>시행령</span>
+								<div>
+									<p>제62조의3(수신동의 여부 확인 방식)</p>
+									<p>① 법 제50조제1항 또는 제3항에 따라 수신자의 사전 동의를 받은 자는 같은 조 제8항에 따라 그 수신동의를 받은 날로부터 2년마다(매 2년이 되는 해의 수신동의를 받은 날과 같은 날 전까지를 말한다) 해당 수신자의 수신동의 여부를 확인하여야 한다.<br>
+										② 제1항에 따라 수신동의 여부를 확인하려는 자는 수신자에게 다음 각 호의 사항을 밝혀야 한다.<br>
+										1. 전송자의 명칭<br>
+										2. 수신자의 수신동의 사실과 수신에 동의한 날짜<br>
+										3. 수신동의에 대한 유지 또는 철회의 의사를 표시하는 방법</p>
+								</div>
+							</div>
+							<div class="adpop1_bottom_req">
+								<p>누구든지 전자적 전송매체를 이용해 영리목적의광고성 정보를 전송하는 경우<br>
+									정보통신망법 제50조에서 정한 의무를 준수하여야 함</p>
+							</div>
+						</div>
+					</div>
+					<div class="adpop1_bottom" style="border-top: 2px solid #000;">
+						<p>수신동의가 무엇인가요?</p>
+						<div>
+							<p>· 광고성 문자 전송자는 최초 수신동의 여부를 받은날로부터 매 2년마다 수신자에게 재수신 동의를 하여야 합니다.</p>
+							<p>· 2018년 11월 29일 개정법 시행 이전 발송한 광고성 문자 수신 동의 건에 대해서는 추가 수신동의를 받아야 하며, &nbsp;&nbsp;광고성 문자 수신 동의를 받지 않고 문자전송 시 과태료가 부과되오니 반드시 유의하시기 바랍니다.</p>
+							<p>· 수신자의 의사표시 방법은 비용이 발생하지 않도록 적절한 조치를 취하여야 합니다.</p>
+							<p>· 수신자가 별도의 의사표시를 하지 않은 경우 기존 동의 의사는 계속 유지됩니다.</p>
+						</div>
+					</div>
+					<div class="adpop1_bottom">
+						<p>수신동의 처리결과를 수신자에게 반드시 통지해야 하나요?</p>
+						<div>
+							<p>· 수신자가 수신거부 또는 수신동의 철회를 요청한 경우 접수일로부터 14일 이내에 그 결과를 수신자에게<br>&nbsp;&nbsp;고지하여야 합니다.</p>
+							<p>· 수신동의 처리결과 통지는 광고성 정보 전송이 아니므로 ‘(광고)’나 ‘무료회신번호’ 등을 표기하지 않아도 됩니다.</p>
+							<p>· 수신자의 의사표시 방법은 비용이 발생하지 않도록 적절한 조치를 취하여야 합니다.</p>
+							<p class="c_e40000">&nbsp;&nbsp;ex) 귀하가 2020년 8월 30일 요청하신 수신동의 철회요청이 정상적으로 처리되었습니다. 업체명</p>
+						</div>
+					</div>
+				</div>
+				<!--// 광고문자 수신동의 안내 -->
+			</div>
+			<div class="popup_btn_wrap2" style="margin: 0 auto 30px auto;">
+				<button type="button" class="tooltip-close" data-focus="adr_popup01-close" data-focus-next="popup02">닫기</button>
+			</div>
+		</div>
+	</div>
+	<!--// 광고문자 관련법규 안내 팝업 -->
+
+	<!--  이벤트 잔액 팝업 -->
+	<div class="tooltip-wrap">
+		<div class="popup-com event_cash_popup popup07" tabindex="0" data-tooltip-con="popup07" data-focus="popup07" data-focus-prev="popup07-close">
+			<div class="popup_heading">
+				<p>이벤트 잔액</p>
+				<button type="button" class="tooltip-close" data-focus="popup07-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
+			</div>
+			<div class="layer_in">
+				<div class="table_wrap">
+					<div class="table_top">
+						<p class="popup_title_18">첫 결제 이벤트 잔액(캐시)</p>
+						<p><span class="c_e40000 fwBold">100,000,000</span>원</p>
+					</div>
+					<table class="popup_table_type2">
+						<colgroup>
+							<col style="width: 25%;">
+							<col style="width: auto;">
+						</colgroup>
+						<tbody>
+							<tr>
+								<th>단문(7.5)</th>
+								<td><span class="c_002c9a fwBold">13</span>건</td>
+							</tr>
+							<tr>
+								<th>장문(32)</th>
+								<td><span class="c_002c9a fwBold">13</span>건</td>
+							</tr>
+							<tr>
+								<th>그림 1장(59)</th>
+								<td><span class="c_002c9a fwBold">13</span>건</td>
+							</tr>
+							<tr>
+								<th>그림 2장(67)</th>
+								<td><span class="c_002c9a fwBold">13</span>건</td>
+							</tr>
+							<tr>
+								<th>그림 3장(70)</th>
+								<td><span class="c_002c9a fwBold">13</span>건</td>
+							</tr>
+						</tbody>
+					</table>
+				</div>
+				<div class="popup_btn_wrap2">
+					<button type="button">닫기</button>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--// 이벤트 잔액 팝업 -->
+
+	<div class="quickMenu">
+		<div>
+			<p class="quick_title">QUICK<br>MENU</p>
+			<p class="quick_title2">QUICK</p>
+			<ul class="quickMenuIn">
+				<li>
+					<a href="/publish/index.html"><i class="quick1"></i><span>이용안내</span></a>
+					<div class="hover_cont">이용안내</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick2"></i><span>채팅상담</span></a>
+					<div class="hover_cont">채팅상담</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick3"></i><span>원격지원</span></a>
+					<div class="hover_cont">원격지원</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick4"></i><span>맞춤제작</span></a>
+					<div class="hover_cont">맞춤제작</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick5"></i><span>주소록 등록</span></a>
+					<div class="hover_cont">주소록 등록</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick6"></i><span>엑셀 전송</span></a>
+					<div class="hover_cont">엑셀 대량전송</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick7"></i><span>견적서</span></a>
+					<div class="hover_cont">견적서</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick8"></i><span>결제</span></a>
+					<div class="hover_cont">결제</div>
+				</li>
+				<li>
+					<a href="#"><i class="quick9"></i><span>영수증/계산서</span></a>
+					<div class="hover_cont">영수증/계산서</div>
+				</li>
+			</ul>
+			<button type="button" class="goTop" title="맨 위로 이동">TOP<i></i></button>
+		</div>
+	</div>
+	<!--// quick 메뉴 -->
+	<!-- header 영역 -->
+	<header id="header" class="header sub">
+		<!-- header top 영역 -->
+		<div class="header_top">
+			<div class="inner">
+				<ul class="menu_left">
+					<li><a href="#"><i class="hdTop_fav"></i>즐겨찾기추가</a></li>
+					<li><a href="#"><i class="hdTop_mypage"></i>마이페이지</a></li>
+					<li><a href="#"><i class="hdTop_center"></i>고객센터</a></li>
+				</ul>
+				<ul class="menu_right">
+					<li><a href="#">충전하기</a></li>
+					<li class="SortLine"><a href="#">요금안내</a></li>
+					<li class="SortLine"><a href="#">이용안내</a></li>
+					<li class="SortLine"><a href="#">1:1고객상담</a></li>
+				</ul>
+			</div>
+		</div><!-- header top 영역 -->
+		<!-- header body 영역 -->
+		<div class="header_body">
+			<div class="inner table">
+				<h1 class="logo"><a href="/publish/index.html" alt="문자온 메인 바로가기"><img src="/publish/images/CI.png" alt="문자온 CI"></a></h1>
+				<ul class="gnbWrap table_cell">
+					<li><a href="#">문자발송</a></li>
+					<li><a href="#">선거문자</a></li>
+					<li><a href="#">카톡전송</a></li>
+					<li><a href="#">맞춤제작</a></li>
+					<li><a href="#">주소록 관리</a></li>
+					<li><a href="#">발송결과</a></li>
+					<li><a href="#">예약관리</a></li>
+					<li><a href="#">결제내역</a></li>
+				</ul>
+				<div class="s_menu">
+					<i class="allSearch_info"><span>문자검색</span></i>
+					<button type="button" title="전체검색" class="allSearch" onclick="searchToggle();"><img src="/publish/images/search.png" alt="검색영역 열기" class="allMenu"></button>
+					<button type="button" title="전체메뉴"><img src="/publish/images/all_menu.png" alt="전체메뉴 열기"></button>
+				</div>
+			</div>
+			<!-- search popup 영역 -->
+			<div class="pop_search">
+				<div class="inner">
+					<div class="area_search">
+						<select name="" id="">
+							<option value="">그림문자</option>
+							<option value="">단문문자</option>
+							<option value="">장문문자</option>
+							<option value="">GIF</option>
+						</select>
+						<input type="text" placeholder="문자샘플 검색하기" onfocus="this.placeholder=''" onblur="this.placeholder='문자샘플 검색하기'">
+						<button><img src="/publish/images/search02.png" alt=""></button>
+					</div>
+					<div class="area_popular">
+						<p><i></i>인기검색어</p>
+						<ul class="popular_tag">
+							<li><a href="#">#정월대보름</a></li>
+							<li class="on"><a href="#">#추석</a></li>
+							<li><a href="#">#가을인사</a></li>
+							<li><a href="#">#좋은하루</a></li>
+						</ul>
+					</div>
+					<button class="btn_close" onclick="searchToggle();"><img src="/publish/images/btn_searchclose.png" alt=""></button>
+				</div>
+			</div>
+			<!--// search popup 영역 -->
+		</div>
+		<!--// header body 영역 -->
+		<div id="login" class="login2">
+			<div class="inner table">
+				<div class="login_left table_cell">
+					<div class="login_info">
+						<i></i>
+						<div class="login2_name">
+							<p>홍길동홍길동홍길동홍길동</p>
+							<span>(개인) 님</span>
+						</div>
+						<div class="session">
+							<span>08:46</span>
+							<button type="button">연장</button>
+						</div>
+						<button type="button" class="btnType btnType3">마이페이지</button>
+						<button type="button" class="btnType btnType2">로그아웃</button>
+					</div>
+					<div class="check_money">
+						<i></i>
+						<p>보유잔액 <span class="fwMd">3,000</span>원</p>
+						<button type="button" class="btnType btnType3">충전</button>
+						<button type="button" class="btnType btnType3">전용계좌</button>
+					</div>
+					<div class="point">
+						<i></i>
+						<p>포인트 <span class="fwMd">1,000</span>원</p>
+						<button type="button" class="btnType btnType3">교환</button>
+					</div>
+				</div>
+				<div class="login_right">
+					<button type="button" class="btnType btnType14"><i></i>이동통신사 스팸 규격 안내</button>
+					<!-- <button type="button">스팸필터링 번호도용차단</button> -->
+				</div>
+			</div>
+		</div>
+		<!--// login 영역 -->
+	</header>
+	<!--// header 영역 -->
+	<div class="mask"></div>
+
+	<!-- content 영역 -->
+	<div id="container" class="cont sub">
+		<div class="inner">
+			<!-- send top -->
+			<div class="send_top">
+				<!-- tab button -->
+				<ul class="tabType1">
+					<li class="tab active"><button type="button" onclick="TabType1(this,'1');">단문 · 장문 · 그림 문자</button></li>
+					<li class="tab"><button type="button" onclick="TabType1(this,'2');">대량 문자(엑셀·TXT)</button></li>
+				</ul>
+				<!--// tab button -->
+				<!-- tab content1 -->
+				<div class="top_content current election contentArea" id="tab1_1">
+					<div class="heading">
+						<h2>20건 문자(수동문자) 전송</h2>
+						<div class="election_btnWrap">
+							<button type="button" class="button2 info" onclick="infoPop('selectMsgDataView2');">발송규정</button>
+							<button type="button" class="button2 info" data-tooltip="candidate_popup03">사용안내</button>
+							<button type="button" class="btnType" onclick="javascript:fn_candidateLoginChk(); return false;"><i class="election_btn1"></i>후보자 등록</button>
+							<button type="button" class="btnType" onclick="location.href='/web/member/pay/BillPub.do'"><i class="election_btn2"></i>세금계산서</button>
+							<button type="button" class="btnType" onclick="location.href='/web/mjon/msgsent/selectMsgSentView.do'"><i class="election_btn3"></i>발송결과 출력하기</button>
+						</div>
+					</div>
+					<div class="send_general">
+						<!-- send left 문자 보내기 입력 -->
+						<div class="send_left">
+							<table class="tType1">
+								<caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption>
+								<colgroup>
+									<col style="width: 120px;">
+									<col style="width: auto;">
+								</colgroup>
+								<tbody>
+									<tr>
+										<th scope="row">발신번호</th>
+										<td class="put_num">
+											<label for="num" class="label"></label>
+											<select id="num" class="sel_number">
+												<option value="">010-1234-5678</option>
+												<option value="">010-1234-5678</option>
+												<option value="">010-1234-5678</option>
+												<option value="">010-1234-5678</option>
+											</select>
+											<button type="button" class="btnType btnType6">번호변경</button>
+										</td>
+									</tr>
+									<tr class="msg_title active">
+										<th scope="row">제목</th>
+										<td>
+											<ul class="title_wrap">
+												<li>
+													<input id="title_y" type="radio" name="title_status" value="Y" onchange="titleStatus(this);">
+													<label for="title_y">사용</label>
+													<input id="title_n" type="radio" name="title_status" value="N" onchange="titleStatus(this);" checked="checked">
+													<label for="title_n">사용안함</label>
+												</li>
+												<li class="textbox">
+													<label for="mmsSubject" class="label"></label>
+													<input type="text" size="20" id="mmsSubject" name="mmsSubject" class="w100" maxlength="20" placeholder="" onfocus="this.placeholder=''">
+												</li>
+											</ul>
+										</td>
+									</tr>
+									<!-- 단문 -->
+									<tr>
+										<th scope="row" class="vTop">내용</th>
+										<td class="putText">
+											<div class="clearfix">
+												<div class="put_left short">
+													<!-- 업로드한 이미지의 썸네일 영역 -->
+													<ul class="thumb_wrap liOnImg ui-sortable"></ul>
+													<!-- //업로드한 이미지의 썸네일 영역 -->
+													<label for="smsTxtArea" class="label"></label>
+													<div class="ad_txt">
+														<p>(선거운동정보)</p>
+													</div><textarea id="smsTxtArea" name="smsTxtArea" class="put_text" placeholder="내용을 입력해주세요.
+-90btye 초과 시 LMS 자동전환
+-파일첨부 시 MMS 자동전환"></textarea>
+													<div class="text_length">
+														<div class="deny_txt">후보자전화번호 <br>불법수집정보 신고번호 118번<br>무료거부 0808800858</div>
+														<div name="afterDeny">
+															<p>
+																<span class="fwMd" id="msgLeng">79 / </span>
+																<span class="c_002c9a fwMd" id="limitLeng">90</span>byte
+															</p>
+															<span class="msg_com msg_short">단문</span>
+														</div>
+													</div>
+												</div>
+												<div class="put_right">
+													<div class="btn_popup_wrap spc_wrap">
+														<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button>
+														<div class="send_miniPop spc_character">
+															<div class="tab_character">
+																<a href="#none" class="on">특수문자</a>
+																<a href="#none">웃음</a>
+																<a href="#none">슬픔</a>
+																<a href="#none">분노</a>
+																<a href="#none">사랑</a>
+																<a href="#none">그외</a>
+															</div>
+															<!-- 특수문자 -->
+															<div class="cnt_character on">
+																<div class="box_character">
+																	<a href="#">※</a>
+																	<a href="#">☆</a>
+																	<a href="#">★</a>
+																	<a href="#">○</a>
+																	<a href="#">●</a>
+																	<a href="#">◎</a>
+																	<a href="#">◇</a>
+																	<a href="#">◆</a>
+																	<a href="#">□</a>
+																	<a href="#">■</a>
+																	<a href="#">△</a>
+																	<a href="#">▲</a>
+																	<a href="#">▽</a>
+																	<a href="#">▼</a>
+																	<a href="#">→</a>
+																	<a href="#">←</a>
+																	<a href="#">↑</a>
+																	<a href="#">↓</a>
+																	<a href="#">↔</a>
+																	<a href="#">〓</a>
+																	<a href="#">◁</a>
+																	<a href="#">♪</a>
+																	<a href="#">◀</a>
+																	<a href="#">▷</a>
+																	<a href="#">▶</a>
+																	<a href="#">♤</a>
+																	<a href="#">♠</a>
+																	<a href="#">♡</a>
+																	<a href="#">♥</a>
+																	<a href="#">♧</a>
+																	<a href="#">♣</a>
+																	<a href="#">⊙</a>
+																	<a href="#">◈</a>
+																	<a href="#">▣</a>
+																	<a href="#">◐</a>
+																	<a href="#">◑</a>
+																	<a href="#">▒</a>
+																	<a href="#">▦</a>
+																	<a href="#">♨</a>
+																	<a href="#">☏</a>
+																	<a href="#">☎</a>
+																	<a href="#">☞</a>
+																	<a href="#">☜</a>
+																	<a href="#">㈜</a>
+																	<a href="#">™</a>
+																	<a href="#">℡</a>
+																	<a href="#">ㆀ</a>
+																	<a href="#">ε</a>
+																	<a href="#">『</a>
+																	<a href="#">』</a>
+																	<a href="#">ⓛ</a>
+																	<a href="#">∏</a>
+																	<a href="#">ご</a>
+																	<a href="#">♂</a>
+																	<a href="#">↗</a>
+																	<a href="#">↙</a>
+																	<a href="#">↖</a>
+																	<a href="#">↘</a>
+																	<a href="#">ψ</a>
+																</div>
+															</div>
+															<!-- //특수문자 -->
+
+															<!-- 웃음 -->
+															<div class="cnt_character emt_character">
+																<div class="box_character">
+																	<a href="#">⌒⌒</a>
+																	<a href="#">^_^</a>
+																	<a href="#">^0^</a>
+																	<a href="#">s( ̄▽ ̄)/</a>
+																	<a href="#">(/^^)/</a>
+																	<a href="#">^o^~♬</a>
+																	<a href="#">^.~</a>
+																	<a href="#">^-^b</a>
+																	<a href="#">^▽^</a>
+																	<a href="#">^ε^</a>
+																	<a href="#">(^^)γ</a>
+																	<a href="#">(~^^)~</a>
+																	<a href="#">☆(~.^)/</a>
+																	<a href="#">(*^o^*)</a>
+																	<a href="#">n_n</a>
+																	<a href="#">↖(^▽^)↗</a>
+																	<a href="#">( ̄∇ ̄)</a>
+																	<a href="#">(*^.^)♂</a>
+																	<a href="#">*^^*</a>
+																	<a href="#">ㅎ.ㅎ</a>
+																	<a href="#">=^.^=</a>
+																	<a href="#">^▽^</a>
+																	<a href="#">~_~</a>
+																	<a href="#">(=^▽^)/♪</a>
+																</div>
+															</div>
+															<!-- //웃음 -->
+
+															<!-- 슬픔 -->
+															<div class="cnt_character emt_character">
+																<div class="box_character">
+																	<a href="#">(づ_T)</a>
+																	<a href="#">(ㅠ.ㅠ)</a>
+																	<a href="#">(#_-)</a>
+																	<a href="#">o(T^T)o</a>
+																	<a href="#">ㅠ.ㅠ</a>
+																	<a href="#">(-_-メ)</a>
+																	<a href="#">Y.Y</a>
+																	<a href="#">TmT</a>
+																	<a href="#">ご.ご</a>
+																	<a href="#">(=_=;)</a>
+																	<a href="#">⊇.⊆</a>
+																	<a href="#">(o_Φ)</a>
+																	<a href="#">∋.∈</a>
+																	<a href="#">(___)_</a>
+																	<a href="#">(-.¥)</a>
+																	<a href="#">@_O</a>
+																	<a href="#">●⊙</a>
+																	<a href="#">(♨_♨)</a>
+																	<a href="#">(X_X)</a>
+																	<a href="#">Θ_Θ</a>
+																	<a href="#">(∏.∏)</a>
+																	<a href="#">(づ_ど)</a>
+																	<a href="#">( ̄^ ̄)</a>
+																</div>
+															</div>
+															<!-- //슬픔 -->
+
+															<!-- 분노 -->
+															<div class="cnt_character emt_character">
+																<div class="box_character">
+																	<a href="#">Θ_Θ</a>
+																	<a href="#">=-_-a</a>
+																	<a href="#">('o')</a>
+																	<a href="#">(`へ´)</a>
+																	<a href="#">(-ヘㅡメ)凸</a>
+																	<a href="#">⊙⊙ㆀ</a>
+																	<a href="#">⊙.⊙</a>
+																	<a href="#">ㅡㅡ+</a>
+																	<a href="#">(`o´)y</a>
+																	<a href="#">づºДº)つ</a>
+																	<a href="#">O_O</a>
+																	<a href="#">(@.@)</a>
+																	<a href="#">★.★</a>
+																	<a href="#">(;¬_¬)</a>
+																	<a href="#">┏(;-_-)┛</a>
+																	<a href="#">┏(-_-メ)┓</a>
+																	<a href="#">(>&#60;ㆀ)&#47;</a>
+																	<a href="#">--メ凸</a>
+																	<a href="#">(`_)乂(_′)</a>
+																	<a href="#">(-_-)c+_=)</a>
+																</div>
+															</div>
+															<!-- //분노 -->
+
+															<!-- 사랑 -->
+															<div class="cnt_character emt_character">
+																<div class="box_character">
+																	<a href="#">♥.♥</a>
+																	<a href="#">^o^~♬</a>
+																	<a href="#">(*^}{^*)</a>
+																	<a href="#">ⓛⓞⓥⓔ</a>
+																	<a href="#">(*_*)</a>
+																	<a href="#">(♡.♡)</a>
+																	<a href="#">ε♡₃ε♥</a>
+																	<a href="#">(*..)(..*)</a>
+																	<a href="#">(~.^)s</a>
+																	<a href="#">☞♡☜</a>
+																	<a href="#">*♥o♥*</a>
+																	<a href="#">(/^o^)/♡</a>
+																	<a href="#">@-m-m--</a>
+																	<a href="#">=>>------▷♡</a>
+																	<a href="#">(*^^)σ(^_^)</a>
+																	<a href="#">(*^-^)♡(^o^*)</a>
+																	<a href="#">(づ^.^)づ~♡</a>
+																	<a href="#">\(*^▽^*)ノ</a>
+																	<a href="#">*⌒З^)^.⌒*)</a>
+																	<a href="#">(づ ̄³ ̄)づ~</a>
+																	<a href="#">(づ ̄³ ̄)づ</a>
+																	<a href="#">(^*^)kiss</a>
+																	<a href="#">(*'-⌒*)ⓥ</a>
+																	<a href="#">s( ̄▽ ̄)/</a>
+																</div>
+															</div>
+															<!-- //사랑 -->
+
+															<!-- 그외 -->
+															<div class="cnt_character emt_character emt_etc ">
+																<div class="box_character">
+																	<a href="#">&#60;:3)--</a>
+																	<a href="#">(^(oo)^)</a>
+																	<a href="#">(:::[</a>
+																	<a href="#">]:::)</a>
+																	<a href="#">[( ̄. ̄)]zZ</a>
+																	<a href="#">(``)(``)</a>
+																	<a href="#">(T(oo)T)</a>
+																	<a href="#">(^.^)=O)#.#)</a>
+																	<a href="#">?‥…─━★</a>
+																	<a href="#">(__)zzz</a>
+																	<a href="#">(=ㅅ)=333</a>
+																	<a href="#">&#60;(>.<ㆀ)></a>
+																	<a href="#">>(/////)&#60;</a>
+																	<a href="#">((ど(</a>
+																	<a href="#">^0^</a>
+																	<a href="#">)つ))</a>
+																	<a href="#">■■■■■□90%</a>
+																	<a href="#">( ̄_ ̄>-(^▽^;)</a>
+																	<a href="#">∑⊙)++333=◀</a>
+																	<a href="#">(ノ^_^)ノ~~⑩</a>
+																	<a href="#">(^▽^)/\(^_^)</a>
+																	<a href="#">(*.*)@==(`.`)</a>
+																	<a href="#">(っㅡㅡ)つ━●</a>
+																	<a href="#">(``)(</a>
+																	<a href="#">:)(..)(:</a>
+																	<a href="#">(``)</a>
+																</div>
+															</div>
+															<!-- //그외 -->
+															<button type="button" class="btn_close" onclick="miniPopup(this)">닫기</button>
+														</div>
+													</div>
+													<button type="button" class="btnType btnType7" onclick="miniPopup(this)">선거 필수문구 입력</button>
+													<button type="button" class="btnType btnType7">내문자함</button>
+													<button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button>
+													<div class="send_btnWrap">
+														<button type="button" class="btnType btnType9">문자저장</button>
+														<button type="button" class="btnType btnType9">초기화</button>
+													</div>
+												</div>
+											</div>
+											<p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p>
+										</td>
+									</tr>
+									<!-- 포토 -->
+									<tr>
+										<th scope="row" class="vTop">받는사람</th>
+										<td class="putText">
+											<div class="clearfix receipt_num">
+												<div class="receipt_num_top">
+													<label for="" class="label">받는 번호입력</label>
+													<input type="text" placeholder="번호를 입력하세요" onfocus="this.placeholder=''" onblur="this.placeholder='번호를 입력하세요'" style="width:340px;">
+													<button type="button" class="btnType btnType6">번호추가</button>
+													<span><span class="vMiddle">*</span> 중복번호는 한번만 발송됩니다.</span>
+												</div>
+												<div class="receipt_num_midde receipt_number_table_wrap">
+													<div class="listType list">
+														<table class="receipt_number_table">
+															<colgroup>
+																<col style="width:60px;">
+																<col style="width:calc((100% - 60px)/2);">
+																<col style="width:60px;">
+																<col style="width:calc((100% - 60px)/2);">
+															</colgroup>
+															<thead>
+																<tr>
+																	<th></th>
+																	<th>번호
+																		<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
+																		<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button>
+																	</th>
+																	<th></th>
+																	<th>번호
+																		<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
+																		<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button>
+																	</th>
+																</tr>
+															</thead>
+															<tbody>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check1" name="receipt_number_check">
+																		<label for="check1">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check2" name="receipt_number_check">
+																		<label for="check2">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check3" name="receipt_number_check">
+																		<label for="check3">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check4" name="receipt_number_check">
+																		<label for="check4">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check5" name="receipt_number_check">
+																		<label for="check5">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check6" name="receipt_number_check">
+																		<label for="check6">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check7" name="receipt_number_check">
+																		<label for="check7">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check8" name="receipt_number_check">
+																		<label for="check8">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check9" name="receipt_number_check">
+																		<label for="check9">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check10" name="receipt_number_check">
+																		<label for="check10">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check11" name="receipt_number_check">
+																		<label for="check11">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check12" name="receipt_number_check">
+																		<label for="check12">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check13" name="receipt_number_check">
+																		<label for="check13">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check14" name="receipt_number_check">
+																		<label for="check14">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check15" name="receipt_number_check">
+																		<label for="check15">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check16" name="receipt_number_check">
+																		<label for="check16">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check17" name="receipt_number_check">
+																		<label for="check17">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check18" name="receipt_number_check">
+																		<label for="check18">010-1234-5678</label></td>
+																</tr>
+																<tr>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check19" name="receipt_number_check">
+																		<label for="check19">010-1234-5678</label></td>
+																	<td colspan="2" class="ui-widget-content">
+																		<input type="checkbox" id="check20" name="receipt_number_check">
+																		<label for="check20">010-1234-5678</label></td>
+																</tr>
+															</tbody>
+														</table>
+
+														<!-- <ul class="thead_ul">
+															<li></li>
+															<li>
+																번호
+																<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
+																<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button>
+															</li>
+															<li></li>
+															<li>번호
+																<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
+																<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button></li>
+														</ul>
+														<ul class="tbody_ul">
+															<li class="ui-widget-content"><input type="checkbox" id="check1"></li>
+															<li class="ui-widget-content"><label for="check1">010-1234-5678</label></li>
+															<li class="ui-widget-content"><input type="checkbox" id="check2"></li>
+															<li class="ui-widget-content"><label for="check2">010-1234-5678</label></li>
+														</ul> -->
+													</div>
+													<div class="put_right">
+														<button type="button" class="btnType btnType7">주소록 불러오기</button>
+														<button type="button" class="btnType btnType7">엑셀 불러오기</button>
+														<div class="btn_popup_wrap">
+															<button type="button" class="btnType btnType3">오류 검사 <i class="qmMark"></i></button>
+															<div class="error_hover_cont send_hover_cont">
+																<p>휴대폰 번호 입력 시 해당 휴대폰 번호에 대한 형식이 어긋나거나 휴대폰 번호에 오류가 있는지 등을 검사하는 기능</p>
+																<span>(예시) 010-1234-0001(O) / 010-123-0001(X)</span>
+															</div>
+														</div>
+														<dl class="receipt_info">
+															<dt>전체 받는사람</dt>
+															<dd>
+																<p><b>10,000,000</b>명</p>
+															</dd>
+															<dt>전송완료</dt>
+															<dd>
+																<p><b class="c_e40000">20</b>명</p>
+															</dd>
+															<dt>잔여 받는사람</dt>
+															<dd>
+																<p><b class="c_002c9a">99,999,980</b>명</p>
+															</dd>
+														</dl>
+													</div>
+												</div>
+												<div class="list_bottom">
+													<ul class="pagination">
+														<li class="page_first"><a href="#" title="첫페이지" onclick="customSampleListAjax(1);return false;"><button type="button"><img src="/publish/images/content/page_first.png" alt="첫페이지"></button></a></li>
+														<li class="page_prev"><a href="#" title="이전10페이지" onclick="customSampleListAjax(1);return false;"><button type="button"><img src="/publish/images/content/page_prev.png" alt="이전10페이지"></button></a></li>
+														<li class="on"><button type="button"><a href="#" title="현재페이지">1</a></button></li>
+														<li><button type="button" onclick="customSampleListAjax(2);return false;"><a href="#" title="2페이지">2</a></button></li>
+														<li><button type="button" onclick="customSampleListAjax(3);return false;"><a href="#" title="3페이지">3</a></button></li>
+														<li><button type="button" onclick="customSampleListAjax(4);return false;"><a href="#" title="4페이지">4</a></button></li>
+														<li><button type="button" onclick="customSampleListAjax(5);return false;"><a href="#" title="5페이지">5</a></button></li>
+														<li class="page_next"><a href="#" title="다음10페이지" onclick="customSampleListAjax(11);return false;"><button type="button"><img src="/publish/images/content/page_next.png" alt="다음10페이지"></button></a></li>
+														<li class="page_last"><a href="#" title="마지막페이지" onclick="customSampleListAjax(52);return false;"><button type="button"><img src="/publish/images/content/page_last.png" alt="마지막페이지"></button></a></li>
+													</ul>
+													<div class="list_bottom_right">
+														<button type="button" class="btnType btn_gray fill">초기화</button>
+														<div class="btn_popup_wrap">
+															<button type="button" class="btnType btn_yellow fill btn_check_one">1명씩 선택<i class="qmMark"></i></button>
+															<div class="error_hover_cont send_hover_cont">
+																<p style="line-height:1.3;">마우스를 누르고 있으면 받는사람을 연속적으로 20명까지 선택할 수 있습니다.</p>
+															</div>
+														</div>
+													</div>
+												</div>
+											</div>
+										</td>
+									</tr>
+									<tr>
+										<th colspan="2" class="billingAmount">
+											<div>
+												<div class="final_pay">
+													<div class="pay_info_list">
+														<p>발송금액 :</p>
+														<div class="info" id="repPriceTxt" style="display: none;">
+															단문 : <strong>20</strong>건<span>/</span>장문 : <strong>150</strong>건<span>/</span>그림문자 : <strong>30</strong>건
+														</div>
+													</div>
+													<p class="price"><span id="repPriceTxt"></span><span id="totalPriceTxt">0</span> 원<span></span></p>
+												</div>
+												<p style="text-align: right; font-size: 14px; color: #666; margin: -10px 0 15px 0; font-weight: 300;">* 이벤트회원의 발송금액은 이벤트단가를 적용하여 계산된 금액이므로 실제 발송금액과 다를 수 있습니다.</p>
+												<div class="pay_type clearfix">
+													<div>
+														<input type="radio" id="radio_bill_1" name="radio_bill" checked="checked">
+														<label for="radio_bill_1">보유잔액</label>
+
+														<label for="userMoney" class="label">보유잔액</label>
+														<input type="text" id="userMoney" name="userMoney" value="0" readonly="">
+														<span class="won">원</span>
+														<button type="button" class="btnType btnType21" onclick="location.href='/web/member/pay/PayView.do'">충전</button>
+													</div>
+													<div><button type="button" data-tooltip="popup07" class="btnType btnType3 btn_event_cash">이벤트 잔액</button></div>
+												</div>
+												<!--발송금액 아래 등급별 가격안내 추가-->
+												<div class="my_price_wrap">
+													<div class="center-line"></div>
+													<ul>
+														<li class="title">
+															<img src="/publish/images/content/icon_mypage_message.png" alt="">나의 단가 &nbsp;<span>:</span> &nbsp;
+														</li>
+														<li class="price_line">
+															<span class="type">단문</span>
+															<span class="price">18</span>원
+															<span class="line">/ &nbsp;</span>
+														</li>
+														<li class="price_line">
+															<span class="type">장문</span>
+															<span class="price">50</span>원
+															<span class="line">/ &nbsp;</span>
+														</li>
+														<li class="price_line">
+															<span class="type">그림</span>
+															<span class="price">90</span>원
+															(2장 : 110원 / 3장 : 130원)
+														</li>
+													</ul>
+												</div>
+											</div>
+										</th>
+									</tr>
+									<tr>
+										<th scope="row">추천인 ID</th>
+										<td class="check_num">
+											<input id="radio5" type="radio" name="recom" checked="checked">
+											<label for="radio5">없음</label>
+											<input id="radio6" type="radio" name="recom">
+											<label for="radio6">있음</label>
+											<div>
+												<label for="id" class="label"></label>
+												<input type="text" size="20" id="id" placeholder="추천인 아이디 입력" onfocus="this.placeholder=''" onblur="this.placeholder='추천인 아이디 입력'">
+												<button type="button" class="btnType btnType9">추천인 확인</button>
+											</div>
+										</td>
+									</tr>
+								</tbody>
+							</table>
+						</div><!-- send left 문자 보내기 입력 -->
+						<!-- send right 문자 보내기 미리보기 -->
+						<div class="send_right">
+							<div class="phone">
+								<div class="phoneIn">
+									<div>
+										<p class="prev_p"><img src="/publish/images/search.	png">미리보기</p>
+										<div class="text_length2 clearfix" style="display: none;">
+											<span class="msg_com msg_short">단문</span>
+											<div>
+												<span>글자크기</span>
+												<button type="button"><img src="/publish/images/	content/font_plus.png"></button>
+												<button type="button"><img src="/publish/images/	content/font_minus.png"></button>
+											</div>
+										</div>
+										<div class="text_length2 clearfix">
+											<span class="msg_com msg_photo">포토</span>
+											<ul class="photo_msg_num">
+												<li onclick="imgClick(0);"><a href="#none">1</a></ li>
+												<li onclick="imgClick(1);"><a href="#none">2</a></ li>
+												<li onclick="imgClick(2);"><a href="#none">3</a></ li>
+											</ul>
+											<div>
+												<span>글자크기</span>
+												<button type="button"><img src="/publish/images/	content/font_plus.png"></button>
+												<button type="button"><img src="/publish/images/	content/font_minus.png"></button>
+											</div>
+										</div>
+										<!-- 텍스트 미리보기 -->
+										<div class="text_preview">
+											<div class="preiew_img">
+												<div class="img_box">
+													<img src="/publish/images/content/	photo_sample01.jpg">
+												</div>
+												<div class="img_box">
+													<img src="/publish/images/content/	photo_sample01.jpg">
+												</div>
+												<div class="img_box">
+													<img src="/publish/images/content/excel.jpg">
+												</div>
+											</div>
+											<div class="preview_auto">
+												<p class="ad_tit">(광고)</p>
+												<p class="none_txt">내용을 입력해주세요.</p>
+												<p class="realtime"></p>
+												<p class="deny_receipt">무료 거부 080-0000-0000</p>
+											</div>
+										</div>
+										<!-- //텍스트 미리보기 -->
+									</div>
+								</div>
+								<p class="addText">※ 단말기 설정에 따라 다르게 보일 수 있습니다<p>
+							</div>
+							<div class="phone_bottom">
+								<div class="send_rev">
+									<div class="send_content">
+										<div class="rev_radio">
+											<ul>
+												<li><input type="radio" id="reserYnN" name="reserYn" value="N" checked="checked"><label for="reserYnN">즉시</label></li>
+												<li><input type="radio" id="reserYnY" name="reserYn" value="Y"><label for="reserYnY">예약</label></li>
+											</ul>
+										</div>
+										<div class="send_btn">
+											<button type="button" class="btnType btnType11" onclick="javascript:fn_sendMsgData(); return false;">발송하기</button>
+											<button type="button" class="btnType btnType10" onclick="javascript:fnTestSend(); return false;">테스트발송</button>
+										</div>
+									</div>
+									<div class="rev_selected" style="display:none;">
+										<div class="rev_top">
+											<span>날짜 :</span>
+											<div class="calendar_wrap">
+												<input type="text" class="startDate2 inp resDate calendar02 picker__input" title="검색 시작일" id="startDate2" name="startDate2" value="" data-datecontrol="true" readonly="" aria-haspopup="true" aria-expanded="false" aria-readonly="false" aria-owns="startDate2_root">
+											</div>
+											<div class="selBox">
+												<select class="selType1" id="msgResHour" name="msgResHour">
+													<option value="00">00시</option>
+													<option value="01">01시</option>
+													<option value="02">02시</option>
+													<option value="03">03시</option>
+													<option value="04">04시</option>
+													<option value="05">05시</option>
+													<option value="06">06시</option>
+													<option value="07">07시</option>
+													<option value="08">08시</option>
+													<option value="09">09시</option>
+													<option value="10">10시</option>
+													<option value="11">11시</option>
+													<option value="12">12시</option>
+													<option value="13">13시</option>
+													<option value="14">14시</option>
+													<option value="15">15시</option>
+													<option value="16">16시</option>
+													<option value="17">17시</option>
+													<option value="18">18시</option>
+													<option value="19">19시</option>
+													<option value="20">20시</option>
+													<option value="21">21시</option>
+													<option value="22">22시</option>
+													<option value="23">23시</option>
+													<option value="24">24시</option>
+												</select>
+												<select class="selType1" id="msgResMin" name="msgResMin">
+													<option value="00">00분</option>
+													<option value="05">05분</option>
+													<option value="10">10분</option>
+													<option value="15">15분</option>
+													<option value="20">20분</option>
+													<option value="25">25분</option>
+													<option value="30">30분</option>
+													<option value="35">35분</option>
+													<option value="40">40분</option>
+													<option value="45">45분</option>
+													<option value="50">50분</option>
+													<option value="55">55분</option>
+												</select>
+											</div>
+											<!-- <div class="rev_bottom">
+												<input type="checkbox" id="divideChk" name="divideChk">
+												<label for="divideChk">분할전송</label>
+												<select class="selType1" id="divideCnt" name="divideCnt">
+													<option value="2">2</option>
+													<option value="10">10</option>
+													<option value="20">20</option>
+													<option value="30">30</option>
+												</select>
+												<label for="divideCnt">건</label>
+												<select class="selType1" id="divideTime" name="divideTime">
+													<option value="5">05분</option>
+													<option value="10">10분</option>
+													<option value="15">15분</option>
+													<option value="20">20분</option>
+													<option value="30">30분</option>
+												</select>
+												<label for="divideTime">간격</label>
+											</div> -->
+										</div>
+									</div>
+
+								</div>
+							</div>
+						</div>
+					</div>
+					<!--// send right 문자 보내기 미리보기 -->
+				</div>
+			</div>
+			<!--// tab content1 -->
+			<!-- tab content2 -->
+			<div class="top_content get_excel" id="tab1_2">
+				<div class="heading">
+					<h2>대량문자</h2>
+				</div>
+				<div class="titBox">
+					<p>- 각각 다른 사람에게 다른 내용의 메시지를 한번에 보낼 수 있습니다. (최대 1만 건)</p>
+					<p>- 광고성 메시지는 반드시 유의사항 확인 후 발송해 주시기 바랍니다. <span><a href="#" data-tooltip="adpopup01">[광고문자 관련규정 안내]</a></span></p>
+					<p>- 엑셀영역은 복사, 붙여넣기가 가능합니다.</p>
+					<button type="button" class="titBox_btn1"><i></i>사용안내</button>
+				</div>
+				<div class="send_general">
+					<!-- send left 문자 보내기 입력 -->
+					<div class="send_left">
+						<table class="tType1">
+							<caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption>
+							<colgroup>
+								<col style="width: 120px;">
+								<col style="width: auto;">
+							</colgroup>
+							<tbody>
+								<tr>
+									<th scope="row">문자분류</th>
+									<td class="send_cf">
+										<input id="radio1" type="radio" name="send_clas" checked="checked">
+										<label for="radio1">일반</label>
+										<input id="radio2" type="radio" name="send_clas">
+										<label for="radio2">광고</label>
+									</td>
+								</tr>
+								<tr>
+									<th scope="row">발신번호</th>
+									<td class="put_num">
+										<label for="num" class="label"></label>
+										<select id="num" class="sel_number">
+											<option value="">010-1234-5678</option>
+											<option value="">010-1234-5678</option>
+											<option value="">010-1234-5678</option>
+											<option value="">010-1234-5678</option>
+										</select>
+										<button type="button" class="btnType btnType6">번호추가</button>
+									</td>
+								</tr>
+								<tr>
+									<th scope="row">제목</th>
+									<td>
+										<!-- 단문일 때 -->
+										<label for="text" class="label"></label>
+										<input type="text" size="20" id="text" class="w100" placeholder="" onfocus="this.placeholder=''" disabled>
+										<!-- 장문일 때 -->
+										<!-- <input type="text" size="20" id="text" class="w100" placeholder="제목을 입력해주세요 (최대30byte, 발송관리용)" onfocus="this.placeholder=''" onblur="this.placeholder='제목을 입력해주세요 (최대30byte, 발송관리용)'"> -->
+									</td>
+								</tr>
+								<!-- 단문 -->
+								<tr>
+									<th scope="row" class="vTop">내용</th>
+									<td class="putText">
+										<div class="clearfix">
+											<div class="put_left short">
+												<div class="ad_txt">
+													<p>(광고)</p>
+												</div>
+												<label for="textarea" class="label"></label>
+												<textarea id="textarea" class="put_text" placeholder="내용을 입력해주세요.
+-90btye 초과 시 LMS 자동전환
+-파일첨부 시 MMS 자동전환"></textarea>
+												<div class="text_length">
+													<div>
+														<p>무료 거부 080-0000-0000</p>
+													</div>
+													<div>
+														<p><span class="fwMd">15 /<span><span class="c_002c9a fwMd"> 90</span>byte</p>
+														<span class="msg_com msg_short">단문</span>
+													</div>
+												</div>
+											</div>
+											<div class="put_right">
+												<div class="btn_popup_wrap spc_wrap">
+													<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button>
+													<div class="send_miniPop spc_character">
+														<div class="tab_character">
+															<a href="#none" class="on">특수문자</a>
+															<a href="#none">웃음</a>
+															<a href="#none">슬픔</a>
+															<a href="#none">분노</a>
+															<a href="#none">사랑</a>
+															<a href="#none">그외</a>
+														</div>
+														<!-- 특수문자 -->
+														<div class="cnt_character on">
+															<div class="box_character">
+																<a href="#">※</a>
+																<a href="#">☆</a>
+																<a href="#">★</a>
+																<a href="#">○</a>
+																<a href="#">●</a>
+																<a href="#">◎</a>
+																<a href="#">◇</a>
+																<a href="#">◆</a>
+																<a href="#">□</a>
+																<a href="#">■</a>
+																<a href="#">△</a>
+																<a href="#">▲</a>
+																<a href="#">▽</a>
+																<a href="#">▼</a>
+																<a href="#">→</a>
+																<a href="#">←</a>
+																<a href="#">↑</a>
+																<a href="#">↓</a>
+																<a href="#">↔</a>
+																<a href="#">〓</a>
+																<a href="#">◁</a>
+																<a href="#">♪</a>
+																<a href="#">◀</a>
+																<a href="#">▷</a>
+																<a href="#">▶</a>
+																<a href="#">♤</a>
+																<a href="#">♠</a>
+																<a href="#">♡</a>
+																<a href="#">♥</a>
+																<a href="#">♧</a>
+																<a href="#">♣</a>
+																<a href="#">⊙</a>
+																<a href="#">◈</a>
+																<a href="#">▣</a>
+																<a href="#">◐</a>
+																<a href="#">◑</a>
+																<a href="#">▒</a>
+																<a href="#">▦</a>
+																<a href="#">♨</a>
+																<a href="#">☏</a>
+																<a href="#">☎</a>
+																<a href="#">☞</a>
+																<a href="#">☜</a>
+																<a href="#">㈜</a>
+																<a href="#">™</a>
+																<a href="#">℡</a>
+																<a href="#">ㆀ</a>
+																<a href="#">ε</a>
+																<a href="#">『</a>
+																<a href="#">』</a>
+																<a href="#">ⓛ</a>
+																<a href="#">∏</a>
+																<a href="#">ご</a>
+																<a href="#">♂</a>
+																<a href="#">↗</a>
+																<a href="#">↙</a>
+																<a href="#">↖</a>
+																<a href="#">↘</a>
+																<a href="#">ψ</a>
+															</div>
+														</div>
+														<!-- //특수문자 -->
+
+														<!-- 웃음 -->
+														<div class="cnt_character emt_character">
+															<div class="box_character">
+																<a href="#">⌒⌒</a>
+																<a href="#">^_^</a>
+																<a href="#">^0^</a>
+																<a href="#">s( ̄▽ ̄)/</a>
+																<a href="#">(/^^)/</a>
+																<a href="#">^o^~♬</a>
+																<a href="#">^.~</a>
+																<a href="#">^-^b</a>
+																<a href="#">^▽^</a>
+																<a href="#">^ε^</a>
+																<a href="#">(^^)γ</a>
+																<a href="#">(~^^)~</a>
+																<a href="#">☆(~.^)/</a>
+																<a href="#">(*^o^*)</a>
+																<a href="#">n_n</a>
+																<a href="#">↖(^▽^)↗</a>
+																<a href="#">( ̄∇ ̄)</a>
+																<a href="#">(*^.^)♂</a>
+																<a href="#">*^^*</a>
+																<a href="#">ㅎ.ㅎ</a>
+																<a href="#">=^.^=</a>
+																<a href="#">^▽^</a>
+																<a href="#">~_~</a>
+																<a href="#">(=^▽^)/♪</a>
+															</div>
+														</div>
+														<!-- //웃음 -->
+
+														<!-- 슬픔 -->
+														<div class="cnt_character emt_character">
+															<div class="box_character">
+																<a href="#">(づ_T)</a>
+																<a href="#">(ㅠ.ㅠ)</a>
+																<a href="#">(#_-)</a>
+																<a href="#">o(T^T)o</a>
+																<a href="#">ㅠ.ㅠ</a>
+																<a href="#">(-_-メ)</a>
+																<a href="#">Y.Y</a>
+																<a href="#">TmT</a>
+																<a href="#">ご.ご</a>
+																<a href="#">(=_=;)</a>
+																<a href="#">⊇.⊆</a>
+																<a href="#">(o_Φ)</a>
+																<a href="#">∋.∈</a>
+																<a href="#">(___)_</a>
+																<a href="#">(-.¥)</a>
+																<a href="#">@_O</a>
+																<a href="#">●⊙</a>
+																<a href="#">(♨_♨)</a>
+																<a href="#">(X_X)</a>
+																<a href="#">Θ_Θ</a>
+																<a href="#">(∏.∏)</a>
+																<a href="#">(づ_ど)</a>
+																<a href="#">( ̄^ ̄)</a>
+															</div>
+														</div>
+														<!-- //슬픔 -->
+
+														<!-- 분노 -->
+														<div class="cnt_character emt_character">
+															<div class="box_character">
+																<a href="#">Θ_Θ</a>
+																<a href="#">=-_-a</a>
+																<a href="#">('o')</a>
+																<a href="#">(`へ´)</a>
+																<a href="#">(-ヘㅡメ)凸</a>
+																<a href="#">⊙⊙ㆀ</a>
+																<a href="#">⊙.⊙</a>
+																<a href="#">ㅡㅡ+</a>
+																<a href="#">(`o´)y</a>
+																<a href="#">づºДº)つ</a>
+																<a href="#">O_O</a>
+																<a href="#">(@.@)</a>
+																<a href="#">★.★</a>
+																<a href="#">(;¬_¬)</a>
+																<a href="#">┏(;-_-)┛</a>
+																<a href="#">┏(-_-メ)┓</a>
+																<a href="#">(>&#60;ㆀ)&#47;</a>
+																<a href="#">--メ凸</a>
+																<a href="#">(`_)乂(_′)</a>
+																<a href="#">(-_-)c+_=)</a>
+															</div>
+														</div>
+														<!-- //분노 -->
+
+														<!-- 사랑 -->
+														<div class="cnt_character emt_character">
+															<div class="box_character">
+																<a href="#">♥.♥</a>
+																<a href="#">^o^~♬</a>
+																<a href="#">(*^}{^*)</a>
+																<a href="#">ⓛⓞⓥⓔ</a>
+																<a href="#">(*_*)</a>
+																<a href="#">(♡.♡)</a>
+																<a href="#">ε♡₃ε♥</a>
+																<a href="#">(*..)(..*)</a>
+																<a href="#">(~.^)s</a>
+																<a href="#">☞♡☜</a>
+																<a href="#">*♥o♥*</a>
+																<a href="#">(/^o^)/♡</a>
+																<a href="#">@-m-m--</a>
+																<a href="#">=>>------▷♡</a>
+																<a href="#">(*^^)σ(^_^)</a>
+																<a href="#">(*^-^)♡(^o^*)</a>
+																<a href="#">(づ^.^)づ~♡</a>
+																<a href="#">\(*^▽^*)ノ</a>
+																<a href="#">*⌒З^)^.⌒*)</a>
+																<a href="#">(づ ̄³ ̄)づ~</a>
+																<a href="#">(づ ̄³ ̄)づ</a>
+																<a href="#">(^*^)kiss</a>
+																<a href="#">(*'-⌒*)ⓥ</a>
+																<a href="#">s( ̄▽ ̄)/</a>
+															</div>
+														</div>
+														<!-- //사랑 -->
+
+														<!-- 그외 -->
+														<div class="cnt_character emt_character emt_etc ">
+															<div class="box_character">
+																<a href="#">&#60;:3)--</a>
+																<a href="#">(^(oo)^)</a>
+																<a href="#">(:::[</a>
+																<a href="#">]:::)</a>
+																<a href="#">[( ̄. ̄)]zZ</a>
+																<a href="#">(``)(``)</a>
+																<a href="#">(T(oo)T)</a>
+																<a href="#">(^.^)=O)#.#)</a>
+																<a href="#">?‥…─━★</a>
+																<a href="#">(__)zzz</a>
+																<a href="#">(=ㅅ)=333</a>
+																<a href="#">&#60;(>.<ㆀ)></a>
+																<a href="#">>(/////)&#60;</a>
+																<a href="#">((ど(</a>
+																<a href="#">^0^</a>
+																<a href="#">)つ))</a>
+																<a href="#">■■■■■□90%</a>
+																<a href="#">( ̄_ ̄>-(^▽^;)</a>
+																<a href="#">∑⊙)++333=◀</a>
+																<a href="#">(ノ^_^)ノ~~⑩</a>
+																<a href="#">(^▽^)/\(^_^)</a>
+																<a href="#">(*.*)@==(`.`)</a>
+																<a href="#">(っㅡㅡ)つ━●</a>
+																<a href="#">(``)(</a>
+																<a href="#">:)(..)(:</a>
+																<a href="#">(``)</a>
+															</div>
+														</div>
+														<!-- //그외 -->
+														<button type="button" class="btn_close" onclick="miniPopup(this)">닫기</button>
+													</div>
+												</div>
+												<div class="btn_popup_wrap convers_wrap">
+													<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특정문구 일괄변환<i class="qmMark"></i></button>
+													<div class="send_miniPop convers">
+														<div>
+															<div class="convers_top">
+																<span>특정문구 일괄변환이란?</span>
+																<p>주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의 메시지를 발송하는 기능</p>
+															</div>
+															<div class="convers_middle"><a href="#">#{이름}</a></div>
+															<div class="convers_bottom">
+																<a href="#">#{1}</a>
+																<a href="#">#{2}</a>
+																<a href="#">#{3}</a>
+																<a href="#">#{4}</a>
+															</div>
+														</div>
+													</div>
+												</div>
+												<button type="button" class="btnType btnType7">내문자함</button>
+												<button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button>
+												<div class="send_btnWrap">
+													<button type="button" class="btnType btnType9">문자저장</button>
+													<button type="button" class="btnType btnType9">초기화</button>
+												</div>
+											</div>
+										</div>
+										<p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p>
+									</td>
+								</tr>
+								<!-- 포토 -->
+								<tr style="display: none;">
+									<th scope="row">내용</th>
+									<td class="putText">
+										<div class="clearfix">
+											<div class="put_left photo">
+												<ul class="thumb_wrap">
+													<li class="on">
+														<div>
+															<img src="/publish/images/content/thumb1.jpg" alt="thumb1">
+														</div>
+														<button type="button" class="file_close"><img src="/publish/images/content/thumb_del.png" alt="첨부파일 삭제"></button>
+														<button type="button" class="file_close_on"><img src="/publish/images/content/thumb_del_on.png" alt="첨부파일 삭제"></button>
+													</li>
+													<li>
+														<div>
+															<img src="/publish/images/content/thumb2.jpg" alt="thumb1">
+														</div>
+														<button type="button" class="file_close"><img src="/publish/images/content/thumb_del.png" alt="첨부파일 삭제"></button>
+														<button type="button" class="file_close_on"><img src="/publish/images/content/thumb_del_on.png" alt="첨부파일 삭제"></button>
+													</li>
+													<li>
+														<div>
+															<img src="/publish/images/content/thumb3.jpg" alt="thumb1">
+														</div>
+														<button type="button" class="file_close"><img src="/publish/images/content/thumb_del.png" alt="첨부파일 삭제"></button>
+														<button type="button" class="file_close_on"><img src="/publish/images/content/thumb_del_on.png" alt="첨부파일 삭제"></button>
+													</li>
+												</ul>
+												<div class="ad_txt">
+													<p>(광고)</p>
+												</div>
+												<label for="textarea" class="label"></label>
+												<textarea id="textarea" class="put_text">
+해마다 찾아오는 봄이지만
+봄맞이 대청소라는 말처럼,
+새 봄을 맞아 봄맞이 마음청소 한번하고 가실께요~ㅎㅎ
+    
+"새술은 새부대에"라는 말처럼 버리고 싶은 기억들을 
+깨끗이 비워보는 겁니다.
+    
+새봄에 새마음으로 새롭게 시작해 보는 겁니다.
+
+해마다 찾아오는 봄이지만
+봄맞이 대청소라는 말처럼,
+새 봄을 맞아 봄맞이 마음청소 한번하고 가실께요~ㅎㅎ
+    
+"새술은 새부대에"라는 말처럼 버리고 싶은 기억들을 
+깨끗이 비워보는 겁니다.
+    
+새봄에 새마음으로 새롭게 시작해 보는 겁니다.
+
+해마다 찾아오는 봄이지만
+봄맞이 대청소라는 말처럼,
+새 봄을 맞아 봄맞이 마음청소 한번하고 가실께요~ㅎㅎ
+    
+"새술은 새부대에"라는 말처럼 버리고 싶은 기억들을 
+깨끗이 비워보는 겁니다.
+    
+새봄에 새마음으로 새롭게 시작해 보는 겁니다.
+                                                    </textarea>
+												<div class="text_length">
+													<div>
+														<p>무료 거부 080-0000-0000</p>
+													</div>
+													<div>
+														<p><span class="fwMd">15 /<span><span class="c_002c9a fwMd"> 2000</span>byte</p>
+														<span class="msg_com msg_photo">그림</span>
+													</div>
+												</div>
+											</div>
+											<div class="put_right">
+												<div class="btn_popup_wrap spc_wrap">
+													<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button>
+													<div class="send_miniPop spc_character">
+														<div>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+															<a href="#"></a>
+
+														</div>
+													</div>
+												</div>
+												<div class="btn_popup_wrap">
+													<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특정문구 일괄변환<i class="qmMark"></i></button>
+													<div class="send_miniPop convers">
+														<div>
+															<div class="convers_top">
+																<span>특정문구 일괄변환이란?</span>
+																<p>주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의<br> 메시지를 발송하는 기능</p>
+															</div>
+															<div class="convers_middle"><a href="#">#{이름}</a></div>
+															<div class="convers_bottom">
+																<a href="#">#{1}</a>
+																<a href="#">#{2}</a>
+																<a href="#">#{3}</a>
+																<a href="#">#{4}</a>
+															</div>
+														</div>
+													</div>
+												</div>
+												<button type="button" class="btnType btnType7">내문자함</button>
+												<button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button>
+												<div class="send_btnWrap">
+													<button type="button" class="btnType btnType9">문자저장</button>
+													<button type="button" class="btnType btnType9">초기화</button>
+												</div>
+											</div>
+										</div>
+										<p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p>
+									</td>
+								</tr>
+							</tbody>
+						</table>
+					</div><!-- send left 문자 보내기 입력 -->
+					<!-- send right 문자 보내기 미리보기 -->
+					<div class="send_right">
+						<div class="phone">
+							<div class="phoneIn">
+								<div>
+									<p class="prev_p"><img src="/publish/images/search.	png">미리보기</p>
+									<div class="text_length2 clearfix" style="display: none;">
+										<span class="msg_com msg_short">단문</span>
+										<div>
+											<span>글자크기</span>
+											<button type="button"><img src="/publish/images/	content/font_plus.png"></button>
+											<button type="button"><img src="/publish/images/	content/font_minus.png"></button>
+										</div>
+									</div>
+									<div class="text_length2 clearfix">
+										<span class="msg_com msg_photo">포토</span>
+										<ul class="photo_msg_num">
+											<li onclick="imgClick(0);"><a href="#none">1</a></ li>
+											<li onclick="imgClick(1);"><a href="#none">2</a></ li>
+											<li onclick="imgClick(2);"><a href="#none">3</a></ li>
+										</ul>
+										<div>
+											<span>글자크기</span>
+											<button type="button"><img src="/publish/images/	content/font_plus.png"></button>
+											<button type="button"><img src="/publish/images/	content/font_minus.png"></button>
+										</div>
+									</div>
+									<!-- 텍스트 미리보기 -->
+									<div class="text_preview">
+										<div class="preiew_img">
+											<div class="img_box">
+												<img src="/publish/images/content/	photo_sample01.jpg">
+											</div>
+											<div class="img_box">
+												<img src="/publish/images/content/	photo_sample01.jpg">
+											</div>
+											<div class="img_box">
+												<img src="/publish/images/content/excel.jpg">
+											</div>
+										</div>
+										<div class="preview_auto">
+											<p class="ad_tit">(광고)</p>
+											<p class="none_txt">내용을 입력해주세요.</p>
+											<p class="realtime"></p>
+											<p class="deny_receipt">무료 거부 080-0000-0000</p>
+										</div>
+									</div>
+									<!-- //텍스트 미리보기 -->
+								</div>
+							</div>
+							<p class="addText">※ 단말기 설정에 따라 다르게 보일 수 있습니다<p>
+						</div>
+					</div>
+					<!--// send right 문자 보내기 미리보기 -->
+				</div>
+				<!-- excel 대량 불러오기 -->
+				<div class="excelWrap">
+					<div>
+						<div class="excel_selBox">
+							<div>
+								<button type="button" class="excel_btn btnType"><i class="uproad"></i>엑셀 불러오기</button>
+							</div>
+							<div>
+								<button type="button" class="excel_btn"><i class="downroad"></i>엑셀 샘플 다운로드</button>
+								<!-- <button type="button" class="btnType btnType14"><i></i>번호입력형식안내</button> -->
+							</div>
+						</div>
+						<div class="file_add">
+							<p><img src="/publish/images/content/file_add.png" alt="파일 붙여넣기">마우스로 엑셀 파일을 여기에 끌어다 놓으세요</p>
+						</div>
+						<div class="excel_middle2">
+							<p>총 <span class="c_e40000 fwBold">120</span>건 / 중복 <span class="c_002c9a fwBold">9</span>건</p>
+							<button type="button" class="btnType btnType6">번호추가</button>
+						</div>
+						<div class="drag_drop_wrap">
+							<img src="/publish/images/content/excel.jpg" style="width: 100%;">
+						</div>
+						<div class="excel_middle">
+							<div class="select_btnWrap clearfix">
+								<div>
+									<button type="button"><i class="remove_img"></i>선택삭제</button>
+									<button type="button"><i class="remove_img"></i>오류번호삭제</button>
+									<button type="button" class="check_validity">오류 검사<i></i></button>
+								</div>
+								<div>
+									<button type="button" class="excel_btn"><i class="downroad"></i>엑셀 다운로드</button>
+								</div>
+							</div>
+						</div>
+					</div>
+				</div>
+				<div class="send_general sec">
+					<div class="send_left">
+						<table class="tType1">
+							<caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption>
+							<colgroup>
+								<col style="width: 100px;">
+								<col style="width: auto;">
+							</colgroup>
+							<tbody>
+								<tr>
+									<th colspan="2" class="billingAmount">
+										<div>
+											<div class="final_pay">
+												<p>결제금액 :</p>
+												<p class="price"><span>200,000</span>원<span>(부가세 포함)</span></p>
+											</div>
+											<div class="pay_type clearfix">
+												<div>
+													<label for="" class="label">충전 금액</label>
+													<input id="radio_bill_1" type="radio" name="radio_bill" checked="checked">
+													<label for="radio_bill_1">내 충전금 (<span>3,000</span>원)</label>
+												</div>
+												<div>
+													<label for="" class="label">포인트 금액</label>
+													<input type="text" placeholder="199,700" readonly>
+													<button type="button" class="btnType btnType3">충전</button>
+												</div>
+											</div>
+										</div>
+									</th>
+								</tr>
+								<tr>
+									<th scope="row">추천인 ID</th>
+									<td class="check_num">
+										<input id="radio5" type="radio" name="recom" checked="checked">
+										<label for="radio5">없음</label>
+										<input id="radio6" type="radio" name="recom">
+										<label for="radio6">있음</label>
+										<div>
+											<label for="id" class="label"></label>
+											<input type="text" size="20" id="id" placeholder="추천인 아이디 입력" onfocus="this.placeholder=''" onblur="this.placeholder='추천인 아이디 입력'">
+											<button type="button" class="btnType btnType9">추천인 확인</button>
+										</div>
+									</td>
+								</tr>
+							</tbody>
+						</table>
+					</div>
+					<div class="send_right">
+						<div class="send_rev">
+							<div class="rev_radio">
+								<input id="radio11" type="radio" name="reser2" checked="checked">
+								<label for="radio11">즉시</label>
+								<input id="radio12" type="radio" name="reser2">
+								<label for="radio12">예약</label>
+							</div>
+							<div class="rev_selected">
+								<div class="rev_top">
+									<span>날짜 :</span>
+									<div class="calendar_wrap">
+										<input type="text" class="startDate2 inp" title="검색 시작일" id="startDate2" name="startDate2" value="" data-datecontrol="true">
+									</div>
+									<label for="" class="label">시 선택</label>
+									<div class="selBox">
+										<select class="selType1">
+											<option>00시</option>
+											<option>10시</option>
+											<option>20시</option>
+										</select>
+										<label for="" class="label">분 선택</label>
+										<select class="selType1">
+											<option>00분</option>
+											<option>25분</option>
+											<option>50분</option>
+										</select>
+									</div>
+								</div>
+								<div class="rev_bottom">
+									<input type="checkbox">
+									<label for="">분할전송</label>
+									<select class="selType1">
+										<option>00시</option>
+										<option>10시</option>
+										<option>20시</option>
+									</select>
+									<label for="">건</label>
+									<select class="selType1">
+										<option>00분</option>
+										<option>25분</option>
+										<option>50분</option>
+									</select>
+									<label>간격</label>
+								</div>
+							</div>
+						</div>
+						<div class="send_btn">
+							<button type="button" class="btnType btnType10">테스트 발송<img src="/publish/images/content/qmIcon.png"></button>
+							<button type="button" class="btnType btnType11">발송하기</button>
+						</div>
+					</div>
+				</div>
+			</div>
+			<!--// tab content2 -->
+			<div class="send_bottom">
+				<!-- tab button -->
+				<ul class="tabType2">
+					<li class="tab"><button type="button" onclick="TabType2(this,'1');">문자 샘플</button></li>
+					<li class="tab active"><button type="button" onclick="TabType2(this,'2');">그림문자 샘플</button></li>
+					<li class="tab"><button type="button" onclick="TabType2(this,'3');">지도/약도 추가</button></li>
+					<li class="tab"><button type="button" onclick="TabType2(this,'4');">내 문자함</button></li>
+				</ul>
+				<!--// tab button -->
+				<div class="search_sample">
+					<input type="text" placeholder="문자샘플 검색" onfocus="this.placeholder=''" onblur="this.placeholder='문자샘플 검색'">
+					<button><img src="/publish/images/search02.png" alt=""></button>
+				</div>
+				<!-- tab content1 -->
+				<div class="bottom_content" id="tab2_1">
+					<div class="area_tabs">
+						<div class="top_tab">
+							<div class="tab_depth1">
+								<a href="#none" class="on">전체</a>
+								<a href="#none">기업</a>
+								<a href="#none">개인</a>
+								<div class="on_active">전체</div>
+							</div>
+							<div class="tab_depth2">
+								<a href="#none" class="on">단문문자</a>
+								<a href="#none">장문문자</a>
+							</div>
+							<select name="" id="" class="selType2">
+								<option value="">2줄보기</option>
+								<option value="">4줄보기</option>
+								<option value="">6줄보기</option>
+							</select>
+							<div class="customReq">
+								<button type="button"><i></i>맞춤제작 요청</button>
+							</div>
+						</div>
+						<div class="bottom_tab">
+							<div class="tab_depth3">
+								<a href="#none">All</a>
+								<a href="#none" class="on">BEST</a>
+								<a href="#none">요일</a>
+								<a href="#none">계절/날씨</a>
+								<a href="#none">선거</a>
+								<a href="#none">기념일데이</a>
+								<a href="#none">경조사</a>
+								<a href="#none">모임/행사</a>
+								<a href="#none">명절</a>
+								<a href="#none">연말연시</a>
+								<a href="#none">감사/축하</a>
+								<a href="#none">사랑/우정</a>
+								<a href="#none">격려/위로</a>
+								<a href="#none">유머/코믹</a>
+								<a href="#none">좋은글/명언</a>
+								<a href="#none">운세/별자리</a>
+								<a href="#none">종교</a>
+							</div>
+							<div class="tab_depth4">
+								<a href="#none" class="on">#봄인사</a>
+								<a href="#none">#좋은글</a>
+								<a href="#none">#초대/답례</a>
+							</div>
+						</div>
+					</div>
+					<ul class="area_tabcontent msg_sample">
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이 화이트 데이 화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+						</li>
+					</ul>
+					<!-- pagination -->
+					<ul class="pagination">
+						<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
+						<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
+						<li class="on"><button>1</button></li>
+						<li><button>2</button></li>
+						<li><button>3</button></li>
+						<li><button>4</button></li>
+						<li><button>5</button></li>
+						<li><button>6</button></li>
+						<li><button>7</button></li>
+						<li><button>8</button></li>
+						<li><button>9</button></li>
+						<li><button>10</button></li>
+						<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
+						<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
+					</ul><!-- pagination -->
+				</div>
+				<!--// tab content1 -->
+				<!--// tab content2 -->
+				<div class="bottom_content current" id="tab2_2">
+					<div class="area_tabs">
+						<div class="top_tab">
+							<div class="tab_depth1">
+								<a href="#none" class="on">전체</a>
+								<a href="#none">기업</a>
+								<a href="#none">개인</a>
+								<div class="on_active">전체</div>
+							</div>
+							<div class="tab_depth2">
+								<a href="#none" class="on">그림문자</a>
+							</div>
+							<select name="" id="" class="selType2">
+								<option value="">2줄보기</option>
+								<option value="">4줄보기</option>
+								<option value="">6줄보기</option>
+							</select>
+							<div class="customReq">
+								<button type="button"><i></i>맞춤제작 요청</button>
+							</div>
+						</div>
+						<div class="bottom_tab">
+							<div class="tab_depth3">
+								<a href="#none">All</a>
+								<a href="#none" class="on">BEST</a>
+								<a href="#none">요일</a>
+								<a href="#none">계절/날씨</a>
+								<a href="#none">선거</a>
+								<a href="#none">기념일데이</a>
+								<a href="#none">경조사</a>
+								<a href="#none">모임/행사</a>
+								<a href="#none">명절</a>
+								<a href="#none">연말연시</a>
+								<a href="#none">감사/축하</a>
+								<a href="#none">사랑/우정</a>
+								<a href="#none">격려/위로</a>
+								<a href="#none">유머/코믹</a>
+								<a href="#none">좋은글/명언</a>
+								<a href="#none">운세/별자리</a>
+								<a href="#none">종교</a>
+							</div>
+							<div class="tab_depth4">
+								<a href="#none" class="on">#봄인사</a>
+								<a href="#none">#좋은글</a>
+								<a href="#none">#초대/답례</a>
+							</div>
+						</div>
+					</div>
+					<ul class="area_tabcontent photo_sample">
+						<li class="hover_photo">
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample01.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석 입니다 추석 입니다 추석 입니다 추석 입니다</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample01.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample02.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample02.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample03.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample03.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample04.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample04.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample05.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample05.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample06.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample06.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample07.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample07.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample08.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample08.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample09.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample09.jpg" alt="">
+							</div>
+						</li>
+						<li>
+							<div class="hover_cont"><img src="/publish/images/content/photo_sample10.jpg" alt=""></div>
+							<div class="tit_text_wrap">
+								<p class="tit_text">추석</p>
+							</div>
+							<div class="photo_cont">
+								<img src="/publish/images/content/photo_sample10.jpg" alt="">
+							</div>
+						</li>
+					</ul>
+					<!-- pagination -->
+					<ul class="pagination">
+						<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
+						<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
+						<li class="on"><button>1</button></li>
+						<li><button>2</button></li>
+						<li><button>3</button></li>
+						<li><button>4</button></li>
+						<li><button>5</button></li>
+						<li><button>6</button></li>
+						<li><button>7</button></li>
+						<li><button>8</button></li>
+						<li><button>9</button></li>
+						<li><button>10</button></li>
+						<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
+						<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
+					</ul><!-- pagination -->
+				</div>
+				<!--// tab content2 -->
+				<!--tab content3 -->
+				<div class="bottom_content" id="tab2_3">
+					<div class="map_search">
+						<label for="" class="label"></label>
+						<input type="text" placeholder="도로명 또는 지번을 입력해주세요." onfocus="this.placeholder=''" onblur="this.placeholder='도로명 또는 지번을 입력해주세요.'">
+						<button type="button" class="btnType map_check">확인</button>
+						<button type="button" class="btnType map_add">약도링크 추가</button>
+						<p><span class="vMiddle">*</span> 지도링크는 입력메시지 끝부분에 추가됩니다.</p>
+					</div>
+					<img src="/publish/images/content/imsi_map.PNG" alt="지도" style="width: 100%;">
+				</div>
+				<!--// tab content3 -->
+				<!-- tab content4 -->
+				<div class="bottom_content" id="tab2_4">
+					<div class="search_wrap clearfix">
+						<div class="btn_left">
+							<span>· 기간</span>
+							<div class="calendar_wrap">
+								<input type="text" class="startDate3 inp" title="검색 시작일" id="startDate3" name="startDate3" value="" data-datecontrol="true">
+								<div class="calendar_in" id="calendarName_startDate3" style="z-index: 9;">
+									<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('startDate3-lry','',this)"></button>
+									<div id="startDate3-lry" class="calendarPop" style="display: none;">
+										<iframe id="startDate3-ifrm" name="startDate3-ifrm" class="calendar-frame" src="/publish/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
+									</div>
+								</div>
+								<span class="dateEtc">~</span>
+								<input type="text" class="endDate inp" title="검색 종료일" id="endDate" name="endDate" value="" data-datecontrol="true">
+								<div class="calendar_in" id="calendarName_endDate" style="z-index: 0;">
+									<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('endDate-lry','',this)"></button>
+								</div>
+							</div>
+							<div class="search">
+								<label for="id" class="label"></label>
+								<input type="text" id="id" placeholder="내보관함 검색" onfocus="this.placeholder=''" onblur="this.placeholder='내보관함 검색'">
+								<button type="button" class="btnType btnType2">검색</button>
+							</div>
+						</div>
+						<div class="btn_right">
+							<button type="button">최근순<i></i></button>
+							<select name="" id="" class="selType2">
+								<option value="">전체보기</option>
+								<option value="">완료</option>
+								<option value="">수정중</option>
+								<option value="">수정요청</option>
+							</select>
+							<select name="" id="" class="selType2">
+								<option value="">2줄보기</option>
+								<option value="">4줄보기</option>
+								<option value="">6줄보기</option>
+							</select>
+						</div>
+					</div>
+					<div class="search_wrap_btn">
+						<button type="button" class="btnType15"><i class="add_img"></i>전체선택</button>
+						<button type="button" class="btnType15"><i class="remove_img"></i>선택삭제</button>
+						<p><span class="fwBold c_222">·</span> 총 <span class="c_e40000 fwRg">11</span>건의 보관된 문자가 있습니다. <span class="fwRg c_222"> 메시지를 클릭</span>하시면, <span class="fwRg c_222">발송창에 입력</span>됩니다.<span class="add_text">(내용 수정 및 저장은 발송창에서만 가능)</span></p>
+					</div>
+					<ul class="area_tabcontent msg_sample myBox">
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이 화이트 데이 화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="photo_cont">
+									<img src="/publish/images/content/photo_sample01.jpg" alt="">
+								</div>
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="photo_cont">
+									<img src="/publish/images/content/photo_sample02.jpg" alt="">
+								</div>
+								<div class="photo_cont">
+									<img src="/publish/images/content/photo_sample03.jpg" alt="">
+								</div>
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="photo_cont">
+									<img src="/publish/images/content/photo_sample01.jpg" alt="">
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+						<li>
+							<div class="tit_text_wrap">
+								<label for="" class="label">내 문자함 체크</label>
+								<input type="checkbox" id="">
+								<p class="tit_text">화이트 데이</p>
+							</div>
+							<div class="msg_cont">
+								<div class="msg_text">즐거운 화이트데이입니다. <br><br>
+									달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
+									맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>hayeon1014!
+									*""* <br>
+									*◆○* <br>
+									*♡◎★* <br>
+									######## <br>
+									\_____/<br>
+								</div>
+							</div>
+							<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
+							<div class="myphoto_info">
+								<p>2021-01-01</p>
+							</div>
+						</li>
+					</ul>
+					<!-- pagination -->
+					<ul class="pagination">
+						<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
+						<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
+						<li class="on"><button>1</button></li>
+						<li><button>2</button></li>
+						<li><button>3</button></li>
+						<li><button>4</button></li>
+						<li><button>5</button></li>
+						<li><button>6</button></li>
+						<li><button>7</button></li>
+						<li><button>8</button></li>
+						<li><button>9</button></li>
+						<li><button>10</button></li>
+						<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
+						<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
+					</ul><!-- pagination -->
+				</div>
+				<!--// tab content4 -->
+
+			</div>
+		</div>
+		<!--// send top -->
+
+	</div>
+	</div>
+	<!--// content 영역 -->
+	<!-- footer 영역 -->
+	<footer id="footer" class="footer">
+		<div class="footer_top">
+			<div class="inner table">
+				<ul class="table_cell">
+					<li><a href="#">이용약관</a></li>
+					<li class="SortLine fwRg c_white"><a href="#">개인정보취급방침</a></li>
+					<li class="SortLine fwRg c_white"><a href="#">스팸관리정책</a></li>
+					<li class="SortLine"><a href="#">불법스팸예방안내</a></li>
+				</ul>
+			</div>
+		</div>
+		<div class="footer_body">
+			<div class="inner table">
+				<div class="table_cell">
+					<a href="#" class="footer_logo"><img src="/publish/images/CI_white.png" alt="문자온 CI"></a>
+					<div class="footer_info">
+						<p>주소 : 경기도 남양주시 다산중앙로 19번길 21 1027호, 1028호(블루웨일 지식산업센터 1차)</p>
+						<p>사업자번호 : 653-87-00858 | 대표 : 유인식 | 통신판매등록번호 : 제 다산-12345호 | 문의전화 : 070-4786-0007</p>
+						<p>Copyright 2020 ⓒ MUNJAON co. Ltd, All rights reserved.</p>
+					</div>
+					<div class="footer_service_center">
+						<i></i>
+						<div>
+							<p>고객센터</p>
+							<span class="footer_service_num">070-4786-0008</span>
+							<span>E-mail : help@iten.co.kr</span>
+						</div>
+					</div>
+				</div>
+			</div>
+		</div>
+	</footer>
+	<!--// footer 영역 -->
+	<div class='long-click'>0.3s Long-Click</div>
+	<p>버튼을 꾹~ 눌러보세요!</p>
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/textingmsg_2022.html
--- src/main/webapp/publish/textingmsg_2022.html
+++ src/main/webapp/publish/textingmsg_2022.html
@@ -709,7 +709,9 @@
 												<td rowspan="2">
 													<p>WEB</p>
 												</td>
-												<td rowspan="2"><button class="btnType btnType20" data-tooltip="rev_popup03">상세보기</button></td>
+												<td rowspan="2"><button class="btnType btnType20" data-tooltip="rev_popup03">상세보기</button>
+												<button class="btnType btnType24">재전송</button>
+												</td>
 												<td rowspan="2">
 													<p>테스트등록</p>
 												</td>
src/main/webapp/robots.txt
--- src/main/webapp/robots.txt
+++ src/main/webapp/robots.txt
@@ -1,12 +1,2 @@
 User-agent: *
-Disallow:/uat
-Disallow:/MapUrl.do
-Disallow:/web/pop/testSendPop.do
-Disallow:/web/addr/getAddrGroupDuplCheckAjax.do
-Disallow:/web/mjon/msgdata/sendMsgDataAjax.do
-Disallow:/web/com/userSessionExpendAjax.do
-Disallow:/web/mjon/msgdata/selectMsgGroupNotExistInfoAjax.do
-Disallow:/web/addr/getAddrGroupDuplCheckAjax.do
-Disallow:/web/mjon/msgdata/selectMsgAddrListAjax.do
-Disallow:/web/mjon/conf/selectMjonMsgUseConfAjax.do
-Sitemap: https://www.munjaon.co.kr/sitemap.xml
(No newline at end of file)
+Disallow:/uat
(No newline at end of file)
src/main/webapp/sitemap.xml
--- src/main/webapp/sitemap.xml
+++ src/main/webapp/sitemap.xml
@@ -9,2777 +9,2992 @@
 
 <url>
   <loc>https://www.munjaon.co.kr/</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>1.00</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/excel/selectMsgExcelDataView.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.80</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/excel/selectMsgExcelDataView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/selectMsgDataView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/excel/selectMsgExcelDataView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/user/login/login.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeList.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/cop/bbs/FaqList.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/selectMsgDataView.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgcampain/excel/selectMsgExcelDataView.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do?tap=2</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/custom/selectMsgCustomView.do?tap=3</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/info/mjonInfo.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/info/mjonFunc.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/addr/addrMobGuide.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeList.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.64</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/FaqList.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/cop/bbs/EventList.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/main/mainPage.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.80</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/alimtalk/kakaoAlimtalkMsgDataView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/fax/faxDataView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/kakao/alimtalk/kakaoAlimtalkIntrdView.do</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/user/findUserId.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/user/rePassword.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=02</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=03</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/cop/bbs/TermsList.do?menuNm=04</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/user/login/selectUserDept.do</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=215&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=210</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=335&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_adv/send_group_text.html</loc>
+  <lastmod>2023-10-23T06:11:19+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=210&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%95%88%EB%B6%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%95%88%EB%B6%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%95%88%EB%B6%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%82%A0%EC%94%A8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=4%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B0%90%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=6%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A2%85%EA%B5%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9D%91%EC%9B%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=1%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9E%85%EB%8F%99</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=8%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%99%98%EA%B0%91</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=10%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=10%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%96%89%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=3%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B6%95%ED%95%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AA%85%EC%A0%88</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%99%94%EC%9D%B4%ED%8A%B8%EB%8D%B0%EC%9D%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B3%84%EC%A0%88</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B6%95%ED%95%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=5%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B3%84%EC%A0%88</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B4%88%EB%8C%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AA%85%EC%96%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%88%98%EB%8A%A5</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=7%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AA%85%EC%96%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%88%98%EB%8A%A5</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%A9%EB%A0%A4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=2%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=9%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=2%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%88%AC%ED%91%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%B4%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%88%AC%ED%91%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%82%A0%EC%94%A8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=4%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%97%AC%EB%A6%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=6%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B0%90%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B6%94%EC%84%9D</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=8%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A2%85%EA%B5%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9D%91%EC%9B%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=1%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9E%85%EB%8F%99</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=12%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%8B%A0%EB%85%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%84%A4%EB%82%A0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%8B%A0%EB%85%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=11%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B0%80%EC%9D%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%83%88%ED%95%B4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.51</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%96%89%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=1%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=10%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%85%EC%A0%88</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B0%90%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%84%EC%A0%88</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=3%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B0%9C%EC%97%85</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B4%88%EB%8C%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9D%91%EC%9B%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=5%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=7%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%85%EC%96%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=9%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B6%95%ED%95%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%86%A1%EB%85%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%82%A0%EC%94%A8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=2%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%88%98%EB%8A%A5</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=4%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9E%85%EB%8F%99</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=6%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%98%EA%B0%91</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=8%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A2%85%EA%B5%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=12%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%8B%A0%EB%85%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%84%A4%EB%82%A0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=11%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B0%80%EC%9D%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%83%88%ED%95%B4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B0%90%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=1%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=10%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%88%AC%ED%91%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%98%EA%B0%91</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9D%91%EC%9B%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9E%85%EB%8F%99</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=3%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%85%EC%96%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=5%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%96%89%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%82%A0%EC%94%A8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=7%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%98%88%EB%B0%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B6%95%ED%95%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%85%EC%A0%88</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%86%A1%EB%85%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=9%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B4%88%EB%8C%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%88%98%EB%8A%A5</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%97%AC%ED%96%89</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=2%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=4%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A2%85%EA%B5%90</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=6%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%84%EC%A0%88</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=8%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=12%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%8B%A0%EB%85%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%84%A4%EB%82%A0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=11%EC%9B%94</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/pay/PayGuide.do?tabType=2</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_6.html</loc>
+  <lastmod>2023-10-20T08:32:30+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=171&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%84%A4%EB%82%A0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B0%80%EC%9D%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B6%94%EC%84%9D</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%83%88%ED%95%B4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B0%90%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%96%89%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%A9%EB%A0%A4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%85%EC%A0%88</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_text/send_text.html</loc>
+  <lastmod>2023-09-06T08:33:28+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=162&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_text/text_send.html</loc>
+  <lastmod>2023-09-06T08:33:28+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=176&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/cop/bbs/NoticeDetail.do?bbsId=BBSMSTR_000000000762&amp;nttId=173&amp;seCmmnCdId=&amp;frstRegisterId=&amp;viewsYn=&amp;menuNo=&amp;searchBgnDe=&amp;searchEndDe=&amp;pageIndex=1&amp;searchSortCnd=&amp;searchSortOrd=&amp;searchCnd=&amp;searchWrd=&amp;pageUnit=10</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_2.html</loc>
+  <lastmod>2023-10-20T08:32:30+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_text/multi_text.html</loc>
+  <lastmod>2023-09-06T08:33:28+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_3.html</loc>
+  <lastmod>2023-10-20T08:32:30+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B4%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_4.html</loc>
+  <lastmod>2023-10-20T08:32:30+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/publish_adv/adv_template_v1_manuscript_5.html</loc>
+  <lastmod>2023-10-20T08:32:30+00:00</lastmod>
+  <priority>0.64</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/publish/spam_prevention_5.pdf</loc>
+  <lastmod>2023-06-12T08:56:26+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%97%AC%ED%96%89</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=2%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%88%98%EB%8A%A5</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=4%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%97%AC%EB%A6%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=6%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A2%85%EA%B5%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%84%EC%A0%88</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B6%94%EC%84%9D</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=8%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=1%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%88%AC%ED%91%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%98%EA%B0%91</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=10%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9E%85%EB%8F%99</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=3%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9D%91%EC%9B%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%99%94%EC%9D%B4%ED%8A%B8%EB%8D%B0%EC%9D%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=5%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%85%EC%96%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%82%A0%EC%94%A8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%96%89%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B6%95%ED%95%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%AA%85%EC%A0%88</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=7%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%98%88%EB%B0%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%86%A1%EB%85%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B4%88%EB%8C%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=9%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=12%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%8B%A0%EB%85%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=11%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B0%80%EC%9D%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%83%88%ED%95%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%94%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%82%A0%EC%94%A8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=2%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%86%A1%EB%85%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9C%84%EB%A1%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%84%A0%EA%B1%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%97%B0%EB%A7%90%EC%97%B0%EC%8B%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B4%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%A9%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%9C%B4%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=4%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%88%98%EB%8A%A5</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%8F%8C%EC%9E%94%EC%B9%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%97%AC%EB%A6%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A3%BC%EB%A7%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%86%A0%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9E%85%EB%8F%99</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=6%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A2%8B%EC%9D%80%EA%B8%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%A8%EC%9A%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%98%EA%B0%91</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%8A%B9%EC%A7%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A2%85%EA%B5%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B1%B4%EA%B0%95</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%A0%EB%B0%B1</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=8%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9B%94%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%A0%ED%9D%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=1%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%95%88%EB%82%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B3%84%EC%9E%90%EB%A6%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%8B%B5%EB%A1%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=10%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%88%98%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%84%EC%A0%88</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=3%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B0%90%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B0%9C%EC%97%85</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B4%88%EB%8C%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%94%EC%9D%B4%ED%8A%B8%EB%8D%B0%EC%9D%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B8%88%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%99%98%EC%A0%88%EA%B8%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=5%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%BD%94%EB%AF%B9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9D%91%EC%9B%90</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%95%A9%EA%B2%A9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AC%B4%EB%8D%94%EC%9C%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9D%B8%EC%82%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9C%A0%EB%A8%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=7%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%85%EC%96%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%9A%8C%EA%B0%91</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9D%BC%EC%9A%94%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%AA%A8%EC%9E%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%A9%EB%A0%A4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9A%B4%EC%84%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B6%95%ED%95%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B8%B0%EB%85%90%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=9%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=12%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%84%A4%EB%82%A0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%8B%A0%EB%85%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=11%EC%9B%94</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%83%9D%EC%9D%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%BD%EC%A1%B0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B2%B0%ED%98%BC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B6%80%EA%B3%A0</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%A1%B0%EC%9D%98</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%9E%A5%EB%A1%80</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EB%B9%BC%EB%B9%BC%EB%A1%9C%EB%8D%B0%EC%9D%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EA%B0%80%EC%9D%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%83%88%ED%95%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%81%AC%EB%A6%AC%EC%8A%A4%EB%A7%88%EC%8A%A4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B6%9C%EC%82%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.41</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%88%AC%ED%91%9C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%82%B0%EC%95%85%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%A1%B0%EB%AC%B8</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%B9%A0%EC%88%9C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%ED%95%9C%EA%B0%80%EC%9C%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.51</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%97%AC%ED%96%89</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%97%AC%ED%96%89</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.41</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%86%A1%EB%85%84%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B0%9C%EC%97%85</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B0%9C%EC%97%85</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%86%A1%EB%85%84</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
-</url>
-<url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%98%88%EB%B0%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%98%88%EB%B0%B0</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
-  <priority>0.33</priority>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
 </url>
 <url>
   <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B1%84%EC%9A%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%86%A1%EB%85%84</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EB%8F%99%EC%B0%BD%ED%9A%8C</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%95%88%EB%82%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EC%95%88%EB%82%B4</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B0%9C%EC%97%85</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B0%9C%EC%97%85</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=P&amp;bestSearchKeyword=%EA%B3%A0%EA%B0%9D%EA%B4%80%EB%A6%AC</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.41</priority>
+</url>
+<url>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한글날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.33</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%97%AC%ED%96%89</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=1월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.33</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%97%AC%ED%96%89</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=2월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.33</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=S&amp;bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=3월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.33</priority>
 </url>
 <url>
-  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectBestMsgDataView.do?bestTagType=L&amp;bestSearchKeyword=%EC%B9%9C%EB%AA%A9</loc>
-  <lastmod>2022-12-07T08:53:44+00:00</lastmod>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=4월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
   <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한글날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=5월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=1월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=6월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=2월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=7월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=3월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=8월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=4월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=9월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=5월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=10월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=6월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=11월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=7월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=12월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=8월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=날씨</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=9월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=계절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=10월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=안부</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=11월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=봄</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=12월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여름</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=날씨</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=가을</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=계절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=겨울</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=안부</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=개천절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=봄</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=휴일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여름</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=가을</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추분</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=겨울</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여행</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=개천절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환절기</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=휴일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=입동</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추분</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=소한</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여행</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대한</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환절기</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=유머</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동지</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=입동</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동짓날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=소한</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축제</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대한</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고백</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=유머</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=벚꽃</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동지</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=기념일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동짓날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=할로윈</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축제</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=HALLOWWEEN</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고백</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=빼빼로데이</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=벚꽃</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=크리스마스</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=기념일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성탄절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=할로윈</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=XMAS</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=HALLOWWEEN</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼일절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=빼빼로데이</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼겹살데이</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=크리스마스</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=만우절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성탄절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근로자의날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=XMAS</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어린이날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼일절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어버이날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼겹살데이</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=만우절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=로즈데이</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근로자의날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=스승의날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어린이날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성년의날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어버이날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=현충일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=호국보훈의달</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=로즈데이</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=스승의날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연시</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성년의날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말연시</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=현충일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=설날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=호국보훈의달</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=새해</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근하신년</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연시</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대보름</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말연시</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=정월대보름</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=설날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=단오</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=새해</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사말</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근하신년</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대보름</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=정월대보름</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=단오</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사말</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼감사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치감사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼감사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경조사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생신</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치감사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경조사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생신</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부고</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=장례</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조의</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=애도</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조문</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부고</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=답례</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=장례</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조의</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=애도</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조문</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=답례</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=격려</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=위로</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=응원</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수능</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=모임</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=격려</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=행사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=위로</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=친목</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=응원</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수능</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=모임</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동창모임</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=행사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=산악회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=친목</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=워크숍</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=야유회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=라운딩</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동창모임</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동호회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=산악회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감성</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=워크숍</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=코믹</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=야유회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연락</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=라운딩</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=영화</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동호회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감성</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=좋은글</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=코믹</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명언</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연락</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=속담</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=영화</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=종교</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=석가탄신일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=좋은글</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부활절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명언</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=예배</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=속담</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=운세</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=종교</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=별자리</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=석가탄신일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=선거</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부활절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=투표</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=예배</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=사전투표</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=운세</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=복날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=별자리</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=광복절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=선거</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추석</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=투표</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한가위</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=사전투표</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=중추절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=복날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한글날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=광복절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=1월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추석</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=2월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한가위</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=3월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=중추절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=4월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한글날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=5월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=1월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=6월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=2월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=7월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=3월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=8월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=4월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=9월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=5월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=10월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=6월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
-</url>
-<url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=7월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
-</url>
-<url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=8월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
-</url>
-<url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=9월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
-</url>
-<url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=10월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
-</url>
-<url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=11월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=11월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=12월</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=12월</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=날씨</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=날씨</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=계절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=계절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=안부</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=안부</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=봄</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=봄</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여름</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여름</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=가을</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=가을</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=겨울</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=겨울</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=개천절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=개천절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=휴일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=휴일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추분</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추분</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여행</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=여행</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환절기</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환절기</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=입동</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=입동</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=소한</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=소한</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대한</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대한</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=유머</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=유머</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동지</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동지</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동짓날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동짓날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축제</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축제</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고백</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고백</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=벚꽃</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=벚꽃</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=기념일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=기념일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=할로윈</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=할로윈</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=HALLOWWEEN</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=HALLOWWEEN</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=빼빼로데이</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=빼빼로데이</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=크리스마스</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=크리스마스</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성탄절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성탄절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=XMAS</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=XMAS</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼일절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼일절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼겹살데이</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=삼겹살데이</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=만우절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=만우절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근로자의날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근로자의날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어린이날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어린이날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어버이날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=어버이날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=로즈데이</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=로즈데이</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=스승의날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=스승의날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성년의날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=성년의날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=현충일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=현충일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=호국보훈의달</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=호국보훈의달</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연시</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연시</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말연시</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연말연시</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=설날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=설날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=새해</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=새해</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근하신년</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=근하신년</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대보름</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=대보름</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=정월대보름</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=정월대보름</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=단오</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=단오</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사말</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=인사말</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼감사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=결혼감사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치감사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=돌잔치감사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경조사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경조사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생신</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생신</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=생일축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=환갑초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=회갑초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=주갑초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희초대</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=고희초대</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부고</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부고</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=장례</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=장례</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조의</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조의</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=애도</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=애도</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조문</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=조문</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=답례</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=답례</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=합격축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진축하</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=승진축하</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=격려</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=격려</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=위로</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=위로</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=응원</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=응원</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수능</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수능</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=모임</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=모임</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=행사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=행사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=친목</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=친목</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=송년회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동창모임</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동창모임</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=산악회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=산악회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=워크숍</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=워크숍</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=야유회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=야유회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=라운딩</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=라운딩</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동호회</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=동호회</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감성</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=감성</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=코믹</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=코믹</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연락</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=연락</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=영화</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=영화</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경사</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=경사</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=좋은글</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=좋은글</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명언</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=명언</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=속담</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=속담</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=종교</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=종교</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=석가탄신일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=석가탄신일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부활절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=부활절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=예배</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=예배</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=운세</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=운세</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=별자리</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=별자리</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=선거</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=선거</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=투표</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=투표</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=사전투표</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=사전투표</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=복날</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=복날</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=광복절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=광복절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추석</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=추석</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한가위</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=한가위</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=중추절</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=중추절</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=월요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=월요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=월요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=월요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=화요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=화요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=화요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=화요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=수요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=목요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=목요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=목요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=목요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=금요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=금요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=금요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=금요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=토요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=토요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=토요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=토요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=일요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=S&amp;headerMsgSearchFlag=Y&amp;searchKeyword=일요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 <url>
-<loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=일요일</loc>
-<lastmod>2022-09-29T06:32:20+00:00</lastmod>
-<priority>0.33</priority>
+  <loc>https://www.munjaon.co.kr/web/mjon/msgdata/selectMsgDataView.do?msgType=P&amp;headerMsgSearchFlag=Y&amp;searchKeyword=일요일</loc>
+  <lastmod>2023-10-23T06:28:54+00:00</lastmod>
+  <priority>0.33</priority>
 </url>
 </urlset>
(No newline at end of file)
Add a comment
List